path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
docs/_site/site/about/index.html
cudmore/treadmill
<!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"> <meta name="author" content="Robert H Cudmore"> <link rel="shortcut icon" href="../../favicon.ico"> <title>about - treadmill</title> <link href="../css/bootstrap-custom.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" href="//cdn.jsdelivr.net/font-hack/2.018/css/hack.min.css"> <link href='//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic&subset=latin-ext,latin' rel='stylesheet' type='text/css'> <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,600,700&subset=latin-ext,latin' rel='stylesheet' type='text/css'> <link href="../css/base.css" rel="stylesheet"> <link href="../css/cinder.css" rel="stylesheet"> <link rel="stylesheet" href="../css/highlight.css"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> <script src="https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js"></script> <script> WebFont.load({ google: { families: ['Open Sans', 'PT Sans'] } }); </script> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <!-- Collapsed navigation --> <div class="navbar-header"> <!-- Expander button --> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <!-- Main title --> <a class="navbar-brand" href="..">treadmill</a> </div> <!-- Expanded navigation --> <div class="navbar-collapse collapse"> <!-- Main navigation --> <ul class="nav navbar-nav"> <li > <a href="..">home</a> </li> <li > <a href="../images/">images</a> </li> <li class="active"> <a href="./">about</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li> <a href="#" data-toggle="modal" data-target="#mkdocs_search_modal"> <i class="fa fa-search"></i> Search </a> </li> <li> <a href="http://github.com/cudmore/treadmill"> <i class="fa fa-github"></i> GitHub </a> </li> </ul> </div> </div> </div> <div class="container"> <div class="col-md-3"><div class="bs-sidebar hidden-print affix well" role="complementary"> <ul class="nav bs-sidenav"> <li class="first-level active"><a href="#about">About</a></li> <li class="second-level"><a href="#development">Development</a></li> <li class="third-level"><a href="#mkdocs">mkDocs</a></li> <li class="third-level"><a href="#tweak-cinder">Tweak Cinder</a></li> <li class="third-level"><a href="#deploy-to-github-gh-pages">Deploy to Github gh-pages</a></li> <li class="third-level"><a href="#generate-a-single-pdf-from-mkdocs-site">Generate a single PDF from mkDocs site</a></li> </ul> </div></div> <div class="col-md-9" role="main"> <h1 id="about">About</h1> <p>treadmill was created by <a href="http://robertcudmore.org">Robert H Cudmore</a>.</p> <h2 id="development">Development</h2> <h3 id="mkdocs">mkDocs</h3> <p>This documentation is written in markdown and a static site is generated with <a href="http://www.mkdocs.org">mkDocs</a> using the <a href="http://sourcefoundry.org/cinder/">Cinder</a> theme. Previously I have used Jekyll which is amazing. Going with mkDocs to see if a simple site is acceptable.</p> <p>When writing markdown, serve a mkDocs site locally with</p> <pre><code>cd docs/ mkdocs serve --dev-addr=0.0.0.0:8000 # serves built site on LAN IP mkdocs serve # serves built site on localhost at 127.0.0.1:8000 mkdocs build #generates the site into docs/site/ </code></pre> <p>Deploy to github gh-pages by follow for <a href="https://mkdocs.readthedocs.org/en/stable/user-guide/deploying-your-docs/">deployment instructions</a>.</p> <p><code>mkdocs gh-deploy</code> will use the gh-pages branch of repository specified in <code>mkdocs.yml</code></p> <pre><code># this will deploy to github gh-pages specified in mkdocs.yml cd docs #should have mkdocs.yml file mkdocs gh-deploy --clean #site is then available at http://cudmore.github.io/treadmill </code></pre> <h3 id="tweak-cinder">Tweak Cinder</h3> <p>Use 'pip show mkdocs' to figure out where your cinder files are</p> <blockquote> <blockquote> <p>pip show mkdocs /home/cudmore/anaconda2/lib/python2.7/site-packages</p> </blockquote> </blockquote> <h3 id="deploy-to-github-gh-pages">Deploy to Github gh-pages</h3> <p>Following the <a href="http://www.mkdocs.org/user-guide/deploying-your-docs/">mkDocs</a> help, deploy to github. Again, I am doing this on OSX. Not doing this on Debian because I do not have git/github properly configured.</p> <blockquote> <blockquote> <p>mkdocs build --clean mkdocs gh-deploy --clean</p> </blockquote> </blockquote> <h3 id="generate-a-single-pdf-from-mkdocs-site">Generate a single PDF from mkDocs site</h3> <p>Use <a href="https://github.com/jgrassler/mkdocs-pandoc">mkdocs-pandoc</a> to convert the mkdocs site into a single pdf. This creates a table of contents and appends all .md files using <a href="http://pandoc.org">pandoc</a> as a backend.</p> <pre><code>cd docs mkdocs2pandoc &gt; mydocs.pd pandoc --toc -f markdown+grid_tables+table_captions -o mydocs.pdf mydocs.pd # Generate PDF pandoc --toc -f markdown+grid_tables -t epub -o mydocs.epub mydocs.pd # Generate EPUB </code></pre> <p>I found it easy to do this on OSX using the pandoc installer. I did not get this working on Debian.</p></div> </div> <footer class="col-md-12 text-center"> <hr> <p> <small>Treadmill was created by Robert H Cudmore and is licensed under the <a href='https://github.com/cudmore/treadmill/blob/master/LICENSE'>MIT license</a><br></small> <small>Documentation built with <a href="http://www.mkdocs.org/">MkDocs</a>.</p></small> </footer> <script src="../js/jquery-1.10.2.min.js"></script> <script src="../js/bootstrap-3.0.3.min.js"></script> <script src="../js/highlight.pack.js"></script> <script>hljs.initHighlightingOnLoad();</script> <script> var base_url = '..'; </script> <script data-main="../mkdocs/js/search.js" src="../mkdocs/js/require.js"></script> <script src="../js/base.js"></script> <div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="Search Modal" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal"> <span aria-hidden="true">&times;</span> <span class="sr-only">Close</span> </button> <h4 class="modal-title" id="exampleModalLabel">Search</h4> </div> <div class="modal-body"> <p> From here you can search these documents. Enter your search terms below. </p> <form role="form"> <div class="form-group"> <input type="text" class="form-control" placeholder="Search..." id="mkdocs-search-query"> </div> </form> <div id="mkdocs-search-results"></div> </div> <div class="modal-footer"> </div> </div> </div> </div> </body> </html>
_site/assets/OpenWIS-Association-Accounts-2015.html
cassie-stearns/cassie-stearns.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>OpenWIS Association AISBL - 2015 Accounts</title> <meta name="description" content="The OpenWIS Association AISBL is an International Non-profit Organization (Association Internationale Sans But Lucrative, or abbreviated 'AISBL') that aims to facilitate collaboration on the development, promotion and sharing of open source software for the exchange of global meteorological information."> <link rel="canonical" href="http://cassie-stearns.github.io/assets/OpenWIS-Association-Accounts-2015.html"> <link rel="alternate" type="application/rss+xml" title="OpenWIS Association AISBL" href="http://cassie-stearns.github.io/feed.xml"> <link rel="stylesheet" href="/css/main.css"> <link rel="shortcut icon" href="/favicon.ico?r=31241"> <link rel="icon" href="/favicon.ico?r=31241"> </head> <body> <header class="site-header"> <div class="wrapper"> <div class="site-banner"><span class="site-title"><img src="http://openwis.io/cms/images/openwis.jpg" alt="OpenWIS®" style="max-height:40px; width:auto"/><a href="/">OpenWIS Association AISBL</a></span></div> <nav class="site-nav"> <div class="trigger"> <a class="page-link" href="/">Home</a> <div class="page-link"> <ul class="dropdown"><label for="a1"><a href="/about/">Association</a></label><input id="a1" type="checkbox"> <li><a href="/structure/members.html">Members</a></li> <li><a href="/structure/governance.html">Governance</a></li> <li><a href="/articles/">Articles of Association</a></li> <li><a href="/rules/">Internal Rules</a></li> <li><a href="/conduct/">Code of Conduct</a></li> <li><a href="/tr/">Technical Rules</a></li> <li><a href="/rules2/">Rules Supplements</a></li> <li><a href=""></a></li> <li><a href="/metrics/">Goals</a></li> </ul> </div> <div class="page-link"> <ul class="dropdown"><label for="p1"><a href="/projects/">Projects</a></label><input id="p1" type="checkbox"> <li><ul class="dropdown"><label for="p21"><a href="/projects/openwis/">OpenWIS</a></label><input id="p21" type="checkbox"> <li><a href="/backlog/">Backlog</a></li> <li><a href="/kanban/">Kanban</a></li> <li><a href="https://openwis.github.io/openwis" target="_blank">Github Development*</a></li> <li><a href="https://github.com/OpenWIS/openwis" target="_blank">Github Repository*</a><li> <li><a href="https://github.com/OpenWIS/openwis/wiki" target="_blank">Wiki*</a></li> <li><a href="/projects/openwis/#download">Download</a></li> </ul></li> <li class="no-link">Python Metadata Tool</li> </ul> </div> <a class="page-link" href="mailto:contact@openwis.io">Contact</a> <div class="page-link"> <ul class="dropdown"><label for="i1">Get Involved</label><input id="i1" type="checkbox"> <li><a href="/structure/steering-committee.html">Steering Committee</a></li> <li><a href="/structure/technical-committee.html">Technical Committee</a></li> <li class="no-link">Developers</li> <li><a href="/howto/">How-to Instructions</a></li> <li><a href="/posts/">Github Posts Archive</a></li> <li><a href="https://www.openwis.io/cms/forum" target="_blank">Forum*</a></li> </ul> </div> </div> </nav> </div> </header> <div class="page-content"> <div class="wrapper"> <article class="post"> <header class="post-header"> <h1 class="post-title">OpenWIS Association AISBL - 2015 Accounts</h1> </header> <div class="post-content"> <h2 id="no-dentreprise-0636760062">No. d’entreprise: 0636760062</h2> <h2 id="accounts-for-period-4-september-2015-to-31-december-2015">Accounts for period 4 September 2015 to 31 December 2015</h2> <table> <thead> <tr> <th>Income &amp; Expenditure Statement for period 4 September 2015 to 31 December 2015</th> <th style="text-align: right">EUR</th> </tr> </thead> <tbody> <tr> <td><strong>Income</strong></td> <td style="text-align: right"> </td> </tr> <tr> <td>1. <em>Transfer of Contributions</em></td> <td style="text-align: right">400,000</td> </tr> <tr> <td>Total Income</td> <td style="text-align: right">400,000</td> </tr> <tr> <td><strong>Expenditure</strong></td> <td style="text-align: right"> </td> </tr> <tr> <td>1. <em>Legal expenses</em></td> <td style="text-align: right">1,626</td> </tr> <tr> <td>2. <em>Travel Expenses</em></td> <td style="text-align: right">3,131</td> </tr> <tr> <td>Total Expenditure</td> <td style="text-align: right">4,757</td> </tr> <tr> <td><strong>Surplus for period</strong></td> <td style="text-align: right"><strong>395,243</strong></td> </tr> </tbody> </table> <p><br /></p> <table> <thead> <tr> <th>Statement of Financial Position at 31 December 2015</th> <th style="text-align: right">EUR</th> </tr> </thead> <tbody> <tr> <td><strong>Assets</strong></td> <td style="text-align: right"> </td> </tr> <tr> <td>1. <em>Amounts due from members</em></td> <td style="text-align: right">395,243</td> </tr> <tr> <td>Total assets</td> <td style="text-align: right">395,243</td> </tr> <tr> <td><strong>Liabilities</strong></td> <td style="text-align: right"> </td> </tr> <tr> <td>Total Liabilities</td> <td style="text-align: right">-</td> </tr> <tr> <td><strong>Net Assets</strong></td> <td style="text-align: right"> </td> </tr> <tr> <td>Surplus for period</td> <td style="text-align: right"><strong>395,243</strong></td> </tr> </tbody> </table> <p><br /></p> <p>Approved by: Board of Directors</p> <p>Date: 11th March 2016</p> </div> </article> </div> </div> <div class="wrapper"> </div> <div class="wrapper"> </div> <footer class="site-footer"> <div class="wrapper"> <div> <p><a class="gh-pages-editor-link" href="https://github.com/OpenWIS/openwis-documentation/blob/gh-pages-nws/assets/OpenWIS-Association-Accounts-2015.md">Edit this page on gh-pages</a></p> </div> <div class="footer-col-wrapper"> <div class="footer-col footer-col-1"> <ul class="contact-list"> <li><a href="http://openwis.io">OpenWIS Association AISBL</a></li> <li><a href="mailto:contact@openwis.io">contact@openwis.io</a></li> </ul> </div> <div style="text-align:right; float:right" class="footer-col footer-col-3"> <p><a rel="license" href="//creativecommons.org/licenses/by/4.0/" title="Creative Commons Attribution 4.0 International license"><img src="https://licensebuttons.net/l/by/4.0/88x31.png" alt="License"/></a></p> <p><small>Except where otherwise noted, content on <span href="http://openwis.io">this site</span> is licensed under a <a rel="license" href="//creativecommons.org/licenses/by/4.0/"> Creative Commons Attribution 4.0 International license</a>.</small></p> </div> </div> </div> </footer> </body> </html>
dhtml/DHTML/DHTMLref/properties/align_3.html
gucong3000/handbook
<HTML > <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252" /> <TITLE>ALIGN Attribute | align</TITLE> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie5.css" /> <style> BODY { font-family:verdana,arial,helvetica; margin:0; } </style> <SCRIPT LANGUAGE="javascript" SRC="../common/common.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/browdata.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/appliesto2.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/toolbar.js"></SCRIPT> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/inetsdk.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/advSDKATIE4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/default.css" /> <SCRIPT> var gbDBG = true; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> var gsHTCPath = "../common/"; var gsGraphicsPath = "../common/"; var gsCodePath = "../common/"; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> var gsContextMenuPath = gsHTCPath + "contextmenu.htc"; var gsCodeDecoPath = gsHTCPath + "codedeco.htc"; var gsStoreName="workshop"; var gsGraphicsPath = "../common/"; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> function InitPage() { if (!assert( (typeof(oBD) == 'object' && oBD != null), "browdata object unavailable!") ) { return; } if ("MSIE" == oBD.browser && oBD.majorVer >= 5 && (oBD.platform.toLowerCase()!="x" && oBD.platform!="Mac" && oBD.platform!="PPC" )) { if (typeof(fnATInit) == 'function') fnATInit(); if (typeof(PostGBInit) == 'function') PostGBInit(); if (typeof(PostInit) == 'function') PostInit(); if (typeof(initTabbedMembers) == 'function') initTabbedMembers(); if (typeof(hideExamples) == 'function') hideExamples(); } if (oBD.getsNavBar && oBD.platform!="PPC" ) { if (typeof(SetShowMes) == 'function') SetShowMes(); } } function assert(bCond, sMsg) { if (bCond) { return true; } else { if (gbDBG) { alert(sMsg); } return false; } } window.onload = InitPage; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> function PreInit() { } </SCRIPT> <SCRIPT LANGUAGE="JavaScript"> </script> </HEAD> <BODY TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" BGCOLOR="#FFFFFF" TEXT="#000000"> <TABLE STYLE="table-layout:fixed" class='clsContainer' CELLPADDING='15' CELLSPACING='0' float='left' WIDTH='100%' BORDER='0'> <TR> <TD VALIGN='top'> <DIV CLASS="clsDocBody"><TABLE WIDTH="97%" CELLPADDING="0" CELLSPACING="0"><TR><TD><H1>ALIGN Attribute | align Property </H1></TD><TD ALIGN="right"><A HREF="../default.html" TITLE="This index is only for content formerly found in the Web Workshop." TARGET="_top">Internet Development Index</A></TD></TR></TABLE> <HR SIZE="1"></HR><P>Sets or retrieves the alignment of the <span replace="1">object</span> relative to the display or table. </P><P CLASS="clsRef">Syntax</P><BLOCKQUOTE><TABLE CLASS="clsStd"><TR><TH><B>HTML</B></TH><TD>&lt;<SPAN CLASS="clsRange" TITLE="Element refers to an element from the Applies To list below.">ELEMENT</SPAN>&nbsp;<B>ALIGN</B> = <SPAN CLASS="clsRange">sAlign</SPAN>... &gt; </TD></TR><TR><TH><B>Scripting</B></TH><TD><I><SPAN CLASS="moreinfo" TITLE="an element from the Applies To list below">object</SPAN></I>.<B>align</B> [ <B>=</B>&nbsp;<SPAN CLASS="clsRange">sAlign</SPAN> ]</TD></TR></TABLE></BLOCKQUOTE><P CLASS="clsRef">Possible Values</P><BLOCKQUOTE><TABLE CLASS="clsStd"><TR><TD><SPAN CLASS="clsRange">sAlign</SPAN></TD><TD><b>String</b> that specifies or receives one of the following values.<TABLE CLASS="clsStd"><TR><TD NOWRAP="1"><SPAN CLASS="clsLiteral">center</SPAN></TD><TD>Aligns to the center.</TD></TR><TR><TD NOWRAP="1"><SPAN CLASS="clsLiteral">justify</SPAN></TD><TD>Aligns to the left and right edge.</TD></TR><TR><TD NOWRAP="1"><SPAN CLASS="clsDefValue">left</SPAN></TD><TD>Default. Aligns to the left edge.</TD></TR><TR><TD NOWRAP="1"><SPAN CLASS="clsLiteral">right</SPAN></TD><TD>Aligns to the right edge.</TD></TR></TABLE></TD></TR></TABLE><P>The property is read/write. The property has a default value of <SPAN CLASS="clsDefValue"> left</SPAN>.</P><P>Expressions can be used in place of the preceding value(s), as of Microsoft&#174; Internet Explorer 5. For more information, see <A HREF="/workshop/author/dhtml/overview/recalc.html">About Dynamic Properties</A>.</P></BLOCKQUOTE><P CLASS="clsRef">Remarks</P><BLOCKQUOTE><P>The default value for the <A HREF="../objects/th.html">th</A> element is <SPAN CLASS="clsLiteral">center</SPAN>.</P><P>The <SPAN CLASS="clsLiteral">justify</SPAN> possible value is available only for the <A HREF="../objects/div.html">div</A>, <A HREF="../objects/hn.html">hn</A>, and <A HREF="../objects/p.html">p</A> elements. </P></BLOCKQUOTE><P CLASS="clsRef">Standards Information</P><BLOCKQUOTE><P> This property is deprecated in <A HREF="http://www.w3.org/tr/rec-html32.html" TARGET="_top"> HTML</A>&nbsp;<IMG WIDTH="33" HEIGHT="11" BORDER="0" ALT="Non-Microsoft link" SRC="../common/leave-ms.gif"> and is defined in <A HREF="http://www.w3.org/tr/2000/wd-dom-level-1-20000929/" TARGET="_top"> World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1</A>&nbsp;<IMG WIDTH="33" HEIGHT="11" BORDER="0" ALT="Non-Microsoft link" SRC="../common/leave-ms.gif">. </P></BLOCKQUOTE><P CLASS="clsRef">Applies To</P><BLOCKQUOTE><TABLE ID="oATTable" CLASS="TMAT3D"><TR><TD VALIGN="top" STYLE="border: 1 outset; display: none;"></TD><TD ID="oATData" CLASS="controls"><A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/col.html"> COL</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/colgroup.html"> COLGROUP</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/div.html"> DIV</A>, <A PLATINFO="win16=4.0;win32=4.0;ce=4.0;unix=4.0;mac=4.0" HREF="../objects/hn.html"> hn</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/hr.html"> HR</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/p.html"> P</A>, <A PLATINFO="win16=4.0;win32=4.0;ce=4.0;unix=4.0;mac=4.0" HREF="../objects/tbody.html"> TBODY</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/td.html"> TD</A>, <A PLATINFO="win16=4.0;win32=4.0;ce=4.0;unix=4.0;mac=4.0" HREF="../objects/tfoot.html"> TFOOT</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/th.html"> TH</A>, <A PLATINFO="win16=4.0;win32=4.0;ce=4.0;unix=4.0;mac=4.0" HREF="../objects/thead.html"> THEAD</A>, <A PLATINFO="win16=3.02;win32=3.02;ce=4.0;unix=4.0;mac=3.02" HREF="../objects/tr.html"> TR</A></TD></TR><TR><TD COLSPAN="2" CLASS="controls"></TD></TR></TABLE></BLOCKQUOTE></DIV> </TD> </TR> </TABLE> </BODY> </HTML>
ultimate-flash-xhtmlizer.css
mondalaci/ultimate-flash-xhtmlizer
.flash {color: #fff; }
jdk8en_us/docs/api/java/util/class-use/Collection.html
DeanAaron/jdk8
<!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_11) on Mon Jun 16 17:36:05 PDT 2014 --> <title>Uses of Interface java.util.Collection (Java Platform SE 8 )</title> <meta name="date" content="2014-06-16"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface java.util.Collection (Java Platform SE 8 )"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/Collection.html" title="interface in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/Collection.html" target="_top">Frames</a></li> <li><a href="Collection.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface java.util.Collection" class="title">Uses of Interface<br>java.util.Collection</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#java.awt">java.awt</a></td> <td class="colLast"> <div class="block">Contains all of the classes for creating user interfaces and for painting graphics and images.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#java.beans.beancontext">java.beans.beancontext</a></td> <td class="colLast"> <div class="block">Provides classes and interfaces relating to bean context.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#java.security">java.security</a></td> <td class="colLast"> <div class="block">Provides the classes and interfaces for the security framework.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#java.security.cert">java.security.cert</a></td> <td class="colLast"> <div class="block">Provides classes and interfaces for parsing and managing certificates, certificate revocation lists (CRLs), and certification paths.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#java.util">java.util</a></td> <td class="colLast"> <div class="block">Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#java.util.concurrent">java.util.concurrent</a></td> <td class="colLast"> <div class="block">Utility classes commonly useful in concurrent programming.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#java.util.concurrent.locks">java.util.concurrent.locks</a></td> <td class="colLast"> <div class="block">Interfaces and classes providing a framework for locking and waiting for conditions that is distinct from built-in synchronization and monitors.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#java.util.jar">java.util.jar</a></td> <td class="colLast"> <div class="block">Provides classes for reading and writing the JAR (Java ARchive) file format, which is based on the standard ZIP file format with an optional manifest file.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#java.util.stream">java.util.stream</a></td> <td class="colLast"> <div class="block">Classes to support functional-style operations on streams of elements, such as map-reduce transformations on collections.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#javax.management">javax.management</a></td> <td class="colLast"> <div class="block">Provides the core classes for the Java Management Extensions.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#javax.management.openmbean">javax.management.openmbean</a></td> <td class="colLast"> <div class="block">Provides the open data types and Open MBean descriptor classes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#javax.management.relation">javax.management.relation</a></td> <td class="colLast"> <div class="block">Provides the definition of the Relation Service.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#javax.net.ssl">javax.net.ssl</a></td> <td class="colLast"> <div class="block">Provides classes for the secure socket package.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#javax.print.attribute.standard">javax.print.attribute.standard</a></td> <td class="colLast"> <div class="block">Package javax.print.attribute.standard contains classes for specific printing attributes.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#javax.script">javax.script</a></td> <td class="colLast"> <div class="block">The scripting API consists of interfaces and classes that define Java <font size=1><sup>TM</sup></font> Scripting Engines and provides a framework for their use in Java applications.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#javax.sql.rowset">javax.sql.rowset</a></td> <td class="colLast"> <div class="block">Standard interfaces and base classes for JDBC <code>RowSet</code> implementations.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="java.awt"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/awt/package-summary.html">java.awt</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/awt/package-summary.html">java.awt</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">RenderingHints.</span><code><span class="memberNameLink"><a href="../../../java/awt/RenderingHints.html#values--">values</a></span>()</code> <div class="block">Returns a <code>Collection</code> view of the values contained in this <code>RenderinHints</code>.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.beans.beancontext"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subinterfaces, and an explanation"> <caption><span>Subinterfaces of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Interface and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContext.html" title="interface in java.beans.beancontext">BeanContext</a></span></code> <div class="block"> The BeanContext acts a logical hierarchical container for JavaBeans.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextServices.html" title="interface in java.beans.beancontext">BeanContextServices</a></span></code> <div class="block"> The BeanContextServices interface provides a mechanism for a BeanContext to expose generic "services" to the BeanContextChild objects within.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextServicesSupport.html" title="class in java.beans.beancontext">BeanContextServicesSupport</a></span></code> <div class="block"> This helper class provides a utility implementation of the java.beans.beancontext.BeanContextServices interface.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html" title="class in java.beans.beancontext">BeanContextSupport</a></span></code> <div class="block">This helper class provides a utility implementation of the java.beans.beancontext.BeanContext interface.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a> declared as <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></code></td> <td class="colLast"><span class="typeNameLabel">BeanContextMembershipEvent.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextMembershipEvent.html#children">children</a></span></code> <div class="block">The list of children affected by this event notification.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;c)</code> <div class="block">add Collection to set of Children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;c)</code> <div class="block">Tests to see if all objects in the specified <tt>Collection</tt> are children of this <tt>BeanContext</tt>.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#deserialize-java.io.ObjectInputStream-java.util.Collection-">deserialize</a></span>(<a href="../../../java/io/ObjectInputStream.html" title="class in java.io">ObjectInputStream</a>&nbsp;ois, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;coll)</code> <div class="block">used by readObject to deserialize a collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;c)</code> <div class="block">remove all specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;c)</code> <div class="block">retain only specified children (Unsupported) implementations must synchronized on the hierarchy lock and "children" protected field</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="typeNameLabel">BeanContextSupport.</span><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextSupport.html#serialize-java.io.ObjectOutputStream-java.util.Collection-">serialize</a></span>(<a href="../../../java/io/ObjectOutputStream.html" title="class in java.io">ObjectOutputStream</a>&nbsp;oos, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;coll)</code> <div class="block">Used by writeObject to serialize a Collection.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../java/beans/beancontext/package-summary.html">java.beans.beancontext</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/beans/beancontext/BeanContextMembershipEvent.html#BeanContextMembershipEvent-java.beans.beancontext.BeanContext-java.util.Collection-">BeanContextMembershipEvent</a></span>(<a href="../../../java/beans/beancontext/BeanContext.html" title="interface in java.beans.beancontext">BeanContext</a>&nbsp;bc, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&nbsp;changes)</code> <div class="block">Contruct a BeanContextMembershipEvent</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.security"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/security/package-summary.html">java.security</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/security/package-summary.html">java.security</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Provider.</span><code><span class="memberNameLink"><a href="../../../java/security/Provider.html#values--">values</a></span>()</code> <div class="block">Returns an unmodifiable Collection view of the property values contained in this provider.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.security.cert"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/security/cert/package-summary.html">java.security.cert</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/security/cert/package-summary.html">java.security.cert</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>abstract <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/Certificate.html" title="class in java.security.cert">Certificate</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertificateFactorySpi.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertificateFactorySpi.html#engineGenerateCertificates-java.io.InputStream-">engineGenerateCertificates</a></span>(<a href="../../../java/io/InputStream.html" title="class in java.io">InputStream</a>&nbsp;inStream)</code> <div class="block">Returns a (possibly empty) collection view of the certificates read from the given input stream <code>inStream</code>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>abstract <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/CRL.html" title="class in java.security.cert">CRL</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertificateFactorySpi.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertificateFactorySpi.html#engineGenerateCRLs-java.io.InputStream-">engineGenerateCRLs</a></span>(<a href="../../../java/io/InputStream.html" title="class in java.io">InputStream</a>&nbsp;inStream)</code> <div class="block">Returns a (possibly empty) collection view of the CRLs read from the given input stream <code>inStream</code>.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>abstract <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/Certificate.html" title="class in java.security.cert">Certificate</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertStoreSpi.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertStoreSpi.html#engineGetCertificates-java.security.cert.CertSelector-">engineGetCertificates</a></span>(<a href="../../../java/security/cert/CertSelector.html" title="interface in java.security.cert">CertSelector</a>&nbsp;selector)</code> <div class="block">Returns a <code>Collection</code> of <code>Certificate</code>s that match the specified selector.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>abstract <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/CRL.html" title="class in java.security.cert">CRL</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertStoreSpi.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertStoreSpi.html#engineGetCRLs-java.security.cert.CRLSelector-">engineGetCRLs</a></span>(<a href="../../../java/security/cert/CRLSelector.html" title="interface in java.security.cert">CRLSelector</a>&nbsp;selector)</code> <div class="block">Returns a <code>Collection</code> of <code>CRL</code>s that match the specified selector.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/Certificate.html" title="class in java.security.cert">Certificate</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertificateFactory.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertificateFactory.html#generateCertificates-java.io.InputStream-">generateCertificates</a></span>(<a href="../../../java/io/InputStream.html" title="class in java.io">InputStream</a>&nbsp;inStream)</code> <div class="block">Returns a (possibly empty) collection view of the certificates read from the given input stream <code>inStream</code>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/CRL.html" title="class in java.security.cert">CRL</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertificateFactory.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertificateFactory.html#generateCRLs-java.io.InputStream-">generateCRLs</a></span>(<a href="../../../java/io/InputStream.html" title="class in java.io">InputStream</a>&nbsp;inStream)</code> <div class="block">Returns a (possibly empty) collection view of the CRLs read from the given input stream <code>inStream</code>.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/Certificate.html" title="class in java.security.cert">Certificate</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertStore.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertStore.html#getCertificates-java.security.cert.CertSelector-">getCertificates</a></span>(<a href="../../../java/security/cert/CertSelector.html" title="interface in java.security.cert">CertSelector</a>&nbsp;selector)</code> <div class="block">Returns a <code>Collection</code> of <code>Certificate</code>s that match the specified selector.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CollectionCertStoreParameters.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CollectionCertStoreParameters.html#getCollection--">getCollection</a></span>()</code> <div class="block">Returns the <code>Collection</code> from which <code>Certificate</code>s and <code>CRL</code>s are retrieved.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/security/cert/CRL.html" title="class in java.security.cert">CRL</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CertStore.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/CertStore.html#getCRLs-java.security.cert.CRLSelector-">getCRLs</a></span>(<a href="../../../java/security/cert/CRLSelector.html" title="interface in java.security.cert">CRLSelector</a>&nbsp;selector)</code> <div class="block">Returns a <code>Collection</code> of <code>CRL</code>s that match the specified selector.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509Certificate.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509Certificate.html#getIssuerAlternativeNames--">getIssuerAlternativeNames</a></span>()</code> <div class="block">Gets an immutable collection of issuer alternative names from the <code>IssuerAltName</code> extension, (OID = 2.5.29.18).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509CRLSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CRLSelector.html#getIssuerNames--">getIssuerNames</a></span>()</code> <div class="block">Returns a copy of the issuerNames criterion.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../javax/security/auth/x500/X500Principal.html" title="class in javax.security.auth.x500">X500Principal</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509CRLSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CRLSelector.html#getIssuers--">getIssuers</a></span>()</code> <div class="block">Returns the issuerNames criterion.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509CertSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CertSelector.html#getPathToNames--">getPathToNames</a></span>()</code> <div class="block">Returns a copy of the pathToNames criterion.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509Certificate.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509Certificate.html#getSubjectAlternativeNames--">getSubjectAlternativeNames</a></span>()</code> <div class="block">Gets an immutable collection of subject alternative names from the <code>SubjectAltName</code> extension, (OID = 2.5.29.17).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">X509CertSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CertSelector.html#getSubjectAlternativeNames--">getSubjectAlternativeNames</a></span>()</code> <div class="block">Returns a copy of the subjectAlternativeNames criterion.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/security/cert/package-summary.html">java.security.cert</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><span class="typeNameLabel">PKIXCertPathChecker.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/PKIXCertPathChecker.html#check-java.security.cert.Certificate-java.util.Collection-">check</a></span>(<a href="../../../java/security/cert/Certificate.html" title="class in java.security.cert">Certificate</a>&nbsp;cert, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;&nbsp;unresolvedCritExts)</code> <div class="block">Performs the check(s) on the specified certificate using its internal state and removes any critical extensions that it processes from the specified collection of OID strings that represent the unresolved critical extensions.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">X509CRLSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CRLSelector.html#setIssuerNames-java.util.Collection-">setIssuerNames</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;names)</code> <div class="block"><strong>Note:</strong> use <a href="../../../java/security/cert/X509CRLSelector.html#setIssuers-java.util.Collection-">X509CRLSelector.setIssuers(Collection)</a> instead or only specify the byte array form of distinguished names when using this method.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">X509CRLSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CRLSelector.html#setIssuers-java.util.Collection-">setIssuers</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../javax/security/auth/x500/X500Principal.html" title="class in javax.security.auth.x500">X500Principal</a>&gt;&nbsp;issuers)</code> <div class="block">Sets the issuerNames criterion.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">X509CertSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CertSelector.html#setPathToNames-java.util.Collection-">setPathToNames</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;&nbsp;names)</code> <div class="block">Sets the pathToNames criterion.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">X509CertSelector.</span><code><span class="memberNameLink"><a href="../../../java/security/cert/X509CertSelector.html#setSubjectAlternativeNames-java.util.Collection-">setSubjectAlternativeNames</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;?&gt;&gt;&nbsp;names)</code> <div class="block">Sets the subjectAlternativeNames criterion.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../java/security/cert/package-summary.html">java.security.cert</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/security/cert/CollectionCertStoreParameters.html#CollectionCertStoreParameters-java.util.Collection-">CollectionCertStoreParameters</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;collection)</code> <div class="block">Creates an instance of <code>CollectionCertStoreParameters</code> which will allow certificates and CRLs to be retrieved from the specified <code>Collection</code>.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.util"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/package-summary.html">java.util</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subinterfaces, and an explanation"> <caption><span>Subinterfaces of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/package-summary.html">java.util</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Interface and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Deque.html" title="interface in java.util">Deque</a>&lt;E&gt;</span></code> <div class="block">A linear collection that supports element insertion and removal at both ends.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;E&gt;</span></code> <div class="block">An ordered collection (also known as a <i>sequence</i>).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/NavigableSet.html" title="interface in java.util">NavigableSet</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/SortedSet.html" title="interface in java.util"><code>SortedSet</code></a> extended with navigation methods reporting closest matches for given search targets.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Queue.html" title="interface in java.util">Queue</a>&lt;E&gt;</span></code> <div class="block">A collection designed for holding elements prior to processing.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Set.html" title="interface in java.util">Set</a>&lt;E&gt;</span></code> <div class="block">A collection that contains no duplicate elements.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/SortedSet.html" title="interface in java.util">SortedSet</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/Set.html" title="interface in java.util"><code>Set</code></a> that further provides a <i>total ordering</i> on its elements.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../java/util/package-summary.html">java.util</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/AbstractCollection.html" title="class in java.util">AbstractCollection</a>&lt;E&gt;</span></code> <div class="block">This class provides a skeletal implementation of the <tt>Collection</tt> interface, to minimize the effort required to implement this interface.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/AbstractList.html" title="class in java.util">AbstractList</a>&lt;E&gt;</span></code> <div class="block">This class provides a skeletal implementation of the <a href="../../../java/util/List.html" title="interface in java.util"><code>List</code></a> interface to minimize the effort required to implement this interface backed by a "random access" data store (such as an array).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/AbstractQueue.html" title="class in java.util">AbstractQueue</a>&lt;E&gt;</span></code> <div class="block">This class provides skeletal implementations of some <a href="../../../java/util/Queue.html" title="interface in java.util"><code>Queue</code></a> operations.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/AbstractSequentialList.html" title="class in java.util">AbstractSequentialList</a>&lt;E&gt;</span></code> <div class="block">This class provides a skeletal implementation of the <tt>List</tt> interface to minimize the effort required to implement this interface backed by a "sequential access" data store (such as a linked list).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/AbstractSet.html" title="class in java.util">AbstractSet</a>&lt;E&gt;</span></code> <div class="block">This class provides a skeletal implementation of the <tt>Set</tt> interface to minimize the effort required to implement this interface.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/ArrayDeque.html" title="class in java.util">ArrayDeque</a>&lt;E&gt;</span></code> <div class="block">Resizable-array implementation of the <a href="../../../java/util/Deque.html" title="interface in java.util"><code>Deque</code></a> interface.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html" title="class in java.util">ArrayList</a>&lt;E&gt;</span></code> <div class="block">Resizable-array implementation of the <tt>List</tt> interface.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/EnumSet.html" title="class in java.util">EnumSet</a>&lt;E extends <a href="../../../java/lang/Enum.html" title="class in java.lang">Enum</a>&lt;E&gt;&gt;</span></code> <div class="block">A specialized <a href="../../../java/util/Set.html" title="interface in java.util"><code>Set</code></a> implementation for use with enum types.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/HashSet.html" title="class in java.util">HashSet</a>&lt;E&gt;</span></code> <div class="block">This class implements the <tt>Set</tt> interface, backed by a hash table (actually a <tt>HashMap</tt> instance).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/LinkedHashSet.html" title="class in java.util">LinkedHashSet</a>&lt;E&gt;</span></code> <div class="block">Hash table and linked list implementation of the <tt>Set</tt> interface, with predictable iteration order.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/LinkedList.html" title="class in java.util">LinkedList</a>&lt;E&gt;</span></code> <div class="block">Doubly-linked list implementation of the <code>List</code> and <code>Deque</code> interfaces.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/PriorityQueue.html" title="class in java.util">PriorityQueue</a>&lt;E&gt;</span></code> <div class="block">An unbounded priority <a href="../../../java/util/Queue.html" title="interface in java.util">queue</a> based on a priority heap.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Stack.html" title="class in java.util">Stack</a>&lt;E&gt;</span></code> <div class="block">The <code>Stack</code> class represents a last-in-first-out (LIFO) stack of objects.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/TreeSet.html" title="class in java.util">TreeSet</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/NavigableSet.html" title="interface in java.util"><code>NavigableSet</code></a> implementation based on a <a href="../../../java/util/TreeMap.html" title="class in java.util"><code>TreeMap</code></a>.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Vector.html" title="class in java.util">Vector</a>&lt;E&gt;</span></code> <div class="block">The <code>Vector</code> class implements a growable array of objects.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/package-summary.html">java.util</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static &lt;E&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;E&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#checkedCollection-java.util.Collection-java.lang.Class-">checkedCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;E&gt;&nbsp;c, <a href="../../../java/lang/Class.html" title="class in java.lang">Class</a>&lt;E&gt;&nbsp;type)</code> <div class="block">Returns a dynamically typesafe view of the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#synchronizedCollection-java.util.Collection-">synchronizedCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&nbsp;c)</code> <div class="block">Returns a synchronized (thread-safe) collection backed by the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#unmodifiableCollection-java.util.Collection-">unmodifiableCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;c)</code> <div class="block">Returns an unmodifiable view of the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/IdentityHashMap.html" title="type parameter in IdentityHashMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">IdentityHashMap.</span><code><span class="memberNameLink"><a href="../../../java/util/IdentityHashMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/SortedMap.html" title="type parameter in SortedMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">SortedMap.</span><code><span class="memberNameLink"><a href="../../../java/util/SortedMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/WeakHashMap.html" title="type parameter in WeakHashMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">WeakHashMap.</span><code><span class="memberNameLink"><a href="../../../java/util/WeakHashMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/EnumMap.html" title="type parameter in EnumMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">EnumMap.</span><code><span class="memberNameLink"><a href="../../../java/util/EnumMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/HashMap.html" title="type parameter in HashMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">HashMap.</span><code><span class="memberNameLink"><a href="../../../java/util/HashMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/LinkedHashMap.html" title="type parameter in LinkedHashMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">LinkedHashMap.</span><code><span class="memberNameLink"><a href="../../../java/util/LinkedHashMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/Hashtable.html" title="type parameter in Hashtable">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Hashtable.</span><code><span class="memberNameLink"><a href="../../../java/util/Hashtable.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/TreeMap.html" title="type parameter in TreeMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">TreeMap.</span><code><span class="memberNameLink"><a href="../../../java/util/TreeMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/AbstractMap.html" title="type parameter in AbstractMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractMap.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/Map.html" title="type parameter in Map">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Map.</span><code><span class="memberNameLink"><a href="../../../java/util/Map.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/package-summary.html">java.util</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collection.</span><code><span class="memberNameLink"><a href="../../../java/util/Collection.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/Collection.html" title="type parameter in Collection">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/ArrayList.html" title="type parameter in ArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Vector.</span><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/Vector.html" title="type parameter in Vector">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified Collection to the end of this Vector, in the order that they are returned by the specified Collection's Iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">List.</span><code><span class="memberNameLink"><a href="../../../java/util/List.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/List.html" title="type parameter in List">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractCollection.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractCollection.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/AbstractCollection.html" title="type parameter in AbstractCollection">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractQueue.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/AbstractQueue.html" title="type parameter in AbstractQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this queue.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Set.</span><code><span class="memberNameLink"><a href="../../../java/util/Set.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/Set.html" title="type parameter in Set">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this set if they're not already present (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">LinkedList.</span><code><span class="memberNameLink"><a href="../../../java/util/LinkedList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/LinkedList.html" title="type parameter in LinkedList">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">TreeSet.</span><code><span class="memberNameLink"><a href="../../../java/util/TreeSet.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/TreeSet.html" title="type parameter in TreeSet">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this set.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#addAll-java.util.Collection-T...-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super T&gt;&nbsp;c, T...&nbsp;elements)</code> <div class="block">Adds all of the specified elements to the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractSequentialList.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractSequentialList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/AbstractSequentialList.html" title="type parameter in AbstractSequentialList">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list at the specified position (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/ArrayList.html" title="type parameter in ArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list, starting at the specified position.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Vector.</span><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/Vector.html" title="type parameter in Vector">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified Collection into this Vector at the specified position.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">List.</span><code><span class="memberNameLink"><a href="../../../java/util/List.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/List.html" title="type parameter in List">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list at the specified position (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractList.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/AbstractList.html" title="type parameter in AbstractList">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list at the specified position (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">LinkedList.</span><code><span class="memberNameLink"><a href="../../../java/util/LinkedList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/LinkedList.html" title="type parameter in LinkedList">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list, starting at the specified position.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;E&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;E&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#checkedCollection-java.util.Collection-java.lang.Class-">checkedCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;E&gt;&nbsp;c, <a href="../../../java/lang/Class.html" title="class in java.lang">Class</a>&lt;E&gt;&nbsp;type)</code> <div class="block">Returns a dynamically typesafe view of the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collection.</span><code><span class="memberNameLink"><a href="../../../java/util/Collection.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <tt>true</tt> if this collection contains all of the elements in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Vector.</span><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns true if this Vector contains all of the elements in the specified Collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">List.</span><code><span class="memberNameLink"><a href="../../../java/util/List.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <tt>true</tt> if this list contains all of the elements of the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractCollection.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractCollection.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <tt>true</tt> if this collection contains all of the elements in the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Set.</span><code><span class="memberNameLink"><a href="../../../java/util/Set.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <tt>true</tt> if this set contains all of the elements of the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;E extends <a href="../../../java/lang/Enum.html" title="class in java.lang">Enum</a>&lt;E&gt;&gt;<br><a href="../../../java/util/EnumSet.html" title="class in java.util">EnumSet</a>&lt;E&gt;</code></td> <td class="colLast"><span class="typeNameLabel">EnumSet.</span><code><span class="memberNameLink"><a href="../../../java/util/EnumSet.html#copyOf-java.util.Collection-">copyOf</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;E&gt;&nbsp;c)</code> <div class="block">Creates an enum set initialized from the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#disjoint-java.util.Collection-java.util.Collection-">disjoint</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c1, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c2)</code> <div class="block">Returns <code>true</code> if the two specified collections have no elements in common.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#disjoint-java.util.Collection-java.util.Collection-">disjoint</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c1, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c2)</code> <div class="block">Returns <code>true</code> if the two specified collections have no elements in common.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Enumeration.html" title="interface in java.util">Enumeration</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#enumeration-java.util.Collection-">enumeration</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&nbsp;c)</code> <div class="block">Returns an enumeration over the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.html" title="class in java.util">Locale</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#filter-java.util.List-java.util.Collection-">filter</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/Locale.html" title="class in java.util">Locale</a>&gt;&nbsp;locales)</code> <div class="block">Returns a list of matching <code>Locale</code> instances using the filtering mechanism defined in RFC 4647.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.html" title="class in java.util">Locale</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#filter-java.util.List-java.util.Collection-java.util.Locale.FilteringMode-">filter</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/Locale.html" title="class in java.util">Locale</a>&gt;&nbsp;locales, <a href="../../../java/util/Locale.FilteringMode.html" title="enum in java.util">Locale.FilteringMode</a>&nbsp;mode)</code> <div class="block">Returns a list of matching <code>Locale</code> instances using the filtering mechanism defined in RFC 4647.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#filterTags-java.util.List-java.util.Collection-">filterTags</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;&nbsp;tags)</code> <div class="block">Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#filterTags-java.util.List-java.util.Collection-java.util.Locale.FilteringMode-">filterTags</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;&nbsp;tags, <a href="../../../java/util/Locale.FilteringMode.html" title="enum in java.util">Locale.FilteringMode</a>&nbsp;mode)</code> <div class="block">Returns a list of matching languages tags using the basic filtering mechanism defined in RFC 4647.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#frequency-java.util.Collection-java.lang.Object-">frequency</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c, <a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&nbsp;o)</code> <div class="block">Returns the number of elements in the specified collection equal to the specified object.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../java/util/Locale.html" title="class in java.util">Locale</a></code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#lookup-java.util.List-java.util.Collection-">lookup</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/Locale.html" title="class in java.util">Locale</a>&gt;&nbsp;locales)</code> <div class="block">Returns a <code>Locale</code> instance for the best-matching language tag using the lookup mechanism defined in RFC 4647.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../java/lang/String.html" title="class in java.lang">String</a></code></td> <td class="colLast"><span class="typeNameLabel">Locale.</span><code><span class="memberNameLink"><a href="../../../java/util/Locale.html#lookupTag-java.util.List-java.util.Collection-">lookupTag</a></span>(<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/Locale.LanguageRange.html" title="class in java.util">Locale.LanguageRange</a>&gt;&nbsp;priorityList, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&gt;&nbsp;tags)</code> <div class="block">Returns the best-matching language tag using the lookup mechanism defined in RFC 4647.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T extends <a href="../../../java/lang/Object.html" title="class in java.lang">Object</a> &amp; <a href="../../../java/lang/Comparable.html" title="interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;<br>T</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#max-java.util.Collection-">max</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;coll)</code> <div class="block">Returns the maximum element of the given collection, according to the <i>natural ordering</i> of its elements.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#max-java.util.Collection-java.util.Comparator-">max</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;coll, <a href="../../../java/util/Comparator.html" title="interface in java.util">Comparator</a>&lt;? super T&gt;&nbsp;comp)</code> <div class="block">Returns the maximum element of the given collection, according to the order induced by the specified comparator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T extends <a href="../../../java/lang/Object.html" title="class in java.lang">Object</a> &amp; <a href="../../../java/lang/Comparable.html" title="interface in java.lang">Comparable</a>&lt;? super T&gt;&gt;<br>T</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#min-java.util.Collection-">min</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;coll)</code> <div class="block">Returns the minimum element of the given collection, according to the <i>natural ordering</i> of its elements.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#min-java.util.Collection-java.util.Comparator-">min</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;coll, <a href="../../../java/util/Comparator.html" title="interface in java.util">Comparator</a>&lt;? super T&gt;&nbsp;comp)</code> <div class="block">Returns the minimum element of the given collection, according to the order induced by the specified comparator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractSet.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractSet.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this set all of its elements that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collection.</span><code><span class="memberNameLink"><a href="../../../java/util/Collection.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes all of this collection's elements that are also contained in the specified collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this list all of its elements that are contained in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Vector.</span><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this Vector all of its elements that are contained in the specified Collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">List.</span><code><span class="memberNameLink"><a href="../../../java/util/List.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this list all of its elements that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractCollection.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractCollection.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes all of this collection's elements that are also contained in the specified collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Set.</span><code><span class="memberNameLink"><a href="../../../java/util/Set.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this set all of its elements that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Collection.</span><code><span class="memberNameLink"><a href="../../../java/util/Collection.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this collection that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this list that are contained in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Vector.</span><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this Vector that are contained in the specified Collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">List.</span><code><span class="memberNameLink"><a href="../../../java/util/List.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this list that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AbstractCollection.</span><code><span class="memberNameLink"><a href="../../../java/util/AbstractCollection.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this collection that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">Set.</span><code><span class="memberNameLink"><a href="../../../java/util/Set.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this set that are contained in the specified collection (optional operation).</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Spliterator.html" title="interface in java.util">Spliterator</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Spliterators.</span><code><span class="memberNameLink"><a href="../../../java/util/Spliterators.html#spliterator-java.util.Collection-int-">spliterator</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;c, int&nbsp;characteristics)</code> <div class="block">Creates a <code>Spliterator</code> using the given collection's <a href="../../../java/util/Collection.html#iterator--"><code>iterator()</code></a> as the source of elements, and reporting its <a href="../../../java/util/Collection.html#size--"><code>size()</code></a> as its initial size.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#synchronizedCollection-java.util.Collection-">synchronizedCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&nbsp;c)</code> <div class="block">Returns a synchronized (thread-safe) collection backed by the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T&gt;&nbsp;<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collections.</span><code><span class="memberNameLink"><a href="../../../java/util/Collections.html#unmodifiableCollection-java.util.Collection-">unmodifiableCollection</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends T&gt;&nbsp;c)</code> <div class="block">Returns an unmodifiable view of the specified collection.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../java/util/package-summary.html">java.util</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/ArrayDeque.html#ArrayDeque-java.util.Collection-">ArrayDeque</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/ArrayDeque.html" title="type parameter in ArrayDeque">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a deque containing the elements of the specified collection, in the order they are returned by the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/ArrayList.html#ArrayList-java.util.Collection-">ArrayList</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/ArrayList.html" title="type parameter in ArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/HashSet.html#HashSet-java.util.Collection-">HashSet</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/HashSet.html" title="type parameter in HashSet">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a new set containing the elements in the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/LinkedHashSet.html#LinkedHashSet-java.util.Collection-">LinkedHashSet</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/LinkedHashSet.html" title="type parameter in LinkedHashSet">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a new linked hash set with the same elements as the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/LinkedList.html#LinkedList-java.util.Collection-">LinkedList</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/LinkedList.html" title="type parameter in LinkedList">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/PriorityQueue.html#PriorityQueue-java.util.Collection-">PriorityQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/PriorityQueue.html" title="type parameter in PriorityQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>PriorityQueue</code> containing the elements in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/TreeSet.html#TreeSet-java.util.Collection-">TreeSet</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/TreeSet.html" title="type parameter in TreeSet">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a new tree set containing the elements in the specified collection, sorted according to the <i>natural ordering</i> of its elements.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/Vector.html#Vector-java.util.Collection-">Vector</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/Vector.html" title="type parameter in Vector">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a vector containing the elements of the specified collection, in the order they are returned by the collection's iterator.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.util.concurrent"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subinterfaces, and an explanation"> <caption><span>Subinterfaces of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Interface and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/BlockingDeque.html" title="interface in java.util.concurrent">BlockingDeque</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/Deque.html" title="interface in java.util"><code>Deque</code></a> that additionally supports blocking operations that wait for the deque to become non-empty when retrieving an element, and wait for space to become available in the deque when storing an element.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">BlockingQueue</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/Queue.html" title="interface in java.util"><code>Queue</code></a> that additionally supports operations that wait for the queue to become non-empty when retrieving an element, and wait for space to become available in the queue when storing an element.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>interface&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/TransferQueue.html" title="interface in java.util.concurrent">TransferQueue</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent"><code>BlockingQueue</code></a> in which producers may wait for consumers to receive elements.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ArrayBlockingQueue.html" title="class in java.util.concurrent">ArrayBlockingQueue</a>&lt;E&gt;</span></code> <div class="block">A bounded <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">blocking queue</a> backed by an array.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentHashMap.KeySetView.html" title="class in java.util.concurrent">ConcurrentHashMap.KeySetView</a>&lt;K,V&gt;</span></code> <div class="block">A view of a ConcurrentHashMap as a <a href="../../../java/util/Set.html" title="interface in java.util"><code>Set</code></a> of keys, in which additions may optionally be enabled by mapping to a common value.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedDeque.html" title="class in java.util.concurrent">ConcurrentLinkedDeque</a>&lt;E&gt;</span></code> <div class="block">An unbounded concurrent <a href="../../../java/util/Deque.html" title="interface in java.util">deque</a> based on linked nodes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedQueue.html" title="class in java.util.concurrent">ConcurrentLinkedQueue</a>&lt;E&gt;</span></code> <div class="block">An unbounded thread-safe <a href="../../../java/util/Queue.html" title="interface in java.util">queue</a> based on linked nodes.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentSkipListSet.html" title="class in java.util.concurrent">ConcurrentSkipListSet</a>&lt;E&gt;</span></code> <div class="block">A scalable concurrent <a href="../../../java/util/NavigableSet.html" title="interface in java.util"><code>NavigableSet</code></a> implementation based on a <a href="../../../java/util/concurrent/ConcurrentSkipListMap.html" title="class in java.util.concurrent"><code>ConcurrentSkipListMap</code></a>.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="class in java.util.concurrent">CopyOnWriteArrayList</a>&lt;E&gt;</span></code> <div class="block">A thread-safe variant of <a href="../../../java/util/ArrayList.html" title="class in java.util"><code>ArrayList</code></a> in which all mutative operations (<code>add</code>, <code>set</code>, and so on) are implemented by making a fresh copy of the underlying array.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html" title="class in java.util.concurrent">CopyOnWriteArraySet</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/Set.html" title="interface in java.util"><code>Set</code></a> that uses an internal <a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="class in java.util.concurrent"><code>CopyOnWriteArrayList</code></a> for all of its operations.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/DelayQueue.html" title="class in java.util.concurrent">DelayQueue</a>&lt;E extends <a href="../../../java/util/concurrent/Delayed.html" title="interface in java.util.concurrent">Delayed</a>&gt;</span></code> <div class="block">An unbounded <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">blocking queue</a> of <code>Delayed</code> elements, in which an element can only be taken when its delay has expired.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingDeque.html" title="class in java.util.concurrent">LinkedBlockingDeque</a>&lt;E&gt;</span></code> <div class="block">An optionally-bounded <a href="../../../java/util/concurrent/BlockingDeque.html" title="interface in java.util.concurrent">blocking deque</a> based on linked nodes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingQueue.html" title="class in java.util.concurrent">LinkedBlockingQueue</a>&lt;E&gt;</span></code> <div class="block">An optionally-bounded <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">blocking queue</a> based on linked nodes.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedTransferQueue.html" title="class in java.util.concurrent">LinkedTransferQueue</a>&lt;E&gt;</span></code> <div class="block">An unbounded <a href="../../../java/util/concurrent/TransferQueue.html" title="interface in java.util.concurrent"><code>TransferQueue</code></a> based on linked nodes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/PriorityBlockingQueue.html" title="class in java.util.concurrent">PriorityBlockingQueue</a>&lt;E&gt;</span></code> <div class="block">An unbounded <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">blocking queue</a> that uses the same ordering rules as class <a href="../../../java/util/PriorityQueue.html" title="class in java.util"><code>PriorityQueue</code></a> and supplies blocking retrieval operations.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html" title="class in java.util.concurrent">SynchronousQueue</a>&lt;E&gt;</span></code> <div class="block">A <a href="../../../java/util/concurrent/BlockingQueue.html" title="interface in java.util.concurrent">blocking queue</a> in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Semaphore.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/Semaphore.html#getQueuedThreads--">getQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static &lt;T extends <a href="../../../java/util/concurrent/ForkJoinTask.html" title="class in java.util.concurrent">ForkJoinTask</a>&lt;?&gt;&gt;<br><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ForkJoinTask.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ForkJoinTask.html#invokeAll-java.util.Collection-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&nbsp;tasks)</code> <div class="block">Forks all tasks in the specified collection, returning when <code>isDone</code> holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/concurrent/ConcurrentSkipListMap.html" title="type parameter in ConcurrentSkipListMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentSkipListMap.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentSkipListMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/util/concurrent/ConcurrentHashMap.html" title="type parameter in ConcurrentHashMap">V</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentHashMap.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentHashMap.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArraySet.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArraySet.html" title="type parameter in CopyOnWriteArraySet">E</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this set if they're not already present.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentLinkedDeque.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedDeque.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentLinkedDeque.html" title="type parameter in ConcurrentLinkedDeque">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this deque, in the order that they are returned by the specified collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentLinkedQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedQueue.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentLinkedQueue.html" title="type parameter in ConcurrentLinkedQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this queue, in the order that they are returned by the specified collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="type parameter in CopyOnWriteArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentHashMap.KeySetView.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentHashMap.KeySetView.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentHashMap.KeySetView.html" title="type parameter in ConcurrentHashMap.KeySetView">K</a>&gt;&nbsp;c)</code> <div class="block">Adds all of the elements in the specified collection to this set, as if by calling <a href="../../../java/util/concurrent/ConcurrentHashMap.KeySetView.html#add-K-"><code>ConcurrentHashMap.KeySetView.add(K)</code></a> on each one.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="type parameter in CopyOnWriteArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list, starting at the specified position.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#addAllAbsent-java.util.Collection-">addAllAbsent</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="type parameter in CopyOnWriteArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection that are not already contained in this list, to the end of this list, in the order that they are returned by the specified collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArraySet.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <code>true</code> if this set contains all of the elements of the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <code>true</code> if this list contains all of the elements of the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">SynchronousQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html#containsAll-java.util.Collection-">containsAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Returns <code>false</code> unless the given collection is empty.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected int</code></td> <td class="colLast"><span class="typeNameLabel">ForkJoinPool.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ForkJoinPool.html#drainTasksTo-java.util.Collection-">drainTasksTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/ForkJoinTask.html" title="class in java.util.concurrent">ForkJoinTask</a>&lt;?&gt;&gt;&nbsp;c)</code> <div class="block">Removes all available unexecuted submitted and forked tasks from scheduling queues and adds them to the given collection, without altering their execution status.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedTransferQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedTransferQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedTransferQueue.html" title="type parameter in LinkedTransferQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedBlockingDeque.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingDeque.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedBlockingDeque.html" title="type parameter in LinkedBlockingDeque">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">ArrayBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ArrayBlockingQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/ArrayBlockingQueue.html" title="type parameter in ArrayBlockingQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">BlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/BlockingQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/BlockingQueue.html" title="type parameter in BlockingQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Removes all available elements from this queue and adds them to the given collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">DelayQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/DelayQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/DelayQueue.html" title="type parameter in DelayQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedBlockingQueue.html" title="type parameter in LinkedBlockingQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">PriorityBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/PriorityBlockingQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/PriorityBlockingQueue.html" title="type parameter in PriorityBlockingQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">SynchronousQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html#drainTo-java.util.Collection-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/SynchronousQueue.html" title="type parameter in SynchronousQueue">E</a>&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedTransferQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedTransferQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedTransferQueue.html" title="type parameter in LinkedTransferQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedBlockingDeque.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingDeque.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedBlockingDeque.html" title="type parameter in LinkedBlockingDeque">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">ArrayBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ArrayBlockingQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/ArrayBlockingQueue.html" title="type parameter in ArrayBlockingQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">BlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/BlockingQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/BlockingQueue.html" title="type parameter in BlockingQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code> <div class="block">Removes at most the given number of available elements from this queue and adds them to the given collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">DelayQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/DelayQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/DelayQueue.html" title="type parameter in DelayQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">LinkedBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/LinkedBlockingQueue.html" title="type parameter in LinkedBlockingQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">PriorityBlockingQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/PriorityBlockingQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/PriorityBlockingQueue.html" title="type parameter in PriorityBlockingQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><span class="typeNameLabel">SynchronousQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html#drainTo-java.util.Collection-int-">drainTo</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? super <a href="../../../java/util/concurrent/SynchronousQueue.html" title="type parameter in SynchronousQueue">E</a>&gt;&nbsp;c, int&nbsp;maxElements)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/concurrent/Future.html" title="interface in java.util.concurrent">Future</a>&lt;T&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/AbstractExecutorService.html#invokeAll-java.util.Collection-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/concurrent/Future.html" title="interface in java.util.concurrent">Future</a>&lt;T&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ExecutorService.html#invokeAll-java.util.Collection-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks)</code> <div class="block">Executes the given tasks, returning a list of Futures holding their status and results when all complete.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/concurrent/Future.html" title="interface in java.util.concurrent">Future</a>&lt;T&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ForkJoinPool.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ForkJoinPool.html#invokeAll-java.util.Collection-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/concurrent/Future.html" title="interface in java.util.concurrent">Future</a>&lt;T&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/AbstractExecutorService.html#invokeAll-java.util.Collection-long-java.util.concurrent.TimeUnit-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks, long&nbsp;timeout, <a href="../../../java/util/concurrent/TimeUnit.html" title="enum in java.util.concurrent">TimeUnit</a>&nbsp;unit)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;<a href="../../../java/util/List.html" title="interface in java.util">List</a>&lt;<a href="../../../java/util/concurrent/Future.html" title="interface in java.util.concurrent">Future</a>&lt;T&gt;&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ExecutorService.html#invokeAll-java.util.Collection-long-java.util.concurrent.TimeUnit-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks, long&nbsp;timeout, <a href="../../../java/util/concurrent/TimeUnit.html" title="enum in java.util.concurrent">TimeUnit</a>&nbsp;unit)</code> <div class="block">Executes the given tasks, returning a list of Futures holding their status and results when all complete or the timeout expires, whichever happens first.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static &lt;T extends <a href="../../../java/util/concurrent/ForkJoinTask.html" title="class in java.util.concurrent">ForkJoinTask</a>&lt;?&gt;&gt;<br><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ForkJoinTask.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ForkJoinTask.html#invokeAll-java.util.Collection-">invokeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&nbsp;tasks)</code> <div class="block">Forks all tasks in the specified collection, returning when <code>isDone</code> holds for each task or an (unchecked) exception is encountered, in which case the exception is rethrown.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">AbstractExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/AbstractExecutorService.html#invokeAny-java.util.Collection-">invokeAny</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">ExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ExecutorService.html#invokeAny-java.util.Collection-">invokeAny</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks)</code> <div class="block">Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">AbstractExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/AbstractExecutorService.html#invokeAny-java.util.Collection-long-java.util.concurrent.TimeUnit-">invokeAny</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks, long&nbsp;timeout, <a href="../../../java/util/concurrent/TimeUnit.html" title="enum in java.util.concurrent">TimeUnit</a>&nbsp;unit)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>&lt;T&gt;&nbsp;T</code></td> <td class="colLast"><span class="typeNameLabel">ExecutorService.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ExecutorService.html#invokeAny-java.util.Collection-long-java.util.concurrent.TimeUnit-">invokeAny</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/Callable.html" title="interface in java.util.concurrent">Callable</a>&lt;T&gt;&gt;&nbsp;tasks, long&nbsp;timeout, <a href="../../../java/util/concurrent/TimeUnit.html" title="enum in java.util.concurrent">TimeUnit</a>&nbsp;unit)</code> <div class="block">Executes the given tasks, returning the result of one that has completed successfully (i.e., without throwing an exception), if any do before the given timeout elapses.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArraySet.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this set all of its elements that are contained in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this list all of its elements that are contained in the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">SynchronousQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Always returns <code>false</code>.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">ConcurrentSkipListSet.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentSkipListSet.html#removeAll-java.util.Collection-">removeAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Removes from this set all of its elements that are contained in the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArraySet.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this set that are contained in the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">CopyOnWriteArrayList.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Retains only the elements in this list that are contained in the specified collection.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">SynchronousQueue.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/SynchronousQueue.html#retainAll-java.util.Collection-">retainAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Always returns <code>false</code>.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../java/util/concurrent/package-summary.html">java.util.concurrent</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ArrayBlockingQueue.html#ArrayBlockingQueue-int-boolean-java.util.Collection-">ArrayBlockingQueue</a></span>(int&nbsp;capacity, boolean&nbsp;fair, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ArrayBlockingQueue.html" title="type parameter in ArrayBlockingQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates an <code>ArrayBlockingQueue</code> with the given (fixed) capacity, the specified access policy and initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedDeque.html#ConcurrentLinkedDeque-java.util.Collection-">ConcurrentLinkedDeque</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentLinkedDeque.html" title="type parameter in ConcurrentLinkedDeque">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a deque initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentLinkedQueue.html#ConcurrentLinkedQueue-java.util.Collection-">ConcurrentLinkedQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentLinkedQueue.html" title="type parameter in ConcurrentLinkedQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>ConcurrentLinkedQueue</code> initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/ConcurrentSkipListSet.html#ConcurrentSkipListSet-java.util.Collection-">ConcurrentSkipListSet</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/ConcurrentSkipListSet.html" title="type parameter in ConcurrentSkipListSet">E</a>&gt;&nbsp;c)</code> <div class="block">Constructs a new set containing the elements in the specified collection, that orders its elements according to their <a href="../../../java/lang/Comparable.html" title="interface in java.lang">natural ordering</a>.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArrayList.html#CopyOnWriteArrayList-java.util.Collection-">CopyOnWriteArrayList</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArrayList.html" title="type parameter in CopyOnWriteArrayList">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/CopyOnWriteArraySet.html#CopyOnWriteArraySet-java.util.Collection-">CopyOnWriteArraySet</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/CopyOnWriteArraySet.html" title="type parameter in CopyOnWriteArraySet">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a set containing all of the elements of the specified collection.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/DelayQueue.html#DelayQueue-java.util.Collection-">DelayQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/DelayQueue.html" title="type parameter in DelayQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>DelayQueue</code> initially containing the elements of the given collection of <a href="../../../java/util/concurrent/Delayed.html" title="interface in java.util.concurrent"><code>Delayed</code></a> instances.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingDeque.html#LinkedBlockingDeque-java.util.Collection-">LinkedBlockingDeque</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/LinkedBlockingDeque.html" title="type parameter in LinkedBlockingDeque">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>LinkedBlockingDeque</code> with a capacity of <a href="../../../java/lang/Integer.html#MAX_VALUE"><code>Integer.MAX_VALUE</code></a>, initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedBlockingQueue.html#LinkedBlockingQueue-java.util.Collection-">LinkedBlockingQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/LinkedBlockingQueue.html" title="type parameter in LinkedBlockingQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>LinkedBlockingQueue</code> with a capacity of <a href="../../../java/lang/Integer.html#MAX_VALUE"><code>Integer.MAX_VALUE</code></a>, initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/LinkedTransferQueue.html#LinkedTransferQueue-java.util.Collection-">LinkedTransferQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/LinkedTransferQueue.html" title="type parameter in LinkedTransferQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>LinkedTransferQueue</code> initially containing the elements of the given collection, added in traversal order of the collection's iterator.</div> </td> </tr> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../java/util/concurrent/PriorityBlockingQueue.html#PriorityBlockingQueue-java.util.Collection-">PriorityBlockingQueue</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;? extends <a href="../../../java/util/concurrent/PriorityBlockingQueue.html" title="type parameter in PriorityBlockingQueue">E</a>&gt;&nbsp;c)</code> <div class="block">Creates a <code>PriorityBlockingQueue</code> containing the elements in the specified collection.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.util.concurrent.locks"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/concurrent/locks/package-summary.html">java.util.concurrent.locks</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/concurrent/locks/package-summary.html">java.util.concurrent.locks</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.html#getExclusiveQueuedThreads--">getExclusiveQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire in exclusive mode.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedLongSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#getExclusiveQueuedThreads--">getExclusiveQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire in exclusive mode.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantReadWriteLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantReadWriteLock.html#getQueuedReaderThreads--">getQueuedReaderThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire the read lock.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.html#getQueuedThreads--">getQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantLock.html#getQueuedThreads--">getQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire this lock.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedLongSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#getQueuedThreads--">getQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantReadWriteLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantReadWriteLock.html#getQueuedThreads--">getQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire either the read or write lock.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantReadWriteLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantReadWriteLock.html#getQueuedWriterThreads--">getQueuedWriterThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire the write lock.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.html#getSharedQueuedThreads--">getSharedQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire in shared mode.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedLongSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#getSharedQueuedThreads--">getSharedQueuedThreads</a></span>()</code> <div class="block">Returns a collection containing threads that may be waiting to acquire in shared mode.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedSynchronizer.ConditionObject.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.ConditionObject.html#getWaitingThreads--">getWaitingThreads</a></span>()</code> <div class="block">Returns a collection containing those threads that may be waiting on this Condition.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedLongSynchronizer.ConditionObject.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.ConditionObject.html#getWaitingThreads--">getWaitingThreads</a></span>()</code> <div class="block">Returns a collection containing those threads that may be waiting on this Condition.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedLongSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.html#getWaitingThreads-java.util.concurrent.locks.AbstractQueuedLongSynchronizer.ConditionObject-">getWaitingThreads</a></span>(<a href="../../../java/util/concurrent/locks/AbstractQueuedLongSynchronizer.ConditionObject.html" title="class in java.util.concurrent.locks">AbstractQueuedLongSynchronizer.ConditionObject</a>&nbsp;condition)</code> <div class="block">Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">AbstractQueuedSynchronizer.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.html#getWaitingThreads-java.util.concurrent.locks.AbstractQueuedSynchronizer.ConditionObject-">getWaitingThreads</a></span>(<a href="../../../java/util/concurrent/locks/AbstractQueuedSynchronizer.ConditionObject.html" title="class in java.util.concurrent.locks">AbstractQueuedSynchronizer.ConditionObject</a>&nbsp;condition)</code> <div class="block">Returns a collection containing those threads that may be waiting on the given condition associated with this synchronizer.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantLock.html#getWaitingThreads-java.util.concurrent.locks.Condition-">getWaitingThreads</a></span>(<a href="../../../java/util/concurrent/locks/Condition.html" title="interface in java.util.concurrent.locks">Condition</a>&nbsp;condition)</code> <div class="block">Returns a collection containing those threads that may be waiting on the given condition associated with this lock.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Thread.html" title="class in java.lang">Thread</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">ReentrantReadWriteLock.</span><code><span class="memberNameLink"><a href="../../../java/util/concurrent/locks/ReentrantReadWriteLock.html#getWaitingThreads-java.util.concurrent.locks.Condition-">getWaitingThreads</a></span>(<a href="../../../java/util/concurrent/locks/Condition.html" title="interface in java.util.concurrent.locks">Condition</a>&nbsp;condition)</code> <div class="block">Returns a collection containing those threads that may be waiting on the given condition associated with the write lock.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.util.jar"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/jar/package-summary.html">java.util.jar</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/jar/package-summary.html">java.util.jar</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Attributes.</span><code><span class="memberNameLink"><a href="../../../java/util/jar/Attributes.html#values--">values</a></span>()</code> <div class="block">Returns a Collection view of the attribute values contained in this Map.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="java.util.stream"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../java/util/stream/package-summary.html">java.util.stream</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../java/util/stream/package-summary.html">java.util.stream</a> with type parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static &lt;T,C extends <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;T&gt;&gt;<br><a href="../../../java/util/stream/Collector.html" title="interface in java.util.stream">Collector</a>&lt;T,?,C&gt;</code></td> <td class="colLast"><span class="typeNameLabel">Collectors.</span><code><span class="memberNameLink"><a href="../../../java/util/stream/Collectors.html#toCollection-java.util.function.Supplier-">toCollection</a></span>(<a href="../../../java/util/function/Supplier.html" title="interface in java.util.function">Supplier</a>&lt;C&gt;&nbsp;collectionFactory)</code> <div class="block">Returns a <code>Collector</code> that accumulates the input elements into a new <code>Collection</code>, in encounter order.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.management"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/management/package-summary.html">javax.management</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../javax/management/package-summary.html">javax.management</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../javax/management/AttributeList.html" title="class in javax.management">AttributeList</a></span></code> <div class="block">Represents a list of values for attributes of an MBean.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/management/package-summary.html">javax.management</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AttributeList.</span><code><span class="memberNameLink"><a href="../../../javax/management/AttributeList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's Iterator.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">AttributeList.</span><code><span class="memberNameLink"><a href="../../../javax/management/AttributeList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code> <div class="block">Inserts all of the elements in the specified collection into this list, starting at the specified position.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.management.openmbean"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/management/openmbean/package-summary.html">javax.management.openmbean</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/management/openmbean/package-summary.html">javax.management.openmbean</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CompositeDataSupport.</span><code><span class="memberNameLink"><a href="../../../javax/management/openmbean/CompositeDataSupport.html#values--">values</a></span>()</code> <div class="block">Returns an unmodifiable Collection view of the item values contained in this <tt>CompositeData</tt> instance.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">TabularDataSupport.</span><code><span class="memberNameLink"><a href="../../../javax/management/openmbean/TabularDataSupport.html#values--">values</a></span>()</code> <div class="block">Returns a collection view of the rows contained in this <code>TabularDataSupport</code> instance.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">TabularData.</span><code><span class="memberNameLink"><a href="../../../javax/management/openmbean/TabularData.html#values--">values</a></span>()</code> <div class="block">Returns a collection view of the <code>CompositeData</code> values (ie the rows) contained in this <code>TabularData</code> instance.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CompositeData.</span><code><span class="memberNameLink"><a href="../../../javax/management/openmbean/CompositeData.html#values--">values</a></span>()</code> <div class="block">Returns an unmodifiable Collection view of the item values contained in this <tt>CompositeData</tt> instance.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.management.relation"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/management/relation/package-summary.html">javax.management.relation</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../javax/management/relation/package-summary.html">javax.management.relation</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleList.html" title="class in javax.management.relation">RoleList</a></span></code> <div class="block">A RoleList represents a list of roles (Role objects).</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleUnresolvedList.html" title="class in javax.management.relation">RoleUnresolvedList</a></span></code> <div class="block">A RoleUnresolvedList represents a list of RoleUnresolved objects, representing roles not retrieved from a relation due to a problem encountered when trying to access (read or write) the roles.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/management/relation/package-summary.html">javax.management.relation</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">RoleUnresolvedList.</span><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleUnresolvedList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">RoleList.</span><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleList.html#addAll-java.util.Collection-">addAll</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">RoleUnresolvedList.</span><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleUnresolvedList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><span class="typeNameLabel">RoleList.</span><code><span class="memberNameLink"><a href="../../../javax/management/relation/RoleList.html#addAll-int-java.util.Collection-">addAll</a></span>(int&nbsp;index, <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;&nbsp;c)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.net.ssl"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/net/ssl/package-summary.html">javax.net.ssl</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/net/ssl/package-summary.html">javax.net.ssl</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../javax/net/ssl/SNIMatcher.html" title="class in javax.net.ssl">SNIMatcher</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">SSLParameters.</span><code><span class="memberNameLink"><a href="../../../javax/net/ssl/SSLParameters.html#getSNIMatchers--">getSNIMatchers</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> containing all <a href="../../../javax/net/ssl/SNIMatcher.html" title="class in javax.net.ssl"><code>SNIMatcher</code></a>s of the Server Name Indication (SNI) parameter, or null if none has been set.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/net/ssl/package-summary.html">javax.net.ssl</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">SSLParameters.</span><code><span class="memberNameLink"><a href="../../../javax/net/ssl/SSLParameters.html#setSNIMatchers-java.util.Collection-">setSNIMatchers</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../javax/net/ssl/SNIMatcher.html" title="class in javax.net.ssl">SNIMatcher</a>&gt;&nbsp;matchers)</code> <div class="block">Sets the <a href="../../../javax/net/ssl/SNIMatcher.html" title="class in javax.net.ssl"><code>SNIMatcher</code></a>s of the Server Name Indication (SNI) parameter.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.print.attribute.standard"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/print/attribute/standard/package-summary.html">javax.print.attribute.standard</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../javax/print/attribute/standard/package-summary.html">javax.print.attribute.standard</a> that implement <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>class&nbsp;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../javax/print/attribute/standard/JobStateReasons.html" title="class in javax.print.attribute.standard">JobStateReasons</a></span></code> <div class="block">Class JobStateReasons is a printing attribute class, a set of enumeration values, that provides additional information about the job's current state, i.e., information that augments the value of the job's <a href="../../../javax/print/attribute/standard/JobState.html" title="class in javax.print.attribute.standard"><code>JobState</code></a> attribute.</div> </td> </tr> </tbody> </table> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../javax/print/attribute/standard/package-summary.html">javax.print.attribute.standard</a> with parameters of type <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><span class="memberNameLink"><a href="../../../javax/print/attribute/standard/JobStateReasons.html#JobStateReasons-java.util.Collection-">JobStateReasons</a></span>(<a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../javax/print/attribute/standard/JobStateReason.html" title="class in javax.print.attribute.standard">JobStateReason</a>&gt;&nbsp;collection)</code> <div class="block">Construct a new job state reasons attribute that contains the same <a href="../../../javax/print/attribute/standard/JobStateReason.html" title="class in javax.print.attribute.standard"><code>JobStateReason</code></a> objects as the given collection.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.script"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/script/package-summary.html">javax.script</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/script/package-summary.html">javax.script</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;<a href="../../../java/lang/Object.html" title="class in java.lang">Object</a>&gt;</code></td> <td class="colLast"><span class="typeNameLabel">SimpleBindings.</span><code><span class="memberNameLink"><a href="../../../javax/script/SimpleBindings.html#values--">values</a></span>()</code> <div class="block">Returns a <a href="../../../java/util/Collection.html" title="interface in java.util"><code>Collection</code></a> view of the values contained in this map.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="javax.sql.rowset"> <!-- --> </a> <h3>Uses of <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a> in <a href="../../../javax/sql/rowset/package-summary.html">javax.sql.rowset</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../javax/sql/rowset/package-summary.html">javax.sql.rowset</a> that return <a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">JoinRowSet.</span><code><span class="memberNameLink"><a href="../../../javax/sql/rowset/JoinRowSet.html#getRowSets--">getRowSets</a></span>()</code> <div class="block">Returns a <code>Collection</code> object containing the <code>RowSet</code> objects that have been added to this <code>JoinRowSet</code> object.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CachedRowSet.</span><code><span class="memberNameLink"><a href="../../../javax/sql/rowset/CachedRowSet.html#toCollection--">toCollection</a></span>()</code> <div class="block">Converts this <code>CachedRowSet</code> object to a <code>Collection</code> object that contains all of this <code>CachedRowSet</code> object's data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CachedRowSet.</span><code><span class="memberNameLink"><a href="../../../javax/sql/rowset/CachedRowSet.html#toCollection-int-">toCollection</a></span>(int&nbsp;column)</code> <div class="block">Converts the designated column in this <code>CachedRowSet</code> object to a <code>Collection</code> object.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../java/util/Collection.html" title="interface in java.util">Collection</a>&lt;?&gt;</code></td> <td class="colLast"><span class="typeNameLabel">CachedRowSet.</span><code><span class="memberNameLink"><a href="../../../javax/sql/rowset/CachedRowSet.html#toCollection-java.lang.String-">toCollection</a></span>(<a href="../../../java/lang/String.html" title="class in java.lang">String</a>&nbsp;column)</code> <div class="block">Converts the designated column in this <code>CachedRowSet</code> object to a <code>Collection</code> object.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/Collection.html" title="interface in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/Collection.html" target="_top">Frames</a></li> <li><a href="Collection.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Copyright &#x00a9; 1993, 2014, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
App/index.html
Douglasfeuser/getCode
<!doctype html> <html class="no-js"> <head> <meta charset="utf-8"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <meta name="mobile-web-app-capable" content="yes"> <!-- Add to homescreen for Safari on iOS --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <meta name="apple-mobile-web-app-title" content="Material Design Lite"> <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> <!-- build:css(.tmp) styles/main.css --> <link rel="stylesheet" href="styles/bulma.css"> <link rel="stylesheet" href="styles/styles.css"> <!-- endbuild --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> </head> <body ng-app="dashboardApp"> <!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> <![endif]--> <div ui-view="dashboard"></div> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID <script> /*!function(A,n,g,u,l,a,r){A.GoogleAnalyticsObject=l,A[l]=A[l]||function(){ (A[l].q=A[l].q||[]).push(arguments)},A[l].l=+new Date,a=n.createElement(g), r=n.getElementsByTagName(g)[0],a.src=u,r.parentNode.insertBefore(a,r) }(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-XXXXX-X'); ga('send', 'pageview');*/ </script> --> <!-- build:js(.) scripts/vendor.js --> <script src="bower_components/angular/angular.js"></script> <script src="bower_components/angular-animate/angular-animate.js"></script> <script src="bower_components/angular-cookies/angular-cookies.js"></script> <script src="bower_components/angular-resource/angular-resource.js"></script> <script src="bower_components/angular-route/angular-route.js"></script> <script src="bower_components/angular-sanitize/angular-sanitize.js"></script> <script src="bower_components/angular-touch/angular-touch.js"></script> <script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script> <!-- endbuild --> <!-- build:js({.tmp,app}) scripts/scripts.js --> <script src="outside/file-saver/FileSaver.js"></script> <script src="outside/angular-file-saver/dist/angular-file-saver.js"></script> <script src='outside/pdfmake.min.js'></script> <script src='outside/vfs_fonts.js'></script> <script src="scripts/app.js"></script> <script src="data/dataService.js"></script> <script src="scripts/controllers/home.js"></script> <script src="scripts/controllers/all.js"></script> <!-- endbuild --> </body> </html>
resources/js/jquery/autosuggest/autoSuggest.css
josesanch/wimpy
/* AutoSuggest CSS - Version 1.2 */ ul.as-selections { list-style-type: none; padding: 0 0 0 4px; margin: 0; overflow:auto; background-color: #90A4CF; -moz-border-radius: 3px; -webkit-border-radius: 3px; -khtml-border-radius: 3px; border-radius: 3px; } ul.as-selections.loading { background-color:#FFB03D; } ul.as-selections li { float: left; margin: 1px 4px 1px 0; } /* ul.as-selections li.as-selection-item { color: #2b3840; font-size: 24px; font-family: "Reenie_Beanie"; text-shadow: 0 1px 1px #fff; background-color: #FBFCD1; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ddeefe), to(#bfe0f1)); border: 1px solid yellow; padding: 2px 7px 2px 10px; border-radius: 12px; -webkit-border-radius: 123px 12px 12px 123px; -moz-border-radius: 123px 12px 12px 123px; box-shadow: 0 1px 1px #e4edf2; -webkit-box-shadow: 0 1px 1px #e4edf2; -moz-box-shadow: 0 1px 1px #e4edf2; }*/ ul#as-selections-lobueno li.as-selection-item{ color: #2b3840; font-size: 18px; font-family: "Lucida Grande", arial, sans-serif;; text-shadow: 0 1px 1px #fff; background-color: #C2FFAF; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ddeefe), to(#bfe0f1)); border: 1px solid green; padding: 0 7px 0 10px; border-radius: 12px; -webkit-border-radius: 123px 12px 12px 123px; -moz-border-radius: 123px 12px 12px 123px; box-shadow: 0 1px 1px #e4edf2; -webkit-box-shadow: 0 1px 1px #e4edf2; -moz-box-shadow: 0 1px 1px #e4edf2; } ul#as-selections-lomalo li.as-selection-item{ font-size: 18px; font-family: "Lucida Grande", arial, sans-serif;; text-shadow: 0 1px 1px #fff; background-color: #FFAF9F; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ddeefe), to(#bfe0f1)); border: 1px solid red; padding: 0 7px 0 10px; border-radius: 12px; -webkit-border-radius: 123px 12px 12px 123px; -moz-border-radius: 123px 12px 12px 123px; box-shadow: 0 1px 1px #e4edf2; -webkit-box-shadow: 0 1px 1px #e4edf2; -moz-box-shadow: 0 1px 1px #e4edf2;} ul.as-selections li.as-selection-item:last-child { margin-left: 30px; } ul.as-selections li.as-selection-item a.as-close { float: left; margin: 0 10px 0 0; padding: 0 2px; cursor: pointer; color: #DAA520; font-family: "Helvetica", helvetica, arial, sans-serif; font-size: 18px; font-weight: bold; text-shadow: 0 0 2px brown; -webkit-transition: color .1s ease-in; } ul.as-selections li.as-selection-item.blur a.as-close { color: brown; } ul.as-selections li:hover.as-selection-item { color: #2b3840; background-color: #bbd4f1; background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#bbd4f1), to(#a3c2e5)); border-color: #6da0e0; border-top-color: #8bb7ed; } ul.as-selections li:hover.as-selection-item a.as-close { color: #4d70b0; } ul#as-selections-lobueno li.as-selection-item.selected { background-color: #E7FFDF; } ul#as-selections-lomalo li.as-selection-item.selected { background-color: #FFDFDF; } ul.as-selections li.as-selection-item a:hover.as-close { color: #1b3c65; } ul.as-selections li.as-selection-item a:active.as-close { color: #4d70b0; } ul.as-selections li.as-original { margin-left: 0; } ul.as-selections li.as-original input { border: none; outline: none; font-size: 13px; width: 120px; height: 18px; padding-top: 3px; } ul.as-list { position: absolute; list-style-type: none; margin: 2px 0 0 0; clear:both; padding: 0; font-size: 14px; color: #000; font-family: "Lucida Grande", arial, sans-serif; background-color: #fff; background-color: rgba(255,255,255,0.95); z-index: 2; box-shadow: 0 2px 12px #222; -webkit-box-shadow: 0 2px 12px #222; -moz-box-shadow: 0 2px 12px #222; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } li.as-result-item, li.as-message { margin: 0 0 0 0; padding: 0 0 3px 12px; background-color: transparent; border: 1px solid #fff; border-bottom: 1px solid #ddd; cursor: pointer; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; } li:first-child.as-result-item { margin: 0; } li.as-message { margin: 0; cursor: default; } li.as-result-item.active { background-color: #607CBA; background-image: -webkit-gradient(linear, 0% 0%, 0% 64%, from(rgb(110, 129, 245)), to(rgb(62, 82, 242))); border-color: #3342e8; color: #fff; text-shadow: 0 1px 2px #122042; } li.as-result-item em { font-style: normal; background: #444; padding: 0 2px; color: #fff; } li.as-result-item.active em { background: #253f7a; color: #fff; } /* Webkit Hacks */ @media screen and (-webkit-min-device-pixel-ratio:0) { ul.as-selections { border-top-width: 2px; } ul.as-selections li.as-selection-item { padding-top: 3px; padding-bottom: 3px; } ul.as-selections li.as-selection-item a.as-close { margin-top: -1px; } ul.as-selections li.as-original input { height: 19px; } } /* Opera Hacks */ @media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) { ul.as-list { border: 1px solid #888; } ul.as-selections li.as-selection-item a.as-close { margin-left: 4px; margin-top: 0; } } /* IE Hacks */ ul.as-list { border: 1px solid #888\9; } ul.as-selections li.as-selection-item a.as-close { margin-left: 4px\9; margin-top: 0\9; } /* Firefox 3.0 Hacks */ ul.as-list, x:-moz-any-link, x:default { border: 1px solid #888; } BODY:first-of-type ul.as-list, x:-moz-any-link, x:default { /* Target FF 3.5+ */ border: none; }
ros/style_custom.css
Duck-ComEn/moodle
body{ align:center; background: rgb(171,233,253); /* Old browsers */ background: -moz-linear-gradient(left, rgba(171,233,253,1) 0%, rgba(198,234,244,1) 40%, rgba(198,234,244,1) 63%, rgba(171,233,253,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(171,233,253,1)), color-stop(40%,rgba(198,234,244,1)), color-stop(63%,rgba(198,234,244,1)), color-stop(100%,rgba(171,233,253,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(left, rgba(171,233,253,1) 0%,rgba(198,234,244,1) 40%,rgba(198,234,244,1) 63%,rgba(171,233,253,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(left, rgba(171,233,253,1) 0%,rgba(198,234,244,1) 40%,rgba(198,234,244,1) 63%,rgba(171,233,253,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(left, rgba(171,233,253,1) 0%,rgba(198,234,244,1) 40%,rgba(198,234,244,1) 63%,rgba(171,233,253,1) 100%); /* IE10+ */ background: linear-gradient(to right, rgba(171,233,253,1) 0%,rgba(198,234,244,1) 40%,rgba(198,234,244,1) 63%,rgba(171,233,253,1) 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#abe9fd', endColorstr='#abe9fd',GradientType=1 ); /* IE6-9 */ margin-top:100px; } div.sending{ padding:20px; display:block; width:600px; border:5px solid gray; margin:0px; text-align:left; font-size:20px; -webkit-border-radius: 10px; border-radius: 10px; -webkit-box-shadow: inset -2px 1px 2px 3px rgba(0, 0, 1, .3); box-shadow: inset -2px 1px 2px 3px rgba(0, 0, 1, .3); }
doc/glib-2.0/GLib.ConvertError.ILLEGAL_SEQUENCE.html
themightyug/ledborg-server
<?xml version="1.0" encoding="utf-8"?> <html> <head> <title>GLib.ConvertError.ILLEGAL_SEQUENCE -- Vala Binding Reference</title> <link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript"> </script> </head> <body> <div class="site_header">GLib.ConvertError.ILLEGAL_SEQUENCE Reference Manual</div> <div class="site_body"> <div class="site_navigation"> <ul class="navi_main"> <li class="package_index"><a href="../index.html">Packages</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="package"><a href="index.htm">glib-2.0</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="namespace"><a href="GLib.html">GLib</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="errordomain"><a href="GLib.ConvertError.html">ConvertError</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="errorcode">ILLEGAL_SEQUENCE</li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> </ul> </div> <div class="site_content"> <h1 class="main_title">ILLEGAL_SEQUENCE</h1> <hr class="main_hr"/> <h2 class="main_title">Description:</h2> <div class="main_code_definition"><b><span css="errorcode">ILLEGAL_SEQUENCE</span></b> </div> </div> </div><br/> <div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a> </div> </body> </html>
_layouts/default.html
congeria/wiki
<!DOCTYPE html> <html lang="en-US"> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ page.title }}</title> <link rel="stylesheet" type='text/css' media='all' property='stylesheet' href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> <link rel="stylesheet" type='text/css' media='all' property='stylesheet' href="https://fonts.googleapis.com/css?family=Raleway:400,400i,700"> <link rel="stylesheet" type='text/css' media='all' property='stylesheet' href="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.10/css/perfect-scrollbar.css"> <link rel="stylesheet" type='text/css' media='all' property='stylesheet' href="/wiki/libraries/app.css"> </head> <body class="shown-menu-left"> {{ content }} <script src="https://use.fontawesome.com/f40007b752.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.perfect-scrollbar/0.6.10/js/perfect-scrollbar.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.15.0/lodash.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/smart-underline/4.2.1/js/smart-underline.min.js"></script> <script src="/wiki/libraries/app.js"></script> </body> </html>
docs/userdoc/Tools/Assign.html
cathyyul/sumo-0.18
<html> <head> <title>Tools/Assign - SUMO - Simulation of Urban Mobility</title> <link rel="stylesheet" type="text/css" href="../sumo.css"/> <link rel="schema.DC" href="http://purl.org/dc/elements/1.1/" /> <META NAME="DC.Title" CONTENT="SUMO - Simulation of Urban MObility - Home"> <META NAME="DC.Subject" CONTENT="road traffic simulation package SUMO (Simulation of Urban MObility)"> <META NAME="DC.Description" CONTENT=""> <META NAME="DC.Publisher" CONTENT="Institute of Transportation Systems at the German Aerospace Center"> <META NAME="DC.Type" CONTENT="Text"> <META NAME="DC.Format" SCHEME="IMT" CONTENT="text/html"> <META NAME="DC.Identifier" CONTENT="http://sumo-sim.org"> <META NAME="DC.Language" SCHEME="ISO639-1" CONTENT="en"> <META NAME="DC.Relation" SCHEME="URL" CONTENT="http://sumo-sim.org/index.html"> <META NAME="DC.Rights" CONTENT="(c) ITS/DLR"> <META NAME="DC.Date.X-MetadataLastModified" SCHEME="ISO8601" CONTENT="2011-03-04"> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"/> </head> <body id="bmission"> <div id="container"> <div id="logo" align="left"><img src="../logo.png" width="128" height="128" align="left" alt="SUMO-Simulation of Urban Mobility" style="margin-left:10px; margin-right:20px;"/> <div id="logo_text1"> SUMO </div> <div id="logo_text2"> Simulation of Urban MObility</div> </div> <div id="subsMenu"><ul> <li class="sub"><a href="http://sumo-sim.org/">Home</a></li> <li class="sub"><a href="../Downloads.html">Download</a></li> <li class="sub"><a href="../index.html">Documentation</a></li> <li class="sub"><a href="http://sumo-sim.org/wiki/">Wiki</a></li> <li class="sub"><a href="http://sumo-sim.org/trac/">Trac</a></li> <li class="sub"><a href="http://sumo-sim.org/blog/">Blog</a></li> <li class="sub"><a href="../Contact.html">Contact</a></li> <li class="sub"><a href="http://sourceforge.net/projects/sumo/">SF-Project</a></li> </ul></div> <div id="nav"><div id="step1"><h3>User</h3> <!-- nav begins --><ul> <li><a href="../SUMO_User_Documentation.html">Introduction</a></li> <ul> <li><a href="../Sumo_at_a_Glance.html">The traffic simulation SUMO</a></li> </ul> <li>Basic Usage</li> <ul> <li><a href="../Basics/Notation.html">Notation in this Documentation</a></li> <li><a href="../Basics/Basic_Computer_Skills.html">Needed, basic Computer Skills</a></li> <li><a href="../Installing.html">Installing SUMO</a></li> <li><a href="../Basics/Using_the_Command_Line_Applications.html">Using SUMO Command Line Applications</a></li> <li><a href="../Tutorials.html">Tutorials</a></li> </ul> <li>Network Building</li> <ul> <li><a href="../Networks/SUMO_Road_Networks.html">SUMO Road Networks</a></li> <li><a href="../Networks/Abstract_Network_Generation.html">Abstract networks generation</a></li> <li>Importing networks with NETCONVERT</li> <ul> <li><a href="../Networks/Building_Networks_from_own_XML-descriptions.html">Defining own networks using XML</a></li> <li><a href="../Networks/Import.html">Importing non-SUMO networks</a></li> <ul> <li><a href="../Networks/Import/OpenStreetMap.html">... from OpenStreetMap</a></li> <li><a href="../Networks/Import/VISUM.html">... from VISUM</a></li> <li><a href="../Networks/Import/Vissim.html">... from Vissim</a></li> <li><a href="../Networks/Import/OpenDRIVE.html">... from OpenDRIVE</a></li> <li><a href="../Networks/Import/MATsim.html">... from MATsim</a></li> <li><a href="../Networks/Import/ArcView.html">... from ArcView (shapefiles)</a></li> <li><a href="../Networks/Import/DlrNavteq.html">... from Elmar's GDF</a></li> <li><a href="../Networks/Import/RoboCup.html">... from Robocup Simulation League</a></li> </ul> <li><a href="../Networks/Import/SUMO_Road_Networks.html">Importing SUMO networks</a></li> <li><a href="../Networks/Further_Options.html">Further NETCONVERT options</a></li> <li><a href="../Networks/Further_Outputs.html">Additional output</a></li> </ul> <li>Demand Modelling</li> <ul> <li><a href="../Demand/Introduction_to_demand_modelling_in_SUMO.html">Introduction to SUMO Demand Modelling</a></li> <li><a href="../Definition_of_Vehicles,_Vehicle_Types,_and_Routes.html">Definition of Vehicles, Vehicle Types, and Routes</a></li> <li><a href="../Simulation/Public_Transport.html">Simulation of public transport</a></li> <li><a href="../Specification/Persons.html">Simulation of individual persons and trip chains</a></li> <li><a href="../Demand/Importing_O/D_Matrices.html">Importing O/D Matrices</a></li> <li><a href="../Tools/Trip.html#randomTrips.py">Random Trips</a></li> <li><a href="../Demand/Shortest_or_Optimal_Path_Routing.html">Shortest or Optimal Path Routing</a></li> <li><a href="../Demand/Routing_by_Turn_Probabilities.html">Routing by Turn Probabilities</a></li> <li><a href="../Demand/Routes_from_Observation_Points.html">Routes from Observation Points</a></li> <li><a href="../Demand/Activity-based_Demand_Generation.html">Activity-based Demand Generation</a></li> <li><a href="../Demand/Dynamic_User_Assignment.html">Computing Dynamic User Assignment</a></li> <li>Importing foreign demands</li> <ul> <li><a href="../Demand/Further_Ways_to_import_VISUM_Demand_Definitions.html">Other VISUM Demand Importers</a></li> <li><a href="../Demand/Further_Ways_to_import_Vissim_Demand_Definitions.html">Other Vissim Demand Importers</a></li> </ul> <li><a href="../Demand/Automatic_Routing_.html">Routing in the Simulation</a></li> </ul> <li>Simulation</li> <ul> <li><a href="../Simulation/Basic_Definition.html">Basic Definition</a></li> <li>Traffic Management and Other Structures</li> <ul> <li><a href="../Simulation/Traffic_Lights.html">Traffic Lights</a></li> <li><a href="../Simulation/Public_Transport.html">Public Transport</a></li> <li><a href="../Simulation/Variable_Speed_Signs.html">Variable Speed Signs</a></li> <li><a href="../Simulation/Rerouter.html">Rerouter / Alternative Route Signage</a></li> <li><a href="../Simulation/Vaporizer.html">Vaporizer</a></li> </ul> <li><a href="../Simulation/Output.html">Simulation output</a></li> <li><a href="../TraCI.html">TraCI (On-line Interaction)</a></li> <li><a href="../Simulation/Shapes.html">Shapes Visualisation</a></li> <li>Common Problems</li> <ul> <li><a href="../Simulation/Why_Vehicles_are_teleporting.html">Why Vehicles are teleporting</a></li> </ul> <li>Theory</li> <ul> <li><a href="../Theory/Traffic_Simulations.html">Traffic simulations in general</a></li> </ul> <li>Appendices</li> <ul> <li><a href="../Other/Glossary.html">Glossary</a></li> <li><a href="../FAQ.html">FAQ</a></li> <li><a href="../Tools/Main.html">Additional Tools</a></li> <li><a href="../Other/File_Extensions.html">Known File Extensions</a></li> <li>Application Manuals</li> <ul> <li><a href="../SUMO.html">SUMO</a></li> <li><a href="../SUMO-GUI.html">SUMO-GUI</a></li> <li><a href="../NETCONVERT.html">NETCONVERT</a></li> <li><a href="../NETGENERATE.html">NETGENERATE</a></li> <li><a href="../OD2TRIPS.html">OD2TRIPS</a></li> <li><a href="../DUAROUTER.html">DUAROUTER</a></li> <li><a href="../JTRROUTER.html">JTRROUTER</a></li> <li><a href="../DFROUTER.html">DFROUTER</a></li> <li><a href="../POLYCONVERT.html">POLYCONVERT</a></li> <li><a href="../ACTIVITYGEN.html">ACTIVITYGEN</a></li> </ul> <li>Tool Manuals</li> <ul> <li><a href="../Tools/TraceExporter.html">Tools/TraceExporter</a></li> </ul> <li><a href="../ChangeLog.html">ChangeLog</a></li> </ul> <li>Translations</li> <ul> <li><a href="http://linux-notes.blogfa.com/post-37.aspx">Persian SUMO tutorial</a></li> <li><a href="http://linux-notes.blogfa.com/post-39.aspx">Persian tutorial on "Vehicular Adhoc Network Simulation With NS2, SUMO And MOVE"</a></li> <!-- nav ends --> </ul></ul></div> <div id="step2"> <h3>Further Resources</h3> <ul> <li><a href="../Data/Networks.html">Example Networks</a></li> <li><a href="../Data/Scenarios.html">Example Scenarios</a></li> <li><a href="../Data/Traffic_Data.html">Traffic Data</a></li> </ul> </div> <div id="step3"> <h3>Developer</h3> <ul> <li><a href="../Developer/Main.html">Developer Docs</a></li> <li><a href="http://sumo.sf.net/daily/">Daily Tests Status</a></li> <li><a href="../../doxygen/">Doxygen Documentation</a></li> <li>Python Modules Documentation</li> <ul> <li><a href="../../pydoc/traci.html">traci</a></li> <li><a href="../../pydoc/sumolib.html">sumolib</a></li> </ul> </ul> </div> </div> <div id="content"> <a id="top"></a> <div id="mw-js-message" style="display:none;"></div> <!-- firstHeading --> <h1 id="firstHeading" class="firstHeading" lang="en"><span dir="auto">Tools/Assign</span></h1> <!-- /firstHeading --> <!-- bodyContent --> <div id="bodyContent"> <!-- tagline --> <div id="siteSub">From Sumo</div> <!-- /tagline --> <!-- subtitle --> <div id="contentSub"></div> <!-- /subtitle --> <!-- jumpto --> <!-- /jumpto --> <!-- bodycontent --> <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><table id="toc" class="toc"><tr><td><div id="toctitle"><h2>Contents</h2></div> <ul> <li class="toclevel-1 tocsection-1"><a href="#Assignment_Tools"><span class="tocnumber">1</span> <span class="toctext">Assignment Tools</span></a> <ul> <li class="toclevel-2 tocsection-2"><a href="#dua-iterate.py"><span class="tocnumber">1.1</span> <span class="toctext">dua-iterate.py</span></a></li> <li class="toclevel-2 tocsection-3"><a href="#one-shot.py"><span class="tocnumber">1.2</span> <span class="toctext">one-shot.py</span></a></li> <li class="toclevel-2 tocsection-4"><a href="#Assignment.py"><span class="tocnumber">1.3</span> <span class="toctext">Assignment.py</span></a></li> <li class="toclevel-2 tocsection-5"><a href="#networkStatistics.py"><span class="tocnumber">1.4</span> <span class="toctext">networkStatistics.py</span></a></li> <li class="toclevel-2 tocsection-6"><a href="#matrixDailyToHourly.py"><span class="tocnumber">1.5</span> <span class="toctext">matrixDailyToHourly.py</span></a></li> <li class="toclevel-2 tocsection-7"><a href="#costFunctionChecker.py"><span class="tocnumber">1.6</span> <span class="toctext">costFunctionChecker.py</span></a></li> <li class="toclevel-2 tocsection-8"><a href="#addTaz.py"><span class="tocnumber">1.7</span> <span class="toctext">addTaz.py</span></a></li> </ul> </li> </ul> </td></tr></table> <h1> <span class="mw-headline" id="Assignment_Tools">Assignment Tools</span></h1> <h2> <span class="mw-headline" id="dua-iterate.py"> dua-iterate.py </span></h2> <p>"dua-iterate.py" helps you to perform the computation of a dynamic user assignment (DUA). It computes a given number of DUA-steps. At least two files have to be given as input the script: a SUMO-network and a set of trip definitions. A stochastic user-equilibrium (UE)traffic state is not guaranteed after the assignment. The more the number of the DUA-steps is defined, the closer a SUE traffic state might be achieved. </p><p>Within each iteration step, the script generates a configuration file for the <a href="../DUAROUTER.html" title="DUAROUTER">DUAROUTER</a>, the corn of SUMO, and starts it with this configuration file. Then, a configuration file for <a href="../SUMO.html" title="SUMO">SUMO</a> is built and <a href="../SUMO.html" title="SUMO">SUMO</a> is started. Both configuration files are competely defined within the script itself. As default, for each time step, SUMO will generate three dump files with edge-dumps aggregated over 150, 300, and 900s, a summary information as well as a trip information output. The names of these outputs are numbered over the iteration steps. If you want to change the outputs, you also have to take a look into the script, but you should not disable the edge-based dump for aggregation over 900s, because this is read by the <a href="../DUAROUTER.html" title="DUAROUTER">DUAROUTER</a> in the next iteration steps in order to compute the DUA. </p><p>For further options to the script look either at the source code or start it with the "--help" option. </p> <pre>dua-iterate.py -n &lt;PATH_TO_SUMO_NET&gt; -t &lt;PATH_TO_TRIPS&gt; </pre> <p>Furthermore a calibrator option is avalible in the script to call the Cadyts calibration tool, developed by Gunnar Flötteröd at EPFL, Switzerland. With this option, route choices will be adjusted according to given link counts. The validation work of the calibration between SUMO and Cadyts is wrok in progress. </p> <h2> <span class="mw-headline" id="one-shot.py"> one-shot.py </span></h2> <p>The one-shot.py provides a variant of the dynamic user assignment. The assignment method is the same one which SUMO and the dua-iterate.py use. Given trips will be assigned to respective fastest routes according to their deaprture times and a given travel-time updating interval. Different travel-time updating intervals can be defined by users, such as 900, i.e. link travel times will be updated every 900 sec. If the travel-time updating interval is set to -1, link travel times will not updated and link trave times at free-flow speeds are used for all trips. </p><p>A stochastic user-equilibrium traffic state will not achieved with the use of this script. </p><p><br /> An examplary execution command is shown below. </p> <pre> one-shot.py -f &lt;travel-time updating interval&gt; -n &lt;network file&gt; -t &lt;trip file&gt; where -f travel-time updating interval (sec); -1 means no travel-time updating (default: -1,1800,300,15) -n network file name and the respective path -t trip file name and the respective path </pre> <p>Additional setting, such as outputs of summary and trip-information as well as begin time, could be made by adding respective options which can be found in the script. </p> <h2> <span class="mw-headline" id="Assignment.py"> Assignment.py </span></h2> <p>In comparison to the dua-iterate.py and the one-shot.py the Assignment.py is applied to execute a macroscopic traffic assignment. Three types of macroscopic traffic assignments are available here: an incremental assignment, a stochastic user equilibrium assignment (SUE) based on the c-logit model by Cacessta (1996) and a logit- based SUE model based on the utility function by Lohse. The c-logit model is set as default. In addition, a k-shortest-paths algorithm has also been implemented in these two SUE models with a default value of 8. </p><p><br /> Furthermore the applied route searching algorithms are based on Dijkstra. Three variants are available: </p> <ul><li> <i>Dijkstra plain</i>: travel time penalties for turning movements are <b>not</b> considered. </li><li> <i>Dijkstra extend</i>: travel time penalties for turning movements are considered. </li><li> <i>Dijkstra boost</i>: it is used to speed up route searching and travel time penalties for turning movements are considered here. </li></ul> <p><br /> In oder to use this script the other scripts are required, i.e. elements.py, network.py, dijkstra.py, inputs.py, outputs.py, assign.py as well as tables.py. These scripts should locate in the same directory with the Assignment.py. Each of these scripts is briefly described below. </p><p><b>elements.py</b> </p><p>This script is to define the classes and functions for </p> <ul><li> reading network geometric, </li><li> calculating link characteristics, such as capacity, travel time and link cost function, </li><li> recording vehicular and path information, and </li><li> conducting statistic tests. </li></ul> <p><b>network.py</b> </p><p>This script is to retrive the network data, the district data and the vehicle data, generated by SUMO, from the respective XML files. Besides, the class 'Net' is also definded here. </p><p><b>dijkstra.py</b> </p><p>The Dijkstra algorithm is used for searching the respective shortest paths and is based on the script from David Eppstein, UC Irvine. Moreover, this script is to find the shortest path from the given origin 'start' to the other nodes in the investigated network. The link information about the shortest paths and the corresponding travel times will be stored in the lists P and D respectively. Three variants are available: Dijkstra plain, Dijkstra extend as well as Dijkstra boost. </p><p><b>inputs.py</b> </p><p>This script is to retrieve the given incremntal assignment parameters, OD districts and the defined matrix from input files. Moreover, the link travel time for district connectors will be estimated. </p><p><b>outputs.py</b> </p><p>This script is for generating the outputs from the choosed traffic assignment. </p><p><b>assign.py</b> </p><p>This script is for executing traffic assignment according to the user-defined assignment model. The above-mentioned incremental assignment model, the C-Logit assignment model and the logit assignment model based on the utiility function by Lohse are included in this script. </p><p><b>tables.py</b> </p><p>This file defines global tables used to: </p> <ul><li> define the parameters in link cost BPR-functions, proposed by the Bureau of Public Roads (BPR). Link travel times are then calculated based the defined functions. </li><li> define the capacity and the respective cost function for each link </li><li> conduct significance tests </li></ul> <p><br /> The following exemplary command is to show how to exeute an assignment with the use of the Assignment.py: </p> <pre> Assignment.py -e &lt;assignment method&gt; -i 10 -d &lt;districts file&gt; -m &lt;matrix file&gt; -n &lt;network file&gt; -s &lt;traffic singal files&gt; -+ &lt;Dijkstra type&gt; where: -e: the assignemnt method: incremental, lohse, clogit (default: clogit) -i: the number of maximal iterations for the SUE assignments; the number of iterations for an incremental assignment (default: 20) -d: district file name and the respective path -m: matrix file name and the respective path -n: network file name and the respective path -s: additional traffic signal timing files (optional) -+: the used Dijkstra-method: plain, extend, boost (default: boost) Changes of parameters setting regarding convergence criteria are possible with the use of respective options in the script. </pre> <p><br /> In addition, the script <b>run.py</b> is to run assignment tests with different assignment methods. </p> <h2> <span class="mw-headline" id="networkStatistics.py"> networkStatistics.py </span></h2> <p>This script is to calculate the global performance indices according to <b>SUMO-based</b> simulation results. The calculation functions are directly defined in this script. Basis statistics are delivered, such as: </p> <ul><li> average travel time (s) </li><li> average travel length (m) </li><li> average travel speed (m/s) </li><li> average departure delay (s) </li><li> average waiting time (s) </li></ul> <p><br /> Besides, this script is also to execute a significance test for evaluating the results from different assignment methods.The t test and the Kruskal-Wallis test are available in this script. If not specified, the Kruskal-Wallis test will be applied with the assumption that data are not normally distributed. </p><p>In order to exeute this script, the other two scripts, i.e. statisticsElements.py and tables.py, are required. They all should be in the same directory. </p><p>In the statisticsElements.py, classes regarding vehicles, their performance measures, t values, H values as well as functions for outputs are defined. The chi-square table and the t table are defined in the tables.py. </p><p>An exemplary command is shown below. </p> <pre> networkStatistics.py -t &lt;tripinfo files&gt; -o &lt;output file&gt; -e where -t: name of output files containing vehicle information, generated by SUMO -0: define the output file name -e: set true for applying the t test (default: false) -k: set true for applying the Kruskal-Wallis test (default: false) </pre> <p><br /> </p> <h2> <span class="mw-headline" id="matrixDailyToHourly.py"> matrixDailyToHourly.py </span></h2> <p>This script is to generate hourly matrices from a VISUM daily matrix. The taffic demand of the traffic zones, which have the same connection links, will be integrated. The exemplary command is indicated below. </p> <pre> matrixDailyToHourly.py -m &lt;matrix file&gt; -z &lt;district file&gt; -t &lt;flow time-series file&gt; -o &lt;output directory&gt; where -m: matrix file name -z: district file name -t: name of the file containing traffic flow time series (optional); If not specified, the defined daily matrix will be regularly divided into 24 hours. -o: output directoy name and the respective path </pre> <h2> <span class="mw-headline" id="costFunctionChecker.py"> costFunctionChecker.py </span></h2> <p>Run duarouter repeatedly and simulate weight changes via a cost function. (to be continued) </p><p>Still under construction! </p><p><br /> </p> <h2> <span class="mw-headline" id="addTaz.py"> addTaz.py </span></h2> <p>This script is to add the information of traffic analysis zones, i.e. origin and destination zone, in a given route file. Such information is required in a given route file when applying the calibrator option in the script dua-iterate.py. A trip file, containing traffic zones information, is required when executing this script. </p><p>With the use of the following command, required traffic zones information can be added in a given route file. </p> <pre> addTaz.py -r &lt;route file&gt; -t &lt;trip file&gt; </pre> <!-- NewPP limit report Preprocessor visited node count: 30/1000000 Preprocessor generated node count: 36/1000000 Post‐expand include size: 0/2097152 bytes Template argument size: 0/2097152 bytes Highest expansion depth: 2/40 Expensive parser function count: 0/100 --> <!-- Saved in parser cache with key sumoSimWiki:pcache:idhash:249-0!*!0!!en!*!* and timestamp 20130827222851 --> </div> <!-- /bodycontent --> <!-- printfooter --> </div><hr/><div id="lastmod">This page was last modified on 9 September 2011, at 09:18.</div> </div> <div id="footer"> <div>(c) 2011-2013, German Aerospace Center, Institute of Transportation Systems</div> <div>Layout based on <a href="http://www.oswd.org/design/preview/id/3365">"Three Quarters"</a> by "SimplyGold"</div> </div> </div> </body> </html>
devmanual/general-concepts/install-destinations/index.html
fusion809/fusion809.github.io-old
<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Gentoo Development Guide: Install Destinations</title> <link rel="stylesheet" href="../../devmanual.css" type="text/css"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="The Gentoo Devmanual is a technical manual which covers topics such as writing ebuilds and eclasses, and policies that developers should be abiding by."> <link href="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/tyrian.min.css" rel="stylesheet" media="screen"> <link rel="icon" href="/images/favicon.png" type="image/x-icon"> </head> <body> <header><div class="site-title"><div class="container"><div class="row"> <div class="site-title-buttons"><div class="btn-group btn-group-sm"> <a href="https://get.gentoo.org/" role="button" class="btn get-gentoo"><span class="fa fa-fw fa-download"></span><strong> Get Gentoo!</strong></a><div class="btn-group btn-group-sm"> <a class="btn gentoo-org-sites dropdown-toggle" data-toggle="dropdown" data-target="#" href="#"><span class="fa fa-fw fa-map-o"></span><span class="hidden-xs"> gentoo.org sites </span><span class="caret"></span></a><ul class="dropdown-menu dropdown-menu-right"> <li><a href="https://www.gentoo.org/" title="Main Gentoo website"><span class="fa fa-home fa-fw"></span> gentoo.org</a></li> <li><a href="https://wiki.gentoo.org/" title="Find and contribute documentation"><span class="fa fa-file-text-o fa-fw"></span> Wiki</a></li> <li><a href="https://bugs.gentoo.org/" title="Report issues and find common issues"><span class="fa fa-bug fa-fw"></span> Bugs</a></li> <li><a href="https://forums.gentoo.org/" title="Discuss with the community"><span class="fa fa-comments-o fa-fw"></span> Forums</a></li> <li><a href="https://packages.gentoo.org/" title="Find software for your Gentoo"><span class="fa fa-hdd-o fa-fw"></span> Packages</a></li> <li class="divider"> <li><a href="https://planet.gentoo.org/" title="Find out what's going on in the developer community"><span class="fa fa-rss fa-fw"></span> Planet</a></li> <li><a href="https://archives.gentoo.org/" title="Read up on past discussions"><span class="fa fa-archive fa-fw"></span> Archives</a></li> <li><a href="https://sources.gentoo.org/" title="Browse our source code"><span class="fa fa-code fa-fw"></span> Sources</a></li> <li class="divider"> <li><a href="https://infra-status.gentoo.org/" title="Get updates on the services provided by Gentoo"><span class="fa fa-server fa-fw"></span> Infra Status</a></li> </ul> </div> </div></div> <div class="logo"> <a href="/" title="Back to the homepage" class="site-logo"><object data="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/site-logo.svg" type="image/svg+xml"><img src="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/site-logo.png" alt="Gentoo Linux Logo"></object></a><span class="site-label">Development Guide</span> </div> </div></div></div> <nav class="tyrian-navbar" role="navigation"><div class="container"><div class="row"> <div class="navbar-header"><button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-main-collapse"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button></div> <div class="collapse navbar-collapse navbar-main-collapse"><ul class="nav navbar-nav"> <li><a href="../..//index.html"><span class="glyphicon glyphicon-home"></span>  Home</a></li> <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">Install Destinations<span class="caret"></span></a></li> <li><a href="../herds-and-projects/index.html"><span class="glyphicon glyphicon-arrow-left"></span>  Herds and Projects</a></li> <li><a href="../../general-concepts/licenses/index.html">Licenses  <span class="glyphicon glyphicon-arrow-right"></span></a></li> </ul></div> </div></div></nav></header><div class="container"><div class="row"><div class="col-md010"><ol class="breadcrumb"> <li><a href="../../index.html">Master Index</a></li> <li><a href="../index.html">General Concepts</a></li> </ol></div></div></div> <div class="container"> <h1 class="first-header">Install Destinations</h1> <p> When an ebuild runs the <code class="docutils literal"><span class="pre">src_install</span></code> phase, it installs an image of the package in question from <code class="docutils literal"><span class="pre">${S}</span></code> into <code class="docutils literal"><span class="pre">${D}</span></code>. Ebuilds must <i>not</i> attempt to perform any operation upon the live filesystem at this stage — this will break binaries, and will (often) cause a sandbox violation notice. </p> <p> When installing, Portage will install the image in <code class="docutils literal"><span class="pre">${D}</span></code> into <code class="docutils literal"><span class="pre">${ROOT}</span></code>. By default, <code class="docutils literal"><span class="pre">${ROOT}</span></code> points to <code class="docutils literal"><span class="pre">/</span></code>, although the user can alter this — for example, the user may be building a minimal image for another system in a different location. If your package must operate on the live filesystem (for example, to create some cache files during <code class="docutils literal"><span class="pre">pkg_postinst</span></code>), you must ensure that you prefix any paths with <code class="docutils literal"><span class="pre">${ROOT}</span></code>. </p> <p> When inside <code class="docutils literal"><span class="pre">pkg_preinst</span></code>, the image to be installed can be accessed under <code class="docutils literal"><span class="pre">"${D}"</span></code>. </p> </div> <footer><div class="container"> <div class="row"> <div class="col-xs-12 col-md-offset-2 col-md-7"></div> <div class="col-xs-12 col-md-3"> <h3 class="footerhead">Questions or comments?</h3> Please feel free to <a href="https://www.gentoo.org/inside-gentoo/contact/">contact us</a>. </div> </div> <div class="row"> <div class="col-xs-2 col-sm-3 col-md-2"><ul class="footerlinks three-icons"> <li><a href="http://twitter.com/gentoo" title="@Gentoo on Twitter"><span class="fa fa-twitter fa-fw"></span></a></li> <li><a href="https://plus.google.com/+Gentoo" title="+Gentoo on Google+"><span class="fa fa-google-plus fa-fw"></span></a></li> <li><a href="https://www.facebook.com/gentoo.org" title="Gentoo on Facebook"><span class="fa fa-facebook fa-fw"></span></a></li> </ul></div> <div class="col-xs-10 col-sm-9 col-md-10"> <strong>Copyright (C) 2001-2015 Gentoo Foundation, Inc.</strong><br><small> Gentoo is a trademark of the Gentoo Foundation, Inc. The text of this document is distributed under the <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-ShareAlike 2.0 License</a>. The <a href="https://www.gentoo.org/inside-gentoo/foundation/name-logo-guidelines.html">Gentoo Name and Logo Usage Guidelines</a> apply. </small> </div> </div> </div></footer><script src="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/jquery.min.js"></script><script src="https://1b9a50f4f9de4348cd9f-e703bc50ba0aa66772a874f8c7698be7.ssl.cf5.rackcdn.com/bootstrap.min.js"></script> </body> </html>
F._Base_de_datos/ejemplos/index.html
1caruxx/Ejercicios_PHP
<!doctype html> <html> <head> <title>Ejemplos MYSQL - PHP</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="./img/utnLogo.png" rel="icon" type="image/png" /> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="css/animacion.css"> <!-- Estilos propios --> <link rel="stylesheet" type="text/css" href="css/estilo.css"> <script type="text/javascript" src="JavaScript/ajax.js"></script> <script type="text/javascript" src="JavaScript/app.js"></script> </head> <body> <div class="container"> <div class="page-header"> <h1>MYSQL - PHP</h1> </div> <div class="CajaInicio animated bounceInLeft"> <h1>MYSQL</h1> <a href="#" class="list-group-item list-group-item list-group-item-info"> <h4 class="list-group-item-heading">Establecer conexión</h4> <p class="list-group-item-text" onclick="Main.EstablecerConexion()">Establecer Conexión</p> </a> <a href="#" class="list-group-item list-group-item list-group-item-info"> <h4 class="list-group-item-heading">Ejecutar Consulta</h4> <p class="list-group-item-text" onclick="Main.EjecutarConsulta()">Ejecutar Select</p> <p class="list-group-item-text" onclick="Main.MostrarConsulta()">Mostrar Consulta Select</p> </a> <a href="#" class="list-group-item list-group-item list-group-item-info"> <h4 class="list-group-item-heading">Ejecutar Consulta II</h4> <p class="list-group-item-text" onclick="Main.EjecutarInsert()">Ejecutar Insert</p> <p class="list-group-item-text" onclick="Main.EjecutarUpdate()">Ejecutar Update</p> <p class="list-group-item-text" onclick="Main.EjecutarDelete()">Ejecutar Delete</p> </a> </div> <div id="divResulado" class="CajaInicio animated bounceInRight"> </div> </div> </body> </html>
RossFamilyTree/evt/8/a/d15f600700e83061334dc73fa8.html
RossGammon/the-gammons.net
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - Events</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-mobile-web-app-capable" content="yes" /> <meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" /> <meta name="author" content="" /> <link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1 id="SiteTitle">Ross Gammon’s Family Tree</h1> </div> <div class="wrapper" id="nav" role="navigation"> <div class="container"> <ul class="menu" id="dropmenu"> <li><a href="../../../individuals.html" title="Individuals">Individuals</a></li> <li><a href="../../../index.html" title="Surnames">Surnames</a></li> <li><a href="../../../families.html" title="Families">Families</a></li> <li class = "CurrentSection"><a href="../../../events.html" title="Events">Events</a></li> <li><a href="../../../places.html" title="Places">Places</a></li> <li><a href="../../../sources.html" title="Sources">Sources</a></li> <li><a href="../../../repositories.html" title="Repositories">Repositories</a></li> <li><a href="../../../media.html" title="Media">Media</a></li> <li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li> </ul> </div> </div> <div class="content" id="EventDetail"> <h3>Birth</h3> <table class="infolist eventlist"> <tbody> <tr> <td class="ColumnAttribute">Gramps ID</td> <td class="ColumnGRAMPSID">E7330</td> </tr> <tr> <td class="ColumnAttribute">Date</td> <td class="ColumnColumnDate"> 1885-07-21 </td> </tr> <tr> <td class="ColumnAttribute">Place</td> <td class="ColumnColumnPlace"> <a href="../../../plc/c/4/d15f5fb92e843882bcabe3e6e4c.html" title=""> </a> </td> </tr> </tbody> </table> <div class="subsection" id="references"> <h4>References</h4> <ol class="Col1" role="Volume-n-Page"type = 1> <li> <a href="../../../ppl/1/6/d15f600700634312bb9a0b3c161.html"> MILLER, George David <span class="grampsid"> [I6702]</span> </a> </li> </ol> </div> </div> <div class="fullclear"></div> <div id="footer"> <p id="createdate"> Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:29<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a> </p> <p id="copyright"> </p> </div> </body> </html>
tasks/abril/html/2137707.html
proyectos-analizo-info/app-omc
<!DOCTYPE HTML> <!-- http://proyectos.analizo.info/app/omc-abril-2014/ --> <html lang="es"> <head> <meta charset="utf-8"/> <title>Las ONG vuelven a denunciar al Gobierno en Bruselas por las expulsiones en caliente</title> <link type="text/css" rel="stylesheet" href="http://proyectos.analizo.info/static/apps/omc/css.css"/> </head> <body> <div id="main"> <p class="fs20 fwb">Las ONG vuelven a denunciar al Gobierno en Bruselas por las expulsiones en caliente</p> <p>Presentan la segunda queja formal en tres meses a Bruselas denunciando que las intervenciones de la Guardia Civil "ponen en grave peligro la integridad física" de los inmigrantes. Exigen que se obligue al Estado a cumplir con la legislación internacional</p> <p>Un total de 14 organizaciones especializadas en migraciones y derechos humanos han registrado una queja ante la Comisión Europea contra el Gobierno español por las expulsiones colectivas y sumarias de inmigrantes en Ceuta y Melilla, donde quienes saltan la valla son conducidos de vuelta a Marruecos sin que medie ningún procedimiento de identificación. Las organizaciones, entre las que figuran SOS Racismo, CEAR o la Coordinadora de Barrios, solicitan a la Comisión que investigue en profundidad los hechos y, si procede, abra un procedimiento de infracción contra España.</p> <p>El objetivo es "informar sobre las prácticas que han llevado a cabo las autoridades durante los últimos meses y pedir a la UE que investigue las expulsiones en calientes y valore si hay que abrir un procedimietno de infracción", explica Nuria Díaz, de CEAR. "Queremos poner en evidencia estas prácticas y los sucesos y más recientes", añade. De esta forma, tienen "la esperanza de que la Comisión escucha nuestras denuncias, pues es necesario elevar nuestra voz a todas las instaciones y que se investiguen los hechos".</p> <p>Asimismo, instan a Bruselas a exigir formalmente al Gobierno de España "el respeto de los derechos humanos y el cumplimiento de la legislación nacional e internacional vigente en las actuaciones que lleven a cabo los cuerpos y fuerzas de seguridad del Estado en las fronteras españolas de Ceuta y Melilla".</p> <p>La denuncia traslada a la Comisión "la persistencia por parte de las autoridades españolas, en practicar expulsiones colectivas y sumarias", apoyándose en un análisis de las actuaciones de las fuerzas de seguridad en la frontera durante los últimos tres meses.</p> <p>Según explican, las prácticas que se están llevando a cabo por parte de los cuerpos de seguridad españoles y marroquíes "ponen en grave peligro la vida e integridad física de las personas que intentan llegar a la Unión Europea convirtiendo su trayecto migratorio en un continuo sufrimiento".</p> <p>La queja lleva adjunta argumentación jurídica para sostener "que se están violando derechos básicos de esas personas así como la normativa española, europea e internacional vigente" y trasladar a Europa que "estas vulneraciones afectan tanto a personas que tratan de acceder a la UE en busca de un futuro, como a aquellas necesitadas de protección internacional que huyen de guerras, persecuciones y violaciones de derechos humanos".</p> <p>Las ONG españolas se dirigen así por segunda vez este año a la Comisión Europea, después de que el pasado 21 de febrero denunciasen ante el regulador la muerte de 15 migrantes que trataban de alcanzar a nado la playa ceutí de El Tarajal.</p> </div> </body> </html>
public/packages/resiexchange/apps/views/question.html
cedricfrancoys/resiway
<div class="grid wrapper"> <div class="col-1-1"> <div class="page-header"> <h1>{{question.title}}</h1> </div> </div> </div> <div class="grid wrapper" style="min-height: 900px;"> <div class="col-8-12"> <div class="question wrapper" itemscope="" itemtype="https://schema.org/Question"> <div class="vote hidden-xs col-1-12 nopad"> <div class="voteup" ng-class="{on: question.history['resiexchange_question_voteup']}"> <a href id="question-voteup" title="{{'QUESTION_ACTIONS_VOTEUP_TOOLTIP' | translate}}" class="fa fa-thumbs-o-up" ng-click="questionVoteUp($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"></a> </div> <div class="vote-count" itemprop="upvoteCount" > <span>{{question.score | humanizeCount}}</span> </div> <div class="votedown" ng-class="{on: question.history['resiexchange_question_votedown']}"> <a href id="question-votedown" title="{{'QUESTION_ACTIONS_VOTEDOWN_TOOLTIP' | translate}}" class="fa fa-thumbs-o-down" ng-click="questionVoteDown($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> <div class="star" ng-class="{on: question.history['resiexchange_question_star']}"> <a href id="question-star" title="{{'QUESTION_ACTIONS_STAR_TOOLTIP' | translate}}" class="fa fa-star" ng-click="questionStar($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> <div class="favorite-count"><span>{{question.count_stars | humanizeCount}}</span></div> </div> <div class="content col-11-12 nopad"> <div class="text" itemprop="text"> <p ng-bind-html="question.content"></p> </div> <div class="tags"> <a ng-repeat="tag in question.tags" href ng-click="rootCtrl.search({domain: [['categories_ids', 'contains', tag.id]]})" class="tag" title="{{tag.description}}" rel="tag">{{tag.title}}</a> </div> <div class="footer"> <div class="meta"> <div class="actions"> <a href ng-click="showShareModal()" title="{{'QUESTION_ACTIONS_SHARE_TOOLTIP' | translate}}" class="short-link"> <i class="fa fa-share-alt" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ACTIONS_SHARE' | translate"></span> </a>&nbsp; <a href="/question/edit/{{question.id}}"> <i class="fa fa-pencil" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ACTIONS_EDIT' | translate"></span> </a>&nbsp; <a href id="question-flag" title="{{'QUESTION_ACTIONS_FLAG_TOOLTIP' | translate}}" ng-class="{on: question.history['resiexchange_question_flag']}" ng-click="questionFlag($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-flag" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ACTIONS_FLAG' | translate"></span> </a>&nbsp; <a href id="question-delete" title="{{'QUESTION_ACTIONS_DELETE_TOOLTIP' | translate}}" class="delete-post-link" ng-show="user.id==question.creator.id || user.role!='u'" ng-click="questionDelete($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-remove" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ACTIONS_DELETE' | translate"></span> </a> </div> <div class="signature" ng-if="question.editor != 0 && question.editor.id != question.creator.id"> <div class="user-info"> <div class="user-action-time"> <span class="relativetime"><span ng-bind-html="'QUESTION_STATS_EDITED' | translate"></span> {{question.edited | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amCalendar}}</span> </div> <div class="user-avatar"> <a href="/user/{{question.editor.id}}/{{question.editor.name_url}}"> <div class="avatar-wrapper"> <img ng-src="{{rootCtrl.avatarURL(question.editor.avatar_url, 32)}}" title="{{question.editor.display_name}}" width="32" height="32"> </div> </a> </div> <div class="user-details"> <a href="/user/{{question.editor.id}}/{{question.editor.name_url}}">{{question.editor.display_name}}</a> <div> <span class="reputation-score" title="{{'QUESTION_USER_DETAILS_REPUTATION'|translate}}">{{question.editor.reputation}}</span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_BRONZE'|translate}}" ng-show="question.editor.count_badges_1 > 0"> <span class="badge1"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.editor.count_badges_1 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_SILVER'|translate}}" ng-show="question.editor.count_badges_2 > 0"> <span class="badge2"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.editor.count_badges_2 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_GOLD'|translate}}" ng-show="question.editor.count_badges_3 > 0"> <span class="badge3"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.editor.count_badges_3 }}</span> </span> </div> </div> </div> </div> <div class="signature owner"> <div class="user-info"> <div class="user-action-time"> <span class="relativetime"><span ng-bind-html="'QUESTION_STATS_ASKED' | translate"></span> {{question.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amCalendar}}</span> </div> <div class="user-avatar"> <a href="/user/{{question.creator.id}}/{{question.creator.name_url}}"> <div class="avatar-wrapper"> <img ng-src="{{rootCtrl.avatarURL(question.creator.avatar_url, 32)}}" title="{{question.creator.display_name}}" width="32" height="32"> </div> </a> </div> <div class="user-details"> <a href="/user/{{question.creator.id}}/{{question.creator.name_url}}">{{question.creator.display_name}}</a> <div> <span class="reputation-score" title="{{'QUESTION_USER_DETAILS_REPUTATION'|translate}}">{{question.creator.reputation}}</span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_BRONZE'|translate}}" ng-show="question.creator.count_badges_1 > 0"> <span class="badge1"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.creator.count_badges_1 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_SILVER'|translate}}" ng-show="question.creator.count_badges_2 > 0"> <span class="badge2"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.creator.count_badges_2 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_GOLD'|translate}}" ng-show="question.creator.count_badges_3 > 0"> <span class="badge3"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ question.creator.count_badges_3 }}</span> </span> </div> </div> </div> </div> </div> </div> <div class="comments"> <div ng-repeat="(comment_index, comment) in question.comments | limitTo: question.commentsLimit" class="comment wrapper"> <div class="wrapper new-comment" style="margin-top: 10px;" ng-show="question.comments[comment_index].editMode"> <textarea ng-model="question.comments[comment_index].content" style="width: 100%;" placeholder="{{'QUESTION_COMMENTS_ADD_PLACEHOLDER' | translate}}"> </textarea> <button id="comment-{{comment.id}}-editComment" class="btn btn-primary btn-xs" ng-click="questionCommentEdit($event, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" ng-bind-html="'QUESTION_COMMENTS_EDIT_BUTTON' | translate"> </button> <button class="btn btn-primary btn-xs" ng-click="question.comments[comment_index].editMode = false" ng-bind-html="'QUESTION_COMMENTS_CANCEL_BUTTON' | translate"> </button> </div> <div ng-hide="question.comments[comment_index].editMode"> <div id="comment-{{comment.id}}" class="comment-{{comment_index}} comment-vote col-1-12 nopad"> <div class="comment-score"> <span title="{{'QUESTION_COMMENT_SCORE_TOOLTIP' | translate}}"> {{comment.score | humanizeCount}} </span> </div> <div class="comment-actions" > <div class="comment-voteup" ng-class="{on: comment.history['resiexchange_questioncomment_voteup']}"> <a href id="comment-{{comment.id}}-voteup" title="{{'QUESTION_COMMENT_ACTIONS_VOTEUP_TOOLTIP' | translate}}" class="fa fa-thumbs-o-up" ng-click="questionCommentVoteUp($event, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> <div class="comment-flag" > <a href id="comment-{{comment.id}}-flag" title="{{'QUESTION_COMMENT_ACTIONS_FLAG_TOOLTIP' | translate}}" class="fa fa-flag" ng-class="{on: comment.history['resiexchange_questioncomment_flag']}" ng-click="questionCommentFlag($event, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> </div> </div> <div class="comment-text col-11-12 nopad"> <div class="comment-body"> <span btf-markdown="comment.content"></span> –&nbsp; <a class="comment-user" href="/user/{{comment.creator.id}}/{{comment.creator.name_url}}" title="{{comment.creator.reputation}}">{{comment.creator.display_name}}</a> <span class="comment-date" dir="ltr"> <a class="comment-link" href="/question/{{question.id}}#comment-{{comment.id}}"> <span class="relativetime" title="{{comment.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amCalendar}}">{{comment.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amTimeAgo}}</span> </a> </span> <a href ng-click="question.comments[comment_index].editMode = true"> <i class="fa fa-pencil" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_COMMENT_ACTIONS_EDIT' | translate"></span> </a>&nbsp; <a href id="comment-{{comment.id}}-delete" title="{{'QUESTION_COMMENT_ACTIONS_DELETE_TOOLTIP' | translate}}" ng-show="user.id==comment.creator.id" ng-click="questionCommentDelete($event, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-remove" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_COMMENT_ACTIONS_DELETE' | translate"></span> </a> </div> </div> </div> </div> </div> <div class="comments-actions"> <a href ng-click="question.newCommentShow = true" class="comments-link" title="{{ 'QUESTION_COMMENTS_ADD_TOOLTIP' | translate}}" > {{ 'QUESTION_COMMENTS_ADD' | translate}}</a> <span ng-show="question.comments.length > question.commentsLimit"> <span class="js-link-separator ">&nbsp;|&nbsp;</span> <a href ng-click="question.commentsLimit=1000" class="js-show-link comments-link " title="{{ 'QUESTION_COMMENTS_SHOW_ALL_TOOLTIP' | translate}}" ng-bind-html="'QUESTION_COMMENTS_SHOW_ALL' | translate"></a> </span> <div class="wrapper new-comment" style="margin-top: 10px;" ng-show="question.newCommentShow"> <textarea ng-model="question.newCommentContent" style="width: 100%;" placeholder="{{ 'QUESTION_COMMENTS_ADD_PLACEHOLDER' | translate }}"></textarea> <button id="question-addComment" class="btn btn-primary btn-xs" ng-click="questionComment($event)" uib-popover-template="'popoverCustom.html'" popover-append-to-body="true" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" ng-bind-html="'QUESTION_COMMENTS_ADD_BUTTON' | translate"> </button> </div> </div> </div> </div> <div class="answers"> <div class="subheader"> <h2>{{question.answers.length}} <span ng-bind-html="'QUESTION_ANSWERS_COUNT_LABEL' | translate"></span></h2> <div id="sort-dropdown"> <div class="btn-group dropdown" uib-dropdown="" is-open="status.isopen"> <button id="single-button" type="button" class="btn btn-primary dropdown-toggle" uib-dropdown-toggle="" ng-disabled="disabled" aria-haspopup="true" aria-expanded="false"> Trier <span class="caret"></span> </button> <!-- Simple dropdown --> <ul class="dropdown-menu" uib-dropdown-menu aria-labelledby="simple-dropdown"> <li class="dropdown-header">Dropdown header</li> <li ng-repeat="choice in items"> <a href="#">{{choice.txt}}</a> </li> </ul> </div> </div> </div> <div ng-repeat="(answer_index, answer) in question.answers"> <div id="answer-{{answer.id}}" class="answer-{{answer_index}} answer wrapper" ng-class="{on: (user.id==answer.creator.id)}" itemscope="" itemtype="https://schema.org/Answer" itemprop="suggestedAnswer"> <div class="vote col-1-12 nopad"> <div class="voteup" ng-class="{on: answer.history['resiexchange_answer_voteup']}"> <a href id="answer-{{answer.id}}-voteup" title="{{'QUESTION_ANSWER_ACTIONS_VOTEUP_TOOLTIP' | translate}}" class="fa fa-thumbs-o-up" ng-click="answerVoteUp($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> <div class="vote-count" itemprop="upvoteCount" > <span>{{answer.score | humanizeCount}}</span> </div> <div class="votedown" ng-class="{on: answer.history['resiexchange_answer_votedown']}"> <a href id="answer-{{answer.id}}-votedown" title="{{'QUESTION_ANSWER_ACTIONS_VOTEDOWN_TOOLTIP' | translate}}" class="fa fa-thumbs-o-down" ng-click="answerVoteDown($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> </div> <div class="content col-11-12 nopad"> <div itemprop="text" class="text" > <p ng-bind-html="answer.content"></p> <div ng-show="answer.source_author.length > 0" class="cc-license" ng-switch="answer.source_license"> Source: <a ng-switch-when="CC-by" class="cc-link" href="http://creativecommons.org/licenses/by/3.0/fr/" title="Creative Commons - attribution"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> </a> <a ng-switch-when="CC-by-nc" class="cc-link" href="http://creativecommons.org/licenses/by-nc/3.0/fr/" title="Creative Commons - attribution / pas d'utilisation commerciale"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> <i class="cc cc-nc-eu" aria-hidden="true"></i> </a> <a ng-switch-when="CC-by-nc-sa" class="cc-link" href="http://creativecommons.org/licenses/by-nc-sa/3.0/fr/" title="Creative Commons - attribution / pas d'utilisation commerciale / partage dans les mêmes conditions"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> <i class="cc cc-nc-eu" aria-hidden="true"></i> <i class="cc cc-sa" aria-hidden="true"></i> </a> <a ng-switch-when="CC-by-nc-nd" class="cc-link" href="http://creativecommons.org/licenses/by-nc-nd/3.0/fr/" title="Creative Commons - attribution / pas d'utilisation commerciale / pas de modification"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> <i class="cc cc-nc-eu" aria-hidden="true"></i> <i class="cc cc-nd" aria-hidden="true"></i> </a> <a ng-switch-when="CC-by-sa" class="cc-link" href="http://creativecommons.org/licenses/by-sa/3.0/fr/" title="Creative Commons - attribution / partage dans les mêmes conditions"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> <i class="cc cc-sa" aria-hidden="true"></i> </a> <a ng-switch-when="CC-by-nd" class="cc-link" href="http://creativecommons.org/licenses/by-nd/3.0/fr/" title="Creative Commons - attribution / pas de modification"> <i class="cc cc-cc" aria-hidden="true"></i> <i class="cc cc-by" aria-hidden="true"></i> <i class="cc cc-nd" aria-hidden="true"></i> </a> <a class="cc-author" href="{{answer.source_url}}">{{answer.source_author}}</a> </div> </div> <div class="footer"> <div class="meta"> <div class="actions"> <a href="/question/{{question.id}}#answer-{{answer.id}}" title="{{'QUESTION_ANSWER_ACTIONS_SHARE_TOOLTIP' | translate}}"> <i class="fa fa-share-alt" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ANSWER_ACTIONS_SHARE' | translate"></span> </a>&nbsp; <a href="/answer/edit/{{answer.id}}"> <i class="fa fa-pencil" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ANSWER_ACTIONS_EDIT' | translate"></span> </a>&nbsp; <a href id="answer-{{answer.id}}-flag" title="{{'QUESTION_ANSWER_ACTIONS_FLAG_TOOLTIP' | translate}}" ng-class="{on: answer.history['resiexchange_answer_flag']}" ng-click="answerFlag($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-flag" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ANSWER_ACTIONS_FLAG' | translate"></span> </a>&nbsp; <a href id="answer-{{answer.id}}-delete" title="{{'QUESTION_ANSWER_ACTIONS_DELETE_TOOLTIP' | translate}}" ng-show="user.id==answer.creator.id || user.role!='u'" ng-click="answerDelete($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-remove" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ANSWER_ACTIONS_DELETE' | translate"></span> </a> <a href id="answer-{{answer.id}}-convert" title="{{'QUESTION_ANSWER_ACTIONS_CONVERT_TOOLTIP' | translate}}" ng-show="user.id==answer.creator.id || user.role=='a'" ng-click="answerConvert($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-exchange" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_ANSWER_ACTIONS_CONVERT' | translate"></span> </a> </div> <!-- <div class="signature"> <div class="user-info"> <div class="user-action-time"> <a href="" title="show all edits to this post">edited <span title="2016-05-26 16:15:01Z" class="relativetime">May 26 at 16:15</span></a> </div> <div class="user-avatar"> <a href=""><div class="avatar-wrapper"><img src="seST2.gif" alt="" width="32" height="32"></div></a> </div> <div class="user-details"> <a href=""></a><span class="mod-flair" title="moderator">♦</span> <div> <span class="reputation-score" title="reputation score 27,171" dir="ltr">27.2k</span> <span class="badges" title="6 gold badges"><span class="badge1"><i class="fa fa-circle" aria-hidden="true"></i></span><span class="badgecount">6</span></span> <span class="badges" title="39 silver badges"><span class="badge2"><i class="fa fa-circle" aria-hidden="true"></i></span><span class="badgecount">39</span></span> <span class="badges" title="72 bronze badges"><span class="badge3"><i class="fa fa-circle" aria-hidden="true"></i></span><span class="badgecount">72</span></span> </div> </div> </div> </div> --> <div class="signature owner"> <div class="user-info"> <div class="user-action-time"> <span class="relativetime" title="{{answer.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amCalendar}}"><span ng-bind-html="'ANSWER_STATS_ANSWERED' | translate"></span> {{answer.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amTimeAgo}}</span> </div> <div class="user-avatar"> <a href="/user/{{answer.creator.id}}/{{answer.creator.name_url}}"> <div class="avatar-wrapper"> <img ng-src="{{rootCtrl.avatarURL(answer.creator.avatar_url, 32)}}" title="{{answer.creator.display_name}}" width="32" height="32"> </div> </a> </div> <div class="user-details"> <a href="/user/{{answer.creator.id}}/{{answer.creator.name_url}}">{{answer.creator.display_name}}</a> <div> <span class="reputation-score" title="{{'QUESTION_USER_DETAILS_REPUTATION'|translate}}" dir="ltr">{{answer.creator.reputation}}</span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_GOLD'|translate}}" ng-show="answer.creator.count_badges_3 > 0"> <span class="badge3"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ answer.creator.count_badges_3 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_SILVER'|translate}}" ng-show="answer.creator.count_badges_2 > 0"> <span class="badge2"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ answer.creator.count_badges_2 }}</span> </span> <span class="badges" title="{{'QUESTION_USER_DETAILS_BADGES_BRONZE'|translate}}" ng-show="answer.creator.count_badges_1 > 0"> <span class="badge1"><i class="fa fa-circle" aria-hidden="true"></i></span> <span class="badgecount">{{ answer.creator.count_badges_1 }}</span> </span> </div> </div> </div> </div> </div> </div> <div class="comments"> <div ng-repeat="(comment_index, comment) in answer.comments | limitTo: question.answers[answer_index].commentsLimit" class="comment wrapper"> <div class="wrapper new-comment" style="margin-top: 10px;" ng-show="question.answers[answer_index].comments[comment_index].editMode"> <textarea ng-model="question.answers[answer_index].comments[comment_index].content" style="width: 100%;" placeholder="{{'QUESTION_COMMENTS_ADD_PLACEHOLDER' | translate}}"> </textarea> <button id="answer-{{answer.id}}-comment-{{comment.id}}-editComment" class="btn btn-primary btn-xs" ng-click="answerCommentEdit($event, answer_index, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" ng-bind-html="'QUESTION_COMMENTS_EDIT_BUTTON' | translate"> </button> <button class="btn btn-primary btn-xs" ng-click="question.answers[answer_index].comments[comment_index].editMode = false" ng-bind-html="'QUESTION_COMMENTS_CANCEL_BUTTON' | translate"> </button> </div> <div ng-hide="question.answers[answer_index].comments[comment_index].editMode"> <div id="answer-{{answer.id}}-comment-{{comment.id}}" class="comment-{{comment_index}} comment-vote col-1-12 nopad"> <div class="comment-score"> <span title="{{'QUESTION_COMMENT_SCORE_TOOLTIP'|translate}}"> {{comment.score | humanizeCount}} </span> </div> <div class="comment-actions" > <div class="comment-voteup" > <a href id="answer-{{answer.id}}-comment-{{comment.id}}-voteup" title="{{'QUESTION_COMMENT_ACTIONS_VOTEUP_TOOLTIP' | translate}}" class="fa fa-thumbs-o-up" ng-class="{on: comment.history['resiexchange_answercomment_voteup']}" ng-click="answerCommentVoteUp($event, answer_index, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> <div class="comment-flag"> <a href id="answer-{{answer.id}}-comment-{{comment.id}}-flag" title="{{'QUESTION_COMMENT_ACTIONS_FLAG_TOOLTIP' | translate}}" class="fa fa-flag" ng-class="{on: comment.history['resiexchange_answercomment_flag']}" ng-click="answerCommentFlag($event, answer_index, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true" aria-hidden="true"> </a> </div> </div> </div> <div class="comment-text col-11-12 nopad"> <div class="comment-body"> <span btf-markdown="comment.content"></span> –&nbsp; <a class="comment-user" href="/user/{{comment.creator.id}}/{{comment.creator.name_url}}" title="{{comment.creator.reputation}}">{{comment.creator.display_name}}</a> <span class="comment-date" dir="ltr"> <a class="comment-link" href="/question/{{question.id}}#comment-{{answer.id}}-{{comment.id}}"> <span class="relativetime" title="{{comment.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amCalendar}}">{{comment.created | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amTimeAgo}}</span> </a> </span> <a href ng-click="question.answers[answer_index].comments[comment_index].editMode = true"> <i class="fa fa-pencil" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_COMMENT_ACTIONS_EDIT' | translate"></span> </a>&nbsp; <a href id="answer-{{answer.id}}-comment-{{comment.id}}-delete" title="{{'QUESTION_COMMENT_ACTIONS_DELETE_TOOLTIP' | translate}}" ng-show="user.id==comment.creator.id" ng-click="answerCommentDelete($event, answer_index, comment_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i class="fa fa-remove" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_COMMENT_ACTIONS_DELETE' | translate"></span> </a> </div> </div> </div> </div> </div> <div class="comments-actions"> <a href ng-click="question.answers[answer_index].newCommentShow = true" class="comments-link" title="{{'QUESTION_COMMENTS_ADD_TOOLTIP' | translate}}"> {{'QUESTION_COMMENTS_ADD' | translate}} </a> <span ng-show="answer.comments.length > question.answers[answer_index].commentsLimit"> <span class="js-link-separator">&nbsp;|&nbsp;</span> <a href ng-click="question.answers[answer_index].commentsLimit=1000" class="js-show-link comments-link " title="{{'QUESTION_COMMENTS_SHOW_ALL_TOOLTIP' | translate}}"> {{'QUESTION_COMMENTS_SHOW_ALL' | translate}} </a> </span> <div class="wrapper new-comment" style="margin-top: 10px;" ng-show="question.answers[answer_index].newCommentShow"> <textarea ng-model="question.answers[answer_index].newCommentContent" style="width: 100%;" placeholder="{{'QUESTION_COMMENTS_ADD_PLACEHOLDER' | translate}}"> </textarea> <button id="answer-{{answer.id}}-addComment" class="btn btn-primary btn-xs" ng-click="answerComment($event, answer_index)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> {{'QUESTION_COMMENTS_ADD_BUTTON' | translate}} </button> </div> </div> </div> </div> </div> </div> <div id="your-answer" class="user-answer" ng-hide="user.id && question.history['resiexchange_question_answer']"> <div class="subheader"> <h2 ng-bind-html="'QUESTION_USER_ANSWER' | translate"></h2> </div> <div class="wrapper"> <textarea class="content form-control" style="height: 200px;" ui-tinymce="rootCtrl.tinymceOptions" ng-model="question.newAnswerContent"> </textarea> Source : <div class="checkbox" style="display: inline-block;"> <label> <input type="checkbox" ng-model="noExternalSource" ng-init="noExternalSource=true" style="top: -1px;"> Je suis l'auteur de cette réponse </label> </div> <div ng-hide="noExternalSource"> <div class="col-3-12"> <div class="control-group"> <label class="control-label">Auteur</label> <div class="controls"> <input type="text" ng-model="question.newAnswerSource_author" class="form-control" /> <p class="help-inline">&nbsp;</p> </div> </div> </div> <div class="col-4-12"> <div class="control-group"> <label class="control-label">URL</label> <div class="controls"> <input type="text" ng-model="question.newAnswerSource_url" class="form-control" /> <p class="help-inline">&nbsp;</p> </div> </div> </div> <div class="col-5-12"> <div class="control-group"> <label class="control-label">Licence</label> <div class="controls"> <div class="btn-group" uib-dropdown dropdown-append-to-body> <button id="source-license" type="button" class="btn btn-default" uib-dropdown-toggle ng-disabled="disabled"> <span style="min-width: 126px; display: inline-block; text-align: left;">{{question.newAnswerSource_license}}</span> <span class="caret"></span> </button> <ul class="dropdown-menu" uib-dropdown-menu role="menu" aria-labelledby="source-license"> <li role="menuitem"><a title="Creative Commons - attribution" href ng-click="question.newAnswerSource_license='CC-by'"><i class="cc cc-BY" aria-hidden="true"></i> CC-by</a></li> <li role="menuitem"><a title="Creative Commons - attribution / pas d'utilisation commerciale" href ng-click="question.newAnswerSource_license='CC-by-nc'"><i class="cc cc-by-nc" aria-hidden="true"></i> CC-by-nc</a></li> <li role="menuitem"><a title="Creative Commons - attribution / pas d'utilisation commerciale / partage dans les mêmes conditions" href ng-click="question.newAnswerSource_license='CC-by-nc-sa'"><i class="cc cc-by-nc-sa" aria-hidden="true"></i> CC-by-nc-sa</a></li> <li role="menuitem"><a title="Creative Commons - attribution / pas d'utilisation commerciale / pas de modification" href ng-click="question.newAnswerSource_license='CC-by-nc-nd'"><i class="cc cc-by-nc-nd" aria-hidden="true"></i> CC-by-nc-nd</a></li> <li role="menuitem"><a title="Creative Commons - attribution / partage dans les mêmes conditions" href ng-click="question.newAnswerSource_license='CC-by-sa'"><i class="cc cc-by-sa" aria-hidden="true"></i> CC-by-sa</a></li> <li role="menuitem"><a title="Creative Commons - attribution / pas de modification" href ng-click="question.newAnswerSource_license='CC-by-nd'"><i class="cc cc-by-nd" aria-hidden="true"></i> CC-by-nd</a></li> </ul> </div> </div> </div> </div> </div> </div> <div class="form-actions"> <button id="question-addAnswer" class="btn btn-primary" ng-click="questionAnswer($event)" uib-popover-template="'popoverCustom.html'" popover-trigger="'toggle-popover'" popover-placement="right" popover-append-to-body="true"> <i ng-show="ctrl.running" class="fa fa-spinner fa-spin" aria-hidden="true"></i> <span ng-bind-html="'QUESTION_USER_ANSWER_SUBMIT' | translate"></button> </div> </div> </div> <div class="col-4-12"> <div class="panel panel-default"> <div class="container" style="border-bottom: solid 1px lightgrey;"> <div class="module question-stats"> <div class="stat-row"> <div class="title"> <span ng-bind-html="'QUESTION_STATS_ASKED' | translate"></span> </div> <div class="content"> <b>{{question.created}}</b> </div> </div> <div class="stat-row"> <div class="title"> <span ng-bind-html="'QUESTION_STATS_VIEWED' | translate"></span> </div> <div class="content"> <b>{{question.count_views}} {{'QUESTION_STATS_TIMES' | translate}}</b> </div> </div> <div class="stat-row"> <div class="title"> <span ng-bind-html="'QUESTION_STATS_ACTIVE' | translate"></span> </div> <div class="content"> <b>{{question.modified | amDateFormat:'YYYY-MM-DD HH:mm:ss' | amTimeAgo}}</b> </div> </div> <div class="stat-row"> <div class="title"> Auteur </div> <div class="content"> <b><a href="/user/{{question.creator.id}}/{{question.creator.name_url}}">{{question.creator.display_name}}</a></b> </div> </div> <div class="stat-row"> <div class="title"> </div> <div class="content about"> <p ng-bind-html="question.creator.about"></p> </div> </div> <div class="stat-row" ng-if="question.answers.length"> <div class="title"> Réponses </div> <div class="content"> </div> </div> <div class="stat-row" ng-repeat-start="answer in question.answers"> <div class="title"> </div> <div class="content"> <b><a href="/user/{{answer.creator.id}}/{{answer.creator.name_url}}">{{answer.creator.display_name}}</a></b> </div> </div> <div class="stat-row" ng-repeat-end> <div class="title"> </div> <div class="content"> <p ng-bind-html="answer.creator.about"></p> </div> </div> </div> </div> <div class="container fade-in-out" ng-show="related_questions.length > 0" > <h4>Questions similaires</h4> <div class="related-questions" ng-repeat="question in related_questions"> <table> <tr> <td><span class="mini-counts btn btn-success btn-xs">{{question.score | humanizeCount}}</span></td> <td><a href="/question/{{question.id}}/{{question.title_url}}" title="{{question.title}}">{{question.title}}</a></td> </tr> </table> </div> </div> </div> </div> <div class="col-4-12 answer-help" ng-hide="user.id && question.history['resiexchange_question_answer']"> <div ng-include="'answerHelp.html'"></div> </div> </div>
CSC 445 WebCentric Programming/Final Project/poi-3.14/docs/apidocs/org/apache/poi/poifs/crypt/dsig/class-use/DigestInfo.html
jmemmons/university-assignments
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.poifs.crypt.dsig.DigestInfo (POI API Documentation) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.poifs.crypt.dsig.DigestInfo (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/poi/poifs/crypt/dsig/\class-useDigestInfo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="DigestInfo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.poi.poifs.crypt.dsig.DigestInfo</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.poifs.crypt.dsig"><B>org.apache.poi.poifs.crypt.dsig</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.poifs.crypt.dsig"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A> in <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/package-summary.html">org.apache.poi.poifs.crypt.dsig</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/package-summary.html">org.apache.poi.poifs.crypt.dsig</A> that return <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A></CODE></FONT></TD> <TD><CODE><B>SignatureInfo.</B><B><A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/SignatureInfo.html#preSign(org.w3c.dom.Document, java.util.List)">preSign</A></B>(org.w3c.dom.Document&nbsp;document, java.util.List&lt;<A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A>&gt;&nbsp;digestInfos)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Helper method for adding informations before the signing.</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Method parameters in <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/package-summary.html">org.apache.poi.poifs.crypt.dsig</A> with type arguments of type <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A></CODE></FONT></TD> <TD><CODE><B>SignatureInfo.</B><B><A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/SignatureInfo.html#preSign(org.w3c.dom.Document, java.util.List)">preSign</A></B>(org.w3c.dom.Document&nbsp;document, java.util.List&lt;<A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig">DigestInfo</A>&gt;&nbsp;digestInfos)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Helper method for adding informations before the signing.</TD> </TR> </TABLE> &nbsp; <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/poifs/crypt/dsig/DigestInfo.html" title="class in org.apache.poi.poifs.crypt.dsig"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/poi/poifs/crypt/dsig/\class-useDigestInfo.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="DigestInfo.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
templates/tennants.html
LuciaWyn/csvFlaskPython
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Rentals</title> <link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static',filename='images/favicon.ico') }}"> <link rel="stylesheet" type="text/css" href="{{ url_for('static',filename='css/style.css') }}"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> //$(document).ready(function(){ var JSONstr ='{{jd|safe}}'; var JSONObject = JSON.parse(JSONstr); var t = {{ct}}; </script> <script> $(document).ready(function(){ for (var s = 0; s <= t; s++){ $("main").append("<div id=entry"+s+" class=entry></div>"); $('#entry'+s).append("<h3>Name: "+(JSONObject[s]["Name"])+"</h3><p>Address:"); if ((JSONObject[s]["Address1"]) != null){ $('#entry'+s).append((JSONObject[s]["Address1"])+"</br>"); } if ((JSONObject[s]["Address2"]) != null){ $('#entry'+s).append((JSONObject[s]["Address2"])+"</br>"); } if ((JSONObject[s]["Address3"]) != null){ $('#entry'+s).append((JSONObject[s]["Address3"])+"</br>"); } if ((JSONObject[s]["Address4"]) != null){ $('#entry'+s).append((JSONObject[s]["Address4"])+"</br>"); } $('#entry'+s).append("</p>"); $('#entry'+s).append("Unit: "+(JSONObject[s]["Unit"])+"</br>"); if ((JSONObject[s]["LeaseStart"]) != null){ $('#entry'+s).append("Lease Start: "+(JSONObject[s]["LeaseStart"])+"</br>"); $('#entry'+s).append("Lease End: "+(JSONObject[s]["LeaseEnd"])+"</br>"); } else{ $('#entry'+s).append("Lease Start: "+(JSONObject[s]["Start"])+"</br>"); $('#entry'+s).append("Lease End: "+(JSONObject[s]["End"])+"</br>"); } $('#entry'+s).append("Lease Years: "+(JSONObject[s]["LeaseYears"])+"</br>"); $('#entry'+s).append("Rent: £"+(JSONObject[s]["Rent"])); //$('#entry'+s).append("<p>Address: "+(JSONObject[s]["Address1"])+"</br>"+(JSONObject[s]["Address2"])+"<br/>"+(JSONObject[s]["Address3"])+"<br/>"+(JSONObject[s]["Address4"])+"</p>"); } //$("main").append(); }); </script> </head> <body> <header class="head"> <img id="icon" src="{{ url_for('static',filename='images/icon.svg') }}" alt="logo" width="64px" height="64px"/> <h1>Rentals</h1> </header> <nav> <a href="{{url_for('index')}}"><div>Home</div></a> <a href="{{url_for('lease')}}"><div>Ascending Order</div></a> <a href="{{url_for('rent')}}"><div>Total Rent</div></a> <a href="{{url_for('top5')}}"><div>Top 5 results</div></a> <a href="{{url_for('tenants')}}"><div>Tenants</div></a> <a href="{{url_for('add')}}"><div>Add Record</div></a> </nav> <main id="main"> <a href="{{url_for('tenants')}}"><p>\Tenants</p></a> <h2>{{p}}</h2> <p>Total no.masts:{{cct}}</p> </main> </body> </html>
client/cobertura/com.googlecode.fspotcloud.client.main.gin.PlaceControllerProvider.html
slspeek/FSpotCloudSite
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>Coverage Report</title> <link title="Style" type="text/css" rel="stylesheet" href="css/main.css"/> <script type="text/javascript" src="js/popup.js"></script> </head> <body> <h5>Coverage Report - com.googlecode.fspotcloud.client.main.gin.PlaceControllerProvider</h5> <div class="separator">&nbsp;</div> <table class="report"> <thead><tr> <td class="heading">Classes in this File</td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Line Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Branch Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Complexity</a></td></tr></thead> <tr><td><a href="com.googlecode.fspotcloud.client.main.gin.PlaceControllerProvider.html">PlaceControllerProvider</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/5</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.0;</span>1</td></tr> </table> <div class="separator">&nbsp;</div> <table cellspacing="0" cellpadding="0" class="src"> <tr> <td class="numLine">&nbsp;1</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;<span class="keyword">package</span> com.googlecode.fspotcloud.client.main.gin;</pre></td></tr> <tr> <td class="numLine">&nbsp;2</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;</pre></td></tr> <tr> <td class="numLine">&nbsp;3</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;<span class="keyword">import</span> com.google.gwt.event.shared.EventBus;</pre></td></tr> <tr> <td class="numLine">&nbsp;4</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;<span class="keyword">import</span> com.google.gwt.place.shared.PlaceController;</pre></td></tr> <tr> <td class="numLine">&nbsp;5</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;<span class="keyword">import</span> com.google.inject.Inject;</pre></td></tr> <tr> <td class="numLine">&nbsp;6</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;<span class="keyword">import</span> com.google.inject.Provider;</pre></td></tr> <tr> <td class="numLine">&nbsp;7</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;</pre></td></tr> <tr> <td class="numLineCover">&nbsp;8</td> <td class="nbHitsUncovered">&nbsp;0</td> <td class="src"><pre class="src"><span class="srcUncovered">&nbsp;<span class="keyword">public</span> <span class="keyword">class</span> PlaceControllerProvider <span class="keyword">implements</span> Provider&lt;PlaceController&gt; {</span></pre></td></tr> <tr> <td class="numLine">&nbsp;9</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;</pre></td></tr> <tr> <td class="numLine">&nbsp;10</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; <span class="keyword">final</span> <span class="keyword">private</span> PlaceController placeController;</pre></td></tr> <tr> <td class="numLine">&nbsp;11</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; </pre></td></tr> <tr> <td class="numLine">&nbsp;12</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; @Inject</pre></td></tr> <tr> <td class="numLineCover">&nbsp;13</td> <td class="nbHitsUncovered">&nbsp;0</td> <td class="src"><pre class="src"><span class="srcUncovered">&nbsp; <span class="keyword">public</span> PlaceControllerProvider(EventBus eventBus) {</span></pre></td></tr> <tr> <td class="numLineCover">&nbsp;14</td> <td class="nbHitsUncovered">&nbsp;0</td> <td class="src"><pre class="src"><span class="srcUncovered">&nbsp; <span class="keyword">this</span>.placeController = <span class="keyword">new</span> PlaceController(eventBus);</span></pre></td></tr> <tr> <td class="numLineCover">&nbsp;15</td> <td class="nbHitsUncovered">&nbsp;0</td> <td class="src"><pre class="src"><span class="srcUncovered">&nbsp; }</span></pre></td></tr> <tr> <td class="numLine">&nbsp;16</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; </pre></td></tr> <tr> <td class="numLine">&nbsp;17</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; @Override</pre></td></tr> <tr> <td class="numLine">&nbsp;18</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; <span class="keyword">public</span> PlaceController get() {</pre></td></tr> <tr> <td class="numLineCover">&nbsp;19</td> <td class="nbHitsUncovered">&nbsp;0</td> <td class="src"><pre class="src"><span class="srcUncovered">&nbsp; <span class="keyword">return</span> placeController;</span></pre></td></tr> <tr> <td class="numLine">&nbsp;20</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp; }</pre></td></tr> <tr> <td class="numLine">&nbsp;21</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;</pre></td></tr> <tr> <td class="numLine">&nbsp;22</td> <td class="nbHits">&nbsp;</td> <td class="src"><pre class="src">&nbsp;}</pre></td></tr> </table> <div class="footer">Report generated by <a href="http://cobertura.sourceforge.net/" target="_top">Cobertura</a> 1.9.4.1 on 6-4-12 23:19.</div> </body> </html>
Day8/public/admin-registration.html
24thsaint/EmergeTraining-NodeJS
{% extends 'admin-template.html' %} {% block scripts %} <script src="/js/registration.js" charset="utf-8"></script> {% endblock %} {% block content %} <div class="banner">Administrator Registration</div> <div class="content"> <div class="floater"> <div id="notification"></div> <form id="registrationForm"> <div class="fields"> <label class="label">Full Name</label><input type="text" class="textbox field" id="fullname" required /> </div> <div class="fields"> <label class="label">Course</label><input type="text" class="textbox field" id="course" required /> </div> <div class="fields"> <label class="label">Username</label><input type="text" class="textbox field" id="username" required /> </div> <div class="fields"> <label class="label">Password</label><input type="password" class="textbox field" id="password" required /> </div> <button type="submit" class="button primary col-5">Register</button> <button type="reset" class="button warning col-5">Clear Form</button> <div class="clearfix"></div> </form> </div> {% endblock %}
style.css
petru/vienvity
/* Theme Name: vienvity Description: A minimalistic WordPress theme with a sharp focus on content. Based on the Vostok Theme originally created by Javier Cañada and Rubén Lozano. See www.vostoktheme.com for more. Version: 1.0 Author: Petru Madar Author URI: http://www.vienvity.net/ License: GNU General Public License License URI: license.txt Tags: black, white, dark, light, one-column, fixed-width */ @import "css/reset.css"; @import "css/layout.css"; @import "css/images.css"; @import "css/type-arial.css"; /* @import "css/type-book.css"; */ /*@import "css/colors.css";*/ @import "css/forms.css"; @import "css/white.css"; /*@import "css/indentation.css"; */ /*@import "css/white-dark.css"; */ /* Clearing FloatsMore info: http://www.positioniseverything.net/easyclearing.html*/ .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .clearfix { display: inline-block; } /* Hides from IE-mac \*/ * html .clearfix {height: 1%;} .clearfix {display: block;} /* End hide from IE-mac */
_source/news/2018-08-25-imran.html
InstantKhabar/_source
--- title: "इमरान सरकारी अधिकारियों के मनमाने खर्चों पर लगाई लगाम" layout: item category: ["international"] date: 2018-08-25T05:48:57.689Z image: 1535195937687imran.jpg --- <p>इस्लामाबाद: पाकिस्तान की नई सरकार ने राष्ट्रपति और प्रधानमंत्री समेत अधिकारियों तथा नेताओं के सरकारी निधि को अपने मन से खर्च करने और प्रथम श्रेणी से हवाई यात्रा करने पर प्रतिबंध लगा दिया है. यह उसके अपने खर्चों पर लगाम लगाने के अभियान का हिस्सा है. सूचना मंत्री फवाद चौधरी के अनुसार, प्रधानमंत्री इमरान खान की अध्यक्षता में कल हुई मंत्रिमंडल की बैठक में यह फैसला किया गया. उन्होंने मीडिया से कहा, ‘यह निर्णय किया गया है कि राष्ट्रपति, प्रधानमंत्री, प्रधान न्यायाधीश, सीनेट चेयरमैन, नेशनल असेंबली के स्पीकर और मुख्यमंत्री क्लब/बिजनेस श्रेणी में यात्रा करेंगे.’ </p> <p>एक सवाल पर चौधरी ने कहा कि सेना प्रमुख को प्रथम श्रेणी से यात्रा करने की अनुमति नहीं है और वह हमेशा बिजनेस श्रेणी में यात्रा करते हैं. उन्होंने कहा कि मंत्रिमंडल ने प्रधानमंत्री, राष्ट्रपति तथा अन्य अधिकारियों ने निधि के विवेकाधीन आवंटन पर भी रोक लगा दी है. चौधरी ने दावा किया कि पूर्व प्रधानमंत्री नवाज शरीफ एक साल में 51 अरब रूपये की निधि का इस्तेमाल करते थे. </p> <p>प्रधानमंत्री ने विदेशी या घरेलू यात्रा के लिए विशेष विमानों और बिजनेस क्लास में यात्रा करने पर भी रोक लगाने का फैसला किया है. आम चुनावों में जीत के बाद खान ने आलीशान प्रधानमंत्री आवास का इस्तेमाल न करने और इसकी बजाय आवास के एक छोटे से हिस्से का इस्तेमाल करने का फैसला किया है. खान ने केवल दो वाहनों और दो सेवकों की सेवाएं लेने का भी फैसला किया.</p>
app/views/S6/includes/propositional_navigation.html
citizendigitalalpha/T1
<div class="header-proposition"> <div class="content"> <!--<a href="#proposition-links" class="js-header-toggle menu">Menu</a>--> <nav id="proposition-menu"> <a href="/index" id="proposition-name">Your Careers Service (working title)</a> <!-- {% include "includes/phase_banner_alpha.html" %} --> <!-- <a href="/" id="proposition-name">{% if serviceName %} {{ serviceName }} {% endif %}</a> --> <!-- <a href="#search" class="search-toggle js-header-toggle">Search</a> <form id="search" class="site-search" action="/search" method="get" role="search"> <div class="content"> <label for="site-search-text">Search</label> <input type="search" name="q" id="site-search-text" title="Search" class="js-search-focus"> <input class="submit" type="submit" value="Search"> </div> </form> --> <!-- <ul id="proposition-links"> <li><a href="/index">Home</a></li> <li><a href="/research">Research</a></li> <li><a href="/explore">Explore</a></li> <li><a href="/inspire">Inspire</a></li> <li><a href="/resources">Prepare</a></li> <li><a href="/contact-an-adviser">Contact</a></li> </ul> --> </nav> </div> </div>
_source/news/31368-lucknow.html
InstantKhabar/_source
--- title: "राज्यपाल से मिले मुख्यमंत्री, आज़म पर चर्चा" layout: item category: lucknow date: 2016-04-30T13:06:24.000Z image: 2f6825460329ffcc377490d4951778d9.jpg --- <p style="text-align: justify;">लखनऊ: उत्तर प्रदेश के राज्यपाल राम नाईक से आज राजभवन में प्रदेश के मुख्यमंत्री अखिलेश यादव ने भेट की। भेट के दौरान राज्यपाल ने मुख्यमंत्री से नगर विकास एवं संसदीय कार्य मंत्री आजम खाँ के बयानों पर नाराजगी जतायी, जिस पर मुख्यमंत्री ने कहा कि वे आजम खाँ से इस संबंध में बात करेंगे।</p> <p style="text-align: justify;">राज्यपाल ने इस अवसर पर राजभवन में विचाराधीन सात विधेयक (1) उत्तर प्रदेश नगर निगम (संशोधन) विधेयक, 2015 (2) उत्तर प्रदेश नगरपालिका विधि (संधोधन) विधेयक, 2015 (3) उत्तर प्रदेश अल्पसंख्यक आयोग (संशोधन) विधेयक, 2015 (4) उत्तर प्रदेश आयुर्विज्ञान विश्वविद्यालय, सैफई, इटावा, विधेयक, 2015 (5) डाॅ0 राम मनोहर लोहिया आयुर्विज्ञान संस्थान विधेयक, 2015 (6) उत्तर प्रदेश लोक आयुक्त एवं उप लोक आयुक्त  (संशोधन) विधेयक, 2015 तथा (7) आईआईएमटी विश्वविद्यालय, मेरठ, उत्तर प्रदेश विधेयक, 2016 पर भी मुख्यमंत्री के साथ विस्तार से चर्चा की।</p> <p style="text-align: justify;">श्री नाईक ने मुख्यमंत्री से विधान परिषद में नाम निर्देशन हेतु 2 रिक्त स्थानों के लिए भी शीघ्र नाम भेजने की बात कही। विधान परिषद में 10 रिक्तियों के सापेक्ष राज्यपाल ने 7 नामों पर अपनी सहमति प्रदान कर दी है तथा श्री राजपाल कश्यप का नाम अभी विचाराधीन है। मुख्यमंत्री ने इस अवसर पर प्रदेश से जुडे़ अन्य विषयों व प्रदेश के विकास हेतु जनहित में चलायी जा रही कल्याणकारी योजनाओं के बारे में भी जानकारी दी।</p>
MPI.docset/Contents/Resources/Documents/docs/MPI_Info_create.html
xancandal/dash-docsets
<!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>MPI_Info_create(MPI_Info *info) function</title> <link rel="stylesheet" href="../style.css" type="text/css" charset="utf-8"> </head> <body> <div class="background"> <div class="tab_box"> <div class="tab_box_middle"> <div class="main_box"> <div class="text_box"> <div class="text_box_top"> </div> <div class="text_box_middle"> <div class="text_box_middle_text"> <a name="MPI_Info_create"><h1><font size="5">MPI_Info_create</font></h1></a> Creates a new info object <font size="3"> <pre class="syntax" xml:space="preserve" style="background-color: #DDDDDD"><b>int MPI_Info_create(</b> <b>MPI_Info</b> *<i>info</i> <b>);</b> </pre></font> <h4>Parameters</h4> <dl><dt><i>info </i></dt> <dd> [out] info object created (handle) </dd></dl> <p> </p><h4>Remarks</h4> <p>MPI_INFO_CREATE creates a new info object. The newly created object contains no key/value pairs.</p> <h4>Thread and Interrupt Safety</h4> <p> This routine is thread-safe. This means that this routine may be safely used by multiple threads without the need for any user-provided thread locks. However, the routine is not interrupt safe. Typically, this is due to the use of memory allocation routines such as <tt><font size="2">malloc </font></tt>or other non-MPICH runtime routines that are themselves not interrupt-safe. </p><p> </p><h4>Notes for Fortran</h4> All MPI routines in Fortran (except for <tt><font size="2">MPI_WTIME</font></tt> and <tt><font size="2">MPI_WTICK</font></tt>) have an additional argument <tt><font size="2">ierr</font></tt> at the end of the argument list. <tt><font size="2">ierr </font></tt>is an integer and has the same meaning as the return value of the routine in C. In Fortran, MPI routines are subroutines, and are invoked with the <tt><font size="2">call</font></tt> statement. <p> All MPI objects (e.g., <tt><font size="2">MPI_Datatype</font></tt>, <tt><font size="2">MPI_Comm</font></tt>) are of type <tt><font size="2">INTEGER </font></tt>in Fortran. </p><p> </p><h4>Errors</h4> <p> All MPI routines (except <tt><font size="2"><a href="MPI_Wtime.html">MPI_Wtime</a></font></tt> and <tt><font size="2"><a href="MPI_Wtick.html">MPI_Wtick</a></font></tt>) return an error value; C routines as the value of the function and Fortran routines in the last argument. Before the value is returned, the current MPI error handler is called. By default, this error handler aborts the MPI job. The error handler may be changed with <tt><font size="2"><a href="MPI_Comm_set_errhandler.html">MPI_Comm_set_errhandler</a></font></tt> (for communicators), <tt><font size="2"><a href="MPI_File_set_errhandler.html">MPI_File_set_errhandler</a></font></tt> (for files), and <tt><font size="2"><a href="MPI_Win_set_errhandler.html">MPI_Win_set_errhandler</a></font></tt> (for RMA windows). The MPI-1 routine <tt><font size="2"><a href="MPI_Errhandler_set.html">MPI_Errhandler_set</a></font></tt> may be used but its use is deprecated. The predefined error handler <tt><font size="2">MPI_ERRORS_RETURN</font></tt> may be used to cause error values to be returned. Note that MPI does <em>not</em> guarentee that an MPI program can continue past an error; however, MPI implementations will attempt to continue whenever possible. </p><p> </p><dl><dt><i>MPI_SUCCESS </i></dt> <dd> No error; MPI routine completed successfully. </dd></dl> <dl><dt><i>MPI_ERR_OTHER </i></dt> <dd> Other error; use <tt><font size="2"><a href="MPI_Error_string.html">MPI_Error_string</a></font></tt> to get more information about this error code. </dd></dl> <h4>Example Code</h4> <p>The following sample code illustrates <a href="MPI_Info_create.html">MPI_Info_create</a>. </p> <font size="2" color="#0000ff"> #include</font><font size="2"> "mpi.h"<br> </font><font size="2" color="#0000ff"> #include</font><font size="2"> &lt;stdio.h&gt;<br> </font><font size="2" color="#0000ff"> #include</font><font size="2"> &lt;stdlib.h&gt;<br> </font><font size="2" color="#0000ff"> #include</font><font size="2"> &lt;string.h&gt;<br> &nbsp;<br> </font><font size="2" color="#0000ff"> int</font><font size="2"> main( </font><font size="2" color="#0000ff">int</font><font size="2"> argc, </font><font size="2" color="#0000ff">char</font><font size="2"> *argv[] )<br> {<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">int</font><font size="2"> errs = 0;<br> &nbsp;&nbsp;&nbsp; MPI_Info info1, infodup;<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">int</font><font size="2"> nkeys, nkeysdup, i, vallen, flag, flagdup;<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">char</font><font size="2"> key[MPI_MAX_INFO_KEY], keydup[MPI_MAX_INFO_KEY];<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">char</font><font size="2"> value[MPI_MAX_INFO_VAL], valdup[MPI_MAX_INFO_VAL];<br> &nbsp;<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Init.html">MPI_Init</a>( &amp;argc, &amp;argv );<br> &nbsp;<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_create.html">MPI_Info_create</a>( &amp;info1 );<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_set.html">MPI_Info_set</a>( info1, "host", "myhost.myorg.org" );<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_set.html">MPI_Info_set</a>( info1, "file", "runfile.txt" );<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_set.html">MPI_Info_set</a>( info1, "soft", "2:1000:4,3:1000:7" );<br> &nbsp;<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_dup.html">MPI_Info_dup</a>( info1, &amp;infodup );<br> &nbsp;<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_get_nkeys.html">MPI_Info_get_nkeys</a>( infodup, &amp;nkeysdup );<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_get_nkeys.html">MPI_Info_get_nkeys</a>( info1, &amp;nkeys );<br> </font><font size="2" color="#0000ff">&nbsp;&nbsp;&nbsp; if</font><font size="2"> (nkeys != nkeysdup) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; errs++;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "Dup'ed info has a different number of keys; is %d should be %d\n", nkeysdup, nkeys );fflush(stdout);<br> &nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; vallen = MPI_MAX_INFO_VAL;<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">for</font><font size="2"> (i=0; i&lt;nkeys; i++) {<br> </font><font size="2" color="#008000">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /* MPI requires that the keys are in the same order after the dup */<br> </font><font size="2"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="MPI_Info_get_nthkey.html">MPI_Info_get_nthkey</a>( info1, i, key );<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="MPI_Info_get_nthkey.html">MPI_Info_get_nthkey</a>( infodup, i, keydup );<br> </font><font size="2" color="#0000ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if</font><font size="2"> (strcmp(key, keydup)) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; errs++;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "keys do not match: %s should be %s\n", keydup, key );fflush(stdout);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vallen = MPI_MAX_INFO_VAL;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="MPI_Info_get.html">MPI_Info_get</a>( info1, key, vallen, value, &amp;flag );<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="MPI_Info_get.html">MPI_Info_get</a>( infodup, keydup, vallen, valdup, &amp;flagdup );<br> </font><font size="2" color="#0000ff">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if</font><font size="2"> (!flag || !flagdup) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; errs++;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "Info get failed for key %s\n", key );fflush(stdout);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">else</font><font size="2"> </font> <font size="2" color="#0000ff">if</font><font size="2"> (strcmp( value, valdup )) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; errs++;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "Info values for key %s not the same after dup\n", key );fflush(stdout);<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br> &nbsp;&nbsp;&nbsp; }<br> &nbsp;<br> </font><font size="2" color="#008000">&nbsp;&nbsp;&nbsp; /* Change info and check that infodup does NOT have the new value (ensure that lazy dups are still duped) */<br> </font><font size="2"> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_set.html">MPI_Info_set</a>( info1, "path", "/a:/b:/c/d" );<br> &nbsp;<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_get.html">MPI_Info_get</a>( infodup, "path", vallen, value, &amp;flag );<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">if</font><font size="2"> (flag) {<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; errs++;<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf( "inserting path into info changed infodup\n" );fflush(stdout);<br> &nbsp;&nbsp;&nbsp; }<br> <br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_free.html">MPI_Info_free</a>( &amp;info1 );<br> &nbsp;&nbsp;&nbsp; <a href="MPI_Info_free.html">MPI_Info_free</a>( &amp;infodup );<br> <br> &nbsp;&nbsp;&nbsp; <a href="MPI_Finalize.html">MPI_Finalize</a>();<br> &nbsp;&nbsp;&nbsp; </font><font size="2" color="#0000ff">return</font><font size="2"> errs;<br> }<br> </font> </div> </div> <div class="text_box_bottom"> </div> </div> <div class="note_text_box"> <div class="note_text_box_top"></div> <div class="note_text_box_middle"> </div> <div class="note_text_box_bottom"></div> </div> <div class="ad_under_text_box"> <div class="ad_under_text_box_top"></div> <div class="ad_under_text_box_middle"> <div class="ad_under_text_box_middle_text"> <script type="text/javascript"><!-- google_ad_client = "pub-0347391630140593"; /* Right panel wide skyscraper ad */ google_ad_slot = "3437924454"; google_ad_width = 160; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script><ins style="display:inline-table;border:none;height:600px;margin:0;padding:0;position:relative;visibility:visible;width:160px;background-color:transparent"><ins id="aswift_0_anchor" style="display:block;border:none;height:600px;margin:0;padding:0;position:relative;visibility:visible;width:160px;background-color:transparent"><iframe width="160" height="600" frameborder="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" allowtransparency="true" scrolling="no" onload="var i=this.id,s=window.google_iframe_oncopy,H=s&amp;&amp;s.handlers,h=H&amp;&amp;H[i],w=this.contentWindow,d;try{d=w.document}catch(e){}if(h&amp;&amp;d&amp;&amp;(!d.body||!d.body.firstChild)){if(h.call){setTimeout(h,0)}else if(h.match){try{h=s.upd(h,i)}catch(e){}w.location.replace(h)}}" id="aswift_0" name="aswift_0" style="left:0;position:absolute;top:0;"></iframe></ins></ins> </div> </div> <div class="ad_under_text_box_bottom"></div> </div> </div> </div> <div class="tab_box_bottom"> </div> </div> <div class="copyright"> </div> </div> </body></html>
share.html
longday1994/longday1994.github.io
<!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"> <html> <link href="default.css" rel="stylesheet" type="text/css" media="screen" /> <link href="miaov_style.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="miaov1.js" ></script> <head> <meta charset="UTF-8"> <title>longday's share</title> </head> <body> <!-- start header --> <div id="header"> <div id="logo"> <h1>梁磊的博客</h1> <div id="clock" class="date" > <div class="year"> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img src="images/year.png" alt="year"/> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img src="images/month.png" alt="month"/> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img src="images/seven.png" alt="seven"/> </div> <div class="time"> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img src="images/sign.png" alt="sign"/> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> <img src="images/sign.png" alt="sign"/> <img class="num" src="images/0.png" alt="0" /> <img class="num" src="images/0.png" alt="0" /> </div> </div> </div> <div id="menu-bg"> <div id="menu"> <ul id="main"> <li class="current_page_item"><a href="">分享</a></li> </ul> </div> </div> </div> <!-- end header --> <div id="page"> <center><h2 class="title">北极以南</h2></center> <audio src= "李志 - 你离开了南京,从此没有人和我说话.mp3" controls="controls" loop="loop" hidden="hidden" autoplay="autoplay"> 您的浏览器不支持播放! </audio> <textarea name="text" cols="128" rows="30" readonly="readonly" autofocus="autofocus" > 我翻了个身,揉了揉惺忪的睡眼从窗口望出去,无尽的黑夜中弥望的依旧只有漫天的星光。 十一月,极夜的结束仍遥遥无期。不知从何时开始,我习惯在这段漫长而寂寥的时间里沉睡,尽管北极熊并没有冬眠的习惯,但对我而言,睡眠是逃离孤独的最好方式,毕竟等待终归是一个漫长的过程,它可能会消磨掉你的希望,然而当你闭上眼睛的时候,无论是梦境还是想象,那些画面总会泛着些许光亮。 我起身数了数剩下的鱼,应该是吃不过两天了,于是我很不情愿地从我温暖的冰屋里钻出来,一头扎进了寒冷的夜中,琢磨着是时候去储备点粮食了。 今天没有风雪,总体说来是个适合出来觅食的天气,我缓缓地踱着,环顾着四周被星光映得晶莹透亮的雪地,脚步无端变得轻盈起来。似乎已经很久没有这般轻松的感觉了,自从她走了之后,我把自己藏在这样一个与世隔绝的地方,没有和任何人说过一句话,我时常会自言自语,甚至故意从鼻子里弄出点声音来,以证明自己的存在。 走到一个岸边,我敲击着地面,选了一个冰薄的地方,小心翼翼地在那儿挖了一个洞,然后把爪子伸到水中搅动了几下,希望能引来鱼群。我一向都是这么捕猎的,其他北极熊或许会直接跳入水中去抓鱼,而我则习惯于守株待兔,撑着下巴望着洞口像是个哲学家一般,虽然可能有些花时间,但时间对我来说并不值钱,作为一只没有理想也没有追求的北极熊,我有很多很多的时间用来挥霍。 等了大概有四五个小时,我已然有些昏昏欲睡,可是正当我歪着脑袋流着口水就快要意识模糊时,水面忽然有了一些波澜,我听到声音连忙打起了精神,直起身子眼巴巴地盯着洞口,准备来个突然袭击。说时迟那时快,见水面下似乎有一团黑影闪过,我一伸爪子就把它从水里给抓了出来。 “啊……”我手里的不明物体猛地发出一声凄厉的惨叫,着实把我给吓得不轻,于是我手一滑又把它给丢了出去。 只见那团圆鼓鼓的东西骨碌碌地滚出老远,在原地打了几个转才停了下来。 我张大嘴巴愣了半晌,好不容易才回过神来,借着微弱的光亮定睛一看,那坨东西竟然是一只企鹅。 “企企企……企鹅?”我被怔得说不出话来。 “是,怎么了?”她爬起来拍了拍身上的雪,忿忿地瞪了我一眼,听声音似乎还是个姑娘。 “没没……不好意思,有些吃惊而已。” “吃你妈个鬼,你没把我吓死就不错了。” “真对不起,我刚才在捕鱼来着……” “捕鱼?企鹅是鱼么?你知道‘鹅’字怎么写吗,左边一个‘我’又边一个‘鸟’,姐姐我是只鸟啊熊孩子!” “是是是……错伤无辜,请您见谅。”我连忙点头哈腰给她赔不是。 “哦,没事。”她斜着眼上下打量了我一番,问我道,“北极熊?” “是。” “哎妈呀,第一次见到活的了,真有趣,不亏是北方汉子哈,个子这么高。”她看着我笑得很开心。 我心里嘟哝着,你大爷的,我在北极见到企鹅都还没说啥,你丫在北极见到只北极熊有啥可笑的。 2、 她叫米娜,来自南极,地球的最南方。 我和她坐在雪地上聊了很久,她告诉我她从遥远的南方来到这里,只为了心中简单的一个梦想。 “你知道吗,大熊,从小我就想知道,地球的最北方是个什么样子,然后我想在北方看一次日出。” “噢,那你可来错时候了,现在这里是极夜,下次出太阳怎么也得三个月以后了。” “好吧,那怎么办?” “要么等,要么回去呗。” “现在回不去。” “为啥啊,你怎么来的就怎么回去呗。” “我顺着洋流漂来的,这个季节只适合北漂。” 我觉得这种说法冲击了我的价值观,便掏出爪子在地上画了画,试图找出这里面的科学依据。 “好吧,那你只能住我那儿了。”我把地上乱七八糟的箭头擦掉,缓缓对她说道。 “住你那儿?我跟你很熟吗?你不会把我吃掉吗?” “姑娘,你这么瘦,还不够塞牙缝呢……”话没说完,我的肚子便很合时宜地“咕咕”叫了两声。 尴尬地沉默了几秒后,我干咳了两声对她说道:“不如这样吧,为了你的安全着想,顺便作为住在我那里的报酬,你帮我抓鱼吧,只要我有得吃,肯定也不会吃你对不对,你又有个可以安身的地方,多好啊。” 她沉思了片刻,觉得有些为难,但似乎也没想出什么更好的解决方案来,因此最后还是同意了我的建议。于是她一头扎进了洞里,不一会儿就丢上来一条条活蹦乱跳的鱼儿,我在洞口接得不亦乐乎。 就这样忙活了几个钟头,我找了块浮冰把收获的战利品堆在上面拖回了住处。路上米娜趴在我的背上睡着了,看她睡得那么香,回想起刚才她努力抓鱼的样子,我无端有些于心不忍,毕竟她历经了这么远的长途旅行,还要被我这只废柴熊雇作廉价劳动力,肯定是累坏了。 然而对此我却又感到深深的不解,她这么千里迢迢地来到北方,仅仅只是为了看一次日出吗,这听起来是病,得治啊。 到家后,她醒来从我的背上翻身下来,钻进门看了看我的冰屋,忍不住摇了摇头:“你就住在这小破屋子里?” “条件有限,别计较那么多,而且我一直都是一个人住,要那么大房子有什么用。” “你没有女朋友吗?” “有过,死了。” “噢。”她忽然就不说话了,然后过来想拍拍我的肩膀表示安慰,但是因为够不着,只好戳了一下我的屁股。 “没事啦,很久之前的事情了,就不要再提了,你过来躺躺看舒不舒服。”我钻进屋子里示意她过来。 然后她就四仰八叉地躺在了屋子的正中间。 “亲,注意素质啊,你这样躺让我躺哪儿。”我尖着嗓子喊道。 于是她一脸不情愿地一路滚到了墙角。 我躺下后,往窗边挪了挪,对她做了个手势,示意她可以往我这边躺一点。 然后她又往回滚了两圈。 “感觉怎么样?”沉默了一会儿,我问她道。 “还行,虽然有点拥挤,但是还好你庞大的身躯挡住了风,挺暖和的。” “嗯,那就好。” “只是我担心一件事情,睡觉时你会翻身吗?” “我尽量不。” “可别‘尽量’,你‘尽量不翻’,我也只能‘尽量不死’,麻烦你体会一下。” “好好好,绝对不翻。” 说完这句话,我立刻就陷入了沉沉的睡眠中。我做了一个很长很长的梦,又是那个似曾相识的梦境,梦里我看到了她的脸,闻到了她的气息,听到了她的呼唤,交织着冰川碎裂的声响,大地颤抖的回音,我伸手想要抓住她,却怎么也抓不到,只能看她坠跌入黑暗的深渊之中。 猛然醒来后米娜已经不在了,我从窗口望出去,她正一个人坐在雪地上望着天空若有所思的模样。 “你醒啦,睡得好吗?”她看我钻出门来,问我道。 “刚才做噩梦了。” “又梦到她了是吗?” “嗯,习惯了,这些年总是会做相同的梦。” “她是怎么……”她很小心地问我道。 “意外吧,在这地方很常见,出去觅食的时候,冰川有时候会碎裂,她就这样掉下去了,一瞬间的事情,我甚至没有来得及救她。” “所以你就一个人跑到这样一个荒凉的地方来了?” “嗯,想把自己隔离起来,过一段安安静静的日子。” 她叹了口气,然后又戳了我的屁股一下。 “你不必总用这种方式来安慰我,真的。”我把她抱起来放在肩膀上笑道。 她也会心一笑,然后拍了拍我的后脑勺。 3、 和米娜一起的日子,过得简单却很开心。 我们每天做得最多的事情,就是在一起睡觉,因为在寒冷的极夜,睡觉可以很好地减少能量的消耗,这样我们就不必经常出去捉鱼。 自从有了米娜,我睡觉老实多了,再也不敢随便翻身了,但她却似乎却很不老实,时常睡着睡着就趴到了我的肚子上,或者钻到我的胳肢窝下面,而看到她睡觉时候的样子,我有时候也忍不住把她搂在怀里。她像所有南方的姑娘那样,有着娇小柔弱的身子,让人忍不住有想要保护的欲望。 睡醒的时候,我们时常会躺着聊一会儿天,然后起来一起吃鱼。天气好的时候,我们会在开阔的雪地上散散步,看着漫天的星光,聊着不同世界里的那些故事。如果运气好,有时还能看见极光,而每当这个时候,米娜总会表现得特别兴奋,在雪地上又跳又叫。 “我说米娜,南极的极光和北极有什么不同吗?” “没什么区别,除了发音上的,我们说‘极光’不卷舌头。” “那你在兴奋个什么劲儿?” “在不同的地方看见相同的事物,也会有不同的心情,这正是旅行的意义,也是我想要来北极的原因。” “唉,女文青的世界我不懂,我是觉得你要是现在在南极,那里一定很温暖,也总能看见阳光。说真的,我不太能理解你为什么放弃光明而选择来黑暗中等待。我总是很害怕极夜,这种无尽的黑暗让我感到孤独与绝望,等待光明是个痛苦的过程,有时候我甚至怀疑太阳究竟还会不会照常升起。” “但是你没有一次是在白白等待不是吗,有期待的日子终归是好的。” “我不知道,或许自从她走了之后,我就更加害怕这种等待了。” “大熊,你真的不必用过去的事情来惩罚自己的,你应该学学我,出去看看外面的世界,你抱着你那些过去还能得到些什么呢?” “我就是心里很沉重。” “那就先试着让自己轻盈起来,过来,让我们一起在极光下翩翩起舞吧。”她跳到了前面的一片空地上,冲我招了招手。 “神经病啊,一只北极熊和一只企鹅在雪地上跳舞,听起来就像个冷笑话。” “谁看到了啊,这周围连只骆驼都没有。” 我拗不过她,只好和她一起在雪地上跳起了舞。作为一只熊,我跳舞从来都是很豪放的,这对我来说更像是一种释放自己压力的方式,而她跳舞的样子却很美,像是为了诉说一个故事。那是我从来没有见过的舞步,她的小脚印在雪地上留下了一幅画,舒缓的线条勾勒出了属于另一个世界的风景。 也就是在这样一个时刻,我忽然觉得自己有些喜欢眼前这个小个子的南极姑娘,她轻盈欢快,却又像风那样捉摸不定,她总是无忧无虑,身上带着一股北极所没有的芬芳。 我想这大概就是所谓的南国气息吧,时常听见有人唱起那里的歌,说起那里的故事,但对我而言那里却一直是个神秘而遥远的地方。 然而此刻,虽然我从未到过那儿,却能够感受到属于那里的所有温柔。 4、 米娜是个很健谈的姑娘,她不在吃和睡的时候,嘴巴总是一刻也闲不住。 她时常会嘲笑我的口音,和我探讨南极和北极之间有什么差别,还总抱怨北极的鱼味道竟然是咸的,这是她这个南极甜鱼党所无法接受的。 我虽然有时候觉得她一直唧唧歪歪也挺烦的,但无论如何,总比我之前那些只能和自己说话的日子要来得要舒服多了。毕竟熊也是需要交流的动物,我不得不说米娜的新鲜气息确实缓解我很久以来的抑郁和苦闷,让我感到其实生活并没有想象中那么糟糕。 这天外面刮起了暴风雪,我挖了点冰块把门堵得严严实实的,于是屋子里顿时陷入了完全的黑暗中。 我摸索着找了个靠墙的地方坐下来,然后把米娜放在自己的腿上。 “你以前遇到暴风雪的时候都是怎么过的?一个人呆在小黑屋里大概会很害怕吧。”米娜问我道。 “习惯了就还好,就是闷得慌,你们在南极遇到暴风雪怎么过的?” “我们会在屋子里抱成一团取暖呀,然后大家一人说一个故事,暴风雪差不多就结束了。” “噢。”我努力想象了一下那个画面,陷入了沉思。 “你们北极熊不这么做吗?” “其实北极熊生来就不是喜欢群居的动物,我们虽然内心渴望沟通,但是彼此却只是在雪地上擦身而过,忙碌于各自的生活中。” “为什么呢?” “或许我们彼此并未达到如此强烈的地步吧,我们每个个体都有能力狩猎,也有足够的脂肪让自己保持温暖,因此我们不像你们企鹅会成天凑在一起,更多时候都只是为了各自的生存奔波而已。” “所以听起来北极熊真是矫情的动物呢。” “少来啦,你根本不懂作为一只北极熊的脆弱……不过我的确挺羡慕你们的那种生活。” “但其实作为企鹅,我们也有自己的苦恼呀,群居生活虽然听起来热闹又有趣,但是成天和一群跟你长得一模一样的东西呆在一起,做着一样的事情,难免也会找不到自己的存在呀。” “怎么说?” “你想啊,为了合群,大家在吃饭的时候你也得吃饭,大家在睡觉的时候你也得睡觉,即使是游泳这么自由的事情,我们都要排着队一个个往水里跳,我觉得这实在是太愚蠢了。” “所以这也是你独自出来旅行的理由?” “是的呢,可以逃离那种生活,去做真正自己想要做的事情。” “哈哈哈,我觉得我们俩都挺矛盾的嘛,不是吗。” “生活嘛,就是一个不断逃离,最后发现自己回到原点的过程,有句话怎么说来着,旅行就是一群人去到另一群人活腻了的地方体验生活。” 我们俩就这么在黑暗中讨论着彼此的生活,不知不觉外面的风雪声越来越小了。 我把米娜放在身边,到门口挪开了一点冰块往外瞅了瞅,感觉暴风雪似乎就快要过去了。 “米娜,过一会儿就能出门了,第一次感觉时间过得这么快。” “是呀,我觉得我们俩这种相处方式就挺好的,既不过分亲密,又不疏离。” “你说北极熊和企鹅能在一起吗?”我笑着调侃道。 “可以,不过会是个很冷很冷的爱情故事。” 米娜在黑暗中调皮地戳了我的屁股一下。 5、 不知不觉三个月过去了,米娜开始每天趴在窗口张望,等待漫漫极夜后的日出。 而我却感到一股深深的失落,因为我知道,当太阳出来以后,米娜就要离开了,回到她久违的故乡。 这是这些年来我第一次如此不情愿看到日出,因为一个来自南极的姑娘,一个甚至还没有我脑袋大的姑娘。 但我却没有告诉米娜我的心事,毕竟我不能挽留她,我也不可能跟她一起随着洋流漂到南极去,如果我再轻一点的话,或许理论上是可以,但是我毕竟是一只北极熊,一旦到了南极就会变成一个无解的笑话。 某一天,我忽然从睡梦中被叫醒,米娜兴奋地拉着我到外面,说太阳马上就要从地平线上升起来了。 我陪着她在雪地里坐了不知几个小时,太阳才终于羞涩地从地平线上露出了一角,但是没过多久,它又缓缓地落下去了。 这一幕虽然短暂,米娜却显得非常开心,她对我说道:“大熊,极夜结束啦,从今天开始,日出的时间会越来越长,你漫长的黑夜结束了。” “嗯。”我冲她别扭地笑了笑。 “怎么啦大熊,你应该开心才对,你等待的东西不是终于来了吗。” “是啊,但是你要走了呢。” 米娜忽然就不说话了,她低着头想了一下,然后抬头望了望我。 “大熊,你再抱着我睡一次好不好?等下一次天亮我再走。” 于是我和她回到了屋里,最后一次把她拥入怀里。她很快就睡着了,然而我却一直清醒着,就这么看着她,看着她,一直到天亮。 第二天送她到岸边的时候,我一时想不到什么要说的,既不知道该怎么告别,也不知道怎么感谢她这些日子的陪伴。 “大熊,我该走了。”米娜戳了我的屁股一下道。 “嗯,米娜,赛由娜拉。” “别整鸟语,听不懂。” “这几个月,谢谢你了。” “你不必谢我,我觉得你应该离开这里。” “离开这里?去哪里?” “去南方。” “南极?” “你不必去那么远的地方,你只要再往南走走就好了,你既然害怕极夜,越往南的地方,极夜就越短不是吗。你是时候和这里说再见了,这里太沉重太荒凉了,而且你又喜欢用意念来抓鱼,我觉得你早晚会饿死的。” “好吧,我会的,那我们……还会再见面吗?” “如果你愿意一直往南走,我会在世界的最南方等你的。” “但我如何知道哪里才是南方?” “既然你已经在世界的最北方,那么无论未来你朝哪个方向走,都注定是南方。” </textarea> </div> </body> </html>
texi2html/test/singular_manual/res/singular/Index.html
cgwalters/texinfo-git-mirror
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- Created by texi2html, http://www.gnu.org/software/texinfo/ --> <head> <title>Singular 2-0-4 Manual: F Index</title> <meta name="description" content="Singular 2-0-4 Manual: F Index"> <meta name="keywords" content="Singular 2-0-4 Manual: F Index"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="texi2html"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.smallquotation {font-size: smaller} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.lisp {margin-left: 3.2em} div.smalldisplay {margin-left: 3.2em} div.smallexample {margin-left: 3.2em} div.smalllisp {margin-left: 3.2em} pre.display {font-family: serif} pre.format {font-family: serif} pre.menu-comment {font-family: serif} pre.menu-preformatted {font-family: serif} pre.smalldisplay {font-family: serif; font-size: smaller} pre.smallexample {font-size: smaller} pre.smallformat {font-family: serif; font-size: smaller} pre.smalllisp {font-size: smaller} span.nocodebreak {white-space:pre} span.nolinebreak {white-space:pre} span.roman {font-family:serif; font-weight:normal} span.sansserif {font-family:sans-serif; font-weight:normal} ul.no-bullet {list-style: none} --> </style> </head> <body lang="en" background="../singular_images/Mybg.png"> <a name="Index"></a> <table border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> <td align="left"> <table class="header" cellpadding="1" cellspacing="1" border="0"> <tr valign="top" align="left"> <td valign="middle" align="left"> <a href="index.htm"><img src="../singular_images/singular-icon-transparent.png" width="50" border="0" alt="Top"></a> </td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="Macintosh-installation-instructions.html#Macintosh-installation-instructions" title="Previous section in reading order"><img src="../singular_images/a_left.png" border="0" alt="Back: E.5 Macintosh installation instructions" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="sing_1.htm#index_split-0" title="Next section in reading order"><img src="../singular_images/a_right.png" border="0" alt="Forward: F Index: B &ndash; C" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="Release-Notes.html#Release-Notes" title="Beginning of this chapter or previous chapter"><img src="../singular_images/a_leftdouble.png" border="0" alt="FastBack: E Release Notes" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><img src="../singular_images/a_rightdouble_na.png" border="0" alt="FastForward: F Index" align="middle"></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><img src="../singular_images/a_up_na.png" border="0" alt="Up: E Release Notes" align="middle"></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="index.htm#Preface" title="Cover (top) of document"><img src="../singular_images/a_top.png" border="0" alt="Top: 1 Preface" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="sing_toc.htm#SEC_Contents" title="Table of contents"><img src="../singular_images/a_tableofcon.png" border="0" alt="Contents: Table of Contents" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="#Index" title="Index"><img src="../singular_images/a_index.png" border="0" alt="Index: F Index" align="middle"></a></td> </tr> <tr valign="top" align="left"> <td valign="middle" align="left"><a href="sing_abt.htm#SEC_About" title="About (help)"><img src="../singular_images/a_help.png" border="0" alt="About: About This Document" align="middle"></a></td> </tr> </table> </td> <td align="left"> <a name="Index-1"></a> <h1 class="chapter">F Index</h1> <a name="index-Index"></a> <table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Index-1_cp_symbol-1"><b>!</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-2"><b>&quot;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-3"><b>#</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-4"><b>$</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-5"><b>%</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-6"><b>&amp;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-7"><b>(</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-8"><b>)</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-9"><b>*</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-10"><b>+</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-11"><b>-</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-12"><b>.</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-13"><b>/</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-14"><b>;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-15"><b>&lt;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-16"><b>=</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-17"><b>&gt;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-18"><b>?</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-19"><b>[</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-20"><b>\</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-21"><b>]</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-22"><b>^</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-23"><b>_</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-24"><b>`</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-25"><b>|</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-26"><b>~</b></a> &nbsp; <br> <a class="summary-letter" href="#Index-1_cp_letter-A"><b>A</b></a> &nbsp; <a class="summary-letter" href="sing_1.htm#index_split-0_cp_letter-B"><b>B</b></a> &nbsp; <a class="summary-letter" href="sing_1.htm#index_split-0_cp_letter-C"><b>C</b></a> &nbsp; <a class="summary-letter" href="sing_2.htm#index_split-1_cp_letter-D"><b>D</b></a> &nbsp; <a class="summary-letter" href="sing_2.htm#index_split-1_cp_letter-E"><b>E</b></a> &nbsp; <a class="summary-letter" href="sing_3.htm#index_split-2_cp_letter-F"><b>F</b></a> &nbsp; <a class="summary-letter" href="sing_3.htm#index_split-2_cp_letter-G"><b>G</b></a> &nbsp; <a class="summary-letter" href="sing_4.htm#index_split-3_cp_letter-H"><b>H</b></a> &nbsp; <a class="summary-letter" href="sing_4.htm#index_split-3_cp_letter-I"><b>I</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-J"><b>J</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-K"><b>K</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-L"><b>L</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-M"><b>M</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-N"><b>N</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-O"><b>O</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-P"><b>P</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-Q"><b>Q</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-R"><b>R</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-S"><b>S</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-T"><b>T</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-U"><b>U</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-V"><b>V</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-W"><b>W</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-X"><b>X</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-Z"><b>Z</b></a> &nbsp; </td></tr></table> <table class="index-cp" border="0"> <tr><td></td><th align="left">Index Entry</th><td>&nbsp;</td><th align="left"> Section</th></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-1">!</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0021">!</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0021_003d">!=</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-expressions.html#index-_0021_003d-1">!=</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-expressions.html#boolean-expressions">4.3.5 boolean expressions</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-2">&quot;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0022">&quot;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-3">#</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0023">#</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-4">$</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0024">$</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-5">%</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0025">%</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-6">&amp;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0026_0026">&amp;&amp;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-operations.html#index-_0026_0026-1">&amp;&amp;</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-operations.html#boolean-operations">4.3.6 boolean operations</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-7">(</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0028">(</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-8">)</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0029">)</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-9">*</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002a">*</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002a_002a">**</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-10">+</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002b">+</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-11">-</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002d">-</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dallow_002dnet">&ndash;allow-net</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002db">-b</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dbatch">&ndash;batch</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dbrowser">&ndash;browser</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dc">-c</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dd">-d</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002de">-e</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002decho">&ndash;echo</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002demacs">&ndash;emacs</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002demacs_002ddir">&ndash;emacs-dir</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002demacs_002dload">&ndash;emacs-load</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dexecute">&ndash;execute</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dh">-h</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dhelp">&ndash;help</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dmin_002dtime">&ndash;min-time</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dMPhost">&ndash;MPhost</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dMPport">&ndash;MPport</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dno_002dout">&ndash;no-out</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dno_002drc">&ndash;no-rc</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dno_002dstdlib">&ndash;no-stdlib</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dno_002dtty">&ndash;no-tty</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dno_002dwarn">&ndash;no-warn</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dq">-q</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dquiet">&ndash;quiet</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dr">-r</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002drandom">&ndash;random</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dsdb">&ndash;sdb</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dsingular">&ndash;singular</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dticks_002dper_002dsec">&ndash;ticks-per-sec</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002du">-u</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002duser_002doption">&ndash;user-option</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002dv">-v</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002d_002dverbose">&ndash;verbose</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-12">.</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002e_002e">..</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Startup-sequence.html#index-_002esingularrc-file">.singularrc file</a></td><td>&nbsp;</td><td valign="top"><a href="Startup-sequence.html#Startup-sequence">3.1.7 Startup sequence</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-_002esingularrc-file_002c-no-loading">.singularrc file, no loading</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-13">/</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002f">/</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002f_002f">//</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002f_002f-1">//</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_002f_002f-2">//</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-14">;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003b">;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-15">&lt;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003c">&lt;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="filecmd.html#index-_003c-1">&lt;</a></td><td>&nbsp;</td><td valign="top"><a href="filecmd.html#filecmd">5.1.34 files, input from</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003c_003d">&lt;=</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-expressions.html#index-_003c_003d-1">&lt;=</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-expressions.html#boolean-expressions">4.3.5 boolean expressions</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003c_003e">&lt;&gt;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-expressions.html#index-_003c_003e-1">&lt;&gt;</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-expressions.html#boolean-expressions">4.3.5 boolean expressions</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-16">=</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003d">=</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003d_003d">==</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-expressions.html#index-_003d_003d-1">==</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-expressions.html#boolean-expressions">4.3.5 boolean expressions</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-17">&gt;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003e">&gt;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003e_003d">&gt;=</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-expressions.html#index-_003e_003d-1">&gt;=</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-expressions.html#boolean-expressions">4.3.5 boolean expressions</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-18">?</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_003f">?</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="help.html#index-_003f-1">?</a></td><td>&nbsp;</td><td valign="top"><a href="help.html#help">5.1.43 help</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-19">[</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_005b">[</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-20">\</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_005c">\</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-21">]</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_005d">]</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-22">^</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_005e">^</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-23">_</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_005f">_</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-24">&lsquo;</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_0060">&lsquo;</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-25">|</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_007c_007c">||</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-operations.html#index-_007c_007c-1">||</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-operations.html#boolean-operations">4.3.6 boolean operations</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_symbol-26">~</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Special-characters.html#index-_007e">~</a></td><td>&nbsp;</td><td valign="top"><a href="Special-characters.html#Special-characters">3.5.2 Special characters</a></td></tr> <tr><td></td><td valign="top"><a href="_007e.html#index-_007e-1">~</a></td><td>&nbsp;</td><td valign="top"><a href="_007e.html#g_t_007e">5.2.12 ~ (break point)</a></td></tr> <tr><td colspan="4"> <hr></td></tr> <tr><th><a name="Index-1_cp_letter-A">A</a></th><td></td><td></td></tr> <tr><td></td><td valign="top"><a href="Extra-weight-vector.html#index-a_002c-ordering">a, ordering</a></td><td>&nbsp;</td><td valign="top"><a href="Extra-weight-vector.html#Extra-weight-vector">B.2.8 Extra weight vector</a></td></tr> <tr><td></td><td valign="top"><a href="absValue.html#index-absValue">absValue</a></td><td>&nbsp;</td><td valign="top"><a href="absValue.html#absValue">D.2.2.3 absValue</a></td></tr> <tr><td></td><td valign="top"><a href="actionIsProper.html#index-actionIsProper">actionIsProper</a></td><td>&nbsp;</td><td valign="top"><a href="actionIsProper.html#actionIsProper">D.6.2.3 actionIsProper</a></td></tr> <tr><td></td><td valign="top"><a href="addcol.html#index-addcol">addcol</a></td><td>&nbsp;</td><td valign="top"><a href="addcol.html#addcol">D.3.1.17 addcol</a></td></tr> <tr><td></td><td valign="top"><a href="addrow.html#index-addrow">addrow</a></td><td>&nbsp;</td><td valign="top"><a href="addrow.html#addrow">D.3.1.18 addrow</a></td></tr> <tr><td></td><td valign="top"><a href="adjoint.html#index-adjoint">adjoint</a></td><td>&nbsp;</td><td valign="top"><a href="adjoint.html#adjoint">D.3.2.9 adjoint</a></td></tr> <tr><td></td><td valign="top"><a href="Adj_005fdiv.html#index-adjunction-divisor">adjunction divisor</a></td><td>&nbsp;</td><td valign="top"><a href="Adj_005fdiv.html#Adj_005fdiv">D.9.1.1 Adj_div</a></td></tr> <tr><td></td><td valign="top"><a href="Adj_005fdiv.html#index-Adj_005fdiv">Adj_div</a></td><td>&nbsp;</td><td valign="top"><a href="Adj_005fdiv.html#Adj_005fdiv">D.9.1.1 Adj_div</a></td></tr> <tr><td></td><td valign="top"><a href="AGcode_005fL.html#index-AGcode_005fL">AGcode_L</a></td><td>&nbsp;</td><td valign="top"><a href="AGcode_005fL.html#AGcode_005fL">D.9.1.6 AGcode_L</a></td></tr> <tr><td></td><td valign="top"><a href="AGcode_005fOmega.html#index-AGcode_005fOmega">AGcode_Omega</a></td><td>&nbsp;</td><td valign="top"><a href="AGcode_005fOmega.html#AGcode_005fOmega">D.9.1.7 AGcode_Omega</a></td></tr> <tr><td></td><td valign="top"><a href="ainvar_005flib.html#index-ainvar_002elib">ainvar.lib</a></td><td>&nbsp;</td><td valign="top"><a href="ainvar_005flib.html#ainvar_005flib">D.6.2 ainvar_lib</a></td></tr> <tr><td></td><td valign="top"><a href="ainvar_005flib.html#index-ainvar_005flib">ainvar_lib</a></td><td>&nbsp;</td><td valign="top"><a href="ainvar_005flib.html#ainvar_005flib">D.6.2 ainvar_lib</a></td></tr> <tr><td></td><td valign="top"><a href="algDependent.html#index-algDependent">algDependent</a></td><td>&nbsp;</td><td valign="top"><a href="algDependent.html#algDependent">D.4.1.4 algDependent</a></td></tr> <tr><td></td><td valign="top"><a href="algebra_005flib.html#index-algebra_002elib">algebra.lib</a></td><td>&nbsp;</td><td valign="top"><a href="algebra_005flib.html#algebra_005flib">D.4.1 algebra_lib</a></td></tr> <tr><td></td><td valign="top"><a href="Algebraic-dependence.html#index-Algebraic-dependence">Algebraic dependence</a></td><td>&nbsp;</td><td valign="top"><a href="Algebraic-dependence.html#Algebraic-dependence">A.25 Algebraic dependence</a></td></tr> <tr><td></td><td valign="top"><a href="splitring.html#index-algebraic-field-extension">algebraic field extension</a></td><td>&nbsp;</td><td valign="top"><a href="splitring.html#splitring">D.4.8.3 splitring</a></td></tr> <tr><td></td><td valign="top"><a href="brnoeth_005flib.html#index-Algebraic-Geometry-codes">Algebraic Geometry codes</a></td><td>&nbsp;</td><td valign="top"><a href="brnoeth_005flib.html#brnoeth_005flib">D.9.1 brnoeth_lib</a></td></tr> <tr><td></td><td valign="top"><a href="algebra_005fcontainment.html#index-algebra_005fcontainment">algebra_containment</a></td><td>&nbsp;</td><td valign="top"><a href="algebra_005fcontainment.html#algebra_005fcontainment">D.4.1.1 algebra_containment</a></td></tr> <tr><td></td><td valign="top"><a href="algebra_005flib.html#index-algebra_005flib">algebra_lib</a></td><td>&nbsp;</td><td valign="top"><a href="algebra_005flib.html#algebra_005flib">D.4.1 algebra_lib</a></td></tr> <tr><td></td><td valign="top"><a href="Bigatti-and-La-Scala-and-Robbiano.html#index-algorithm-of-Bigatti_002c-La-Scala-and-Robbiano">algorithm of Bigatti, La Scala and Robbiano</a></td><td>&nbsp;</td><td valign="top"><a href="Bigatti-and-La-Scala-and-Robbiano.html#Bigatti-and-La-Scala-and-Robbiano">C.6.2.5 The algorithm of Bigatti, La Scala and Robbiano</a></td></tr> <tr><td></td><td valign="top"><a href="Conti-and-Traverso.html#index-algorithm-of-Conti-and-Traverso">algorithm of Conti and Traverso</a></td><td>&nbsp;</td><td valign="top"><a href="Conti-and-Traverso.html#Conti-and-Traverso">C.6.2.1 The algorithm of Conti and Traverso</a></td></tr> <tr><td></td><td valign="top"><a href="Di-Biase-and-Urbanke.html#index-algorithm-of-Di-Biase-and-Urbanke">algorithm of Di Biase and Urbanke</a></td><td>&nbsp;</td><td valign="top"><a href="Di-Biase-and-Urbanke.html#Di-Biase-and-Urbanke">C.6.2.4 The algorithm of Di Biase and Urbanke</a></td></tr> <tr><td></td><td valign="top"><a href="Hosten-and-Sturmfels.html#index-algorithm-of-Hosten-and-Sturmfels">algorithm of Hosten and Sturmfels</a></td><td>&nbsp;</td><td valign="top"><a href="Hosten-and-Sturmfels.html#Hosten-and-Sturmfels">C.6.2.3 The algorithm of Hosten and Sturmfels</a></td></tr> <tr><td></td><td valign="top"><a href="Pottier.html#index-algorithm-of-Pottier">algorithm of Pottier</a></td><td>&nbsp;</td><td valign="top"><a href="Pottier.html#Pottier">C.6.2.2 The algorithm of Pottier</a></td></tr> <tr><td></td><td valign="top"><a href="alg_005fkernel.html#index-alg_005fkernel">alg_kernel</a></td><td>&nbsp;</td><td valign="top"><a href="alg_005fkernel.html#alg_005fkernel">D.4.1.5 alg_kernel</a></td></tr> <tr><td></td><td valign="top"><a href="all_005flib.html#index-all_002elib">all.lib</a></td><td>&nbsp;</td><td valign="top"><a href="all_005flib.html#all_005flib">D.2.1 all_lib</a></td></tr> <tr><td></td><td valign="top"><a href="Command-line-options.html#index-allowing-net-access">allowing net access</a></td><td>&nbsp;</td><td valign="top"><a href="Command-line-options.html#Command-line-options">3.1.6 Command line options</a></td></tr> <tr><td></td><td valign="top"><a href="allprint.html#index-allprint">allprint</a></td><td>&nbsp;</td><td valign="top"><a href="allprint.html#allprint">D.2.3.1 allprint</a></td></tr> <tr><td></td><td valign="top"><a href="allsquarefree.html#index-allsquarefree">allsquarefree</a></td><td>&nbsp;</td><td valign="top"><a href="allsquarefree.html#allsquarefree">D.5.5.20 allsquarefree</a></td></tr> <tr><td></td><td valign="top"><a href="all_005flib.html#index-all_005flib">all_lib</a></td><td>&nbsp;</td><td valign="top"><a href="all_005flib.html#all_005flib">D.2.1 all_lib</a></td></tr> <tr><td></td><td valign="top"><a href="boolean-operations.html#index-and">and</a></td><td>&nbsp;</td><td valign="top"><a href="boolean-operations.html#boolean-operations">4.3.6 boolean operations</a></td></tr> <tr><td></td><td valign="top"><a href="Evaluation-of-logical-expressions.html#index-and-1">and</a></td><td>&nbsp;</td><td valign="top"><a href="Evaluation-of-logical-expressions.html#Evaluation-of-logical-expressions">6.2.2 Evaluation of logical expressions</a></td></tr> <tr><td></td><td valign="top"><a href="Ann.html#index-Ann">Ann</a></td><td>&nbsp;</td><td valign="top"><a href="Ann.html#Ann">D.4.7.1 Ann</a></td></tr> <tr><td></td><td valign="top"><a href="annil.html#index-annil">annil</a></td><td>&nbsp;</td><td valign="top"><a href="annil.html#annil">D.4.4.8 annil</a></td></tr> <tr><td></td><td valign="top"><a href="ArnoldAction.html#index-ArnoldAction">ArnoldAction</a></td><td>&nbsp;</td><td valign="top"><a href="ArnoldAction.html#ArnoldAction">D.5.7.1 ArnoldAction</a></td></tr> <tr><td></td><td valign="top"><a href="ASCII.html#index-ASCII">ASCII</a></td><td>&nbsp;</td><td valign="top"><a href="ASCII.html#ASCII">D.2.2.2 ASCII</a></td></tr> <tr><td></td><td valign="top"><a href="ASCII-links.html#index-ASCII-links">ASCII links</a></td><td>&nbsp;</td><td valign="top"><a href="ASCII-links.html#ASCII-links">4.6.4 ASCII links</a></td></tr> <tr><td></td><td valign="top"><a href="attrib.html#index-attrib">attrib</a></td><td>&nbsp;</td><td valign="top"><a href="attrib.html#attrib">5.1.1 attrib</a></td></tr> <tr><td></td><td valign="top"><a href="A_005fL.html#index-A_005fL">A_L</a></td><td>&nbsp;</td><td valign="top"><a href="A_005fL.html#A_005fL">D.5.1.12 A_L</a></td></tr> <tr><td></td><td valign="top"><a href="A_005fZ.html#index-A_005fZ">A_Z</a></td><td>&nbsp;</td><td valign="top"><a href="A_005fZ.html#A_005fZ">D.2.2.1 A_Z</a></td></tr> <tr><td colspan="4"> <hr></td></tr> </table> <table><tr><th valign="top">Jump to: &nbsp; </th><td><a class="summary-letter" href="#Index-1_cp_symbol-1"><b>!</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-2"><b>&quot;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-3"><b>#</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-4"><b>$</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-5"><b>%</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-6"><b>&amp;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-7"><b>(</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-8"><b>)</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-9"><b>*</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-10"><b>+</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-11"><b>-</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-12"><b>.</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-13"><b>/</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-14"><b>;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-15"><b>&lt;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-16"><b>=</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-17"><b>&gt;</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-18"><b>?</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-19"><b>[</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-20"><b>\</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-21"><b>]</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-22"><b>^</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-23"><b>_</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-24"><b>`</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-25"><b>|</b></a> &nbsp; <a class="summary-letter" href="#Index-1_cp_symbol-26"><b>~</b></a> &nbsp; <br> <a class="summary-letter" href="#Index-1_cp_letter-A"><b>A</b></a> &nbsp; <a class="summary-letter" href="sing_1.htm#index_split-0_cp_letter-B"><b>B</b></a> &nbsp; <a class="summary-letter" href="sing_1.htm#index_split-0_cp_letter-C"><b>C</b></a> &nbsp; <a class="summary-letter" href="sing_2.htm#index_split-1_cp_letter-D"><b>D</b></a> &nbsp; <a class="summary-letter" href="sing_2.htm#index_split-1_cp_letter-E"><b>E</b></a> &nbsp; <a class="summary-letter" href="sing_3.htm#index_split-2_cp_letter-F"><b>F</b></a> &nbsp; <a class="summary-letter" href="sing_3.htm#index_split-2_cp_letter-G"><b>G</b></a> &nbsp; <a class="summary-letter" href="sing_4.htm#index_split-3_cp_letter-H"><b>H</b></a> &nbsp; <a class="summary-letter" href="sing_4.htm#index_split-3_cp_letter-I"><b>I</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-J"><b>J</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-K"><b>K</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-L"><b>L</b></a> &nbsp; <a class="summary-letter" href="sing_5.htm#index_split-4_cp_letter-M"><b>M</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-N"><b>N</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-O"><b>O</b></a> &nbsp; <a class="summary-letter" href="sing_6.htm#index_split-5_cp_letter-P"><b>P</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-Q"><b>Q</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-R"><b>R</b></a> &nbsp; <a class="summary-letter" href="sing_7.htm#index_split-6_cp_letter-S"><b>S</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-T"><b>T</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-U"><b>U</b></a> &nbsp; <a class="summary-letter" href="sing_8.htm#index_split-7_cp_letter-V"><b>V</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-W"><b>W</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-X"><b>X</b></a> &nbsp; <a class="summary-letter" href="sing_9.htm#index_split-8_cp_letter-Z"><b>Z</b></a> &nbsp; </td></tr></table> </td> </tr> </table> <hr> <table class="header" cellpadding="1" cellspacing="1" border="0"> <tr><td valign="middle" align="left"> <a href="index.htm"><img src="../singular_images/singular-icon-transparent.png" width="50" border="0" alt="Top"></a> </td> <td valign="middle" align="left"><a href="Macintosh-installation-instructions.html#Macintosh-installation-instructions" title="Previous section in reading order"><img src="../singular_images/a_left.png" border="0" alt="Back: E.5 Macintosh installation instructions" align="middle"></a></td> <td valign="middle" align="left"><a href="sing_1.htm#index_split-0" title="Next section in reading order"><img src="../singular_images/a_right.png" border="0" alt="Forward: F Index: B &ndash; C" align="middle"></a></td> <td valign="middle" align="left"><a href="Release-Notes.html#Release-Notes" title="Beginning of this chapter or previous chapter"><img src="../singular_images/a_leftdouble.png" border="0" alt="FastBack: E Release Notes" align="middle"></a></td> <td valign="middle" align="left"><img src="../singular_images/a_rightdouble_na.png" border="0" alt="FastForward: F Index" align="middle"></td> <td valign="middle" align="left"><img src="../singular_images/a_up_na.png" border="0" alt="Up: E Release Notes" align="middle"></td> <td valign="middle" align="left"><a href="index.htm#Preface" title="Cover (top) of document"><img src="../singular_images/a_top.png" border="0" alt="Top: 1 Preface" align="middle"></a></td> <td valign="middle" align="left"><a href="sing_toc.htm#SEC_Contents" title="Table of contents"><img src="../singular_images/a_tableofcon.png" border="0" alt="Contents: Table of Contents" align="middle"></a></td> <td valign="middle" align="left"><a href="#Index" title="Index"><img src="../singular_images/a_index.png" border="0" alt="Index: F Index" align="middle"></a></td> <td valign="middle" align="left"><a href="sing_abt.htm#SEC_About" title="About (help)"><img src="../singular_images/a_help.png" border="0" alt="About: About This Document" align="middle"></a></td> </tr></table> <font size="-1"> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; User manual for <a href="http://www.singular.uni-kl.de/"><i>Singular</i></a> version 2-0-4, October 2002, generated by <a href="http://www.gnu.org/software/texinfo/"><i>texi2html</i></a>. </font> </body> </html>
docs/xref/eu/fbk/dh/tint/languagetool/Rule.html
dhfbk/tint
<!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>Rule xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <pre> <a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> eu.fbk.dh.tint.languagetool; <a class="jxr_linenumber" name="L2" href="#L2">2</a> <a class="jxr_linenumber" name="L3" href="#L3">3</a> <a class="jxr_linenumber" name="L4" href="#L4">4</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="L5" href="#L5">5</a> <em class="jxr_javadoccomment"> * Created by alessio on 02/12/16.</em> <a class="jxr_linenumber" name="L6" href="#L6">6</a> <em class="jxr_javadoccomment"> */</em> <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">class</strong> <a href="../../../../../eu/fbk/dh/tint/languagetool/Rule.html">Rule</a> { <a class="jxr_linenumber" name="L9" href="#L9">9</a> String id, subId; <a class="jxr_linenumber" name="L10" href="#L10">10</a> String description; <a class="jxr_linenumber" name="L11" href="#L11">11</a> String issueType; <a class="jxr_linenumber" name="L12" href="#L12">12</a> <a href="../../../../../eu/fbk/dh/tint/languagetool/Category.html">Category</a> category; <a class="jxr_linenumber" name="L13" href="#L13">13</a> <a class="jxr_linenumber" name="L14" href="#L14">14</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../eu/fbk/dh/tint/languagetool/Rule.html">Rule</a>(String id, String subId, String description, String issueType, <a class="jxr_linenumber" name="L15" href="#L15">15</a> <a href="../../../../../eu/fbk/dh/tint/languagetool/Category.html">Category</a> category) { <a class="jxr_linenumber" name="L16" href="#L16">16</a> <strong class="jxr_keyword">this</strong>.id = id; <a class="jxr_linenumber" name="L17" href="#L17">17</a> <strong class="jxr_keyword">this</strong>.subId = subId; <a class="jxr_linenumber" name="L18" href="#L18">18</a> <strong class="jxr_keyword">this</strong>.description = description; <a class="jxr_linenumber" name="L19" href="#L19">19</a> <strong class="jxr_keyword">this</strong>.issueType = issueType; <a class="jxr_linenumber" name="L20" href="#L20">20</a> <strong class="jxr_keyword">this</strong>.category = category; <a class="jxr_linenumber" name="L21" href="#L21">21</a> } <a class="jxr_linenumber" name="L22" href="#L22">22</a> <a class="jxr_linenumber" name="L23" href="#L23">23</a> <strong class="jxr_keyword">public</strong> String getId() { <a class="jxr_linenumber" name="L24" href="#L24">24</a> <strong class="jxr_keyword">return</strong> id; <a class="jxr_linenumber" name="L25" href="#L25">25</a> } <a class="jxr_linenumber" name="L26" href="#L26">26</a> <a class="jxr_linenumber" name="L27" href="#L27">27</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setId(String id) { <a class="jxr_linenumber" name="L28" href="#L28">28</a> <strong class="jxr_keyword">this</strong>.id = id; <a class="jxr_linenumber" name="L29" href="#L29">29</a> } <a class="jxr_linenumber" name="L30" href="#L30">30</a> <a class="jxr_linenumber" name="L31" href="#L31">31</a> <strong class="jxr_keyword">public</strong> String getSubId() { <a class="jxr_linenumber" name="L32" href="#L32">32</a> <strong class="jxr_keyword">return</strong> subId; <a class="jxr_linenumber" name="L33" href="#L33">33</a> } <a class="jxr_linenumber" name="L34" href="#L34">34</a> <a class="jxr_linenumber" name="L35" href="#L35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSubId(String subId) { <a class="jxr_linenumber" name="L36" href="#L36">36</a> <strong class="jxr_keyword">this</strong>.subId = subId; <a class="jxr_linenumber" name="L37" href="#L37">37</a> } <a class="jxr_linenumber" name="L38" href="#L38">38</a> <a class="jxr_linenumber" name="L39" href="#L39">39</a> <strong class="jxr_keyword">public</strong> String getDescription() { <a class="jxr_linenumber" name="L40" href="#L40">40</a> <strong class="jxr_keyword">return</strong> description; <a class="jxr_linenumber" name="L41" href="#L41">41</a> } <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">void</strong> setDescription(String description) { <a class="jxr_linenumber" name="L44" href="#L44">44</a> <strong class="jxr_keyword">this</strong>.description = description; <a class="jxr_linenumber" name="L45" href="#L45">45</a> } <a class="jxr_linenumber" name="L46" href="#L46">46</a> <a class="jxr_linenumber" name="L47" href="#L47">47</a> <strong class="jxr_keyword">public</strong> String getIssueType() { <a class="jxr_linenumber" name="L48" href="#L48">48</a> <strong class="jxr_keyword">return</strong> issueType; <a class="jxr_linenumber" name="L49" href="#L49">49</a> } <a class="jxr_linenumber" name="L50" href="#L50">50</a> <a class="jxr_linenumber" name="L51" href="#L51">51</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setIssueType(String issueType) { <a class="jxr_linenumber" name="L52" href="#L52">52</a> <strong class="jxr_keyword">this</strong>.issueType = issueType; <a class="jxr_linenumber" name="L53" href="#L53">53</a> } <a class="jxr_linenumber" name="L54" href="#L54">54</a> <a class="jxr_linenumber" name="L55" href="#L55">55</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../eu/fbk/dh/tint/languagetool/Category.html">Category</a> getCategory() { <a class="jxr_linenumber" name="L56" href="#L56">56</a> <strong class="jxr_keyword">return</strong> category; <a class="jxr_linenumber" name="L57" href="#L57">57</a> } <a class="jxr_linenumber" name="L58" href="#L58">58</a> <a class="jxr_linenumber" name="L59" href="#L59">59</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setCategory(<a href="../../../../../eu/fbk/dh/tint/languagetool/Category.html">Category</a> category) { <a class="jxr_linenumber" name="L60" href="#L60">60</a> <strong class="jxr_keyword">this</strong>.category = category; <a class="jxr_linenumber" name="L61" href="#L61">61</a> } <a class="jxr_linenumber" name="L62" href="#L62">62</a> } </pre> <hr/> <div id="footer">Copyright &#169; 2016&#x2013;2017 <a href="http://www.fbk.eu">FBK</a>. All rights reserved.</div> </body> </html>
form.css
endocode/open-oil
table, th, td { border: 1px solid black; }
docs/functions_c.html
jiachenning/fibjs
<!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.6"/> <title>{FibJS: Fiber Javascript}: 类成员</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">{FibJS: Fiber Javascript} </div> <div id="projectbrief">基于 Google v8 引擎实现的协程应用开发框架</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- 制作者 Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'搜索'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>首页</span></a></li> <li><a href="pages.html"><span>相关页面</span></a></li> <li class="current"><a href="annotated.html"><span>类</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="搜索" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>类列表</span></a></li> <li><a href="inherits.html"><span>类继承关系</span></a></li> <li class="current"><a href="functions.html"><span>类成员</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li class="current"><a href="functions.html"><span>全部</span></a></li> <li><a href="functions_func.html"><span>函数</span></a></li> <li><a href="functions_vars.html"><span>变量</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_b.html#index_b"><span>b</span></a></li> <li class="current"><a href="functions_c.html#index_c"><span>c</span></a></li> <li><a href="functions_d.html#index_d"><span>d</span></a></li> <li><a href="functions_e.html#index_e"><span>e</span></a></li> <li><a href="functions_f.html#index_f"><span>f</span></a></li> <li><a href="functions_g.html#index_g"><span>g</span></a></li> <li><a href="functions_h.html#index_h"><span>h</span></a></li> <li><a href="functions_i.html#index_i"><span>i</span></a></li> <li><a href="functions_j.html#index_j"><span>j</span></a></li> <li><a href="functions_k.html#index_k"><span>k</span></a></li> <li><a href="functions_l.html#index_l"><span>l</span></a></li> <li><a href="functions_m.html#index_m"><span>m</span></a></li> <li><a href="functions_n.html#index_n"><span>n</span></a></li> <li><a href="functions_o.html#index_o"><span>o</span></a></li> <li><a href="functions_p.html#index_p"><span>p</span></a></li> <li><a href="functions_q.html#index_q"><span>q</span></a></li> <li><a href="functions_r.html#index_r"><span>r</span></a></li> <li><a href="functions_s.html#index_s"><span>s</span></a></li> <li><a href="functions_t.html#index_t"><span>t</span></a></li> <li><a href="functions_u.html#index_u"><span>u</span></a></li> <li><a href="functions_v.html#index_v"><span>v</span></a></li> <li><a href="functions_w.html#index_w"><span>w</span></a></li> <li><a href="functions_x.html#index_x"><span>x</span></a></li> <li><a href="functions_z.html#index_z"><span>z</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('functions_c.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">&#160;</span>全部</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>类</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>函数</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>变量</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>页</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="contents"> <div class="textblock">这里列出了所有文档化的类成员,并附带类所属的文件:</div> <h3><a class="anchor" id="index_c"></a>- c -</h3><ul> <li>ca : <a class="el" href="d5/d3b/classHttpsServer.html#a5d7befeaf62699ccbb4fe54ae71310b8">HttpsServer</a> , <a class="el" href="dd/d36/classssl.html#ada04b21a5fc2a69908ee67293b066484">ssl</a> , <a class="el" href="da/d2d/classSslHandler.html#a68800976bf3edb9f4f51ea9354c5f1d0">SslHandler</a> , <a class="el" href="d8/d4d/classSslServer.html#aa8b252937f34385f025dd7a019b8f9f1">SslServer</a> , <a class="el" href="d7/d3f/classSslSocket.html#a2b2147675964c4f18d521c1f3805bb5d">SslSocket</a> , <a class="el" href="d1/d66/classX509Cert.html#ad805c9e3efb6f8bb7fa914c394bb6d32">X509Cert</a> </li> <li>caller : <a class="el" href="d1/d42/classFiber.html#ab6ec41654f9091aea22d15d89aa8cb8f">Fiber</a> </li> <li>CAMELLIA : <a class="el" href="d8/d48/classcrypto.html#ae001b531453a86d24f48211828b3a9c9">crypto</a> </li> <li>CBC : <a class="el" href="d8/d48/classcrypto.html#ac4090eaa81ae53bc861a6bec02d872ec">crypto</a> </li> <li>CFB128 : <a class="el" href="d8/d48/classcrypto.html#a3acf9e014c01ea48278c51b25ee7b42e">crypto</a> </li> <li>CFB64 : <a class="el" href="d8/d48/classcrypto.html#a0a1cddd2c09e9758f26a961ffc736e62">crypto</a> </li> <li>Chain() : <a class="el" href="d7/d43/classChain.html#ac3ffc3a20f954287a0a716eab003309b">Chain</a> , <a class="el" href="d4/d86/classmq.html#adc2509ef9b804dd62d89c693a4ea65b6">mq</a> </li> <li>chmod() : <a class="el" href="db/d30/classFile.html#aa13cc9318e8f5ea58f0befb9ac709d72">File</a> , <a class="el" href="dc/d2f/classfs.html#a5b69648f9d4875d97bd01b007c095f94">fs</a> </li> <li>CHORD : <a class="el" href="d5/d5d/classgd.html#a022fb2b713f2bd7764e674572f3f6f76">gd</a> </li> <li>chunks : <a class="el" href="d9/de8/classGridFS.html#a51c4888d0359afc9be25be0cffc2a6a1">GridFS</a> </li> <li>Cipher() : <a class="el" href="d6/d2e/classCipher.html#af0b902f19da1b9dd5a689c9fc284d97e">Cipher</a> , <a class="el" href="d8/d48/classcrypto.html#ad31b4cf7a60b15e0abde66067041852e">crypto</a> </li> <li>clear() : <a class="el" href="d6/dbd/classHttpCollection.html#abb5c5b670c5e00501b6e67a26cc415e0">HttpCollection</a> , <a class="el" href="de/d0f/classLruCache.html#a712f2067f0af560e382de4e5a8df6759">LruCache</a> , <a class="el" href="d7/db0/classMap.html#a2f509af9bf4d94ab4412b11f071f3249">Map</a> , <a class="el" href="dd/d97/classMemoryStream.html#ab4729b2a0ed520dc2c9ec13d6ba78083">MemoryStream</a> , <a class="el" href="d6/d28/classMessage.html#a8ed24470ab5214955c70bb108209f9d4">Message</a> , <a class="el" href="d7/d56/classQueue.html#a0d245f8b5cd9e660ef6f33afd9773d7d">Queue</a> , <a class="el" href="d1/d66/classX509Cert.html#a77b2377e261f7206b7b5361e55a91d28">X509Cert</a> , <a class="el" href="d6/df6/classX509Crl.html#a4e82b7556162d0ccaee7fab737c54335">X509Crl</a> </li> <li>clip() : <a class="el" href="d8/d00/classImage.html#a2b71f15e2d820b358fdc886e7cb4cc0d">Image</a> </li> <li>clone() : <a class="el" href="d8/d00/classImage.html#a9269f51f177b5c662610b357d5030b8b">Image</a> , <a class="el" href="dd/d97/classMemoryStream.html#acebceddcdb996785b6f2923183638dc6">MemoryStream</a> , <a class="el" href="d0/d82/classPKey.html#af43ff2bc4e8e09020e3ae749f80ba845">PKey</a> </li> <li>close() : <a class="el" href="d6/d91/classDbConnection.html#a4f19b7fb871da01a3133649c27797a83">DbConnection</a> , <a class="el" href="d6/d3d/classMongoDB.html#a383c7acfe5f23e01497e4b73a4774590">MongoDB</a> , <a class="el" href="dc/de8/classStream.html#a52b486b973a47fb3fc79668a9742360f">Stream</a> </li> <li>closeTo() : <a class="el" href="de/d1c/classassert.html#a57f9d7269de9767896481d6c6491b053">assert</a> , <a class="el" href="dd/d7a/classExpect.html#ad68fd4e8d4aea4d89d9f2ad655d1a309">Expect</a> </li> <li>color() : <a class="el" href="d5/d5d/classgd.html#aa810ccf3c53765e07860a6e4bc4e86a0">gd</a> </li> <li>colorAllocate() : <a class="el" href="d8/d00/classImage.html#ad0fa3981ec535cec673652bf6fc3dc29">Image</a> </li> <li>colorAllocateAlpha() : <a class="el" href="d8/d00/classImage.html#ad99f34e196b5b799685e52b5d75f3451">Image</a> </li> <li>colorClosest() : <a class="el" href="d8/d00/classImage.html#a3995f62631c313cd794c05cf61bd4ef0">Image</a> </li> <li>colorClosestAlpha() : <a class="el" href="d8/d00/classImage.html#aa8c59f2d09aa7d2f44b6d44a68c92a4f">Image</a> </li> <li>colorClosestHWB() : <a class="el" href="d8/d00/classImage.html#ad799c5a826d1092b2f607503aa4c588f">Image</a> </li> <li>colorDeallocate() : <a class="el" href="d8/d00/classImage.html#afca99e39534cd5b4d8f00002aa117e8c">Image</a> </li> <li>colorExact() : <a class="el" href="d8/d00/classImage.html#a8f126e768ed2c567757fdc0c5a660e81">Image</a> </li> <li>colorExactAlpha() : <a class="el" href="d8/d00/classImage.html#a86e354bb63051ce2d98fd6b103d3c892">Image</a> </li> <li>colorReplace() : <a class="el" href="d8/d00/classImage.html#a7144eac161283e6acbdec4b60322fd42">Image</a> </li> <li>colorResolve() : <a class="el" href="d8/d00/classImage.html#a0a06c263c83f0fb55a056fa838d0cf53">Image</a> </li> <li>colorResolveAlpha() : <a class="el" href="d8/d00/classImage.html#aeb55718a5fe65ed0e1e906c0e0d494c9">Image</a> </li> <li>colors : <a class="el" href="d6/df8/classconsole.html#ac66c67c224cee71b91094d3d6d6da15d">console</a> </li> <li>colorsTotal : <a class="el" href="d8/d00/classImage.html#a9b5c37f5ae92d16e529147273a561203">Image</a> </li> <li>combine() : <a class="el" href="dc/d8a/classpath.html#a3d61d07eb72f122b18f74d930df2730f">path</a> </li> <li>command() : <a class="el" href="d5/d6b/classSmtp.html#a8856c5ea86c3aa98d799ae76134970f5">Smtp</a> </li> <li>commit() : <a class="el" href="d6/d91/classDbConnection.html#a1cfd7776b7f7b4a34e216f33b4df823b">DbConnection</a> </li> <li>compile() : <a class="el" href="de/de2/classre.html#a210fb1ffc2d442367932ea0f831e59e1">re</a> </li> <li>concat() : <a class="el" href="d6/da9/classList.html#ac4827e4196f21ea4b20ac15a55a62aa3">List</a> </li> <li>Condition() : <a class="el" href="d2/dd1/classcoroutine.html#a463e4db5114bdce2a92a95e17bb94750">coroutine</a> </li> <li>connect() : <a class="el" href="d3/d75/classnet.html#ab2c4365c1eeb0ce2a3fff7595e2e3c3c">net</a> , <a class="el" href="d5/d6b/classSmtp.html#a41b231bf2e52e5e24baf104e0accd6e5">Smtp</a> , <a class="el" href="d4/d33/classSocket.html#a8ba69699eb78edef37f3874bb05016cd">Socket</a> , <a class="el" href="d7/d3f/classSslSocket.html#ad7fc4978c4fea85e5f7bda1c85a59704">SslSocket</a> </li> <li>console : <a class="el" href="df/d84/classglobal.html#a69cd8fa430cb4536156e8052a37c9303">global</a> </li> <li>contentTransferEncoding : <a class="el" href="d0/d3c/classHttpUploadData.html#afdc22e05a8c573d27f7f191a82f91d0a">HttpUploadData</a> </li> <li>contentType : <a class="el" href="d0/d3c/classHttpUploadData.html#afc4c67023232895364f2b719e31d5fa4">HttpUploadData</a> </li> <li>convert() : <a class="el" href="d8/d00/classImage.html#ad862bf3bf93db7e5a7c7c29ece060453">Image</a> </li> <li>cookie : <a class="el" href="d5/d1b/classHttpRequest.html#afb0f722363cf1f24b88d68d690c542b1">HttpRequest</a> </li> <li>copy() : <a class="el" href="d8/d00/classImage.html#a94025b861b19965a629b06824e25fda5">Image</a> </li> <li>copyMerge() : <a class="el" href="d8/d00/classImage.html#a06bc2df9c85744029acb3ed3f10c0760">Image</a> </li> <li>copyMergeGray() : <a class="el" href="d8/d00/classImage.html#a9a3aa172885139848d09ee9dcff25fd5">Image</a> </li> <li>copyResampled() : <a class="el" href="d8/d00/classImage.html#a1ec0664b9c6bcb11daba2f42487a015b">Image</a> </li> <li>copyResized() : <a class="el" href="d8/d00/classImage.html#a13cf7a5cda51ef9cf6ef0d3e23aa6553">Image</a> </li> <li>copyRotated() : <a class="el" href="d8/d00/classImage.html#a884ef71e4cc72179290cc9a53253af9e">Image</a> </li> <li>copyTo() : <a class="el" href="dc/de8/classStream.html#a5520387ebf75fa030283055371859d8b">Stream</a> </li> <li>count() : <a class="el" href="db/d7d/classMongoCursor.html#a6d446e0a87acf54801d5c132b0384fd8">MongoCursor</a> </li> <li>CPUInfo() : <a class="el" href="d7/db0/classos.html#a2fe28e658af2fa4ed18aff69a99fff0c">os</a> </li> <li>CPUs() : <a class="el" href="d7/db0/classos.html#a693209d07a04870c1d24fb8bb17605ac">os</a> </li> <li>create() : <a class="el" href="d5/d5d/classgd.html#a3349d9352130d7050247113235a3e1a9">gd</a> </li> <li>CRIT : <a class="el" href="d6/df8/classconsole.html#a0a9c19825a7e11769d5646cb24002d1b">console</a> </li> <li>crop() : <a class="el" href="d8/d00/classImage.html#a945d440ac93ede21a89839946be8da8f">Image</a> </li> <li>crossDomain : <a class="el" href="d3/df3/classHttpHandler.html#acc43d9a11fa2e9b7aa62f4ca0ae91b93">HttpHandler</a> , <a class="el" href="dd/dab/classHttpServer.html#a113023f684bec5d69809b283afcdcca4">HttpServer</a> , <a class="el" href="d5/d3b/classHttpsServer.html#a4579a042f3a3a28b0b99db5af2bbd93c">HttpsServer</a> </li> <li>ctime : <a class="el" href="dc/d81/classStat.html#af62482780f5ebea39cf8f173f424f7d4">Stat</a> </li> <li>CTR : <a class="el" href="d8/d48/classcrypto.html#a01bb9b9d12fb491a950e0279a60f602d">crypto</a> </li> <li>current() : <a class="el" href="d2/dd1/classcoroutine.html#ae2d278991596f4170f2be18ae8d71454">coroutine</a> , <a class="el" href="d0/d0a/classvm.html#a86cf814a28e33adfe35dc66b78c83af5">vm</a> </li> </ul> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">制作者 <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 </li> </ul> </div> </body> </html>
solicitud.html
salomonmac/Ternal
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Ternal</title> <meta name="description" content="Ternal ayudando "> <meta name="author" content="Saul Salomon Ramirez Zuñiga"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <link rel="stylesheet" href="css/bootstrap.css"> <link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/grid.css"> <link href="//fonts.googleapis.com/css?family=Raleway" type="text/css" rel="stylesheet" /> </head> <body> <header> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-5 col-md-offset-1"> <a href="index.html"><img src="img/logoblanco.png" alt="Ternal S.A. DE C.V. sistema de enfriamiento" class="img img-responsive" width="75%;"></a> </div> <div class="col-md-3 col-sm-3 col-md-offset-1 hidden-xs"> <h2 class="text-right">Luce tus presentaciones como un profesional</h2> </div> <div class="col-md-3 col-sm-4 hidden-xs"> <img src="img/Portada.jpg" alt="" class="img img-responsive"> </div> </div> </div> </header> <div class="h-contacto borde-b"> <div class="container h-contacto"> <div class="row"> <div class="col-md-3 col-md-offset-1 col-sm-4"> <img src="img/telefono.png" alt=""> <a href="tel://018005700141"> 01-800-5700-141</a> </div> <div class="col-md-4 col-sm-4"> <img src="img/correo.png" alt=""><a href="mailto:ventas@ternal.com.mx"> ventas@ternal.com.mx</a> </div> <div class="col-md-4 col-sm-4"> <div class="input-group col-sm-10"> <input type="text" class="form-control" placeholder="Search for..."> <span class="input-group-btn"> <button class="btn btn-default" type="button">Buscar</button> </span> </div> <!-- /input-group --> </div> </div> </div> </div> <div class="menu"> <div class="container"> <div class="col-lg-10 col-lg-offset-1"> <nav class="navbar navbar-default"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 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> <a class="navbar-brand visible-xs" href="#">Ternal</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a href="index.html">INICIO</a></li> <li><a href="termica.html">ENCUADERNACIÓN TÉRMICA</a></li> <li><a href="cotizar.html">COTIZAR</a></li> <li><a href="pf.html">PREGUNTAS FRECUENTES</a></li> <li><a href="contacto.html">CONTACTO</a></li> <li class="redes-sociales"> <a class="_blank" href="https://www.facebook.com/Ternal.mex" target="_blank"><img alt="" src="img/fb.png" onmouseover="javascript:this.src='img/fbh.png';" onmouseout="javascript:this.src='img/fb.png';" /></a> </li> <li class="redes-sociales"> <a class="_blank" href="https://twitter.com/Ternalmex" target="_blank"><img alt="" src="img/tw.png" onmouseover="javascript:this.src='img/twh.png';" onmouseout="javascript:this.src='img/tw.png';" /></a> </li> <li class="redes-sociales"> <a class="_blank" href="https://plus.google.com/u/0/117468701141110043419/posts" target="_blank"><img alt="" src="img/g.png" onmouseover="javascript:this.src='img/gh.png';" onmouseout="javascript:this.src='img/g.png';" /></a> </li> </ul> </div> <!-- /.navbar-collapse --> <!-- /.container-fluid --> </nav> </div> </div> </div> <section> <div class="container"> <div class="col-sm-10 col-sm-offset-1 sec-bor"> <h2 class="text-center">Solicitud de Cotización</h2> <p>* Campos Requeridos</p> <div class="row borde-solicitud"> <div class="col-md-4 col-sm-6"> <div class="form-group"> <label for="exampleInputEmail1">Nombre*</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> <div class="form-group"> <label for="exampleInputEmail1">Email*</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> </div> <div class="col-md-4 col-sm-6"> <div class="form-group"> <label for="exampleInputEmail1">Apellido*</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> <div class="form-group"> <label for="exampleInputEmail1">Teléfono <small>(Cod.País+Cod.Ciudad+Tel.)</small> *</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> </div> <div class="col-md-4 col-sm-12"> <div class="form-group"> <label for="exampleInputEmail1">Compañia</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> </div> </div> <div class="row"> <div class="col-md-4 col-sm-12"> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> <div class="col-sm-4"> <div class="form-group"> <label for="exampleInputEmail1">Compañia</label> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Email"> </div> </div> <div class="col-sm-4"> <br> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> <div class="col-sm-4"> <br> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> </div> <div class="row"> <div class="col-sm-6"> <textarea class="form-control" rows="3"></textarea> </div> <div class="col-sm-6"> <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <br> <button type="submit" class="btn btn-default">Sign in</button> </div> </div> </div> </div> <div class="row"> <div class="col-md-6 col-sm-12"> <p class="text-justify">Si desea seleccione estas opciones ahora o bien lo puede hacer posteriormente.</p> </div> <div class="col-md-6 col-sm-12 "> <label>Impresíon</label> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> <div class="col-md-4 col-sm-6"> <label>Material y color carpetas suaves</label> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample"> Muestreria Carpetas Suaves </button> <div class="collapse" id="collapseExample"> <div class="well"> Hola mundo 1 </div> </div> </div> <div class="col-md-4 col-sm-6"> <label>Material y color carpetas duras</label> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample2" aria-expanded="false" aria-controls="collapseExample"> Bienvenido1 </button> <div class="collapse" id="collapseExample2"> <div class="well"> Hola mundo 2 </div> </div> </div> <div class="col-md-4 col-sm-6"> <label>Material y color carpetas grapa</label> <select class="form-control"> <option>-- Seleccione por favor --</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample3" aria-expanded="false" aria-controls="collapseExample"> Bienvenido1 </button> <div class="collapse" id="collapseExample3"> <div class="well"> Hola mundo 3 </div> </div> </div> </div> </div> </div> </section> <footer> <div class="container"> <div class="col-lg-3 col-md-3 col-sm-6"> <h4 class="text-center">PRODUCTOS</h4> <hr> <ul> <li><a href="productos.html">Encuadernadora térmica</a></li> <li><a href="productos.html">Carpetas térmicas de pasta suave</a></li> <li><a href="productos.html">Carpetas térmicas de pasta dura</a></li> <li><a href="productos.html">Carpetas térmicas translúcidas</a></li> <li><a href="productos.html">Carpetas de grapa de cartulina</a></li> <li><a href="productos.html">Sobres kraft</a></li> <li><a href="productos.html">Carpetas de mecanismo</a></li> <li><a href="productos.html">Carpeta de ojillos</a></li> <li><a href="productos.html">Papel con tinta de seguridad</a></li> <li><a href="productos.html">Carpetas y fundas de vinil</a></li> <li><a href="productos.html">Impresión de papelería fina</a></li> </ul> </div> <div class="col-lg-3 col-md-3 col-sm-6"> <h4 class="text-center">TERNAL, S.A. de C.V.</h4> <hr> <p>Arbolitos No.15 Col. Bellavista C.P. 54080, Tlalnepantla Estado de México, México <br> <a href="tel://5553620547">(55) 5362-0547 </a><br> <a href="tel://5553620414">(55) 5362-0414</a><br> <a href="tel://5553650053">(55) 5365-0053</a><br> <a href="tel://5553974704">(55) 5397-4704</a><br> </p> </div> <div class="clearfix visible-sm-block"></div> <div class="col-lg-3 col-md-3 col-sm-6"> <h4 class="text-center">Recibe más información</h4> <hr> <form> <div class="form-group"> <input type="email" class="form-control" id="exampleInputEmail1" placeholder="Nombre"> </div> <div class="form-group"> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Correo electrónico"> </div> <div class="form-group"> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Teléfono"> </div> <button type="submit" class="btn btn-default">Enviar</button> </form> </div> <div class="col-lg-3 col-md-3 col-sm-6"> <h4 class="text-center">Ubicación</h4> <hr> <iframe width="230" height="230" frameborder="0" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d3760.593895456339!2d-99.21402138465578!3d19.51610023732063!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x85d202c9bd7624a9%3A0xfe9b36afa5a74115!2sTernal%2C+Bella+Vista+Puente+de+Vigas%2C+54090+M%C3%A9x.!5e0!3m2!1ses-419!2smx!4v1432334649217" style="border: 0px none;"></iframe> </div> </div> </footer> <script src="https://use.fontawesome.com/3346f99067.js"></script> <script src="js/jquery.js"></script> <script src="js/bootstrap.min.js"></script> </body> </html>
doc/Android_Java_D2xx/doc/com/ftdi/j2xx/ft4222/class-use/FT_4222_Defines.GPIO_Dir.html
samcrow/ColonyNavigator
<!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_06) on Fri Dec 19 17:31:52 CST 2014 --> <title>Uses of Class com.ftdi.j2xx.ft4222.FT_4222_Defines.GPIO_Dir</title> <meta name="date" content="2014-12-19"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.ftdi.j2xx.ft4222.FT_4222_Defines.GPIO_Dir"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/ftdi/j2xx/ft4222/FT_4222_Defines.GPIO_Dir.html" title="class in com.ftdi.j2xx.ft4222">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/ftdi/j2xx/ft4222/class-use/FT_4222_Defines.GPIO_Dir.html" target="_top">Frames</a></li> <li><a href="FT_4222_Defines.GPIO_Dir.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.ftdi.j2xx.ft4222.FT_4222_Defines.GPIO_Dir" class="title">Uses of Class<br>com.ftdi.j2xx.ft4222.FT_4222_Defines.GPIO_Dir</h2> </div> <div class="classUseContainer">No usage of com.ftdi.j2xx.ft4222.FT_4222_Defines.GPIO_Dir</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/ftdi/j2xx/ft4222/FT_4222_Defines.GPIO_Dir.html" title="class in com.ftdi.j2xx.ft4222">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/ftdi/j2xx/ft4222/class-use/FT_4222_Defines.GPIO_Dir.html" target="_top">Frames</a></li> <li><a href="FT_4222_Defines.GPIO_Dir.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> <p> <a href=http://www.ftdichip.com> <font size=4><B>About FTDI </B></font> </a> &nbsp;&nbsp;|&nbsp;&nbsp; <a href=http://www.ftdichip.com/Drivers/FTDriverLicenceTermsSummary.htm > <font size=4><B>FTDI Licence Terms</B></font> </a></small></p> </body> </html>
Homeclick/Areas/Manager/Content/lib/froala-WYSIWYG-editor/css/froala_editor.pkgd.css
daltonnyx/homeclick
/*! * froala_editor v2.3.5 (https://www.froala.com/wysiwyg-editor) * License https://froala.com/wysiwyg-editor/terms/ * Copyright 2014-2016 Froala Labs */ .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-element, .fr-element:focus { outline: 0px solid transparent; } .fr-box.fr-basic .fr-element { text-align: initial; color: #000000; padding: 10px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; overflow-x: auto; min-height: 40px; } .fr-element { background: transparent; position: relative; z-index: 2; -webkit-user-select: auto; } .fr-element a { user-select: auto; -o-user-select: auto; -moz-user-select: auto; -khtml-user-select: auto; -webkit-user-select: auto; -ms-user-select: auto; } .fr-element.fr-disabled { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-element [contenteditable="false"] { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-element [contenteditable="true"] { outline: 0px solid transparent; } .fr-box a.fr-floating-btn { -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); border-radius: 100%; -moz-border-radius: 100%; -webkit-border-radius: 100%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; height: 32px; width: 32px; background: #ffffff; color: #1e88e5; -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s; -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s; -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s; -o-transition: background 0.2s ease 0s, color 0.2s ease 0s, transform 0.2s ease 0s; outline: none; left: 0; top: 0; line-height: 32px; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); text-align: center; display: block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: none; } .fr-box a.fr-floating-btn svg { -webkit-transition: transform 0.2s ease 0s; -moz-transition: transform 0.2s ease 0s; -ms-transition: transform 0.2s ease 0s; -o-transition: transform 0.2s ease 0s; fill: #1e88e5; } .fr-box a.fr-floating-btn i { font-size: 14px; line-height: 32px; } .fr-box a.fr-floating-btn.fr-btn + .fr-btn { margin-left: 10px; } .fr-box a.fr-floating-btn:hover { background: #ebebeb; cursor: pointer; } .fr-box a.fr-floating-btn:hover svg { fill: #1e88e5; } .fr-box .fr-visible a.fr-floating-btn { -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); } iframe.fr-iframe { width: 100%; border: none; position: relative; display: block; z-index: 2; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fr-wrapper { position: relative; z-index: 1; } .fr-wrapper::after { clear: both; display: block; content: ""; height: 0; } .fr-wrapper .fr-placeholder { position: absolute; font-size: 12px; color: #aaaaaa; z-index: 1; display: none; top: 0; left: 0; overflow: hidden; } .fr-wrapper.show-placeholder .fr-placeholder { display: block; } .fr-wrapper ::selection { background: #b5d6fd; color: #000000; } .fr-wrapper ::-moz-selection { background: #b5d6fd; color: #000000; } .fr-box.fr-rtl .fr-wrapper .fr-placeholder { right: 0; left: auto; } .fr-box.fr-basic .fr-wrapper { background: #ffffff; border: 0px; border-top: 0; top: 0; left: 0; } .fr-box.fr-basic.fr-rtl .fr-wrapper .fr-placeholder { right: 0; left: auto; } .fr-box.fr-basic.fr-top .fr-wrapper { border-top: 0; border-radius: 0 0 2px 2px; -moz-border-radius: 0 0 2px 2px; -webkit-border-radius: 0 0 2px 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .fr-box.fr-basic.fr-bottom .fr-wrapper { border-bottom: 0; border-radius: 2px 2px 0 0; -moz-border-radius: 2px 2px 0 0; -webkit-border-radius: 2px 2px 0 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); } .fr-tooltip { position: absolute; top: 0; left: 0; padding: 0 8px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); background: #222222; color: #ffffff; font-size: 11px; line-height: 22px; font-family: Arial, Helvetica, sans-serif; -webkit-transition: opacity 0.2s ease 0s; -moz-transition: opacity 0.2s ease 0s; -ms-transition: opacity 0.2s ease 0s; -o-transition: opacity 0.2s ease 0s; -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; left: -3000px; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; z-index: 9997; } .fr-tooltip.fr-visible { -webkit-opacity: 1; -moz-opacity: 1; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .fr-toolbar { color: #222222; background: #ffffff; position: relative; z-index: 4; font-family: Arial, Helvetica, sans-serif; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; padding: 0 2px; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); text-align: left; border: 0px; border-top: 5px solid #222222; } .fr-toolbar::after { clear: both; display: block; content: ""; height: 0; } .fr-toolbar.fr-rtl { text-align: right; } .fr-toolbar.fr-inline { display: none; white-space: nowrap; position: absolute; margin-top: 10px; } .fr-toolbar.fr-inline .fr-arrow { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 5px solid #222222; position: absolute; top: -9px; left: 50%; margin-left: -5px; display: inline-block; } .fr-toolbar.fr-inline.fr-above { margin-top: -10px; -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); border-bottom: 5px solid #222222; border-top: 0; } .fr-toolbar.fr-inline.fr-above .fr-arrow { top: auto; bottom: -9px; border-bottom: 0; border-top-color: inherit; border-top-style: solid; border-top-width: 5px; } .fr-toolbar.fr-top { top: 0; border-radius: 2px 2px 0 0; -moz-border-radius: 2px 2px 0 0; -webkit-border-radius: 2px 2px 0 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .fr-toolbar.fr-bottom { bottom: 0; border-radius: 0 0 2px 2px; -moz-border-radius: 0 0 2px 2px; -webkit-border-radius: 0 0 2px 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .fr-separator { background: #ebebeb; display: block; vertical-align: top; float: left; } .fr-separator + .fr-separator { display: none; } .fr-separator.fr-vs { height: 33px; width: 1px; margin: 2px; } .fr-separator.fr-hs { clear: both; height: 1px; width: calc(100% - (2 * 2px)); margin: 0 2px; } .fr-separator.fr-hidden { display: none !important; } .fr-rtl .fr-separator { float: right; } .fr-toolbar.fr-inline .fr-separator.fr-hs { float: none; } .fr-toolbar.fr-inline .fr-separator.fr-vs { float: none; display: inline-block; } .fr-toolbar .fr-command.fr-btn, .fr-popup .fr-command.fr-btn { background: transparent; color: #222222; -moz-outline: 0; outline: 0; border: 0; line-height: 1; cursor: pointer; text-align: left; margin: 0px 2px; -webkit-transition: background 0.2s ease 0s; -moz-transition: background 0.2s ease 0s; -ms-transition: background 0.2s ease 0s; -o-transition: background 0.2s ease 0s; border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; z-index: 2; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-decoration: none; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; float: left; padding: 0; width: 38px; height: 37px; } .fr-toolbar .fr-command.fr-btn i, .fr-popup .fr-command.fr-btn i { display: block; font-size: 15px; width: 15px; margin: 11px 11.5px; text-align: center; float: none; } .fr-toolbar .fr-command.fr-btn span, .fr-popup .fr-command.fr-btn span { font-size: 14px; display: block; line-height: 14px; min-width: 38px; float: left; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; height: 15px; font-weight: bold; } .fr-toolbar .fr-command.fr-btn img, .fr-popup .fr-command.fr-btn img { margin: 11px 11.5px; width: 15px; } .fr-toolbar .fr-command.fr-btn.fr-active, .fr-popup .fr-command.fr-btn.fr-active { color: #1e88e5; background: transparent; } .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection { width: auto; } .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-selection span, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-selection span { font-weight: normal; } .fr-toolbar .fr-command.fr-btn.fr-dropdown i, .fr-popup .fr-command.fr-btn.fr-dropdown i, .fr-toolbar .fr-command.fr-btn.fr-dropdown span, .fr-popup .fr-command.fr-btn.fr-dropdown span, .fr-toolbar .fr-command.fr-btn.fr-dropdown img, .fr-popup .fr-command.fr-btn.fr-dropdown img { margin-left: 7.5px; margin-right: 15.5px; } .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active { color: #222222; background: #d6d6d6; } .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover, .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus { background: #d6d6d6 !important; color: #222222 !important; } .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:hover::after, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:hover::after, .fr-toolbar .fr-command.fr-btn.fr-dropdown.fr-active:focus::after, .fr-popup .fr-command.fr-btn.fr-dropdown.fr-active:focus::after { border-top-color: #222222 !important; } .fr-toolbar .fr-command.fr-btn.fr-dropdown::after, .fr-popup .fr-command.fr-btn.fr-dropdown::after { position: absolute; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #222222; right: 3.75px; top: 16.5px; content: ""; } .fr-toolbar .fr-command.fr-btn.fr-disabled, .fr-popup .fr-command.fr-btn.fr-disabled { color: #bdbdbd; cursor: default; } .fr-toolbar .fr-command.fr-btn.fr-disabled::after, .fr-popup .fr-command.fr-btn.fr-disabled::after { border-top-color: #bdbdbd !important; } .fr-toolbar .fr-command.fr-btn.fr-hidden, .fr-popup .fr-command.fr-btn.fr-hidden { display: none; } .fr-toolbar.fr-disabled .fr-btn, .fr-popup.fr-disabled .fr-btn, .fr-toolbar.fr-disabled .fr-btn.fr-active, .fr-popup.fr-disabled .fr-btn.fr-active { color: #bdbdbd; } .fr-toolbar.fr-disabled .fr-btn.fr-dropdown::after, .fr-popup.fr-disabled .fr-btn.fr-dropdown::after, .fr-toolbar.fr-disabled .fr-btn.fr-active.fr-dropdown::after, .fr-popup.fr-disabled .fr-btn.fr-active.fr-dropdown::after { border-top-color: #bdbdbd; } .fr-toolbar.fr-rtl .fr-command.fr-btn, .fr-popup.fr-rtl .fr-command.fr-btn { float: right; } .fr-toolbar.fr-inline .fr-command.fr-btn { float: none; } .fr-desktop .fr-command:hover, .fr-desktop .fr-command:focus { color: #222222; background: #ebebeb; } .fr-desktop .fr-command:hover::after, .fr-desktop .fr-command:focus::after { border-top-color: #222222 !important; } .fr-desktop .fr-command.fr-selected { color: #222222; background: #d6d6d6; } .fr-desktop .fr-command.fr-active:hover, .fr-desktop .fr-command.fr-active:focus { color: #1e88e5; background: #ebebeb; } .fr-desktop .fr-command.fr-active.fr-selected { color: #1e88e5; background: #d6d6d6; } .fr-desktop .fr-command.fr-disabled:hover, .fr-desktop .fr-command.fr-disabled:focus, .fr-desktop .fr-command.fr-disabled.fr-selected { background: transparent; } .fr-desktop.fr-disabled .fr-command:hover, .fr-desktop.fr-disabled .fr-command:focus, .fr-desktop.fr-disabled .fr-command.fr-selected { background: transparent; } .fr-toolbar.fr-mobile .fr-command.fr-blink, .fr-popup.fr-mobile .fr-command.fr-blink { background: transparent; } .fr-command.fr-btn + .fr-dropdown-menu { display: inline-block; position: absolute; right: auto; bottom: auto; height: auto; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); z-index: 3; -webkit-overflow-scrolling: touch; overflow: hidden; border-radius: 0 0 2px 2px; -moz-border-radius: 0 0 2px 2px; -webkit-border-radius: 0 0 2px 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper { background: #ffffff; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); padding: 0; margin: auto; display: inline-block; text-align: left; position: relative; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: max-height 0.2s ease 0s; -moz-transition: max-height 0.2s ease 0s; -ms-transition: max-height 0.2s ease 0s; -o-transition: max-height 0.2s ease 0s; margin-top: 0; float: left; max-height: 0; height: 0; margin-top: 0 !important; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content { overflow: auto; position: relative; max-height: 275px; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list { list-style-type: none; margin: 0; padding: 0; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li { padding: 0; margin: 0; font-size: 15px; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a { padding: 0 24px; line-height: 200%; display: block; cursor: pointer; white-space: nowrap; color: inherit; text-decoration: none; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-active { background: #d6d6d6; } .fr-command.fr-btn + .fr-dropdown-menu .fr-dropdown-wrapper .fr-dropdown-content ul.fr-dropdown-list li a.fr-disabled { color: #bdbdbd; cursor: default; } .fr-command.fr-btn.fr-active + .fr-dropdown-menu { display: inline-block; } .fr-command.fr-btn.fr-active + .fr-dropdown-menu .fr-dropdown-wrapper { height: auto; max-height: 275px; } .fr-bottom > .fr-command.fr-btn + .fr-dropdown-menu { border-radius: 2px 2px 0 0; -moz-border-radius: 2px 2px 0 0; -webkit-border-radius: 2px 2px 0 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .fr-toolbar.fr-rtl .fr-dropdown-wrapper, .fr-popup.fr-rtl .fr-dropdown-wrapper { text-align: right !important; } .fr-popup { position: absolute; display: none; color: #222222; background: #ffffff; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; font-family: Arial, Helvetica, sans-serif; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; margin-top: 10px; z-index: 9995; text-align: left; border: 0px; border-top: 5px solid #222222; } .fr-popup.fr-above { margin-top: -10px; border-top: 0; border-bottom: 5px solid #222222; -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.12), 0 -1px 2px rgba(0, 0, 0, 0.24); } .fr-popup.fr-active { display: block; } .fr-popup.fr-hidden { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .fr-popup .fr-hs { display: block !important; } .fr-popup .fr-hs.fr-hidden { display: none !important; } .fr-popup .fr-input-line { position: relative; padding: 8px 0; } .fr-popup .fr-input-line input[type="text"], .fr-popup .fr-input-line textarea { width: 100%; margin: 0px 0 1px 0; border: none; border-bottom: solid 1px #bdbdbd; color: #222222; font-size: 14px; padding: 6px 0 2px; background: rgba(0, 0, 0, 0); position: relative; z-index: 2; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fr-popup .fr-input-line input[type="text"]:focus, .fr-popup .fr-input-line textarea:focus { border-bottom: solid 2px #1e88e5; margin-bottom: 0px; } .fr-popup .fr-input-line input + label, .fr-popup .fr-input-line textarea + label { position: absolute; top: 0; left: 0; font-size: 12px; color: rgba(0, 0, 0, 0); -webkit-transition: color 0.2s ease 0s; -moz-transition: color 0.2s ease 0s; -ms-transition: color 0.2s ease 0s; -o-transition: color 0.2s ease 0s; z-index: 1; } .fr-popup .fr-input-line input.fr-not-empty:focus + label, .fr-popup .fr-input-line textarea.fr-not-empty:focus + label { color: #1e88e5; } .fr-popup .fr-input-line input.fr-not-empty + label, .fr-popup .fr-input-line textarea.fr-not-empty + label { color: #808080; } .fr-popup input, .fr-popup textarea { user-select: text; -o-user-select: text; -moz-user-select: text; -khtml-user-select: text; -webkit-user-select: text; -ms-user-select: text; border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; outline: none; } .fr-popup textarea { resize: none; } .fr-popup .fr-buttons { -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); padding: 0 2px; white-space: nowrap; line-height: 0; border-bottom: 0px; } .fr-popup .fr-buttons::after { clear: both; display: block; content: ""; height: 0; } .fr-popup .fr-buttons .fr-btn { display: inline-block; float: none; } .fr-popup .fr-buttons .fr-btn i { float: left; } .fr-popup .fr-buttons .fr-separator { display: inline-block; float: none; } .fr-popup .fr-layer { width: 225px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 10px; display: none; } @media (min-width: 768px) { .fr-popup .fr-layer { width: 300px; } } .fr-popup .fr-layer.fr-active { display: inline-block; } .fr-popup .fr-action-buttons { z-index: 7; height: 36px; text-align: right; } .fr-popup .fr-action-buttons button.fr-command { height: 36px; line-height: 1; color: #1e88e5; padding: 10px; cursor: pointer; text-decoration: none; border: none; background: none; font-size: 16px; outline: none; -webkit-transition: background 0.2s ease 0s; -moz-transition: background 0.2s ease 0s; -ms-transition: background 0.2s ease 0s; -o-transition: background 0.2s ease 0s; } .fr-popup .fr-action-buttons button.fr-command + button { margin-left: 24px; } .fr-popup .fr-action-buttons button.fr-command:hover, .fr-popup .fr-action-buttons button.fr-command:focus { background: #ebebeb; color: #1e88e5; } .fr-popup .fr-action-buttons button.fr-command:active { background: #d6d6d6; color: #1e88e5; } .fr-popup .fr-action-buttons button::-moz-focus-inner { border: 0; } .fr-popup .fr-checkbox { position: relative; display: inline-block; width: 16px; height: 16px; line-height: 1; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; vertical-align: middle; } .fr-popup .fr-checkbox svg { margin-left: 2px; margin-top: 2px; display: none; width: 10px; height: 10px; } .fr-popup .fr-checkbox span { border: solid 1px #222222; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; width: 16px; height: 16px; display: inline-block; position: relative; z-index: 1; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: background 0.2s ease 0s, border-color 0.2s ease 0s; -moz-transition: background 0.2s ease 0s, border-color 0.2s ease 0s; -ms-transition: background 0.2s ease 0s, border-color 0.2s ease 0s; -o-transition: background 0.2s ease 0s, border-color 0.2s ease 0s; } .fr-popup .fr-checkbox input { position: absolute; z-index: 2; -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; border: 0 none; cursor: pointer; height: 16px; margin: 0; padding: 0; width: 16px; top: 1px; left: 1px; } .fr-popup .fr-checkbox input:checked + span { background: #1e88e5; border-color: #1e88e5; } .fr-popup .fr-checkbox input:checked + span svg { display: block; } .fr-popup .fr-checkbox input:focus + span { border-color: #1e88e5; } .fr-popup .fr-checkbox-line { font-size: 14px; line-height: 1.4px; margin-top: 10px; } .fr-popup .fr-checkbox-line label { cursor: pointer; margin: 0 5px; vertical-align: middle; } .fr-popup.fr-rtl { direction: rtl; text-align: right; } .fr-popup.fr-rtl .fr-action-buttons { text-align: left; } .fr-popup.fr-rtl .fr-input-line input + label, .fr-popup.fr-rtl .fr-input-line textarea + label { left: auto; right: 0; } .fr-popup .fr-arrow { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 5px solid #222222; position: absolute; top: -9px; left: 50%; margin-left: -5px; display: inline-block; } .fr-popup.fr-above .fr-arrow { top: auto; bottom: -9px; border-bottom: 0; border-top: 5px solid #222222; } .fr-text-edit-layer { width: 250px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block !important; } .fr-visibility-helper { display: none; margin-left: 0px !important; } @media (min-width: 768px) { .fr-visibility-helper { margin-left: 1px !important; } } @media (min-width: 992px) { .fr-visibility-helper { margin-left: 2px !important; } } @media (min-width: 1200px) { .fr-visibility-helper { margin-left: 3px !important; } } .fr-opacity-0 { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .fr-box { position: relative; } /** * Postion sticky hacks. */ .fr-sticky { position: -webkit-sticky; position: -moz-sticky; position: -ms-sticky; position: -o-sticky; position: sticky; } .fr-sticky-off { position: relative; } .fr-sticky-on { position: fixed; } .fr-sticky-on.fr-sticky-ios { position: absolute; left: 0; right: 0; width: auto !important; } .fr-sticky-dummy { display: none; } .fr-sticky-on + .fr-sticky-dummy, .fr-sticky-box > .fr-sticky-dummy { display: block; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-box .fr-counter { position: absolute; bottom: 0px; padding: 5px; right: 0px; color: #cccccc; content: attr(data-chars); font-size: 15px; font-family: "Times New Roman", Georgia, Serif; z-index: 1; background: #ffffff; border-top: solid 1px #ebebeb; border-left: solid 1px #ebebeb; border-radius: 2px 0 0 0; -moz-border-radius: 2px 0 0 0; -webkit-border-radius: 2px 0 0 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .fr-box.fr-rtl .fr-counter { left: 0px; right: auto; border-left: none; border-right: solid 1px #ebebeb; border-radius: 0 2px 0 0; -moz-border-radius: 0 2px 0 0; -webkit-border-radius: 0 2px 0 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; } .fr-box.fr-code-view .fr-counter { display: none; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } textarea.fr-code { display: none; width: 100%; resize: none; -moz-resize: none; -webkit-resize: none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: none; padding: 10px; margin: 0px; font-family: "Courier New", monospace; font-size: 14px; background: #ffffff; color: #000000; outline: none; } .fr-box.fr-rtl textarea.fr-code { direction: rtl; } .fr-box .CodeMirror { display: none; } .fr-box.fr-code-view textarea.fr-code { display: block; } .fr-box.fr-code-view.fr-inline { -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } .fr-box.fr-code-view .fr-element, .fr-box.fr-code-view .fr-placeholder, .fr-box.fr-code-view .fr-iframe { display: none; } .fr-box.fr-code-view .CodeMirror { display: block; } .fr-box.fr-inline.fr-code-view .fr-command.fr-btn.html-switch { display: block; } .fr-box.fr-inline .fr-command.fr-btn.html-switch { position: absolute; top: 0; right: 0; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); display: none; background: #ffffff; color: #222222; -moz-outline: 0; outline: 0; border: 0; line-height: 1; cursor: pointer; text-align: left; padding: 11px 11.5px; -webkit-transition: background 0.2s ease 0s; -moz-transition: background 0.2s ease 0s; -ms-transition: background 0.2s ease 0s; -o-transition: background 0.2s ease 0s; border-radius: 0; -moz-border-radius: 0; -webkit-border-radius: 0; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; z-index: 2; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-decoration: none; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-box.fr-inline .fr-command.fr-btn.html-switch i { font-size: 15px; width: 15px; text-align: center; } .fr-box.fr-inline .fr-command.fr-btn.html-switch.fr-desktop:hover { background: #ebebeb; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-popup .fr-colors-tabs { -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); margin-bottom: 5px; line-height: 16px; margin-left: -2px; margin-right: -2px; } .fr-popup .fr-colors-tabs .fr-colors-tab { display: inline-block; width: 50%; cursor: pointer; text-align: center; color: #222222; font-size: 13px; padding: 8px 0; position: relative; } .fr-popup .fr-colors-tabs .fr-colors-tab:hover { color: #1e88e5; } .fr-popup .fr-colors-tabs .fr-colors-tab[data-param1="background"]::after { position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: #1e88e5; content: ''; -webkit-transition: transform 0.2s ease 0s; -moz-transition: transform 0.2s ease 0s; -ms-transition: transform 0.2s ease 0s; -o-transition: transform 0.2s ease 0s; } .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab { color: #1e88e5; } .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after { -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); -ms-transform: translate3d(-100%, 0, 0); -o-transform: translate3d(-100%, 0, 0); } .fr-popup .fr-separator + .fr-colors-tabs { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-left: 2px; margin-right: 2px; } .fr-popup .fr-color-set { line-height: 0; display: none; } .fr-popup .fr-color-set.fr-selected-set { display: block; } .fr-popup .fr-color-set > span { display: inline-block; width: 32px; height: 32px; position: relative; z-index: 1; } .fr-popup .fr-color-set > span > i { text-align: center; line-height: 32px; height: 32px; width: 32px; font-size: 13px; position: absolute; bottom: 0; cursor: default; left: 0; } .fr-popup .fr-color-set > span.fr-selected-color::after { color: #ffffff; content: "\f00c"; font-family: FontAwesome; font-size: 13px; font-weight: 400; line-height: 32px; position: absolute; top: 0; bottom: 0; right: 0; left: 0; text-align: center; cursor: default; } .fr-popup .fr-color-set > span:hover, .fr-popup .fr-color-set > span.fr-selected-color { outline: 1px solid #222222; z-index: 2; } .fr-rtl .fr-popup .fr-colors-tabs .fr-colors-tab.fr-selected-tab[data-param1="text"] ~ [data-param1="background"]::after { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); -ms-transform: translate3d(100%, 0, 0); -o-transform: translate3d(100%, 0, 0); } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-drag-helper { background: #1e88e5; height: 2px; margin-top: -1px; -webkit-opacity: 0.2; -moz-opacity: 0.2; opacity: 0.2; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; position: absolute; z-index: 9999; display: none; } .fr-drag-helper.fr-visible { display: block; } .fr-dragging { -webkit-opacity: 0.4; -moz-opacity: 0.4; opacity: 0.4; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-popup .fr-emoticon { display: inline-block; font-size: 20px; width: 20px; padding: 5px; line-height: 1; cursor: default; font-weight: normal; font-family: "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols"; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } .fr-popup .fr-emoticon img { height: 20px; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-file-upload-layer { border: dashed 2px #bdbdbd; padding: 25px 0; position: relative; font-size: 14px; letter-spacing: 1px; line-height: 140%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; text-align: center; } .fr-file-upload-layer:hover { background: #ebebeb; } .fr-file-upload-layer.fr-drop { background: #ebebeb; border-color: #1e88e5; } .fr-file-upload-layer .fr-form { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 9999; overflow: hidden; margin: 0 !important; padding: 0 !important; width: 100% !important; } .fr-file-upload-layer .fr-form input { cursor: pointer; position: absolute; right: 0px; top: 0px; bottom: 0px; width: 500%; height: 100%; margin: 0px; font-size: 400px; } .fr-file-progress-bar-layer { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fr-file-progress-bar-layer > h3 { font-size: 16px; margin: 10px 0; font-weight: normal; } .fr-file-progress-bar-layer > div.fr-action-buttons { display: none; } .fr-file-progress-bar-layer > div.fr-loader { background: #bcdbf7; height: 10px; width: 100%; margin-top: 20px; overflow: hidden; position: relative; } .fr-file-progress-bar-layer > div.fr-loader span { display: block; height: 100%; width: 0%; background: #1e88e5; -webkit-transition: width 0.2s ease 0s; -moz-transition: width 0.2s ease 0s; -ms-transition: width 0.2s ease 0s; -o-transition: width 0.2s ease 0s; } .fr-file-progress-bar-layer > div.fr-loader.fr-indeterminate span { width: 30% !important; position: absolute; top: 0; -webkit-animation: loading 2s linear infinite; -moz-animation: loading 2s linear infinite; -o-animation: loading 2s linear infinite; animation: loading 2s linear infinite; } .fr-file-progress-bar-layer.fr-error > div.fr-loader { display: none; } .fr-file-progress-bar-layer.fr-error > div.fr-action-buttons { display: block; } @keyframes loading { from { left: -25%; } to { left: 100%; } } @-webkit-keyframes loading { from { left: -25%; } to { left: 100%; } } @-moz-keyframes loading { from { left: -25%; } to { left: 100%; } } @-o-keyframes loading { from { left: -25%; } to { left: 100%; } } body.fr-fullscreen { overflow: hidden; height: 100%; width: 100%; position: fixed; } .fr-box.fr-fullscreen { margin: 0 !important; position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 9990 !important; width: auto !important; } .fr-box.fr-fullscreen .fr-toolbar.fr-top { top: 0 !important; } .fr-box.fr-fullscreen .fr-toolbar.fr-bottom { bottom: 0 !important; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-element img { cursor: pointer; } .fr-image-resizer { position: absolute; border: solid 1px #1e88e5; display: none; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } .fr-image-resizer.fr-active { display: block; } .fr-image-resizer .fr-handler { display: block; position: absolute; background: #1e88e5; border: solid 1px #ffffff; z-index: 4; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fr-image-resizer .fr-handler.fr-hnw { cursor: nw-resize; } .fr-image-resizer .fr-handler.fr-hne { cursor: ne-resize; } .fr-image-resizer .fr-handler.fr-hsw { cursor: sw-resize; } .fr-image-resizer .fr-handler.fr-hse { cursor: se-resize; } .fr-image-resizer .fr-handler { width: 12px; height: 12px; } .fr-image-resizer .fr-handler.fr-hnw { left: -6px; top: -6px; } .fr-image-resizer .fr-handler.fr-hne { right: -6px; top: -6px; } .fr-image-resizer .fr-handler.fr-hsw { left: -6px; bottom: -6px; } .fr-image-resizer .fr-handler.fr-hse { right: -6px; bottom: -6px; } @media (min-width: 1200px) { .fr-image-resizer .fr-handler { width: 10px; height: 10px; } .fr-image-resizer .fr-handler.fr-hnw { left: -5px; top: -5px; } .fr-image-resizer .fr-handler.fr-hne { right: -5px; top: -5px; } .fr-image-resizer .fr-handler.fr-hsw { left: -5px; bottom: -5px; } .fr-image-resizer .fr-handler.fr-hse { right: -5px; bottom: -5px; } } .fr-image-overlay { position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 9999; display: none; } .fr-image-upload-layer { border: dashed 2px #bdbdbd; padding: 25px 0; position: relative; font-size: 14px; letter-spacing: 1px; line-height: 140%; text-align: center; } .fr-image-upload-layer:hover { background: #ebebeb; } .fr-image-upload-layer.fr-drop { background: #ebebeb; border-color: #1e88e5; } .fr-image-upload-layer .fr-form { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: 9999; overflow: hidden; margin: 0 !important; padding: 0 !important; width: 100% !important; } .fr-image-upload-layer .fr-form input { cursor: pointer; position: absolute; right: 0px; top: 0px; bottom: 0px; width: 500%; height: 100%; margin: 0px; font-size: 400px; } .fr-image-progress-bar-layer > h3 { font-size: 16px; margin: 10px 0; font-weight: normal; } .fr-image-progress-bar-layer > div.fr-action-buttons { display: none; } .fr-image-progress-bar-layer > div.fr-loader { background: #bcdbf7; height: 10px; width: 100%; margin-top: 20px; overflow: hidden; position: relative; } .fr-image-progress-bar-layer > div.fr-loader span { display: block; height: 100%; width: 0%; background: #1e88e5; -webkit-transition: width 0.2s ease 0s; -moz-transition: width 0.2s ease 0s; -ms-transition: width 0.2s ease 0s; -o-transition: width 0.2s ease 0s; } .fr-image-progress-bar-layer > div.fr-loader.fr-indeterminate span { width: 30% !important; position: absolute; top: 0; -webkit-animation: loading 2s linear infinite; -moz-animation: loading 2s linear infinite; -o-animation: loading 2s linear infinite; animation: loading 2s linear infinite; } .fr-image-progress-bar-layer.fr-error > div.fr-loader { display: none; } .fr-image-progress-bar-layer.fr-error > div.fr-action-buttons { display: block; } .fr-image-size-layer .fr-image-group .fr-input-line { width: calc(50% - 5px); display: inline-block; } .fr-image-size-layer .fr-image-group .fr-input-line + .fr-input-line { margin-left: 10px; } .fr-uploading { -webkit-opacity: 0.4; -moz-opacity: 0.4; opacity: 0.4; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } @keyframes loading { from { left: -25%; } to { left: 100%; } } @-webkit-keyframes loading { from { left: -25%; } to { left: 100%; } } @-moz-keyframes loading { from { left: -25%; } to { left: 100%; } } @-o-keyframes loading { from { left: -25%; } to { left: 100%; } } .clearfix::after { clear: both; display: block; content: ""; height: 0; } body.prevent-scroll { overflow: hidden; } body.prevent-scroll.fr-mobile { position: fixed; -webkit-overflow-scrolling: touch; } .fr-modal { position: fixed; overflow-x: auto; overflow-y: scroll; top: 0; left: 0; bottom: 0; right: 0; text-align: center; width: 100%; z-index: 9999; } .fr-modal .fr-modal-wrapper { border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; margin: 20px auto; display: inline-block; background: #ffffff; min-width: 300px; text-align: center; -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 6px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 6px rgba(0, 0, 0, 0.23); box-shadow: 0 5px 8px rgba(0, 0, 0, 0.19), 0 4px 6px rgba(0, 0, 0, 0.23); border: 0px; border-top: 5px solid #222222; overflow: hidden; width: 90%; padding-bottom: 10px; position: relative; } @media (min-width: 768px) and (max-width: 991px) { .fr-modal .fr-modal-wrapper { margin: 30px auto; width: 70%; } } @media (min-width: 992px) { .fr-modal .fr-modal-wrapper { margin: 50px auto; width: 600px; } } .fr-modal .fr-modal-wrapper .fr-preloader { display: block; margin: 50px auto; } .fr-modal .fr-modal-wrapper .fr-modal-title { background: #ffffff; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.23); border-bottom: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 3; -webkit-transition: height 0.2s ease 0s; -moz-transition: height 0.2s ease 0s; -ms-transition: height 0.2s ease 0s; -o-transition: height 0.2s ease 0s; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line::after { clear: both; display: block; content: ""; height: 0; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line h4 { font-size: 18px; color: #222222; padding: 12px 10px; margin: 0; font-weight: 400; line-height: 18px; display: inline-block; float: left; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line i { padding: 12px; width: 20px; font-size: 16px; cursor: pointer; line-height: 18px; color: #222222; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line i.fr-modal-more { float: left; opacity: 1; -webkit-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s; -moz-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s; -ms-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s; -o-transition: padding 0.2s ease 0s, width 0.2s ease 0s, opacity 0.2s ease 0s; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line i.fr-modal-more.fr-not-available { opacity: 0; width: 0; padding: 12px 0; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-title-line i.fr-modal-close { position: absolute; top: 0; right: 0; -webkit-transition: color 0.2s ease 0s; -moz-transition: color 0.2s ease 0s; -ms-transition: color 0.2s ease 0s; -o-transition: color 0.2s ease 0s; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-tags { text-align: left; display: none; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-tags a { display: inline-block; opacity: 0; padding: 6px 8px; margin: 8px 0 8px 8px; text-decoration: none; border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; color: #1e88e5; -webkit-transition: opacity 0.2s ease 0s, background 0.2s ease 0s; -moz-transition: opacity 0.2s ease 0s, background 0.2s ease 0s; -ms-transition: opacity 0.2s ease 0s, background 0.2s ease 0s; -o-transition: opacity 0.2s ease 0s, background 0.2s ease 0s; cursor: pointer; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-tags a:focus { outline: none; } .fr-modal .fr-modal-wrapper .fr-modal-title .fr-modal-tags a.fr-selected-tag { background: #d6d6d6; } .fr-modal .fr-modal-wrapper div.fr-scroller { height: 100%; min-height: 150px; overflow-y: scroll; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list { margin: 0 10px; padding: 0; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list::after { clear: both; display: block; content: ""; height: 0; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list .fr-list-column { float: left; width: calc((100% - 10px) / 2); } @media (min-width: 768px) and (max-width: 1199px) { .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list .fr-list-column { width: calc((100% - 20px) / 3); } } @media (min-width: 1200px) { .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list .fr-list-column { width: calc((100% - 30px) / 4); } } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list .fr-list-column + .fr-list-column { margin-left: 10px; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container { position: relative; width: 100%; display: block; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); border-radius: 2px; -moz-border-radius: 2px; -webkit-border-radius: 2px; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; overflow: hidden; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container:first-child { margin-top: 10px; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container + div { margin-top: 10px; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-image-deleting::after { position: absolute; -webkit-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -webkit-transition: opacity 0.2s ease 0s; -moz-transition: opacity 0.2s ease 0s; -ms-transition: opacity 0.2s ease 0s; -o-transition: opacity 0.2s ease 0s; background: #000000; content: ""; top: 0; left: 0; bottom: 0; right: 0; z-index: 2; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-image-deleting::before { content: attr(data-deleting); color: #ffffff; top: 0; left: 0; bottom: 0; right: 0; margin: auto; position: absolute; z-index: 3; font-size: 15px; height: 20px; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-empty { height: 95px; background: #cccccc; z-index: 1; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-empty::after { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; content: attr(data-loading); display: inline-block; height: 20px; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container img { width: 100%; vertical-align: middle; position: relative; z-index: 2; -webkit-opacity: 1; -moz-opacity: 1; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -webkit-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s; -moz-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s; -ms-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s; -o-transition: opacity 0.2s ease 0s, filter 0.2s ease 0s; -webkit-transform: translateZ(0); -moz-transform: translateZ(0); -ms-transform: translateZ(0); -o-transform: translateZ(0); } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-mobile-selected img { -webkit-opacity: 0.75; -moz-opacity: 0.75; opacity: 0.75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-delete-img, .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container.fr-mobile-selected .fr-insert-img { display: inline-block; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-delete-img, .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-insert-img { display: none; top: 50%; border-radius: 100%; -moz-border-radius: 100%; -webkit-border-radius: 100%; -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-transition: background 0.2s ease 0s, color 0.2s ease 0s; -moz-transition: background 0.2s ease 0s, color 0.2s ease 0s; -ms-transition: background 0.2s ease 0s, color 0.2s ease 0s; -o-transition: background 0.2s ease 0s, color 0.2s ease 0s; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); position: absolute; cursor: pointer; margin: 0; width: 36px; height: 36px; line-height: 36px; text-decoration: none; z-index: 3; } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-delete-img { background: #b8312f; color: #ffffff; left: 50%; -webkit-transform: translateY(-50%) translateX(25%); -moz-transform: translateY(-50%) translateX(25%); -ms-transform: translateY(-50%) translateX(25%); -o-transform: translateY(-50%) translateX(25%); } .fr-modal .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-insert-img { background: #ffffff; color: #1e88e5; left: 50%; -webkit-transform: translateY(-50%) translateX(-125%); -moz-transform: translateY(-50%) translateX(-125%); -ms-transform: translateY(-50%) translateX(-125%); -o-transform: translateY(-50%) translateX(-125%); } .fr-modal.fr-desktop .fr-modal-wrapper .fr-modal-title .fr-modal-title-line i:hover { background: #ebebeb; } .fr-modal.fr-desktop .fr-modal-wrapper .fr-modal-title .fr-modal-tags a:hover { background: #ebebeb; } .fr-modal.fr-desktop .fr-modal-wrapper .fr-modal-title .fr-modal-tags a.fr-selected-tag { background: #d6d6d6; } .fr-modal.fr-desktop .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container:hover img { -webkit-opacity: 0.75; -moz-opacity: 0.75; opacity: 0.75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; } .fr-modal.fr-desktop .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container:hover .fr-delete-img, .fr-modal.fr-desktop .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container:hover .fr-insert-img { display: inline-block; } .fr-modal.fr-desktop .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-delete-img:hover { background: #bf4644; color: #ffffff; } .fr-modal.fr-desktop .fr-modal-wrapper div.fr-scroller div.fr-image-list div.fr-image-container .fr-insert-img:hover { background: #ebebeb; } .fr-overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: #000000; -webkit-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; z-index: 9998; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-line-breaker { cursor: text; border-top: 1px solid #1e88e5; position: fixed; z-index: 2; display: none; } .fr-line-breaker.fr-visible { display: block; } .fr-line-breaker a.fr-floating-btn { position: absolute; left: calc(50% - (32px / 2)); top: -16px; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-quick-insert { position: absolute; z-index: 9998; white-space: nowrap; padding-right: 5px; margin-left: -5px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } .fr-quick-insert.fr-on a.fr-floating-btn svg { -webkit-transform: rotate(135deg); -moz-transform: rotate(135deg); -ms-transform: rotate(135deg); -o-transform: rotate(135deg); } .fr-qi-helper { position: absolute; z-index: 3; padding-left: 10px; white-space: nowrap; } .fr-qi-helper a.fr-btn.fr-floating-btn { text-align: center; display: inline-block; color: #222222; -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -webkit-transform: scale(0); -moz-transform: scale(0); -ms-transform: scale(0); -o-transform: scale(0); } .fr-qi-helper a.fr-btn.fr-floating-btn.fr-size-1 { -webkit-opacity: 1; -moz-opacity: 1; opacity: 1; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; -webkit-transform: scale(1); -moz-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-element table td.fr-selected-cell, .fr-element table th.fr-selected-cell { border: 1px double #1e88e5; } .fr-element table tr { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-element table td, .fr-element table th { user-select: text; -o-user-select: text; -moz-user-select: text; -khtml-user-select: text; -webkit-user-select: text; -ms-user-select: text; } .fr-element .fr-no-selection table td, .fr-element .fr-no-selection table th { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-table-resizer { cursor: col-resize; position: fixed; z-index: 3; display: none; } .fr-table-resizer.fr-moving { z-index: 2; } .fr-table-resizer div { -webkit-opacity: 0; -moz-opacity: 0; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; border-right: 1px solid #1e88e5; } .fr-no-selection { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-popup .fr-table-size .fr-table-size-info { text-align: center; font-size: 14px; padding: 8px; } .fr-popup .fr-table-size .fr-select-table-size { line-height: 0; padding: 0 5px 5px; white-space: nowrap; } .fr-popup .fr-table-size .fr-select-table-size > span { display: inline-block; padding: 0px 4px 4px 0; } .fr-popup .fr-table-size .fr-select-table-size > span > span { display: inline-block; width: 18px; height: 18px; border: 1px solid #dddddd; } .fr-popup .fr-table-size .fr-select-table-size > span:hover, .fr-popup .fr-table-size .fr-select-table-size > span.hover { background: transparent; } .fr-popup .fr-table-size .fr-select-table-size > span:hover > span, .fr-popup .fr-table-size .fr-select-table-size > span.hover > span { background: rgba(30, 136, 229, 0.3); border: solid 1px #1e88e5; } .fr-popup .fr-table-size .fr-select-table-size .new-line::after { clear: both; display: block; content: ""; height: 0; } .fr-popup.fr-above .fr-table-size .fr-select-table-size > span { display: inline-block !important; } .fr-popup .fr-table-colors-buttons { margin-bottom: 5px; } .fr-popup .fr-table-colors { line-height: 0; display: block; } .fr-popup .fr-table-colors > span { display: inline-block; width: 32px; height: 32px; position: relative; z-index: 1; } .fr-popup .fr-table-colors > span > i { text-align: center; line-height: 32px; height: 32px; width: 32px; font-size: 13px; position: absolute; bottom: 0; cursor: default; left: 0; } .fr-popup .fr-table-colors > span.fr-selected-color::after { color: #ffffff; content: "\f00c"; font-family: FontAwesome; font-size: 13px; font-weight: 400; line-height: 32px; position: absolute; top: 0; bottom: 0; right: 0; left: 0; text-align: center; cursor: default; } .fr-popup .fr-table-colors > span:hover, .fr-popup .fr-table-colors > span.fr-selected-color { outline: 1px solid #222222; z-index: 2; } .fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span { width: 12px; height: 12px; } .fr-insert-helper { position: fixed; z-index: 9999; white-space: nowrap; } .clearfix::after { clear: both; display: block; content: ""; height: 0; } .fr-element .fr-video { user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-element .fr-video::after { position: absolute; content: ''; z-index: 1; top: 0; left: 0; right: 0; bottom: 0; cursor: pointer; display: block; background: rgba(0, 0, 0, 0); } .fr-element .fr-video.fr-active > * { z-index: 2; position: relative; } .fr-element .fr-video > * { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; max-width: 100%; border: none; } .fr-box .fr-video-resizer { position: absolute; border: solid 1px #1e88e5; display: none; user-select: none; -o-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -ms-user-select: none; } .fr-box .fr-video-resizer.fr-active { display: block; } .fr-box .fr-video-resizer .fr-handler { display: block; position: absolute; background: #1e88e5; border: solid 1px #ffffff; z-index: 4; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fr-box .fr-video-resizer .fr-handler.fr-hnw { cursor: nw-resize; } .fr-box .fr-video-resizer .fr-handler.fr-hne { cursor: ne-resize; } .fr-box .fr-video-resizer .fr-handler.fr-hsw { cursor: sw-resize; } .fr-box .fr-video-resizer .fr-handler.fr-hse { cursor: se-resize; } .fr-box .fr-video-resizer .fr-handler { width: 12px; height: 12px; } .fr-box .fr-video-resizer .fr-handler.fr-hnw { left: -6px; top: -6px; } .fr-box .fr-video-resizer .fr-handler.fr-hne { right: -6px; top: -6px; } .fr-box .fr-video-resizer .fr-handler.fr-hsw { left: -6px; bottom: -6px; } .fr-box .fr-video-resizer .fr-handler.fr-hse { right: -6px; bottom: -6px; } @media (min-width: 1200px) { .fr-box .fr-video-resizer .fr-handler { width: 10px; height: 10px; } .fr-box .fr-video-resizer .fr-handler.fr-hnw { left: -5px; top: -5px; } .fr-box .fr-video-resizer .fr-handler.fr-hne { right: -5px; top: -5px; } .fr-box .fr-video-resizer .fr-handler.fr-hsw { left: -5px; bottom: -5px; } .fr-box .fr-video-resizer .fr-handler.fr-hse { right: -5px; bottom: -5px; } } .fr-video-size-layer .fr-video-group .fr-input-line { width: calc(50% - 5px); display: inline-block; } .fr-video-size-layer .fr-video-group .fr-input-line + .fr-input-line { margin-left: 10px; } .fr-video-overlay { position: fixed; top: 0; left: 0; bottom: 0; right: 0; z-index: 9999; display: none; }
doc/it/polito/dp2/WF/ActionStatusReader.html
nik7007/AssignmentDP2
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Fri Oct 16 18:05:13 CEST 2015 --> <title>ActionStatusReader (it.polito.dp2.WF Documentation)</title> <meta name="date" content="2015-10-16"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="ActionStatusReader (it.polito.dp2.WF Documentation)"; } //--> </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="../../../../it/polito/dp2/WF/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../it/polito/dp2/WF/ActionReader.html" title="interface in it.polito.dp2.WF"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../it/polito/dp2/WF/Actor.html" title="class in it.polito.dp2.WF"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?it/polito/dp2/WF/ActionStatusReader.html" target="_top">Frames</a></li> <li><a href="ActionStatusReader.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</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">it.polito.dp2.WF</div> <h2 title="Interface ActionStatusReader" class="title">Interface ActionStatusReader</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public interface <span class="strong">ActionStatusReader</span></pre> <div class="block">An interface for accessing information about the status of an action instance. The execution status includes the following information: <ul> <li> if the execution of this action instance has already been taken over and by who;</li> <li> if the execution of this action instance was terminated and when.</li> </ul></div> </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="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="http://java.sun.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td> <td class="colLast"><code><strong><a href="../../../../it/polito/dp2/WF/ActionStatusReader.html#getActionName()">getActionName</a></strong>()</code> <div class="block">Gives the name of the action this execution instance refers to.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../it/polito/dp2/WF/Actor.html" title="class in it.polito.dp2.WF">Actor</a></code></td> <td class="colLast"><code><strong><a href="../../../../it/polito/dp2/WF/ActionStatusReader.html#getActor()">getActor</a></strong>()</code> <div class="block">Gives the actor who has taken over the execution of this action instance.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="http://java.sun.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a></code></td> <td class="colLast"><code><strong><a href="../../../../it/polito/dp2/WF/ActionStatusReader.html#getTerminationTime()">getTerminationTime</a></strong>()</code> <div class="block">Gives the time when the execution of this action instance terminated.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../it/polito/dp2/WF/ActionStatusReader.html#isTakenInCharge()">isTakenInCharge</a></strong>()</code> <div class="block">Specifies if the execution of this action instance has already been taken over.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../it/polito/dp2/WF/ActionStatusReader.html#isTerminated()">isTerminated</a></strong>()</code> <div class="block">Specifies if the execution of this action instance is terminated.</div> </td> </tr> </table> </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="getActionName()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getActionName</h4> <pre><a href="http://java.sun.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;getActionName()</pre> <div class="block">Gives the name of the action this execution instance refers to.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>the name of the action this execution refers to (a string made of alphanumeric characters only, where the first character is alphabetic)</dd></dl> </li> </ul> <a name="isTakenInCharge()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isTakenInCharge</h4> <pre>boolean&nbsp;isTakenInCharge()</pre> <div class="block">Specifies if the execution of this action instance has already been taken over.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>true if this action execution instance has already been taken over</dd></dl> </li> </ul> <a name="isTerminated()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isTerminated</h4> <pre>boolean&nbsp;isTerminated()</pre> <div class="block">Specifies if the execution of this action instance is terminated.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>true if the execution of this action instance is terminated</dd></dl> </li> </ul> <a name="getActor()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getActor</h4> <pre><a href="../../../../it/polito/dp2/WF/Actor.html" title="class in it.polito.dp2.WF">Actor</a>&nbsp;getActor()</pre> <div class="block">Gives the actor who has taken over the execution of this action instance.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>the actor who has taken over the execution of this action instance</dd></dl> </li> </ul> <a name="getTerminationTime()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getTerminationTime</h4> <pre><a href="http://java.sun.com/javase/7/docs/api/java/util/Calendar.html?is-external=true" title="class or interface in java.util">Calendar</a>&nbsp;getTerminationTime()</pre> <div class="block">Gives the time when the execution of this action instance terminated.</div> <dl><dt><span class="strong">Returns:</span></dt><dd>a Calendar set to the time when the execution of this action instance terminated</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><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../it/polito/dp2/WF/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../it/polito/dp2/WF/ActionReader.html" title="interface in it.polito.dp2.WF"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../it/polito/dp2/WF/Actor.html" title="class in it.polito.dp2.WF"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?it/polito/dp2/WF/ActionStatusReader.html" target="_top">Frames</a></li> <li><a href="ActionStatusReader.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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
ScriptReference/UI.CanvasScaler.Unit.Points.html
rakuten/Uinty3D-Docs-zhcn
<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Unity - Scripting API: UI.CanvasScaler.Unit.Points</title> <meta name="description" content="Develop once, publish everywhere! Unity is the ultimate tool for video game development, architectural visualizations, and interactive media installations - publish to the web, Windows, OS X, Wii, Xbox 360, and iPhone with many more platforms to come." /> <meta name="author" content="Unity Technologies" /> <link rel="shortcut icon" href="../StaticFiles/images/favicons/favicon.ico" /> <link rel="icon" type="image/png" href="../StaticFiles/images/favicons/favicon.png" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../StaticFiles/images/favicons/apple-touch-icon-152x152.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../StaticFiles/images/favicons/apple-touch-icon-144x144.png" /> <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../StaticFiles/images/favicons/apple-touch-icon-120x120.png" /> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../StaticFiles/images/favicons/apple-touch-icon-114x114.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../StaticFiles/images/favicons/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon-precomposed" href="../StaticFiles/images/favicons/apple-touch-icon.png" /> <meta name="msapplication-TileColor" content="#222c37" /> <meta name="msapplication-TileImage" content="../StaticFiles/images/favicons/tileicon-144x144.png" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-2854981-1']); _gaq.push(['_setDomainName', 'unity3d.com']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript" src="../StaticFiles/js/jquery.js"> </script> <script type="text/javascript" src="docdata/toc.js">//toc</script> <!--local TOC--> <script type="text/javascript" src="docdata/global_toc.js">//toc</script> <!--global TOC, including other platforms--> <script type="text/javascript" src="../StaticFiles/js/core.js"> </script> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic" rel="stylesheet" type="text/css" /> <link rel="stylesheet" type="text/css" href="../StaticFiles/css/core.css" /> </head> <body> <div class="header-wrapper"> <div id="header" class="header"> <div class="content"> <div class="spacer"> <div class="menu"> <div class="logo"> <a href="http://docs.unity3d.com"> </a> </div> <div class="search-form"> <form action="30_search.html" method="get" class="apisearch"> <input type="text" name="q" placeholder="Search scripting..." autosave="Unity Reference" results="5" class="sbox field" id="q"> </input> <input type="submit" class="submit"> </input> </form> </div> <ul> <li> <a href="http://docs.unity3d.com">Overview</a> </li> <li> <a href="../Manual/index.html">Manual</a> </li> <li> <a href="../ScriptReference/index.html" class="selected">Scripting API</a> </li> </ul> </div> </div> <div class="more"> <div class="filler"> </div> <ul> <li> <a href="http://unity3d.com/">unity3d.com</a> </li> </ul> </div> </div> </div> <div class="toolbar"> <div class="content clear"> <div class="lang-switcher hide"> <div class="current toggle" data-target=".lang-list"> <div class="lbl">Language: <span class="b">English</span></div> <div class="arrow"> </div> </div> <div class="lang-list" style="display:none;"> <ul> <li> <a href="">English</a> </li> </ul> </div> </div> <div class="script-lang"> <ul> <li class="selected" data-lang="CS">C#</li> <li data-lang="JS">JS</li> </ul> <div id="script-lang-dialog" class="dialog hide"> <div class="dialog-content clear"> <h2>Script language</h2> <div class="close"> </div> <p class="clear">Select your preferred scripting language. All code snippets will be displayed in this language.</p> </div> </div> </div> </div> </div> </div> <div id="master-wrapper" class="master-wrapper clear"> <div id="sidebar" class="sidebar"> <div class="sidebar-wrap"> <div class="content"> <div class="sidebar-menu"> <div class="toc"> <h2>Scripting API</h2> </div> </div> <p> <a href="40_history.html" class="cw">History</a> </p> </div> </div> </div> <div id="content-wrap" class="content-wrap"> <div class="content-block"> <div class="content"> <div class="section"> <div class="mb20 clear"> <h1 class="heading inherit"> <a href="UI.CanvasScaler.Unit.html">CanvasScaler.Unit</a>.Points</h1> <div class="clear"> </div> <div class="clear"> </div> <div class="suggest"> <a class="blue-btn sbtn">Suggest a change</a> <div class="suggest-wrap rel hide"> <div class="loading hide"> <div> </div> <div> </div> <div> </div> </div> <div class="suggest-success hide"> <h2>Success!</h2> <p>Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.</p> <a class="gray-btn sbtn close">Close</a> </div> <div class="suggest-failed hide"> <h2>Sumbission failed</h2> <p>For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.</p> <a class="gray-btn sbtn close">Close</a> </div> <div class="suggest-form clear"> <label for="suggest_name">Your name</label> <input id="suggest_name" type="text"> </input> <label for="suggest_email">Your email</label> <input id="suggest_email" type="email"> </input> <label for="suggest_body" class="clear">Suggestion <span class="r">*</span></label> <textarea id="suggest_body" class="req"> </textarea> <button id="suggest_submit" class="blue-btn mr10">Submit suggestion</button> <p class="mb0"> <a class="cancel left lh42 cn">Cancel</a> </p> </div> </div> </div> <a href="" class="switch-link gray-btn sbtn left hide">Switch to Manual</a> <div class="clear"> </div> </div> <div class="subsection"> <div class="signature"> <div class="signature-JS sig-block"> </div> <div class="signature-CS sig-block"> </div> </div> </div> <div class="subsection"> <h2>Description</h2> <p>Use points. One point is 1/12 of a pica, and 1/72 of an inch.</p> </div> </div> <div class="footer-wrapper"> <div class="footer clear"> <div class="copy">Copyright © 2014 Unity Technologies</div> <div class="menu"> <a href="http://unity3d.com/learn">Learn</a> <a href="http://unity3d.com/community">Community</a> <a href="http://unity3d.com/asset-store">Asset Store</a> <a href="https://store.unity3d.com">Buy</a> <a href="http://unity3d.com/unity/download">Download</a> </div> </div> </div> </div> </div> </div> </div> </body> </html>
resetpass.html
jonpchin/GoChess
<!DOCTYPE html><html lang="en"> <head><meta charset="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Go Play Chess</title> <link href="css/design.css" rel="stylesheet" type = "text/css"/> <link rel='shortcut icon' href='img/favicon.ico' type='image/x-icon'/> </head> <body> <div> <ul id="nav"> <li><a href="/">Main</a></li> <li><a href="/login">Login</a></li> <li><a href="/register">Register</a></li> <li><a href="/screenshots">Screnshots</a></li> <li><a href="/about">About</a></li> </ul> </div> <div id="center"> <p> Password must be at least 5 characters long.</p> <p><b>Reset Password</b></p> Username: <input type="text" maxlength="12" id="user"> <p>Token: <input type="text" maxlength="20" id="token"></p> <p>New Password:<input type="password" id="pass" maxlength="90"><span id="checkLen"></span></p> <p>Confirm Password:<input type="password" id="confirm" maxlength="90"><span id="checkPass"></span></p> <p>Type the numbers you see in the picture below: <select id="lang"> <option value="en">English</option> <option value="ru">Russian</option> <option value="zh">Chinese</option> </select> </p> <p><span id="submit-result"></span></p> <p><img id=image src="/captcha/{{.CaptchaId}}.png" alt="Captcha image"></p> <a href="#" id="reload">Reload</a> | <a href="#" id="playAudio">Play Audio</a> <audio id=audio controls style="display:none" src="/captcha/{{.CaptchaId}}.wav" preload=none> You browser doesn't support audio. <a href="/captcha/download/{{.CaptchaId}}.wav">Download file</a> to play it in the external player. </audio> <input type=hidden id=captchaId value="{{.CaptchaId}}"><br> <input id=captchaSolution> <button id="resetpass">Login</button> </div> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="../third-party/js/jquery-2.1.4.min.js">\x3C/script>')</script> <script src="js/resetpass.js"></script> <br><br><br><footer>Go Play Chess © 2016<br> Where gophers play chess. </footer> </body> </html>
SemanticServiceDescription/utilityFolders/interoperabilityProblemsOntology/OWLDoc/datatypes/index-InteroperabilityProblemsOntology.html
dandrocec/PaaSInterop
<html><head> <title>Ontology Browser: InteroperabilityProblemsOntology: datatypes (1)</title> <meta http-equiv='content-type' content='text/html;charset=utf8'> <link rel='stylesheet' href='../default.css' type='text/css' /> </head> <body> <h2>InteroperabilityProblemsOntology: datatypes (1)</h2> <div class='codebox' id='interoperabilityproblemsontology:_datatypes_(1)'> <ul> <li> <a href="PlainLiteral___-1770072891.html" target="content" title="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral">PlainLiteral</a></li> </ul> </div><!-- interoperabilityproblemsontology: datatypes (1) --> <p class='footer'> </body></html>
html/wolfnode/modules.html
miningwolf/docs
<!DOCTYPE html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>WolfScript API modules</title> <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <link href="../assets/css/docs.css" rel="stylesheet" /> <link href="../assets/css/github.css" rel="stylesheet" /> <link href="../assets/fonts/foundation-icons.css" rel="stylesheet" /> <script src="../assets/js/vendor/modernizr.js"></script> </head> <body> <body class="antialiased hide-extras"> <div class="inner-wrap"> <nav class="top-bar docs-bar hide-for-small" data-topbar> <ul class="title-area"> <li class="name"> <h1><a href="/web/index.html"><i class="fi-paw"></i> WolfScript.io</a></h1> </li> </ul> <section class="top-bar-section"> <ul class="right"> <li class="divider"></li> <li class='divider'></li> <li><a href='../index.html' class=''>Docs</a></li> <li class='divider'></li> <li><a href='../wolfbuk/io/wolfscript/0.html' class=''>WolfBuk API</a></li> <li class='divider'></li> <li><a href='../wolfcanary/io/wolfscript/0.html' class=''>WolfCanary API</a></li> <li class='divider'></li> <li><a href='../wolfnode/globals.html' class=''>WolfNode</a></li> <li class="divider"></li> <li><a href='http://github.com/miningwolf/wolfscript ' class=''> <i class="fi-social-github"></i> Github</a></li> <li class="divider"></li> <li class="has-form"> <a href="../GettingStarted.html " class="small button">Getting Started</a> </li> </ul> </section> </nav> <ul class="breadcrumbs"> <li><a href='../index.html'>Docs </a></li> <li><a href='../wolfnode/globals.html'>wolfnode</a></li> <li class='current'><a href='#'>modules</a></li> </ul> <div class="row"> <div class="large-3 medium-4 columns"> <div class="hide-for-small"> <div class="sidebar"> <nav> <ul class="side-nav accordion" data-accordion> <li class='heading'><a href='../wolfnode/globals.html' class=''>WolfNode</a></li> <li><a href='../wolfnode/globals.html'>globals</a></li> <li class='active'><a href='../wolfnode/modules.html'>modules</a></li> <li><a href='../wolfnode/synopsis.html'>synopsis</a></li> <li class='divider'></li> <li class='heading'><a href='../wolfnode/buffer.html' class=''>Core</a></li> <li class='divider'></li> <li class='heading'><a href='../wolfnode/assert.html' class=''>Other</a></li> <li class='divider'></li> <li class='heading'><a href='../wolfnode/errors.html' class=''>Unknown</a></li> <li class='divider'></li> </ul> </nav> </div> </div> </div> <div class="large-9 medium-8 columns"> <section class="doc-content"> <h1 id="modules">Modules</h1> <pre><code><span class="hljs-attribute">Stability</span>: <span class="hljs-string">3 - Locked</span> </code></pre><!--name=module--> <p>Node.js has a simple module loading system. In Node.js, files and modules are in one-to-one correspondence. As an example, <code>foo.js</code> loads the module <code>circle.js</code> in the same directory.</p> <p>The contents of <code>foo.js</code>:</p> <pre><code class="lang-js"><span class="hljs-keyword">const</span> circle = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./circle.js'</span>); <span class="hljs-built_in">console</span>.log( `The area <span class="hljs-keyword">of</span> a circle <span class="hljs-keyword">of</span> radius <span class="hljs-number">4</span> <span class="hljs-keyword">is</span> ${circle.area(<span class="hljs-number">4</span>)}`); </code></pre> <p>The contents of <code>circle.js</code>:</p> <pre><code class="lang-js">const PI = Math.PI; exports.area = <span class="hljs-function"><span class="hljs-params">(r)</span> =&gt;</span> PI * r * r; exports.circumference = <span class="hljs-function"><span class="hljs-params">(r)</span> =&gt;</span> <span class="hljs-number">2</span> * PI * r; </code></pre> <p>The module <code>circle.js</code> has exported the functions <code>area()</code> and <code>circumference()</code>. To add functions and objects to the root of your module, you can add them to the special <code>exports</code> object.</p> <p>Variables local to the module will be private, as though the module was wrapped in a function. In this example the variable <code>PI</code> is private to <code>circle.js</code>.</p> <p>If you want the root of your module&#39;s export to be a function (such as a constructor) or if you want to export a complete object in one assignment instead of building it one property at a time, assign it to <code>module.exports</code> instead of <code>exports</code>.</p> <p>Below, <code>bar.js</code> makes use of the <code>square</code> module, which exports a constructor:</p> <pre><code class="lang-js"><span class="hljs-keyword">const</span> square = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./square.js'</span>); <span class="hljs-keyword">var</span> mySquare = square(<span class="hljs-number">2</span>); <span class="hljs-built_in">console</span>.log(<span class="hljs-string">`The area of my square is <span class="hljs-subst">${mySquare.area()}</span>`</span>); </code></pre> <p>The <code>square</code> module is defined in <code>square.js</code>:</p> <pre><code class="lang-js"><span class="hljs-regexp">//</span> assigning to exports will <span class="hljs-keyword">not</span> modify <span class="hljs-built_in">module</span>, must use <span class="hljs-built_in">module</span>.exports <span class="hljs-built_in">module</span>.exports = <span class="hljs-function"><span class="hljs-params">(width)</span> =&gt;</span> { <span class="hljs-keyword">return</span> { <span class="hljs-attribute">area</span>: <span class="hljs-function"><span class="hljs-params">()</span> =&gt;</span> width * width }; } </code></pre> <p>The module system is implemented in the <code>require(&quot;module&quot;)</code> module.</p> <h2 id="accessing-the-main-module">Accessing the main module</h2> <!-- type=misc --> <p>When a file is run directly from Node.js, <code>require.main</code> is set to its <code>module</code>. That means that you can determine whether a file has been run directly by testing</p> <pre><code class="lang-js"><span class="hljs-keyword">require</span>.main === <span class="hljs-class"><span class="hljs-keyword">module</span></span> </code></pre> <p>For a file <code>foo.js</code>, this will be <code>true</code> if run via <code>node foo.js</code>, but <code>false</code> if run by <code>require(&#39;./foo&#39;)</code>.</p> <p>Because <code>module</code> provides a <code>filename</code> property (normally equivalent to <code>__filename</code>), the entry point of the current application can be obtained by checking <code>require.main.filename</code>.</p> <h2 id="addenda-package-manager-tips">Addenda: Package Manager Tips</h2> <!-- type=misc --> <p>The semantics of Node.js&#39;s <code>require()</code> function were designed to be general enough to support a number of reasonable directory structures. Package manager programs such as <code>dpkg</code>, <code>rpm</code>, and <code>npm</code> will hopefully find it possible to build native packages from Node.js modules without modification.</p> <p>Below we give a suggested directory structure that could work:</p> <p>Let&#39;s say that we wanted to have the folder at <code>/usr/lib/node/&lt;some-package&gt;/&lt;some-version&gt;</code> hold the contents of a specific version of a package.</p> <p>Packages can depend on one another. In order to install package <code>foo</code>, you may have to install a specific version of package <code>bar</code>. The <code>bar</code> package may itself have dependencies, and in some cases, these dependencies may even collide or form cycles.</p> <p>Since Node.js looks up the <code>realpath</code> of any modules it loads (that is, resolves symlinks), and then looks for their dependencies in the <code>node_modules</code> folders as described <a href="#modules_loading_from_node_modules_folders">here</a>, this situation is very simple to resolve with the following architecture:</p> <ul> <li><code>/usr/lib/node/foo/1.2.3/</code> - Contents of the <code>foo</code> package, version 1.2.3.</li> <li><code>/usr/lib/node/bar/4.3.2/</code> - Contents of the <code>bar</code> package that <code>foo</code> depends on.</li> <li><code>/usr/lib/node/foo/1.2.3/node_modules/bar</code> - Symbolic link to <code>/usr/lib/node/bar/4.3.2/</code>.</li> <li><code>/usr/lib/node/bar/4.3.2/node_modules/*</code> - Symbolic links to the packages that <code>bar</code> depends on.</li> </ul> <p>Thus, even if a cycle is encountered, or if there are dependency conflicts, every module will be able to get a version of its dependency that it can use.</p> <p>When the code in the <code>foo</code> package does <code>require(&#39;bar&#39;)</code>, it will get the version that is symlinked into <code>/usr/lib/node/foo/1.2.3/node_modules/bar</code>. Then, when the code in the <code>bar</code> package calls <code>require(&#39;quux&#39;)</code>, it&#39;ll get the version that is symlinked into <code>/usr/lib/node/bar/4.3.2/node_modules/quux</code>.</p> <p>Furthermore, to make the module lookup process even more optimal, rather than putting packages directly in <code>/usr/lib/node</code>, we could put them in <code>/usr/lib/node_modules/&lt;name&gt;/&lt;version&gt;</code>. Then Node.js will not bother looking for missing dependencies in <code>/usr/node_modules</code> or <code>/node_modules</code>.</p> <p>In order to make modules available to the Node.js REPL, it might be useful to also add the <code>/usr/lib/node_modules</code> folder to the <code>$NODE_PATH</code> environment variable. Since the module lookups using <code>node_modules</code> folders are all relative, and based on the real path of the files making the calls to <code>require()</code>, the packages themselves can be anywhere.</p> <h2 id="all-together-">All Together...</h2> <!-- type=misc --> <p>To get the exact filename that will be loaded when <code>require()</code> is called, use the <code>require.resolve()</code> function.</p> <p>Putting together all of the above, here is the high-level algorithm in pseudocode of what require.resolve does:</p> <pre><code><span class="hljs-function"><span class="hljs-title">require</span><span class="hljs-params">(X)</span></span> from module at path Y <span class="hljs-number">1</span>. If X is <span class="hljs-tag">a</span> core module, <span class="hljs-tag">a</span>. return the core module <span class="hljs-tag">b</span>. STOP <span class="hljs-number">2</span>. If X begins with <span class="hljs-string">'./'</span> or <span class="hljs-string">'/'</span> or <span class="hljs-string">'../'</span> <span class="hljs-tag">a</span>. <span class="hljs-function"><span class="hljs-title">LOAD_AS_FILE</span><span class="hljs-params">(Y + X)</span></span> <span class="hljs-tag">b</span>. <span class="hljs-function"><span class="hljs-title">LOAD_AS_DIRECTORY</span><span class="hljs-params">(Y + X)</span></span> <span class="hljs-number">3</span>. <span class="hljs-function"><span class="hljs-title">LOAD_NODE_MODULES</span><span class="hljs-params">(X, dirname(Y)</span></span>) <span class="hljs-number">4</span>. THROW <span class="hljs-string">"not found"</span> <span class="hljs-function"><span class="hljs-title">LOAD_AS_FILE</span><span class="hljs-params">(X)</span></span> <span class="hljs-number">1</span>. If X is <span class="hljs-tag">a</span> file, load X as JavaScript text. STOP <span class="hljs-number">2</span>. If X<span class="hljs-class">.js</span> is <span class="hljs-tag">a</span> file, load X<span class="hljs-class">.js</span> as JavaScript text. STOP <span class="hljs-number">3</span>. If X<span class="hljs-class">.json</span> is <span class="hljs-tag">a</span> file, parse X<span class="hljs-class">.json</span> to <span class="hljs-tag">a</span> JavaScript Object. STOP <span class="hljs-number">4</span>. If X<span class="hljs-class">.node</span> is <span class="hljs-tag">a</span> file, load X<span class="hljs-class">.node</span> as binary addon. STOP <span class="hljs-function"><span class="hljs-title">LOAD_AS_DIRECTORY</span><span class="hljs-params">(X)</span></span> <span class="hljs-number">1</span>. If X/package<span class="hljs-class">.json</span> is <span class="hljs-tag">a</span> file, <span class="hljs-tag">a</span>. Parse X/package<span class="hljs-class">.json</span>, and look <span class="hljs-keyword">for</span> <span class="hljs-string">"main"</span> field. <span class="hljs-tag">b</span>. let M = X + (json main field) c. <span class="hljs-function"><span class="hljs-title">LOAD_AS_FILE</span><span class="hljs-params">(M)</span></span> <span class="hljs-number">2</span>. If X/index<span class="hljs-class">.js</span> is <span class="hljs-tag">a</span> file, load X/index<span class="hljs-class">.js</span> as JavaScript text. STOP <span class="hljs-number">3</span>. If X/index<span class="hljs-class">.json</span> is <span class="hljs-tag">a</span> file, parse X/index<span class="hljs-class">.json</span> to <span class="hljs-tag">a</span> JavaScript <span class="hljs-tag">object</span>. STOP <span class="hljs-number">4</span>. If X/index<span class="hljs-class">.node</span> is <span class="hljs-tag">a</span> file, load X/index<span class="hljs-class">.node</span> as binary addon. STOP <span class="hljs-function"><span class="hljs-title">LOAD_NODE_MODULES</span><span class="hljs-params">(X, START)</span></span> <span class="hljs-number">1</span>. let DIRS=<span class="hljs-function"><span class="hljs-title">NODE_MODULES_PATHS</span><span class="hljs-params">(START)</span></span> <span class="hljs-number">2</span>. <span class="hljs-keyword">for</span> each DIR <span class="hljs-keyword">in</span> DIRS: <span class="hljs-tag">a</span>. <span class="hljs-function"><span class="hljs-title">LOAD_AS_FILE</span><span class="hljs-params">(DIR/X)</span></span> <span class="hljs-tag">b</span>. <span class="hljs-function"><span class="hljs-title">LOAD_AS_DIRECTORY</span><span class="hljs-params">(DIR/X)</span></span> <span class="hljs-function"><span class="hljs-title">NODE_MODULES_PATHS</span><span class="hljs-params">(START)</span></span> <span class="hljs-number">1</span>. let PARTS = path <span class="hljs-function"><span class="hljs-title">split</span><span class="hljs-params">(START)</span></span> <span class="hljs-number">2</span>. let I = count of PARTS - <span class="hljs-number">1</span> <span class="hljs-number">3</span>. let DIRS = [] <span class="hljs-number">4</span>. while I &gt;= <span class="hljs-number">0</span>, <span class="hljs-tag">a</span>. <span class="hljs-keyword">if</span> PARTS[I] = <span class="hljs-string">"node_modules"</span> CONTINUE c. DIR = path <span class="hljs-function"><span class="hljs-title">join</span><span class="hljs-params">(PARTS[<span class="hljs-number">0</span> .. I] + <span class="hljs-string">"node_modules"</span>)</span></span> <span class="hljs-tag">b</span>. DIRS = DIRS + DIR c. let I = I - <span class="hljs-number">1</span> <span class="hljs-number">5</span>. return DIRS </code></pre><h2 id="caching">Caching</h2> <!--type=misc--> <p>Modules are cached after the first time they are loaded. This means (among other things) that every call to <code>require(&#39;foo&#39;)</code> will get exactly the same object returned, if it would resolve to the same file.</p> <p>Multiple calls to <code>require(&#39;foo&#39;)</code> may not cause the module code to be executed multiple times. This is an important feature. With it, &quot;partially done&quot; objects can be returned, thus allowing transitive dependencies to be loaded even when they would cause cycles.</p> <p>If you want to have a module execute code multiple times, then export a function, and call that function.</p> <h3 id="module-caching-caveats">Module Caching Caveats</h3> <!--type=misc--> <p>Modules are cached based on their resolved filename. Since modules may resolve to a different filename based on the location of the calling module (loading from <code>node_modules</code> folders), it is not a <em>guarantee</em> that <code>require(&#39;foo&#39;)</code> will always return the exact same object, if it would resolve to different files.</p> <p>Additionally, on case-insensitive file systems or operating systems, different resolved filenames can point to the same file, but the cache will still treat them as different modules and will reload the file multiple times. For example, <code>require(&#39;./foo&#39;)</code> and <code>require(&#39;./FOO&#39;)</code> return two different objects, irrespective of whether or not <code>./foo</code> and <code>./FOO</code> are the same file.</p> <h2 id="core-modules">Core Modules</h2> <!--type=misc--> <p>Node.js has several modules compiled into the binary. These modules are described in greater detail elsewhere in this documentation.</p> <p>The core modules are defined within Node.js&#39;s source and are located in the <code>lib/</code> folder.</p> <p>Core modules are always preferentially loaded if their identifier is passed to <code>require()</code>. For instance, <code>require(&#39;http&#39;)</code> will always return the built in HTTP module, even if there is a file by that name.</p> <h2 id="cycles">Cycles</h2> <!--type=misc--> <p>When there are circular <code>require()</code> calls, a module might not have finished executing when it is returned.</p> <p>Consider this situation:</p> <p><code>a.js</code>:</p> <pre><code>console.log(<span class="hljs-symbol">'a</span> starting'); exports.<span class="hljs-keyword">done</span> = <span class="hljs-literal">false</span>; const b = require(<span class="hljs-char">'./b.js'</span>); console.log(<span class="hljs-symbol">'in</span> a, b.<span class="hljs-keyword">done</span> = %j', b.<span class="hljs-keyword">done</span>); exports.<span class="hljs-keyword">done</span> = <span class="hljs-literal">true</span>; console.log(<span class="hljs-symbol">'a</span> done'); </code></pre><p><code>b.js</code>:</p> <pre><code>console.log(<span class="hljs-symbol">'b</span> starting'); exports.<span class="hljs-keyword">done</span> = <span class="hljs-literal">false</span>; const a = require(<span class="hljs-char">'./a.js'</span>); console.log(<span class="hljs-symbol">'in</span> b, a.<span class="hljs-keyword">done</span> = %j', a.<span class="hljs-keyword">done</span>); exports.<span class="hljs-keyword">done</span> = <span class="hljs-literal">true</span>; console.log(<span class="hljs-symbol">'b</span> done'); </code></pre><p><code>main.js</code>:</p> <pre><code><span class="hljs-built_in">console</span>.log(<span class="hljs-string">'main starting'</span>); <span class="hljs-keyword">const</span> a = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./a.js'</span>); <span class="hljs-keyword">const</span> b = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./b.js'</span>); <span class="hljs-built_in">console</span>.log(<span class="hljs-string">'in main, a.done=%j, b.done=%j'</span>, a.done, b.done); </code></pre><p>When <code>main.js</code> loads <code>a.js</code>, then <code>a.js</code> in turn loads <code>b.js</code>. At that point, <code>b.js</code> tries to load <code>a.js</code>. In order to prevent an infinite loop, an <strong>unfinished copy</strong> of the <code>a.js</code> exports object is returned to the <code>b.js</code> module. <code>b.js</code> then finishes loading, and its <code>exports</code> object is provided to the <code>a.js</code> module.</p> <p>By the time <code>main.js</code> has loaded both modules, they&#39;re both finished. The output of this program would thus be:</p> <pre><code>$ node main<span class="hljs-class">.js</span> main starting <span class="hljs-tag">a</span> starting <span class="hljs-tag">b</span> starting <span class="hljs-keyword">in</span> <span class="hljs-tag">b</span>, <span class="hljs-tag">a</span><span class="hljs-class">.done</span> = false <span class="hljs-tag">b</span> done <span class="hljs-keyword">in</span> <span class="hljs-tag">a</span>, <span class="hljs-tag">b</span><span class="hljs-class">.done</span> = true <span class="hljs-tag">a</span> done <span class="hljs-keyword">in</span> main, <span class="hljs-tag">a</span>.done=true, <span class="hljs-tag">b</span>.done=true </code></pre><p>If you have cyclic module dependencies in your program, make sure to plan accordingly.</p> <h2 id="file-modules">File Modules</h2> <!--type=misc--> <p>If the exact filename is not found, then Node.js will attempt to load the required filename with the added extensions: <code>.js</code>, <code>.json</code>, and finally <code>.node</code>.</p> <p><code>.js</code> files are interpreted as JavaScript text files, and <code>.json</code> files are parsed as JSON text files. <code>.node</code> files are interpreted as compiled addon modules loaded with <code>dlopen</code>.</p> <p>A required module prefixed with <code>&#39;/&#39;</code> is an absolute path to the file. For example, <code>require(&#39;/home/marco/foo.js&#39;)</code> will load the file at <code>/home/marco/foo.js</code>.</p> <p>A required module prefixed with <code>&#39;./&#39;</code> is relative to the file calling <code>require()</code>. That is, <code>circle.js</code> must be in the same directory as <code>foo.js</code> for <code>require(&#39;./circle&#39;)</code> to find it.</p> <p>Without a leading &#39;/&#39;, &#39;./&#39;, or &#39;../&#39; to indicate a file, the module must either be a core module or is loaded from a <code>node_modules</code> folder.</p> <p>If the given path does not exist, <code>require()</code> will throw an <a href="errors.html#errors_class_error"><code>Error</code></a> with its <code>code</code> property set to <code>&#39;MODULE_NOT_FOUND&#39;</code>.</p> <h2 id="folders-as-modules">Folders as Modules</h2> <!--type=misc--> <p>It is convenient to organize programs and libraries into self-contained directories, and then provide a single entry point to that library. There are three ways in which a folder may be passed to <code>require()</code> as an argument.</p> <p>The first is to create a <code>package.json</code> file in the root of the folder, which specifies a <code>main</code> module. An example package.json file might look like this:</p> <pre><code>{ "<span class="hljs-attribute">name</span>" : <span class="hljs-value"><span class="hljs-string">"some-library"</span></span>, "<span class="hljs-attribute">main</span>" : <span class="hljs-value"><span class="hljs-string">"./lib/some-library.js"</span> </span>} </code></pre><p>If this was in a folder at <code>./some-library</code>, then <code>require(&#39;./some-library&#39;)</code> would attempt to load <code>./some-library/lib/some-library.js</code>.</p> <p>This is the extent of Node.js&#39;s awareness of package.json files.</p> <p>If there is no package.json file present in the directory, then Node.js will attempt to load an <code>index.js</code> or <code>index.node</code> file out of that directory. For example, if there was no package.json file in the above example, then <code>require(&#39;./some-library&#39;)</code> would attempt to load:</p> <ul> <li><code>./some-library/index.js</code></li> <li><code>./some-library/index.node</code></li> </ul> <h2 id="loading-from-node_modules-folders">Loading from <code>node_modules</code> Folders</h2> <!--type=misc--> <p>If the module identifier passed to <code>require()</code> is not a native module, and does not begin with <code>&#39;/&#39;</code>, <code>&#39;../&#39;</code>, or <code>&#39;./&#39;</code>, then Node.js starts at the parent directory of the current module, and adds <code>/node_modules</code>, and attempts to load the module from that location. Node will not append <code>node_modules</code> to a path already ending in <code>node_modules</code>.</p> <p>If it is not found there, then it moves to the parent directory, and so on, until the root of the file system is reached.</p> <p>For example, if the file at <code>&#39;/home/ry/projects/foo.js&#39;</code> called <code>require(&#39;bar.js&#39;)</code>, then Node.js would look in the following locations, in this order:</p> <ul> <li><code>/home/ry/projects/node_modules/bar.js</code></li> <li><code>/home/ry/node_modules/bar.js</code></li> <li><code>/home/node_modules/bar.js</code></li> <li><code>/node_modules/bar.js</code></li> </ul> <p>This allows programs to localize their dependencies, so that they do not clash.</p> <p>You can require specific files or sub modules distributed with a module by including a path suffix after the module name. For instance <code>require(&#39;example-module/path/to/file&#39;)</code> would resolve <code>path/to/file</code> relative to where <code>example-module</code> is located. The suffixed path follows the same module resolution semantics.</p> <h2 id="loading-from-the-global-folders">Loading from the global folders</h2> <!-- type=misc --> <p>If the <code>NODE_PATH</code> environment variable is set to a colon-delimited list of absolute paths, then Node.js will search those paths for modules if they are not found elsewhere. (Note: On Windows, <code>NODE_PATH</code> is delimited by semicolons instead of colons.)</p> <p><code>NODE_PATH</code> was originally created to support loading modules from varying paths before the current <a href="#modules_all_together">module resolution</a> algorithm was frozen.</p> <p><code>NODE_PATH</code> is still supported, but is less necessary now that the Node.js ecosystem has settled on a convention for locating dependent modules. Sometimes deployments that rely on <code>NODE_PATH</code> show surprising behavior when people are unaware that <code>NODE_PATH</code> must be set. Sometimes a module&#39;s dependencies change, causing a different version (or even a different module) to be loaded as the <code>NODE_PATH</code> is searched.</p> <p>Additionally, Node.js will search in the following locations:</p> <ul> <li>1: <code>$HOME/.node_modules</code></li> <li>2: <code>$HOME/.node_libraries</code></li> <li>3: <code>$PREFIX/lib/node</code></li> </ul> <p>Where <code>$HOME</code> is the user&#39;s home directory, and <code>$PREFIX</code> is Node.js&#39;s configured <code>node_prefix</code>.</p> <p>These are mostly for historic reasons. <strong>You are highly encouraged to place your dependencies locally in <code>node_modules</code> folders.</strong> They will be loaded faster, and more reliably.</p> <h2 id="the-module-object">The <code>module</code> Object</h2> <!-- type=var --> <!-- name=module --> <ul> <li>{Object}</li> </ul> <p>In each module, the <code>module</code> free variable is a reference to the object representing the current module. For convenience, <code>module.exports</code> is also accessible via the <code>exports</code> module-global. <code>module</code> isn&#39;t actually a global but rather local to each module.</p> <h3 id="module-children">module.children</h3> <ul> <li>{Array}</li> </ul> <p>The module objects required by this one.</p> <h3 id="module-exports">module.exports</h3> <ul> <li>{Object}</li> </ul> <p>The <code>module.exports</code> object is created by the Module system. Sometimes this is not acceptable; many want their module to be an instance of some class. To do this, assign the desired export object to <code>module.exports</code>. Note that assigning the desired object to <code>exports</code> will simply rebind the local <code>exports</code> variable, which is probably not what you want to do.</p> <p>For example suppose we were making a module called <code>a.js</code></p> <pre><code class="lang-js">const EventEmitter = <span class="hljs-built_in">require</span>(<span class="hljs-string">'events'</span>); <span class="hljs-built_in">module</span>.exports = <span class="hljs-keyword">new</span> EventEmitter(); <span class="hljs-regexp">//</span> Do some work, <span class="hljs-keyword">and</span> after some time emit <span class="hljs-regexp">//</span> the <span class="hljs-string">'ready'</span> event from the <span class="hljs-built_in">module</span> itself. setTimeout(<span class="hljs-function"><span class="hljs-params">()</span> =&gt;</span> { <span class="hljs-built_in">module</span>.exports.emit(<span class="hljs-string">'ready'</span>); }, <span class="hljs-number">1000</span>); </code></pre> <p>Then in another file we could do</p> <pre><code class="lang-js">const a = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./a'</span>); a.<span class="hljs-literal">on</span>(<span class="hljs-string">'ready'</span>, <span class="hljs-function"><span class="hljs-params">()</span> =&gt;</span> { <span class="hljs-built_in">console</span>.log(<span class="hljs-string">'module a is ready'</span>); }); </code></pre> <p>Note that assignment to <code>module.exports</code> must be done immediately. It cannot be done in any callbacks. This does not work:</p> <p>x.js:</p> <pre><code class="lang-js">setTimeout(<span class="hljs-function"><span class="hljs-params">()</span> =&gt;</span> { <span class="hljs-built_in">module</span>.exports = { <span class="hljs-attribute">a</span>: <span class="hljs-string">'hello'</span> }; }, <span class="hljs-number">0</span>); </code></pre> <p>y.js:</p> <pre><code class="lang-js"><span class="hljs-keyword">const</span> x = <span class="hljs-built_in">require</span>(<span class="hljs-string">'./x'</span>); <span class="hljs-built_in">console</span>.log(x.a); </code></pre> <h4 id="exports-alias">exports alias</h4> <p>The <code>exports</code> variable that is available within a module starts as a reference to <code>module.exports</code>. As with any variable, if you assign a new value to it, it is no longer bound to the previous value.</p> <p>To illustrate the behavior, imagine this hypothetical implementation of <code>require()</code>:</p> <pre><code class="lang-js"><span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-title">require</span>(<span class="hljs-params">...</span>) </span>{ <span class="hljs-comment">// ...</span> ((<span class="hljs-built_in">module</span>, exports) =&gt; { <span class="hljs-comment">// Your module code here</span> exports = some_func; <span class="hljs-comment">// re-assigns exports, exports is no longer</span> <span class="hljs-comment">// a shortcut, and nothing is exported.</span> <span class="hljs-built_in">module</span>.exports = some_func; <span class="hljs-comment">// makes your module export 0</span> })(<span class="hljs-built_in">module</span>, <span class="hljs-built_in">module</span>.exports); <span class="hljs-keyword">return</span> <span class="hljs-built_in">module</span>; } </code></pre> <p>As a guideline, if the relationship between <code>exports</code> and <code>module.exports</code> seems like magic to you, ignore <code>exports</code> and only use <code>module.exports</code>.</p> <h3 id="module-filename">module.filename</h3> <ul> <li>{String}</li> </ul> <p>The fully resolved filename to the module.</p> <h3 id="module-id">module.id</h3> <ul> <li>{String}</li> </ul> <p>The identifier for the module. Typically this is the fully resolved filename.</p> <h3 id="module-loaded">module.loaded</h3> <ul> <li>{Boolean}</li> </ul> <p>Whether or not the module is done loading, or is in the process of loading.</p> <h3 id="module-parent">module.parent</h3> <ul> <li>{Object} Module object</li> </ul> <p>The module that first required this one.</p> <h3 id="module-require-id-">module.require(id)</h3> <ul> <li><code>id</code> {String}</li> <li>Return: {Object} <code>module.exports</code> from the resolved module</li> </ul> <p>The <code>module.require</code> method provides a way to load a module as if <code>require()</code> was called from the original module.</p> <p>Note that in order to do this, you must get a reference to the <code>module</code> object. Since <code>require()</code> returns the <code>module.exports</code>, and the <code>module</code> is typically <em>only</em> available within a specific module&#39;s code, it must be explicitly exported in order to be used.</p> </section> </div> </div> </div> <script src="../assets/js/vendor/jquery.js"></script> <script src="../assets/js/vendor/fastclick.js"></script> <script src="../assets/js/foundation.min.js"></script> <script> $(document).foundation(); </script> </body> </html>
visiondataset/datasets/templates/datasets/datum_list.html
rafaelolg/visiondataset
{%extends "base_with_sidebar.html"%} {% load i18n comments %} {% block title %}{{dataset.name}}{% endblock title%} {%block sidebar%} <ul class="nav nav-list"> <li class="nav-header">{%trans "Actions" %}</li> <li class="active"> <a href="{% url datasets_dataset_detail dataset.id %}"> <i class="icon-th-large icon-white"></i>{%trans "View dataset"%} {{dataset.name}}</a> </li> <li class=""><a href="{% url datasets_datum_create dataset.id %}"><i class="icon-plus"></i>{%trans "Add datum"%}</a></li> {%if dataset.owner == user or user.is_superuser %} <li class=""><a href="{% url datasets_dataset_colaborators dataset.id %}"><i class="icon-user"></i>{%trans "Manage colaborators"%}</a></li> {%endif%} <li class=""><a href="{% url datasets_dataset_zip dataset.id %}"><i class="icon-download"></i>{%trans "Download Dataset"%}</a></li> <li class=""><a href="{% url datasets_dataset_list %}"><i class="icon-arrow-left"></i>{%trans "Back"%}</a></li> </ul> {%endblock%} {% block content %} <div class='dataset-description'> <h2>{{dataset.name}}</h2> </div> {% include "pagination.html" %} <div id="list-{{dt.grouper}}"> <ul class='datum-list thumbnails'> {% regroup datum_list|dictsort:"dtype_id" by dtype as dtype_list %} {% for dt in dtype_list %} {% for d in dt.list %} <li class='span2'> <a class="thumb-link" href="{{ d.get_absolute_url }}"> <div class='thumbnail'> <div class="datum-image"> <p> <strong class="datum-name">{{ d.name|truncatechars:11 }}</strong> </p> <img src="{{d.thumbnail_url}}"/> </div> </div> </a> </li> {% endfor %} {% endfor %} </ul> </div> {% include "pagination.html" %} {%include 'datasets/colaborators_list_snippet.html' %} <h4>{% trans "Comments" %}</h4> <div class="comments"> {% render_comment_list for dataset %} {% render_comment_form for dataset %} </div> {% endblock %}
lang.css
PiratePartyGR/gnu-taler-site
body.en :lang(de) { display: none; } body.en :lang(fr) { display: none; } body.en :lang(it) { display: none; } body.de :lang(en) { display: none; } body.de :lang(fr) { display: none; } body.de :lang(it) { display: none; } body.fr :lang(de) { display: none; } body.fr :lang(en) { display: none; } body.fr :lang(it) { display: none; } body.it :lang(de) { display: none; } body.it :lang(en) { display: none; } body.it :lang(fr) { display: none; }
doc/glib-2.0/GLib.NormalizeMode.html
themightyug/ledborg-server
<?xml version="1.0" encoding="utf-8"?> <html> <head> <title>GLib.NormalizeMode -- Vala Binding Reference</title> <link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript"> </script> </head> <body> <div class="site_header">GLib.NormalizeMode Reference Manual</div> <div class="site_body"> <div class="site_navigation"> <ul class="navi_main"> <li class="package_index"><a href="../index.html">Packages</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="package"><a href="index.htm">glib-2.0</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="namespace"><a href="GLib.html">GLib</a></li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="enum">NormalizeMode</li> </ul> <hr class="navi_hr"/> <ul class="navi_main"> <li class="enumvalue"><a href="GLib.NormalizeMode.ALL.html">ALL</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.ALL_COMPOSE.html">ALL_COMPOSE</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.DEFAULT.html">DEFAULT</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.DEFAULT_COMPOSE.html">DEFAULT_COMPOSE</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFC.html">NFC</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFD.html">NFD</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFKC.html">NFKC</a></li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFKD.html">NFKD</a></li> </ul> </div> <div class="site_content"> <h1 class="main_title">NormalizeMode</h1> <hr class="main_hr"/> <h2 class="main_title">Description:</h2> <div class="main_code_definition"><span class="main_keyword">public</span> <span class="main_keyword">enum</span> <b><span css="enum">NormalizeMode</span></b> </div><br/> <div class="namespace_note"><b>Namespace:</b> GLib</div> <div class="package_note"><b>Package:</b> glib-2.0</div> <h2 class="main_title">Content:</h2> <h3 class="main_title">Enum values:</h3> <ul class="navi_inline"> <li class="enumvalue"><a href="GLib.NormalizeMode.DEFAULT.html">DEFAULT</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFD.html">NFD</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.DEFAULT_COMPOSE.html">DEFAULT_COMPOSE</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFC.html">NFC</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.ALL.html">ALL</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFKD.html">NFKD</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.ALL_COMPOSE.html">ALL_COMPOSE</a> - </li> <li class="enumvalue"><a href="GLib.NormalizeMode.NFKC.html">NFKC</a> - </li> </ul> </div> </div><br/> <div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a> </div> </body> </html>
doc/html/api/qdomcomment.html
baoboa/pyqt5
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>QDomComment &#8212; PyQt 5.8.2 Reference Guide</title> <link rel="stylesheet" href="../_static/classic.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../', VERSION: '5.8.2', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt' }; </script> <script type="text/javascript" src="../_static/jquery.js"></script> <script type="text/javascript" src="../_static/underscore.js"></script> <script type="text/javascript" src="../_static/doctools.js"></script> <link rel="shortcut icon" href="../_static/logo_tn.ico"/> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="QDomDocument" href="qdomdocument.html" /> <link rel="prev" title="QDomCharacterData" href="qdomcharacterdata.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="qdomdocument.html" title="QDomDocument" accesskey="N">next</a> |</li> <li class="right" > <a href="qdomcharacterdata.html" title="QDomCharacterData" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="../index.html">PyQt 5.8.2 Reference Guide</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../class_reference.html" accesskey="U">PyQt5 Class Reference</a> &#187;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="qdomcomment"> <h1>QDomComment<a class="headerlink" href="#qdomcomment" title="Permalink to this headline">¶</a></h1> <dl class="class"> <dt id="PyQt5.QtXml.QDomComment"> <em class="property">class </em><code class="descclassname">PyQt5.QtXml.</code><code class="descname">QDomComment</code><a class="headerlink" href="#PyQt5.QtXml.QDomComment" title="Permalink to this definition">¶</a></dt> <dd><p><a class="reference external" href="https://doc.qt.io/qt-5/qdomcomment.html">C++ documentation</a></p> </dd></dl> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <p class="logo"><a href="../index.html"> <img class="logo" src="../_static/logo.png" alt="Logo"/> </a></p> <h4>Previous topic</h4> <p class="topless"><a href="qdomcharacterdata.html" title="previous chapter">QDomCharacterData</a></p> <h4>Next topic</h4> <p class="topless"><a href="qdomdocument.html" title="next chapter">QDomDocument</a></p> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="../search.html" method="get"> <div><input type="text" name="q" /></div> <div><input type="submit" value="Go" /></div> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../py-modindex.html" title="Python Module Index" >modules</a> |</li> <li class="right" > <a href="qdomdocument.html" title="QDomDocument" >next</a> |</li> <li class="right" > <a href="qdomcharacterdata.html" title="QDomCharacterData" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="../index.html">PyQt 5.8.2 Reference Guide</a> &#187;</li> <li class="nav-item nav-item-1"><a href="../class_reference.html" >PyQt5 Class Reference</a> &#187;</li> </ul> </div> <div class="footer" role="contentinfo"> &#169; Copyright 2015 Riverbank Computing Limited. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.5.3. </div> </body> </html>
javadocs/com/github/computerdude5000/terracrafttools/modules/StaffActivity.html
computerdude5000/InfiniumCraftTools
<!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) on Thu Apr 11 12:49:35 EDT 2013 --> <title>StaffActivity</title> <meta name="date" content="2013-04-11"> <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="StaffActivity"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StaffActivity.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="../../../../../com/github/computerdude5000/terracrafttools/modules/SnowDrops.html" title="class in com.github.computerdude5000.terracrafttools.modules"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.Staff.html" title="class in com.github.computerdude5000.terracrafttools.modules"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/github/computerdude5000/terracrafttools/modules/StaffActivity.html" target="_top">Frames</a></li> <li><a href="StaffActivity.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:&nbsp;</li> <li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.github.computerdude5000.terracrafttools.modules</div> <h2 title="Class StaffActivity" class="title">Class StaffActivity</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.github.computerdude5000.terracrafttools.modules.staff.StaffActivity</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd> <a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html" title="interface in com.github.computerdude5000.terracrafttools.modules">SuperSoapToolsModule</a>, org.bukkit.event.Listener </dd> </dl> <hr> <br> <pre>public class <span class="strong">StaffActivity</span> extends java.lang.Object implements <a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html" title="interface in com.github.computerdude5000.terracrafttools.modules">SuperSoapToolsModule</a>, org.bukkit.event.Listener</pre> <dl> <dt><span class="strong">Author:</span></dt> <dd>jjkoletar</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested_class_summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation"> <caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Class and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>(package private) static class&nbsp;</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.Staff.html" title="class in com.github.computerdude5000.terracrafttools.modules">StaffActivity.Staff</a></strong></code>&nbsp; </td> </tr> </table> </li> </ul> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.util.Date</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#loggingBegan">loggingBegan</a></strong></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#moduleLoggerTag">moduleLoggerTag</a></strong></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private <a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools">TerraCraftTools</a></code> </td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#plugin">plugin</a></strong></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private java.util.Map&lt;java.lang.String,<a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.Staff.html" title="class in com.github.computerdude5000.terracrafttools.modules">StaffActivity.Staff</a>&gt; </code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#sessions">sessions</a></strong></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private java.util.List&lt;java.lang.String&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#staffGroups">staffGroups</a></strong></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private int</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#taskId">taskId</a></strong></code>&nbsp; </td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#StaffActivity()">StaffActivity</a></strong>()</code>&nbsp; </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#callCommand(org.bukkit.command.CommandSender, org.bukkit.command.Command, java.lang.String, java.lang.String[])">callCommand</a></strong>(org.bukkit.command.CommandSender&nbsp;sender, org.bukkit.command.Command&nbsp;command, java.lang.String&nbsp;label, java.lang.String[]&nbsp;args)</code> <div class="block">Returns true or false when a player types a command</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#deinitModule()">deinitModule</a></strong>()</code> <div class="block">deinitModule disables the module called by <a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools"><code>TerraCraftTools</code></a> </div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#flush()">flush</a></strong>()</code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#initModule(com.github.computerdude5000.terracrafttools.TerraCraftTools)">initModule</a></strong>(<a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools">TerraCraftTools</a>&nbsp;sst)</code> <div class="block">initModule enables the module called by <a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools"><code>TerraCraftTools</code></a> </div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>private boolean</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#isStaff(org.bukkit.entity.Player)">isStaff</a></strong>(org.bukkit.entity.Player&nbsp;p)</code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#onPlayerJoin(org.bukkit.event.player.PlayerJoinEvent)">onPlayerJoin</a></strong>(org.bukkit.event.player.PlayerJoinEvent&nbsp;event)</code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#onPlayerMove(org.bukkit.event.player.PlayerMoveEvent)">onPlayerMove</a></strong>(org.bukkit.event.player.PlayerMoveEvent&nbsp;event)</code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>private void</code></td> <td class="colLast"><code><strong><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.html#parseActivity()">parseActivity</a></strong>()</code>&nbsp; </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field_detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="plugin"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>plugin</h4> <pre>private&nbsp;<a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools">TerraCraftTools</a> plugin</pre> </li> </ul> <a name="loggingBegan"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>loggingBegan</h4> <pre>private&nbsp;java.util.Date loggingBegan</pre> </li> </ul> <a name="sessions"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>sessions</h4> <pre>private&nbsp;java.util.Map&lt;java.lang.String,<a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.Staff.html" title="class in com.github.computerdude5000.terracrafttools.modules">StaffActivity.Staff</a>&gt; sessions</pre> </li> </ul> <a name="staffGroups"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>staffGroups</h4> <pre>private&nbsp;java.util.List&lt;java.lang.String&gt; staffGroups</pre> </li> </ul> <a name="taskId"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>taskId</h4> <pre>private&nbsp;int taskId</pre> </li> </ul> <a name="moduleLoggerTag"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>moduleLoggerTag</h4> <pre>private&nbsp;java.lang.String moduleLoggerTag</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="StaffActivity()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>StaffActivity</h4> <pre>public&nbsp;StaffActivity()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="initModule(com.github.computerdude5000.terracrafttools.TerraCraftTools)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>initModule</h4> <pre>public&nbsp;void&nbsp;initModule(<a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools">TerraCraftTools</a>&nbsp;sst)</pre> <div class="block">initModule enables the module called by <a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools"><code>TerraCraftTools</code></a> </div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html#initModule(com.github.computerdude5000.terracrafttools.TerraCraftTools)">initModule</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html" title="interface in com.github.computerdude5000.terracrafttools.modules">SuperSoapToolsModule</a></code> </dd> </dl> </li> </ul> <a name="parseActivity()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>parseActivity</h4> <pre>private&nbsp;void&nbsp;parseActivity()</pre> </li> </ul> <a name="flush()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>flush</h4> <pre>private&nbsp;void&nbsp;flush()</pre> </li> </ul> <a name="isStaff(org.bukkit.entity.Player)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isStaff</h4> <pre>private&nbsp;boolean&nbsp;isStaff(org.bukkit.entity.Player&nbsp;p)</pre> </li> </ul> <a name="onPlayerMove(org.bukkit.event.player.PlayerMoveEvent)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>onPlayerMove</h4> <pre>public&nbsp;void&nbsp;onPlayerMove(org.bukkit.event.player.PlayerMoveEvent&nbsp;event)</pre> </li> </ul> <a name="onPlayerJoin(org.bukkit.event.player.PlayerJoinEvent)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>onPlayerJoin</h4> <pre>public&nbsp;void&nbsp;onPlayerJoin(org.bukkit.event.player.PlayerJoinEvent&nbsp;event)</pre> </li> </ul> <a name="deinitModule()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>deinitModule</h4> <pre>public&nbsp;void&nbsp;deinitModule()</pre> <div class="block">deinitModule disables the module called by <a href="../../../../../com/github/computerdude5000/terracrafttools/TerraCraftTools.html" title="class in com.github.computerdude5000.terracrafttools"><code>TerraCraftTools</code></a> </div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html#deinitModule()">deinitModule</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html" title="interface in com.github.computerdude5000.terracrafttools.modules">SuperSoapToolsModule</a></code> </dd> </dl> </li> </ul> <a name="callCommand(org.bukkit.command.CommandSender, org.bukkit.command.Command, java.lang.String, java.lang.String[])"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>callCommand</h4> <pre>public&nbsp;boolean&nbsp;callCommand(org.bukkit.command.CommandSender&nbsp;sender, org.bukkit.command.Command&nbsp;command, java.lang.String&nbsp;label, java.lang.String[]&nbsp;args)</pre> <div class="block">Returns true or false when a player types a command</div> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html#callCommand(org.bukkit.command.CommandSender, org.bukkit.command.Command, java.lang.String, java.lang.String[])">callCommand</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/SuperSoapToolsModule.html" title="interface in com.github.computerdude5000.terracrafttools.modules">SuperSoapToolsModule</a></code> </dd> <dt><span class="strong">Parameters:</span></dt> <dd><code>sender</code> - sender who sent the message</dd> <dd><code>command</code> - command that was sent</dd> <dd><code>label</code> - idk what this does.</dd> <dd><code>args</code> - arguments that were sent along with the command</dd> <dt><span class="strong">Returns:</span></dt> <dd>true or false</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><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StaffActivity.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="../../../../../com/github/computerdude5000/terracrafttools/modules/SnowDrops.html" title="class in com.github.computerdude5000.terracrafttools.modules"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../com/github/computerdude5000/terracrafttools/modules/StaffActivity.Staff.html" title="class in com.github.computerdude5000.terracrafttools.modules"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/github/computerdude5000/terracrafttools/modules/StaffActivity.html" target="_top">Frames</a></li> <li><a href="StaffActivity.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:&nbsp;</li> <li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
index.html
kalaspuffar/superstars
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="generator" content="Polymer Starter Kit"> <meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes"> <title>Superstars!</title> <meta name="description" content="The new social network sweeping the nation."> <!-- If deploying to a non-root path, replace href="/" with the full path to the project root. For example: href="/polymer-starter-kit/relative-path-example/" --> <base href="/"> <link rel="icon" href="images/favicon.ico"> <!-- See https://goo.gl/OOhYW5 --> <link rel="manifest" href="manifest.json"> <!-- See https://goo.gl/qRE0vM --> <meta name="theme-color" content="#9c27b0"> <!-- Add to homescreen for Chrome on Android. Fallback for manifest.json --> <meta name="mobile-web-app-capable" content="yes"> <meta name="application-name" content="Superstars"> <!-- Add to homescreen for Safari on iOS --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="apple-mobile-web-app-title" content="Superstars"> <!-- Homescreen icons --> <link rel="apple-touch-icon" sizes="72x72" href="images/manifest/icon-72x72.png"> <link rel="apple-touch-icon" sizes="96x96" href="images/manifest/icon-96x96.png"> <link rel="apple-touch-icon" sizes="144x144" href="images/manifest/icon-144x144.png"> <link rel="apple-touch-icon" sizes="192x192" href="images/manifest/icon-192x192.png"> <link href="https://fonts.googleapis.com/css?family=Bonbon" rel="stylesheet"> <!-- Tile icon for Windows 8 (144x144 + tile color) --> <meta name="msapplication-TileImage" content="images/manifest/icon-144x144.png"> <meta name="msapplication-TileColor" content="#9c27b0"> <meta name="msapplication-tap-highlight" content="no"> <script> // Register the base URL const baseUrl = document.querySelector('base').href; // Load and register pre-caching Service Worker if ('serviceWorker' in navigator) { window.addEventListener('load', function() { navigator.serviceWorker.register(baseUrl + 'service-worker.js'); }); } </script> <!-- Load webcomponents-loader.js to check and load any polyfills your browser needs --> <script src="bower_components/webcomponentsjs/webcomponents-loader.js"></script> <!-- Load your application shell --> <link rel="import" href="src/my-app.html"> <!-- Add any global styles for body, document, etc. --> <style> html, body { margin: 0; padding: 0; height: 100vh; } body { margin: 0; font-family: 'Roboto', 'Noto', sans-serif; line-height: 1.5; min-height: 100vh; background-color: #eeeeee; } </style> </head> <body> <my-app></my-app> <noscript> Please enable JavaScript to view this website. </noscript> <!-- Built with love using Polymer Starter Kit --> </body> </html>
aquamacs/doc/Aquamacs Help/org/no_002dexpand.html
xfq/aquamacs-emacs
<html lang="en"> <head> <title>no-expand - The Org Manual</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="The Org Manual"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Specific-header-arguments.html#Specific-header-arguments" title="Specific header arguments"> <link rel="prev" href="comments.html#comments" title="comments"> <link rel="next" href="session.html#session" title="session"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This manual is for Org version 7.4. Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled ``GNU Free Documentation License.'' (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom.'' This document is part of a collection distributed under the GNU Free Documentation License. If you want to distribute this document separately from the collection, you can do so by adding a copy of the license to the document, as described in section 6 of the license. --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="no-expand"></a> <a name="no_002dexpand"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="session.html#session">session</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="comments.html#comments">comments</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Specific-header-arguments.html#Specific-header-arguments">Specific header arguments</a> <hr> </div> <h5 class="subsubsection">14.8.2.8 <code>:no-expand</code></h5> <p>By default, code blocks are expanded with <code>org-babel-expand-src-block</code> during tangling. This has the effect of assigning values to variables specified with <code>:var</code> (see <a href="var.html#var">var</a>), and of replacing &ldquo;noweb&rdquo; references (see <a href="Noweb-reference-syntax.html#Noweb-reference-syntax">Noweb reference syntax</a>) with their targets. The <code>:no-expand</code> header argument can be used to turn off this behavior. </body></html>
BotzzaroniDev/GATE_Developer_8.4/plugins/Machine_Learning/doc/javadoc/gate/creole/ml/svmlight/package-use.html
masterucm1617/botzzaroni
<!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_102) on Tue Feb 21 18:04:20 GMT 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Package gate.creole.ml.svmlight (GATE learning plugin JavaDoc)</title> <meta name="date" content="2017-02-21"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package gate.creole.ml.svmlight (GATE learning plugin JavaDoc)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?gate/creole/ml/svmlight/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package gate.creole.ml.svmlight" class="title">Uses of Package<br>gate.creole.ml.svmlight</h1> </div> <div class="contentContainer">No usage of gate.creole.ml.svmlight</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?gate/creole/ml/svmlight/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;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>
yawspisw/templates/historychart.html
KaeroDot/YawsPi
$def with (frm, chartstr) <!DOCTYPE html> <html> <head> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"></meta> <script type="text/javascript" src="static/pygal.js-gh-pages/2.0.x/pygal-tooltips.min.js"></script> <title>YawsPi: History chart</title> </head> <body> <form method="post"> Set X axis range to: <button name="fullrange" title="Set x axis to all data"><img src="static/icons/xrange.png" align="absmiddle"> All data</button> <button name="last2weeks" title="Set x axis to last 2 weeks"><img src="static/icons/xrange.png" align="absmiddle"> Last 2 weeks</button> <button name="last2days" title="Set x axis to last 2 days"><img src="static/icons/xrange.png" align="absmiddle"> Last 2 days</button> <br> or manually from date $:frm.xminY.render() $if frm.xminY.note: <strong class="wrong">$frm.xminY.note</strong> / $:frm.xminM.render() $if frm.xminM.note: <strong class="wrong">$frm.xminM.note</strong> / $:frm.xminD.render() $if frm.xminD.note: <strong class="wrong">$frm.xminD.note</strong> hour $:frm.xminH.render() $if frm.xminH.note: <strong class="wrong">$frm.xminH.note</strong> , to date $:frm.xmaxY.render() $if frm.xmaxY.note: <strong class="wrong">$frm.xmaxY.note</strong> / $:frm.xmaxM.render() $if frm.xmaxM.note: <strong class="wrong">$frm.xmaxM.note</strong> / $:frm.xmaxD.render() $if frm.xmaxD.note: <strong class="wrong">$frm.xmaxD.note</strong> hour $:frm.xmaxH.render() $if frm.xmaxH.note: <strong class="wrong">$frm.xmaxH.note</strong> <button name="setminmax" title="Set x axis to input values"><img src="static/icons/submit.png" align="absmiddle"> Set</button> <p></p> <button name="back" title="Back to history page"><img src="static/icons/back.png" align="absmiddle"> Back to history page</button> </form> <img src="$:chartstr"> </body> </html>
webapp/static/css/main.css
nocarryr/s3-logparser
body{ background-color: rgb(82, 82, 82); color: rgb(240, 240, 240); } a:link{ color: rgb(200, 220, 255); } a:visited{ color: rgb(174, 175, 255); } a:hover{ color: rgb(217, 231, 255) } .panel{ background-color: rgba(255, 255, 255, 0.2); /*border-top-right-radius: 1em 1em; border-bottom-right-radius: 1em 1em;*/ border-style: solid; border-width: 1px; border-color: rgb(200, 200, 200); } .collections-nav{ display: flex; flex-direction: row; } .collections-nav ul{ flex: auto; flex-direction: row; display: flex; list-style-type: none; } .collections-nav li{ flex: auto; } .row{ display: flex; flex-flow: row; } .row > .main{ flex: 0 0 80%; order: 1; max-width: 80%; overflow-x: scroll; } .row > .sidebar{ flex: 0 1 20%; order: 2; max-width: 20%; } .sidebar{ display: flex; flex-direction: column; text-align: center; padding-left: 1em; } .sidebar ul{ list-style-type: none; padding-left: 0px; } .pagination{ display: inline-flex; } .pagination a,p{ margin: 1em; } .log-table{ border-collapse: collapse; } .log-table th,td{ border-width: 1px; border-style: solid; font-family: monospace; font-size:.85em; } .field-header{ } .field-header-link{ display: inline-flex; } .field-header-link i{ margin-left: 1em; } .log-entry-row{ } .log-entry-field{ } .log-entry-field:hover{ background-color: rgba(255, 255, 255, .2); } .hidden{ display: none; } .button{ background-color: rgb(140, 140, 140); width: 100%; padding-top: 2px; padding-bottom: 2px; margin-bottom: 2px; border-style: solid; border-width: 1px; border-color: white; color: rgb(245, 245, 245); } .button:hover{ background-color: rgb(175, 175, 175); } .button.active{ background-color: hsl(224, 100%, 77%); color: black; } .button.active:hover{ background-color: hsl(224, 100%, 87%); } .field-values{ list-style-type: none; } .field-values li{ border-width: 1px; border-style: solid; font-family: monospace; margin-top: 2px; margin-bottom: 2px; }
doc/html/msg/particle.html
guilhermelawless/pfuclt_omni_dataset
<html> <head> <title>pfuclt_omni_dataset/particle Documentation</title> <link type="text/css" rel="stylesheet" href="../msg-styles.css" /> </head> <body> <div id="container"> <h1 class="msg-title"><a href="../index-msg.html">pfuclt_omni_dataset</a>/particle Message</h1> <div class="msg"> <h2>File: <span class="filename">pfuclt_omni_dataset/particle.msg</filename></h2> <h2>Raw Message Definition</h2> <div class="raw-msg"> float32[]&nbsp;particle<br/><br/> </div> <h2>Compact Message Definition</h2> <div class="fancy-msg"> float32[] particle<br /> </div> </div> <p class="footer"><small><em>autogenerated on Tue, 04 Jul 2017 19:38:40</em></small></p> </div> </body> </html>
discovery/resources/fan/366/index.html
Timathom/timathom.github.io
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head prefix="og: http://ogp.me/ns# dc: http://purl.org/dc/terms/"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <title>Fan page: Tip Daniels</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> <style type="text/css"> #top{ width: 100%; float: left; } #place{ width: 100%; float: left; } #address{ width: 15%; float: left; } #sgvzl{ width: 80%; float: left; } #credits{ width: 100%; float: left; clear: both; } #location-marker{ width: 1em; } #male-glyph{ width: 1em; } </style> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <script type="text/javascript" src="https://www.google.com/jsapi"></script> <script type="text/javascript" id="sgvzlr_script" src="http://mgskjaeveland.github.io/sgvizler/v/0.6/sgvizler.min.js"></script> <script type="text/javascript"> sgvizler .defaultEndpointURL("http://bibfram.es/fuseki/cobra/query"); //// Leave this as is. Ready, steady, go! $(document).ready(sgvizler.containerDrawAll); </script> <!-- Latest compiled and minified JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <meta name="title" content="Tip Daniels"> <meta property="dc:title" content="Tip Daniels"> <meta property="og:title" content="Tip Daniels"> <meta name="author" content="Tip Daniels"> <meta name="dc:creator" content="Tip Daniels"> </head> <body prefix="cbo: http://comicmeta.org/cbo/ dc: http://purl.org/dc/elements/1.1/ dcterms: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ oa: http://www.w3.org/ns/oa# rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# schema: http://schema.org/ skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#"> <div id="wrapper" class="container" about="http://ivmooc-cobra2.github.io/resources/fan/366" typeof="http://comicmeta.org/cbo/Fan"> <div id="top"> <h1> <span property="http://schema.org/name">Tip Daniels</span> <img id="male-glyph" src="/static/resources/img/man.svg" alt="male glyph"> </h1> <dl> <dt> <label for="http://comicmeta.org/cbo/Fan"> <span>type</span> </label> </dt> <dd> <span>http://comicmeta.org/cbo/Fan</span> </dd> </dl> <dl> <dt> <label for="http://schema.org/name"> <span> <a href="http://schema.org/name">name</a> </span> </label> </dt> <dd> <span property="http://schema.org/name">Tip Daniels</span> </dd> </dl> </div> <div id="place" rel="http://schema.org/address" resource="http://ivmooc-cobra2.github.io/resources/place/353" typeof="http://schema.org/Place"> <h2>Location <a href="http://ivmooc-cobra2.github.io/resources/place/353"> <img id="location-marker" src="/static/resources/img/location.svg" alt="location marker glyph"> </a> </h2> <div id="address" rel="http://schema.org/address" typeof="http://schema.org/PostalAddress" resource="http://ivmooc-cobra2.github.io/resources/place/353/address"> <dl> <dt> <label for="http://schema.org/streetAddress"> <span> <a href="http://schema.org/streetAddress">Street address</a> </span> </label> </dt> <dd> <span property="http://schema.org/streetAddress">971 Bonneville Way</span> </dd> </dl> <dl> <dt> <label for="http://schema.org/addressLocality"> <span> <a href="http://schema.org/addressLocality">Address locality</a> </span> </label> </dt> <dd> <span property="http://schema.org/addressLocality">Toole</span> </dd> </dl> <dl> <dt> <label for="http://schema.org/addressRegion"> <span> <a href="http://schema.org/addressRegion">Address region</a> </span> </label> </dt> <dd> <span property="http://schema.org/addressRegion">UT</span> </dd> </dl> <dl> <dt> <label for="http://schema.org/postalCode"> <span> <a href="http://schema.org/postalCode">Postal code</a> </span> </label> </dt> <dd> <span property="http://schema.org/postalCode">NULL</span> </dd> </dl> <dl> <dt> <label for="http://schema.org/addressCountry"> <span> <a href="http://schema.org/addressCountry">Address country</a> </span> </label> </dt> <dd> <span property="http://schema.org/addressCountry">US</span> </dd> </dl> </div> <div id="sgvzl" data-sgvizler-endpoint="http://bibfram.es/fuseki/cobra/query" data-sgvizler-query="PREFIX dc: <http://purl.org/dc/elements/1.1/&gt; &#xA;PREFIX cbo: <http://comicmeta.org/cbo/&gt; &#xA;PREFIX foaf: <http://xmlns.com/foaf/0.1/&gt;&#xA;PREFIX schema: <http://schema.org/&gt;&#xA;SELECT ?lat ?long &#xA;WHERE {&#xA; ?fan schema:address ?Place .&#xA; ?Place schema:geo ?Geo .&#xA; ?Geo schema:latitude ?lat .&#xA; ?Geo schema:longitude ?long .&#xA; FILTER(?fan = <http://ivmooc-cobra2.github.io/resources/fan/366&gt;)&#xA;}" data-sgvizler-chart="google.visualization.GeoChart" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div> </div> <div id="letter" rel="http://purl.org/dc/elements/1.1/creator" resource="http://ivmooc-cobra2.github.io/resources/letter/393 http://ivmooc-cobra2.github.io/resources/letter/411"> <dl> <dt> <label for="http://schema.org/streetAddress"> <span> <a href="http://schema.org/streetAddress">Street address</a> </span> </label> </dt> <dd> <span property="http://schema.org/streetAddress">971 Bonneville Way</span> </dd> </dl> </div> <div id="credits">Icons made by <a href="http://www.flaticon.com/authors/simpleicon" title="SimpleIcon">SimpleIcon</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a> </div> </div> </body> </html>
solr-4.4.0/docs/solr-core/org/apache/solr/core/package-frame.html
tunacasserole/solr
<!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_51) on Fri Jul 19 02:58:56 EDT 2013 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> org.apache.solr.core (Solr 4.4.0 API) </TITLE> <META NAME="date" CONTENT="2013-07-19"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../org/apache/solr/core/package-summary.html" target="classFrame">org.apache.solr.core</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="CachingDirectoryFactory.CloseListener.html" title="interface in org.apache.solr.core" target="classFrame"><I>CachingDirectoryFactory.CloseListener</I></A> <BR> <A HREF="Diagnostics.Callable.html" title="interface in org.apache.solr.core" target="classFrame"><I>Diagnostics.Callable</I></A> <BR> <A HREF="SolrEventListener.html" title="interface in org.apache.solr.core" target="classFrame"><I>SolrEventListener</I></A> <BR> <A HREF="SolrInfoMBean.html" title="interface in org.apache.solr.core" target="classFrame"><I>SolrInfoMBean</I></A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="AbstractSolrEventListener.html" title="class in org.apache.solr.core" target="classFrame">AbstractSolrEventListener</A> <BR> <A HREF="CachingDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">CachingDirectoryFactory</A> <BR> <A HREF="CloseHook.html" title="class in org.apache.solr.core" target="classFrame">CloseHook</A> <BR> <A HREF="CodecFactory.html" title="class in org.apache.solr.core" target="classFrame">CodecFactory</A> <BR> <A HREF="Config.html" title="class in org.apache.solr.core" target="classFrame">Config</A> <BR> <A HREF="ConfigSolr.html" title="class in org.apache.solr.core" target="classFrame">ConfigSolr</A> <BR> <A HREF="ConfigSolrXml.html" title="class in org.apache.solr.core" target="classFrame">ConfigSolrXml</A> <BR> <A HREF="ConfigSolrXmlOld.html" title="class in org.apache.solr.core" target="classFrame">ConfigSolrXmlOld</A> <BR> <A HREF="CoreContainer.html" title="class in org.apache.solr.core" target="classFrame">CoreContainer</A> <BR> <A HREF="CoreDescriptor.html" title="class in org.apache.solr.core" target="classFrame">CoreDescriptor</A> <BR> <A HREF="Diagnostics.html" title="class in org.apache.solr.core" target="classFrame">Diagnostics</A> <BR> <A HREF="DirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">DirectoryFactory</A> <BR> <A HREF="EphemeralDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">EphemeralDirectoryFactory</A> <BR> <A HREF="HdfsDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">HdfsDirectoryFactory</A> <BR> <A HREF="IndexDeletionPolicyWrapper.html" title="class in org.apache.solr.core" target="classFrame">IndexDeletionPolicyWrapper</A> <BR> <A HREF="IndexReaderFactory.html" title="class in org.apache.solr.core" target="classFrame">IndexReaderFactory</A> <BR> <A HREF="JmxMonitoredMap.html" title="class in org.apache.solr.core" target="classFrame">JmxMonitoredMap</A> <BR> <A HREF="MMapDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">MMapDirectoryFactory</A> <BR> <A HREF="NIOFSDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">NIOFSDirectoryFactory</A> <BR> <A HREF="NRTCachingDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">NRTCachingDirectoryFactory</A> <BR> <A HREF="PluginInfo.html" title="class in org.apache.solr.core" target="classFrame">PluginInfo</A> <BR> <A HREF="QuerySenderListener.html" title="class in org.apache.solr.core" target="classFrame">QuerySenderListener</A> <BR> <A HREF="RAMDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">RAMDirectoryFactory</A> <BR> <A HREF="RequestHandlers.html" title="class in org.apache.solr.core" target="classFrame">RequestHandlers</A> <BR> <A HREF="RequestHandlers.LazyRequestHandlerWrapper.html" title="class in org.apache.solr.core" target="classFrame">RequestHandlers.LazyRequestHandlerWrapper</A> <BR> <A HREF="SchemaCodecFactory.html" title="class in org.apache.solr.core" target="classFrame">SchemaCodecFactory</A> <BR> <A HREF="SimpleFSDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">SimpleFSDirectoryFactory</A> <BR> <A HREF="SolrConfig.html" title="class in org.apache.solr.core" target="classFrame">SolrConfig</A> <BR> <A HREF="SolrConfig.HttpCachingConfig.html" title="class in org.apache.solr.core" target="classFrame">SolrConfig.HttpCachingConfig</A> <BR> <A HREF="SolrConfig.JmxConfiguration.html" title="class in org.apache.solr.core" target="classFrame">SolrConfig.JmxConfiguration</A> <BR> <A HREF="SolrConfig.UpdateHandlerInfo.html" title="class in org.apache.solr.core" target="classFrame">SolrConfig.UpdateHandlerInfo</A> <BR> <A HREF="SolrCore.html" title="class in org.apache.solr.core" target="classFrame">SolrCore</A> <BR> <A HREF="SolrCoreDiscoverer.html" title="class in org.apache.solr.core" target="classFrame">SolrCoreDiscoverer</A> <BR> <A HREF="SolrDeletionPolicy.html" title="class in org.apache.solr.core" target="classFrame">SolrDeletionPolicy</A> <BR> <A HREF="SolrResourceLoader.html" title="class in org.apache.solr.core" target="classFrame">SolrResourceLoader</A> <BR> <A HREF="SolrXMLSerializer.html" title="class in org.apache.solr.core" target="classFrame">SolrXMLSerializer</A> <BR> <A HREF="SolrXMLSerializer.SolrCoreXMLDef.html" title="class in org.apache.solr.core" target="classFrame">SolrXMLSerializer.SolrCoreXMLDef</A> <BR> <A HREF="SolrXMLSerializer.SolrXMLDef.html" title="class in org.apache.solr.core" target="classFrame">SolrXMLSerializer.SolrXMLDef</A> <BR> <A HREF="StandardDirectoryFactory.html" title="class in org.apache.solr.core" target="classFrame">StandardDirectoryFactory</A> <BR> <A HREF="StandardIndexReaderFactory.html" title="class in org.apache.solr.core" target="classFrame">StandardIndexReaderFactory</A> <BR> <A HREF="ZkContainer.html" title="class in org.apache.solr.core" target="classFrame">ZkContainer</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Enums</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="ConfigSolr.CfgProp.html" title="enum in org.apache.solr.core" target="classFrame">ConfigSolr.CfgProp</A> <BR> <A HREF="DirectoryFactory.DirContext.html" title="enum in org.apache.solr.core" target="classFrame">DirectoryFactory.DirContext</A> <BR> <A HREF="SolrConfig.HttpCachingConfig.LastModFrom.html" title="enum in org.apache.solr.core" target="classFrame">SolrConfig.HttpCachingConfig.LastModFrom</A> <BR> <A HREF="SolrInfoMBean.Category.html" title="enum in org.apache.solr.core" target="classFrame">SolrInfoMBean.Category</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
templates/registration/password_reset_done.html
Adamwinwho/django
{% extends "base.html" %} {% block content %} &nbsp;&nbsp;邮件发送成功 {% endblock %}
processing-3.0.1/modes/java/reference/if.html
SebastianFath/3-axis-Gimbal.Arduino
<!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> <title>if \ Language (API) \ Processing 2+</title> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="Author" content="Processing Foundation" /> <meta name="Publisher" content="Processing Foundation" /> <meta name="Keywords" content="Processing, Sketchbook, Programming, Coding, Code, Art, Design" /> <meta name="Description" content="Processing is a flexible software sketchbook and a language for learning how to code within the context of the visual arts. Since 2001, Processing has promoted software literacy within the visual arts and visual literacy within technology." /> <meta name="Copyright" content="All contents copyright the Processing Foundation, Ben Fry, Casey Reas, and the MIT Media Laboratory" /> <script src="javascript/modernizr-2.6.2.touch.js" type="text/javascript"></script> <link href="css/style.css" rel="stylesheet" type="text/css" /> </head> <body id="Langauge-en" onload="" > <!-- ==================================== PAGE ============================ --> <div id="container"> <!-- ==================================== HEADER ============================ --> <div id="ribbon"> <ul class="left"> <li class="highlight"><a href="http://processing.org/">Processing</a></li> <li><a href="http://p5js.org/">p5.js</a></li> <li><a href="http://py.processing.org/">Processing.py</a></li> </ul> <ul class="right"> <li><a href="https://processingfoundation.org/">Processing Foundation</a></li> </ul> <div class="clear"></div> </div> <div id="header"> <a href="/" title="Back to the Processing cover."><div class="processing-logo no-cover" alt="Processing cover"></div></a> <form name="search" method="get" action="www.google.com/search"> <p><input type="hidden" name="as_sitesearch" value="processing.org" /> <input type="text" name="as_q" value="" size="20" class="text" /> <input type="submit" value=" " /></p> </form> </div> <a id="TOP" name="TOP"></a> <div id="navigation"> <div class="navBar" id="mainnav"> <a href="index.html" class='active'>Language</a><br> <a href="libraries/index.html" >Libraries</a><br> <a href="tools/index.html">Tools</a><br> <a href="environment/index.html">Environment</a><br> </div> <script> document.querySelectorAll(".processing-logo")[0].className = "processing-logo"; </script> </div> <!-- ==================================== CONTENT - Headers ============================ --> <div class="content"> <p class="ref-notice">This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, <a href="https://github.com/processing/processing-docs/issues?state=open">please let us know</a>. If you prefer a more technical reference, visit the <a href="http://processing.github.io/processing-javadocs/core/">Processing Core Javadoc</a> and <a href="http://processing.github.io/processing-javadocs/libraries/">Libraries Javadoc</a>.</p> <table cellpadding="0" cellspacing="0" border="0" class="ref-item"> <tr class="name-row"> <th scope="row">Name</th> <td><h3>if</h3></td> </tr> <tr class=""> <tr class=""><th scope="row">Examples</th><td><div class="example"><img src="images/if_.png" alt="example pic" /><pre class="margin"> for (int i = 5; i < height; i += 5) { stroke(255); // Set the color to white if (i < 35) { // When 'i' is less than 35... stroke(0); //...set the color to black } line(30, i, 80, i); } </pre></div> </td></tr> <tr class=""> <th scope="row">Description</th> <td> Allows the program to make a decision about which code to execute. If the <b>test</b> evaluates to <b>true</b>, the statements enclosed within the block are executed and if the <b>test</b> evaluates to <b>false</b> the statements are not executed. </td> </tr> <tr class=""><th scope="row">Syntax</th><td><pre> if (test) { statements } </pre></td></tr> <tr class=""> <th scope="row">Parameters</th><td><table cellpadding="0" cellspacing="0" border="0"><tr class=""> <th scope="row" class="code">test</th> <td>any valid expression that evaluates to true or false</td> </tr> <tr class=""> <th scope="row" class="code">statements</th> <td>one or more statements to be executed</td> </tr></table></td> </tr> <tr class=""><th scope="row">Related</th><td><a class="code" href="else.html">else</a><br /></td></tr> </table> Updated on October 22, 2015 05:13:26pm EDT<br /><br /> <!-- Creative Commons License --> <div class="license"> <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border: none" src="http://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a> </div> <!-- <?xpacket begin='' id=''?> <x:xmpmeta xmlns:x='adobe:ns:meta/'> <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <rdf:Description rdf:about='' xmlns:xapRights='http://ns.adobe.com/xap/1.0/rights/'> <xapRights:Marked>True</xapRights:Marked> </rdf:Description> <rdf:Description rdf:about='' xmlns:xapRights='http://ns.adobe.com/xap/1.0/rights/' > <xapRights:UsageTerms> <rdf:Alt> <rdf:li xml:lang='x-default' >This work is licensed under a &lt;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;&gt;Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License&lt;/a&gt;.</rdf:li> <rdf:li xml:lang='en' >This work is licensed under a &lt;a rel=&#34;license&#34; href=&#34;http://creativecommons.org/licenses/by-nc-sa/4.0/&#34;&gt;Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License&lt;/a&gt;.</rdf:li> </rdf:Alt> </xapRights:UsageTerms> </rdf:Description> <rdf:Description rdf:about='' xmlns:cc='http://creativecommons.org/ns#'> <cc:license rdf:resource='http://creativecommons.org/licenses/by-nc-sa/4.0/'/> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end='r'?> --> </div> <!-- ==================================== FOOTER ============================ --> <div id="footer"> <div id="copyright">Processing is an open project intiated by <a href="http://benfry.com/">Ben Fry</a> and <a href="http://reas.com">Casey Reas</a>. It is developed by a <a href="http://processing.org/about/people/">team of volunteers</a>.</div> <div id="colophon"> <a href="copyright.html">&copy; Info</a> </div> </div> </div> <script src="javascript/jquery-1.9.1.min.js"></script> <script src="javascript/site.js" type="text/javascript"></script> </body> </html>
docs/javadoc/org/openmuc/j60870/CauseOfTransmission.html
gythialy/j60870
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (1.8.0_222) on Fri Jun 19 13:57:08 CEST 2020 --> <title>CauseOfTransmission (j60870 1.4.0 API)</title> <meta content="2020-06-19" name="date"> <link href="../../../stylesheet.css" rel="stylesheet" title="Style" type="text/css"> <script src="../../../script.js" type="text/javascript"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title = "CauseOfTransmission (j60870 1.4.0 API)"; } } catch (err) { } //--> var methods = {"i0": 9, "i1": 10, "i2": 9, "i3": 9}; var tabs = { 65535: ["t0", "All Methods"], 1: ["t1", "Static Methods"], 2: ["t2", "Instance Methods"], 8: ["t4", "Concrete Methods"] }; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/openmuc/j60870/ASduType.html" title="enum in org.openmuc.j60870"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/openmuc/j60870/ClientConnectionBuilder.html" title="class in org.openmuc.j60870"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/openmuc/j60870/CauseOfTransmission.html" target="_top">Frames</a></li> <li><a href="CauseOfTransmission.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</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">org.openmuc.j60870</div> <h2 class="title" title="Enum CauseOfTransmission">Enum CauseOfTransmission</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>&gt; </li> <li> <ul class="inheritance"> <li>org.openmuc.j60870.CauseOfTransmission</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>&gt; </dd> </dl> <hr> <br> <pre>public enum <span class="typeNameLabel">CauseOfTransmission</span> extends java.lang.Enum&lt;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>&gt;</pre> <div class="block">Every ASDU contains a single Cause Of Transmission field so the recipient knows why the message it received was sent. Parts IEC 60870-5-101 and IEC 60870-5-104 define what CauseOfTransmissions are allowed for the different ASDU types. CauseOfTransmissions 44 to 47 are meant for replies to commands with undefined values. </div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table border="0" cellpadding="3" cellspacing="0" class="memberSummary" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#ACTIVATION">ACTIVATION</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#ACTIVATION_CON">ACTIVATION_CON</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#ACTIVATION_TERMINATION">ACTIVATION_TERMINATION</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#BACKGROUND_SCAN">BACKGROUND_SCAN</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#DEACTIVATION">DEACTIVATION</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#DEACTIVATION_CON">DEACTIVATION_CON</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#FILE_TRANSFER">FILE_TRANSFER</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INITIALIZED">INITIALIZED</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_1">INTERROGATED_BY_GROUP_1</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_10">INTERROGATED_BY_GROUP_10</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_11">INTERROGATED_BY_GROUP_11</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_12">INTERROGATED_BY_GROUP_12</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_13">INTERROGATED_BY_GROUP_13</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_14">INTERROGATED_BY_GROUP_14</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_15">INTERROGATED_BY_GROUP_15</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_16">INTERROGATED_BY_GROUP_16</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_2">INTERROGATED_BY_GROUP_2</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_3">INTERROGATED_BY_GROUP_3</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_4">INTERROGATED_BY_GROUP_4</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_5">INTERROGATED_BY_GROUP_5</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_6">INTERROGATED_BY_GROUP_6</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_7">INTERROGATED_BY_GROUP_7</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_8">INTERROGATED_BY_GROUP_8</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_GROUP_9">INTERROGATED_BY_GROUP_9</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#INTERROGATED_BY_STATION">INTERROGATED_BY_STATION</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#PERIODIC">PERIODIC</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUEST">REQUEST</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUESTED_BY_GENERAL_COUNTER">REQUESTED_BY_GENERAL_COUNTER</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUESTED_BY_GROUP_1_COUNTER">REQUESTED_BY_GROUP_1_COUNTER</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUESTED_BY_GROUP_2_COUNTER">REQUESTED_BY_GROUP_2_COUNTER</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUESTED_BY_GROUP_3_COUNTER">REQUESTED_BY_GROUP_3_COUNTER</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#REQUESTED_BY_GROUP_4_COUNTER">REQUESTED_BY_GROUP_4_COUNTER</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#RETURN_INFO_LOCAL">RETURN_INFO_LOCAL</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#RETURN_INFO_REMOTE">RETURN_INFO_REMOTE</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#SPONTANEOUS">SPONTANEOUS</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#UNKNOWN_CAUSE_OF_TRANSMISSION">UNKNOWN_CAUSE_OF_TRANSMISSION</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#UNKNOWN_COMMON_ADDRESS_OF_ASDU">UNKNOWN_COMMON_ADDRESS_OF_ASDU</a></span></code>&nbsp; </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#UNKNOWN_INFORMATION_OBJECT_ADDRESS">UNKNOWN_INFORMATION_OBJECT_ADDRESS</a></span></code>&nbsp; </td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#UNKNOWN_TYPE_ID">UNKNOWN_TYPE_ID</a></span></code>&nbsp; </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table border="0" cellpadding="3" cellspacing="0" class="memberSummary" summary="Method Summary table, listing methods, and an explanation"> <caption><span class="activeTableTab" id="t0"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span class="tableTab" id="t1"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span class="tableTab" id="t2"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span class="tableTab" id="t4"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor" id="i0"> <td class="colFirst"><code>static <a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#causeFor-int-">causeFor</a></span>(int&nbsp;id)</code> <div class="block">Returns the CauseOfTransmission that corresponds to the given ID. </div> </td> </tr> <tr class="rowColor" id="i1"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#getId--">getId</a></span>()</code> <div class="block">Returns the ID of this CauseOfTransmission.</div> </td> </tr> <tr class="altColor" id="i2"> <td class="colFirst"><code>static <a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name. </div> </td> </tr> <tr class="rowColor" id="i3"> <td class="colFirst"><code>static <a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>[]</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../org/openmuc/j60870/CauseOfTransmission.html#values--">values</a></span>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. </div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="PERIODIC"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PERIODIC</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> PERIODIC</pre> </li> </ul> <a name="BACKGROUND_SCAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BACKGROUND_SCAN</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> BACKGROUND_SCAN</pre> </li> </ul> <a name="SPONTANEOUS"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SPONTANEOUS</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> SPONTANEOUS</pre> </li> </ul> <a name="INITIALIZED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INITIALIZED</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INITIALIZED</pre> </li> </ul> <a name="REQUEST"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUEST</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUEST</pre> </li> </ul> <a name="ACTIVATION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ACTIVATION</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> ACTIVATION</pre> </li> </ul> <a name="ACTIVATION_CON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ACTIVATION_CON</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> ACTIVATION_CON</pre> </li> </ul> <a name="DEACTIVATION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DEACTIVATION</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> DEACTIVATION</pre> </li> </ul> <a name="DEACTIVATION_CON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DEACTIVATION_CON</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> DEACTIVATION_CON</pre> </li> </ul> <a name="ACTIVATION_TERMINATION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ACTIVATION_TERMINATION</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> ACTIVATION_TERMINATION</pre> </li> </ul> <a name="RETURN_INFO_REMOTE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>RETURN_INFO_REMOTE</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> RETURN_INFO_REMOTE</pre> </li> </ul> <a name="RETURN_INFO_LOCAL"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>RETURN_INFO_LOCAL</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> RETURN_INFO_LOCAL</pre> </li> </ul> <a name="FILE_TRANSFER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FILE_TRANSFER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> FILE_TRANSFER</pre> </li> </ul> <a name="INTERROGATED_BY_STATION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_STATION</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_STATION</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_1"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_1</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_1</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_2"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_2</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_2</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_3"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_3</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_3</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_4"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_4</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_4</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_5"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_5</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_5</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_6"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_6</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_6</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_7"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_7</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_7</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_8"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_8</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_8</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_9"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_9</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_9</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_10"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_10</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_10</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_11"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_11</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_11</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_12"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_12</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_12</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_13"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_13</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_13</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_14"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_14</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_14</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_15"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_15</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_15</pre> </li> </ul> <a name="INTERROGATED_BY_GROUP_16"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INTERROGATED_BY_GROUP_16</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> INTERROGATED_BY_GROUP_16</pre> </li> </ul> <a name="REQUESTED_BY_GENERAL_COUNTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUESTED_BY_GENERAL_COUNTER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUESTED_BY_GENERAL_COUNTER</pre> </li> </ul> <a name="REQUESTED_BY_GROUP_1_COUNTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUESTED_BY_GROUP_1_COUNTER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUESTED_BY_GROUP_1_COUNTER</pre> </li> </ul> <a name="REQUESTED_BY_GROUP_2_COUNTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUESTED_BY_GROUP_2_COUNTER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUESTED_BY_GROUP_2_COUNTER</pre> </li> </ul> <a name="REQUESTED_BY_GROUP_3_COUNTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUESTED_BY_GROUP_3_COUNTER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUESTED_BY_GROUP_3_COUNTER</pre> </li> </ul> <a name="REQUESTED_BY_GROUP_4_COUNTER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>REQUESTED_BY_GROUP_4_COUNTER</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> REQUESTED_BY_GROUP_4_COUNTER</pre> </li> </ul> <a name="UNKNOWN_TYPE_ID"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>UNKNOWN_TYPE_ID</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> UNKNOWN_TYPE_ID</pre> </li> </ul> <a name="UNKNOWN_CAUSE_OF_TRANSMISSION"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>UNKNOWN_CAUSE_OF_TRANSMISSION</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> UNKNOWN_CAUSE_OF_TRANSMISSION</pre> </li> </ul> <a name="UNKNOWN_COMMON_ADDRESS_OF_ASDU"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>UNKNOWN_COMMON_ADDRESS_OF_ASDU</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> UNKNOWN_COMMON_ADDRESS_OF_ASDU</pre> </li> </ul> <a name="UNKNOWN_INFORMATION_OBJECT_ADDRESS"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>UNKNOWN_INFORMATION_OBJECT_ADDRESS</h4> <pre>public static final&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a> UNKNOWN_INFORMATION_OBJECT_ADDRESS</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (CauseOfTransmission c : CauseOfTransmission.values()) &nbsp; System.out.println(c); </pre> </div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>an array containing the constants of this enum type, in the order they are declared </dd> </dl> </li> </ul> <a name="valueOf-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.) </div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>the enum constant with the specified name</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name </dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> </dl> </li> </ul> <a name="getId--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getId</h4> <pre>public&nbsp;int&nbsp;getId()</pre> <div class="block">Returns the ID of this CauseOfTransmission.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the ID.</dd> </dl> </li> </ul> <a name="causeFor-int-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>causeFor</h4> <pre>public static&nbsp;<a href="../../../org/openmuc/j60870/CauseOfTransmission.html" title="enum in org.openmuc.j60870">CauseOfTransmission</a>&nbsp;causeFor(int&nbsp;id)</pre> <div class="block">Returns the CauseOfTransmission that corresponds to the given ID. Returns <code>null</code> if no CauseOfTransmission with the given ID exists. </div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>id</code> - the ID.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>the CauseOfTransmission that corresponds to the given ID.</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-all.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/openmuc/j60870/ASduType.html" title="enum in org.openmuc.j60870"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../org/openmuc/j60870/ClientConnectionBuilder.html" title="class in org.openmuc.j60870"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/openmuc/j60870/CauseOfTransmission.html" target="_top">Frames</a></li> <li><a href="CauseOfTransmission.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
doc/html/structgsl__matrix__short.html
pengumc/crobot
<!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"/> <title>crobot: gsl_matrix_short Struct Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body onload='searchBox.OnSelectItem(0);'> <!-- Generated by Doxygen 1.7.3 --> <script type="text/javascript"><!-- var searchBox = new SearchBox("searchBox", "search",false,'Search'); --></script> <div id="top"> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">crobot</div> </td> </tr> </tbody> </table> </div> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li id="searchli"> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="classes.html"><span>Data&#160;Structure&#160;Index</span></a></li> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('structgsl__matrix__short.html',''); </script> <div id="doc-content"> <div class="header"> <div class="summary"> <a href="#pub-attribs">Data Fields</a> </div> <div class="headertitle"> <h1>gsl_matrix_short Struct Reference</h1> </div> </div> <div class="contents"> <!-- doxytag: class="gsl_matrix_short" --><table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-attribs"></a> Data Fields</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a54a36a5beeeba81d0718715cbb6f72b2"></a><!-- doxytag: member="gsl_matrix_short::size1" ref="a54a36a5beeeba81d0718715cbb6f72b2" args="" --> size_t&#160;</td><td class="memItemRight" valign="bottom"><b>size1</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a91b8edd12db15e909dd7eb3544333848"></a><!-- doxytag: member="gsl_matrix_short::size2" ref="a91b8edd12db15e909dd7eb3544333848" args="" --> size_t&#160;</td><td class="memItemRight" valign="bottom"><b>size2</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad800638237c5ad47700bdebc540c293f"></a><!-- doxytag: member="gsl_matrix_short::tda" ref="ad800638237c5ad47700bdebc540c293f" args="" --> size_t&#160;</td><td class="memItemRight" valign="bottom"><b>tda</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5b5b032f747e9383fc0d98f7054e258f"></a><!-- doxytag: member="gsl_matrix_short::data" ref="a5b5b032f747e9383fc0d98f7054e258f" args="" --> short *&#160;</td><td class="memItemRight" valign="bottom"><b>data</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a29892d9397b5084ace3f032881ed30ad"></a><!-- doxytag: member="gsl_matrix_short::block" ref="a29892d9397b5084ace3f032881ed30ad" args="" --> <a class="el" href="structgsl__block__short__struct.html">gsl_block_short</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>block</b></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa695a8c4a65e8e7c5b752e3e846a44a9"></a><!-- doxytag: member="gsl_matrix_short::owner" ref="aa695a8c4a65e8e7c5b752e3e846a44a9" args="" --> int&#160;</td><td class="memItemRight" valign="bottom"><b>owner</b></td></tr> </table> <hr/>The documentation for this struct was generated from the following file:<ul> <li>include/gsl64/<a class="el" href="gsl__matrix__short_8h_source.html">gsl_matrix_short.h</a></li> </ul> </div> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="structgsl__matrix__short.html">gsl_matrix_short</a> </li> <li class="footer">Generated on Sat Mar 10 2012 00:03:56 for crobot by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </li> </ul> </div> <!--- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Data Structures</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </body> </html>
doc/api/files/__/__/_rvm/gems/ruby-2_1_1/gems/actionpack-4_2_0/lib/action_dispatch/journey/path/pattern_rb.html
rafaellc28/Portfolio
<?xml version="1.0" encoding="utf-8"?> <!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> <title>pattern.rb</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../../../../css/main.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../../../../css/github.css" type="text/css" media="screen" /> <script src="../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class="banner"> <span>Ruby on Rails 4.2.0</span><br /> <h1> pattern.rb </h1> <ul class="files"> <li> ../../.rvm/gems/ruby-2.1.1/gems/actionpack-4.2.0/lib/action_dispatch/journey/path/pattern.rb </li> <li>Last modified: 2015-02-02 12:11:53 -0200</li> </ul> </div> <div id="bodyContent"> <div id="content"> <!-- File only: requires --> <div class="sectiontitle">Required Files</div> <ul> <li>action_dispatch/journey/router/strexp</li> </ul> <!-- Namespace --> <div class="sectiontitle">Namespace</div> <ul> <li> <span class="type">MODULE</span> <a href="../../../../../../../../../../../../classes/ActionDispatch.html">ActionDispatch</a> </li> <li> <span class="type">MODULE</span> <a href="../../../../../../../../../../../../classes/ActionDispatch/Journey.html">ActionDispatch::Journey</a> </li> </ul> <!-- Methods --> </div> </div> </body> </html>
css/ie.css
linkmoises/telmeds
/* IE 7 y 6 css */ #rotativo, #reto, #eventos, #patrocinio, #svp, #tls, #caps { border: 1px solid #ababab; } #cabeza h1 { background-image: none; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/logo.png', sizingMethod='crop'); } #cabeza h1 a { position: relative; z-index: 1; } #rotativo li, #singletxt li, #singletxt2 li, #caps li { display: inline; } behavior: url(http://fetchak.com/ie-css3/ie-css3.htc);
build/gr36/docs/doxygen/html/volk__8ic__s32f__deinterleave__32f__x2__a_8h.html
aviralchandra/Sandhi
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>GNU Radio 3.6.4.2 C++ API: volk_8ic_s32f_deinterleave_32f_x2_a.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">GNU Radio 3.6.4.2 C++ API </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('volk__8ic__s32f__deinterleave__32f__x2__a_8h.html',''); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">volk_8ic_s32f_deinterleave_32f_x2_a.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &lt;<a class="el" href="volk__common_8h_source.html">volk/volk_common.h</a>&gt;</code><br/> <code>#include &lt;<a class="el" href="inttypes_8h_source.html">inttypes.h</a>&gt;</code><br/> <code>#include &lt;stdio.h&gt;</code><br/> </div> <p><a href="volk__8ic__s32f__deinterleave__32f__x2__a_8h_source.html">Go to the source code of this file.</a></p> </div><!-- contents --> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="volk__8ic__s32f__deinterleave__32f__x2__a_8h.html">volk_8ic_s32f_deinterleave_32f_x2_a.h</a> </li> <li class="footer">Generated on Mon Oct 14 2013 11:58:11 for GNU Radio 3.6.4.2 C++ API by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.6.1 </li> </ul> </div> </body> </html>
portfolio/sculptures/medium.html
kaloyanivanov/karadechev
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>MEDIUM by Atanas Karadechev</title> <meta name="description" content="Medium: Bronze sculpture by Bulgarian sculptor Atanas Karadechev, Dimensions: 14&times;24&times;18&nbsp;cm"> <link href="../../css/style.css" rel="stylesheet"> <link href="../../css/small-device.css" rel="stylesheet" type="text/css" media="only screen and (max-width: 480px), only screen and (max-device-width: 480px)"> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script> var namesVec = new Array("medium-01.jpg", "medium-02.jpg"); var root ='../../images/sculptures/02/'; function swapImg(ima){ nr = ima.getAttribute('src').split('/'); nr = nr[nr.length-1] if(nr==namesVec[0]){ima.setAttribute('src',root+namesVec[1]);} else{ima.setAttribute('src',root+namesVec[0]);} } </script> <link rel="author" href="https://plus.google.com/u/0/106797418953527032195/posts"> </head> <body> <div id="wrapper" itemscope itemtype="http://schema.org/Sculpture"> <header> <section> <div id="adam-eve"></div> <h1 itemprop="author"><a href="/"> Atanas Karadechev </a></h1> <nav> <div id="crumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb"> <?php require("../../inc/crumb.en.php"); ?> </div> <div id="menu"> <?php require("../../inc/menu-en.php"); ?> </div> </nav> </section> </header> <section> <div id="content"> <div id="main"> <img src="../../images/sculptures/02/medium-01.jpg" width="640" height="559" itemprop="image" alt="MEDIUM. Bronze 14&times;24&times;18&nbsp;cm" onclick="swapImg(this);"> </div> <aside> <div id="right"> <h2 itemprop="name">MEDIUM</h2> <h4 itemprop="description">Bronze 14&times;24&times;18&nbsp;cm </h4> <img src="../../images/sculptures/02/medium-thumb-01.jpg" width="250" height="100" itemprop="thumbnailUrl" alt="MEDIUM. Detail"> <img src="../../images/sculptures/02/medium-thumb-03.jpg" width="250" height="100" itemprop="thumbnailUrl" alt="MEDIUM. Detail"> <img src="../../images/sculptures/02/medium-thumb-02.jpg" width="250" height="100" itemprop="thumbnailUrl" alt="MEDIUM. Detail"> <div id="share"> <h3>Share</h3> <div class="addthis_toolbox addthis_default_style"> <a class="addthis_button_facebook nolink"></a> <a class="addthis_button_google_plusone nolink" g:plusone:size="small" g:plusone:count="false"></a> <a class="addthis_button_tumblr nolink"></a> </div> <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4ea7e7ec0e0fe43c"></script> </div> </div> </aside> <br style="clear: both;"> <h3 class="fright"><a href="javascript:history.back()" class="nolink">← Back</a></h3> <br style="clear: left;"> </div> </section> <?php include("../../inc/footer-en.php"); ?> </div> <?php include("../../inc/analytics.php"); ?> </body> </html>
mybb-source/admin/styles/default/config.css
agubagu/mybb_task
/* language editor issue icons */ .langeditor_ok { width: 16px; height: 16px; display: inline-block; margin: 1px; background: url(images/icons/tick.png) no-repeat; } .langeditor_nothingtocompare { width: 16px; height: 16px; display: inline-block; margin: 1px; background: url(images/icons/no_change.png) no-repeat; } .langeditor_warning { width: 16px; height: 16px; display: inline-block; margin: 1px; background: url(images/icons/warning.png) no-repeat; } /* language editor file list rows */ .langeditor_editwithfile, .langeditor_phrases, .langeditor_editfile, .langeditor_issues, .langeditor_edit { font-weight: bold; text-align: center; } .langeditor_editwithfile, .langeditor_editfile { text-align: left; } .langeditor_edit, .langeditor_phrases { font-weight: normal; } /* language editor edit mode textareas */ .langeditor_textarea_issue { border: 1px solid red; } .langeditor_textarea_editwith { background: #E0E0E0; } .langeditor_textarea_edit, .langeditor_textarea_editwith { width: 98%; padding: 4px; } /* language editor main page */ .langeditor_info_name { font-weight: bold; } .langeditor_info_author { font-size: x-small; } .langeditor_rtl { direction: rtl; unicode-bidi: bidi-override; } .langeditor_ltr { direction: ltr; unicode-bidi: bidi-override; }
scratch/flexigraph-0.1/dist/javadoc/gr/forth/ics/graph/algo/class-use/KCoreDecomposition.html
unidesigner/pyconto
<!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_14) on Fri Jun 18 18:05:16 BST 2010 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class gr.forth.ics.graph.algo.KCoreDecomposition (FlexiGraph Reference) </TITLE> <META NAME="date" CONTENT="2010-06-18"> <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 gr.forth.ics.graph.algo.KCoreDecomposition (FlexiGraph Reference)"; } } </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?gr/forth/ics/graph/algo/\class-useKCoreDecomposition.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="KCoreDecomposition.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<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>gr.forth.ics.graph.algo.KCoreDecomposition</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="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo">KCoreDecomposition</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#gr.forth.ics.graph.algo"><B>gr.forth.ics.graph.algo</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="gr.forth.ics.graph.algo"><!-- --></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="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo">KCoreDecomposition</A> in <A HREF="../../../../../../gr/forth/ics/graph/algo/package-summary.html">gr.forth.ics.graph.algo</A></FONT></TH> </TR> </TABLE> &nbsp; <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="../../../../../../gr/forth/ics/graph/algo/package-summary.html">gr.forth.ics.graph.algo</A> that return <A HREF="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo">KCoreDecomposition</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo">KCoreDecomposition</A></CODE></FONT></TD> <TD><CODE><B>KCoreDecomposition.</B><B><A HREF="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html#execute(gr.forth.ics.graph.InspectableGraph)">execute</A></B>(<A HREF="../../../../../../gr/forth/ics/graph/InspectableGraph.html" title="interface in gr.forth.ics.graph">InspectableGraph</A>&nbsp;g)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a K-core decomposition for the specified graph.</TD> </TR> </TABLE> &nbsp; <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../gr/forth/ics/graph/algo/KCoreDecomposition.html" title="class in gr.forth.ics.graph.algo"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?gr/forth/ics/graph/algo/\class-useKCoreDecomposition.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="KCoreDecomposition.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
docs/html/CrosspointsFile_8hpp.html
edanssandes/MASA-Core
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>MASA-Core: CrosspointsFile.hpp File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">MASA-Core </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> </div> <div class="headertitle"> <div class="title">CrosspointsFile.hpp File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &lt;stdio.h&gt;</code><br/> <code>#include &lt;vector&gt;</code><br/> <code>#include &lt;string&gt;</code><br/> <code>#include &quot;<a class="el" href="Crosspoint_8hpp_source.html">Crosspoint.hpp</a>&quot;</code><br/> </div> <p><a href="CrosspointsFile_8hpp_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="nested-classes"></a> Classes</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classCrosspointsFile.html">CrosspointsFile</a></td></tr> </table> </div><!-- contents --> <hr class="footer"/><address class="footer"><small> Generated on Fri May 8 2015 11:39:19 for MASA-Core by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.6.1 </small></address> </body> </html>
jdk8en_us/docs/api/java/util/class-use/IllformedLocaleException.html
DeanAaron/jdk8
<!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_11) on Mon Jun 16 17:36:05 PDT 2014 --> <title>Uses of Class java.util.IllformedLocaleException (Java Platform SE 8 )</title> <meta name="date" content="2014-06-16"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class java.util.IllformedLocaleException (Java Platform SE 8 )"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/IllformedLocaleException.html" title="class in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/IllformedLocaleException.html" target="_top">Frames</a></li> <li><a href="IllformedLocaleException.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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 java.util.IllformedLocaleException" class="title">Uses of Class<br>java.util.IllformedLocaleException</h2> </div> <div class="classUseContainer">No usage of java.util.IllformedLocaleException</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/IllformedLocaleException.html" title="class in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/IllformedLocaleException.html" target="_top">Frames</a></li> <li><a href="IllformedLocaleException.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;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><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> Copyright &#x00a9; 1993, 2014, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
Reverse Pacman/Reverse-Pacman Doc/block/ocorner2.html
Arcadianer/Reverse-Pacman
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (1.8.0_101) on Wed Mar 15 21:14:43 GMT+01:00 2017 --> <title>ocorner2</title> <meta name="date" content="2017-03-15"> <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="ocorner2"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ocorner2.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="../block/ocorner1.html" title="class in block"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../block/ocorner3.html" title="class in block"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?block/ocorner2.html" target="_top">Frames</a></li> <li><a href="ocorner2.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields.inherited.from.class.block.block">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</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">block</div> <h2 title="Class ocorner2" class="title">Class ocorner2</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../block/block.html" title="class in block">block.block</a></li> <li> <ul class="inheritance"> <li>block.ocorner2</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">ocorner2</span> extends <a href="../block/block.html" title="class in block">block</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields.inherited.from.class.block.block"> <!-- --> </a> <h3>Fields inherited from class&nbsp;block.<a href="../block/block.html" title="class in block">block</a></h3> <code><a href="../block/block.html#blockmovment">blockmovment</a>, <a href="../block/block.html#id">id</a>, <a href="../block/block.html#name">name</a>, <a href="../block/block.html#path">path</a></code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../block/ocorner2.html#ocorner2--">ocorner2</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</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="../block/block.html" title="class in block">block</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../block/ocorner2.html#clone--">clone</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../block/ocorner2.html#draw-ch.aplu.jgamegrid.Location-ch.aplu.jgamegrid.GGBackground-">draw</a></span>(ch.aplu.jgamegrid.Location&nbsp;lc, ch.aplu.jgamegrid.GGBackground&nbsp;bd)</code> <div class="block">Draws the <code>Image</code> of the block on the Game-Grid.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.block.block"> <!-- --> </a> <h3>Methods inherited from class&nbsp;block.<a href="../block/block.html" title="class in block">block</a></h3> <code><a href="../block/block.html#getId--">getId</a>, <a href="../block/block.html#getName--">getName</a>, <a href="../block/block.html#getPath--">getPath</a>, <a href="../block/block.html#setId-java.lang.String-">setId</a>, <a href="../block/block.html#setName-java.lang.String-">setName</a>, <a href="../block/block.html#setPath-java.lang.String-">setPath</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="ocorner2--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ocorner2</h4> <pre>public&nbsp;ocorner2()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="draw-ch.aplu.jgamegrid.Location-ch.aplu.jgamegrid.GGBackground-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>draw</h4> <pre>public&nbsp;void&nbsp;draw(ch.aplu.jgamegrid.Location&nbsp;lc, ch.aplu.jgamegrid.GGBackground&nbsp;bd)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from class:&nbsp;<code><a href="../block/block.html#draw-ch.aplu.jgamegrid.Location-ch.aplu.jgamegrid.GGBackground-">block</a></code></span></div> <div class="block">Draws the <code>Image</code> of the block on the Game-Grid. This abstract method is describes a block should be drawn on the grid itself. The <code>GGBackground</code> object "bd" can be used to draw the desired shape or image to the <code>Location</code> "lc". This has to be set in order to draw an Level on the grid.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../block/block.html#draw-ch.aplu.jgamegrid.Location-ch.aplu.jgamegrid.GGBackground-">draw</a></code>&nbsp;in class&nbsp;<code><a href="../block/block.html" title="class in block">block</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>lc</code> - Location to draw in the Grid</dd> <dd><code>bd</code> - <code>GGBackground</code> Object to draw</dd> </dl> </li> </ul> <a name="clone--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>clone</h4> <pre>public&nbsp;<a href="../block/block.html" title="class in block">block</a>&nbsp;clone()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../block/block.html#clone--">clone</a></code>&nbsp;in class&nbsp;<code><a href="../block/block.html" title="class in block">block</a></code></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/ocorner2.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="../block/ocorner1.html" title="class in block"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../block/ocorner3.html" title="class in block"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../index.html?block/ocorner2.html" target="_top">Frames</a></li> <li><a href="ocorner2.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields.inherited.from.class.block.block">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
index.html
netpork/telemob
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Telemedicina</title> <link rel="stylesheet" href="assets/css/style.css"> </head> <body> <div id="main"></div> <script src="lib/jquery/dist/jquery.min.js"></script> <script src="lib/sammy/lib/min/sammy-0.7.5.min.js"></script> <script src="lib/mustache/mustache.js"></script> <script src="lib/sammy/lib/min/plugins/sammy.mustache-0.7.5.min.js"></script> <script src="lib/fastclick/lib/fastclick.js"></script> <script src="assets/js/main.js"></script> <script src="assets/js/menu.js"></script> </body> </html>
ScriptReference/Animation.Stop.html
rakuten/Uinty3D-Docs-zhcn
<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Unity - Scripting API: Animation.Stop</title> <meta name="description" content="Develop once, publish everywhere! Unity is the ultimate tool for video game development, architectural visualizations, and interactive media installations - publish to the web, Windows, OS X, Wii, Xbox 360, and iPhone with many more platforms to come." /> <meta name="author" content="Unity Technologies" /> <link rel="shortcut icon" href="../StaticFiles/images/favicons/favicon.ico" /> <link rel="icon" type="image/png" href="../StaticFiles/images/favicons/favicon.png" /> <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../StaticFiles/images/favicons/apple-touch-icon-152x152.png" /> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../StaticFiles/images/favicons/apple-touch-icon-144x144.png" /> <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../StaticFiles/images/favicons/apple-touch-icon-120x120.png" /> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../StaticFiles/images/favicons/apple-touch-icon-114x114.png" /> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../StaticFiles/images/favicons/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon-precomposed" href="../StaticFiles/images/favicons/apple-touch-icon.png" /> <meta name="msapplication-TileColor" content="#222c37" /> <meta name="msapplication-TileImage" content="../StaticFiles/images/favicons/tileicon-144x144.png" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-2854981-1']); _gaq.push(['_setDomainName', 'unity3d.com']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script type="text/javascript" src="../StaticFiles/js/jquery.js"> </script> <script type="text/javascript" src="docdata/toc.js">//toc</script> <!--local TOC--> <script type="text/javascript" src="docdata/global_toc.js">//toc</script> <!--global TOC, including other platforms--> <script type="text/javascript" src="../StaticFiles/js/core.js"> </script> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic" rel="stylesheet" type="text/css" /> <link rel="stylesheet" type="text/css" href="../StaticFiles/css/core.css" /> </head> <body> <div class="header-wrapper"> <div id="header" class="header"> <div class="content"> <div class="spacer"> <div class="menu"> <div class="logo"> <a href="http://docs.unity3d.com"> </a> </div> <div class="search-form"> <form action="30_search.html" method="get" class="apisearch"> <input type="text" name="q" placeholder="Search scripting..." autosave="Unity Reference" results="5" class="sbox field" id="q"> </input> <input type="submit" class="submit"> </input> </form> </div> <ul> <li> <a href="http://docs.unity3d.com">Overview</a> </li> <li> <a href="../Manual/index.html">Manual</a> </li> <li> <a href="../ScriptReference/index.html" class="selected">Scripting API</a> </li> </ul> </div> </div> <div class="more"> <div class="filler"> </div> <ul> <li> <a href="http://unity3d.com/">unity3d.com</a> </li> </ul> </div> </div> </div> <div class="toolbar"> <div class="content clear"> <div class="lang-switcher hide"> <div class="current toggle" data-target=".lang-list"> <div class="lbl">Language: <span class="b">English</span></div> <div class="arrow"> </div> </div> <div class="lang-list" style="display:none;"> <ul> <li> <a href="">English</a> </li> </ul> </div> </div> <div class="script-lang"> <ul> <li class="selected" data-lang="CS">C#</li> <li data-lang="JS">JS</li> </ul> <div id="script-lang-dialog" class="dialog hide"> <div class="dialog-content clear"> <h2>Script language</h2> <div class="close"> </div> <p class="clear">Select your preferred scripting language. All code snippets will be displayed in this language.</p> </div> </div> </div> </div> </div> </div> <div id="master-wrapper" class="master-wrapper clear"> <div id="sidebar" class="sidebar"> <div class="sidebar-wrap"> <div class="content"> <div class="sidebar-menu"> <div class="toc"> <h2>Scripting API</h2> </div> </div> <p> <a href="40_history.html" class="cw">History</a> </p> </div> </div> </div> <div id="content-wrap" class="content-wrap"> <div class="content-block"> <div class="content"> <div class="section"> <div class="mb20 clear"> <h1 class="heading inherit"> <a href="Animation.html">Animation</a>.Stop</h1> <div class="clear"> </div> <div class="clear"> </div> <div class="suggest"> <a class="blue-btn sbtn">Suggest a change</a> <div class="suggest-wrap rel hide"> <div class="loading hide"> <div> </div> <div> </div> <div> </div> </div> <div class="suggest-success hide"> <h2>Success!</h2> <p>Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.</p> <a class="gray-btn sbtn close">Close</a> </div> <div class="suggest-failed hide"> <h2>Sumbission failed</h2> <p>For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.</p> <a class="gray-btn sbtn close">Close</a> </div> <div class="suggest-form clear"> <label for="suggest_name">Your name</label> <input id="suggest_name" type="text"> </input> <label for="suggest_email">Your email</label> <input id="suggest_email" type="email"> </input> <label for="suggest_body" class="clear">Suggestion <span class="r">*</span></label> <textarea id="suggest_body" class="req"> </textarea> <button id="suggest_submit" class="blue-btn mr10">Submit suggestion</button> <p class="mb0"> <a class="cancel left lh42 cn">Cancel</a> </p> </div> </div> </div> <a href='../Manual/class-Animation.html' title='Go to Animation Component in the Manual' class='switch-link gray-btn sbtn left show'>Switch to Manual</a> <div class="clear"> </div> </div> <div class="subsection"> <div class="signature"> <div class="signature-JS sig-block">public function <span class="sig-kw">Stop</span>(): void; </div> <div class="signature-CS sig-block">public void <span class="sig-kw">Stop</span>(); </div> </div> </div> <div class="subsection"> <h2>Description</h2> <p>Stops all playing animations that were started with this Animation.</p> </div> <div class="subsection"> <p>Stopping an animation also Rewinds it to the Start.</p> </div> <div class="subsection"> <div class="signature"> <div class="signature-JS sig-block">public function <span class="sig-kw">Stop</span>(<span class="sig-kw">name</span>: string): void; </div> <div class="signature-CS sig-block">public void <span class="sig-kw">Stop</span>(string <span class="sig-kw">name</span>); </div> </div> </div> <div class="subsection"> <h2>Parameters</h2> <table class="list"> </table> </div> <div class="subsection"> <h2>Description</h2> <p>Stops an animation named <code class="varname">name</code>.</p> </div> <div class="subsection"> <p>Stopping an animation also Rewinds it to the Start.</p> </div> </div> <div class="footer-wrapper"> <div class="footer clear"> <div class="copy">Copyright © 2014 Unity Technologies</div> <div class="menu"> <a href="http://unity3d.com/learn">Learn</a> <a href="http://unity3d.com/community">Community</a> <a href="http://unity3d.com/asset-store">Asset Store</a> <a href="https://store.unity3d.com">Buy</a> <a href="http://unity3d.com/unity/download">Download</a> </div> </div> </div> </div> </div> </div> </div> </body> </html>
dhtml/DHTML/DHTMLref/behaviors/sourceurl.html
gucong3000/handbook
<HTML > <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=windows-1252" /> <TITLE>sourceURL</TITLE> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie5.css" /> <style> BODY { font-family:verdana,arial,helvetica; margin:0; } </style> <SCRIPT LANGUAGE="javascript" SRC="../common/common.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/browdata.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/appliesto2.js"></SCRIPT> <SCRIPT LANGUAGE="javascript" SRC="../common/toolbar.js"></SCRIPT> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/ie4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/inetsdk.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/advSDKATIE4.css" /> <LINK REL="stylesheet" TYPE="text/css" HREF="../common/default.css" /> <SCRIPT> var gbDBG = true; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> var gsHTCPath = "../common/"; var gsGraphicsPath = "../common/"; var gsCodePath = "../common/"; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> var gsContextMenuPath = gsHTCPath + "contextmenu.htc"; var gsCodeDecoPath = gsHTCPath + "codedeco.htc"; var gsStoreName="workshop"; var gsGraphicsPath = "../common/"; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> function InitPage() { if (!assert( (typeof(oBD) == 'object' && oBD != null), "browdata object unavailable!") ) { return; } if ("MSIE" == oBD.browser && oBD.majorVer >= 5 && (oBD.platform.toLowerCase()!="x" && oBD.platform!="Mac" && oBD.platform!="PPC" )) { if (typeof(fnATInit) == 'function') fnATInit(); if (typeof(PostGBInit) == 'function') PostGBInit(); if (typeof(PostInit) == 'function') PostInit(); if (typeof(initTabbedMembers) == 'function') initTabbedMembers(); if (typeof(hideExamples) == 'function') hideExamples(); } if (oBD.getsNavBar && oBD.platform!="PPC" ) { if (typeof(SetShowMes) == 'function') SetShowMes(); } } function assert(bCond, sMsg) { if (bCond) { return true; } else { if (gbDBG) { alert(sMsg); } return false; } } window.onload = InitPage; </SCRIPT> <SCRIPT LANGUAGE="JavaScript1.2"> function PreInit() { } </SCRIPT> <SCRIPT LANGUAGE="JavaScript"> </script> </HEAD> <BODY TOPMARGIN="0" LEFTMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" BGCOLOR="#FFFFFF" TEXT="#000000"> <TABLE STYLE="table-layout:fixed" class='clsContainer' CELLPADDING='15' CELLSPACING='0' float='left' WIDTH='100%' BORDER='0'> <TR> <TD VALIGN='top'> <DIV CLASS="clsDocBody"><TABLE WIDTH="97%" CELLPADDING="0" CELLSPACING="0"><TR><TD><H1>sourceURL Property <IMG SRC="../common/new.gif"></IMG></H1></TD><TD ALIGN="right"><A HREF="../default.html" TITLE="This index is only for content formerly found in the Web Workshop." TARGET="_top">Internet Development Index</A></TD></TR></TABLE> <HR SIZE="1"></HR><P>Retrieves the URL of the media.</P><P CLASS="clsRef">Syntax</P><BLOCKQUOTE><PRE CLASS="clsSyntax">[ <SPAN CLASS="clsRange">sSourceURL</SPAN><B> =</B> ] <I>MediaItem</I>.<B>sourceURL</B></PRE></BLOCKQUOTE><P CLASS="clsRef">Possible Values</P><BLOCKQUOTE><TABLE CLASS="clsStd"><TR><TD><SPAN CLASS="clsRange">sSourceURL</SPAN></TD><TD><b>String</b> that receives the URL of the media.</TD></TR></TABLE><P>The property is read-only. The property has no default value.</P></BLOCKQUOTE><P CLASS="clsRef">Applies To</P><BLOCKQUOTE><TABLE ID="oATTable" CLASS="TMAT3D"><TR><TD VALIGN="top" STYLE="border: 1 outset; display: none;"></TD><TD ID="oATData" CLASS="controls"><A PLATINFO="win32=6" HREF="../behaviors/mediaitem.html"> MediaItem</A></TD></TR><TR><TD COLSPAN="2" CLASS="controls"></TD></TR></TABLE></BLOCKQUOTE></DIV> </TD> </TR> </TABLE> </BODY> </HTML>
indicadores-la-laguna/seguridad-violacion-equiparada.html
TRCIMPLAN/trcimplan.github.io
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <!-- =================================================================================================== Instituto Municipal de Planeación y Competitividad (IMPLAN) de Torreón. 3er. generación de la Plataforma del Conocimiento Desarrollado por Ing. Guillermo Valdés Lozano <guivaloz en movimientolibre.com> El software que lo construye está bajo la licencia GPL versión 3. © 2014, 2015, 2016, 2017. Una copia está contenida en el archivo LICENCE al bajar desde GitHub. Al usar, estudiar y copiar está aceptando los términos de uso de la información y del sitio web: http://www.trcimplan.gob.mx/terminos/terminos-informacion.html http://www.trcimplan.gob.mx/terminos/terminos-sitio.html Descargue, estudie y colabore bajando todo este sitio web: IMPLAN Torreón https://github.com/TRCIMPLAN/trcimplan.github.io Agradecemos y compartimos las tecnologías abiertas y gratuitas sobre las que se basa: PHP http://php.net Twitter Bootstrap http://getbootstrap.com StartBootStrap http://startbootstrap.com Morris.js https://morrisjs.github.io/morris.js/ Font Awesome http://fontawesome.io DataTables https://www.datatables.net Carto https://carto.com GitHub https://github.com =================================================================================================== --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Cantidad de violaciones equiparadas por año"> <meta name="author" content="Dirección de Investigación Estratégica"> <meta name="keywords" content="IMPLAN, La Laguna, Seguridad, Delincuencia"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Violación equiparada en La Laguna - IMPLAN Torreón"> <meta name="twitter:description" content="Cantidad de violaciones equiparadas por año"> <meta name="twitter:image" content="http://www.trcimplan.gob.mx/indicadores-la-laguna/../imagenes/imagen-previa.jpg"> <meta name="twitter:url" content="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-violacion-equiparada.html"> <meta name="og:title" content="Violación equiparada en La Laguna - IMPLAN Torreón"> <meta name="og:description" content="Cantidad de violaciones equiparadas por año"> <meta name="og:image" content="http://www.trcimplan.gob.mx/indicadores-la-laguna/../imagenes/imagen-previa.jpg"> <meta name="og:url" content="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-violacion-equiparada.html"> <title>Violación equiparada en La Laguna - IMPLAN Torreón</title> <link rel="shortcut icon" type="image/x-icon" href="../imagenes/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-76x76.png" sizes="76x76"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-120x120.png" sizes="120x120"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-152x152.png" sizes="152x152"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-180x180.png" sizes="180x180"> <link rel="icon" href="../imagenes/icon-hires.png" sizes="192x192"> <link rel="icon" href="../imagenes/icon-normal.png" sizes="128x128"> <link rel="alternate" type="application/rss+xml" href="../rss.xml" title="IMPLAN Torreón"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../vendor/metisMenu/metisMenu.min.css"> <link rel="stylesheet" type="text/css" href="../vendor/datatables-plugins/dataTables.bootstrap.css"> <link rel="stylesheet" type="text/css" href="../vendor/morrisjs/morris.css"> <link rel="stylesheet" type="text/css" href="../vendor/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../dist/css/sb-admin-2.min.css"> <link rel="stylesheet" type="text/css" href="../dist/css/plataforma-de-conocimiento.css"> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Noto+Sans|Roboto+Condensed:400,700"> <link rel="stylesheet" type="text/css" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css"> <link rel="stylesheet" type="text/css" href="../dist/css/estilosvm.css"> <link rel="stylesheet" type="text/css" href="../dist/css/trcimplan.css"> <!-- SOPORTE PARA IE --> <!--[if lt IE 9]> <script type="text/javascript" src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script type="text/javascript" src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> </head> <body> <div id="wrapper"> <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"><img class="navbar-brand-img" src="../imagenes/implan-barra-logo-chico-gris.png" alt="IMPLAN Torreón"></a> </div> <div class="navbar-default sidebar" role="navigation"> <div class="sidebar-nav navbar-collapse"> <ul class="nav" id="side-menu"> <li class="sidebar-search"> <form method="get" action="http://www.trcimplan.gob.mx/buscador-resultados.html"> <div class="input-group custom-search-form"> <input type="text" class="form-control" placeholder="Google buscar..." value="" name="q"> <span class="input-group-btn"> <button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button> </span> </div> </form> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-lightbulb-o"></i></span> Análisis Publicados<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../blog/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Últimos Análisis</a></li> <li><a href="../excolaboradores/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Análisis por Autor</a></li> </ul> </li> <li class="active"> <a href="#"><span class="navegacion-icono"><i class="fa fa-area-chart"></i></span> Indicadores<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../smi/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SMI</a></li> <li><a href="../indicadores-categorias/index.html"><span class="navegacion-icono"><i class="fa fa-th-list"></i></span> Indicadores por Categoría</a></li> <li class="active"><a href="../smi/por-region.html"><span class="navegacion-icono"><i class="fa fa-table"></i></span> Indicadores por Región</a></li> <li><a href="../smi/niveles-socioeconomicos.html"><span class="navegacion-icono"><i class="fa fa-bar-chart"></i></span> Niveles Socioeconómicos</a></li> <li><a href="../monitores/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Monitores</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-puzzle-piece"></i></span> Indicadores Básicos de Colonias<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../ibc/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al IBC</a></li> <li><a href="../ibc-colonias-torreon/index.html"><span class="navegacion-icono"><i class="fa fa-font"></i></span> Colonias de Torreón</a></li> <li><a href="https://implantorreon.carto.com/u/sigimplan/builder/907a6bc0-2c7e-451e-9668-b78d952e52ff/embed" target="_blank"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Mapa Completo</a></li> <li><a href="../ibc/torreon-urbano.html"><span class="navegacion-icono"><i class="fa fa-table"></i></span> Torreón Urbano</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Información Geográfica<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../sig/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SIG</a></li> <li><a href="../sig-mapas-torreon/temas-sig.html"><span class="navegacion-icono"><i class="fa fa-map-o"></i></span> Mapas por Tema</a></li> <li><a href="../sig-mapas-torreon/plan-director-desarrollo-urbano.html"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Usos de Suelo</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Plan Estratégico Torreón 2040<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../pet/indice.html"><span class="navegacion-icono"><i class="fa fa-list-ul"></i></span> Índice General</a></li> <li><a href="../plan-estrategico-torreon-enfoque-metropolitano-2040/index.html"><span class="navegacion-icono"><i class="fa fa-download"></i></span> Descargar</a></li> <li><a href="../plan-estrategico-metropolitano/descripcion-del-proceso.html"><span class="navegacion-icono"><i class="fa fa-calendar"></i></span> Descripción del proceso</a></li> <li><a href="../proyectos/index.html"><span class="navegacion-icono"><i class="fa fa-check-square"></i></span> Proyectos</a></li> <li><a href="../vision-de-ciudad/vision-de-ciudad.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Visión de Ciudad desde IMPLAN</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-file-pdf-o"></i></span> Documentos<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../sig-planes/index.html"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Planes y Programas</a></li> <li><a href="../investigaciones/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Investigaciones</a></li> <li><a href="../estudios/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Estudios</a></li> </ul> </li> <li><a href="../consejo-directivo/integrantes.html"><span class="navegacion-icono"><i class="fa fa-users"></i></span> Consejo Directivo</a></li> <li><a href="../sala-prensa/index.html"><span class="navegacion-icono"><i class="fa fa-newspaper-o"></i></span> Sala de Prensa</a></li> <li><a href="../programas-radio/index.html"><span class="navegacion-icono"><i class="fa fa-microphone"></i></span> Programas de Radio</a></li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Consejo Visión Metrópoli<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../convocatorias/vision-metropoli.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Consejo Juvenil</a></li> <li><a href="../vision-metropoli/integrantes.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Integrantes del Consejo</a></li> <li><a href="../vision-metropoli/index.html"><span class="navegacion-icono"><i class="fa fa-newspaper-o"></i></span> Sala de Prensa</a></li> <li><a href="../vision-metropoli/publicaciones.html"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Publicaciones</a></li> <li><a href="../vision-metropoli/reglamento-vision-metropoli-2022.pdf"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Reglamento</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-building-o"></i></span> Institucional<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../institucional/vision-mision.html"><span class="navegacion-icono"><i class="fa fa-trophy"></i></span> Misión / Visión</a></li> <li><a href="../institucional/NuestrosProyectos.html"><span class="navegacion-icono"><i class="fa fa-pencil-square-o"></i></span> Nuestros Proyectos</a></li> <li><a href="../institucional/mensaje-director.html"><span class="navegacion-icono"><i class="fa fa-comment"></i></span> Mensaje del Director</a></li> <li><a href="../autores/index.html"><span class="navegacion-icono"><i class="fa fa-user"></i></span> Quienes Somos</a></li> <li><a href="../institucional/estructura-organica.html"><span class="navegacion-icono"><i class="fa fa-sitemap"></i></span> Estructura Orgánica</a></li> <li><a href="../institucional/modelo-operativo-universal.html"><span class="navegacion-icono"><i class="fa fa-slideshare"></i></span> Modelo Operativo Univ.</a></li> <li><a href="../institucional/reglamentos.html"><span class="navegacion-icono"><i class="fa fa-gavel"></i></span> Reglamentos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Transparencia<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="http://www2.icai.org.mx/ipo/dependencia.php?dep=178#pageload" target="_blank"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Transparencia Estatal (ICAI)</a></li> <li><a href="https://consultapublicamx.inai.org.mx/vut-web/faces/view/consultaPublica.xhtml#inicio" target="_blank"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Plataforma Nacional de Transparencia</a></li> <li><a href="../transparencia/index.html"><span class="navegacion-icono"><i class="fa fa-file-pdf-o"></i></span> Documentos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-download"></i></span> Datos Abiertos<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../smi/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-area-chart"></i></span> Sist. Metropolitano de Indicadores</a></li> <li><a href="../ibc/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-puzzle-piece"></i></span> Indicador Básico de Colonias</a></li> <li><a href="../sig/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Sist. Información Geográfica</a></li> <li><a href="https://arcg.is/0vySSr" target="_blank"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Atlas de Riesgos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-share-alt"></i></span> Términos de Uso<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../terminos/terminos-informacion.html"><span class="navegacion-icono"><i class="fa fa-cubes"></i></span> De la información</a></li> <li><a href="../terminos/terminos-sitio.html"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Del sitio web</a></li> <li><a href="../terminos/privacidad.html"><span class="navegacion-icono"><i class="fa fa-lock"></i></span> Aviso de Privacidad</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-phone"></i></span> Contacto<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../contacto/contacto.html"><span class="navegacion-icono"><i class="fa fa-phone"></i></span> Medios de contacto</a></li> <li><a href="../preguntas-frecuentes/preguntas-frecuentes.html"><span class="navegacion-icono"><i class="fa fa-question"></i></span> Preguntas Frecuentes</a></li> <li><a href="http://goo.gl/forms/1rdX4X128PpMOif73" target="_blank"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Comentarios y Sugerencias</a></li> </ul> </li> <li><a href="../convocatorias/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Convocatorias</a></li> <li><a href="http://177.244.42.17/ovie-torreon/#!" target="_blank"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Oficina Virtual de Información Económica (OVIE)</a></li> <li><a href="https://arcg.is/0vySSr" target="_blank"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Atlas Municipal de Riesgos de Torreón</a></li> <li><a href="../multi-city-challenge/multi-city-challenge.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Multi-City Challenge México 2020</a></li> </ul> </div> </div> </nav> <div id="page-wrapper"> <div class="cuerpo"> <article><div itemscope itemtype="http://schema.org/Article"> <div class="encabezado"> <h1 itemprop="headline">Violación equiparada en La Laguna</h1> <div class="encabezado-descripcion" itemprop="description">Cantidad de violaciones equiparadas por año</div> <div class="encabezado-autor-fecha"> Por <span itemprop="author">Dirección de Investigación Estratégica</span> - <meta itemprop="datePublished" content="2018-07-26T08:56:52">26/07/2018 08:56 </div> </div> <div itemprop="articleBody"> <!-- Contenido: Inicia --> <div> <ul class="nav nav-tabs lenguetas" role="tablist" id="LenguetasIndicador"> <li role="presentation" class="active"><a href="#LenguetasIndicadorDatos" aria-controls="LenguetasIndicadorDatos" role="tab" data-toggle="tab">Datos</a></li> <li role="presentation"><a href="#LenguetasIndicadorGrafica" aria-controls="LenguetasIndicadorGrafica" role="tab" data-toggle="tab">Gráfica</a></li> <li role="presentation"><a href="#LenguetasIndicadorOtrasRegiones" aria-controls="LenguetasIndicadorOtrasRegiones" role="tab" data-toggle="tab">Otras regiones</a></li> </ul> <div class="tab-content lengueta-contenido"> <div role="tabpanel" class="tab-pane active" id="LenguetasIndicadorDatos"> <table id="SmiDatosViolacionEquiparadaEnLaLaguna" class="table table-hover table-bordered"> <thead> <tr> <th>Fecha</th> <th>Dato</th> <th>Fuente</th> <th>Notas</th> </tr> </thead> <tbody> <tr> <td class="centrado">2015-12-31</td> <td class="derecha">16</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td class="centrado">2016-12-31</td> <td class="derecha">35</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td class="centrado">2017-12-31</td> <td class="derecha">37</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td class="centrado">2018-12-31</td> <td class="derecha">37</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td class="centrado">2019-12-31</td> <td class="derecha">46</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> </tbody> </table> </div> <div role="tabpanel" class="tab-pane" id="LenguetasIndicadorGrafica"> <h3>Violación equiparada en La Laguna </h3> <div id="SmiGraficasViolacionEquiparadaEnLaLaguna" class="grafica"></div> </div> <div role="tabpanel" class="tab-pane" id="LenguetasIndicadorOtrasRegiones"> <h3>Últimos datos de Violación equiparada en La Laguna</h3> <div id="SmiOtrasRegionesViolacionEquiparadaEnLaLagunaGrafica" class="grafica"></div> <table id="SmiOtrasRegionesViolacionEquiparadaEnLaLagunaTabla" class="table table-hover table-bordered"> <thead> <tr> <th>Región</th> <th>Fecha</th> <th>Dato</th> <th>Fuente</th> <th>Notas</th> </tr> </thead> <tbody> <tr> <td>Torreón</td> <td class="centrado">2019-12-31</td> <td class="derecha">38</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td>Gómez Palacio</td> <td class="centrado">2019-12-31</td> <td class="derecha">0</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td>Lerdo</td> <td class="centrado">2019-12-31</td> <td class="derecha">1</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td>Matamoros</td> <td class="centrado">2019-12-31</td> <td class="derecha">7</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> <tr> <td>La Laguna</td> <td class="centrado">2019-12-31</td> <td class="derecha">46</td> <td>Secretariado Ejecutivo del Sistema Nacional de Seguridad Pública</td> <td></td> </tr> </tbody> </table> </div> </div> </div> <h3>Observaciones</h3> <p>Descarga la [Base de Datos] (http://secretariadoejecutivo.gob.mx/incidencia-delictiva/incidencia-delictiva-fuero-comun.php)</p> <!-- Contenido: Termina --> </div> </div></article> <aside> <!-- Extra: Inicia --> <h3>Publicaciones relacionadas</h3> <p><b>Análisis Publicados</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/blog/comportamiento-tendencia-incidencia-delictiva.html">Comportamiento y tendencia de la incidencia delictiva. Una visi&oacute;n ampliada.</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/vivienda-social-y-violencia-intrafamiliar.html">Vivienda Social y Violencia Intrafamiliar</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/prevencion-delincuencia-juvenil.html">La prevenci&oacute;n de la Delincuencia Juvenil, elemento central de la prevenci&oacute;n integral del delito y la violencia</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/los-derechos-del-policia.html">Los Derechos del Polic&iacute;a</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/la-otra-violencia-contra-los-ninos.html">La Otra Violencia Contra los Ni&ntilde;os</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/necesidad-diagnostico-sobre-delincuencia-juvenil.html">La Necesidad de un Diagn&oacute;stico sobre la Delincuencia Juvenil en el Municipio de Torre&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/prevencion-delito-seguridad.html">La Prevenci&oacute;n del Delito como elemento fundamental para la Seguridad</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/ciberacoso-coahuila-abril2019.html">Coahuila supera la media nacional en ciberacoso</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/las-mujeres-y-su-acceso-a-una-vida-sin-violencia.html">Las mujeres y su acceso a una vida sin violencia</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/torreon-hacia-la-resiliencia-urbana.html">Torre&oacute;n, hacia la resiliencia urbana</a></li> </ul> <p><b>Sistema Metropolitano de Indicadores</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-abuso-sexual.html">Abuso sexual en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-delitos.html">Delitos en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-feminicidio.html">Feminicidio en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-fraude.html">Fraude en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-hostigamiento-sexual.html">Hostigamiento sexual en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-incumplimiento-de-obligaciones-de-asistencia-familiar.html">Incumplimiento de obligaciones de asistencia familiar en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-lesiones.html">Lesiones en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-narcomenudeo.html">Narcomenudeo en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-otros-delitos-contra-el-patrimonio.html">Otros delitos contra el patrimonio en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/seguridad-otros-delitos-contra-la-familia.html">Otros delitos contra la familia en La Laguna</a></li> </ul> <p><b>Sistema de Información Geográfica</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/sig-mapas-torreon/seguridad-publica.html">Seguridad P&uacute;blica</a></li> </ul> <p><b>Plan Estratégico Torreón</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/pet/vision-desarrollo-social.html">Visi&oacute;n de Desarrollo Social 2040</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/cartera-proyectos-desarrollo-social.html">Cartera de Proyectos: Desarrollo Social</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-desarrollo-social.html">Diagn&oacute;stico Estrat&eacute;gico: Desarrollo Social</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/vision-buen-gobierno.html">Visi&oacute;n de Buen Gobierno 2040</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-buen-gobierno.html">Diagn&oacute;stico Estrat&eacute;gico: Buen Gobierno</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-desarrollo-economico-innovacion.html">Diagn&oacute;stico Estrat&eacute;gico: Desarrollo Econ&oacute;mico e Innovaci&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-entorno-urbano.html">Diagn&oacute;stico Estrat&eacute;gico: Entorno Urbano</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-movilidad-transporte.html">Diagn&oacute;stico Estrat&eacute;gico: Movilidad y Transporte</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-medio-ambiente-sustentabilidad.html">Diagn&oacute;stico Estrat&eacute;gico: Medio Ambiente y Sustentabilidad</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/cartera-proyectos-medio-ambiente-sustentabilidad.html">Cartera de Proyectos: Medio Ambiente y Sustentabilidad</a></li> </ul> <p><b>Sala de Prensa</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2017-07-18-firman-convenio-de-colaboracion-implan-torreon-implan-saltillo.html">Firman convenio de colaboraci&oacute;n IMPLAN Torre&oacute;n &ndash; IMPLAN Saltillo</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-04-15-comunicado-conferencias-virtuales.html">El IMPLAN Torre&oacute;n y su Consejo Juvenil: Visi&oacute;n Metr&oacute;poli, presentar&aacute;n Conferencias Virtuales</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-27-segunda-sesion-consejo-2020.html">Presentan en Segunda Sesi&oacute;n de Consejo el &ldquo;Programa Parcial de Desarrollo Urbano para la Zona Norte de Torre&oacute;n&rdquo;</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-17-comunicado-enoe.html">Disminuye la tasa de desempleo en la Zona Metropolitana de La Laguna (ZML), al cuarto trimestre de 2019</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-06-comunicado-conferencia-imeplan.html">Postura sobre la creaci&oacute;n de un Instituto Metropolitano de Planeaci&oacute;n.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-01-30-primer-sesion-consejo-2020.html">Primer Sesi&oacute;n de Consejo 2020. Se renueva el Consejo Directivo del IMPLAN.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2019-09-26-novena-sesion-consejo.html">Novena Sesi&oacute;n de Consejo Implan. Presentan Resultados del Conversatorio y del Concurso &ldquo;Manos a la Cebra&rdquo;.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2019-09-26-seminario-identidad-lagunera.html">Consejo Visi&oacute;n Metr&oacute;poli presenta Seminario de Identidad Lagunera</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2019-09-24-manos-a-la-cebra-reporte.html">Manos a la Cebra</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2019-09-12-resultado-conversatorio-rectores-implan-empresa.html">Presentan resultados del Conversatorio entre Rectores, IMPLAN y Empresarios</a></li> </ul> <!-- Extra: Termina --> </aside> <div class="contenido-social"> <h5>Compartir en Redes Sociales</h5> <a href="https://twitter.com/share" class="twitter-share-button" data-via="trcimplan" data-lang="es">Twittear</a> <iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.trcimplan.gob.mx%2Findicadores-la-laguna%2Fseguridad-violacion-equiparada.html&amp;width=300&amp;layout=button_count&amp;action=like&amp;show_faces=true&amp;share=false&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:21px;" allowTransparency="true"></iframe> </div> </div> <div class="mapa-inferior"> <div class="pull-right redes-sociales"> <a class="fa fa-twitter-square" href="http://www.twitter.com/trcimplan" target="_blank"></a> <a class="fa fa-facebook-square" href="https://facebook.com/trcimplan" target="_blank"></a> <a class="fa fa-facebook-square" href="http://www.instagram.com/implantorreon" target="_blank"></a> <a class="fa fa-rss-square" href="../rss.xml"></a> </div> </div> </div> </div> <!-- Javascript global inicia --> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <script type="text/javascript" src="../vendor/metisMenu/metisMenu.min.js"></script> <script type="text/javascript" src="../vendor/datatables/js/jquery.dataTables.min.js"></script> <script type="text/javascript" src="../vendor/datatables-plugins/dataTables.bootstrap.min.js"></script> <script type="text/javascript" src="../vendor/datatables-responsive/dataTables.responsive.js"></script> <script type="text/javascript" src="../vendor/raphael/raphael.min.js"></script> <script type="text/javascript" src="../vendor/morrisjs/morris.min.js"></script> <script type="text/javascript" src="../dist/js/sb-admin-2.min.js"></script> <script type="text/javascript" src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <!-- Javascript global termina --> <!-- Javascript inicia --> <script> // LenguetaWeb LenguetasIndicadorGrafica ejecuta lo siguiente al mostrar $('#LenguetasIndicador a[href="#LenguetasIndicadorGrafica"]').on('shown.bs.tab', function(e){ if (typeof varSmiGraficasViolacionEquiparadaEnLaLaguna === 'undefined') { varSmiGraficasViolacionEquiparadaEnLaLaguna = Morris.Line({ element: 'SmiGraficasViolacionEquiparadaEnLaLaguna', data: [ { fecha: '2015-12-31', dato: 16 }, { fecha: '2016-12-31', dato: 35 }, { fecha: '2017-12-31', dato: 37 }, { fecha: '2018-12-31', dato: 37 }, { fecha: '2019-12-31', dato: 46 }], xkey: 'fecha', ykeys: ['dato'], labels: ['Dato'], lineColors: ['#FF5B02'], xLabelFormat: function(d) { return d.getDate()+'/'+(d.getMonth()+1)+'/'+d.getFullYear(); }, dateFormat: function(ts) { var d = new Date(ts); return d.getDate() + '/' + (d.getMonth() + 1) + '/' + d.getFullYear(); } }); } }) // LenguetaWeb LenguetasIndicadorOtrasRegiones ejecuta lo siguiente al mostrar $('#LenguetasIndicador a[href="#LenguetasIndicadorOtrasRegiones"]').on('shown.bs.tab', function(e){ if (typeof varSmiOtrasRegionesViolacionEquiparadaEnLaLagunaGrafica === 'undefined') { varSmiOtrasRegionesViolacionEquiparadaEnLaLagunaGrafica = Morris.Bar({ element: 'SmiOtrasRegionesViolacionEquiparadaEnLaLagunaGrafica', data: [{ region: 'Torreón', dato: 38 },{ region: 'Gómez Palacio', dato: 0 },{ region: 'Lerdo', dato: 1 },{ region: 'Matamoros', dato: 7 },{ region: 'La Laguna', dato: 46 }], xkey: 'region', ykeys: ['dato'], labels: ['Dato'], barColors: ['#FF5B02'] }); } }) // LenguetasWeb LenguetasIndicador ordenar que Datos es la que se mostrará $(document).ready(function(){ $('#LenguetasIndicador a[href="#LenguetasIndicadorDatos"]').tab('show') }); </script> <script> // Twitter !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); </script> <!-- Javascript termina --> <!-- Javascript Google Analytics --> <script> // Google Analytics (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-58290501-1', 'auto');ga('send', 'pageview'); </script> </body> </html>
wpilib18/java/current/javadoc/edu/wpi/first/wpilibj/BuiltInAccelerometer.html
wh1ter0se/PowerUp-2018
<!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_144) on Sat Oct 28 05:22:52 EDT 2017 --> <title>BuiltInAccelerometer (Documentation - Release API)</title> <meta name="date" content="2017-10-28"> <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="BuiltInAccelerometer (Documentation - Release API)"; } } catch(err) { } //--> var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../edu/wpi/first/wpilibj/AnalogTriggerOutput.AnalogTriggerType.html" title="enum in edu.wpi.first.wpilibj"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../edu/wpi/first/wpilibj/CameraServer.html" title="class in edu.wpi.first.wpilibj"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/wpi/first/wpilibj/BuiltInAccelerometer.html" target="_top">Frames</a></li> <li><a href="BuiltInAccelerometer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</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">edu.wpi.first.wpilibj</div> <h2 title="Class BuiltInAccelerometer" class="title">Class BuiltInAccelerometer</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>edu.wpi.first.wpilibj.BuiltInAccelerometer</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a>, <a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html" title="interface in edu.wpi.first.wpilibj.livewindow">LiveWindowSendable</a>, <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj">Sendable</a></dd> </dl> <hr> <br> <pre>public class <span class="typeNameLabel">BuiltInAccelerometer</span> extends java.lang.Object implements <a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a>, <a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html" title="interface in edu.wpi.first.wpilibj.livewindow">LiveWindowSendable</a></pre> <div class="block">Built-in accelerometer. <p>This class allows access to the roboRIO's internal accelerometer.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested.classes.inherited.from.class.edu.wpi.first.wpilibj.interfaces.Accelerometer"> <!-- --> </a> <h3>Nested classes/interfaces inherited from interface&nbsp;edu.wpi.first.wpilibj.interfaces.<a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a></h3> <code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.Range.html" title="enum in edu.wpi.first.wpilibj.interfaces">Accelerometer.Range</a></code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#BuiltInAccelerometer--">BuiltInAccelerometer</a></span>()</code> <div class="block">Constructor.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#BuiltInAccelerometer-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-">BuiltInAccelerometer</a></span>(<a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.Range.html" title="enum in edu.wpi.first.wpilibj.interfaces">Accelerometer.Range</a>&nbsp;range)</code> <div class="block">Constructor.</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#getSmartDashboardType--">getSmartDashboardType</a></span>()</code> <div class="block">The string representation of the named data type that will be used by the smart dashboard for this <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj"><code>Sendable</code></a>.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#getX--">getX</a></span>()</code> <div class="block">The acceleration in the X axis.</div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#getY--">getY</a></span>()</code> <div class="block">The acceleration in the Y axis.</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#getZ--">getZ</a></span>()</code> <div class="block">The acceleration in the Z axis.</div> </td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#initTable-edu.wpi.first.networktables.NetworkTable-">initTable</a></span>(<a href="../../../../edu/wpi/first/networktables/NetworkTable.html" title="class in edu.wpi.first.networktables">NetworkTable</a>&nbsp;subtable)</code> <div class="block">Initializes a table for this <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj"><code>Sendable</code></a> object.</div> </td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#setRange-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-">setRange</a></span>(<a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.Range.html" title="enum in edu.wpi.first.wpilibj.interfaces">Accelerometer.Range</a>&nbsp;range)</code> <div class="block">Common interface for setting the measuring range of an accelerometer.</div> </td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#startLiveWindowMode--">startLiveWindowMode</a></span>()</code> <div class="block">Start having this sendable object automatically respond to value changes reflect the value on the table.</div> </td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#stopLiveWindowMode--">stopLiveWindowMode</a></span>()</code> <div class="block">Stop having this sendable object automatically respond to value changes.</div> </td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../edu/wpi/first/wpilibj/BuiltInAccelerometer.html#updateTable--">updateTable</a></span>()</code> <div class="block">Update the table for this sendable object with the latest values.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="BuiltInAccelerometer-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BuiltInAccelerometer</h4> <pre>public&nbsp;BuiltInAccelerometer(<a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.Range.html" title="enum in edu.wpi.first.wpilibj.interfaces">Accelerometer.Range</a>&nbsp;range)</pre> <div class="block">Constructor.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>range</code> - The range the accelerometer will measure</dd> </dl> </li> </ul> <a name="BuiltInAccelerometer--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>BuiltInAccelerometer</h4> <pre>public&nbsp;BuiltInAccelerometer()</pre> <div class="block">Constructor. The accelerometer will measure +/-8 g-forces</div> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="setRange-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setRange</h4> <pre>public&nbsp;void&nbsp;setRange(<a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.Range.html" title="enum in edu.wpi.first.wpilibj.interfaces">Accelerometer.Range</a>&nbsp;range)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html#setRange-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-">Accelerometer</a></code></span></div> <div class="block">Common interface for setting the measuring range of an accelerometer.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html#setRange-edu.wpi.first.wpilibj.interfaces.Accelerometer.Range-">setRange</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>range</code> - The maximum acceleration, positive or negative, that the accelerometer will measure. Not all accelerometers support all ranges.</dd> </dl> </li> </ul> <a name="getX--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getX</h4> <pre>public&nbsp;double&nbsp;getX()</pre> <div class="block">The acceleration in the X axis.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html#getX--">getX</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a></code></dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The acceleration of the roboRIO along the X axis in g-forces</dd> </dl> </li> </ul> <a name="getY--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getY</h4> <pre>public&nbsp;double&nbsp;getY()</pre> <div class="block">The acceleration in the Y axis.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html#getY--">getY</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a></code></dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The acceleration of the roboRIO along the Y axis in g-forces</dd> </dl> </li> </ul> <a name="getZ--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getZ</h4> <pre>public&nbsp;double&nbsp;getZ()</pre> <div class="block">The acceleration in the Z axis.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html#getZ--">getZ</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/interfaces/Accelerometer.html" title="interface in edu.wpi.first.wpilibj.interfaces">Accelerometer</a></code></dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The acceleration of the roboRIO along the Z axis in g-forces</dd> </dl> </li> </ul> <a name="getSmartDashboardType--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getSmartDashboardType</h4> <pre>public&nbsp;java.lang.String&nbsp;getSmartDashboardType()</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html#getSmartDashboardType--">Sendable</a></code></span></div> <div class="block">The string representation of the named data type that will be used by the smart dashboard for this <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj"><code>Sendable</code></a>.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html#getSmartDashboardType--">getSmartDashboardType</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj">Sendable</a></code></dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>The type of this <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj"><code>Sendable</code></a>.</dd> </dl> </li> </ul> <a name="initTable-edu.wpi.first.networktables.NetworkTable-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>initTable</h4> <pre>public&nbsp;void&nbsp;initTable(<a href="../../../../edu/wpi/first/networktables/NetworkTable.html" title="class in edu.wpi.first.networktables">NetworkTable</a>&nbsp;subtable)</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html#initTable-edu.wpi.first.networktables.NetworkTable-">Sendable</a></code></span></div> <div class="block">Initializes a table for this <a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj"><code>Sendable</code></a> object.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html#initTable-edu.wpi.first.networktables.NetworkTable-">initTable</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/Sendable.html" title="interface in edu.wpi.first.wpilibj">Sendable</a></code></dd> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>subtable</code> - The table to put the values in.</dd> </dl> </li> </ul> <a name="updateTable--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>updateTable</h4> <pre>public&nbsp;void&nbsp;updateTable()</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#updateTable--">LiveWindowSendable</a></code></span></div> <div class="block">Update the table for this sendable object with the latest values.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#updateTable--">updateTable</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html" title="interface in edu.wpi.first.wpilibj.livewindow">LiveWindowSendable</a></code></dd> </dl> </li> </ul> <a name="startLiveWindowMode--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>startLiveWindowMode</h4> <pre>public&nbsp;void&nbsp;startLiveWindowMode()</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#startLiveWindowMode--">LiveWindowSendable</a></code></span></div> <div class="block">Start having this sendable object automatically respond to value changes reflect the value on the table.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#startLiveWindowMode--">startLiveWindowMode</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html" title="interface in edu.wpi.first.wpilibj.livewindow">LiveWindowSendable</a></code></dd> </dl> </li> </ul> <a name="stopLiveWindowMode--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>stopLiveWindowMode</h4> <pre>public&nbsp;void&nbsp;stopLiveWindowMode()</pre> <div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#stopLiveWindowMode--">LiveWindowSendable</a></code></span></div> <div class="block">Stop having this sendable object automatically respond to value changes.</div> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html#stopLiveWindowMode--">stopLiveWindowMode</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../edu/wpi/first/wpilibj/livewindow/LiveWindowSendable.html" title="interface in edu.wpi.first.wpilibj.livewindow">LiveWindowSendable</a></code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../edu/wpi/first/wpilibj/AnalogTriggerOutput.AnalogTriggerType.html" title="enum in edu.wpi.first.wpilibj"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../edu/wpi/first/wpilibj/CameraServer.html" title="class in edu.wpi.first.wpilibj"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/wpi/first/wpilibj/BuiltInAccelerometer.html" target="_top">Frames</a></li> <li><a href="BuiltInAccelerometer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;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:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/doxygen/d2/d74/_m_s_edge_weights_storage_8h_source.html
smendez-hi/SUMO-hib
<!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"/> <title>SUMO - Simulation of Urban MObility: MSEdgeWeightsStorage.h Source File</title> <link href="../../tabs.css" rel="stylesheet" type="text/css"/> <link href="../../doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.6.3 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="../../main.html"><span>Main&nbsp;Page</span></a></li> <li><a href="../../pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="../../modules.html"><span>Modules</span></a></li> <li><a href="../../annotated.html"><span>Data&nbsp;Structures</span></a></li> <li class="current"><a href="../../files.html"><span>Files</span></a></li> <li><a href="../../dirs.html"><span>Directories</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="../../files.html"><span>File&nbsp;List</span></a></li> <li><a href="../../globals.html"><span>Globals</span></a></li> </ul> </div> <div class="navpath"><a class="el" href="../../dir_75b82e7e4a5feb05200b9ad7adf06257.html">home</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_46b8f36974b309f038ffc35aa047a32b.html">boni</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_52e5be8ca53cec2b5437a8ba83e8e4f0.html">Desktop</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_7de3ce0f65e0314f747915173f89e60e.html">DanielTouched</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_a0096e276045b3ff0719c75e0b3c59bf.html">sumo-0.14.0</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_e9b8d709919855cd07b0394009af2578.html">src</a>&nbsp;&raquo;&nbsp;<a class="el" href="../../dir_6b4e825611921d20a66b187b0ee8072c.html">microsim</a> </div> </div> <div class="contents"> <h1>MSEdgeWeightsStorage.h</h1><a href="../../d2/d74/_m_s_edge_weights_storage_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/****************************************************************************/</span> <a name="l00008"></a>00008 <span class="comment">// A storage for edge travel times and efforts</span> <a name="l00009"></a>00009 <span class="comment">/****************************************************************************/</span> <a name="l00010"></a>00010 <span class="comment">// SUMO, Simulation of Urban MObility; see http://sumo.sourceforge.net/</span> <a name="l00011"></a>00011 <span class="comment">// Copyright (C) 2001-2012 DLR (http://www.dlr.de/) and contributors</span> <a name="l00012"></a>00012 <span class="comment">/****************************************************************************/</span> <a name="l00013"></a>00013 <span class="comment">//</span> <a name="l00014"></a>00014 <span class="comment">// This file is part of SUMO.</span> <a name="l00015"></a>00015 <span class="comment">// SUMO is free software: you can redistribute it and/or modify</span> <a name="l00016"></a>00016 <span class="comment">// it under the terms of the GNU General Public License as published by</span> <a name="l00017"></a>00017 <span class="comment">// the Free Software Foundation, either version 3 of the License, or</span> <a name="l00018"></a>00018 <span class="comment">// (at your option) any later version.</span> <a name="l00019"></a>00019 <span class="comment">//</span> <a name="l00020"></a>00020 <span class="comment">/****************************************************************************/</span> <a name="l00021"></a>00021 <span class="preprocessor">#ifndef MSEdgeWeightsStorage_h</span> <a name="l00022"></a>00022 <span class="preprocessor"></span><span class="preprocessor">#define MSEdgeWeightsStorage_h</span> <a name="l00023"></a>00023 <span class="preprocessor"></span> <a name="l00024"></a>00024 <a name="l00025"></a>00025 <span class="comment">// ===========================================================================</span> <a name="l00026"></a>00026 <span class="comment">// included modules</span> <a name="l00027"></a>00027 <span class="comment">// ===========================================================================</span> <a name="l00028"></a>00028 <span class="preprocessor">#ifdef _MSC_VER</span> <a name="l00029"></a>00029 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="../../d3/d99/windows__config_8h.html">windows_config.h</a>&gt;</span> <a name="l00030"></a>00030 <span class="preprocessor">#else</span> <a name="l00031"></a>00031 <span class="preprocessor"></span><span class="preprocessor">#include &lt;<a class="code" href="../../db/d16/config_8h.html">config.h</a>&gt;</span> <a name="l00032"></a>00032 <span class="preprocessor">#endif</span> <a name="l00033"></a>00033 <span class="preprocessor"></span> <a name="l00034"></a>00034 <span class="preprocessor">#include &lt;<a class="code" href="../../d4/d64/_s_u_m_o_time_8h.html">utils/common/SUMOTime.h</a>&gt;</span> <a name="l00035"></a>00035 <span class="preprocessor">#include &lt;<a class="code" href="../../d3/d83/_value_time_line_8h.html">utils/common/ValueTimeLine.h</a>&gt;</span> <a name="l00036"></a>00036 <a name="l00037"></a>00037 <a name="l00038"></a>00038 <span class="comment">// ===========================================================================</span> <a name="l00039"></a>00039 <span class="comment">// class declarations</span> <a name="l00040"></a>00040 <span class="comment">// ===========================================================================</span> <a name="l00041"></a>00041 <span class="keyword">class </span><a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>; <a name="l00042"></a>00042 <span class="keyword">class </span><a class="code" href="../../db/d61/class_s_u_m_o_vehicle.html" title="Representation of a vehicle.">SUMOVehicle</a>; <a name="l00043"></a>00043 <a name="l00044"></a>00044 <a name="l00045"></a>00045 <span class="comment">// ===========================================================================</span> <a name="l00046"></a>00046 <span class="comment">// class definitions</span> <a name="l00047"></a>00047 <span class="comment">// ===========================================================================</span> <a name="l00052"></a><a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html">00052</a> <span class="comment"></span><span class="keyword">class </span><a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html" title="A storage for edge travel times and efforts.">MSEdgeWeightsStorage</a> { <a name="l00053"></a>00053 <span class="keyword">public</span>: <a name="l00055"></a>00055 <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a9d5ef3212aa4cc3046626bd9d84551d9" title="Constructor.">MSEdgeWeightsStorage</a>() ; <a name="l00056"></a>00056 <a name="l00057"></a>00057 <a name="l00059"></a>00059 <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#acd41061980c4ea331528581ddf388f5a" title="Destructor.">~MSEdgeWeightsStorage</a>() ; <a name="l00060"></a>00060 <a name="l00061"></a>00061 <a name="l00069"></a>00069 <span class="keywordtype">bool</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a1e42d5a68b56af9424a503aaa2c0dab5" title="Returns a travel time for an edge and time if stored.">retrieveExistingTravelTime</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e, <span class="keyword">const</span> <a class="code" href="../../db/d61/class_s_u_m_o_vehicle.html" title="Representation of a vehicle.">SUMOVehicle</a>* <span class="keyword">const</span> v, <a name="l00070"></a>00070 <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> t, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a>&amp; value) <span class="keyword">const</span> ; <a name="l00071"></a>00071 <a name="l00072"></a>00072 <a name="l00080"></a>00080 <span class="keywordtype">bool</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#aa70bc11a9a1f3dca6fd2d3d5860e5e59" title="Returns an effort for an edge and time if stored.">retrieveExistingEffort</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e, <span class="keyword">const</span> <a class="code" href="../../db/d61/class_s_u_m_o_vehicle.html" title="Representation of a vehicle.">SUMOVehicle</a>* <span class="keyword">const</span> v, <a name="l00081"></a>00081 <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> t, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a>&amp; value) <span class="keyword">const</span> ; <a name="l00082"></a>00082 <a name="l00083"></a>00083 <a name="l00090"></a>00090 <span class="keywordtype">void</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a6d7a87630c93f7304d86b5f206cb2a55" title="Adds a travel time information for an edge and a time span.">addTravelTime</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> begin, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> end, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> value) ; <a name="l00091"></a>00091 <a name="l00092"></a>00092 <a name="l00099"></a>00099 <span class="keywordtype">void</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a030848bf159cf17307bc64a3563fc405" title="Adds an effort information for an edge and a time span.">addEffort</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> begin, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> end, <a class="code" href="../../db/d16/config_8h.html#a2481f526aef497857d2b407bc09129fd">SUMOReal</a> value) ; <a name="l00100"></a>00100 <a name="l00101"></a>00101 <a name="l00105"></a>00105 <span class="keywordtype">void</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#afdc74bee7131cd617b6aed4da77b37ff" title="Removes the travel time information for an edge.">removeTravelTime</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e) ; <a name="l00106"></a>00106 <a name="l00107"></a>00107 <a name="l00111"></a>00111 <span class="keywordtype">void</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a96d03d40795f672067c572865911fe8a" title="Removes the effort information for an edge.">removeEffort</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e) ; <a name="l00112"></a>00112 <a name="l00113"></a>00113 <a name="l00118"></a>00118 <span class="keywordtype">bool</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a68019d604638633988192cc76fd893ab" title="Returns the information whether any travel time is known for the given edge.">knowsTravelTime</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e) <span class="keyword">const</span> ; <a name="l00119"></a>00119 <a name="l00120"></a>00120 <a name="l00125"></a>00125 <span class="keywordtype">bool</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a382026d94f9034a1c95210258c9078e6" title="Returns the information whether any effort is known for the given edge.">knowsEffort</a>(<span class="keyword">const</span> <a class="code" href="../../d7/d27/class_m_s_edge.html" title="A road/street connecting two junctions.">MSEdge</a>* <span class="keyword">const</span> e) <span class="keyword">const</span> ; <a name="l00126"></a>00126 <a name="l00127"></a>00127 <a name="l00128"></a>00128 <span class="keyword">private</span>: <a name="l00130"></a><a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a221ae4812822defa577fb664c63930b0">00130</a> std::map&lt;MSEdge*, ValueTimeLine&lt;SUMOReal&gt; &gt; <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a221ae4812822defa577fb664c63930b0" title="A map of edge-&amp;gt;time-&amp;gt;travel time.">myTravelTimes</a>; <a name="l00131"></a>00131 <a name="l00133"></a><a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a870eabf994fc254f711840fc88616c5b">00133</a> std::map&lt;MSEdge*, ValueTimeLine&lt;SUMOReal&gt; &gt; <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a870eabf994fc254f711840fc88616c5b" title="A map of edge-&amp;gt;time-&amp;gt;effort.">myEfforts</a>; <a name="l00134"></a>00134 <a name="l00135"></a>00135 <a name="l00136"></a>00136 <span class="keyword">private</span>: <a name="l00138"></a>00138 <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a9d5ef3212aa4cc3046626bd9d84551d9" title="Constructor.">MSEdgeWeightsStorage</a>(<span class="keyword">const</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html" title="A storage for edge travel times and efforts.">MSEdgeWeightsStorage</a>&amp;); <a name="l00139"></a>00139 <a name="l00141"></a>00141 <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html" title="A storage for edge travel times and efforts.">MSEdgeWeightsStorage</a>&amp; <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html#a94da6f456d21ffbfe04a533d22ade186" title="Invalidated assignment operator.">operator=</a>(<span class="keyword">const</span> <a class="code" href="../../d6/d8f/class_m_s_edge_weights_storage.html" title="A storage for edge travel times and efforts.">MSEdgeWeightsStorage</a>&amp;); <a name="l00142"></a>00142 <a name="l00143"></a>00143 <a name="l00144"></a>00144 }; <a name="l00145"></a>00145 <a name="l00146"></a>00146 <a name="l00147"></a>00147 <span class="preprocessor">#endif</span> <a name="l00148"></a>00148 <span class="preprocessor"></span> <a name="l00149"></a>00149 <span class="comment">/****************************************************************************/</span> <a name="l00150"></a>00150 </pre></div></div> <hr class="footer"/><address style="text-align: right;"><small>Generated on Tue Jul 17 12:16:00 2012 for SUMO - Simulation of Urban MObility by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address> </body> </html>
src/documents/tumblrposts/2013-07-05-qryq.html
bguiz/blog.bguiz.com
--- layout: post comments: true title: qryq date: 2013-07-05 06:31 original-url: http://blog.bguiz.com/post/54620002947/qryq dateurls-override: /post/54620002947/qryq tags: http, rest, javascript, nodejs, expressjs, q, open source, blog, optimisation --- <h2 id="pronunciation">Pronunciation</h2> <p><code>/ˈkwərik/</code></p> <h2 id="what-it-is">What it is</h2> <p><code>qryq</code> is a NodeJs library that allows one to express a series of API queries and define the dependencies between them. These queries may be executed in parallel, in sequence, or in a directed acyclic graph.</p> <p>Despite being non-RESTful, this makes code more readable and composable, and affords a number of benefits.</p> <h2 id="benefits">Benefits</h2> <ul><li>Allows the programmer to state client-server interactions <strong>declaratively</strong>, and thus avoid both callback spaghetti code and promise spaghetti code.</li> <li>A reduction in total <strong>bandwidth</strong> and <strong>latency</strong>.</li> <li>A reduction in <strong>duplication of business logic</strong> on the client and the server.</li> <li>A treatment of <strong>several queries as an atomic unit</strong>, makes it easier to write asynchronous user interfaces.</li> </ul><h2 id="example">Example</h2> <pre><code> [ {"id":"qGeocodeOrigin","depends":[],"api":"gmapsGeoLookup","qry":{"address":"36 Meadow Wood Walk, Narre Warren VIC 3805"}}, {"id":"qGeocodeDestination","depends":[],"api":"gmapsGeoLookup","qry":{"address":"19 Bourke Street, Melbourne, VIC 3000"}}, {"id":"qScore","depends":["qGeocodeOrigin","qGeocodeDestination"],"api":"score","qry":{ "origin":{"address":"36 Meadow Wood Walk, Narre Warren VIC 3805","lat":"#{qGeocodeOrigin}.lat","lon":"#{qGeocodeOrigin}.lon"}, "journeyPlanner":"melbtrans", "destinations":[ { "fixed":true,"class":"work","weight":0.8, "location":{"address":"19 Bourke Street, Melbourne, VIC 3000","lat":"#{qGeocodeDestination}.lat","lon":"#{qGeocodeDestination}.lon"}, "modes":[{"form":"transit","max":{"time":2400}}] } ] } } ] </code></pre> <ul><li>Here we can see that we have defined three queries, named <code>qGeocodeOrigin</code>, <code>qGeocodeDestination</code>, <code>qScore</code>.</li> <li>The first two do not define any dependencies, but the thirds does. <ul><li><code>qryq</code> will figure out that it needs to execute <code>qScore</code>, only when both <code>qGeocodeOrigin</code> and <code>qGeocodeDestination</code> have completed, so that it may use its results.</li> </ul></li> <li>The <code>qScore</code> invokes the function that handles the <code>score</code> API, and passes in a set of presently known values through <code>qry</code></li> <li>The <code>qry</code> for <code>qScore</code>also passes in variables, whose values are not known at the time of making the query. <ul><li>An example: <code>"lon":"#{qGeocodeOrigin}.lon"</code>.</li> <li><code>qryq</code> will substitute the computed values for these variables when it is this query&#8217;s turn to execute.</li> </ul></li> </ul><h2 id="more-details">More Details</h2> <p><a href="https://github.com/bguiz/qryq/blob/master/doco/present/markdown/present.md" title="qryq presentation" target="_blank">A full presentation on <code>qryq</code></a></p> <p><code>qryq</code> is a project that has spun off from another project of mine, <a href="https://github.com/bguiz/walkre" title="walkre" target="_blank"><code>walkre</code></a>. Most of the development of <code>qryq</code> has thus far occurred in <code>walkre</code>, and currently the <code>qryq</code> repository is merely a <em>snapshot</em> of the <code>qryq</code> code used in <code>walkre</code>. A proper extraction is on the plans.</p> <h2 id="open-source">Open Source</h2> <p><code>qryq</code> is open source, and you can <a href="https://github.com/bguiz/qryq" title="qryq source code on github" target="_blank">find it on github</a></p> <div id="ap_listener_added"></div>
RossFamilyTree/evt/e/d/d15f5fdfcf91172d141a0f381de.html
RossGammon/the-gammons.net
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - Events</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-mobile-web-app-capable" content="yes" /> <meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" /> <meta name="author" content="" /> <link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1 id="SiteTitle">Ross Gammon’s Family Tree</h1> </div> <div class="wrapper" id="nav" role="navigation"> <div class="container"> <ul class="menu" id="dropmenu"> <li><a href="../../../individuals.html" title="Individuals">Individuals</a></li> <li><a href="../../../index.html" title="Surnames">Surnames</a></li> <li><a href="../../../families.html" title="Families">Families</a></li> <li class = "CurrentSection"><a href="../../../events.html" title="Events">Events</a></li> <li><a href="../../../places.html" title="Places">Places</a></li> <li><a href="../../../sources.html" title="Sources">Sources</a></li> <li><a href="../../../repositories.html" title="Repositories">Repositories</a></li> <li><a href="../../../media.html" title="Media">Media</a></li> <li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li> </ul> </div> </div> <div class="content" id="EventDetail"> <h3>Birth</h3> <table class="infolist eventlist"> <tbody> <tr> <td class="ColumnAttribute">Gramps ID</td> <td class="ColumnGRAMPSID">E3293</td> </tr> <tr> <td class="ColumnAttribute">Date</td> <td class="ColumnColumnDate"> 1828-07-15 </td> </tr> </tbody> </table> <div class="subsection" id="references"> <h4>References</h4> <ol class="Col1" role="Volume-n-Page"type = 1> <li> <a href="../../../ppl/8/8/d15f5fdfcf5168d9a7a49c3b988.html"> HYRONS, John <span class="grampsid"> [I3014]</span> </a> </li> </ol> </div> </div> <div class="fullclear"></div> <div id="footer"> <p id="createdate"> Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:54:13<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a> </p> <p id="copyright"> </p> </div> </body> </html>
CSC 445 WebCentric Programming/Final Project/poi-3.14/docs/apidocs/org/apache/poi/hwmf/record/class-use/HwmfBitmapDib.Compression.html
jmemmons/university-assignments
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.hwmf.record.HwmfBitmapDib.Compression (POI API Documentation) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.hwmf.record.HwmfBitmapDib.Compression (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hwmf/record/\class-useHwmfBitmapDib.Compression.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HwmfBitmapDib.Compression.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.poi.hwmf.record.HwmfBitmapDib.Compression</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record">HwmfBitmapDib.Compression</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.hwmf.record"><B>org.apache.poi.hwmf.record</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.hwmf.record"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record">HwmfBitmapDib.Compression</A> in <A HREF="../../../../../../org/apache/poi/hwmf/record/package-summary.html">org.apache.poi.hwmf.record</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../org/apache/poi/hwmf/record/package-summary.html">org.apache.poi.hwmf.record</A> that return <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record">HwmfBitmapDib.Compression</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record">HwmfBitmapDib.Compression</A></CODE></FONT></TD> <TD><CODE><B>HwmfBitmapDib.Compression.</B><B><A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html#valueOf(java.lang.String)">valueOf</A></B>(java.lang.String&nbsp;name)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the enum constant of this type with the specified name.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;<A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record">HwmfBitmapDib.Compression</A>[]</CODE></FONT></TD> <TD><CODE><B>HwmfBitmapDib.Compression.</B><B><A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html#values()">values</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an array containing the constants of this enum type, in the order they are declared.</TD> </TR> </TABLE> &nbsp; <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hwmf/record/HwmfBitmapDib.Compression.html" title="enum in org.apache.poi.hwmf.record"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hwmf/record/\class-useHwmfBitmapDib.Compression.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HwmfBitmapDib.Compression.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
resources/Apache/Apache-POI-3.16-beta2/poi-bin-3.16-beta2-20170202/poi-3.16-beta2/docs/apidocs/org/apache/poi/ss/formula/functions/class-use/Sumifs.html
doughtnerd/POD
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Class org.apache.poi.ss.formula.functions.Sumifs (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.ss.formula.functions.Sumifs (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/poi/ss/formula/functions//class-useSumifs.html" target="_top">FRAMES</a></li> <li><a href="Sumifs.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.poi.ss.formula.functions.Sumifs" class="title">Uses of Class<br>org.apache.poi.ss.formula.functions.Sumifs</h2> </div> <div class="classUseContainer">No usage of org.apache.poi.ss.formula.functions.Sumifs</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/poi/ss/formula/functions/Sumifs.html" title="class in org.apache.poi.ss.formula.functions">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/poi/ss/formula/functions//class-useSumifs.html" target="_top">FRAMES</a></li> <li><a href="Sumifs.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright 2017 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
org/bukkit/help/class-use/HelpTopicFactory.html
mcuserjp/spigotapi_javadoc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ja"> <head> <!-- Generated by javadoc (1.8.0_40) on Sun Apr 10 20:23:27 JST 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>インタフェース org.bukkit.help.HelpTopicFactoryの使用 (Spigot-API 1.9.2-R0.1-SNAPSHOT API)</title> <meta name="date" content="2016-04-10"> <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="\u30A4\u30F3\u30BF\u30D5\u30A7\u30FC\u30B9 org.bukkit.help.HelpTopicFactory\u306E\u4F7F\u7528 (Spigot-API 1.9.2-R0.1-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>ブラウザのJavaScriptが無効になっています。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="ナビゲーション"> <li><a href="../../../../overview-summary.html">概要</a></li> <li><a href="../package-summary.html">パッケージ</a></li> <li><a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">クラス</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">階層ツリー</a></li> <li><a href="../../../../deprecated-list.html">非推奨</a></li> <li><a href="../../../../index-all.html">索引</a></li> <li><a href="../../../../help-doc.html">ヘルプ</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>前</li> <li>次</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/bukkit/help/class-use/HelpTopicFactory.html" target="_top">フレーム</a></li> <li><a href="HelpTopicFactory.html" target="_top">フレームなし</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">すべてのクラス</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="インタフェースの使用 org.bukkit.help.HelpTopicFactory" class="title">インタフェースの使用<br>org.bukkit.help.HelpTopicFactory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、パッケージのリストおよび説明の使用"> <caption><span><a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">HelpTopicFactory</a>を使用しているパッケージ</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">パッケージ</th> <th class="colLast" scope="col">説明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.bukkit.help">org.bukkit.help</a></td> <td class="colLast"> <div class="block">Classes used to manipulate the default command and topic assistance system.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.bukkit.help"> <!-- --> </a> <h3><a href="../../../../org/bukkit/help/package-summary.html">org.bukkit.help</a>での<a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">HelpTopicFactory</a>の使用</h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用"> <caption><span><a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">HelpTopicFactory</a>型のパラメータを持つ<a href="../../../../org/bukkit/help/package-summary.html">org.bukkit.help</a>のメソッド</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">修飾子とタイプ</th> <th class="colLast" scope="col">メソッドと説明</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="typeNameLabel">HelpMap.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/help/HelpMap.html#registerHelpTopicFactory-java.lang.Class-org.bukkit.help.HelpTopicFactory-">registerHelpTopicFactory</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Class.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Class</a>&lt;?&gt;&nbsp;commandClass, <a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">HelpTopicFactory</a>&lt;?&gt;&nbsp;factory)</code> <div class="block">Associates a <a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース"><code>HelpTopicFactory</code></a> object with given command base class.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="ナビゲーション"> <li><a href="../../../../overview-summary.html">概要</a></li> <li><a href="../package-summary.html">パッケージ</a></li> <li><a href="../../../../org/bukkit/help/HelpTopicFactory.html" title="org.bukkit.help内のインタフェース">クラス</a></li> <li class="navBarCell1Rev">使用</li> <li><a href="../package-tree.html">階層ツリー</a></li> <li><a href="../../../../deprecated-list.html">非推奨</a></li> <li><a href="../../../../index-all.html">索引</a></li> <li><a href="../../../../help-doc.html">ヘルプ</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>前</li> <li>次</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/bukkit/help/class-use/HelpTopicFactory.html" target="_top">フレーム</a></li> <li><a href="HelpTopicFactory.html" target="_top">フレームなし</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">すべてのクラス</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2016. All rights reserved.</small></p> </body> </html>
editor-style.css
ThePopularizer/bootstrap-tinymce
/* Admin Text Editor Styles */ /*! * Bootstrap v3.3.7 (http://getbootstrap.com) * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { margin: .67em 0; font-size: 2em; } mark { color: #000; background: #ff0; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { height: 0; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { margin: 0; font: inherit; color: inherit; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { padding: .35em .625em .75em; margin: 0 2px; border: 1px solid #c0c0c0; } legend { padding: 0; border: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-spacing: 0; border-collapse: collapse; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { color: #000 !important; text-shadow: none !important; background: transparent !important; -webkit-box-shadow: none !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\002a"; } .glyphicon-plus:before { content: "\002b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-btc:before { content: "\e227"; } .glyphicon-xbt:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-jpy:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-rub:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #337ab7; text-decoration: none; } a:hover, a:focus { color: #23527c; text-decoration: underline; } a:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { display: inline-block; max-width: 100%; height: auto; padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #777; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } mark, .mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #337ab7; } a.text-primary:hover, a.text-primary:focus { color: #286090; } .text-success { color: #3c763d; } a.text-success:hover, a.text-success:focus { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover, a.text-info:focus { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover, a.text-warning:focus { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover, a.text-danger:focus { color: #843534; } .bg-primary { color: #fff; background-color: #337ab7; } a.bg-primary:hover, a.bg-primary:focus { background-color: #286090; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover, a.bg-info:focus { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover, a.bg-warning:focus { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover, a.bg-danger:focus { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; margin-left: -5px; list-style: none; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #777; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #777; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { margin-right: -15px; margin-left: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } table { background-color: transparent; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #ddd; } .table .table { background-color: #fff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover > tbody > tr:hover { background-color: #f5f5f5; } table col[class*="col-"] { position: static; display: table-column; float: none; } table td[class*="col-"], table th[class*="col-"] { position: static; display: table-cell; float: none; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.42857143; color: #555; } .form-control { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); } .form-control::-moz-placeholder { color: #999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999; } .form-control::-webkit-input-placeholder { color: #999; } .form-control::-ms-expand { background-color: transparent; border: 0; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-top: 4px \9; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg, .form-control-static.input-sm { padding-right: 0; padding-left: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-lg { height: 46px; line-height: 46px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 42.5px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label ~ .form-control-feedback { top: 25px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 11px; font-size: 18px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #333; text-decoration: none; } .btn:active, .btn.active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-primary { color: #fff; background-color: #337ab7; border-color: #2e6da4; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #286090; border-color: #122b40; } .btn-primary:hover { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #204d74; border-color: #122b40; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus { background-color: #337ab7; border-color: #2e6da4; } .btn-primary .badge { color: #337ab7; background-color: #fff; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #449d44; border-color: #255625; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #398439; border-color: #255625; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus { background-color: #5cb85c; border-color: #4cae4c; } .btn-success .badge { color: #5cb85c; background-color: #fff; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; } .btn-info:focus, .btn-info.focus { color: #fff; background-color: #31b0d5; border-color: #1b6d85; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #fff; background-color: #269abc; border-color: #1b6d85; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus { background-color: #5bc0de; border-color: #46b8da; } .btn-info .badge { color: #5bc0de; background-color: #fff; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:focus, .btn-warning.focus { color: #fff; background-color: #ec971f; border-color: #985f0d; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #fff; background-color: #d58512; border-color: #985f0d; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus { background-color: #f0ad4e; border-color: #eea236; } .btn-warning .badge { color: #f0ad4e; background-color: #fff; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:focus, .btn-danger.focus { color: #fff; background-color: #c9302c; border-color: #761c19; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #fff; background-color: #ac2925; border-color: #761c19; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus { background-color: #d9534f; border-color: #d43f3a; } .btn-danger .badge { color: #d9534f; background-color: #fff; } .btn-link { font-weight: normal; color: #337ab7; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #23527c; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #777; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; -o-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; -webkit-transition-duration: .35s; -o-transition-duration: .35s; transition-duration: .35s; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid \9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); box-shadow: 0 6px 12px rgba(0, 0, 0, .175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #337ab7; outline: 0; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #777; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid \9; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group .form-control:focus { z-index: 3; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 46px; line-height: 46px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eee; } .nav > li.disabled > a { color: #777; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eee; border-color: #337ab7; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eee #eee #ddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555; cursor: default; background-color: #fff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #fff; background-color: #337ab7; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; -webkit-overflow-scrolling: touch; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; line-height: 20px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-top: 8px; margin-right: 15px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } } .navbar-form { padding: 10px 15px; margin-top: 8px; margin-right: -15px; margin-bottom: 8px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 8px; margin-bottom: 8px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav > li > a { color: #777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #ccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #555; background-color: #e7e7e7; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #333; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #fff; background-color: #080808; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #fff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "/\00a0"; } .breadcrumb > .active { color: #777; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; color: #337ab7; text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { z-index: 2; color: #23527c; background-color: #eee; border-color: #ddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 3; color: #fff; cursor: default; background-color: #337ab7; border-color: #337ab7; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; text-align: center; list-style: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #fff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #777; } .label-default[href]:hover, .label-default[href]:focus { background-color: #5e5e5e; } .label-primary { background-color: #337ab7; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #286090; } .label-success { background-color: #5cb85c; } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44; } .label-info { background-color: #5bc0de; } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5; } .label-warning { background-color: #f0ad4e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f; } .label-danger { background-color: #d9534f; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #337ab7; background-color: #fff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; background-color: #eee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron > hr { border-top-color: #d5d5d5; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 15px; padding-left: 15px; border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #337ab7; } .thumbnail .caption { padding: 9px; color: #333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #337ab7; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #5cb85c; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #5bc0de; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #f0ad4e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #d9534f; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } a.list-group-item, button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { color: #555; text-decoration: none; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #777; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #fff; background-color: #337ab7; border-color: #337ab7; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #c7ddef; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info, button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning, button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger, button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, .05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #ddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #ddd; } .panel-default { border-color: #ddd; } .panel-default > .panel-heading { color: #333; background-color: #f5f5f5; border-color: #ddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #fff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #fff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, .15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; outline: 0; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); box-shadow: 0 3px 9px rgba(0, 0, 0, .5); } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); box-shadow: 0 5px 15px rgba(0, 0, 0, .5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; filter: alpha(opacity=0); opacity: 0; line-break: auto; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); box-shadow: 0 5px 10px rgba(0, 0, 0, .2); line-break: auto; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0, 0, 0, .25); border-bottom-width: 0; } .popover.top > .arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0, 0, 0, .25); border-left-width: 0; } .popover.right > .arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25); } .popover.bottom > .arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, .25); } .popover.left > .arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; -webkit-transition: .6s ease-in-out left; -o-transition: .6s ease-in-out left; transition: .6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform .6s ease-in-out; -o-transition: -o-transform .6s ease-in-out; transition: transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { left: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { left: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { left: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); background-color: rgba(0, 0, 0, 0); filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); background-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: #fff; text-decoration: none; filter: alpha(opacity=90); outline: 0; opacity: .9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -10px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -10px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after { display: table; content: " "; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } /*# sourceMappingURL=bootstrap.css.map */
RossFamilyTree/ppl/5/1/d15f6093e39206a7b657d228f15.html
RossGammon/the-gammons.net
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - GAMMON, Robert</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-mobile-web-app-capable" content="yes" /> <meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" /> <meta name="author" content="" /> <link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" /> <link href="../../../css/ancestortree.css" media="screen" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1 id="SiteTitle">Ross Gammon’s Family Tree</h1> </div> <div class="wrapper" id="nav" role="navigation"> <div class="container"> <ul class="menu" id="dropmenu"> <li class = "CurrentSection"><a href="../../../individuals.html" title="Individuals">Individuals</a></li> <li><a href="../../../index.html" title="Surnames">Surnames</a></li> <li><a href="../../../families.html" title="Families">Families</a></li> <li><a href="../../../events.html" title="Events">Events</a></li> <li><a href="../../../places.html" title="Places">Places</a></li> <li><a href="../../../sources.html" title="Sources">Sources</a></li> <li><a href="../../../repositories.html" title="Repositories">Repositories</a></li> <li><a href="../../../media.html" title="Media">Media</a></li> <li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li> </ul> </div> </div> <div class="content" id="IndividualDetail"> <h3>GAMMON, Robert<sup><small></small></sup></h3> <div id="summaryarea"> <table class="infolist"> <tr> <td class="ColumnAttribute">Birth Name</td> <td class="ColumnValue"> GAMMON, Robert </td> </tr> <tr> <td class="ColumnAttribute">Gramps&nbsp;ID</td> <td class="ColumnValue">I18054</td> </tr> <tr> <td class="ColumnAttribute">Gender</td> <td class="ColumnValue">male</td> </tr> </table> </div> <div class="subsection" id="events"> <h4>Events</h4> <table class="infolist eventlist"> <thead> <tr> <th class="ColumnEvent">Event</th> <th class="ColumnDate">Date</th> <th class="ColumnPlace">Place</th> <th class="ColumnDescription">Description</th> <th class="ColumnNotes">Notes</th> <th class="ColumnSources">Sources</th> </tr> </thead> <tbody> <tr> <td class="ColumnEvent"> <a href="../../../evt/a/e/d15f6093e3d57625c5377c873ea.html" title="Birth"> Birth <span class="grampsid"> [E18281]</span> </a> </td> <td class="ColumnDate">1805</td> <td class="ColumnPlace"> <a href="../../../plc/d/d/d15f5fb9a5a311369d30bfc07dd.html" title=""> </a> </td> <td class="ColumnDescription">&nbsp;</td> <td class="ColumnNotes"> <div> </div> </td> <td class="ColumnSources"> <a href="#sref1a">1a</a> </td> </tr> <tr> <td class="ColumnEvent"> <a href="../../../evt/4/c/d15f6093e4d284026e544556cc4.html" title="Baptism"> Baptism <span class="grampsid"> [E18282]</span> </a> </td> <td class="ColumnDate">1805-07-07</td> <td class="ColumnPlace"> <a href="../../../plc/f/f/d15f60834cf4472d328ea52b6ff.html" title=""> </a> </td> <td class="ColumnDescription">&nbsp;</td> <td class="ColumnNotes"> <div> </div> </td> <td class="ColumnSources"> <a href="#sref1b">1b</a> </td> </tr> </tbody> </table> </div> <div class="subsection" id="parents"> <h4>Parents</h4> <table class="infolist"> <thead> <tr> <th class="ColumnAttribute">Relation to main person</th> <th class="ColumnValue">Name</th> <th class="ColumnValue">Relation within this family (if not by birth)</th> </tr> </thead> <tbody> </tbody> <tr> <td class="ColumnAttribute">Father</td> <td class="ColumnValue"> <a href="../../../ppl/4/2/d15f6075d6567738c420184bf24.html">GAMMON, Henry<span class="grampsid"> [I16644]</span></a> </td> </tr> <tr> <td class="ColumnAttribute">Mother</td> <td class="ColumnValue"> <a href="../../../ppl/2/3/d15f6075e177e4b876afb5cff32.html">BOYLES, Susanna<span class="grampsid"> [I16647]</span></a> </td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Sister</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/c/d/d15f6093d3e171410579c6f2adc.html">GAMMON, Anne<span class="grampsid"> [I18052]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/5/1/d15f6093e39206a7b657d228f15.html">GAMMON, Robert<span class="grampsid"> [I18054]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Brother</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/1/5/d15f6093e9253e7cc754f0c7d51.html">GAMMON, William<span class="grampsid"> [I18055]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Brother</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/6/e/d15f6093f29ba346e4611cd3e6.html">GAMMON, Henry<span class="grampsid"> [I18057]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Sister</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/1/7/d15f6093fa13c1b060f74598c71.html">GAMMON, Susanna<span class="grampsid"> [I18059]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Brother</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/0/d/d15f6094000c594cf5ab9805d0.html">GAMMON, John<span class="grampsid"> [I18060]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Sister</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/0/6/d15f607901c7f3a6ed77e82f160.html">Gammon, Elizabeth<span class="grampsid"> [I4431]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Brother</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/b/c/d15f609405469b4991c1672f5cb.html">GAMMON, John<span class="grampsid"> [I18061]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Sister</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/0/3/d15f60940ad182329f9250ff130.html">GAMMON, Eliza<span class="grampsid"> [I18062]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Brother</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/4/0/d15f609410f635567d082675e04.html">GAMMON, George Boyles<span class="grampsid"> [I18063]</span></a></td> <td class="ColumnValue"></td> </tr> <tr> <td class="ColumnAttribute">&nbsp;&nbsp;&nbsp;&nbsp;Sister</td> <td class="ColumnValue">&nbsp;&nbsp;&nbsp;&nbsp;<a href="../../../ppl/d/e/d15f60941be68602d3b701fe9ed.html">GAMMON, Jane<span class="grampsid"> [I18065]</span></a></td> <td class="ColumnValue"></td> </tr> </table> </div> <div class="subsection" id="families"> <h4>Families</h4> <table class="infolist"> <tr class="BeginFamily"> <td class="ColumnType">&nbsp</td> <td class="ColumnAttribute">&nbsp</td> <td class="ColumnValue"><a href="../../../fam/8/7/d15f6093e711819a4fd386c0878.html" title="Family of GAMMON, Robert">Family of GAMMON, Robert<span class="grampsid"> [F5891]</span></a></td> </tr> <tr> <td class="ColumnType">&nbsp;</td> <td class="ColumnAttribute">Attributes</td> <td class="ColumnValue"> <table class="infolist attrlist"> <thead> <tr> <th class="ColumnType">Type</th> <th class="ColumnValue">Value</th> <th class="ColumnNotes">Notes</th> <th class="ColumnSources">Sources</th> </tr> </thead> <tbody> <tr> <td class="ColumnType">_UID</td> <td class="ColumnValue">1C835F47F38EE5429A852A84A4B9C2754EB3</td> <td class="ColumnNotes"><div></div></td> <td class="ColumnSources">&nbsp;</td> </tr> </tbody> </table> </td> </tr> </table> </div> <div class="subsection" id="attributes"> <h4>Attributes</h4> <table class="infolist attrlist"> <thead> <tr> <th class="ColumnType">Type</th> <th class="ColumnValue">Value</th> <th class="ColumnNotes">Notes</th> <th class="ColumnSources">Sources</th> </tr> </thead> <tbody> <tr> <td class="ColumnType">_UID</td> <td class="ColumnValue">329213A23A05FF46A0F7D33F8571ED39C2B5</td> <td class="ColumnNotes"><div></div></td> <td class="ColumnSources">&nbsp;</td> </tr> </tbody> </table> </div> <div class="subsection" id="pedigree"> <h4>Pedigree</h4> <ol class="pedigreegen"> <li> <a href="../../../ppl/4/2/d15f6075d6567738c420184bf24.html">GAMMON, Henry<span class="grampsid"> [I16644]</span></a> <ol> <li class="spouse"> <a href="../../../ppl/2/3/d15f6075e177e4b876afb5cff32.html">BOYLES, Susanna<span class="grampsid"> [I16647]</span></a> <ol> <li> <a href="../../../ppl/c/d/d15f6093d3e171410579c6f2adc.html">GAMMON, Anne<span class="grampsid"> [I18052]</span></a> </li> <li class="thisperson"> GAMMON, Robert <ol class="spouselist"> <li class="spouse"> </li> </ol> </li> <li> <a href="../../../ppl/1/5/d15f6093e9253e7cc754f0c7d51.html">GAMMON, William<span class="grampsid"> [I18055]</span></a> </li> <li> <a href="../../../ppl/6/e/d15f6093f29ba346e4611cd3e6.html">GAMMON, Henry<span class="grampsid"> [I18057]</span></a> </li> <li> <a href="../../../ppl/1/7/d15f6093fa13c1b060f74598c71.html">GAMMON, Susanna<span class="grampsid"> [I18059]</span></a> </li> <li> <a href="../../../ppl/0/d/d15f6094000c594cf5ab9805d0.html">GAMMON, John<span class="grampsid"> [I18060]</span></a> </li> <li> <a href="../../../ppl/0/6/d15f607901c7f3a6ed77e82f160.html">Gammon, Elizabeth<span class="grampsid"> [I4431]</span></a> </li> <li> <a href="../../../ppl/b/c/d15f609405469b4991c1672f5cb.html">GAMMON, John<span class="grampsid"> [I18061]</span></a> </li> <li> <a href="../../../ppl/0/3/d15f60940ad182329f9250ff130.html">GAMMON, Eliza<span class="grampsid"> [I18062]</span></a> </li> <li> <a href="../../../ppl/4/0/d15f609410f635567d082675e04.html">GAMMON, George Boyles<span class="grampsid"> [I18063]</span></a> </li> <li> <a href="../../../ppl/d/e/d15f60941be68602d3b701fe9ed.html">GAMMON, Jane<span class="grampsid"> [I18065]</span></a> </li> </ol> </li> </ol> </li> </ol> </div> <div class="subsection" id="tree"> <h4>Ancestors</h4> <div id="treeContainer" style="width:735px; height:602px;"> <div class="boxbg male AncCol0" style="top: 269px; left: 6px;"> <a class="noThumb" href="../../../ppl/5/1/d15f6093e39206a7b657d228f15.html"> GAMMON, Robert </a> </div> <div class="shadow" style="top: 274px; left: 10px;"></div> <div class="bvline" style="top: 301px; left: 165px; width: 15px"></div> <div class="gvline" style="top: 306px; left: 165px; width: 20px"></div> <div class="boxbg male AncCol1" style="top: 119px; left: 196px;"> <a class="noThumb" href="../../../ppl/4/2/d15f6075d6567738c420184bf24.html"> GAMMON, Henry </a> </div> <div class="shadow" style="top: 124px; left: 200px;"></div> <div class="bvline" style="top: 151px; left: 180px; width: 15px;"></div> <div class="gvline" style="top: 156px; left: 185px; width: 20px;"></div> <div class="bhline" style="top: 151px; left: 180px; height: 150px;"></div> <div class="gvline" style="top: 156px; left: 185px; height: 150px;"></div> <div class="bvline" style="top: 151px; left: 355px; width: 15px"></div> <div class="gvline" style="top: 156px; left: 355px; width: 20px"></div> <div class="boxbg male AncCol2" style="top: 44px; left: 386px;"> <a class="noThumb" href="../../../ppl/3/c/d15f6076b8e5f86733d93ca6c3.html"> GAMMON, Robert </a> </div> <div class="shadow" style="top: 49px; left: 390px;"></div> <div class="bvline" style="top: 76px; left: 370px; width: 15px;"></div> <div class="gvline" style="top: 81px; left: 375px; width: 20px;"></div> <div class="bhline" style="top: 76px; left: 370px; height: 75px;"></div> <div class="gvline" style="top: 81px; left: 375px; height: 75px;"></div> <div class="boxbg female AncCol2" style="top: 194px; left: 386px;"> <a class="noThumb" href="../../../ppl/8/e/d15f6093cfc548cc5deb92f3ee8.html"> THOMAS, Elizebeth </a> </div> <div class="shadow" style="top: 199px; left: 390px;"></div> <div class="bvline" style="top: 226px; left: 370px; width: 15px;"></div> <div class="gvline" style="top: 231px; left: 375px; width: 20px;"></div> <div class="bhline" style="top: 151px; left: 370px; height: 75px;"></div> <div class="gvline" style="top: 156px; left: 375px; height: 75px;"></div> <div class="boxbg female AncCol1" style="top: 419px; left: 196px;"> <a class="noThumb" href="../../../ppl/2/3/d15f6075e177e4b876afb5cff32.html"> BOYLES, Susanna </a> </div> <div class="shadow" style="top: 424px; left: 200px;"></div> <div class="bvline" style="top: 451px; left: 180px; width: 15px;"></div> <div class="gvline" style="top: 456px; left: 185px; width: 20px;"></div> <div class="bhline" style="top: 301px; left: 180px; height: 150px;"></div> <div class="gvline" style="top: 306px; left: 185px; height: 150px;"></div> </div> </div> <div class="subsection" id="sourcerefs"> <h4>Source References</h4> <ol> <li> <a href="../../../src/5/d/d15f6075d6a73d68f56e1e0ed5.html" title="Email from Catherine Ley 28/05/2007" name ="sref1"> Email from Catherine Ley 28/05/2007 <span class="grampsid"> [S0381]</span> </a> <ol> <li id="sref1a"> <ul> <li> Confidence: Low </li> </ul> </li> <li id="sref1b"> <ul> <li> Confidence: Low </li> </ul> </li> </ol> </li> </ol> </div> </div> <div class="fullclear"></div> <div id="footer"> <p id="createdate"> Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:55:27<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a> </p> <p id="copyright"> </p> </div> </body> </html>
RossFamilyTree/evt/8/0/d15f608eda9288f73a0b08e6008.html
RossGammon/the-gammons.net
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - Events</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-mobile-web-app-capable" content="yes" /> <meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" /> <meta name="author" content="" /> <link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1 id="SiteTitle">Ross Gammon’s Family Tree</h1> </div> <div class="wrapper" id="nav" role="navigation"> <div class="container"> <ul class="menu" id="dropmenu"> <li><a href="../../../individuals.html" title="Individuals">Individuals</a></li> <li><a href="../../../index.html" title="Surnames">Surnames</a></li> <li><a href="../../../families.html" title="Families">Families</a></li> <li class = "CurrentSection"><a href="../../../events.html" title="Events">Events</a></li> <li><a href="../../../places.html" title="Places">Places</a></li> <li><a href="../../../sources.html" title="Sources">Sources</a></li> <li><a href="../../../repositories.html" title="Repositories">Repositories</a></li> <li><a href="../../../media.html" title="Media">Media</a></li> <li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li> </ul> </div> </div> <div class="content" id="EventDetail"> <h3>Death</h3> <table class="infolist eventlist"> <tbody> <tr> <td class="ColumnAttribute">Gramps ID</td> <td class="ColumnGRAMPSID">E17958</td> </tr> <tr> <td class="ColumnAttribute">Date</td> <td class="ColumnColumnDate"> 1952-09-25 </td> </tr> <tr> <td class="ColumnAttribute">Place</td> <td class="ColumnColumnPlace"> <a href="../../../plc/e/5/d15f608edac3d2873af0e04655e.html" title=""> </a> </td> </tr> </tbody> </table> <div class="subsection" id="references"> <h4>References</h4> <ol class="Col1" role="Volume-n-Page"type = 1> <li> <a href="../../../ppl/2/5/d15f608ed9c2b56f1410cd9e52.html"> TREVAN, Ernest Victor <span class="grampsid"> [I17823]</span> </a> </li> </ol> </div> </div> <div class="fullclear"></div> <div id="footer"> <p id="createdate"> Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:55:25<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a> </p> <p id="copyright"> </p> </div> </body> </html>
test/LiveTemplates/home.html
valerii-zinchenko/TaskOnFly
<!DOCTYPE html> <html> <head> <!-- TaskOnFly allows you easy manage your tasks and task lists on the fly from your mobile or desktop device. Copyright (C) 2014-2015 Valerii Zinchenko This file is part of TaskOnFly. TaskOnFly is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. TaskOnFly is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with TaskOnFly. If not, see <http://www.gnu.org/licenses/>. All source files are available at: http://github.com/valerii-zinchenko/TaskOnFly --> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>TaskOnFly</title> <script src="../../js/lib/jquery-2.1.1.js"></script> <script src="../../js/lib/jquery.mobile-1.4.3.js"></script> <link rel="stylesheet" href="../../css/jquery.mobile-1.4.3.css"> <link rel="stylesheet" href="../../css/main.css"> <link rel="stylesheet" href="../../css/jquery.mobile-custom.css"> </head> <body> <div data-role="page" id="home"> <div data-role="header" data-position="fixed"> <a href="#" id="prevList" data-role="button" data-icon="carat-l">Previous list</a> <h1>Home</h1> <a href="#settingsPanel" id="openSettings" data-role="button" data-icon="gear" data-iconpos="notext"></a> </div> <div id="content" class="ui-content"> <table class="full fast-task"> <tbody> <tr> <td> <input id="fastItem" type="text" placeholder="Fast task"> </td> <td class="select-priority"> <div id="priority" class="full-width ui-controlgroup-grid-b" data-role="controlgroup" data-type="horizontal" data-mini="true"> <label for="low" class="low ui-icon-arrow-d ui-btn-icon-notext">Low</label> <input id="low" type="radio" name="priority" value="0"> <label for="normal" class="normal ui-icon-circle ui-btn-icon-notext">Normal</label> <input id="normal" type="radio" name="priority" value="1" checked> <label for="high" class="high ui-icon-arrow-u ui-btn-icon-notext">High</label> <input id="high" type="radio" name="priority" value="2"> </div> </td> <td class="add-btn"> <button id="addFastTask" data-role="button" data-icon="plus" data-iconpos="notext">add</button> </td> </tr> </tbody> </table> <div data-role="fieldcontain"> <!--<table class="full task-list">--> <!--<thead><tr><th></th><th></th></tr></thead>--> <!--<tbody>--> <!--<tr>--> <table class="full task-list"> <thead><tr><th></th><th></th></tr></thead> <tbody> <tr> <td colspan="2"> <div class="group-title ui-corner-all"> till 25.09.2014 </div> </td> </tr> <tr data-item-id="T1"> <th> <div class="list-item task priority-2"> <input id="T1" type="checkbox"> <label for="T1">Task 1 Task 1 Task 1 Task 1</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-1"> <input id="T2" type="checkbox"> <label for="T2">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-1"> <input id="T3" type="checkbox"> <label for="T3">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-0"> <input id="T4" type="checkbox"> <label for="T4">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> </tbody> </table> <!--</tr>--> <!--<tr>--> <div class="group-title ui-corner-all">till 23.09.2014</div> <table class="full task-list"> <thead><tr><th></th><th></th></tr></thead> <tbody> <tr> <td colspan="2"> <div class="group-title ui-corner-all">till 23.09.2014</div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-1"> <input id="T5" type="checkbox"> <label for="T5">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-2"> <input id="T6" type="checkbox"> <label for="T6">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-1"> <input id="T7" type="checkbox"> <label for="T7">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> <tr data-item-id="T2"> <th> <div class="list-item list priority-0"> <input id="T8" type="checkbox"> <label for="T8">List 2 List 2 List 2</label> </div> </th> <td> <div data-role="controlgroup" data-type="horizontal"> <button class="custom" data-role="button" data-icon="edit" data-iconpos="notext">edit</button><button class="custom" data-role="button" data-icon="delete" data-iconpos="notext">delete</button> </div> </td> </tr> </tbody> </table> <!--</tr>--> <!--</tbody>--> <!--</table>--> </div> </div> <div data-role="footer" data-position="fixed"> <table class="full"> <tbody> <tr> <td> <button id="addList" class="btn-left" data-role="button" data-icon="plus">New list</button> </td> <td> <div id="searchModule"> <input type="text" placeholder="Search..."> </div> </td> <td> <button id="addTask" class="btn-right" data-role="button" data-icon="plus" data-iconpos="right">New task</button> </td> </tr> </tbody> </table> </div> <div id="settingsPanel" data-role="panel" data-position="right" data-display="overlay"> <ul data-role="listview"> <li> <a href="#about">About</a> </li> </ul> </div> </div> <script> function fixTaskList() { var $table = $('table.task-list'), th = $table.find('th:first'), width = th.width(); $table.addClass('fixed'); th.css('width', width); $table.find('.list-item label').addClass('nowrap'); } function disableListItems() { $('.task-list .list-item.list input').prop('disabled', true); } function fixFooterTable() { var $table = $('.ui-footer table'); var $btns = [ $table.find('#addList'), $table.find('#addTask') ]; var btnWidths = [ $btns[0].outerWidth() + 10, // (button css value for "left") * 2 $btns[1].outerWidth() + 10 ]; $btns[0].parents('td').css('width', btnWidths[0]); $btns[1].parents('td').css('width', btnWidths[1]); } setTimeout(function() { fixTaskList(); disableListItems(); fixFooterTable(); }, 1000); // Examples how to programmatically (un)check checkboxes function checkList() { $('.task-list .list-item.list input').prop('checked', true).checkboxradio('refresh') } function uncheckList() { $('.task-list .list-item.list input').prop('checked', false).checkboxradio('refresh') } </script> </body> </html>
public_html/Backend/css/style.css
AlonsoUzziel/tournamentManager
footer { background: #2278a8; margin-top: 50px; padding: 3px 0; } footer.relative { position: relative; } footer.fixed { bottom: 0; position: fixed; width: 100%; } footer p, footer a { color: #FFF; float: right; margin: 0; padding: 0 10px 0 0; } footer p:hover, footer a:hover { color: #FFF; } footer p { float: left; padding: 0 0 0 10px; } footer div.footer-copyright p{ width: 100%; } .navbar.navbar-default { background: #2278a8; } .navbar.navbar-default .navbar-brand { background: #fff; padding:6px 9px; } .navbar.navbar-default .navbar-brand img { margin: 0 auto; max-width: 140px; width: 100%; } .longLabel { white-space: normal; } .listSuggestions { border: 1px solid #ccc; list-style-type: none; padding: 0; } .listSuggestions li { cursor: pointer; padding-left: 10px; } .listSuggestions li:hover { background: #154b96; color: #FFF; } .label-parent{ border-radius: .25em; color: #fff; line-height: 1; font-size: 75%; font-weight: 700; text-align: justify; vertical-align: baseline; } .textLarge{ line-height: 1.2; font-size: 90%; font-weight: 400; } .my_handler{ cursor: move; } /*# sourceMappingURL=style.css.map */
RossFamilyTree/evt/5/e/d15f6087d863606b4eb744503e5.html
RossGammon/the-gammons.net
<!DOCTYPE html> <html xml:lang="en-GB" lang="en-GB" xmlns="http://www.w3.org/1999/xhtml"> <head lang="en-GB"> <title>Ross Gammon’s Family Tree - Events</title> <meta charset="UTF-8" /> <meta name ="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1" /> <meta name ="apple-mobile-web-app-capable" content="yes" /> <meta name="generator" content="Gramps 4.2.8 http://gramps-project.org/" /> <meta name="author" content="" /> <link href="../../../images/favicon2.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../../css/narrative-screen.css" media="screen" rel="stylesheet" type="text/css" /> <link href="../../../css/narrative-print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body> <div id="header"> <h1 id="SiteTitle">Ross Gammon’s Family Tree</h1> </div> <div class="wrapper" id="nav" role="navigation"> <div class="container"> <ul class="menu" id="dropmenu"> <li><a href="../../../individuals.html" title="Individuals">Individuals</a></li> <li><a href="../../../index.html" title="Surnames">Surnames</a></li> <li><a href="../../../families.html" title="Families">Families</a></li> <li class = "CurrentSection"><a href="../../../events.html" title="Events">Events</a></li> <li><a href="../../../places.html" title="Places">Places</a></li> <li><a href="../../../sources.html" title="Sources">Sources</a></li> <li><a href="../../../repositories.html" title="Repositories">Repositories</a></li> <li><a href="../../../media.html" title="Media">Media</a></li> <li><a href="../../../thumbnails.html" title="Thumbnails">Thumbnails</a></li> </ul> </div> </div> <div class="content" id="EventDetail"> <h3>Birth</h3> <table class="infolist eventlist"> <tbody> <tr> <td class="ColumnAttribute">Gramps ID</td> <td class="ColumnGRAMPSID">E17654</td> </tr> <tr> <td class="ColumnAttribute">Date</td> <td class="ColumnColumnDate"> about 1850 </td> </tr> <tr> <td class="ColumnAttribute">Place</td> <td class="ColumnColumnPlace"> <a href="../../../plc/d/0/d15f5fb88cd3f600ef52fc20d0d.html" title=""> </a> </td> </tr> </tbody> </table> <div class="subsection" id="references"> <h4>References</h4> <ol class="Col1" role="Volume-n-Page"type = 1> <li> <a href="../../../ppl/f/3/d15f6087d7b7742bb23fa3b813f.html"> Quinton, Emily <span class="grampsid"> [457191278]</span> </a> </li> </ol> </div> </div> <div class="fullclear"></div> <div id="footer"> <p id="createdate"> Generated by <a href="http://gramps-project.org/">Gramps</a> 4.2.8<br />Last change was the 2015-08-05 19:55:22<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a> </p> <p id="copyright"> </p> </div> </body> </html>
CreateYourOwnAdventure/doc/cmput301/f13t01/elasticsearch/class-use/ESClient.html
CMPUT301F13T01/CreateYourOwnAdventure
<!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_09) on Mon Dec 02 16:04:42 MST 2013 --> <title>Uses of Class cmput301.f13t01.elasticsearch.ESClient</title> <meta name="date" content="2013-12-02"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class cmput301.f13t01.elasticsearch.ESClient"; } //--> </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="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?cmput301/f13t01/elasticsearch/class-use/ESClient.html" target="_top">Frames</a></li> <li><a href="ESClient.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 cmput301.f13t01.elasticsearch.ESClient" class="title">Uses of Class<br>cmput301.f13t01.elasticsearch.ESClient</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">ESClient</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#cmput301.f13t01.storylibrary">cmput301.f13t01.storylibrary</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="cmput301.f13t01.storylibrary"> <!-- --> </a> <h3>Uses of <a href="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">ESClient</a> in <a href="../../../../cmput301/f13t01/storylibrary/package-summary.html">cmput301.f13t01.storylibrary</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../cmput301/f13t01/storylibrary/package-summary.html">cmput301.f13t01.storylibrary</a> that return <a href="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">ESClient</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">ESClient</a></code></td> <td class="colLast"><span class="strong">GlobalManager.</span><code><strong><a href="../../../../cmput301/f13t01/storylibrary/GlobalManager.html#getESClient()">getESClient</a></strong>()</code> <div class="block">Get the Application's Elastic Search client.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../cmput301/f13t01/elasticsearch/ESClient.html" title="class in cmput301.f13t01.elasticsearch">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?cmput301/f13t01/elasticsearch/class-use/ESClient.html" target="_top">Frames</a></li> <li><a href="ESClient.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>
lib/JasperReport/docs/api/net/sf/jasperreports/repo/class-use/CastorDataAdapterPersistenceService.html
MHTaleb/Encologim
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ro"> <head> <!-- Generated by javadoc (version 1.7.0_80) on Mon Jun 20 18:37:22 EEST 2016 --> <title>Uses of Class net.sf.jasperreports.repo.CastorDataAdapterPersistenceService (JasperReports 6.3.0 API)</title> <meta name="date" content="2016-06-20"> <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 net.sf.jasperreports.repo.CastorDataAdapterPersistenceService (JasperReports 6.3.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../net/sf/jasperreports/repo/CastorDataAdapterPersistenceService.html" title="class in net.sf.jasperreports.repo">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?net/sf/jasperreports/repo/class-use/CastorDataAdapterPersistenceService.html" target="_top">Frames</a></li> <li><a href="CastorDataAdapterPersistenceService.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 net.sf.jasperreports.repo.CastorDataAdapterPersistenceService" class="title">Uses of Class<br>net.sf.jasperreports.repo.CastorDataAdapterPersistenceService</h2> </div> <div class="classUseContainer">No usage of net.sf.jasperreports.repo.CastorDataAdapterPersistenceService</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="../../../../../net/sf/jasperreports/repo/CastorDataAdapterPersistenceService.html" title="class in net.sf.jasperreports.repo">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?net/sf/jasperreports/repo/class-use/CastorDataAdapterPersistenceService.html" target="_top">Frames</a></li> <li><a href="CastorDataAdapterPersistenceService.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> <span style="font-decoration:none;font-family:Arial,Helvetica,sans-serif;font-size:8pt;font-style:normal;color:#000000;">&copy; 2001 - 2016 TIBCO Software Inc. <a href="http://www.jaspersoft.com" target="_blank" style="color:#000000;">www.jaspersoft.com</a></span> </small></p> </body> </html>
solr-5.4.0/docs/solr-dataimporthandler/org/apache/solr/handler/dataimport/config/package-frame.html
jmmnn/linksSDGs
<!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_45) on Fri Dec 04 23:17:45 GMT 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>org.apache.solr.handler.dataimport.config (Solr 5.4.0 API)</title> <meta name="date" content="2015-12-04"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <h1 class="bar"><a href="../../../../../../org/apache/solr/handler/dataimport/config/package-summary.html" target="classFrame">org.apache.solr.handler.dataimport.config</a></h1> <div class="indexContainer"> <h2 title="Classes">Classes</h2> <ul title="Classes"> <li><a href="ConfigNameConstants.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">ConfigNameConstants</a></li> <li><a href="ConfigParseUtil.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">ConfigParseUtil</a></li> <li><a href="DIHConfiguration.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">DIHConfiguration</a></li> <li><a href="Entity.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">Entity</a></li> <li><a href="EntityField.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">EntityField</a></li> <li><a href="EntityField.Builder.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">EntityField.Builder</a></li> <li><a href="Field.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">Field</a></li> <li><a href="Field.Builder.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">Field.Builder</a></li> <li><a href="PropertyWriter.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">PropertyWriter</a></li> <li><a href="Script.html" title="class in org.apache.solr.handler.dataimport.config" target="classFrame">Script</a></li> </ul> </div> </body> </html>
sig-mapas-torreon/viviendas-deshabitadas.html
TRCIMPLAN/cmiclaguna
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <!-- =================================================================================================== Instituto Municipal de Planeación y Competitividad de Torreón. 3er. generación de la Plataforma del Conocimiento Desarrollado por Ing. Guillermo Valdés Lozano <guivaloz en movimientolibre.com> El software que lo construye está bajo la licencia GPL versión 3. © 2014, 2015, 2016. Una copia está contenida en el archivo LICENCE al bajar desde GitHub. Al usar, estudiar y copiar está aceptando los términos de uso de la información y del sitio web: http://www.trcimplan.gob.mx/terminos/terminos-informacion.html http://www.trcimplan.gob.mx/terminos/terminos-sitio.html Agradecemos y compartimos las tecnologías abiertas y gratuitas sobre las que se basa: PHP http://php.net Twitter Bootstrap http://getbootstrap.com StartBootStrap http://startbootstrap.com Morris.js https://morrisjs.github.io/morris.js/ El hospedaje es cortesía de GitHub. Descargue, estudie y colabore bajando todo este sitio web: IMPLAN Torreón https://github.com/TRCIMPLAN =================================================================================================== --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Mapa que muestra la incidencia de las viviendas deshabitadas en Torreón, Coahuila."> <meta name="author" content="Arq. Jair Miramontes Chávez"> <meta name="keywords" content="IMPLAN, Torreon, Viviendas, Deshabitadas"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Viviendas Deshabitadas - CMIC Laguna / IMPLAN Torreón"> <meta name="twitter:description" content="Mapa que muestra la incidencia de las viviendas deshabitadas en Torreón, Coahuila."> <meta name="twitter:image" content="http://www.trcimplan.gob.mx/cmiclaguna/sig-mapas-torreon/viviendas-deshabitadas/imagen-previa.jpg"> <meta name="twitter:url" content="http://www.trcimplan.gob.mx/cmiclaguna/sig-mapas-torreon/viviendas-deshabitadas.html"> <meta name="og:title" content="Viviendas Deshabitadas - CMIC Laguna / IMPLAN Torreón"> <meta name="og:description" content="Mapa que muestra la incidencia de las viviendas deshabitadas en Torreón, Coahuila."> <meta name="og:image" content="http://www.trcimplan.gob.mx/cmiclaguna/sig-mapas-torreon/viviendas-deshabitadas/imagen-previa.jpg"> <meta name="og:url" content="http://www.trcimplan.gob.mx/cmiclaguna/sig-mapas-torreon/viviendas-deshabitadas.html"> <title>Viviendas Deshabitadas - CMIC Laguna / IMPLAN Torreón</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" integrity="sha384-XdYbMnZ/QjLh6iI4ogqCTaIjrFk87ip+ekIjefZch0Y+PvJ8CDYtEs1ipDmPorQ+" crossorigin="anonymous"> <link rel="shortcut icon" type="image/x-icon" href="../imagenes/favicon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-76x76.png" sizes="76x76"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-120x120.png" sizes="120x120"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-152x152.png" sizes="152x152"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-180x180.png" sizes="180x180"> <link rel="icon" href="../imagenes/icon-hires.png" sizes="192x192"> <link rel="icon" href="../imagenes/icon-normal.png" sizes="128x128"> <link rel="alternate" type="application/rss+xml" href="../rss.xml" title="CMIC Laguna / IMPLAN Torreón"> <link rel="stylesheet" type="text/css" href="../css/morris.css"> <link rel="stylesheet" type="text/css" href="../css/plugins/metisMenu/metisMenu.min.css"> <link rel="stylesheet" type="text/css" href="../css/sb-admin-2.css"> <link rel="stylesheet" type="text/css" href="../css/plataforma-de-conocimiento.css"> <link rel="stylesheet" type="text/css" href="../css/trcimplan.css"> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Noto+Sans|Roboto+Condensed:400,700"> <link rel="stylesheet" type="text/css" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css"> <!-- SOPORTE PARA IE --> <!--[if lt IE 9]> <script type="text/javascript" src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script type="text/javascript" src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> </head> <body> <div id="wrapper"> <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"><img class="navbar-brand-img" src="../imagenes/cmic-trcimplan-barra.png" alt="CMIC Laguna / IMPLAN Torreón"></a> </div> <div class="navbar-default sidebar" role="navigation"> <div class="sidebar-nav navbar-collapse"> <ul class="nav" id="side-menu"> <li class="sidebar-search"> <form method="get" id="searchbox_015475140351266618625:04hulmghdys" action="http://www.trcimplan.gob.mx/buscador-resultados.html"> <input type="hidden" value="015475140351266618625:04hulmghdys" name="cx"> <input type="hidden" value="FORID:11" name="cof"> <div class="input-group custom-search-form"> <input type="text" class="form-control" placeholder="Buscar..." value="" name="s" id="s"> <span class="input-group-btn"> <button class="btn btn-default" type="submit" id="searchsubmit"><i class="fa fa-search"></i></button> </span> </div> </form> </li> <li><a href="../blog/index.html"><span class="navegacion-icono"><i class="fa fa-lightbulb-o"></i></span> Análisis Publicados</a></li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-area-chart"></i></span> Indicadores<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../smi/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SMI</a></li> <li><a href="../indicadores-categorias/index.html"><span class="navegacion-icono"><i class="fa fa-th-list"></i></span> Indicadores por Categoría</a></li> </ul> </li> <li class="active"> <a href="#"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Información Geográfica<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../sig/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SIG</a></li> <li><a href="../sig-planes/index.html"><span class="navegacion-icono"><i class="fa fa-file-pdf-o"></i></span> Planes</a></li> <li><a href="../sig-mapas-torreon/index.html"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Mapas de Torreón</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-share-alt"></i></span> Términos de Uso<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../terminos/terminos-informacion.html"><span class="navegacion-icono"><i class="fa fa-cubes"></i></span> De la información</a></li> <li><a href="../terminos/terminos-sitio.html"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Del sitio web</a></li> <li><a href="../terminos/privacidad.html"><span class="navegacion-icono"><i class="fa fa-lock"></i></span> Aviso de Privacidad</a></li> </ul> </li> <li><a href="../contacto/contacto.html"><span class="navegacion-icono"><i class="fa fa-phone"></i></span> Contacto</a></li> <li><a href="http://www.trcimplan.gob.mx/" target="_blank"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> IMPLAN Torreón</a></li> </ul> </div> </div> </nav> <div id="page-wrapper"> <div class="cuerpo"> <article><div itemscope itemtype="http://schema.org/CreativeWork"> <div class="encabezado" style="background-color:#808080;"> <h1 itemprop="name">Viviendas Deshabitadas</h1> <div class="encabezado-descripcion" itemprop="description">Mapa que muestra la incidencia de las viviendas deshabitadas en Torreón, Coahuila.</div> <div class="encabezado-autor-fecha"> Por <span itemprop="author">Arq. Jair Miramontes Chávez</span> - <meta itemprop="datePublished" content="2015-04-13T08:00">13/04/2015 08:00 </div> </div> <meta itemprop="image" alt="Viviendas Deshabitadas" src="viviendas-deshabitadas/imagen.jpg"> <div itemprop="contentLocation" itemscope itemtype="http://schema.org/Place"> <div itemprop="hasMap" itemscope itemtype="http://schema.org/Map"> <iframe width='100%' height='520' frameborder='0' src='https://implantorreon.cartodb.com/u/sigimplan/viz/e149b360-dc9e-11e4-a1e7-0e853d047bba/embed_map' allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen></iframe> <p><b>VERSIÓN DE DIVULGACIÓN E INFORMACIÓN, NO PRODUCE EFECTOS JURÍDICOS.</b></p> <link itemprop="mapType" href="http://schema.org/VenueMap"><a itemprop="url" class="btn btn-default" href="https://implantorreon.cartodb.com/u/sigimplan/viz/e149b360-dc9e-11e4-a1e7-0e853d047bba/embed_map" target="_blank" role="button">Ver a pantalla completa</a> </div> <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress"> <div class="direccion"> <span itemprop="addressLocality">Torreón</span>, <span itemprop="addressRegion">Coahuila de Zaragoza</span>. <meta itemprop="addressCountry" content="MX">México. </div> </div> </div> </div></article> <div class="contenido-social"> <h5>Compartir en Redes Sociales</h5> <a href="https://twitter.com/share" class="twitter-share-button" data-via="trcimplan" data-lang="es">Twittear</a> <iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.trcimplan.gob.mx%2Fcmiclaguna%2Fsig-mapas-torreon%2Fviviendas-deshabitadas.html&amp;width=300&amp;layout=button_count&amp;action=like&amp;show_faces=true&amp;share=false&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:21px;" allowTransparency="true"></iframe> </div> </div> <div class="mapa-inferior"> <div class="row"> <div class="col-md-8"> <a href="../index.html"><img class="img-responsive mapa-inferior-logo" src="../imagenes/cmic-trcimplan-mapa-inferior-360x120.png" alt="CMIC Laguna / IMPLAN Torreón"></a> </div> <div class="col-md-4"> <div class="pull-right redes-sociales"> <a class="fa fa-twitter-square" href="https://twitter.com/canacotorreon" target="_blank"></a> <a class="fa fa-facebook-square" href="https://facebook.com/canacoservyturtorreon" target="_blank"></a> <a class="fa fa-github-square" href="https://github.com/TRCIMPLAN/canacoservyturtorreon" target="_blank"></a> <a class="fa fa-rss-square" href="../rss.xml"></a> </div> </div> </div> </div> </div> </div> <!-- Javascript común --> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <script type="text/javascript" src="../js/raphael-min.js"></script> <script type="text/javascript" src="../js/morris.min.js"></script> <script type="text/javascript" src="../js/plugins/metisMenu/metisMenu.min.js"></script> <script type="text/javascript" src="../js/sb-admin-2.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript" src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script> <!-- Javascript: Inicia --> <script> // Twitter !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); </script> <!-- Javascript: Termina --> </body> </html>
Doc/qtscxml/qtscxml-mediaplayer-qml-static-example.html
angeloprudentino/QtNets
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- mediaplayer-qml-static.qdoc --> <title>Qt SCXML Media Player QML Example (Static) | Qt SCXML 5.7</title> <link rel="stylesheet" type="text/css" href="style/offline-simple.css" /> <script type="text/javascript"> window.onload = function(){document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");}; </script> </head> <body> <div class="header" id="qtdocheader"> <div class="main"> <div class="main-rounded"> <div class="navigationbar"> <table><tr> <td ><a href="../qtdoc/supported-platforms-and-configurations.html#qt-5-7">Qt 5.7</a></td><td ><a href="qtscxml-index.html">Qt SCXML</a></td><td >Qt SCXML Media Player QML Example (Static)</td></tr></table><table class="buildversion"><tr> <td id="buildversion" width="100%" align="right">Qt 5.7.0 Reference Documentation</td> </tr></table> </div> </div> <div class="content"> <div class="line"> <div class="content mainContent"> <div class="sidebar"> <div class="toc"> <h3><a name="toc">Contents</a></h3> <ul> <li class="level1"><a href="#running-the-example">Running the Example</a></li> <li class="level1"><a href="#using-the-ecmascript-data-model">Using the ECMAScript Data Model</a></li> <li class="level1"><a href="#compiling-the-state-machine">Compiling the State Machine</a></li> <li class="level1"><a href="#instantiating-the-state-machine">Instantiating the State Machine</a></li> </ul> </div> <div class="sidebar-content" id="sidebar-content"></div></div> <h1 class="title">Qt SCXML Media Player QML Example (Static)</h1> <span class="subtitle"></span> <!-- $$$mediaplayer-qml-static-description --> <div class="descr"> <a name="details"></a> <p class="centerAlign"><img src="images/mediaplayer.png" alt="" /></p><p><i>Media Player QML Example (Static)</i> demonstrates how to access data from an ECMAScript data model that is compiled into a C++ class.</p> <p>The UI is created using Qt Quick.</p> <a name="running-the-example"></a> <h2 id="running-the-example">Running the Example</h2> <p>To run the example from <a href="http://doc.qt.io/qtcreator/index.html">Qt Creator</a>, open the <b>Welcome</b> mode and select the example from <b>Examples</b>. For more information, visit <a href="http://doc.qt.io/qtcreator/creator-build-example-application.html">Building and Running an Example</a>.</p> <a name="using-the-ecmascript-data-model"></a> <h2 id="using-the-ecmascript-data-model">Using the ECMAScript Data Model</h2> <p>We specify the data model as a value of the <i>datamodel</i> attribute of the <code>&lt;scxml&gt;</code> element in <i>mediaplayer-common/mediaplayer.scxml</i>:</p> <pre class="qml"> &lt;!-- enable-qt-mode: yes --&gt; &lt;scxml xmlns=&quot;http://www.w3.org/2005/07/scxml&quot; version=&quot;1.0&quot; name=&quot;MediaPlayerStateMachine&quot; initial=&quot;stopped&quot; datamodel=&quot;ecmascript&quot; &gt; &lt;datamodel&gt; &lt;data id=&quot;media&quot;/&gt; &lt;/datamodel&gt; </pre> <a name="compiling-the-state-machine"></a> <h2 id="compiling-the-state-machine">Compiling the State Machine</h2> <p>We link against the Qt SCXML module by adding the following line to the <i>.pro</i> file:</p> <pre class="qml"> QT += widgets scxml </pre> <p>We then specify the state machine to compile:</p> <pre class="qml"> STATECHARTS = ../mediaplayer-common/mediaplayer.scxml </pre> <p>We also tell qmake to run <code>qscxmlc</code>, which generates <i>mediaplayer.h</i> and <i>mediaplayer.cpp</i>, and adds them to the <code>HEADERS</code> and <code>SOURCES</code> variables for compilation:</p> <pre class="qml"> load(qscxmlc) </pre> <a name="instantiating-the-state-machine"></a> <h2 id="instantiating-the-state-machine">Instantiating the State Machine</h2> <p>We instantiate the generated <code>MediaPlayerStateMachine</code> class in <i>mediaplayer-qml-static.cpp</i>:</p> <pre class="qml"> <span class="preprocessor">#include &quot;mediaplayer.h&quot;</span> <span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>) { <span class="type">QGuiApplication</span> app(argc<span class="operator">,</span> argv); qmlRegisterType<span class="operator">&lt;</span>MediaPlayerStateMachine<span class="operator">&gt;</span>(<span class="string">&quot;MediaPlayerStateMachine&quot;</span><span class="operator">,</span> <span class="number">1</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="string">&quot;MediaPlayerStateMachine&quot;</span>); <span class="type">QQmlApplicationEngine</span> engine; engine<span class="operator">.</span>load(<span class="type"><a href="../qtcore/qurl.html">QUrl</a></span>(<span class="type"><a href="../qtcore/qstring.html#QStringLiteral">QStringLiteral</a></span>(<span class="string">&quot;qrc:///mediaplayer-qml-static.qml&quot;</span>))); <span class="keyword">if</span> (engine<span class="operator">.</span>rootObjects()<span class="operator">.</span>isEmpty()) <span class="keyword">return</span> <span class="operator">-</span><span class="number">1</span>; <span class="keyword">return</span> app<span class="operator">.</span>exec(); } </pre> <p>Files:</p> <ul> <li><a href="qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-cpp.html">mediaplayer-qml-static/mediaplayer-qml-static.cpp</a></li> <li><a href="qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qml.html">mediaplayer-qml-static/mediaplayer-qml-static.qml</a></li> <li><a href="qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-pro.html">mediaplayer-qml-static/mediaplayer-qml-static.pro</a></li> <li><a href="qtscxml-mediaplayer-qml-static-mediaplayer-qml-static-qrc.html">mediaplayer-qml-static/mediaplayer-qml-static.qrc</a></li> </ul> </div> <!-- @@@mediaplayer-qml-static --> </div> </div> </div> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. </p> </div> </body> </html>
indicadores-torreon/sociedad-rezago-alimentario.html
TRCIMPLAN/trcimplan.github.io
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <!-- =================================================================================================== Instituto Municipal de Planeación y Competitividad (IMPLAN) de Torreón. 3er. generación de la Plataforma del Conocimiento Desarrollado por Ing. Guillermo Valdés Lozano <guivaloz en movimientolibre.com> El software que lo construye está bajo la licencia GPL versión 3. © 2014, 2015, 2016, 2017. Una copia está contenida en el archivo LICENCE al bajar desde GitHub. Al usar, estudiar y copiar está aceptando los términos de uso de la información y del sitio web: http://www.trcimplan.gob.mx/terminos/terminos-informacion.html http://www.trcimplan.gob.mx/terminos/terminos-sitio.html Descargue, estudie y colabore bajando todo este sitio web: IMPLAN Torreón https://github.com/TRCIMPLAN/trcimplan.github.io Agradecemos y compartimos las tecnologías abiertas y gratuitas sobre las que se basa: PHP http://php.net Twitter Bootstrap http://getbootstrap.com StartBootStrap http://startbootstrap.com Morris.js https://morrisjs.github.io/morris.js/ Font Awesome http://fontawesome.io DataTables https://www.datatables.net Carto https://carto.com GitHub https://github.com =================================================================================================== --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Personas que presenten un grado de inseguridad alimentaria moderado o severo."> <meta name="author" content="Dirección de Investigación Estratégica"> <meta name="keywords" content="IMPLAN, Torreón, Grupos Vulnerables, Bienestar, Sector Automotriz"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Rezago Alimentario en Torreón - IMPLAN Torreón"> <meta name="twitter:description" content="Personas que presenten un grado de inseguridad alimentaria moderado o severo."> <meta name="twitter:image" content="http://www.trcimplan.gob.mx/indicadores-torreon/../imagenes/imagen-previa.jpg"> <meta name="twitter:url" content="http://www.trcimplan.gob.mx/indicadores-torreon/sociedad-rezago-alimentario.html"> <meta name="og:title" content="Rezago Alimentario en Torreón - IMPLAN Torreón"> <meta name="og:description" content="Personas que presenten un grado de inseguridad alimentaria moderado o severo."> <meta name="og:image" content="http://www.trcimplan.gob.mx/indicadores-torreon/../imagenes/imagen-previa.jpg"> <meta name="og:url" content="http://www.trcimplan.gob.mx/indicadores-torreon/sociedad-rezago-alimentario.html"> <title>Rezago Alimentario en Torreón - IMPLAN Torreón</title> <link rel="shortcut icon" type="image/x-icon" href="../imagenes/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon.png"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-76x76.png" sizes="76x76"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-120x120.png" sizes="120x120"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-152x152.png" sizes="152x152"> <link rel="apple-touch-icon" href="../imagenes/apple-touch-icon-180x180.png" sizes="180x180"> <link rel="icon" href="../imagenes/icon-hires.png" sizes="192x192"> <link rel="icon" href="../imagenes/icon-normal.png" sizes="128x128"> <link rel="alternate" type="application/rss+xml" href="../rss.xml" title="IMPLAN Torreón"> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="../vendor/metisMenu/metisMenu.min.css"> <link rel="stylesheet" type="text/css" href="../vendor/datatables-plugins/dataTables.bootstrap.css"> <link rel="stylesheet" type="text/css" href="../vendor/morrisjs/morris.css"> <link rel="stylesheet" type="text/css" href="../vendor/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../dist/css/sb-admin-2.min.css"> <link rel="stylesheet" type="text/css" href="../dist/css/plataforma-de-conocimiento.css"> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Noto+Sans|Roboto+Condensed:400,700"> <link rel="stylesheet" type="text/css" href="http://libs.cartocdn.com/cartodb.js/v3/3.15/themes/css/cartodb.css"> <link rel="stylesheet" type="text/css" href="../dist/css/estilosvm.css"> <link rel="stylesheet" type="text/css" href="../dist/css/trcimplan.css"> <!-- SOPORTE PARA IE --> <!--[if lt IE 9]> <script type="text/javascript" src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script type="text/javascript" src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> </head> <body> <div id="wrapper"> <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"><img class="navbar-brand-img" src="../imagenes/implan-barra-logo-chico-gris.png" alt="IMPLAN Torreón"></a> </div> <div class="navbar-default sidebar" role="navigation"> <div class="sidebar-nav navbar-collapse"> <ul class="nav" id="side-menu"> <li class="sidebar-search"> <form method="get" action="http://www.trcimplan.gob.mx/buscador-resultados.html"> <div class="input-group custom-search-form"> <input type="text" class="form-control" placeholder="Google buscar..." value="" name="q"> <span class="input-group-btn"> <button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button> </span> </div> </form> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-lightbulb-o"></i></span> Análisis Publicados<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../blog/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Últimos Análisis</a></li> <li><a href="../excolaboradores/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Análisis por Autor</a></li> </ul> </li> <li class="active"> <a href="#"><span class="navegacion-icono"><i class="fa fa-area-chart"></i></span> Indicadores<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../smi/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SMI</a></li> <li><a href="../indicadores-categorias/index.html"><span class="navegacion-icono"><i class="fa fa-th-list"></i></span> Indicadores por Categoría</a></li> <li class="active"><a href="../smi/por-region.html"><span class="navegacion-icono"><i class="fa fa-table"></i></span> Indicadores por Región</a></li> <li><a href="../smi/niveles-socioeconomicos.html"><span class="navegacion-icono"><i class="fa fa-bar-chart"></i></span> Niveles Socioeconómicos</a></li> <li><a href="../monitores/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Monitores</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-puzzle-piece"></i></span> Indicadores Básicos de Colonias<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../ibc/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al IBC</a></li> <li><a href="../ibc-colonias-torreon/index.html"><span class="navegacion-icono"><i class="fa fa-font"></i></span> Colonias de Torreón</a></li> <li><a href="https://implantorreon.carto.com/u/sigimplan/builder/907a6bc0-2c7e-451e-9668-b78d952e52ff/embed" target="_blank"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Mapa Completo</a></li> <li><a href="../ibc/torreon-urbano.html"><span class="navegacion-icono"><i class="fa fa-table"></i></span> Torreón Urbano</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Información Geográfica<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../sig/introduccion.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Introducción al SIG</a></li> <li><a href="../sig-mapas-torreon/temas-sig.html"><span class="navegacion-icono"><i class="fa fa-map-o"></i></span> Mapas por Tema</a></li> <li><a href="../sig-mapas-torreon/plan-director-desarrollo-urbano.html"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Usos de Suelo</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Plan Estratégico Torreón 2040<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../pet/indice.html"><span class="navegacion-icono"><i class="fa fa-list-ul"></i></span> Índice General</a></li> <li><a href="../plan-estrategico-torreon-enfoque-metropolitano-2040/index.html"><span class="navegacion-icono"><i class="fa fa-download"></i></span> Descargar</a></li> <li><a href="../plan-estrategico-metropolitano/descripcion-del-proceso.html"><span class="navegacion-icono"><i class="fa fa-calendar"></i></span> Descripción del proceso</a></li> <li><a href="../proyectos/index.html"><span class="navegacion-icono"><i class="fa fa-check-square"></i></span> Proyectos</a></li> <li><a href="../vision-de-ciudad/vision-de-ciudad.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Visión de Ciudad desde IMPLAN</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-file-pdf-o"></i></span> Documentos<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../sig-planes/index.html"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Planes y Programas</a></li> <li><a href="../investigaciones/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Investigaciones</a></li> <li><a href="../estudios/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Estudios</a></li> </ul> </li> <li><a href="../consejo-directivo/integrantes.html"><span class="navegacion-icono"><i class="fa fa-users"></i></span> Consejo Directivo</a></li> <li><a href="../sala-prensa/index.html"><span class="navegacion-icono"><i class="fa fa-newspaper-o"></i></span> Sala de Prensa</a></li> <li><a href="../programas-radio/index.html"><span class="navegacion-icono"><i class="fa fa-microphone"></i></span> Programas de Radio</a></li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Consejo Visión Metrópoli<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../convocatorias/vision-metropoli.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Consejo Juvenil</a></li> <li><a href="../vision-metropoli/integrantes.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Integrantes del Consejo</a></li> <li><a href="../vision-metropoli/index.html"><span class="navegacion-icono"><i class="fa fa-newspaper-o"></i></span> Sala de Prensa</a></li> <li><a href="../vision-metropoli/publicaciones.html"><span class="navegacion-icono"><i class="fa fa-book"></i></span> Publicaciones</a></li> <li><a href="../vision-metropoli/reglamento-vision-metropoli-2022.pdf"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Reglamento</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-building-o"></i></span> Institucional<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../institucional/vision-mision.html"><span class="navegacion-icono"><i class="fa fa-trophy"></i></span> Misión / Visión</a></li> <li><a href="../institucional/NuestrosProyectos.html"><span class="navegacion-icono"><i class="fa fa-pencil-square-o"></i></span> Nuestros Proyectos</a></li> <li><a href="../institucional/mensaje-director.html"><span class="navegacion-icono"><i class="fa fa-comment"></i></span> Mensaje del Director</a></li> <li><a href="../autores/index.html"><span class="navegacion-icono"><i class="fa fa-user"></i></span> Quienes Somos</a></li> <li><a href="../institucional/estructura-organica.html"><span class="navegacion-icono"><i class="fa fa-sitemap"></i></span> Estructura Orgánica</a></li> <li><a href="../institucional/modelo-operativo-universal.html"><span class="navegacion-icono"><i class="fa fa-slideshare"></i></span> Modelo Operativo Univ.</a></li> <li><a href="../institucional/reglamentos.html"><span class="navegacion-icono"><i class="fa fa-gavel"></i></span> Reglamentos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Transparencia<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="http://www2.icai.org.mx/ipo/dependencia.php?dep=178#pageload" target="_blank"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Transparencia Estatal (ICAI)</a></li> <li><a href="https://consultapublicamx.inai.org.mx/vut-web/faces/view/consultaPublica.xhtml#inicio" target="_blank"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Plataforma Nacional de Transparencia</a></li> <li><a href="../transparencia/index.html"><span class="navegacion-icono"><i class="fa fa-file-pdf-o"></i></span> Documentos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-download"></i></span> Datos Abiertos<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../smi/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-area-chart"></i></span> Sist. Metropolitano de Indicadores</a></li> <li><a href="../ibc/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-puzzle-piece"></i></span> Indicador Básico de Colonias</a></li> <li><a href="../sig/datos-abiertos.html"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Sist. Información Geográfica</a></li> <li><a href="https://arcg.is/0vySSr" target="_blank"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Atlas de Riesgos</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-share-alt"></i></span> Términos de Uso<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../terminos/terminos-informacion.html"><span class="navegacion-icono"><i class="fa fa-cubes"></i></span> De la información</a></li> <li><a href="../terminos/terminos-sitio.html"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Del sitio web</a></li> <li><a href="../terminos/privacidad.html"><span class="navegacion-icono"><i class="fa fa-lock"></i></span> Aviso de Privacidad</a></li> </ul> </li> <li> <a href="#"><span class="navegacion-icono"><i class="fa fa-phone"></i></span> Contacto<span class="fa arrow"></span></a> <ul class="nav nav-second-level"> <li><a href="../contacto/contacto.html"><span class="navegacion-icono"><i class="fa fa-phone"></i></span> Medios de contacto</a></li> <li><a href="../preguntas-frecuentes/preguntas-frecuentes.html"><span class="navegacion-icono"><i class="fa fa-question"></i></span> Preguntas Frecuentes</a></li> <li><a href="http://goo.gl/forms/1rdX4X128PpMOif73" target="_blank"><span class="navegacion-icono"><i class="fa fa-external-link"></i></span> Comentarios y Sugerencias</a></li> </ul> </li> <li><a href="../convocatorias/index.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Convocatorias</a></li> <li><a href="http://177.244.42.17/ovie-torreon/#!" target="_blank"><span class="navegacion-icono"><i class="fa fa-map-marker"></i></span> Oficina Virtual de Información Económica (OVIE)</a></li> <li><a href="https://arcg.is/0vySSr" target="_blank"><span class="navegacion-icono"><i class="fa fa-globe"></i></span> Atlas Municipal de Riesgos de Torreón</a></li> <li><a href="../multi-city-challenge/multi-city-challenge.html"><span class="navegacion-icono"><i class="fa fa-file-text-o"></i></span> Multi-City Challenge México 2020</a></li> </ul> </div> </div> </nav> <div id="page-wrapper"> <div class="cuerpo"> <article><div itemscope itemtype="http://schema.org/Article"> <div class="encabezado"> <h1 itemprop="headline">Rezago Alimentario en Torreón</h1> <div class="encabezado-descripcion" itemprop="description">Personas que presenten un grado de inseguridad alimentaria moderado o severo.</div> <div class="encabezado-autor-fecha"> Por <span itemprop="author">Dirección de Investigación Estratégica</span> - <meta itemprop="datePublished" content="2014-10-21T16:19:49">21/10/2014 16:19 </div> </div> <div itemprop="articleBody"> <!-- Contenido: Inicia --> <div> <ul class="nav nav-tabs lenguetas" role="tablist" id="LenguetasIndicador"> <li role="presentation" class="active"><a href="#LenguetasIndicadorDatos" aria-controls="LenguetasIndicadorDatos" role="tab" data-toggle="tab">Datos</a></li> <li role="presentation"><a href="#LenguetasIndicadorOtrasRegiones" aria-controls="LenguetasIndicadorOtrasRegiones" role="tab" data-toggle="tab">Otras regiones</a></li> </ul> <div class="tab-content lengueta-contenido"> <div role="tabpanel" class="tab-pane active" id="LenguetasIndicadorDatos"> <table id="SmiDatosRezagoAlimentarioEnTorreon" class="table table-hover table-bordered"> <thead> <tr> <th>Fecha</th> <th>Dato</th> <th>Fuente</th> <th>Notas</th> </tr> </thead> <tbody> <tr> <td class="centrado">2010-12-31</td> <td class="derecha">17.7700 %</td> <td>CONEVAL</td> <td></td> </tr> </tbody> </table> </div> <div role="tabpanel" class="tab-pane" id="LenguetasIndicadorOtrasRegiones"> <h3>Últimos datos de Rezago Alimentario en Torreón</h3> <div id="SmiOtrasRegionesRezagoAlimentarioEnTorreonGrafica" class="grafica"></div> <table id="SmiOtrasRegionesRezagoAlimentarioEnTorreonTabla" class="table table-hover table-bordered"> <thead> <tr> <th>Región</th> <th>Fecha</th> <th>Dato</th> <th>Fuente</th> <th>Notas</th> </tr> </thead> <tbody> <tr> <td>Torreón</td> <td class="centrado">2010-12-31</td> <td class="derecha">17.7700 %</td> <td>CONEVAL</td> <td></td> </tr> <tr> <td>Gómez Palacio</td> <td class="centrado">2010-12-31</td> <td class="derecha">18.1100 %</td> <td>CONEVAL</td> <td></td> </tr> <tr> <td>Lerdo</td> <td class="centrado">2010-12-31</td> <td class="derecha">20.8900 %</td> <td>CONEVAL</td> <td></td> </tr> <tr> <td>Matamoros</td> <td class="centrado">2010-12-31</td> <td class="derecha">25.1000 %</td> <td>CONEVAL</td> <td></td> </tr> </tbody> </table> </div> </div> </div> <h3>Observaciones</h3> <p>Consulta la <a href="http://www.coneval.gob.mx/Medicion/Paginas/Medici%C3%B3n/Anexo-estad%C3%ADstico-municipal-2010.aspx">BasedeDatos</a></p> <!-- Contenido: Termina --> </div> </div></article> <aside> <!-- Extra: Inicia --> <h3>Publicaciones relacionadas</h3> <p><b>Análisis Publicados</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/blog/equidad-economica-torreon.html">Equidad Econ&oacute;mica en Torre&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/analisis-de-resultados-coneval-2014-para-coahuila.html">An&aacute;lisis de Resultados CONEVAL 2014 para Coahuila</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/discapacidad-en-la-laguna-sep2019.html">La discapacidad como una realidad inevitable en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/se-recupera-la-inversion-extranjera-en-la-laguna.html">Se recupera la Inversi&oacute;n extranjera en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/formas-de-discriminacion-contra-las-personas-indigenas-en-la-region-lagunera-ene2019.html">Formas de discriminaci&oacute;n contra las personas ind&iacute;genas en la regi&oacute;n lagunera</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/incremento-de-personas-adultas-mayores-en-torreon-y-su-reto-de-vivienda-digna-ene2019.html">Incremento de las Personas Adultas Mayores en Torre&oacute;n y su reto de vivienda digna.</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/vehiculos-hibridos-la-opcion-ecologica-para-la-laguna.html">Veh&iacute;culos h&iacute;bridos: la opci&oacute;n ecol&oacute;gica para La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/jimulco-el-paso-del-ferrocarril-y-su-importancia-para-torreon.html">Jimulco: El paso del ferrocarril y su importancia para Torre&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/situacion-social-de-los-adultos-mayores-en-la-laguna.html">Situaci&oacute;n social de los adultos mayores en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/blog/carreras-universitarias-con-mas-demanda-en-la-laguna.html">Carreras universitarias con m&aacute;s demanda en La Laguna</a></li> </ul> <p><b>Sistema Metropolitano de Indicadores</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/indicadores-torreon/sociedad-rezago-educativo.html">Rezago Educativo en Torre&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-la-laguna/sociedad-rezago-educativo.html">Rezago Educativo en La Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-matamoros/sociedad-rezago-educativo.html">Rezago Educativo en Matamoros</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-matamoros/sociedad-rezago-alimentario.html">Rezago Alimentario en Matamoros</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-lerdo/sociedad-rezago-educativo.html">Rezago Educativo en Lerdo</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-lerdo/sociedad-rezago-alimentario.html">Rezago Alimentario en Lerdo</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-gomez-palacio/sociedad-rezago-educativo.html">Rezago Educativo en G&oacute;mez Palacio</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-gomez-palacio/sociedad-rezago-alimentario.html">Rezago Alimentario en G&oacute;mez Palacio</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-torreon/sociedad-discapacidad.html">Discapacidad en Torre&oacute;n</a></li> <li><a href="http://www.trcimplan.gob.mx/indicadores-torreon/sociedad-indice-de-marginacion.html">&Iacute;ndice de Marginaci&oacute;n en Torre&oacute;n</a></li> </ul> <p><b>Sistema de Información Geográfica</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/sig-mapas-torreon/centros-atencion-adultos-mayores.html">Centros de Atenci&oacute;n a Adultos Mayores</a></li> </ul> <p><b>Plan Estratégico Torreón</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-movilidad-transporte.html">Diagn&oacute;stico Estrat&eacute;gico: Movilidad y Transporte</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/diagnostico-estrategico-desarrollo-social.html">Diagn&oacute;stico Estrat&eacute;gico: Desarrollo Social</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/cartera-proyectos-desarrollo-social.html">Cartera de Proyectos: Desarrollo Social</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/vision-movilidad-transporte.html">Visi&oacute;n de Movilidad y Transporte 2040</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/vision-desarrollo-social.html">Visi&oacute;n de Desarrollo Social 2040</a></li> <li><a href="http://www.trcimplan.gob.mx/pet/cartera-proyectos-movilidad-transporte.html">Cartera de Proyectos: Movilidad y Transporte</a></li> <li><a href="http://www.trcimplan.gob.mx/proyectos/plata-laguna.html">Plata Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/proyectos/salud-laguna.html">Salud Laguna</a></li> <li><a href="http://www.trcimplan.gob.mx/proyectos/calle-completa.html">Calle Completa</a></li> <li><a href="http://www.trcimplan.gob.mx/proyectos/plan-centro-laguna.html">Plan Centro Laguna</a></li> </ul> <p><b>Sala de Prensa</b></p> <ul> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2017-08-31-implan-firma-convenio-con-el-cluster-automotriz.html">IMPLAN firma convenio con el Cl&uacute;ster Automotriz</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2016-08-31-sesion-ordinaria.html">Presentan evaluaci&oacute;n del impacto social y urbano de Ciudad DIF</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2015-05-13-financial-times-american-cities-future-2015-2016.html">Torre&oacute;n 4to lugar en Costo Beneficio de inversi&oacute;n en Ranking del Financial Times - American Cities of the Future 2015-2016</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2018-08-10-comunicado-prensa.html">Presentan colaboraci&oacute;n entre IMPLAN y el Instituto Municipal de la Mujer en Torre&oacute;n.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-04-15-comunicado-conferencias-virtuales.html">El IMPLAN Torre&oacute;n y su Consejo Juvenil: Visi&oacute;n Metr&oacute;poli, presentar&aacute;n Conferencias Virtuales</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-27-segunda-sesion-consejo-2020.html">Presentan en Segunda Sesi&oacute;n de Consejo el &ldquo;Programa Parcial de Desarrollo Urbano para la Zona Norte de Torre&oacute;n&rdquo;</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-17-comunicado-enoe.html">Disminuye la tasa de desempleo en la Zona Metropolitana de La Laguna (ZML), al cuarto trimestre de 2019</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-02-06-comunicado-conferencia-imeplan.html">Postura sobre la creaci&oacute;n de un Instituto Metropolitano de Planeaci&oacute;n.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2020-01-30-primer-sesion-consejo-2020.html">Primer Sesi&oacute;n de Consejo 2020. Se renueva el Consejo Directivo del IMPLAN.</a></li> <li><a href="http://www.trcimplan.gob.mx/sala-prensa/2019-09-26-novena-sesion-consejo.html">Novena Sesi&oacute;n de Consejo Implan. Presentan Resultados del Conversatorio y del Concurso &ldquo;Manos a la Cebra&rdquo;.</a></li> </ul> <!-- Extra: Termina --> </aside> <div class="contenido-social"> <h5>Compartir en Redes Sociales</h5> <a href="https://twitter.com/share" class="twitter-share-button" data-via="trcimplan" data-lang="es">Twittear</a> <iframe src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.trcimplan.gob.mx%2Findicadores-torreon%2Fsociedad-rezago-alimentario.html&amp;width=300&amp;layout=button_count&amp;action=like&amp;show_faces=true&amp;share=false&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:21px;" allowTransparency="true"></iframe> </div> </div> <div class="mapa-inferior"> <div class="pull-right redes-sociales"> <a class="fa fa-twitter-square" href="http://www.twitter.com/trcimplan" target="_blank"></a> <a class="fa fa-facebook-square" href="https://facebook.com/trcimplan" target="_blank"></a> <a class="fa fa-facebook-square" href="http://www.instagram.com/implantorreon" target="_blank"></a> <a class="fa fa-rss-square" href="../rss.xml"></a> </div> </div> </div> </div> <!-- Javascript global inicia --> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script> <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <script type="text/javascript" src="../vendor/metisMenu/metisMenu.min.js"></script> <script type="text/javascript" src="../vendor/datatables/js/jquery.dataTables.min.js"></script> <script type="text/javascript" src="../vendor/datatables-plugins/dataTables.bootstrap.min.js"></script> <script type="text/javascript" src="../vendor/datatables-responsive/dataTables.responsive.js"></script> <script type="text/javascript" src="../vendor/raphael/raphael.min.js"></script> <script type="text/javascript" src="../vendor/morrisjs/morris.min.js"></script> <script type="text/javascript" src="../dist/js/sb-admin-2.min.js"></script> <script type="text/javascript" src="http://libs.cartocdn.com/cartodb.js/v3/3.15/cartodb.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <!-- Javascript global termina --> <!-- Javascript inicia --> <script> // LenguetaWeb LenguetasIndicadorOtrasRegiones ejecuta lo siguiente al mostrar $('#LenguetasIndicador a[href="#LenguetasIndicadorOtrasRegiones"]').on('shown.bs.tab', function(e){ if (typeof varSmiOtrasRegionesRezagoAlimentarioEnTorreonGrafica === 'undefined') { varSmiOtrasRegionesRezagoAlimentarioEnTorreonGrafica = Morris.Bar({ element: 'SmiOtrasRegionesRezagoAlimentarioEnTorreonGrafica', data: [{ region: 'Torreón', dato: 17.7700 },{ region: 'Gómez Palacio', dato: 18.1100 },{ region: 'Lerdo', dato: 20.8900 },{ region: 'Matamoros', dato: 25.1000 }], xkey: 'region', ykeys: ['dato'], labels: ['Dato'], barColors: ['#FF5B02'] }); } }) // LenguetasWeb LenguetasIndicador ordenar que Datos es la que se mostrará $(document).ready(function(){ $('#LenguetasIndicador a[href="#LenguetasIndicadorDatos"]').tab('show') }); </script> <script> // Twitter !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); </script> <!-- Javascript termina --> <!-- Javascript Google Analytics --> <script> // Google Analytics (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-58290501-1', 'auto');ga('send', 'pageview'); </script> </body> </html>
resources/Apache/Apache-POI-3.16-beta2/poi-bin-3.16-beta2-20170202/poi-3.16-beta2/docs/apidocs/org/apache/poi/sl/draw/binding/STPresetColorVal.html
doughtnerd/POD
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>STPresetColorVal (POI API Documentation)</title> <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="STPresetColorVal (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/STPresetColorVal.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/poi/sl/draw/binding/STPathFillMode.html" title="enum in org.apache.poi.sl.draw.binding"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../../org/apache/poi/sl/draw/binding/STRectAlignment.html" title="enum in org.apache.poi.sl.draw.binding"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/poi/sl/draw/binding/STPresetColorVal.html" target="_top">FRAMES</a></li> <li><a href="STPresetColorVal.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:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#enum_constant_detail">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</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"> <p class="subTitle">org.apache.poi.sl.draw.binding</p> <h2 title="Enum STPresetColorVal" class="title">Enum STPresetColorVal</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>&gt;</li> <li> <ul class="inheritance"> <li>org.apache.poi.sl.draw.binding.STPresetColorVal</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>&gt;</dd> </dl> <hr> <br> <pre>public enum <strong>STPresetColorVal</strong> extends java.lang.Enum&lt;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>&gt;</pre> <div class="block"><p>Java class for ST_PresetColorVal. <p>The following schema fragment specifies the expected content contained within this class. <p> <pre> &lt;simpleType name="ST_PresetColorVal"> &lt;restriction base="{http://www.w3.org/2001/XMLSchema}token"> &lt;enumeration value="aliceBlue"/> &lt;enumeration value="antiqueWhite"/> &lt;enumeration value="aqua"/> &lt;enumeration value="aquamarine"/> &lt;enumeration value="azure"/> &lt;enumeration value="beige"/> &lt;enumeration value="bisque"/> &lt;enumeration value="black"/> &lt;enumeration value="blanchedAlmond"/> &lt;enumeration value="blue"/> &lt;enumeration value="blueViolet"/> &lt;enumeration value="brown"/> &lt;enumeration value="burlyWood"/> &lt;enumeration value="cadetBlue"/> &lt;enumeration value="chartreuse"/> &lt;enumeration value="chocolate"/> &lt;enumeration value="coral"/> &lt;enumeration value="cornflowerBlue"/> &lt;enumeration value="cornsilk"/> &lt;enumeration value="crimson"/> &lt;enumeration value="cyan"/> &lt;enumeration value="dkBlue"/> &lt;enumeration value="dkCyan"/> &lt;enumeration value="dkGoldenrod"/> &lt;enumeration value="dkGray"/> &lt;enumeration value="dkGreen"/> &lt;enumeration value="dkKhaki"/> &lt;enumeration value="dkMagenta"/> &lt;enumeration value="dkOliveGreen"/> &lt;enumeration value="dkOrange"/> &lt;enumeration value="dkOrchid"/> &lt;enumeration value="dkRed"/> &lt;enumeration value="dkSalmon"/> &lt;enumeration value="dkSeaGreen"/> &lt;enumeration value="dkSlateBlue"/> &lt;enumeration value="dkSlateGray"/> &lt;enumeration value="dkTurquoise"/> &lt;enumeration value="dkViolet"/> &lt;enumeration value="deepPink"/> &lt;enumeration value="deepSkyBlue"/> &lt;enumeration value="dimGray"/> &lt;enumeration value="dodgerBlue"/> &lt;enumeration value="firebrick"/> &lt;enumeration value="floralWhite"/> &lt;enumeration value="forestGreen"/> &lt;enumeration value="fuchsia"/> &lt;enumeration value="gainsboro"/> &lt;enumeration value="ghostWhite"/> &lt;enumeration value="gold"/> &lt;enumeration value="goldenrod"/> &lt;enumeration value="gray"/> &lt;enumeration value="green"/> &lt;enumeration value="greenYellow"/> &lt;enumeration value="honeydew"/> &lt;enumeration value="hotPink"/> &lt;enumeration value="indianRed"/> &lt;enumeration value="indigo"/> &lt;enumeration value="ivory"/> &lt;enumeration value="khaki"/> &lt;enumeration value="lavender"/> &lt;enumeration value="lavenderBlush"/> &lt;enumeration value="lawnGreen"/> &lt;enumeration value="lemonChiffon"/> &lt;enumeration value="ltBlue"/> &lt;enumeration value="ltCoral"/> &lt;enumeration value="ltCyan"/> &lt;enumeration value="ltGoldenrodYellow"/> &lt;enumeration value="ltGray"/> &lt;enumeration value="ltGreen"/> &lt;enumeration value="ltPink"/> &lt;enumeration value="ltSalmon"/> &lt;enumeration value="ltSeaGreen"/> &lt;enumeration value="ltSkyBlue"/> &lt;enumeration value="ltSlateGray"/> &lt;enumeration value="ltSteelBlue"/> &lt;enumeration value="ltYellow"/> &lt;enumeration value="lime"/> &lt;enumeration value="limeGreen"/> &lt;enumeration value="linen"/> &lt;enumeration value="magenta"/> &lt;enumeration value="maroon"/> &lt;enumeration value="medAquamarine"/> &lt;enumeration value="medBlue"/> &lt;enumeration value="medOrchid"/> &lt;enumeration value="medPurple"/> &lt;enumeration value="medSeaGreen"/> &lt;enumeration value="medSlateBlue"/> &lt;enumeration value="medSpringGreen"/> &lt;enumeration value="medTurquoise"/> &lt;enumeration value="medVioletRed"/> &lt;enumeration value="midnightBlue"/> &lt;enumeration value="mintCream"/> &lt;enumeration value="mistyRose"/> &lt;enumeration value="moccasin"/> &lt;enumeration value="navajoWhite"/> &lt;enumeration value="navy"/> &lt;enumeration value="oldLace"/> &lt;enumeration value="olive"/> &lt;enumeration value="oliveDrab"/> &lt;enumeration value="orange"/> &lt;enumeration value="orangeRed"/> &lt;enumeration value="orchid"/> &lt;enumeration value="paleGoldenrod"/> &lt;enumeration value="paleGreen"/> &lt;enumeration value="paleTurquoise"/> &lt;enumeration value="paleVioletRed"/> &lt;enumeration value="papayaWhip"/> &lt;enumeration value="peachPuff"/> &lt;enumeration value="peru"/> &lt;enumeration value="pink"/> &lt;enumeration value="plum"/> &lt;enumeration value="powderBlue"/> &lt;enumeration value="purple"/> &lt;enumeration value="red"/> &lt;enumeration value="rosyBrown"/> &lt;enumeration value="royalBlue"/> &lt;enumeration value="saddleBrown"/> &lt;enumeration value="salmon"/> &lt;enumeration value="sandyBrown"/> &lt;enumeration value="seaGreen"/> &lt;enumeration value="seaShell"/> &lt;enumeration value="sienna"/> &lt;enumeration value="silver"/> &lt;enumeration value="skyBlue"/> &lt;enumeration value="slateBlue"/> &lt;enumeration value="slateGray"/> &lt;enumeration value="snow"/> &lt;enumeration value="springGreen"/> &lt;enumeration value="steelBlue"/> &lt;enumeration value="tan"/> &lt;enumeration value="teal"/> &lt;enumeration value="thistle"/> &lt;enumeration value="tomato"/> &lt;enumeration value="turquoise"/> &lt;enumeration value="violet"/> &lt;enumeration value="wheat"/> &lt;enumeration value="white"/> &lt;enumeration value="whiteSmoke"/> &lt;enumeration value="yellow"/> &lt;enumeration value="yellowGreen"/> &lt;/restriction> &lt;/simpleType> </pre></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ALICE_BLUE">ALICE_BLUE</a></strong></code> <div class="block">Alice Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ANTIQUE_WHITE">ANTIQUE_WHITE</a></strong></code> <div class="block">Antique White Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#AQUA">AQUA</a></strong></code> <div class="block">Aqua Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#AQUAMARINE">AQUAMARINE</a></strong></code> <div class="block">Aquamarine Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#AZURE">AZURE</a></strong></code> <div class="block">Azure Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BEIGE">BEIGE</a></strong></code> <div class="block">Beige Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BISQUE">BISQUE</a></strong></code> <div class="block">Bisque Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BLACK">BLACK</a></strong></code> <div class="block">Black Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BLANCHED_ALMOND">BLANCHED_ALMOND</a></strong></code> <div class="block">Blanched Almond Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BLUE">BLUE</a></strong></code> <div class="block">Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BLUE_VIOLET">BLUE_VIOLET</a></strong></code> <div class="block">Blue Violet Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BROWN">BROWN</a></strong></code> <div class="block">Brown Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#BURLY_WOOD">BURLY_WOOD</a></strong></code> <div class="block">Burly Wood Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CADET_BLUE">CADET_BLUE</a></strong></code> <div class="block">Cadet Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CHARTREUSE">CHARTREUSE</a></strong></code> <div class="block">Chartreuse Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CHOCOLATE">CHOCOLATE</a></strong></code> <div class="block">Chocolate Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CORAL">CORAL</a></strong></code> <div class="block">Coral Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CORNFLOWER_BLUE">CORNFLOWER_BLUE</a></strong></code> <div class="block">Cornflower Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CORNSILK">CORNSILK</a></strong></code> <div class="block">Cornsilk Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CRIMSON">CRIMSON</a></strong></code> <div class="block">Crimson Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#CYAN">CYAN</a></strong></code> <div class="block">Cyan Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DEEP_PINK">DEEP_PINK</a></strong></code> <div class="block">Deep Pink Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DEEP_SKY_BLUE">DEEP_SKY_BLUE</a></strong></code> <div class="block">Deep Sky Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DIM_GRAY">DIM_GRAY</a></strong></code> <div class="block">Dim Gray Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_BLUE">DK_BLUE</a></strong></code> <div class="block">Dark Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_CYAN">DK_CYAN</a></strong></code> <div class="block">Dark Cyan Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_GOLDENROD">DK_GOLDENROD</a></strong></code> <div class="block">Dark Goldenrod Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_GRAY">DK_GRAY</a></strong></code> <div class="block">Dark Gray Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_GREEN">DK_GREEN</a></strong></code> <div class="block">Dark Green Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_KHAKI">DK_KHAKI</a></strong></code> <div class="block">Dark Khaki Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_MAGENTA">DK_MAGENTA</a></strong></code> <div class="block">Dark Magenta Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_OLIVE_GREEN">DK_OLIVE_GREEN</a></strong></code> <div class="block">Dark Olive Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_ORANGE">DK_ORANGE</a></strong></code> <div class="block">Dark Orange Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_ORCHID">DK_ORCHID</a></strong></code> <div class="block">Dark Orchid Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_RED">DK_RED</a></strong></code> <div class="block">Dark Red Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_SALMON">DK_SALMON</a></strong></code> <div class="block">Dark Salmon Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_SEA_GREEN">DK_SEA_GREEN</a></strong></code> <div class="block">Dark Sea Green Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_SLATE_BLUE">DK_SLATE_BLUE</a></strong></code> <div class="block">Dark Slate Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_SLATE_GRAY">DK_SLATE_GRAY</a></strong></code> <div class="block">Dark Slate Gray Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_TURQUOISE">DK_TURQUOISE</a></strong></code> <div class="block">Dark Turquoise Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DK_VIOLET">DK_VIOLET</a></strong></code> <div class="block">Dark Violet Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#DODGER_BLUE">DODGER_BLUE</a></strong></code> <div class="block">Dodger Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#FIREBRICK">FIREBRICK</a></strong></code> <div class="block">Firebrick Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#FLORAL_WHITE">FLORAL_WHITE</a></strong></code> <div class="block">Floral White Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#FOREST_GREEN">FOREST_GREEN</a></strong></code> <div class="block">Forest Green Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#FUCHSIA">FUCHSIA</a></strong></code> <div class="block">Fuchsia Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GAINSBORO">GAINSBORO</a></strong></code> <div class="block">Gainsboro Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GHOST_WHITE">GHOST_WHITE</a></strong></code> <div class="block">Ghost White Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GOLD">GOLD</a></strong></code> <div class="block">Gold Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GOLDENROD">GOLDENROD</a></strong></code> <div class="block">Goldenrod Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GRAY">GRAY</a></strong></code> <div class="block">Gray Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GREEN">GREEN</a></strong></code> <div class="block">Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#GREEN_YELLOW">GREEN_YELLOW</a></strong></code> <div class="block">Green Yellow Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#HONEYDEW">HONEYDEW</a></strong></code> <div class="block">Honeydew Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#HOT_PINK">HOT_PINK</a></strong></code> <div class="block">Hot Pink Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#INDIAN_RED">INDIAN_RED</a></strong></code> <div class="block">Indian Red Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#INDIGO">INDIGO</a></strong></code> <div class="block">Indigo Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#IVORY">IVORY</a></strong></code> <div class="block">Ivory Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#KHAKI">KHAKI</a></strong></code> <div class="block">Khaki Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LAVENDER">LAVENDER</a></strong></code> <div class="block">Lavender Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LAVENDER_BLUSH">LAVENDER_BLUSH</a></strong></code> <div class="block">Lavender Blush Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LAWN_GREEN">LAWN_GREEN</a></strong></code> <div class="block">Lawn Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LEMON_CHIFFON">LEMON_CHIFFON</a></strong></code> <div class="block">Lemon Chiffon Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LIME">LIME</a></strong></code> <div class="block">Lime Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LIME_GREEN">LIME_GREEN</a></strong></code> <div class="block">Lime Green Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LINEN">LINEN</a></strong></code> <div class="block">Linen Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_BLUE">LT_BLUE</a></strong></code> <div class="block">Light Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_CORAL">LT_CORAL</a></strong></code> <div class="block">Light Coral Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_CYAN">LT_CYAN</a></strong></code> <div class="block">Light Cyan Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_GOLDENROD_YELLOW">LT_GOLDENROD_YELLOW</a></strong></code> <div class="block">Light Goldenrod Yellow Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_GRAY">LT_GRAY</a></strong></code> <div class="block">Light Gray Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_GREEN">LT_GREEN</a></strong></code> <div class="block">Light Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_PINK">LT_PINK</a></strong></code> <div class="block">Light Pink Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_SALMON">LT_SALMON</a></strong></code> <div class="block">Light Salmon Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_SEA_GREEN">LT_SEA_GREEN</a></strong></code> <div class="block">Light Sea Green Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_SKY_BLUE">LT_SKY_BLUE</a></strong></code> <div class="block">Light Sky Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_SLATE_GRAY">LT_SLATE_GRAY</a></strong></code> <div class="block">Light Slate Gray Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_STEEL_BLUE">LT_STEEL_BLUE</a></strong></code> <div class="block">Light Steel Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#LT_YELLOW">LT_YELLOW</a></strong></code> <div class="block">Light Yellow Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MAGENTA">MAGENTA</a></strong></code> <div class="block">Magenta Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MAROON">MAROON</a></strong></code> <div class="block">Maroon Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_AQUAMARINE">MED_AQUAMARINE</a></strong></code> <div class="block">Medium Aquamarine Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_BLUE">MED_BLUE</a></strong></code> <div class="block">Medium Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_ORCHID">MED_ORCHID</a></strong></code> <div class="block">Medium Orchid Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_PURPLE">MED_PURPLE</a></strong></code> <div class="block">Medium Purple Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_SEA_GREEN">MED_SEA_GREEN</a></strong></code> <div class="block">Medium Sea Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_SLATE_BLUE">MED_SLATE_BLUE</a></strong></code> <div class="block">Medium Slate Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_SPRING_GREEN">MED_SPRING_GREEN</a></strong></code> <div class="block">Medium Spring Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_TURQUOISE">MED_TURQUOISE</a></strong></code> <div class="block">Medium Turquoise Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MED_VIOLET_RED">MED_VIOLET_RED</a></strong></code> <div class="block">Medium Violet Red Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MIDNIGHT_BLUE">MIDNIGHT_BLUE</a></strong></code> <div class="block">Midnight Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MINT_CREAM">MINT_CREAM</a></strong></code> <div class="block">Mint Cream Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MISTY_ROSE">MISTY_ROSE</a></strong></code> <div class="block">Misty Rose Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#MOCCASIN">MOCCASIN</a></strong></code> <div class="block">Moccasin Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#NAVAJO_WHITE">NAVAJO_WHITE</a></strong></code> <div class="block">Navajo White Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#NAVY">NAVY</a></strong></code> <div class="block">Navy Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#OLD_LACE">OLD_LACE</a></strong></code> <div class="block">Old Lace Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#OLIVE">OLIVE</a></strong></code> <div class="block">Olive Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#OLIVE_DRAB">OLIVE_DRAB</a></strong></code> <div class="block">Olive Drab Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ORANGE">ORANGE</a></strong></code> <div class="block">Orange Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ORANGE_RED">ORANGE_RED</a></strong></code> <div class="block">Orange Red Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ORCHID">ORCHID</a></strong></code> <div class="block">Orchid Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PALE_GOLDENROD">PALE_GOLDENROD</a></strong></code> <div class="block">Pale Goldenrod Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PALE_GREEN">PALE_GREEN</a></strong></code> <div class="block">Pale Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PALE_TURQUOISE">PALE_TURQUOISE</a></strong></code> <div class="block">Pale Turquoise Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PALE_VIOLET_RED">PALE_VIOLET_RED</a></strong></code> <div class="block">Pale Violet Red Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PAPAYA_WHIP">PAPAYA_WHIP</a></strong></code> <div class="block">Papaya Whip Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PEACH_PUFF">PEACH_PUFF</a></strong></code> <div class="block">Peach Puff Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PERU">PERU</a></strong></code> <div class="block">Peru Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PINK">PINK</a></strong></code> <div class="block">Pink Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PLUM">PLUM</a></strong></code> <div class="block">Plum Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#POWDER_BLUE">POWDER_BLUE</a></strong></code> <div class="block">Powder Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#PURPLE">PURPLE</a></strong></code> <div class="block">Purple Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#RED">RED</a></strong></code> <div class="block">Red Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ROSY_BROWN">ROSY_BROWN</a></strong></code> <div class="block">Rosy Brown Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#ROYAL_BLUE">ROYAL_BLUE</a></strong></code> <div class="block">Royal Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SADDLE_BROWN">SADDLE_BROWN</a></strong></code> <div class="block">Saddle Brown Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SALMON">SALMON</a></strong></code> <div class="block">Salmon Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SANDY_BROWN">SANDY_BROWN</a></strong></code> <div class="block">Sandy Brown Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SEA_GREEN">SEA_GREEN</a></strong></code> <div class="block">Sea Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SEA_SHELL">SEA_SHELL</a></strong></code> <div class="block">Sea Shell Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SIENNA">SIENNA</a></strong></code> <div class="block">Sienna Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SILVER">SILVER</a></strong></code> <div class="block">Silver Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SKY_BLUE">SKY_BLUE</a></strong></code> <div class="block">Sky Blue Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SLATE_BLUE">SLATE_BLUE</a></strong></code> <div class="block">Slate Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SLATE_GRAY">SLATE_GRAY</a></strong></code> <div class="block">Slate Gray Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SNOW">SNOW</a></strong></code> <div class="block">Snow Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#SPRING_GREEN">SPRING_GREEN</a></strong></code> <div class="block">Spring Green Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#STEEL_BLUE">STEEL_BLUE</a></strong></code> <div class="block">Steel Blue Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#TAN">TAN</a></strong></code> <div class="block">Tan Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#TEAL">TEAL</a></strong></code> <div class="block">Teal Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#THISTLE">THISTLE</a></strong></code> <div class="block">Thistle Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#TOMATO">TOMATO</a></strong></code> <div class="block">Tomato Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#TURQUOISE">TURQUOISE</a></strong></code> <div class="block">Turquoise Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#VIOLET">VIOLET</a></strong></code> <div class="block">Violet Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#WHEAT">WHEAT</a></strong></code> <div class="block">Wheat Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#WHITE">WHITE</a></strong></code> <div class="block">White Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#WHITE_SMOKE">WHITE_SMOKE</a></strong></code> <div class="block">White Smoke Preset Color</div> </td> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#YELLOW">YELLOW</a></strong></code> <div class="block">Yellow Preset Color</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#YELLOW_GREEN">YELLOW_GREEN</a></strong></code> <div class="block">Yellow Green Preset Color</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#fromValue(java.lang.String)">fromValue</a></strong>(java.lang.String&nbsp;v)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#value()">value</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a></code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>[]</code></td> <td class="colLast"><code><strong><a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum_constant_detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="ALICE_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ALICE_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ALICE_BLUE</pre> <div class="block">Alice Blue Preset Color</div> </li> </ul> <a name="ANTIQUE_WHITE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ANTIQUE_WHITE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ANTIQUE_WHITE</pre> <div class="block">Antique White Preset Color</div> </li> </ul> <a name="AQUA"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>AQUA</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> AQUA</pre> <div class="block">Aqua Preset Color</div> </li> </ul> <a name="AQUAMARINE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>AQUAMARINE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> AQUAMARINE</pre> <div class="block">Aquamarine Preset Color</div> </li> </ul> <a name="AZURE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>AZURE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> AZURE</pre> <div class="block">Azure Preset Color</div> </li> </ul> <a name="BEIGE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BEIGE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BEIGE</pre> <div class="block">Beige Preset Color</div> </li> </ul> <a name="BISQUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BISQUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BISQUE</pre> <div class="block">Bisque Preset Color</div> </li> </ul> <a name="BLACK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BLACK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BLACK</pre> <div class="block">Black Preset Color</div> </li> </ul> <a name="BLANCHED_ALMOND"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BLANCHED_ALMOND</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BLANCHED_ALMOND</pre> <div class="block">Blanched Almond Preset Color</div> </li> </ul> <a name="BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BLUE</pre> <div class="block">Blue Preset Color</div> </li> </ul> <a name="BLUE_VIOLET"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BLUE_VIOLET</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BLUE_VIOLET</pre> <div class="block">Blue Violet Preset Color</div> </li> </ul> <a name="BROWN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BROWN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BROWN</pre> <div class="block">Brown Preset Color</div> </li> </ul> <a name="BURLY_WOOD"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BURLY_WOOD</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> BURLY_WOOD</pre> <div class="block">Burly Wood Preset Color</div> </li> </ul> <a name="CADET_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CADET_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CADET_BLUE</pre> <div class="block">Cadet Blue Preset Color</div> </li> </ul> <a name="CHARTREUSE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CHARTREUSE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CHARTREUSE</pre> <div class="block">Chartreuse Preset Color</div> </li> </ul> <a name="CHOCOLATE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CHOCOLATE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CHOCOLATE</pre> <div class="block">Chocolate Preset Color</div> </li> </ul> <a name="CORAL"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CORAL</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CORAL</pre> <div class="block">Coral Preset Color</div> </li> </ul> <a name="CORNFLOWER_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CORNFLOWER_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CORNFLOWER_BLUE</pre> <div class="block">Cornflower Blue Preset Color</div> </li> </ul> <a name="CORNSILK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CORNSILK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CORNSILK</pre> <div class="block">Cornsilk Preset Color</div> </li> </ul> <a name="CRIMSON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CRIMSON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CRIMSON</pre> <div class="block">Crimson Preset Color</div> </li> </ul> <a name="CYAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>CYAN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> CYAN</pre> <div class="block">Cyan Preset Color</div> </li> </ul> <a name="DK_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_BLUE</pre> <div class="block">Dark Blue Preset Color</div> </li> </ul> <a name="DK_CYAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_CYAN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_CYAN</pre> <div class="block">Dark Cyan Preset Color</div> </li> </ul> <a name="DK_GOLDENROD"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_GOLDENROD</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_GOLDENROD</pre> <div class="block">Dark Goldenrod Preset Color</div> </li> </ul> <a name="DK_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_GRAY</pre> <div class="block">Dark Gray Preset Color</div> </li> </ul> <a name="DK_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_GREEN</pre> <div class="block">Dark Green Preset Color</div> </li> </ul> <a name="DK_KHAKI"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_KHAKI</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_KHAKI</pre> <div class="block">Dark Khaki Preset Color</div> </li> </ul> <a name="DK_MAGENTA"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_MAGENTA</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_MAGENTA</pre> <div class="block">Dark Magenta Preset Color</div> </li> </ul> <a name="DK_OLIVE_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_OLIVE_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_OLIVE_GREEN</pre> <div class="block">Dark Olive Green Preset Color</div> </li> </ul> <a name="DK_ORANGE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_ORANGE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_ORANGE</pre> <div class="block">Dark Orange Preset Color</div> </li> </ul> <a name="DK_ORCHID"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_ORCHID</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_ORCHID</pre> <div class="block">Dark Orchid Preset Color</div> </li> </ul> <a name="DK_RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_RED</pre> <div class="block">Dark Red Preset Color</div> </li> </ul> <a name="DK_SALMON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_SALMON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_SALMON</pre> <div class="block">Dark Salmon Preset Color</div> </li> </ul> <a name="DK_SEA_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_SEA_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_SEA_GREEN</pre> <div class="block">Dark Sea Green Preset Color</div> </li> </ul> <a name="DK_SLATE_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_SLATE_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_SLATE_BLUE</pre> <div class="block">Dark Slate Blue Preset Color</div> </li> </ul> <a name="DK_SLATE_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_SLATE_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_SLATE_GRAY</pre> <div class="block">Dark Slate Gray Preset Color</div> </li> </ul> <a name="DK_TURQUOISE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_TURQUOISE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_TURQUOISE</pre> <div class="block">Dark Turquoise Preset Color</div> </li> </ul> <a name="DK_VIOLET"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DK_VIOLET</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DK_VIOLET</pre> <div class="block">Dark Violet Preset Color</div> </li> </ul> <a name="DEEP_PINK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DEEP_PINK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DEEP_PINK</pre> <div class="block">Deep Pink Preset Color</div> </li> </ul> <a name="DEEP_SKY_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DEEP_SKY_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DEEP_SKY_BLUE</pre> <div class="block">Deep Sky Blue Preset Color</div> </li> </ul> <a name="DIM_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DIM_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DIM_GRAY</pre> <div class="block">Dim Gray Preset Color</div> </li> </ul> <a name="DODGER_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>DODGER_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> DODGER_BLUE</pre> <div class="block">Dodger Blue Preset Color</div> </li> </ul> <a name="FIREBRICK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FIREBRICK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> FIREBRICK</pre> <div class="block">Firebrick Preset Color</div> </li> </ul> <a name="FLORAL_WHITE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FLORAL_WHITE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> FLORAL_WHITE</pre> <div class="block">Floral White Preset Color</div> </li> </ul> <a name="FOREST_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FOREST_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> FOREST_GREEN</pre> <div class="block">Forest Green Preset Color</div> </li> </ul> <a name="FUCHSIA"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FUCHSIA</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> FUCHSIA</pre> <div class="block">Fuchsia Preset Color</div> </li> </ul> <a name="GAINSBORO"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GAINSBORO</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GAINSBORO</pre> <div class="block">Gainsboro Preset Color</div> </li> </ul> <a name="GHOST_WHITE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GHOST_WHITE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GHOST_WHITE</pre> <div class="block">Ghost White Preset Color</div> </li> </ul> <a name="GOLD"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GOLD</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GOLD</pre> <div class="block">Gold Preset Color</div> </li> </ul> <a name="GOLDENROD"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GOLDENROD</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GOLDENROD</pre> <div class="block">Goldenrod Preset Color</div> </li> </ul> <a name="GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GRAY</pre> <div class="block">Gray Preset Color</div> </li> </ul> <a name="GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GREEN</pre> <div class="block">Green Preset Color</div> </li> </ul> <a name="GREEN_YELLOW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GREEN_YELLOW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> GREEN_YELLOW</pre> <div class="block">Green Yellow Preset Color</div> </li> </ul> <a name="HONEYDEW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>HONEYDEW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> HONEYDEW</pre> <div class="block">Honeydew Preset Color</div> </li> </ul> <a name="HOT_PINK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>HOT_PINK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> HOT_PINK</pre> <div class="block">Hot Pink Preset Color</div> </li> </ul> <a name="INDIAN_RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INDIAN_RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> INDIAN_RED</pre> <div class="block">Indian Red Preset Color</div> </li> </ul> <a name="INDIGO"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>INDIGO</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> INDIGO</pre> <div class="block">Indigo Preset Color</div> </li> </ul> <a name="IVORY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>IVORY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> IVORY</pre> <div class="block">Ivory Preset Color</div> </li> </ul> <a name="KHAKI"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>KHAKI</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> KHAKI</pre> <div class="block">Khaki Preset Color</div> </li> </ul> <a name="LAVENDER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LAVENDER</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LAVENDER</pre> <div class="block">Lavender Preset Color</div> </li> </ul> <a name="LAVENDER_BLUSH"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LAVENDER_BLUSH</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LAVENDER_BLUSH</pre> <div class="block">Lavender Blush Preset Color</div> </li> </ul> <a name="LAWN_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LAWN_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LAWN_GREEN</pre> <div class="block">Lawn Green Preset Color</div> </li> </ul> <a name="LEMON_CHIFFON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LEMON_CHIFFON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LEMON_CHIFFON</pre> <div class="block">Lemon Chiffon Preset Color</div> </li> </ul> <a name="LT_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_BLUE</pre> <div class="block">Light Blue Preset Color</div> </li> </ul> <a name="LT_CORAL"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_CORAL</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_CORAL</pre> <div class="block">Light Coral Preset Color</div> </li> </ul> <a name="LT_CYAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_CYAN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_CYAN</pre> <div class="block">Light Cyan Preset Color</div> </li> </ul> <a name="LT_GOLDENROD_YELLOW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_GOLDENROD_YELLOW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_GOLDENROD_YELLOW</pre> <div class="block">Light Goldenrod Yellow Preset Color</div> </li> </ul> <a name="LT_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_GRAY</pre> <div class="block">Light Gray Preset Color</div> </li> </ul> <a name="LT_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_GREEN</pre> <div class="block">Light Green Preset Color</div> </li> </ul> <a name="LT_PINK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_PINK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_PINK</pre> <div class="block">Light Pink Preset Color</div> </li> </ul> <a name="LT_SALMON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_SALMON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_SALMON</pre> <div class="block">Light Salmon Preset Color</div> </li> </ul> <a name="LT_SEA_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_SEA_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_SEA_GREEN</pre> <div class="block">Light Sea Green Preset Color</div> </li> </ul> <a name="LT_SKY_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_SKY_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_SKY_BLUE</pre> <div class="block">Light Sky Blue Preset Color</div> </li> </ul> <a name="LT_SLATE_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_SLATE_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_SLATE_GRAY</pre> <div class="block">Light Slate Gray Preset Color</div> </li> </ul> <a name="LT_STEEL_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_STEEL_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_STEEL_BLUE</pre> <div class="block">Light Steel Blue Preset Color</div> </li> </ul> <a name="LT_YELLOW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LT_YELLOW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LT_YELLOW</pre> <div class="block">Light Yellow Preset Color</div> </li> </ul> <a name="LIME"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LIME</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LIME</pre> <div class="block">Lime Preset Color</div> </li> </ul> <a name="LIME_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LIME_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LIME_GREEN</pre> <div class="block">Lime Green Preset Color</div> </li> </ul> <a name="LINEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LINEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> LINEN</pre> <div class="block">Linen Preset Color</div> </li> </ul> <a name="MAGENTA"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MAGENTA</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MAGENTA</pre> <div class="block">Magenta Preset Color</div> </li> </ul> <a name="MAROON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MAROON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MAROON</pre> <div class="block">Maroon Preset Color</div> </li> </ul> <a name="MED_AQUAMARINE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_AQUAMARINE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_AQUAMARINE</pre> <div class="block">Medium Aquamarine Preset Color</div> </li> </ul> <a name="MED_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_BLUE</pre> <div class="block">Medium Blue Preset Color</div> </li> </ul> <a name="MED_ORCHID"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_ORCHID</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_ORCHID</pre> <div class="block">Medium Orchid Preset Color</div> </li> </ul> <a name="MED_PURPLE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_PURPLE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_PURPLE</pre> <div class="block">Medium Purple Preset Color</div> </li> </ul> <a name="MED_SEA_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_SEA_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_SEA_GREEN</pre> <div class="block">Medium Sea Green Preset Color</div> </li> </ul> <a name="MED_SLATE_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_SLATE_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_SLATE_BLUE</pre> <div class="block">Medium Slate Blue Preset Color</div> </li> </ul> <a name="MED_SPRING_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_SPRING_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_SPRING_GREEN</pre> <div class="block">Medium Spring Green Preset Color</div> </li> </ul> <a name="MED_TURQUOISE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_TURQUOISE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_TURQUOISE</pre> <div class="block">Medium Turquoise Preset Color</div> </li> </ul> <a name="MED_VIOLET_RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MED_VIOLET_RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MED_VIOLET_RED</pre> <div class="block">Medium Violet Red Preset Color</div> </li> </ul> <a name="MIDNIGHT_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MIDNIGHT_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MIDNIGHT_BLUE</pre> <div class="block">Midnight Blue Preset Color</div> </li> </ul> <a name="MINT_CREAM"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MINT_CREAM</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MINT_CREAM</pre> <div class="block">Mint Cream Preset Color</div> </li> </ul> <a name="MISTY_ROSE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MISTY_ROSE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MISTY_ROSE</pre> <div class="block">Misty Rose Preset Color</div> </li> </ul> <a name="MOCCASIN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>MOCCASIN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> MOCCASIN</pre> <div class="block">Moccasin Preset Color</div> </li> </ul> <a name="NAVAJO_WHITE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NAVAJO_WHITE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> NAVAJO_WHITE</pre> <div class="block">Navajo White Preset Color</div> </li> </ul> <a name="NAVY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NAVY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> NAVY</pre> <div class="block">Navy Preset Color</div> </li> </ul> <a name="OLD_LACE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>OLD_LACE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> OLD_LACE</pre> <div class="block">Old Lace Preset Color</div> </li> </ul> <a name="OLIVE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>OLIVE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> OLIVE</pre> <div class="block">Olive Preset Color</div> </li> </ul> <a name="OLIVE_DRAB"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>OLIVE_DRAB</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> OLIVE_DRAB</pre> <div class="block">Olive Drab Preset Color</div> </li> </ul> <a name="ORANGE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ORANGE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ORANGE</pre> <div class="block">Orange Preset Color</div> </li> </ul> <a name="ORANGE_RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ORANGE_RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ORANGE_RED</pre> <div class="block">Orange Red Preset Color</div> </li> </ul> <a name="ORCHID"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ORCHID</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ORCHID</pre> <div class="block">Orchid Preset Color</div> </li> </ul> <a name="PALE_GOLDENROD"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PALE_GOLDENROD</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PALE_GOLDENROD</pre> <div class="block">Pale Goldenrod Preset Color</div> </li> </ul> <a name="PALE_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PALE_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PALE_GREEN</pre> <div class="block">Pale Green Preset Color</div> </li> </ul> <a name="PALE_TURQUOISE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PALE_TURQUOISE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PALE_TURQUOISE</pre> <div class="block">Pale Turquoise Preset Color</div> </li> </ul> <a name="PALE_VIOLET_RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PALE_VIOLET_RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PALE_VIOLET_RED</pre> <div class="block">Pale Violet Red Preset Color</div> </li> </ul> <a name="PAPAYA_WHIP"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PAPAYA_WHIP</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PAPAYA_WHIP</pre> <div class="block">Papaya Whip Preset Color</div> </li> </ul> <a name="PEACH_PUFF"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PEACH_PUFF</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PEACH_PUFF</pre> <div class="block">Peach Puff Preset Color</div> </li> </ul> <a name="PERU"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PERU</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PERU</pre> <div class="block">Peru Preset Color</div> </li> </ul> <a name="PINK"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PINK</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PINK</pre> <div class="block">Pink Preset Color</div> </li> </ul> <a name="PLUM"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PLUM</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PLUM</pre> <div class="block">Plum Preset Color</div> </li> </ul> <a name="POWDER_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>POWDER_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> POWDER_BLUE</pre> <div class="block">Powder Blue Preset Color</div> </li> </ul> <a name="PURPLE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PURPLE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> PURPLE</pre> <div class="block">Purple Preset Color</div> </li> </ul> <a name="RED"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>RED</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> RED</pre> <div class="block">Red Preset Color</div> </li> </ul> <a name="ROSY_BROWN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ROSY_BROWN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ROSY_BROWN</pre> <div class="block">Rosy Brown Preset Color</div> </li> </ul> <a name="ROYAL_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ROYAL_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> ROYAL_BLUE</pre> <div class="block">Royal Blue Preset Color</div> </li> </ul> <a name="SADDLE_BROWN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SADDLE_BROWN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SADDLE_BROWN</pre> <div class="block">Saddle Brown Preset Color</div> </li> </ul> <a name="SALMON"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SALMON</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SALMON</pre> <div class="block">Salmon Preset Color</div> </li> </ul> <a name="SANDY_BROWN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SANDY_BROWN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SANDY_BROWN</pre> <div class="block">Sandy Brown Preset Color</div> </li> </ul> <a name="SEA_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SEA_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SEA_GREEN</pre> <div class="block">Sea Green Preset Color</div> </li> </ul> <a name="SEA_SHELL"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SEA_SHELL</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SEA_SHELL</pre> <div class="block">Sea Shell Preset Color</div> </li> </ul> <a name="SIENNA"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SIENNA</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SIENNA</pre> <div class="block">Sienna Preset Color</div> </li> </ul> <a name="SILVER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SILVER</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SILVER</pre> <div class="block">Silver Preset Color</div> </li> </ul> <a name="SKY_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SKY_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SKY_BLUE</pre> <div class="block">Sky Blue Preset Color</div> </li> </ul> <a name="SLATE_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SLATE_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SLATE_BLUE</pre> <div class="block">Slate Blue Preset Color</div> </li> </ul> <a name="SLATE_GRAY"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SLATE_GRAY</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SLATE_GRAY</pre> <div class="block">Slate Gray Preset Color</div> </li> </ul> <a name="SNOW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SNOW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SNOW</pre> <div class="block">Snow Preset Color</div> </li> </ul> <a name="SPRING_GREEN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>SPRING_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> SPRING_GREEN</pre> <div class="block">Spring Green Preset Color</div> </li> </ul> <a name="STEEL_BLUE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>STEEL_BLUE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> STEEL_BLUE</pre> <div class="block">Steel Blue Preset Color</div> </li> </ul> <a name="TAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TAN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> TAN</pre> <div class="block">Tan Preset Color</div> </li> </ul> <a name="TEAL"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TEAL</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> TEAL</pre> <div class="block">Teal Preset Color</div> </li> </ul> <a name="THISTLE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>THISTLE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> THISTLE</pre> <div class="block">Thistle Preset Color</div> </li> </ul> <a name="TOMATO"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TOMATO</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> TOMATO</pre> <div class="block">Tomato Preset Color</div> </li> </ul> <a name="TURQUOISE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>TURQUOISE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> TURQUOISE</pre> <div class="block">Turquoise Preset Color</div> </li> </ul> <a name="VIOLET"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>VIOLET</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> VIOLET</pre> <div class="block">Violet Preset Color</div> </li> </ul> <a name="WHEAT"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>WHEAT</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> WHEAT</pre> <div class="block">Wheat Preset Color</div> </li> </ul> <a name="WHITE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>WHITE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> WHITE</pre> <div class="block">White Preset Color</div> </li> </ul> <a name="WHITE_SMOKE"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>WHITE_SMOKE</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> WHITE_SMOKE</pre> <div class="block">White Smoke Preset Color</div> </li> </ul> <a name="YELLOW"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>YELLOW</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> YELLOW</pre> <div class="block">Yellow Preset Color</div> </li> </ul> <a name="YELLOW_GREEN"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>YELLOW_GREEN</h4> <pre>public static final&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a> YELLOW_GREEN</pre> <div class="block">Yellow Green Preset Color</div> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (STPresetColorVal c : STPresetColorVal.values()) &nbsp; System.out.println(c); </pre></div> <dl><dt><span class="strong">Returns:</span></dt><dd>an array containing the constants of this enum type, in the order they are declared</dd></dl> </li> </ul> <a name="valueOf(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="strong">Returns:</span></dt><dd>the enum constant with the specified name</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd></dl> </li> </ul> <a name="value()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>value</h4> <pre>public&nbsp;java.lang.String&nbsp;value()</pre> </li> </ul> <a name="fromValue(java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>fromValue</h4> <pre>public static&nbsp;<a href="../../../../../../org/apache/poi/sl/draw/binding/STPresetColorVal.html" title="enum in org.apache.poi.sl.draw.binding">STPresetColorVal</a>&nbsp;fromValue(java.lang.String&nbsp;v)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/STPresetColorVal.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../org/apache/poi/sl/draw/binding/STPathFillMode.html" title="enum in org.apache.poi.sl.draw.binding"><span class="strong">PREV CLASS</span></a></li> <li><a href="../../../../../../org/apache/poi/sl/draw/binding/STRectAlignment.html" title="enum in org.apache.poi.sl.draw.binding"><span class="strong">NEXT CLASS</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/poi/sl/draw/binding/STPresetColorVal.html" target="_top">FRAMES</a></li> <li><a href="STPresetColorVal.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:&nbsp;</li> <li>NESTED&nbsp;|&nbsp;</li> <li><a href="#enum_constant_summary">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</li> <li><a href="#method_summary">METHOD</a></li> </ul> <ul class="subNavList"> <li>DETAIL:&nbsp;</li> <li><a href="#enum_constant_detail">ENUM CONSTANTS</a>&nbsp;|&nbsp;</li> <li>FIELD&nbsp;|&nbsp;</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> <i>Copyright 2017 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
Doc/qtquick/qtquick-demos-calqlatr-content-display-qml.html
angeloprudentino/QtNets
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Display.qml Example File | Qt Quick 5.7</title> <link rel="stylesheet" type="text/css" href="style/offline-simple.css" /> <script type="text/javascript"> window.onload = function(){document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");}; </script> </head> <body> <div class="header" id="qtdocheader"> <div class="main"> <div class="main-rounded"> <div class="navigationbar"> <table><tr> <td ><a href="../qtdoc/supported-platforms-and-configurations.html#qt-5-7">Qt 5.7</a></td><td ><a href="qtquick-index.html">Qt Quick</a></td><td ><a href="qtquick-demos-calqlatr-example.html">Qt Quick Demo - Calqlatr</a></td><td >Display.qml Example File</td></tr></table><table class="buildversion"><tr> <td id="buildversion" width="100%" align="right">Qt 5.7.0 Reference Documentation</td> </tr></table> </div> </div> <div class="content"> <div class="line"> <div class="content mainContent"> <div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div> <h1 class="title">Display.qml Example File</h1> <span class="subtitle">demos/calqlatr/content/Display.qml</span> <!-- $$$demos/calqlatr/content/Display.qml-description --> <div class="descr"> <a name="details"></a> <pre class="qml"> <span class="comment">/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * 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. ** * Neither the name of The Qt Company Ltd 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 ** &quot;AS IS&quot; 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 ** OWNER 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.&quot; ** ** $QT_END_LICENSE$ ** ****************************************************************************/</span> import QtQuick 2.0 import QtQuick.Window 2.0 <span class="type"><a href="qml-qtquick-item.html">Item</a></span> { <span class="name">id</span>: <span class="name">display</span> property <span class="type">real</span> <span class="name">fontSize</span>: <span class="name">Math</span>.<span class="name">floor</span>(<span class="name">Screen</span>.<span class="name">pixelDensity</span> <span class="operator">*</span> <span class="number">5.0</span>) property <span class="type">bool</span> <span class="name">enteringDigits</span>: <span class="number">false</span> property <span class="type">int</span> <span class="name">maxDigits</span>: (<span class="name">width</span> <span class="operator">/</span> <span class="name">fontSize</span>) <span class="operator">+</span> <span class="number">1</span> property <span class="type">string</span> <span class="name">displayedOperand</span> property <span class="type">string</span> <span class="name">errorString</span>: <span class="name">qsTr</span>(<span class="string">&quot;ERROR&quot;</span>) property <span class="type">bool</span> <span class="name">isError</span>: <span class="name">displayedOperand</span> <span class="operator">===</span> <span class="name">errorString</span> <span class="keyword">function</span> <span class="name">displayOperator</span>(<span class="name">operator</span>) { <span class="name">listView</span>.<span class="name">model</span>.<span class="name">append</span>({ &quot;operator&quot;: <span class="name">operator</span>, &quot;operand&quot;: <span class="string">&quot;&quot;</span> }) <span class="name">enteringDigits</span> <span class="operator">=</span> <span class="number">true</span> <span class="name">listView</span>.<span class="name">positionViewAtEnd</span>() } <span class="keyword">function</span> <span class="name">newLine</span>(<span class="name">operator</span>, operand) { <span class="name">displayedOperand</span> <span class="operator">=</span> <span class="name">displayNumber</span>(<span class="name">operand</span>) <span class="name">listView</span>.<span class="name">model</span>.<span class="name">append</span>({ &quot;operator&quot;: <span class="name">operator</span>, &quot;operand&quot;: <span class="name">displayedOperand</span> }) <span class="name">enteringDigits</span> <span class="operator">=</span> <span class="number">false</span> <span class="name">listView</span>.<span class="name">positionViewAtEnd</span>() } <span class="keyword">function</span> <span class="name">appendDigit</span>(<span class="name">digit</span>) { <span class="keyword">if</span> (!<span class="name">enteringDigits</span>) <span class="name">listView</span>.<span class="name">model</span>.<span class="name">append</span>({ &quot;operator&quot;: <span class="string">&quot;&quot;</span>, &quot;operand&quot;: <span class="string">&quot;&quot;</span> }) var <span class="name">i</span> = <span class="name">listView</span>.<span class="name">model</span>.<span class="name">count</span> <span class="operator">-</span> <span class="number">1</span>; <span class="name">listView</span>.<span class="name">model</span>.<span class="name">get</span>(<span class="name">i</span>).<span class="name">operand</span> <span class="operator">=</span> <span class="name">listView</span>.<span class="name">model</span>.<span class="name">get</span>(<span class="name">i</span>).<span class="name">operand</span> <span class="operator">+</span> <span class="name">digit</span>; <span class="name">enteringDigits</span> <span class="operator">=</span> <span class="number">true</span> <span class="name">listView</span>.<span class="name">positionViewAtEnd</span>() } <span class="keyword">function</span> <span class="name">setDigit</span>(<span class="name">digit</span>) { var <span class="name">i</span> = <span class="name">listView</span>.<span class="name">model</span>.<span class="name">count</span> <span class="operator">-</span> <span class="number">1</span>; <span class="name">listView</span>.<span class="name">model</span>.<span class="name">get</span>(<span class="name">i</span>).<span class="name">operand</span> <span class="operator">=</span> <span class="name">digit</span>; <span class="name">listView</span>.<span class="name">positionViewAtEnd</span>() } <span class="keyword">function</span> <span class="name">clear</span>() { <span class="name">displayedOperand</span> <span class="operator">=</span> <span class="string">&quot;&quot;</span> <span class="keyword">if</span> (<span class="name">enteringDigits</span>) { var <span class="name">i</span> = <span class="name">listView</span>.<span class="name">model</span>.<span class="name">count</span> <span class="operator">-</span> <span class="number">1</span> <span class="keyword">if</span> (<span class="name">i</span> <span class="operator">&gt;=</span> <span class="number">0</span>) <span class="name">listView</span>.<span class="name">model</span>.<span class="name">remove</span>(<span class="name">i</span>) <span class="name">enteringDigits</span> <span class="operator">=</span> <span class="number">false</span> } } <span class="comment">// Returns a string representation of a number that fits in</span> <span class="comment">// display.maxDigits characters, trying to keep as much precision</span> <span class="comment">// as possible. If the number cannot be displayed, returns an</span> <span class="comment">// error string.</span> <span class="keyword">function</span> <span class="name">displayNumber</span>(<span class="name">num</span>) { <span class="keyword">if</span> (typeof(<span class="name">num</span>) <span class="operator">!=</span> <span class="string">&quot;number&quot;</span>) <span class="keyword">return</span> <span class="name">errorString</span>; var <span class="name">intNum</span> = <span class="name">parseInt</span>(<span class="name">num</span>); var <span class="name">intLen</span> = <span class="name">intNum</span>.<span class="name">toString</span>().<span class="name">length</span>; <span class="comment">// Do not count the minus sign as a digit</span> var <span class="name">maxLen</span> = <span class="name">num</span> <span class="operator">&lt;</span> <span class="number">0</span> ? <span class="name">maxDigits</span> <span class="operator">+</span> <span class="number">1</span> : <span class="name">maxDigits</span>; <span class="keyword">if</span> (<span class="name">num</span>.<span class="name">toString</span>().<span class="name">length</span> <span class="operator">&lt;=</span> <span class="name">maxLen</span>) { <span class="keyword">if</span> (<span class="name">isFinite</span>(<span class="name">num</span>)) <span class="keyword">return</span> <span class="name">num</span>.<span class="name">toString</span>(); <span class="keyword">return</span> <span class="name">errorString</span>; } <span class="comment">// Integer part of the number is too long - try</span> <span class="comment">// an exponential notation</span> <span class="keyword">if</span> (<span class="name">intNum</span> <span class="operator">==</span> <span class="name">num</span> <span class="operator">||</span> <span class="name">intLen</span> <span class="operator">&gt;</span> <span class="name">maxLen</span> <span class="operator">-</span> <span class="number">3</span>) { var <span class="name">expVal</span> = <span class="name">num</span>.<span class="name">toExponential</span>(<span class="name">maxDigits</span> <span class="operator">-</span> <span class="number">6</span>).<span class="name">toString</span>(); <span class="keyword">if</span> (<span class="name">expVal</span>.<span class="name">length</span> <span class="operator">&lt;=</span> <span class="name">maxLen</span>) <span class="keyword">return</span> <span class="name">expVal</span>; } <span class="comment">// Try a float presentation with fixed number of digits</span> var <span class="name">floatStr</span> = <span class="name">parseFloat</span>(<span class="name">num</span>).<span class="name">toFixed</span>(<span class="name">maxDigits</span> <span class="operator">-</span> <span class="name">intLen</span> <span class="operator">-</span> <span class="number">1</span>).<span class="name">toString</span>(); <span class="keyword">if</span> (<span class="name">floatStr</span>.<span class="name">length</span> <span class="operator">&lt;=</span> <span class="name">maxLen</span>) <span class="keyword">return</span> <span class="name">floatStr</span>; <span class="keyword">return</span> <span class="name">errorString</span>; } <span class="type"><a href="qml-qtquick-item.html">Item</a></span> { <span class="name">id</span>: <span class="name">theItem</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="operator">+</span> <span class="number">32</span> <span class="name">height</span>: <span class="name">parent</span>.<span class="name">height</span> <span class="type"><a href="qml-qtquick-rectangle.html">Rectangle</a></span> { <span class="name">id</span>: <span class="name">rect</span> <span class="name">x</span>: <span class="number">16</span> <span class="name">color</span>: <span class="string">&quot;white&quot;</span> <span class="name">height</span>: <span class="name">parent</span>.<span class="name">height</span> <span class="name">width</span>: <span class="name">display</span>.<span class="name">width</span> <span class="operator">-</span> <span class="number">16</span> } <span class="type"><a href="qml-qtquick-image.html">Image</a></span> { <span class="name">anchors</span>.right: <span class="name">rect</span>.<span class="name">left</span> <span class="name">source</span>: <span class="string">&quot;images/paper-edge-left.png&quot;</span> <span class="name">height</span>: <span class="name">parent</span>.<span class="name">height</span> <span class="name">fillMode</span>: <span class="name">Image</span>.<span class="name">TileVertically</span> } <span class="type"><a href="qml-qtquick-image.html">Image</a></span> { <span class="name">anchors</span>.left: <span class="name">rect</span>.<span class="name">right</span> <span class="name">source</span>: <span class="string">&quot;images/paper-edge-right.png&quot;</span> <span class="name">height</span>: <span class="name">parent</span>.<span class="name">height</span> <span class="name">fillMode</span>: <span class="name">Image</span>.<span class="name">TileVertically</span> } <span class="type"><a href="qml-qtquick-image.html">Image</a></span> { <span class="name">id</span>: <span class="name">grip</span> <span class="name">source</span>: <span class="string">&quot;images/paper-grip.png&quot;</span> <span class="name">anchors</span>.horizontalCenter: <span class="name">parent</span>.<span class="name">horizontalCenter</span> <span class="name">anchors</span>.bottom: <span class="name">parent</span>.<span class="name">bottom</span> <span class="name">anchors</span>.bottomMargin: <span class="number">20</span> } <span class="type"><a href="qml-qtquick-listview.html">ListView</a></span> { <span class="name">id</span>: <span class="name">listView</span> <span class="name">x</span>: <span class="number">16</span>; <span class="name">y</span>: <span class="number">30</span> <span class="name">width</span>: <span class="name">display</span>.<span class="name">width</span> <span class="name">height</span>: <span class="name">display</span>.<span class="name">height</span> <span class="operator">-</span> <span class="number">50</span> <span class="operator">-</span> <span class="name">y</span> <span class="name">delegate</span>: <span class="name">Item</span> { <span class="name">height</span>: <span class="name">display</span>.<span class="name">fontSize</span> <span class="operator">*</span> <span class="number">1.1</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="type"><a href="qml-qtquick-text.html">Text</a></span> { <span class="name">id</span>: <span class="name">operator</span> <span class="name">x</span>: <span class="number">6</span> <span class="name">font</span>.pixelSize: <span class="name">display</span>.<span class="name">fontSize</span> <span class="name">color</span>: <span class="string">&quot;#6da43d&quot;</span> <span class="name">text</span>: <span class="name">model</span>.<span class="name">operator</span> } <span class="type"><a href="qml-qtquick-text.html">Text</a></span> { <span class="name">id</span>: <span class="name">operand</span> <span class="name">font</span>.pixelSize: <span class="name">display</span>.<span class="name">fontSize</span> <span class="name">anchors</span>.right: <span class="name">parent</span>.<span class="name">right</span> <span class="name">anchors</span>.rightMargin: <span class="number">22</span> <span class="name">text</span>: <span class="name">model</span>.<span class="name">operand</span> } } <span class="name">model</span>: <span class="name">ListModel</span> { } } } } </pre> </div> <!-- @@@demos/calqlatr/content/Display.qml --> </div> </div> </div> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2016 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. </p> </div> </body> </html>
_layouts/card.html
HugoDesb/hugodesb.github.io
<!DOCTYPE html> <html class="no-js" lang="en"> {% include head.html %} <body> <section id="visit-card"> <div id="card"> <div class="headingContainer"> <div class="arrow-right"></div> <h1>{{site.me.fullname}}</h1> </div> <p>{{content}}</p> <a href="/resume"> <button>Mon CV</button> </a> </div> <nav id="social-links"> <ul> {% for social in site.me.socials%} <li> <a href="{{social.link}}"> <i class="fab fa-{{social.icon}} fa-2x"></i> </a> </li> {% endfor %} </ul> </nav> </section> </body> </html>
nyaa/templates/upload.html
nyaadevs/nyaa
{% extends "layout.html" %} {% block title %}Upload Torrent :: {{ config.SITE_NAME }}{% endblock %} {% block metatags %} <meta property="og:description" content="Upload a torrent to {{ config.SITE_NAME }}"> {% endblock %} {% block body %} {% from "_formhelpers.html" import render_field %} {% from "_formhelpers.html" import render_upload %} {% from "_formhelpers.html" import render_markdown_editor %} <h1>Upload Torrent</h1> {% if not g.user %} <p>You are not logged in, and are uploading anonymously.</p> {% endif %} <div id="upload-drop-zone"><span>Drop here!</span></div> <form method="POST" enctype="multipart/form-data"> {{ upload_form.csrf_token }} {% if config.ENFORCE_MAIN_ANNOUNCE_URL %}<p><strong>Important:</strong> Please include <kbd>{{ config.MAIN_ANNOUNCE_URL }}</kbd> in your trackers.</p>{% endif %} <p><strong>Important:</strong> Make sure you have read <strong><a href="{{ url_for('site.rules') }}">the rules</a></strong> before uploading!</p> <br> {% if show_ratelimit %} {% set ratelimit_class = 'danger' if upload_form.ratelimit.errors else 'warning' %} <div class="row"> <div class="col-md-12"> <div class="alert alert-{{ ratelimit_class }}" role="alert"> <div>You've reached your maximum upload rate ({{ config.MAX_UPLOAD_BURST }} per {{ config.UPLOAD_BURST_DURATION // 60}} minutes, you have <b>{{ ratelimit_count }}</b>) and will now have to wait {{ config.UPLOAD_TIMEOUT // 60 }} minutes between uploads.</div> {% if next_upload_time %} <div>You may upload again at <b data-timestamp="{{ next_upload_time|utc_timestamp }}">{{ next_upload_time.strftime('%Y-%m-%d %H:%M UTC') }}</b>.</div> {% else %} <div>You may upload again now.</div> {% endif %} </div> </div> </div> {% endif %} {% if upload_form.rangebanned.errors %} <div class="row"> <div class="col-md-12"> <div class="alert alert-danger" role="alert"> {% for error in upload_form.rangebanned.errors %} <p>{{ error }}</p> {% endfor %} </div> </div> </div> {% endif %} <div class="row"> <div class="col-md-12"> {{ render_upload(upload_form.torrent_file, accept=".torrent") }} </div> </div> <div class="row"> <div class="col-md-6"> {{ render_field(upload_form.display_name, class_='form-control', placeholder='Display name') }} </div> <div class="col-md-6"> {{ render_field(upload_form.category, class_='form-control')}} </div> </div> <div class="row form-group"> <div class="col-md-6"> {{ render_field(upload_form.information, class_='form-control', placeholder='Your website or IRC channel') }} </div> <div class="col-md-6"> <label class="control-label">Torrent flags</label><br> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-default {% if not g.user %}active disabled{% endif %}" title="Upload torrent anonymously (don't display your username)"> {{ upload_form.is_anonymous(disabled=(False if g.user else ""), checked=(False if g.user else "")) }} {% if not g.user %}<span class="glyphicon glyphicon-ban-circle"></span>{% endif %} {% if g.user %}<span class="glyphicon glyphicon-check"></span>{% endif %} {% if g.user %}<span class="glyphicon glyphicon-unchecked"></span>{% endif %} Anonymous </label> <label class="btn btn-grey" title="Hide torrent from listing"> {{ upload_form.is_hidden }} <span class="glyphicon glyphicon-check"></span> <span class="glyphicon glyphicon-unchecked"></span> Hidden </label> </div> <div class="hidden-xl hidden-lg"><br></div> <div class="btn-group" data-toggle="buttons"> <label class="btn btn-danger" title="This torrent is derived from another release"> {{ upload_form.is_remake }} <span class="glyphicon glyphicon-check"></span> <span class="glyphicon glyphicon-unchecked"></span> Remake </label> <label class="btn btn-warning" title="This torrent is a complete batch (eg. season)"> {{ upload_form.is_complete }} <span class="glyphicon glyphicon-check"></span> <span class="glyphicon glyphicon-unchecked"></span> Complete </label> {% if g.user.is_trusted %} <label class="btn btn-success active" title="Mark torrent trusted"> {{ upload_form.is_trusted(checked="") }} <span class="glyphicon glyphicon-check"></span> <span class="glyphicon glyphicon-unchecked"></span> Trusted </label> {% endif %} </div> </div> </div> <div class="row"> <div class="col-md-12"> {{ render_markdown_editor(upload_form.description, field_name='description') }} </div> </div> {% if config.USE_RECAPTCHA and (not g.user or g.user.age < config['ACCOUNT_RECAPTCHA_AGE']) %} <div class="row"> <div class="col-md-4"> {% for error in upload_form.recaptcha.errors %} {{ error }} {% endfor %} {{ upload_form.recaptcha }} </div> </div> {% endif %} <br> <div class="row"> <div class="form-group col-md-6"> <input type="submit" value="Upload" class="btn btn-primary"> </div> </div> </form> {% endblock %}
images/domovie/workDO.css
CrazyForCode/IMAGE-PHPWeb
#CFCcontent .baseFont{ font-family: "helvetica neue", helvetica, arial, sans-serif; color:#FFFFFF; } #CFCcontent h3{ font-size:22px; line-height: 20px; margin: 0; letter-spacing: 3px; } #CFCcontent p{ font-size:14px; line-height: 15px; margin: 4px 0px 4px 0px; } #CFCcontent .profile{ position: absolute; top:70%; left:10%; width: 80%; height: 30%; word-break: break-all; overflow: hidden; z-index: 110; } #CFCcontent .profileBg{ position: absolute; top:100%; left: 0%; width: 100%; height: 36%; background-color: #000000; z-index:100; } #CFCcontent .divfirst{ position: relative; cursor:pointer; } #CFCcontent .entireDiv .imLOGO { position:relative; height: 100%; width: 100%; overflow: hidden; } #CFCcontent .entireDiv{ height: 100%; float:left; width: 500px; position: relative; } #CFCcontent .entireDiv .divfirst{ height: 100%; width: 100%; overflow: hidden; } #CFCcontent .entireDiv img{ height: 100%; width: 100%; position: relative; } #CFCcontent .halfDiv{ height:100%; float:left; width: 450px; position: relative; } #CFCcontent .halfDiv .divfirst{ height: 50%; width: 100%; overflow: hidden; } #CFCcontent .halfDiv img{ height:100%; width: 100%; position: relative; } #CFCcontent .threeDiv{ height:100%; float:left; width: 400px; position: relative; } #CFCcontent .threeDiv .divfirst{ height: 33.3%; width: 100%; overflow: hidden; } #CFCcontent .threeDiv img{ height: 100%; width: 100%; position: relative; } html,body{ border: 0; padding: 0; margin:0; height:100%; } body{ overflow-x: scroll; } #CEN{ height: 100%; background-color: #111122; } #header{ width:100%; height: 10%; background-color: #111122; position:fixed; color:#ffffff; } #CFCcontent{ height: 90%; background-color: #111122; width: 1400000px; position: relative; top:10%; }
matchfiles/footywire/footywire5197.html
criffy/aflengine
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>AFL Match Statistics : Essendon defeats West Coast at Etihad Stadium Round 7 Sunday, 8th May 2011</TITLE> <meta NAME="description" CONTENT="Essendon defeats West Coast at Etihad Stadium Round 7 Sunday, 8th May 2011 AFL match statistics"> <meta NAME="keywords" CONTENT="AFL Match Statistics, AFL Game Statistics, AFL Match Stats"> <link rel="canonical" href="https://www.footywire.com/afl/footy/ft_match_statistics?mid=5197"/> <style> .tabbg { background-color: #000077; vertical-align: middle; } .blkbg { background-color: #000000; vertical-align: middle; } .tabbdr { background-color: #d8dfea; vertical-align: middle; } .wspace { background-color: #ffffff; vertical-align: middle; } .greybg { background-color: #f4f5f1; } .greybdr { background-color: #e3e4e0; } .blackbdr { background-color: #000000; } .lbgrey { background-color: #d4d5d1; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; font-weight: bold; } .caprow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; font-weight: bold; } .ylwbg { background-color: #eeffee; text-decoration: none; color: #000000; vertical-align: middle; } .ylwbgmid { background-color: #eeffee; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; } .ylwbgtop { background-color: #eeffee; text-decoration: none; color: #000000; vertical-align: top; } .ylwbgbottom { background-color: #eeffee; text-decoration: none; color: #000000; vertical-align: bottom; text-align: center; } .ylwbg2 { background-color: #ddeedd; } .ylwbdr { background-color: #ccddcc; } .mtabbg { background-color: #f2f4f7; vertical-align: top; text-align: center; } .error { background-color: #ffffff; text-decoration: none; color: #ff0000; vertical-align: middle; text-align: left; font-weight: bold; } .cerror { background-color: #ffffff; text-decoration: none; color: #ff0000; vertical-align: middle; text-align: center; font-weight: bold; } .greytxt { color: #777777; } .bluetxt { color: #003399; } .normtxt { color: #000000; } .norm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; } .drow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; } .lnorm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; } .rnorm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: right; } .rdrow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: right; } .ldrow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; } .bnorm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; font-weight: bold; } .rbnorm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: right; font-weight: bold; } .lbnorm { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; font-weight: bold; } .bdrow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; font-weight: bold; } .lbdrow { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; font-weight: bold; } .lylw { background-color: #eeffee; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; } .normtop { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: top; text-align: center; } .lnormtop { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: top; text-align: left; } .drowtop { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: top; text-align: center; } .ldrowtop { background-color: #f2f4f7; text-decoration: none; color: #000000; vertical-align: top; text-align: left; } a.tblink:link { color: #ffffff; font-weight: bold; vertical-align: middle; } .dvr { color: #999999; font-weight: normal; vertical-align: middle; } .hltitle { text-decoration: none; color: #000000; font-size: 16px; font-weight: bold; } .whltitle { background-color: #ffffff; text-decoration: none; color: #000000; font-size: 16px; font-weight: bold; } .idxhltitle { text-decoration: none; color: #990099; font-size: 16px; font-weight: bold; } .tbtitle { text-decoration:none; color:#3B5998; font-weight:bold; border-top:1px solid #e4ebf6; border-bottom:1px solid #D8DFEA; background:#D8DFEA url(/afl/img/icon/tbback.png); bottom left repeat-x; } .innertbtitle { background-color:#D8DFEA; text-decoration:none; color:#3B5998; font-weight:normal; background:#D8DFEA url(/afl/img/icon/tbback.png); bottom left repeat-x; } .tabopt { background-color: #5555cc; vertical-align: middle; text-align: center; } .tabsel { background-color: #ffffff; text-decoration: underline; color: #000000; font-weight: bold; vertical-align: middle; text-align: center; } a.tablink { font-weight:bold; vertical-align:middle; } a.tablink:link { color: #ffffff; } a.tablink:hover { color: #eeeeee; } .lnitxt { } .lseltxt { } .lselbldtxt { font-weight: bold; } .formcls { background-color:#f2f4f7; vertical-align:middle; text-align:left } .formclsright { background-color:#f2f4f7; vertical-align:middle; text-align:right } li { background-color: #ffffff; color: #000000; } p { color: #000000; } th { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; font-weight: bold; } a.wire { font-weight:bold } .menubg { background-color: #000077; text-decoration: none; color: #000000; vertical-align: middle; text-align: center; } .menubdr { background-color: #f2f4f7; vertical-align: middle; } table#wiretab { border-spacing:0px; border-collapse:collapse; background-color:#F2F4F7; width:450px; height:250px; } table#wiretab td.section { border-bottom:1px solid #D8DFEA; } table#wirecell { background-color:#F2F4F7; border:0px; } table#wirecell td#wirecelltitle { vertical-align:top; } table#wirecell td#wirecellblurb { vertical-align:top; } .smnt { background-color: #ffffff; text-decoration: none; color: #000000; vertical-align: middle; text-align: left; } a.peep { font-weight:bold; font-size: 12px; line-height: 14px; } form { padding:0px; margin:0px; } table.thickouter { border:1px solid #D8DFEA; } table.thickouter td.padded { padding:2px; } div.notice { border:1px solid #D8DFEA; padding:8px; background:#D8DFEA url(/afl/img/icon/customback.png); text-align:center; vertical-align:middle; margin-bottom:10px; font-size: 12px; } div.notice div.clickable { font-weight:bold; cursor:pointer; display:inline; color:#3B5998; } div.datadiv td.data, div.datadiv td.bdata { padding:3px; vertical-align:top; } div.datadiv td.bdata { font-weight:bold; } a:focus { outline:none; } h1.centertitle { padding-top:10px; font-size:20px; font-weight:bold; text-align:center; } #matchscoretable { background-color : #eeffee; border:1px solid #ccddcc; } #matchscoretable td, #matchscoretable th { background-color : #eeffee; text-decoration: none; color: #000000; vertical-align: middle; } #matchscoretable th, #matchscoretable th.leftbold { border-bottom:1px solid #ccddcc; font-weight:bold; } #matchscoretable td.leftbold { font-weight:bold; } #matchscoretable td.leftbold, #matchscoretable th.leftbold { text-align:left; padding-left:10px; } body { margin-top:0px; margin-bottom:5px; margin-left:5px; margin-right:5px; background-color:#ffffff; overflow-x: auto; overflow-y: auto; } body, p, td, th, textarea, input, select, h1, h2, h3, h4, h5, h6 { font-family: "lucida grande",tahoma,verdana,arial,sans-serif; font-size:11px; text-decoration: none; } table.plain { border-spacing:0px; border-collapse:collapse; padding:0px; } table.leftmenu { background-color:#F7F7F7; } table.leftmenu td { padding:2px 2px 2px 5px; } table.leftmenu td#skyscraper { padding:2px 0px 2px 0px; text-align:left; margin:auto; vertical-align:top; background-color:#ffffff; } table.leftmenu td#topborder { padding:0px 0px 0px 0px; border-top:5px solid #b7b7b7; font-size:5px; } table.leftmenu td#bottomborder { padding:0px 0px 0px 0px; border-bottom:1px solid #b7b7b7; font-size:5px; } table.leftmenu td#bottomborderpad { padding:0px 0px 0px 0px; border-bottom:0px solid #b7b7b7; font-size:3px; } td#headercell { text-align:left; vertical-align:bottom; background:#3B5998 url(/afl/img/logo/header-logo-bg-2011.png); } a.leftmenu { color:#3B5998; display:block; width:100%; text-decoration:none; } a.leftmenu:hover { text-decoration:none; } a { color:#3B5998; } a:link { text-decoration:none; } a:visited { text-decoration:none; } a:active { text-decoration:none; } a:hover { text-decoration:underline; } table#footer { border-spacing:0px; border-collapse:collapse; padding:0px; color:#868686; width:760px; } table#footer td#footercopy { text-align:left; } table#footer td#footerlinks { text-align:right; } table#footer a { padding:0px 2px 0px 2px; } .textinput { border:1px solid #BDC7D8; padding:2px 2px 2px 2px; } .button { color:#ffffff; height:18px; padding:0px 4px 4px 4px; border:1px solid #3B5998; background:#5b79b8 url(/afl/img/icon/btback.png); bottom left repeat-x; vertical-align:middle; cursor:pointer; } .button:focus { outline:none; } .button::-moz-focus-inner { border: 0; } a.button:link, a.button:visited, a.button:hover { text-decoration:none; } td.blocklink { padding:3px 3px 3px 3px; } a.blocklink { padding:2px 2px 2px 2px; } a.blocklink:hover { background-color:#3B5998; color:#ffffff; text-decoration:none; } table#teammenu, table#playermenu, table#playerrankmenu, table#teamrankmenu, table#draftmenu, table#risingstarmenu, table#matchmenu, table#laddermenu, table#brownlowmenu, table#attendancemenu, table#coachmenu, table#supercoachmenu, table#dreamteammenu, table#highlightsmenu, table#selectionsmenu, table#pastplayermenu, table#tweetmenu, table#contractsmenu { border-spacing:0px; border-collapse:collapse; background-color:#F7F7F7; z-index:1; position:absolute; left:0px; top:0px; visibility:hidden; border:1px solid #b7b7b7; opacity:.95; filter:alpha(opacity=95); width:220px; } a.submenuitem { padding:3px; color:#3B5998; text-decoration:none; border:0px solid #3B5998; } a.submenuitem:link { text-decoration:none; } a.submenuitem:hover { text-decoration:underline; } div.submenux, div.submenutitle { font-size:9px; color:#676767; font-weight:bold; } div.submenux { color:#676767; cursor:pointer; } div.submenutitle { color:#353535; padding:4px 2px 2px 2px; } td#teamArrow, td#playerArrow, td#playerrankArrow, td#teamrankArrow, td#draftArrow, td#risingstarArrow, td#matchArrow, td#ladderArrow, td#brownlowArrow, td#attendanceArrow, td#coachArrow, td#supercoachArrow, td#dreamteamArrow, td#highlightsArrow, td#selectionsArrow, td#pastplayerArrow, td#tweetArrow, td#contractsArrow { color:#676767; font-weight:bold; display:block; text-decoration:none; border-left:1px solid #F7F7F7; cursor:pointer; text-align:center; width:10px; } table#header { border-spacing:0px; border-collapse:collapse; margin:auto; width:100%; } table#header td { border:0px solid #3B5998; } table#header td#logo { vertical-align:middle; text-align:center; } table#header td#mainlinks { vertical-align:bottom; text-align:left; padding-bottom:10px; } table#header td#memberStatus { vertical-align:bottom; text-align:right; padding-bottom:10px; } a.emptylink, a.emptylink:link, a.emptylink:visited, a.emptylink:active, a.emptylink:hover { border:0px; margin:0px; text-decoration:none; } table#header a.headerlink { font-size:12px; font-weight:bold; color:#ffffff; padding:4px; } table#header a.headerlink:link { background-color:#3B5998; text-decoration:none; } table#header a.headerlink:visited { background-color:#3B5998; text-decoration:none; } table#header a.headerlink:active { background-color:#3B5998; text-decoration:none; } table#header a.headerlink:hover { background-color:#6D84B4; text-decoration:none; } table#header a.userlink { font-size:11px; font-weight:normal; color:#D8DFEA; padding:5px; } table#header a.userlink:link { color:#D8DFEA; text-decoration:none; } table#header a.userlink:visited { color:#D8DFEA; text-decoration:none; } table#header a.userlink:active { color:#D8DFEA; text-decoration:none; } table#header a.userlink:hover { color:#ffffff; text-decoration:underline; } table#header div#welcome { display:inline; font-size:11px; font-weight:bold; color:#D8DFEA; padding:5px; } td.hdbar { text-decoration:none; border-top:1px solid #92201e; border-bottom:1px solid #760402; background:#D8DFEA url(/afl/img/icon/hdback.png); bottom left repeat-x; padding:0px 5px 0px 5px; } td.hdbar div { color:#ffffff; display:inline; padding:0px 5px 0px 5px; } td.hdbar div a { font-size:11px; font-weight:normal; color:#ffffff; font-weight:bold; } td.hdbar div a:link { text-decoration:none; } td.hdbar div a:hover { text-decoration:underline; } div#membersbgdiv { background:#888888; opacity:.50; filter:alpha(opacity=50); z-index:1; position:absolute; left:0px; top:0px; width:100%; height:100%; text-align:center; vertical-align:middle; display:none; } div#memberswhitediv { width:610px; height:380px; border:3px solid #222222; background:#ffffff; opacity:1; filter:alpha(opacity=100); z-index:2; position:absolute; left:0; top:0; border-radius:20px; -moz-border-radius:20px; /* Old Firefox */ padding:15px; display:none; } #membersx { color:#222222; font-weight:bold; font-size:16px; cursor:pointer; } </style> <script type="text/javascript"> function flipSubMenu(cellid, tableid) { var table = document.getElementById(tableid); if (table.style.visibility == 'visible') { hideSubMenu(tableid); } else { showSubMenu(cellid, tableid); } } function showSubMenu(cellid, tableid) { hideAllSubMenus(); var cell = document.getElementById(cellid); var coors = findPos(cell); var table = document.getElementById(tableid); table.style.visibility = 'visible'; table.style.top = (coors[1]) + 'px'; table.style.left = (coors[0] + 175) + 'px'; } function hideSubMenu(tableid) { var table = document.getElementById(tableid); if (table != null) { table.style.visibility = 'hidden'; } } function findPos(obj) { var curleft = curtop = 0; if (obj.offsetParent) { curleft = obj.offsetLeft curtop = obj.offsetTop while (obj = obj.offsetParent) { curleft += obj.offsetLeft curtop += obj.offsetTop } } return [curleft,curtop]; } function highlightCell(tag) { var cell = document.getElementById(tag + 'linkcell'); cell.style.backgroundColor = "#E7E7E7"; highlightArrow(tag + 'Arrow'); } function dehighlightCell(tag) { var cell = document.getElementById(tag + 'linkcell'); cell.style.backgroundColor = "transparent"; dehighlightArrow(tag + 'Arrow'); } function highlightArrow(arrowId) { var arrow = document.getElementById(arrowId); arrow.style.backgroundColor = "#E7E7E7"; } function dehighlightArrow(arrowId) { var arrow = document.getElementById(arrowId); arrow.style.backgroundColor = "transparent"; } function hideAllSubMenus() { hideSubMenu('teammenu'); hideSubMenu('playermenu'); hideSubMenu('teamrankmenu'); hideSubMenu('playerrankmenu'); hideSubMenu('draftmenu'); hideSubMenu('risingstarmenu'); hideSubMenu('matchmenu'); hideSubMenu('brownlowmenu'); hideSubMenu('laddermenu'); hideSubMenu('attendancemenu'); hideSubMenu('supercoachmenu'); hideSubMenu('dreamteammenu'); hideSubMenu('coachmenu'); hideSubMenu('highlightsmenu'); hideSubMenu('selectionsmenu'); hideSubMenu('pastplayermenu'); hideSubMenu('contractsmenu'); hideSubMenu('tweetmenu'); } function GetMemberStatusXmlHttpObject() { var xmlMemberStatusHttp=null; try { // Firefox, Opera 8.0+, Safari xmlMemberStatusHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlMemberStatusHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlMemberStatusHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlMemberStatusHttp; } function rememberMember() { xmlMemberStatusHttp=GetMemberStatusXmlHttpObject(); url="/club/sports/member-remember.html?sid=" + Math.random(); xmlMemberStatusHttp.onreadystatechange=showAlert; xmlMemberStatusHttp.open("GET",url,true); xmlMemberStatusHttp.send(null); } function quickLogout() { xmlMemberStatusHttp=GetMemberStatusXmlHttpObject(); url="/afl/club/quick-logout.html?sid=" + Math.random(); xmlMemberStatusHttp.onreadystatechange=showAlert; xmlMemberStatusHttp.open("GET",url,true); xmlMemberStatusHttp.send(null); } function showMemberStatus() { xmlMemberStatusHttp = GetMemberStatusXmlHttpObject(); url = "/afl/club/member-status.html?sid=" + Math.random(); fetchShowMemberStatus(xmlMemberStatusHttp, url); } function showMemberStatusWithUrl(url) { xmlMemberStatusHttp = GetMemberStatusXmlHttpObject(); url = "/afl/club/member-status.html?url=" + url + "&sid=" + Math.random(); fetchShowMemberStatus(xmlMemberStatusHttp, url); } function showMemberStatusSkipAds() { xmlMemberStatusHttp = GetMemberStatusXmlHttpObject(); url = "/afl/club/member-status.html?skipAds=Y&sid=" + Math.random(); fetchShowMemberStatus(xmlMemberStatusHttp, url); } function showMemberStatusWithUrlSkipAds(url) { xmlMemberStatusHttp = GetMemberStatusXmlHttpObject(); url = "/afl/club/member-status.html?skipAds=Y&url=" + url + "&sid=" + Math.random(); fetchShowMemberStatus(xmlMemberStatusHttp, url); } function fetchShowMemberStatus(xmlMemberStatusHttp, url) { xmlMemberStatusHttp.onreadystatechange = memberStatusChanged; xmlMemberStatusHttp.open("GET", url, true); xmlMemberStatusHttp.send(null); } function showAlert() { if (xmlMemberStatusHttp.readyState==4) { alertMessage = xmlMemberStatusHttp.responseText; showMemberStatus(); alert(alertMessage); } } function memberStatusChanged() { if (xmlMemberStatusHttp.readyState==4) { response = xmlMemberStatusHttp.responseText; if (response.indexOf("<!-- MEMBER STATUS -->") < 0) { response = " "; } document.getElementById("memberStatus").innerHTML = response; } } function pushSignUpEvent(signUpSource) { _gaq.push(['_trackEvent', 'Member Activity', 'Sign Up', signUpSource]); } function pushContent(category, page) { _gaq.push(['_trackEvent', 'Content', category, page]); } function GetXmlHttpObject() { var xmlWireHttp=null; try { // Firefox, Opera 8.0+, Safari xmlWireHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlWireHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlWireHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlWireHttp; } function showWire() { xmlWireHttp=GetXmlHttpObject() url="/afl/club/forum-threads-wire.html?sid=" + Math.random(); fetchWire(xmlWireHttp, url); } function showWireSkipAds() { xmlWireHttp=GetXmlHttpObject() url="/afl/club/forum-threads-wire.html?skipAds=Y&sid=" + Math.random(); fetchWire(xmlWireHttp, url); } function fetchWire(xmlWireHttp, url) { xmlWireHttp.onreadystatechange = wireChanged; xmlWireHttp.open("GET", url, true); xmlWireHttp.send(null); } function wireChanged() { if (xmlWireHttp.readyState==4) { response = xmlWireHttp.responseText; if (response.indexOf("<!-- WIRE -->") < 0) { response = " "; } document.getElementById("threadsWire").innerHTML=response; } } function positionMemberDivs() { var bodyOffsetHeight = document.body.offsetHeight; document.getElementById('membersbgdiv').style.width = '100%'; document.getElementById('membersbgdiv').style.height = '100%'; var leftOffset = (document.getElementById('membersbgdiv').offsetWidth - document.getElementById('memberswhitediv').offsetWidth) / 2; var topOffset = ((document.getElementById('membersbgdiv').offsetHeight - document.getElementById('memberswhitediv').offsetHeight) / 2); document.getElementById('memberswhitediv').style.left = leftOffset; document.getElementById('memberswhitediv').style.top = topOffset; document.getElementById('membersbgdiv').style.height = bodyOffsetHeight; } function closeMemberDivs() { document.getElementById('membersbgdiv').style.display = 'none'; document.getElementById('memberswhitediv').style.display = 'none'; } function displayMemberDivs() { document.getElementById('membersbgdiv').style.display = 'block'; document.getElementById('memberswhitediv').style.display = 'block'; positionMemberDivs(); } function openRegistrationLoginDialog() { document.getElementById('memberscontent').innerHTML = "<iframe src='/afl/footy/custom_login' width=600 height=350 hspace=0 vspace=0 frameborder=0 marginheight=0 marginwidth=0 scrolling=no></iframe>"; document.getElementById('memberswhitediv').style.width = '610px'; document.getElementById('memberswhitediv').style.height = '380px'; displayMemberDivs(); } function openRegistrationLoginDialogWithNextPage(nextPage) { document.getElementById('memberscontent').innerHTML = "<div><iframe src='/afl/footy/custom_login?p=" + nextPage + "' width=600 height=350 hspace=0 vspace=0 frameborder=0 marginheight=0 marginwidth=0 scrolling=no></iframe></div>" document.getElementById('memberswhitediv').style.width = '610px'; document.getElementById('memberswhitediv').style.height = '380px'; displayMemberDivs(); } function openChangePasswordDialog() { document.getElementById('memberscontent').innerHTML = "<div><iframe src='/afl/footy/custom_login?action=changePasswordForm' width=250 height=190 hspace=0 vspace=0 frameborder=0 marginheight=0 marginwidth=0 scrolling=no></iframe></div>" document.getElementById('memberswhitediv').style.width = '250px'; document.getElementById('memberswhitediv').style.height = '240px'; displayMemberDivs(); } function openManageSettingsDialog() { document.getElementById('memberscontent').innerHTML = "<div><iframe src='/afl/footy/custom_login?action=manageSettingsForm' width=380 height=210 hspace=0 vspace=0 frameborder=0 marginheight=0 marginwidth=0 scrolling=no></iframe></div>" document.getElementById('memberswhitediv').style.width = '380px'; document.getElementById('memberswhitediv').style.height = '260px'; displayMemberDivs(); } var xmlLoginHttp; function GetLoginXmlHttpObject() { var xmlLoginHttp=null; try { // Firefox, Opera 8.0+, Safari xmlLoginHttp=new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlLoginHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlLoginHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlLoginHttp; } function postLogout() { var params = "action=logout"; xmlLoginHttp=GetLoginXmlHttpObject(); xmlLoginHttp.onreadystatechange = validateLogoutResponse; xmlLoginHttp.open("POST", '/afl/footy/custom_login', true); xmlLoginHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); xmlLoginHttp.setRequestHeader("Content-length", params.length); xmlLoginHttp.setRequestHeader("Connection", "close"); xmlLoginHttp.send(params); } function getPlugContent(type) { xmlLoginHttp=GetLoginXmlHttpObject() xmlLoginHttp.onreadystatechange = plugCustomFantasy; xmlLoginHttp.open("GET", '/afl/footy/custom_login?action=plug&type=' + type, true); xmlLoginHttp.send(null); } function validateResponse() { if(xmlLoginHttp.readyState == 4 && xmlLoginHttp.status == 200) { var result = xmlLoginHttp.responseText; if (result == 'PASS') { self.parent.location.reload(true); } else if (result.indexOf('ERROR:') == 0) { result = result.substring(6); alert(result + ". Please try again."); } else { alert("An error occurred during registration."); } } } function plugCustomFantasy() { if (xmlLoginHttp.readyState == 4 && xmlLoginHttp.status == 200) { var response = xmlLoginHttp.responseText; if (response.indexOf("<!-- PLUG -->") < 0) { response = ""; } document.getElementById("customPlugDiv").innerHTML=response; } } function validateLogoutResponse() { if(xmlLoginHttp.readyState == 4 && xmlLoginHttp.status == 200) { var result = xmlLoginHttp.responseText; if (result == 'PASS') { selfReload(); } else if (result.indexOf('ERROR:') == 0) { result = result.substring(6); alert(result + ". Please try again."); } else { alert("Oops! An error occurred!"); } } } function selfReload() { if (xmlLoginHttp.readyState == 4 && xmlLoginHttp.status == 200) { self.parent.location.reload(true); } } </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-3312858-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </HEAD> <BODY onload="pushContent('Match Statistics', 'Match Statistics');showMemberStatusWithUrl('https%3A%2F%2Fwww.footywire.com%2Fafl%2Ffooty%2Fft_match_statistics');showWire();hideAllSubMenus();" onresize="positionMemberDivs();"> <DIV align="CENTER"> <table cellpadding="0" cellspacing="0" border="0" id="frametable2008" width="948"> <tr><td colspan="4" height="102" id="headercell" width="948"> <table id="header"> <tr> <td id="logo" valign="middle" height="102" width="200"> <a class="emptylink" href="//www.footywire.com/"><div style="width:200px;height:54px;cursor:pointer;">&nbsp;</div></a> </td> <td id="mainlinks" width="200"> </td> <td style="padding-top:3px;padding-right:4px;"> <div style="margin-left:-3px;"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Footywire 728x90 Prime --> <ins class="adsbygoogle" style="display:inline-block;width:728px;height:90px" data-ad-client="ca-pub-1151582373407200" data-ad-slot="7204222137"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </td> </tr> </table> </td></tr> <tr><td colspan="4" height="21" class="hdbar" align="right" valign="middle" id="memberStatus"></td></tr> <tr> <td rowspan="4" width="175" valign="top"> <table width="175" cellpadding="0" cellspacing="0" border="0" class="leftmenu"> <tr><td colspan="2" id="topborder">&nbsp;</td></tr> <tr><td width="175" colspan="2" onMouseOver="this.style.backgroundColor='#e7e7e7';" onMouseOut="this.style.backgroundColor='transparent';"><a class="leftmenu" href="//www.footywire.com/">AFL Statistics Home</a></td></tr> <tr> <td id="matchlinkcell" width="165"><a onMouseOver="highlightCell('match')" onMouseOut="dehighlightCell('match')" class="leftmenu" href="/afl/footy/ft_match_list">AFL Fixture</a></td> <td id="matchArrow" onMouseOver="highlightArrow('matchArrow')" onMouseOut="dehighlightArrow('matchArrow')" onClick="flipSubMenu('matchlinkcell','matchmenu')">&#187;</td> </tr> <tr> <td id="playerlinkcell" width="165"><a onMouseOver="highlightCell('player')" onMouseOut="dehighlightCell('player')" class="leftmenu" href="/afl/footy/ft_players">Players</a></td> <td id="playerArrow" onMouseOver="highlightArrow('playerArrow')" onMouseOut="dehighlightArrow('playerArrow')" onClick="flipSubMenu('playerlinkcell','playermenu')">&#187;</td> </tr> <tr> <td id="teamlinkcell" width="165"><a onMouseOver="highlightCell('team')" onMouseOut="dehighlightCell('team')" class="leftmenu" href="/afl/footy/ft_teams">Teams</a></td> <td id="teamArrow" onMouseOver="highlightArrow('teamArrow')" onMouseOut="dehighlightArrow('teamArrow')" onClick="flipSubMenu('teamlinkcell','teammenu')">&#187;</td> </tr> <tr> <td id="playerranklinkcell" width="165"><a onMouseOver="highlightCell('playerrank')" onMouseOut="dehighlightCell('playerrank')" class="leftmenu" href="/afl/footy/ft_player_rankings">Player Rankings</a></td> <td id="playerrankArrow" onMouseOver="highlightArrow('playerrankArrow')" onMouseOut="dehighlightArrow('playerrankArrow')" onClick="flipSubMenu('playerranklinkcell','playerrankmenu')">&#187;</td> </tr> <tr> <td id="teamranklinkcell" width="165"><a onMouseOver="highlightCell('teamrank')" onMouseOut="dehighlightCell('teamrank')" class="leftmenu" href="/afl/footy/ft_team_rankings">Team Rankings</a></td> <td id="teamrankArrow" onMouseOver="highlightArrow('teamrankArrow')" onMouseOut="dehighlightArrow('teamrankArrow')" onClick="flipSubMenu('teamranklinkcell','teamrankmenu')">&#187;</td> </tr> <tr> <td id="risingstarlinkcell" width="165"><a onMouseOver="highlightCell('risingstar')" onMouseOut="dehighlightCell('risingstar')" class="leftmenu" href="/afl/footy/ft_rising_stars_round_performances">Rising Stars</a></td> <td id="risingstarArrow" onMouseOver="highlightArrow('risingstarArrow')" onMouseOut="dehighlightArrow('risingstarArrow')" onClick="flipSubMenu('risingstarlinkcell','risingstarmenu')">&#187;</td> </tr> <tr> <td id="draftlinkcell" width="165"><a onMouseOver="highlightCell('draft')" onMouseOut="dehighlightCell('draft')" class="leftmenu" href="/afl/footy/ft_drafts">AFL Draft</a></td> <td id="draftArrow" onMouseOver="highlightArrow('draftArrow')" onMouseOut="dehighlightArrow('draftArrow')" onClick="flipSubMenu('draftlinkcell','draftmenu')">&#187;</td> </tr> <tr> <td id="brownlowlinkcell" width="165"><a onMouseOver="highlightCell('brownlow')" onMouseOut="dehighlightCell('brownlow')" class="leftmenu" href="/afl/footy/brownlow_medal">Brownlow Medal</a></td> <td id="brownlowArrow" onMouseOver="highlightArrow('brownlowArrow')" onMouseOut="dehighlightArrow('brownlowArrow')" onClick="flipSubMenu('brownlowlinkcell','brownlowmenu')">&#187;</td> </tr> <tr> <td id="ladderlinkcell" width="165"><a onMouseOver="highlightCell('ladder')" onMouseOut="dehighlightCell('ladder')" class="leftmenu" href="/afl/footy/ft_ladder">AFL Ladder</a></td> <td id="ladderArrow" onMouseOver="highlightArrow('ladderArrow')" onMouseOut="dehighlightArrow('ladderArrow')" onClick="flipSubMenu('ladderlinkcell','laddermenu')">&#187;</td> </tr> <tr> <td id="coachlinkcell" width="165"><a onMouseOver="highlightCell('coach')" onMouseOut="dehighlightCell('coach')" class="leftmenu" href="/afl/footy/afl_coaches">Coaches</a></td> <td id="coachArrow" onMouseOver="highlightArrow('coachArrow')" onMouseOut="dehighlightArrow('coachArrow')" onClick="flipSubMenu('coachlinkcell','coachmenu')">&#187;</td> </tr> <tr> <td id="attendancelinkcell" width="165"><a onMouseOver="highlightCell('attendance')" onMouseOut="dehighlightCell('attendance')" class="leftmenu" href="/afl/footy/attendances">Attendances</a></td> <td id="attendanceArrow" onMouseOver="highlightArrow('attendanceArrow')" onMouseOut="dehighlightArrow('attendanceArrow')" onClick="flipSubMenu('attendancelinkcell','attendancemenu')">&#187;</td> </tr> <tr> <td id="supercoachlinkcell" width="165"><a onMouseOver="highlightCell('supercoach')" onMouseOut="dehighlightCell('supercoach')" class="leftmenu" href="/afl/footy/supercoach_round">Supercoach</a></td> <td id="supercoachArrow" onMouseOver="highlightArrow('supercoachArrow')" onMouseOut="dehighlightArrow('supercoachArrow')" onClick="flipSubMenu('supercoachlinkcell','supercoachmenu')">&#187;</td> </tr> <tr> <td id="dreamteamlinkcell" width="165"><a onMouseOver="highlightCell('dreamteam')" onMouseOut="dehighlightCell('dreamteam')" class="leftmenu" href="/afl/footy/dream_team_round">AFL Fantasy</a></td> <td id="dreamteamArrow" onMouseOver="highlightArrow('dreamteamArrow')" onMouseOut="dehighlightArrow('dreamteamArrow')" onClick="flipSubMenu('dreamteamlinkcell','dreamteammenu')">&#187;</td> </tr> <tr> <td id="highlightslinkcell" width="165"><a onMouseOver="highlightCell('highlights')" onMouseOut="dehighlightCell('highlights')" class="leftmenu" href="/afl/footy/afl_highlights">AFL Highlights</a></td> <td id="highlightsArrow" onMouseOver="highlightArrow('highlightsArrow')" onMouseOut="dehighlightArrow('highlightsArrow')" onClick="flipSubMenu('highlightslinkcell','highlightsmenu')">&#187;</td> </tr> <tr> <td id="selectionslinkcell" width="165"><a onMouseOver="highlightCell('selections')" onMouseOut="dehighlightCell('selections')" class="leftmenu" href="/afl/footy/afl_team_selections">AFL Team Selections</a></td> <td id="selectionsArrow" onMouseOver="highlightArrow('selectionsArrow')" onMouseOut="dehighlightArrow('selectionsArrow')" onClick="flipSubMenu('selectionslinkcell','selectionsmenu')">&#187;</td> </tr> <tr> <td id="pastplayerlinkcell" width="165"><a onMouseOver="highlightCell('pastplayer')" onMouseOut="dehighlightCell('pastplayer')" class="leftmenu" href="/afl/footy/past_players">Past Players</a></td> <td id="pastplayerArrow" onMouseOver="highlightArrow('pastplayerArrow')" onMouseOut="dehighlightArrow('pastplayerArrow')" onClick="flipSubMenu('pastplayerlinkcell','pastplayermenu')">&#187;</td> </tr> <tr> <td id="contractslinkcell" width="165"><a onMouseOver="highlightCell('contracts')" onMouseOut="dehighlightCell('contracts')" class="leftmenu" href="/afl/footy/out_of_contract_players">AFL Player Contracts</a></td> <td id="contractsArrow" onMouseOver="highlightArrow('contractsArrow')" onMouseOut="dehighlightArrow('contractsArrow')" onClick="flipSubMenu('contractslinkcell','contractsmenu')">&#187;</td> </tr> <tr><td width="175" colspan="2" onMouseOver="this.style.backgroundColor='#e7e7e7';" onMouseOut="this.style.backgroundColor='transparent';"><a class="leftmenu" href="/afl/footy/afl_betting">AFL Betting</a></td></tr> <tr><td width="175" colspan="2" onMouseOver="this.style.backgroundColor='#e7e7e7';" onMouseOut="this.style.backgroundColor='transparent';"><a class="leftmenu" href="/afl/footy/injury_list">AFL Injury List</a></td></tr> <tr><td width="175" colspan="2" onMouseOver="this.style.backgroundColor='#e7e7e7';" onMouseOut="this.style.backgroundColor='transparent';"><a class="leftmenu" href="/afl/footy/ft_season_records">Records</a></td></tr> <tr><td colspan="2" id="bottomborder">&nbsp;</td></tr> <tr><td colspan="2" class="norm" style="height:10px"></td></tr> <tr><td colspan="2" id="skyscraper"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Footywire 160x600 Prime --> <ins class="adsbygoogle" style="display:inline-block;width:160px;height:600px" data-ad-client="ca-pub-1151582373407200" data-ad-slot="2707810136"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </td></tr> </table> </td> <td rowspan="3" bgcolor="#b7b7b7" style="width:1px"></td> <td height="900" width="761" valign="top" align="center" style="padding:5px 5px 5px 5px"> <div id="liveStatus" style="margin:0px;padding:0px;"></div> <table border="0" cellspacing="0" cellpadding="0"> <tr><td> <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="760"> <TR> <TD id="threadsWire" WIDTH="450" HEIGHT="250" VALIGN="TOP"> </TD> <td rowspan="2" class="norm" style="width:10px"></td> <TD WIDTH="300" HEIGHT="250" ROWSPAN="2"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Footywire 300x250 Prime --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-1151582373407200" data-ad-slot="4250755734"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </TD> </TR> </TABLE> </td></tr> <tr><td colspan="1" class="norm" style="height:10px"></td></tr> <tr><td> <div class="notice" width="760"> Advanced stats available for this page! <a href="/afl/footy/ft_match_statistics?mid=5197&advv=Y"><b>View Advanced Stats</b></a>. </div> </td></tr> <tr><td> <style> td.statdata { text-align:center; cursor:default; } </style> <script type="text/javascript"> function getStats() { document.stat_select.submit(); } </script> <TABLE WIDTH="760" BORDER="0" CELLSPACING="0" CELLPADDING="0"> <TR><TD CLASS="lnormtop"> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="760"> <TR> <TD WIDTH="375" class="lnormtop"> <table border="0" cellspacing="0" cellpadding="0" width="375"> <tr><td width="375" valign="top" height="22" align="left" class="hltitle"> Essendon defeats West Coast </td></tr> <tr><td class="lnorm" height="15">Round 7, Etihad Stadium, Attendance: 33631</td></tr> <tr><td class="lnorm" height="15"> Sunday, 8th May 2011, 1:10 PM AEST</td></tr> <tr><td class="lnorm" height="19" style="padding-top:4px;"> Essendon Betting Odds: Win 1.22, Line -30.5 @ 1.92 </td></tr> <tr><td class="lnorm" height="19" style="padding-bottom:4px;"> West Coast Betting Odds: Win 4.32, Line +30.5 @ 1.92 </td></tr> <tr><td class="lnorm" height="15"> <b>Brownlow Votes:</b> 3: <a href="pp-essendon-bombers--jobe-watson">J Watson</a>, 2: <a href="pp-west-coast-eagles--daniel-kerr">D Kerr</a>, 1: <a href="pp-west-coast-eagles--matthew-priddis">M Priddis</a></td></tr> </table> </TD> <td rowspan="1" class="norm" style="width:9px"></td> <TD WIDTH="376" class="lnormtop"> <table border="0" cellspacing="0" cellpadding="0" width="376" id="matchscoretable"> <tr> <th class="leftbold" height="23" width="100">Team</td> <th width="49" align="center">Q1</td> <th width="49" align="center">Q2</td> <th width="49" align="center">Q3</td> <th width="49" align="center">Q4</td> <th width="49" align="center">Final</td> </tr> <tr> <td class="leftbold" height="22"><a href="th-essendon-bombers">Essendon</a></td> <td align="center">2.1 <td align="center">8.3 <td align="center">14.6 <td align="center">16.10 <td align="center">106 </tr> <tr> <td class="leftbold" height="22"><a href="th-west-coast-eagles">West Coast</a></td> <td align="center">4.4 <td align="center">9.9 <td align="center">9.12 <td align="center">12.18 <td align="center">90 </tr> </table> </TD></TR> <TR><TD COLSPAN="3" HEIGHT="30" CLASS="norm"> <a href="#t1">Essendon Player Stats</a> | <a href="#t2">West Coast Player Stats</a> | <a href="#hd">Match Head to Head Stats</a> | <a href="#brk">Scoring Breakdown</a> | <a href="highlights?id=409">Highlights</a> </TD></TR> </TABLE></TD></TR> <tr><td colspan="1" class="norm" style="height:5px"></td></tr> <TR><TD> <table border="0" cellspacing="0" cellpadding="0" width="760"> <tr> <td> <table border="0" cellspacing="0" cellpadding="0" width="585"> <tr> <td height="21" align="center" colspan="3" class="tbtitle" width="585"> <table border="0" cellspacing="0" cellpadding="0" width="585"> <tr> <td class="innertbtitle" align="left">&nbsp;&nbsp;<b><a name=t1></a>Essendon Match Statistics (Sorted by Disposals)</b></td> <td class="innertbtitle" align="right">Coach: <a href="cp-james-hird--82">James Hird</a>&nbsp;&nbsp;</td> </tr> </table> </td> </tr> <tr> <td rowspan="1" class="tabbdr" style="width:1px"></td> <td> <table border="0" cellspacing="0" cellpadding="3" width="583"> <tr> <td width="148" class="lbnorm" height="21">Player</td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=0#t1" title="Kicks">K</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=1#t1" title="Handballs">HB</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=2#t1" title="Disposals">D</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=3#t1" title="Marks">M</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=4#t1" title="Goals">G</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=5#t1" title="Behinds">B</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=6#t1" title="Tackles">T</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=7#t1" title="Hitouts">HO</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=21#t1" title="Goal Assists">GA</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t1" title="Inside 50s">I50</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=21#t1" title="Clearances">CL</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t1" title="Clangers">CG</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t1" title="Rebound 50s">R50</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=8#t1" title="Frees For">FF</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=9#t1" title="Frees Against">FA</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=13#t1" title="AFL Fantasy">AF</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=14#t1" title="Supercoach">SC</a></td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--jobe-watson" title="Jobe Watson">Jobe Watson</a></td> <td class="statdata">19</td> <td class="statdata">12</td> <td class="statdata">31</td> <td class="statdata">4</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">5</td> <td class="statdata">9</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">127</td> <td class="statdata">148</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-richmond-tigers--samuel-lonergan" title="Sam Lonergan">Sam Lonergan</a></td> <td class="statdata">15</td> <td class="statdata">8</td> <td class="statdata">23</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">6</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">80</td> <td class="statdata">89</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-melbourne-demons--jake-melksham" title="Jake Melksham">Jake Melksham</a></td> <td class="statdata">11</td> <td class="statdata">10</td> <td class="statdata">21</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">7</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">3</td> <td class="statdata">6</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">90</td> <td class="statdata">77</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--mark-mcveigh" title="Mark McVeigh">Mark McVeigh</a></td> <td class="statdata">14</td> <td class="statdata">6</td> <td class="statdata">20</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">65</td> <td class="statdata">58</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--dyson-heppell" title="Dyson Heppell">Dyson Heppell</a></td> <td class="statdata">9</td> <td class="statdata">11</td> <td class="statdata">20</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">81</td> <td class="statdata">96</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--kyle-hardingham" title="Kyle Hardingham">Kyle Hardingham</a></td> <td class="statdata">14</td> <td class="statdata">4</td> <td class="statdata">18</td> <td class="statdata">8</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">88</td> <td class="statdata">97</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-geelong-cats--stewart-crameri" title="Stewart Crameri">Stewart Crameri</a></td> <td class="statdata">11</td> <td class="statdata">7</td> <td class="statdata">18</td> <td class="statdata">7</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">3</td> <td class="statdata">7</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">89</td> <td class="statdata">98</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--michael-hurley" title="Michael Hurley">Michael Hurley</a></td> <td class="statdata">10</td> <td class="statdata">7</td> <td class="statdata">17</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">5</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">73</td> <td class="statdata">111</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--dustin-fletcher" title="Dustin Fletcher">Dustin Fletcher</a></td> <td class="statdata">13</td> <td class="statdata">3</td> <td class="statdata">16</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">5</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">77</td> <td class="statdata">99</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--nathan-lovett-murray" title="Nathan Lovett-Murray">Nathan L-Murray</a></td> <td class="statdata">7</td> <td class="statdata">9</td> <td class="statdata">16</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">6</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">41</td> <td class="statdata">50</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--leroy-jetta" title="Leroy Jetta">Leroy Jetta</a></td> <td class="statdata">11</td> <td class="statdata">5</td> <td class="statdata">16</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">66</td> <td class="statdata">72</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--cale-hooker" title="Cale Hooker">Cale Hooker</a></td> <td class="statdata">6</td> <td class="statdata">10</td> <td class="statdata">16</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">62</td> <td class="statdata">83</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--heath-hocking" title="Heath Hocking">Heath Hocking</a></td> <td class="statdata">8</td> <td class="statdata">7</td> <td class="statdata">15</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">73</td> <td class="statdata">87</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--ben-howlett" title="Ben Howlett">Ben Howlett</a></td> <td class="statdata">7</td> <td class="statdata">8</td> <td class="statdata">15</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">7</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">4</td> <td class="statdata">3</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">68</td> <td class="statdata">70</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--david-zaharakis" title="David Zaharakis">David Zaharakis</a></td> <td class="statdata">7</td> <td class="statdata">7</td> <td class="statdata">14</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">57</td> <td class="statdata">61</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--david-hille" title="David Hille">David Hille</a></td> <td class="statdata">7</td> <td class="statdata">6</td> <td class="statdata">13</td> <td class="statdata">8</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">13</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">84</td> <td class="statdata">65</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-port-adelaide-power--angus-monfries" title="Angus Monfries">Angus Monfries</a></td> <td class="statdata">5</td> <td class="statdata">8</td> <td class="statdata">13</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">40</td> <td class="statdata">58</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--henry-slattery" title="Henry Slattery">Henry Slattery</a></td> <td class="statdata">9</td> <td class="statdata">3</td> <td class="statdata">12</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">58</td> <td class="statdata">80</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-port-adelaide-power--patrick-ryder" title="Patrick Ryder">Patrick Ryder</a></td> <td class="statdata">5</td> <td class="statdata">7</td> <td class="statdata">12</td> <td class="statdata">7</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">71</td> <td class="statdata">81</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--tom-bellchambers" title="Tom Bellchambers">Tom Bellchambers</a></td> <td class="statdata">5</td> <td class="statdata">7</td> <td class="statdata">12</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">11</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">54</td> <td class="statdata">70</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-essendon-bombers--kyle-reimers" title="Kyle Reimers">Kyle Reimers</a></td> <td class="statdata">7</td> <td class="statdata">2</td> <td class="statdata">9</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">4</td> <td class="statdata">36</td> <td class="statdata">55</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-essendon-bombers--brent-stanton" title="Brent Stanton">Brent Stanton</a></td> <td class="statdata">6</td> <td class="statdata">2</td> <td class="statdata">8</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">34</td> <td class="statdata">30</td> </tr> </table> </td> <td rowspan="1" class="tabbdr" style="width:1px"></td> </tr> <tr><td colspan="3" class="tabbdr" style="height:1px"></td></tr> </table> </td> <td rowspan="1" class="norm" style="width:15px"></td> <td rowspan="4" width="160" align="center" valign="top"> <table border="0" cellspacing="0" cellpadding="5" width="160" style="border:1px solid #D8DFEA"> <tr><td height="15" valign="top"><a href="/afl/footy/custom_supercoach_latest_scores" class="peep"><a href='/afl/footy/custom_supercoach_latest_scores' class='peep'>Track your favourite Fantasy Players!</a></a></td></tr> <tr> <td height="100" align="center" valign="middle"> <a href="/afl/footy/custom_supercoach_latest_scores"><img src="/afl/img/peep/peep4.jpg" border="0" height="100"/></a> </td> </tr> <tr><td valign="top">Create and save your own custom list of <a href='/afl/footy/custom_supercoach_latest_scores'>Supercoach</a> or <a href='/afl/footy/custom_dream_team_latest_scores'>AFL Fantasy</a> players to track their stats!</td></tr> </table> <div style="padding-top:10px;"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Footywire 160x600 Right --> <ins class="adsbygoogle" style="display:inline-block;width:160px;height:600px" data-ad-client="ca-pub-1151582373407200" data-ad-slot="4900122530"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </td> </tr> <tr><td colspan="2" class="norm" style="height:20px"></td></tr> <tr><td> <table border="0" cellspacing="0" cellpadding="0" width="585"> <tr> <td height="21" align="center" colspan="3" class="tbtitle" width="585"> <table border="0" cellspacing="0" cellpadding="0" width="585"> <tr> <td class="innertbtitle" align="left">&nbsp;&nbsp;<b><a name=t1></a>West Coast Match Statistics (Sorted by Disposals)</b></td> <td class="innertbtitle" align="right">Coach: <a href="cp-john-worsfold--15">John Worsfold</a>&nbsp;&nbsp;</td> </tr> </table> </td> </tr> <tr> <td rowspan="1" class="tabbdr" style="width:1px"></td> <td> <table border="0" cellspacing="0" cellpadding="3" width="583"> <tr> <td width="148" class="lbnorm" height="21">Player</td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=0#t2" title="Kicks">K</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=1#t2" title="Handballs">HB</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=2#t2" title="Disposals">D</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=3#t2" title="Marks">M</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=4#t2" title="Goals">G</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=5#t2" title="Behinds">B</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=6#t2" title="Tackles">T</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=7#t2" title="Hitouts">HO</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=21#t2" title="Goal Assists">GA</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t2" title="Inside 50s">I50</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=21#t2" title="Clearances">CL</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t2" title="Clangers">CG</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=20#t2" title="Rebound 50s">R50</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=8#t2" title="Frees For">FF</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=9#t2" title="Frees Against">FA</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=13#t2" title="AFL Fantasy">AF</a></td> <td width="29" class="bnorm"><a href="fts_match_statistics?mid=5197&sby=14#t2" title="Supercoach">SC</a></td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--daniel-kerr" title="Daniel Kerr">Daniel Kerr</a></td> <td class="statdata">11</td> <td class="statdata">17</td> <td class="statdata">28</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">7</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">8</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">110</td> <td class="statdata">129</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--matthew-priddis" title="Matthew Priddis">Matthew Priddis</a></td> <td class="statdata">8</td> <td class="statdata">19</td> <td class="statdata">27</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">4</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">75</td> <td class="statdata">92</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--nicholas-naitanui" title="Nicholas Naitanui">Nicholas Naitanui</a></td> <td class="statdata">7</td> <td class="statdata">17</td> <td class="statdata">24</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">27</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">7</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">104</td> <td class="statdata">126</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-gold-coast-suns--matthew-rosa" title="Matthew Rosa">Matthew Rosa</a></td> <td class="statdata">10</td> <td class="statdata">12</td> <td class="statdata">22</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">73</td> <td class="statdata">88</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--andrew-embley" title="Andrew Embley">Andrew Embley</a></td> <td class="statdata">13</td> <td class="statdata">3</td> <td class="statdata">16</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">7</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">63</td> <td class="statdata">60</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--mark-nicoski" title="Mark Nicoski">Mark Nicoski</a></td> <td class="statdata">11</td> <td class="statdata">5</td> <td class="statdata">16</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">90</td> <td class="statdata">92</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--dean-cox" title="Dean Cox">Dean Cox</a></td> <td class="statdata">11</td> <td class="statdata">4</td> <td class="statdata">15</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">34</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">106</td> <td class="statdata">125</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-geelong-cats--scott-selwood" title="Scott Selwood">Scott Selwood</a></td> <td class="statdata">8</td> <td class="statdata">7</td> <td class="statdata">15</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">10</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">7</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">79</td> <td class="statdata">68</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--darren-glass" title="Darren Glass">Darren Glass</a></td> <td class="statdata">6</td> <td class="statdata">8</td> <td class="statdata">14</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">57</td> <td class="statdata">68</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--shannon-hurn" title="Shannon Hurn">Shannon Hurn</a></td> <td class="statdata">13</td> <td class="statdata">1</td> <td class="statdata">14</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">62</td> <td class="statdata">70</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--luke-shuey" title="Luke Shuey">Luke Shuey</a></td> <td class="statdata">7</td> <td class="statdata">7</td> <td class="statdata">14</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">45</td> <td class="statdata">59</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--adam-selwood" title="Adam Selwood">Adam Selwood</a></td> <td class="statdata">8</td> <td class="statdata">5</td> <td class="statdata">13</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">4</td> <td class="statdata">5</td> <td class="statdata">2</td> <td class="statdata">49</td> <td class="statdata">49</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--sam-butler" title="Sam Butler">Sam Butler</a></td> <td class="statdata">10</td> <td class="statdata">3</td> <td class="statdata">13</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">58</td> <td class="statdata">55</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-collingwood-magpies--quinten-lynch" title="Quinten Lynch">Quinten Lynch</a></td> <td class="statdata">9</td> <td class="statdata">3</td> <td class="statdata">12</td> <td class="statdata">4</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">57</td> <td class="statdata">72</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--bradley-sheppard" title="Bradley Sheppard">Bradley Sheppard</a></td> <td class="statdata">9</td> <td class="statdata">3</td> <td class="statdata">12</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">61</td> <td class="statdata">59</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--joshua-kennedy" title="Joshua Kennedy">Joshua Kennedy</a></td> <td class="statdata">10</td> <td class="statdata">1</td> <td class="statdata">11</td> <td class="statdata">7</td> <td class="statdata">2</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">67</td> <td class="statdata">71</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--ashley-smith" title="Ashley Smith">Ashley Smith</a></td> <td class="statdata">8</td> <td class="statdata">3</td> <td class="statdata">11</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">47</td> <td class="statdata">77</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--mark-lecras" title="Mark Lecras">Mark Lecras</a></td> <td class="statdata">6</td> <td class="statdata">4</td> <td class="statdata">10</td> <td class="statdata">3</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">49</td> <td class="statdata">54</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-west-coast-eagles--jack-darling" title="Jack Darling">Jack Darling</a></td> <td class="statdata">7</td> <td class="statdata">3</td> <td class="statdata">10</td> <td class="statdata">5</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">6</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">4</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">2</td> <td class="statdata">69</td> <td class="statdata">60</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--will-schofield" title="Will Schofield">Will Schofield</a></td> <td class="statdata">7</td> <td class="statdata">1</td> <td class="statdata">8</td> <td class="statdata">3</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">5</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">42</td> <td class="statdata">44</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td align="left" height="18"><a href="pp-port-adelaide-power--bradley-ebert" title="Brad Ebert">Brad Ebert</a></td> <td class="statdata">6</td> <td class="statdata">1</td> <td class="statdata">7</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">1</td> <td class="statdata">34</td> <td class="statdata">42</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td align="left" height="18"><a href="pp-west-coast-eagles--gerrick-weedon" title="Gerrick Weedon">Gerrick Weedon</a></td> <td class="statdata">2</td> <td class="statdata">1</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">1</td> <td class="statdata">0</td> <td class="statdata">3</td> <td class="statdata">0</td> <td class="statdata">0</td> <td class="statdata">2</td> <td class="statdata">10</td> <td class="statdata">5</td> </tr> </table> </td> <td rowspan="1" class="tabbdr" style="width:1px"></td> </tr> <tr><td colspan="3" class="tabbdr" style="height:1px"></td></tr> </table> </td> <td rowspan="1" class="norm" style="width:10px"></td> </tr> </table> </TD></TR> <tr><td colspan="1" class="norm" style="height:20px"></td></tr> <TR><TD valign="top"> <table border="0" cellspacing="0" cellpadding="0" width="760"> <tr><td valign="top"> <table border="0" cellspacing="0" cellpadding="0" width="375"> <tr><td height="21" align="center" colspan="5" class="tbtitle"><a name=hd></a>Head to Head</td></tr> <tr> <td rowspan="28" class="tabbdr" style="width:1px"></td> <td width="124" class="bnorm" height="21">Essendon</td> <td width="125" class="bnorm">Statistic</td> <td width="124" class="bnorm">West Coast</td> <td rowspan="28" class="tabbdr" style="width:1px"></td> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">206</td> <td class="statdata">Kicks</td> <td class="statdata">187</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">149</td> <td class="statdata">Handballs</td> <td class="statdata">128</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">355</td> <td class="statdata">Disposals</td> <td class="statdata">315</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">1.38</td> <td class="statdata">Kick to Handball Ratio</td> <td class="statdata">1.46</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">90</td> <td class="statdata">Marks</td> <td class="statdata">71</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">71</td> <td class="statdata">Tackles</td> <td class="statdata">64</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">24</td> <td class="statdata">Hitouts</td> <td class="statdata">61</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">20</td> <td class="statdata">Frees For</td> <td class="statdata">35</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">35</td> <td class="statdata">Frees Against</td> <td class="statdata">20</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">16</td> <td class="statdata">Goals Kicked</td> <td class="statdata">12</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">10</td> <td class="statdata">Goal Assists</td> <td class="statdata">5</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">9</td> <td class="statdata">Behinds Kicked</td> <td class="statdata">13</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">1</td> <td class="statdata">Rushed Behinds</td> <td class="statdata">5</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">26</td> <td class="statdata">Scoring Shots</td> <td class="statdata">30</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">61.5%</td> <td class="statdata">Conversion</td> <td class="statdata">40.0%</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">22.19</td> <td class="statdata">Disposals Per Goal</td> <td class="statdata">26.25</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">13.65</td> <td class="statdata">Disps Per Scoring Shot</td> <td class="statdata">10.50</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">36</td> <td class="statdata">Clearances</td> <td class="statdata">38</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">58</td> <td class="statdata">Clangers</td> <td class="statdata">40</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">40</td> <td class="statdata">Rebound 50s</td> <td class="statdata">26</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">47</td> <td class="statdata">Inside 50s</td> <td class="statdata">58</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">1.81</td> <td class="statdata">In50s Per Scoring Shot</td> <td class="statdata">1.93</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">2.94</td> <td class="statdata">Inside 50s Per Goal</td> <td class="statdata">4.83</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="25" class="statdata">53.2%</td> <td class="statdata">% In50s Score</td> <td class="statdata">43.1%</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="25" class="statdata">34.0%</td> <td class="statdata">% In50s Goal</td> <td class="statdata">20.7%</td> </tr> <tr><td colspan="5" class="tabbdr" style="height:1px"></td></tr> </tr> </table> </td> <td rowspan="1" class="norm" style="width:11px"></td> <td valign="top"> <table border="0" cellspacing="0" cellpadding="0" width="374"> <tr><td height="21" align="center" colspan="5" class="tbtitle">Average Attributes</td></tr> <tr> <td rowspan="5" class="tabbdr" style="width:1px"></td> <td width="124" class="bnorm" height="20">Essendon</td> <td width="124" class="bnorm">Attribute</td> <td width="124" class="bnorm">West Coast</td> <td rowspan="5" class="tabbdr" style="width:1px"></td> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">188.0cm</td> <td class="statdata">Height</td> <td class="statdata">189.0cm</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">87.2kg</td> <td class="statdata">Weight</td> <td class="statdata">89.5kg</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">24yr 4mth</td> <td class="statdata">Age</td> <td class="statdata">24yr 3mth</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">82.7</td> <td class="statdata">Games</td> <td class="statdata">87.3</td> </tr> <tr><td colspan="5" class="tabbdr" style="height:1px"></td></tr> <tr><td colspan="5" class="norm" style="height:7px"></td></tr> <tr><td height="21" align="center" colspan="5" class="tbtitle">Total Players By Games</td></tr> <tr> <td rowspan="5" class="tabbdr" style="width:1px"></td> <td width="124" class="bnorm" height="20">Essendon</td> <td width="124" class="bnorm">Games</td> <td width="124" class="bnorm">West Coast</td> <td rowspan="5" class="tabbdr" style="width:1px"></td> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">0</td> <td class="statdata">Less than 50</td> <td class="statdata">2</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">5</td> <td class="statdata">50 to 99</td> <td class="statdata">0</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">7</td> <td class="statdata">100 to 149</td> <td class="statdata">2</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">10</td> <td class="statdata">150 or more</td> <td class="statdata">18</td> </tr> <tr><td colspan="5" class="tabbdr" style="height:1px"></td></tr> <tr><td colspan="5" class="norm" style="height:7px"></td></tr> <tr><td height="21" align="center" colspan="5" class="tbtitle">Goals Analysis</td></tr> <tr> <td rowspan="5" class="tabbdr" style="width:1px"></td> <td width="124" class="bnorm" height="20">Essendon</td> <td width="124" class="bnorm">Goals From</td> <td width="124" class="bnorm">West Coast</td> <td rowspan="5" class="tabbdr" style="width:1px"></td> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">11</td> <td class="statdata">Mark</td> <td class="statdata">7</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">2</td> <td class="statdata">Free Kick</td> <td class="statdata">1</td> </tr> <tr bgcolor="#f2f4f7" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#f2f4f7';"> <td height="18" class="statdata">0</td> <td class="statdata">50m Penalty</td> <td class="statdata">2</td> </tr> <tr bgcolor="#ffffff" onMouseOver="this.bgColor='#cbcdd0';" onMouseOut="this.bgColor='#ffffff';"> <td height="18" class="statdata">3</td> <td class="statdata">Play</td> <td class="statdata">4</td> </tr> <tr><td colspan="5" class="tabbdr" style="height:1px"></td></tr> </tr> <tr><td colspan="5" align="center" style="padding-top:20px;"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- FootyWire 300x250 --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:250px" data-ad-client="ca-pub-8100122657047353" data-ad-slot="5843709947"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </td></tr> </table> </td></tr> </table> </TD></TR> <tr><td colspan="1" class="norm" style="height:20px"></td></tr> <TR><TD> <table border="0" cellspacing="0" cellpadding="0" width="760"> <tr><td height="21" align="center" colspan="7" class="tbtitle"><a name=brk></a>Quarter by Quarter Scoring Breakdown</td></tr> <tr> <td rowspan="6" class="ylwbdr" style="width:1px"></td> <td rowspan="5" class="ylwbg2" style="width:4px"></td> <td colspan="1" class="ylwbg2" style="height:4px"></td> <td rowspan="5" class="ylwbg2" style="width:4px"></td> <td colspan="1" class="ylwbg2" style="height:4px"></td> <td rowspan="5" class="ylwbg2" style="width:4px"></td> <td rowspan="6" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>First Quarter</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">2.1 13</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">4.4 28</td> </tr> <tr> <td class="ylwbgmid">3</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">8</td> </tr> <tr> <td class="ylwbgmid">66.7%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">50.0%</td> </tr> <tr> <td class="ylwbgmid">Lost quarter by 15</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Won quarter by 15</td> </tr> <tr> <td class="ylwbgmid">Trailing by 15</td> <td class="ylwbgmid">End of Quarter</td> <td class="ylwbgmid">Leading by 15</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>Second Quarter</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">6.2 38</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">5.5 35</td> </tr> <tr> <td class="ylwbgmid">8</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">10</td> </tr> <tr> <td class="ylwbgmid">75.0%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">50.0%</td> </tr> <tr> <td class="ylwbgmid">Won quarter by 3</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Lost quarter by 3</td> </tr> <tr> <td class="ylwbgmid">Trailing by 12</td> <td class="ylwbgmid">Halftime</td> <td class="ylwbgmid">Leading by 12</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> </tr> <tr><td colspan="3" class="ylwbg2" style="height:4px"></td></tr> <tr> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>Third Quarter</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">6.3 39</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">0.3 3</td> </tr> <tr> <td class="ylwbgmid">9</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">3</td> </tr> <tr> <td class="ylwbgmid">66.7%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">0%</td> </tr> <tr> <td class="ylwbgmid">Won quarter by 36</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Lost quarter by 36</td> </tr> <tr> <td class="ylwbgmid">Leading by 24</td> <td class="ylwbgmid">End of Quarter</td> <td class="ylwbgmid">Trailing by 24</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>Final Quarter</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">2.4 16</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">3.6 24</td> </tr> <tr> <td class="ylwbgmid">6</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">9</td> </tr> <tr> <td class="ylwbgmid">33.3%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">33.3%</td> </tr> <tr> <td class="ylwbgmid">Lost quarter by 8</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Won quarter by 8</td> </tr> <tr> <td class="ylwbgmid">Won game by 16</td> <td class="ylwbgmid">End of Game</td> <td class="ylwbgmid">Lost game by 16</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> </tr> <tr><td colspan="3" class="ylwbg2" style="height:4px"></td></tr> <tr><td colspan="5" class="ylwbdr" style="height:1px"></td></tr> </table> </TD></TR> <tr><td colspan="1" class="norm" style="height:20px"></td></tr> <TR><TD> <table border="0" cellspacing="0" cellpadding="0" width="760"> <tr><td height="21" align="center" colspan="7" class="tbtitle">Scoring Breakdown For Each Half</td></tr> <tr> <td rowspan="4" class="ylwbdr" style="width:1px"></td> <td rowspan="3" class="ylwbg2" style="width:4px"></td> <td colspan="1" class="ylwbg2" style="height:4px"></td> <td rowspan="3" class="ylwbg2" style="width:4px"></td> <td colspan="1" class="ylwbg2" style="height:4px"></td> <td rowspan="3" class="ylwbg2" style="width:4px"></td> <td rowspan="4" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>First Half</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">8.3 51</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">9.9 63</td> </tr> <tr> <td class="ylwbgmid">11</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">18</td> </tr> <tr> <td class="ylwbgmid">72.7%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">50.0%</td> </tr> <tr> <td class="ylwbgmid">Lost half by 12</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Won half by 12</td> </tr> <tr> <td class="ylwbgmid">Trailing by 12</td> <td class="ylwbgmid">Halftime</td> <td class="ylwbgmid">Leading by 12</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> <td> <table border="0" cellspacing="0" cellpadding="0" width="373"> <tr> <td rowspan="9" class="ylwbdr" style="width:1px"></td> <td colspan="3" class="ylwbdr" style="height:1px"></td> <td rowspan="9" class="ylwbdr" style="width:1px"></td> </tr> <tr> <td class="ylwbgmid" height="20" width="124"><b>Essendon</b></td> <td class="ylwbgmid" width="125"><b>Second Half</b></td> <td class="ylwbgmid" width="124"><b>West Coast</b></td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> <tr> <td class="ylwbgmid">8.7 55</td> <td class="ylwbgmid">Score</td> <td class="ylwbgmid">3.9 27</td> </tr> <tr> <td class="ylwbgmid">15</td> <td class="ylwbgmid">Scoring Shots</td> <td class="ylwbgmid">12</td> </tr> <tr> <td class="ylwbgmid">53.3%</td> <td class="ylwbgmid">Conversion</td> <td class="ylwbgmid">25.0%</td> </tr> <tr> <td class="ylwbgmid">Won half by 28</td> <td class="ylwbgmid">Result</td> <td class="ylwbgmid">Lost half by 28</td> </tr> <tr> <td class="ylwbgmid">Won game by 16</td> <td class="ylwbgmid">End of Game</td> <td class="ylwbgmid">Lost game by 16</td> </tr> <tr><td colspan="3" class="ylwbdr" style="height:1px"></td></tr> </table> </td> </tr> <tr><td colspan="3" class="ylwbg2" style="height:4px"></td></tr> <tr><td colspan="5" class="ylwbdr" style="height:1px"></td></tr> </table> </TD></TR> </TABLE> </td></tr> </table></td> <td rowspan="3" bgcolor="#b7b7b7" style="width:1px"></td> </tr> <tr><td align="center" valign="middle" height="40"> </td></tr> <tr> <td colspan="1" bgcolor="#b7b7b7" style="height:1px"></td> </tr> <tr><td colspan="3" align="center" valign="middle" height="25"> <table id="footer"> <tr> <td id="footercopy">Footywire.com &copy; 2018</td> <td id="footerlinks"> <a href="/afl/footy/info?if=a">about</a> <a href="/afl/footy/info?if=t">terms</a> <a href="/afl/footy/info?if=p">privacy</a> <a target="_smaq" href="http://www.smaqtalk.com/">discussions</a> <a href="/afl/footy/contact_us">contact us</a> </td> </tr> </table> </td></tr> </table> </DIV> <table id="teammenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" >x</div></td></tr> <tr> <td colspan="3"><a class="submenuitem" href="/afl/footy/ft_teams">Compare Teams</a></td> </tr> <tr> <td colspan="3"><div class="submenutitle">Team Home Pages</div></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" class="submenuitem" href="/afl/footy/th-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('teammenu')" onMouseUp="hideSubMenu('teammenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="playermenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/ft_players">All Players</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/player_search">Player Search</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/past_players">Past Players</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/other_players">Other Players</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/ft_player_compare">Compare Players</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">Team Playing Lists</div></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" class="submenuitem" href="/afl/footy/tp-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('playermenu')" onMouseUp="hideSubMenu('playermenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="playerrankmenu"> <tr><td colspan="3" align="right"><div class="submenux" onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/ft_player_rankings?rt=LA">League Averages</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/ft_player_rankings?rt=LT">League Totals</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/ft_player_rankings?rt=RA">Rising Star Averages</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/ft_player_rankings?rt=RT">Rising Star Totals</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/ft_goal_kickers">Season Goalkickers</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">Player Rankings by Team</div></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" class="submenuitem" href="/afl/footy/tr-richmond-tigers">Tigers</a></td> </tr> <tr><td colspan="3" align="right"><div class="submenux" onClick="hideSubMenu('playerrankmenu')" onMouseUp="hideSubMenu('playerrankmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="teamrankmenu"> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" >x</div></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=TA">Team Averages</a></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=TT">Team Totals</a></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=OA">Opponent Averages</a></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=OT">Opponent Totals</a></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=DA">Team/Opponent Differential Averages</a></td></tr> <tr><td><a onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" class="submenuitem" href="/afl/footy/ft_team_rankings?type=DT">Team/Opponent Differential Totals</a></td></tr> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('teamrankmenu')" onMouseUp="hideSubMenu('teamrankmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="draftmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/ft_drafts">Full AFL Draft History</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/ft_team_draft_summaries">Draft Summary by Team</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">AFL Draft History by Team</div></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" class="submenuitem" href="/afl/footy/td-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('draftmenu')" onMouseUp="hideSubMenu('draftmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="risingstarmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ft_rising_stars_round_performances">Rising Star Round by Round Performances</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/rising_star_nominations">Rising Star Nominees</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/rising_star_winners">Rising Star Winners</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">Eligible Rising Stars by Team</div></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" class="submenuitem" href="/afl/footy/ty-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('risingstarmenu')" onMouseUp="hideSubMenu('risingstarmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="matchmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/ft_match_list">Full Season AFL Fixture</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">Played and Scheduled Matches by Team</div></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" class="submenuitem" href="/afl/footy/tg-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('matchmenu')" onMouseUp="hideSubMenu('matchmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="laddermenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder">Full Season</a></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/live_ladder">Live Ladder</a></td></tr> <tr> <td colspan="3"><div class="submenutitle">Filter Ladder by</div></td> </tr> <tr> <td><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder?pt=RD&st=01&sb=p">Round</a></td> <td><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder?pt=PD&st=Q1&sb=p">Match Period</a></td> <td><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder?pt=LC&st=LC&sb=p">Location</a></td> </tr> <tr> <td><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder?pt=VN&st=10&sb=p">Venue</a></td> <td><a onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" class="submenuitem" href="/afl/footy/ft_ladder?pt=ST&st=disposals&sb=p">Stats</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('laddermenu')" onMouseUp="hideSubMenu('laddermenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="brownlowmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/brownlow_medal">Full Brownlow Medal Count</a></td></tr><tr> <tr><td colspan="3"><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/brownlow_medal_winners">Brownlow Medal Winners</a></td></tr><tr> <tr><td colspan="3"><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/team_brownlow_medal_summaries">Summary by Team</a></td></tr><tr> <tr> <td colspan="3"><div class="submenutitle">Brownlow Medal Vote Getters By Club</div></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" class="submenuitem" href="/afl/footy/tb-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('brownlowmenu')" onMouseUp="hideSubMenu('brownlowmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="attendancemenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/attendances">AFL Crowds & Attendances</a></td></tr><tr> <tr> <td colspan="3"><div class="submenutitle">Historical Attendance by Team</div></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" class="submenuitem" href="/afl/footy/ta-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('attendancemenu')" onMouseUp="hideSubMenu('attendancemenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="coachmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/afl_coaches">AFL Coaches</a></td></tr><tr> <tr> <td colspan="3"><div class="submenutitle">AFL Club Coaches</div></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" class="submenuitem" href="/afl/footy/tc-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('coachmenu')" onMouseUp="hideSubMenu('coachmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="highlightsmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" >x</div></td></tr> <tr><td colspan="3"><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/afl_highlights">AFL Highlights</a></td></tr><tr> <tr> <td colspan="3"><div class="submenutitle">AFL Club Highlights</div></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" class="submenuitem" href="/afl/footy/tv-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('highlightsmenu')" onMouseUp="hideSubMenu('highlightsmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="supercoachmenu"> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" >x</div></td></tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/supercoach_round">Round by Round Player Rankings</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/supercoach_season">Season Player Rankings</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/supercoach_breakevens">Supercoach Breakevens</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/supercoach_scores">Supercoach Scores</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/supercoach_prices">Supercoach Prices</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/custom_supercoach_latest_scores">Custom Supercoach Player List</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" class="submenuitem" href="/afl/footy/pre_season_supercoach">Pre-Season Supercoach Stats</a></td></tr><tr> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('supercoachmenu')" onMouseUp="hideSubMenu('supercoachmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="dreamteammenu"> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" >x</div></td></tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/dream_team_round">Round by Round Player Rankings</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/dream_team_season">Season Player Rankings</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/dream_team_breakevens">AFL Fantasy Breakevens</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/dream_team_scores">AFL Fantasy Scores</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/dream_team_prices">AFL Fantasy Prices</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/custom_dream_team_latest_scores">Custom AFL Fantasy Player List</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" class="submenuitem" href="/afl/footy/pre_season_dream_team">Pre-Season AFL Fantasy Stats</a></td></tr><tr> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('dreamteammenu')" onMouseUp="hideSubMenu('dreamteammenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="selectionsmenu"> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('selectionsmenu')" onMouseUp="hideSubMenu('selectionsmenu')" >x</div></td></tr> <tr><td><a onClick="hideSubMenu('selectionsmenu')" onMouseUp="hideSubMenu('selectionsmenu')" class="submenuitem" href="/afl/footy/afl_team_selections">Latest Team Selections</a></td></tr><tr> <tr><td><a onClick="hideSubMenu('selectionsmenu')" onMouseUp="hideSubMenu('selectionsmenu')" class="submenuitem" href="/afl/footy/custom_all_team_selections">Custom Team Selections List</a></td></tr><tr> <tr><td align="right"><div class="submenux" onClick="hideSubMenu('selectionsmenu')" onMouseUp="hideSubMenu('selectionsmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="pastplayermenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" >x</div></td></tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" class="submenuitem" href="/afl/footy/ti-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('pastplayermenu')" onMouseUp="hideSubMenu('pastplayermenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <table id="contractsmenu"> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" >x</div></td></tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-carlton-blues">Blues</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-essendon-bombers">Bombers</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-western-bulldogs">Bulldogs</a></td> </tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-geelong-cats">Cats</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-adelaide-crows">Crows</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-melbourne-demons">Demons</a></td> </tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-fremantle-dockers">Dockers</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-west-coast-eagles">Eagles</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-greater-western-sydney-giants">Giants</a></td> </tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-hawthorn-hawks">Hawks</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-kangaroos">Kangaroos</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-brisbane-lions">Lions</a></td> </tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-collingwood-magpies">Magpies</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-port-adelaide-power">Power</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-st-kilda-saints">Saints</a></td> </tr> <tr> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-gold-coast-suns">Suns</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-sydney-swans">Swans</a></td> <td><a onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" class="submenuitem" href="/afl/footy/to-richmond-tigers">Tigers</a></td> </tr> <tr><td align="right" colspan="3"><div class="submenux" onClick="hideSubMenu('contractsmenu')" onMouseUp="hideSubMenu('contractsmenu')" style="padding-top:6px;">hide menu</div></td></tr> </table> <div id="membersbgdiv" onClick="closeMemberDivs();"></div> <div id="memberswhitediv"> <table border="0" cellspacing="0" cellpadding="0" align="center"> <tr><td height="30" align="right" valign="top"><span id="membersx" onClick="closeMemberDivs();">X</span></td></tr> <tr><td id="memberscontent" valign="top" align="center"> &nbsp; </td></tr> </table> </div> </BODY> </HTML>
man/prefix.eclass.5.html
fusion809/fusion809.github.io-old
<!DOCTYPE html> <html> <head> <meta charset="utf-8"/> <style> table.head, table.foot { width: 100%; } td.head-rtitle, td.foot-os { text-align: right; } td.head-vol { text-align: center; } table.foot td { width: 50%; } table.head td { width: 33%; } div.spacer { margin: 1em 0; } </style> <title> PREFIX.ECLASS(5)</title> </head> <body> <div class="mandoc"> <table class="head"> <tbody> <tr> <td class="head-ltitle"> PREFIX.ECLASS(5)</td> <td class="head-vol"> portage</td> <td class="head-rtitle"> PREFIX.ECLASS(5)</td> </tr> </tbody> </table> <div class="section"> <h1>NAME</h1> prefix.eclass - Eclass to provide Prefix functionality</div> <div class="section"> <h1>DESCRIPTION</h1> Gentoo Prefix allows users to install into a self defined offset located somewhere in the filesystem. Prefix ebuilds require additional functions and variables which are defined by this eclass.</div> <div class="section"> <h1>FUNCTIONS</h1><dl> <dt> <b>eprefixify</b> &lt;list of to be eprefixified files&gt;</dt> <dd> replaces @GENTOO_PORTAGE_EPREFIX@ with ${EPREFIX} for the given files, dies if no arguments are given, a file does not exist, or changing a file failed.</dd> </dl> </div> <div class="section"> <h1>ECLASS VARIABLES</h1><dl> <dt> <b>EPREFIX</b></dt> <dd> The offset prefix of a Gentoo Prefix installation. When Gentoo Prefix is not used, ${EPREFIX} should be &quot;&quot;. Prefix Portage sets EPREFIX, hence this eclass has nothing to do here in that case. Note that setting EPREFIX in the environment with Prefix Portage sets Portage into cross-prefix mode.</dd> </dl> </div> <div class="section"> <h1>MAINTAINERS</h1><br/> Feel free to contact the Prefix team through &lt;prefix@gentoo.org&gt; if<br/> you have problems, suggestions or questions.<br/> </div> <div class="section"> <h1>REPORTING BUGS</h1> Please report bugs via http://bugs.gentoo.org/</div> <div class="section"> <h1>FILES</h1> <b>/usr/portage/eclass/prefix.eclass</b></div> <div class="section"> <h1>SEE ALSO</h1> <b>ebuild</b>(5)<br/> https://gitweb.gentoo.org/repo/gentoo.git/log/eclass/prefix.eclass<br/> </div> <table class="foot"> <tr> <td class="foot-date"> Aug 2015</td> <td class="foot-os"> Portage</td> </tr> </table> </div> </body> </html>
mica-webapp/src/main/webapp/app/study/views/study-view-details.html
apruden/mica2
<div> <uib-tabset active="activeTab"> <uib-tab ng-repeat="tab in tabs" heading="{{'language.' + tab.lang | translate}}" disable="tab.disabled"> <div class="voffset4"> <img class="img-responsive desaturate" ng-show="study.logo" ng-src="{{logoUrl}}"> <h2> <localized value="study.name" lang="tab.lang"></localized> </h2> <localized value="study.objectives" lang="tab.lang"></localized> </div> <div class="row"> <div class="col-md-6"> <h3 translate>study.general-info</h3> <div class="table-responsive"> <table class="table table-bordered table-striped"> <tbody> <tr ng-show="study.name.length"> <th translate>study.name</th> <td> <localized value="study.name" lang="tab.lang"></localized> </td> </tr> <tr ng-show="study.acronym.length"> <th translate>study.acronym</th> <td> <localized value="study.acronym" lang="tab.lang"></localized> </td> </tr> <tr ng-show="study.objectives.length"> <th translate>study.objectives</th> <td> <localized value="study.objectives" lang="tab.lang"></localized> </td> </tr> <tr ng-show="study.website"> <th translate>website</th> <td> <a href="{{study.website}}" target="_blank">{{study.website}}</a> </td> </tr> <tr ng-repeat="role in roles"> <th>{{'study.member-list' | translate: {type: role} }}</th> <td> <div ng-controller="ContactController"> <ul ui-sortable="sortableOptions" ng-model="memberships[role]" class="list-unstyled sortable" ng-show="memberships[role].length"> <li ng-repeat="person in memberships[role]"> <a ng-click="viewContact(person)" title="{{'dnd-reorder' | translate}}"> {{person.title}} {{person.firstName}} {{person.lastName}} {{person.academicLevel}} <span ng-show="person.institution.name.length"> (<localized value="person.institution.name" lang="tab.lang"></localized>) </span> </a> <div class="inline" ng-if="inViewMode() && permissions.canEdit()"> <a ng-click="editMember(study, person, role)" class="action"><i class="fa fa-pencil"></i></a> <a ng-click="deleteMember(study, person, role)" class="action"><i class="fa fa-trash-o"></i></a> </div> </li> </ul> <button type="button" class="btn btn-info btn-sm" ng-click="addMember(study, role)" ng-if="inViewMode() && permissions.canEdit()"> <i class="fa fa-plus"></i> <span>{{ 'study.add-member' | translate: {type: role} }}</span> </button> </div> </td> </tr> <tr ng-show="study.startYear"> <th translate>study.start-year</th> <td>{{study.startYear}}</td> </tr> <tr ng-show="study.endYear"> <th translate>study.end-year</th> <td>{{study.endYear}}</td> </tr> <tr ng-show="study.networks.length"> <th translate>networks</th> <td>{{study.networks}}</td> </tr> </tbody> </table> </div> </div> <div class="col-md-6"> <h3 translate ng-show="study.model.methods">study.general-design</h3> <table class="table table-bordered table-striped" ng-show="study.model.methods"> <tbody> <tr ng-show="study.model.methods.design"> <th translate>study.model.design</th> <td> <ul class="list-unstyled"> <li> {{getLabel('methods-designs', study.model.methods.design, tab.lang)}} </li> <li ng-show="study.model.methods.otherDesign[tab.lang]"> <localized value="study.model.methods.otherDesign" lang="tab.lang"></localized> </li> </ul> </td> </tr> <tr ng-show="study.model.methods.followUpInfo[tab.lang]"> <th translate>study.follow-up</th> <td> <localized value="study.model.methods.followUpInfo" lang="tab.lang"></localized> </td> </tr> <tr ng-show="study.model.methods.recruitments.length || study.model.methods.otherRecruitment[tab.lang]"> <th translate>study.recruitment-target</th> <td> <ul class="list-unstyled"> <li ng-repeat="recruitment in study.model.methods.recruitments"> {{getLabel('methods-recruitments', recruitment, tab.lang)}} </li> <li ng-show="study.model.methods.otherRecruitment[tab.lang]"> <localized value="study.model.methods.otherRecruitment" lang="tab.lang"></localized> </li> </ul> </td> </tr> <tr ng-show="study.model.numberOfParticipants.participant"> <th translate>numberOfParticipants.participants</th> <td> <span ng-hide="study.model.numberOfParticipants.participant.noLimit">{{study.model.numberOfParticipants.participant.number | number}}</span> <span ng-show="study.model.numberOfParticipants.participant.noLimit" translate>numberOfParticipants.no-limit</span> </td> </tr> <tr ng-show="study.model.numberOfParticipants.sample"> <th translate>numberOfParticipants.sample</th> <td> <span ng-hide="study.model.numberOfParticipants.sample.noLimit">{{study.model.numberOfParticipants.sample.number | number}}</span> <span ng-show="study.model.numberOfParticipants.sample.noLimit" translate>numberOfParticipants.no-limit</span> </td> </tr> <tr ng-show="study.model.numberOfParticipants.info[tab.lang]"> <th translate>numberOfParticipants.suppl-info</th> <td> <localized value="study.model.numberOfParticipants.info" lang="tab.lang"></localized> </td> </tr> <tr ng-show="study.model.methods.info[tab.lang]"> <th translate>suppl-info</th> <td> <localized value="study.model.methods.info" lang="tab.lang"></localized> </td> </tr> </tbody> </table> </div> </div> <div class="row"> <div id="study-access" class="col-md-6" ng-show="study.model.access.length || study.model.otherAccess[tab.lang]"> <h3 translate>study.model.access.label</h3> <table class="table table-bordered table-striped" ng-show="study.model.access.length || study.model.otherAccess[tab.lang]"> <tbody> <tr> <th translate>study.access.for</th> <td> <ul class="list-unstyled"> <li ng-repeat="access in study.model.access"> {{getLabel('access', access, tab.lang)}} </li> <li ng-show="study.model.otherAccess[tab.lang]"> <localized value="study.model.otherAccess" lang="tab.lang"></localized> </li> </ul> </td> </tr> </tbody> </table> </div> <div id="study-paper" class="col-md-6"> <h3 translate ng-show="study.model.markerPaper || study.model.pubmedId">study.marker-paper</h3> <table class="table table-bordered table-striped" ng-show="study.model.markerPaper || study.model.pubmedId"> <tbody> <tr ng-show="study.model.markerPaper"> <th translate>study.marker-paper</th> <td>{{study.markerPaper}}</td> </tr> <tr ng-show="study.model.pubmedId"> <th translate>study.pubmed-id</th> <td> <a ng-href="http://www.ncbi.nlm.nih.gov/pubmed/{{study.model.pubmedId}}" target="_blank"> PUBMED {{study.model.pubmedId}} </a> </td> </tr> </tbody> </table> </div> </div> <div class="row"> <div class="col-md-6"> <h3 translate ng-show="study.model.info[tab.lang]">suppl-info</h3> <table class="table table-bordered table-striped" ng-show="study.model.info[tab.lang]"> <tbody> <tr> <td> <localized value="study.model.info" lang="tab.lang"></localized> </td> </tr> </tbody> </table> </div> </div> <div id="study-timeline"> <h3 translate ng-show="study.populations.length">study.timeline</h3> <div id="timeline"></div> </div> <div id="study-populations"> <h3> <span translate>study.populations</span> </h3> <a ng-click="addPopulation()" class="btn btn-info" ng-if="inViewMode() && permissions.canEdit()"> <i class="fa fa-plus"></i> <span translate>study.add-population</span> </a> <div ng-repeat="population in study.populations"> <div ng-include="'app/study/views/population/population-view.html'"></div> </div> </div> <div id="study-authorization"> <h3 translate ng-show="study.model.specificAuthorization || study.model.maelstromAuthorization"> study.authorization.label</h3> <table class="table table-bordered table-striped" ng-show="study.model.specificAuthorization || study.model.maelstromAuthorization"> <tbody> <tr ng-show="study.model.maelstromAuthorization"> <td translate>study.authorization.maelstrom</td> <td> {{'study.authorization.authorized.' + study.model.maelstromAuthorization.authorized | translate}} <span ng-show="study.model.maelstromAuthorization.authorized && study.model.maelstromAuthorization.authorizer"> <span translate>by</span> {{study.model.maelstromAuthorization.authorizer}} </span> <span ng-show="study.model.maelstromAuthorization.authorized && study.model.maelstromAuthorization.date"> <span translate>on</span> {{study.model.maelstromAuthorization.date}} </span> </td> </tr> <tr ng-show="study.model.specificAuthorization"> <td translate>study.authorization.specific</td> <td> {{'study.authorization.authorized.' + study.model.specificAuthorization.authorized | translate}} <span ng-show="study.model.specificAuthorization.authorized && study.model.specificAuthorization.authorizer"> <span translate>by</span> {{study.model.specificAuthorization.authorizer}} </span> <span ng-show="study.model.specificAuthorization.authorized && study.model.specificAuthorization.date"> <span translate>on</span> {{study.model.specificAuthorization.date}} </span> </td> </tr> </tbody> </table> </div> <div id="study-opal"> <h3 translate ng-show="study.opal">datasets</h3> <table class="table table-bordered table-striped" ng-show="study.opal"> <tbody> <tr ng-show="study.opal"> <td translate>study.opal</td> <td> <a ng-href="{{study.opal}}" target="_blank">{{study.opal}}</a> </td> </tr> </tbody> </table> </div> </uib-tab> </uib-tabset> </div>
InfoRetrievalSystem/dataset/CACM-1003.html
jrosseel/ProjectInformationRetrieval
<html> <pre> A Computer Analysis Method For Thermal Diffusion in Biochemical Systems In the thermal detection of rapid biochemical reactions it is necessary to correct the temperature data for transient heat conduction losses in a cylindrical calorimeter. To handle the complexities arising from varying thermal-relaxation times of concentric insulating layers, a computer program was developed which gives the temperature distribution of the system as a function of radius and time. This distribution is corrected at each step by a subroutine which calculates the instantaneous chemical state of there action, as well as the heat produced by this reaction. The program is based on a direct statement of Fourier's law of heat conduction and the chemical rate equation to provide a "bookkeeping law" to follow the reactants and the flow of heat packets, in such a way that the computer continually stores the heat distribution. A computer analysis method is here regarded as one in which the physical laws of a process are used explicitly in the program. Usually this results in by passing much of the mathematical procedures conventionally used. The program was tested against some known exact solutions of the heat equation and gave identical results, and compared well with experimental data of a known biochemical reaction. The construction of computer programs based on the direct statement of the physical laws is a principle of general applicability which has been applied to several other physical phenomena. CACM September, 1964 Davids, N. Berger, R. L. CA640908 JB March 9, 1978 5:13 PM 1003 5 1003 1003 5 1003 1003 5 1003 </pre> </html>
examples/getting-started-projection-az.html
MizarWeb/Mizar
<!DOCTYPE html> <html> <head> <title>Azimuthal pojection</title> <link rel="icon" href="../static/favicon.ico" /> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <meta name="title" content="Azimuthal projection" /> <meta name="description" content=" <h2>Introduction</h2> This tutorial explains how to use azimuthal projection <h2>Code in Mizar</h2> TODO <br/><br/> Look at the code and change it to test it. <br/> " /> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css" /> <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/wallynm/jquery-loadmask@master/jquery.loadmask.min.css" /> </head> <body style="margin: 0; padding: 0;"> <div> <a href="https://www.cnes.fr" target="_blank" ><img src=".../static/logo-cnes.jpg" style="position: absolute; right: 5px; bottom: 10px; width: 100px;" /></a> </div> <canvas id="MizarCanvas" style="border: none; margin: 0; padding: 0;"></canvas> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.1/moment-with-locales.min.js" ></script> <script type="text/javascript" src="https://code.jquery.com/jquery-3.x-git.min.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js" integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU=" crossorigin="anonymous" ></script> <script type="text/javascript" src="../dist/mizar.js"></script> <script type="text/javascript" src="getting-started-projection-az.js"></script> </body> </html>
eve_site/templates/registration/activate.html
spatuloricaria/Uncap
{% extends "registration/base.html" %} {% block title %}Compte activé{% endblock %} {% block content %} <h1>Compte activé.</h1> {% if account %} <p>Merci de vous etre enregistré. Vous pouvez maintenant vous connecter.</p> {% else %} <p> Désolé votre compte n'a pas pu etre activé. Soit le lien d'activation n'est pas valide, soit la clef d'activation de ce compte a expirée. Les liens d'activation sont valides {{ expiration_days|apnumber }} jours après leur création. {% endif %} {% endblock %}
cloud_copasi/web_interface/task_plugins/plugins/optimization_repeat/results_view.html
edkent/cloud-copasi
{% comment %} Cloud-COPASI Copyright (c) 2013 Edward Kent. All rights reserved. This program and the accompanying materials are made available under the terms of the GNU Public License v3.0 which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html {% endcomment %} <p><h4>Best value found for optimization task: <b>{{results.best_value}}</b></h4></p> <p> <a href="{% url 'task_results_download' task_id=task.id %}">Click here</a> to download these results as a tab-separated file <br/> <a href="{% url 'task_results_download' task_id=task.id %}?name=raw_results">Click here</a> to download the full output from all repeats </p> <div class="tablelist"> <table> <tr><th>Parameter</th><th>Value</th></tr> {% for parameter in results.best_params %} <tr> <td><b>{{parameter.0}}</b></td> <td>{{parameter.1}}</td> </tr> {% endfor %} </table> </div>
html/Instruments.Climate-module.html
SirenB/RealCon
<?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>Instruments.Climate</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>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="Instruments-module.html">Package&nbsp;Instruments</a> :: Package&nbsp;Climate </span> </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&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="Instruments.Climate-module.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== PACKAGE DESCRIPTION ==================== --> <h1 class="epydoc">Package Climate</h1><p class="nomargin-top"><span class="codelink"><a href="Instruments.Climate-pysrc.html">source&nbsp;code</a></span></p> <p>This module provide libraries to control climate related instruments</p> <p>Climate include temperature, humidity, pressure and so on.</p> <!-- ==================== SUBMODULES ==================== --> <a name="section-Submodules"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Submodules</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Submodules" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr><td class="summary"> <ul class="nomargin"> <li> <strong class="uidlink"><a href="Instruments.Climate.oven-module.html">Instruments.Climate.oven</a></strong> </li> </ul></td></tr> </table> <br /> <!-- ==================== VARIABLES ==================== --> <a name="section-Variables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Variables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="__package__"></a><span class="summary-name">__package__</span> = <code title="None">None</code> </td> </tr> </table> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</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 Sun Sep 25 14:50:39 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>