code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<link rel="stylesheet" type="text/css" href="/tests/html/css/selectize.css" /> <select id="testSelectize"></select> <script type="text/javascript" src="/tests/html/js/jquery.js"></script> <script type="text/javascript" src="/tests/html/js/selectize.js"></script> <script type="text/javascript"> $(function() { var selectizeConfiguration = {}; var options = [ {value: 'Option 1', text: 'Option 1'}, {value: 'Option 2', text: 'Option 2'}, {value: 'Option 3', text: 'Option 3'}, {value: 'Option 4', text: 'Option 4'} ] if (window.location.search.indexOf('async') !== -1) { selectizeConfiguration.load = function(query, callback) { setTimeout(function() { callback(options); }, 3000); } } else { selectizeConfiguration.options = options; } $('#testSelectize').selectize(selectizeConfiguration); }); </script>
IntuitiveWebSolutions/PyWebRunner
tests/html/selectize.html
HTML
mit
1,017
<article role="article"> <h2>Create a new account</h2> <form name="registrationForm" class="form-horizontal"> <h3>Choose a username and password</h3> <p>Please enter your email address for your username. It cannot be longer than 56 characters. </p> <div id="login-info"> <div class="form-group"> <label for="username" class="control-label col-xs-2">Username</label> <div class="col-xs-10"> <input type="email" name="username" id="username" class="form-control" ng-model="account.username" role="textbox" tabindex="1" placeholder="user@domain.com" ng-maxlength="56" ng-required="true" ai-enter="validateForm()" /> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.username.$invalid"> <ul> <li ng-show="registrationForm.username.$error.required">{{errors.EMPTY_USERNAME}}</li> <li ng-show="registrationForm.username.$error.email">{{errors.INVALID_EMAIL}}</li> <li ng-show="registrationForm.username.$error.maxlength">{{errors.LONG_USERNAME}}</li> </ul> </div> <div class="form-group"> <label for="password" class="control-label col-xs-2">Password</label> <div class="col-xs-10"> <input type="text" name="password" id="password" class="form-control" ng-model="account.password" role="textbox" tabindex="2" placeholder="6 characters or more" ng-required="true" ng-minlength="6" ng-change="validateSamePasswords()" ai-enter="validateForm()" /> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.password.$invalid"> <ul> <li ng-show="registrationForm.password.$error.required">{{errors.EMPTY_PASSWORD}}</li> <li ng-show="registrationForm.password.$error.diffpassword">{{errors.DIFF_PASSWORD}}</li> <li ng-show="registrationForm.password.$error.minlength">{{errors.SHORT_PASSWORD}}</li> </ul> </div> <div class="form-group"> <label for="passwordConfirm" class="control-label col-xs-2">Confirm Password</label> <div class="col-xs-10"> <input type="text" name="passwordConfirm" id="passwordConfirm" class="form-control" ng-model="account.passwordConfirm" role="textbox" tabindex="3" placeholder="Confirm your password" ng-required="true" ng-minlength="6" ng-change="validateSamePasswords()" ai-enter="validateForm()" /> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.passwordConfirm.$invalid"> <ul> <li ng-show="registrationForm.passwordConfirm.$error.required">{{errors.EMPTY_PASSWORD}}</li> <li ng-show="registrationForm.passwordConfirm.$error.diffpassword">{{errors.DIFF_PASSWORD}}</li> <li ng-show="registrationForm.passwordConfirm.$error.minlength">{{errors.SHORT_PASSWORD}}</li> </ul> </div> </div> <h3>Please enter your name and date of birth</h3> <div id="personal-info"> <div class="form-group"> <label for="firstName" class="control-label col-xs-2">First Name</label> <div class="col-xs-10"> <input type="text" name="firstName" id="firstName" class="form-control" ng-model="account.firstName" role="textbox" tabindex="4" ng-required="true" ng-maxlength="50" ng-pattern="/^[a-zA-Z]+$/" ai-enter="validateForm()" /> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.firstName.$invalid"> <ul> <li ng-show="registrationForm.firstName.$error.required">{{errors.EMPTY_FIRSTNAME}}</li> <li ng-show="registrationForm.firstName.$error.maxlength">{{errors.LONG_NAME}}</li> <li ng-show="registrationForm.firstName.$error.pattern">{{errors.INVALID_NAME}}</li> </ul> </div> <div class="form-group"> <label for="lastName" class="control-label col-xs-2">Last Name</label> <div class="col-xs-10"> <input type="text" name="lastName" id="lastName" class="form-control" ng-model="account.lastName" role="textbox" tabindex="5" ng-maxlength="50" ng-pattern="/^[a-zA-Z]*$/" ai-enter="validateForm()" /> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.lastName.$invalid"> <ul> <li ng-show="registrationForm.lastName.$error.maxlength">{{errors.LONG_NAME}}</li> <li ng-show="registrationForm.lastName.$error.pattern">{{errors.INVALID_NAME}}</li> </ul> </div> <div class="form-group"> <label class="control-label col-xs-2">Date of Birth</label> <div class="col-xs-10"> <p class="input-group"> <input type="text" name="dateOfBirth" id="dateOfBirth" class="form-control" datepicker-popup="MM/dd/yyyy" datepicker-options="dateOptions" ng-model="account.dateOfBirth" is-open="opened" min-date="minDate" max-date="maxDate" ng-required="true" close-text="Close" /> <span class="input-group-btn"> <button type="button" class="btn btn-default" ng-click="openCalendar($event)"><i class="glyphicon glyphicon-calendar"></i></button> </span> </p> </div> </div> <div class="alert alert-danger col-xs-offset-2 col-xs-10" ng-show="registrationForm.submitted && registrationForm.dateOfBirth.$invalid"> <ul> <li ng-show="registrationForm.dateOfBirth.$error.required">{{errors.INVALID_DATE}}</li> </ul> </div> </div> <br /> <div id="controls" class="form-group"> <div class="col-xs-offset-2 col-xs-10"> <button type="button" name="submitBtn" id="submitBtn" class="btn btn-primary btn-lg" role="button" value="Submit" ng-click="validateForm()">Submit</button> <button type="button" name="clearBtn" id="clearBtn" class="btn btn-warning btn-lg" role="button" value="Clear Form" ng-click="clearForm()">Clear Form</button> </div> </div> </form> </article>
aldohb/signup
app/views/signup.html
HTML
mit
7,749
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_31) on Wed Apr 08 00:23:41 MDT 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Deprecated List (rarefied-redis-java 0.0.5 Test API)</title> <meta name="date" content="2015-04-08"> <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Deprecated List (rarefied-redis-java 0.0.5 Test API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</li> <li><a href="index-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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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="Deprecated API" class="title">Deprecated API</h1> <h2 title="Contents">Contents</h2> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</li> <li><a href="index-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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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>Copyright &#169; 2015. All rights reserved.</small></p> </body> </html>
wilkenstein/rarefied-redis-java
target/site/testapidocs/deprecated-list.html
HTML
mit
3,746
<!DOCTYPE html> <html lang="en"> <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, maximum-scale=1.0, user-scalable=no"> <title>Typography - Fort</title> <link rel="stylesheet" type="text/css" href="../build/fort.min.css" /> </head> <body> <div class="container"> <section id="typography"> <h1>h1 Title <small>h1 Small</small></h1> <h2>h2 Title <small>h2 Small</small></h2> <h3>h3 Title <small>h3 Small</small></h3> <h4>h4 Title <small>h4 Small</small></h4> <h5>h5 Title <small>h5 Small</small></h5> <h6>h6 Title <small>h6 Small</small></h6> <span class="h2">Span as h2 Title <small>h2 Small</small></span> <p><strong>strong</strong></p> <p><em>emphasis</em></p> <p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur. Curabitur blandit tempus porttitor. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p> <p class="lead">Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur.</p> <hr> <blockquote> <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras justo odio, dapibus ac facilisis in, egestas eget quam. Aenean lacinia bibendum nulla sed consectetur.</p> <cite>Name</cite> </blockquote> <p class="pullout">Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Cras mattis consectetur purus sit amet fermentum. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.</p> <ul> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum <ul> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum</li> </ul> </li> </ul> <ol> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum <ol> <li>Vehicula Dapibus Tellus Fermentum</li> <li>Vehicula Dapibus Tellus Fermentum</li> </ol> </li> </ol> <dl> <dt>Fringilla Ipsum Tellus</dt> <dd>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</dd> <dt>Fringilla Ipsum Tellus</dt> <dd>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</dd> <dt>Fringilla Ipsum Tellus</dt> <dd>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</dd> </dl> <code>&lt;p&gt;code&lt;/p&gt;</code> <pre><code><code>&lt;p&gt;pre&lt;/p&gt;</code></code></pre> <p>Save file: <kbd>cmd</kbd> + <kbd>S</kbd></p> <p class="alert">Alert</p> <p class="alert error">Alert error</p> <p class="alert info">Alert info</p> <p class="alert success">Alert success</p> <p class="alert warning">Alert warning</p> </section> </body> </html>
olumby/fort
examples/typography.html
HTML
mit
3,758
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>V8 API Reference Guide for node.js v0.6.5: Class Members - Variables</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.6.5 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li class="current"><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_type.html"><span>Typedefs</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> </ul> </div> </div><!-- top --> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> &#160;<ul> <li>kPersistentHandleNoClassId : <a class="el" href="classv8_1_1_heap_profiler.html#a272c9af3ea5cd90a2737af3d22a7eb78">v8::HeapProfiler</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:47:44 for V8 API Reference Guide for node.js v0.6.5 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
v8-dox/v8-dox.github.io
1cf26e2/html/functions_vars.html
HTML
mit
4,559
<!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Welcome to Valdis documentation! &mdash; Valdi 0.12.0 documentation</title> <link rel="stylesheet" href="_static/css/theme.css" type="text/css" /> <link rel="index" title="Index" href="genindex.html"/> <link rel="search" title="Search" href="search.html"/> <link rel="top" title="Valdi 0.12.0 documentation" href="#"/> <link rel="next" title="Getting Started" href="manual/gettingstarted.html"/> <script src="_static/js/modernizr.min.js"></script> </head> <body class="wy-body-for-nav" role="document"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search"> <a href="#" class="icon icon-home"> Valdi </a> <div class="version"> 0.12.0 </div> <div role="search"> <form id="rtd-search-form" class="wy-form" action="search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <p class="caption"><span class="caption-text">Manual</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="manual/gettingstarted.html">Getting Started</a></li> <li class="toctree-l1"><a class="reference internal" href="manual/validators.html">Validators</a></li> <li class="toctree-l1"><a class="reference internal" href="manual/ownrules.html">Own Rules</a></li> <li class="toctree-l1"><a class="reference internal" href="manual/rulesdatastructure.html">The Rules Data Structure</a></li> </ul> <p class="caption"><span class="caption-text">API</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="api/RulesBuilder.html">Valdi\RulesBuilder</a></li> <li class="toctree-l1"><a class="reference internal" href="api/ValidationException.html">Valdi\ValidationException</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator.html">Valdi\Validator</a></li> <li class="toctree-l1"><a class="reference internal" href="api/ValidatorException.html">Valdi\ValidatorException</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractArray.html">Valdi\Validator\AbstractArray</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractFilter.html">Valdi\Validator\AbstractFilter</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractParametrizedValidator.html">Valdi\Validator\AbstractParametrizedValidator</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Boolean.html">Valdi\Validator\Boolean</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Contains.html">Valdi\Validator\Contains</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/DateTime.html">Valdi\Validator\DateTime</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/InSet.html">Valdi\Validator\InSet</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/OrCombine.html">Valdi\Validator\OrCombine</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Required.html">Valdi\Validator\Required</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/ValidatorInterface.html">Valdi\Validator\ValidatorInterface</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" role="navigation" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="#">Valdi</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="#">Docs</a> &raquo;</li> <li>Welcome to Valdis documentation!</li> <li class="wy-breadcrumbs-aside"> <a href="_sources/index.rst.txt" rel="nofollow"> View page source</a> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <div class="section" id="welcome-to-valdis-documentation"> <h1>Welcome to Valdis documentation!<a class="headerlink" href="#welcome-to-valdis-documentation" title="Permalink to this headline">¶</a></h1> <p>This is the documentation of Valdi, a very easy to use, yet feature complete data validation library.</p> <p>Reasons to use Valdi:</p> <ul class="simple"> <li>Easy to use</li> <li>Feature complete</li> <li>Lightweight, without dependencies</li> <li>Well documented</li> <li>Well tested</li> <li>Extensible</li> </ul> <p>Requirements:</p> <ul class="simple"> <li>PHP &gt;= 5.5</li> </ul> <p>Contents:</p> <div class="toctree-wrapper compound"> <p class="caption"><span class="caption-text">Manual</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="manual/gettingstarted.html">Getting Started</a><ul> <li class="toctree-l2"><a class="reference internal" href="manual/gettingstarted.html#setup">Setup</a></li> <li class="toctree-l2"><a class="reference internal" href="manual/gettingstarted.html#usage">Usage</a><ul> <li class="toctree-l3"><a class="reference internal" href="manual/gettingstarted.html#rules">Rules</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/gettingstarted.html#validation">Validation</a></li> </ul> </li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="manual/validators.html">Validators</a><ul> <li class="toctree-l2"><a class="reference internal" href="manual/validators.html#basics-and-miscellaneous">Basics and Miscellaneous</a><ul> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#boolean">boolean</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#collection">collection</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#nested">nested</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#inset">inSet</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#required">required</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#or">or</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="manual/validators.html#strings">Strings</a><ul> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#alphabetical">alphabetical</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#alphanumerical">alphaNumerical</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#contains">contains</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#email">email</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#ip">ip</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#ipv4">ipv4</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#ipv6">ipv6</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#lengthbetween">lengthBetween</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#maxlength">maxLength</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#minlength">minLength</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#regexp">regexp</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#slug">slug</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#url">url</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#value">value</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="manual/validators.html#numerical">Numerical</a><ul> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#between">between</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#floating">floating</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#integer">integer</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#max">max</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#min">min</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="manual/validators.html#dates-and-times">Dates and Times</a><ul> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#afterdatetime">afterDateTime</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#beforedatetime">beforeDateTime</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#datetime">dateTime</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#datetimebetween">dateTimeBetween</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#inthefuture">inTheFuture</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#inthepast">inThePast</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#olderthan">olderThan</a></li> <li class="toctree-l3"><a class="reference internal" href="manual/validators.html#youngerthan">youngerThan</a></li> </ul> </li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="manual/ownrules.html">Own Rules</a></li> <li class="toctree-l1"><a class="reference internal" href="manual/rulesdatastructure.html">The Rules Data Structure</a></li> </ul> </div> <div class="toctree-wrapper compound"> <p class="caption"><span class="caption-text">API</span></p> <ul> <li class="toctree-l1"><a class="reference internal" href="api/RulesBuilder.html">Valdi\RulesBuilder</a></li> <li class="toctree-l1"><a class="reference internal" href="api/ValidationException.html">Valdi\ValidationException</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator.html">Valdi\Validator</a></li> <li class="toctree-l1"><a class="reference internal" href="api/ValidatorException.html">Valdi\ValidatorException</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractArray.html">Valdi\Validator\AbstractArray</a><ul> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Collection.html">Valdi\Validator\Collection</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Nested.html">Valdi\Validator\Nested</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractFilter.html">Valdi\Validator\AbstractFilter</a><ul> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Email.html">Valdi\Validator\Email</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Floating.html">Valdi\Validator\Floating</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Integer.html">Valdi\Validator\Integer</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/IP.html">Valdi\Validator\IP</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/IPv4.html">Valdi\Validator\IPv4</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/IPv6.html">Valdi\Validator\IPv6</a></li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/Url.html">Valdi\Validator\Url</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/AbstractParametrizedValidator.html">Valdi\Validator\AbstractParametrizedValidator</a><ul> <li class="toctree-l2"><a class="reference internal" href="api/Validator/AbstractComparator.html">Valdi\Validator\AbstractComparator</a><ul> <li class="toctree-l3"><a class="reference internal" href="api/Validator/Between.html">Valdi\Validator\Between</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/LengthBetween.html">Valdi\Validator\LengthBetween</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/Max.html">Valdi\Validator\Max</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/MaxLength.html">Valdi\Validator\MaxLength</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/Min.html">Valdi\Validator\Min</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/MinLength.html">Valdi\Validator\MinLength</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/Regexp.html">Valdi\Validator\Regexp</a><ul> <li class="toctree-l4"><a class="reference internal" href="api/Validator/Alphabetical.html">Valdi\Validator\Alphabetical</a></li> <li class="toctree-l4"><a class="reference internal" href="api/Validator/AlphaNumerical.html">Valdi\Validator\AlphaNumerical</a></li> <li class="toctree-l4"><a class="reference internal" href="api/Validator/Slug.html">Valdi\Validator\Slug</a></li> </ul> </li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/Value.html">Valdi\Validator\Value</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="api/Validator/AbstractDateTimeComparator.html">Valdi\Validator\AbstractDateTimeComparator</a><ul> <li class="toctree-l3"><a class="reference internal" href="api/Validator/AfterDateTime.html">Valdi\Validator\AfterDateTime</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/BeforeDateTime.html">Valdi\Validator\BeforeDateTime</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/DateTimeBetween.html">Valdi\Validator\DateTimeBetween</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/InTheFuture.html">Valdi\Validator\InTheFuture</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/InThePast.html">Valdi\Validator\InThePast</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/OlderThan.html">Valdi\Validator\OlderThan</a></li> <li class="toctree-l3"><a class="reference internal" href="api/Validator/YoungerThan.html">Valdi\Validator\YoungerThan</a></li> </ul> </li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Boolean.html">Valdi\Validator\Boolean</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Contains.html">Valdi\Validator\Contains</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/DateTime.html">Valdi\Validator\DateTime</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/InSet.html">Valdi\Validator\InSet</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/OrCombine.html">Valdi\Validator\OrCombine</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/Required.html">Valdi\Validator\Required</a></li> <li class="toctree-l1"><a class="reference internal" href="api/Validator/ValidatorInterface.html">Valdi\Validator\ValidatorInterface</a></li> </ul> </div> </div> <div class="section" id="indices-and-tables"> <h1>Indices and tables<a class="headerlink" href="#indices-and-tables" title="Permalink to this headline">¶</a></h1> <ul class="simple"> <li><a class="reference internal" href="genindex.html"><span class="std std-ref">Index</span></a></li> <li><a class="reference internal" href="search.html"><span class="std std-ref">Search Page</span></a></li> </ul> </div> </div> </div> <footer> <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> <a href="manual/gettingstarted.html" class="btn btn-neutral float-right" title="Getting Started" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a> </div> <hr/> <div role="contentinfo"> <p> &copy; Copyright 2019, Philip Lehmann-Böhm. </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. </footer> </div> </div> </section> </div> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'./', VERSION:'0.12.0', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/js/theme.js"></script> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.StickyNav.enable(); }); </script> </body> </html>
philiplb/Valdi
docs/html/0.12.0/index.html
HTML
mit
18,303
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Cressent.org - $title$</title> <link rel="stylesheet" type="text/css" href="/styles.css" /> </head> <body> <div id="header"> $partial("templates/header.html")$ </div> <div id="content"> $body$ </div> <div class="footer"> $partial("templates/footer.html")$ </div> </body> </html>
ccressent/cressent.org
src/templates/main.html
HTML
mit
383
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; b63f1f02-a4a6-4a36-a9fa-a8be47a8e9ef </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#TwitterOAuth.RestAPI">TwitterOAuth.RestAPI</a></strong></td> <td class="text-center">97.96 %</td> <td class="text-center">89.80 %</td> <td class="text-center">100.00 %</td> <td class="text-center">89.80 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="TwitterOAuth.RestAPI"><h3>TwitterOAuth.RestAPI</h3></a> <table> <tbody> <tr> <th>Target type</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> <th>Recommended changes</th> </tr> <tr> <td>System.Collections.Specialized.NameValueCollection</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AllKeys</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Cryptography.HashAlgorithm</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ComputeHash(System.Byte[])</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Cryptography.HMACSHA1</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Currently there is no workaround, but we are working on it. Please check back.</td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Byte[])</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Currently there is no workaround, but we are working on it. Please check back.</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Text.Encoding</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ASCII</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpUtility</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">ParseQueryString(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
kuhlenh/port-to-core
Reports/wa/wadewegner.twitter.restapi.0.0.2/TwitterOAuth.RestAPI-net451.html
HTML
mit
17,202
<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <meta name="description"> <meta name="keywords" content="static content generator,static site generator,static site,HTML,web development,.NET,C#,Razor,Markdown,YAML"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/OpenTl.Schema/assets/img/favicon.ico" type="image/x-icon"> <title>OpenTl.Schema - API - ISecureCredentialsEncrypted Interface</title> <link href="/OpenTl.Schema/assets/css/mermaid.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/highlight.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/theme/theme.css" rel="stylesheet"> <link href="//fonts.googleapis.com/css?family=Roboto+Mono:400,700|Roboto:400,400i,700,700i" rel="stylesheet"> <link href="/OpenTl.Schema/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/OpenTl.Schema/assets/css/override.css" rel="stylesheet"> <script src="/OpenTl.Schema/assets/js/jquery-2.2.3.min.js"></script> <script src="/OpenTl.Schema/assets/js/bootstrap.min.js"></script> <script src="/OpenTl.Schema/assets/js/app.min.js"></script> <script src="/OpenTl.Schema/assets/js/highlight.pack.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.slimscroll.min.js"></script> <script src="/OpenTl.Schema/assets/js/jquery.sticky-kit.min.js"></script> <script src="/OpenTl.Schema/assets/js/mermaid.min.js"></script> <!--[if lt IE 9]> <script src="/OpenTl.Schema/assets/js/html5shiv.min.js"></script> <script src="/OpenTl.Schema/assets/js/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition wyam layout-boxed "> <div class="top-banner"></div> <div class="wrapper with-container"> <!-- Header --> <header class="main-header"> <a href="/OpenTl.Schema/" class="logo"> <span>OpenTl.Schema</span> </a> <nav class="navbar navbar-static-top" role="navigation"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle visible-xs-block" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-right"></i> </a> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"> <span class="sr-only">Toggle side menu</span> <i class="fa fa-chevron-circle-down"></i> </button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="/OpenTl.Schema/about.html">About This Project</a></li> <li class="active"><a href="/OpenTl.Schema/api">API</a></li> </ul> </div> <!-- /.navbar-collapse --> <!-- Navbar Right Menu --> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar "> <section class="infobar" data-spy="affix" data-offset-top="60" data-offset-bottom="200"> <div id="infobar-headings"><h6>On This Page</h6><p><a href="#Syntax">Syntax</a></p> <p><a href="#Properties">Properties</a></p> <p><a href="#ExtensionMethods">Extension Methods</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/OpenTl.Schema/assets/js/lunr.min.js"></script> <script src="/OpenTl.Schema/assets/js/searchIndex.js"></script> <div class="sidebar-form"> <div class="input-group"> <input type="text" name="search" id="search" class="form-control" placeholder="Search Types..."> <span class="input-group-btn"> <button class="btn btn-flat"><i class="fa fa-search"></i></button> </span> </div> </div> <div id="search-results"> </div> <script> function runSearch(query){ $("#search-results").empty(); if( query.length < 2 ){ return; } var results = searchModule.search("*" + query + "*"); var listHtml = "<ul class='sidebar-menu'>"; listHtml += "<li class='header'>Type Results</li>"; if(results.length == 0 ){ listHtml += "<li>No results found</li>"; } else { for(var i = 0; i < results.length; ++i){ var res = results[i]; listHtml += "<li><a href='" + res.url + "'>" + htmlEscape(res.title) + "</a></li>"; } } listHtml += "</ul>"; $("#search-results").append(listHtml); } $(document).ready(function(){ $("#search").on('input propertychange paste', function() { runSearch($("#search").val()); }); }); function htmlEscape(html) { return document.createElement('div') .appendChild(document.createTextNode(html)) .parentNode .innerHTML; } </script> <hr> <ul class="sidebar-menu"> <li class="header">Namespace</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></li> <li role="separator" class="divider"></li> <li class="header">Class Types</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/MsgContainer">MsgContainer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestDestroyAuthKey">Request<wbr>Destroy<wbr>Auth<wbr>Key</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestDestroySession">Request<wbr>Destroy<wbr>Session</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestGetFutureSalts">Request<wbr>Get<wbr>Future<wbr>Salts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInitConnection">Request<wbr>Init<wbr>Connection</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeAfterMsg">Request<wbr>Invoke<wbr>After<wbr>Msg</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeAfterMsgs">Request<wbr>Invoke<wbr>After<wbr>Msgs</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeWithLayer">Request<wbr>Invoke<wbr>With<wbr>Layer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeWithMessagesRange">Request<wbr>Invoke<wbr>With<wbr>Messages<wbr>Range</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeWithoutUpdates">Request<wbr>Invoke<wbr>Without<wbr>Updates</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestInvokeWithTakeout">Request<wbr>Invoke<wbr>With<wbr>Takeout</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestPing">RequestPing</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestPingDelayDisconnect">Request<wbr>Ping<wbr>Delay<wbr>Disconnect</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestReqDHParams">RequestReqDHParams</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestReqPq">RequestReqPq</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestReqPqMulti">RequestReqPqMulti</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestRpcDropAnswer">RequestRpcDropAnswer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/RequestSetClientDHParams">Request<wbr>Set<wbr>Client<wbr>D<wbr>H<wbr>Params</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/SchemaInfo">SchemaInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TAccessPointRule">TAccessPointRule</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TAccountDaysTTL">TAccountDaysTTL</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TAuthorization">TAuthorization</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBadMsgNotification">TBadMsgNotification</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBadServerSalt">TBadServerSalt</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBoolFalse">TBoolFalse</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBoolTrue">TBoolTrue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotCommand">TBotCommand</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInfo">TBotInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMediaResult">T<wbr>Bot<wbr>Inline<wbr>Media<wbr>Result</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMessageMediaAuto">T<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Auto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMessageMediaContact">T<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Contact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMessageMediaGeo">T<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Geo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMessageMediaVenue">T<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Venue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineMessageText">T<wbr>Bot<wbr>Inline<wbr>Message<wbr>Text</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TBotInlineResult">TBotInlineResult</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TCdnConfig">TCdnConfig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TCdnPublicKey">TCdnPublicKey</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannel">TChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEvent">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionChangeAbout">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Change<wbr>About</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionChangePhoto">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Change<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionChangeStickerSet">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Change<wbr>Sticker<wbr>Set</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionChangeTitle">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Change<wbr>Title</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionChangeUsername">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Change<wbr>Username</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionDeleteMessage">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Delete<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionEditMessage">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Edit<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionParticipantInvite">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Participant<wbr>Invite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionParticipantJoin">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Participant<wbr>Join</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionParticipantLeave">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Participant<wbr>Leave</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionParticipantToggleAdmin">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Participant<wbr>Toggle<wbr>Admin</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionParticipantToggleBan">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Participant<wbr>Toggle<wbr>Ban</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionToggleInvites">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Toggle<wbr>Invites</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionTogglePreHistoryHidden">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Toggle<wbr>Pre<wbr>History<wbr>Hidden</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionToggleSignatures">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Toggle<wbr>Signatures</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventActionUpdatePinned">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action<wbr>Update<wbr>Pinned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminLogEventsFilter">T<wbr>Channel<wbr>Admin<wbr>Log<wbr>Events<wbr>Filter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelAdminRights">TChannelAdminRights</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelBannedRights">TChannelBannedRights</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelForbidden">TChannelForbidden</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelFull">TChannelFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelMessagesFilter">T<wbr>Channel<wbr>Messages<wbr>Filter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelMessagesFilterEmpty">T<wbr>Channel<wbr>Messages<wbr>Filter<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipant">TChannelParticipant</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantAdmin">T<wbr>Channel<wbr>Participant<wbr>Admin</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantBanned">T<wbr>Channel<wbr>Participant<wbr>Banned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantCreator">T<wbr>Channel<wbr>Participant<wbr>Creator</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsAdmins">T<wbr>Channel<wbr>Participants<wbr>Admins</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsBanned">T<wbr>Channel<wbr>Participants<wbr>Banned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsBots">T<wbr>Channel<wbr>Participants<wbr>Bots</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantSelf">T<wbr>Channel<wbr>Participant<wbr>Self</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsKicked">T<wbr>Channel<wbr>Participants<wbr>Kicked</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsRecent">T<wbr>Channel<wbr>Participants<wbr>Recent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChannelParticipantsSearch">T<wbr>Channel<wbr>Participants<wbr>Search</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChat">TChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatEmpty">TChatEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatForbidden">TChatForbidden</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatFull">TChatFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatInvite">TChatInvite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatInviteAlready">TChatInviteAlready</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatInviteEmpty">TChatInviteEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatInviteExported">TChatInviteExported</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatParticipant">TChatParticipant</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatParticipantAdmin">T<wbr>Chat<wbr>Participant<wbr>Admin</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatParticipantCreator">T<wbr>Chat<wbr>Participant<wbr>Creator</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatParticipants">TChatParticipants</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatParticipantsForbidden">T<wbr>Chat<wbr>Participants<wbr>Forbidden</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatPhoto">TChatPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TChatPhotoEmpty">TChatPhotoEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TClientDHInnerData">TClientDHInnerData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TConfig">TConfig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContact">TContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactBlocked">TContactBlocked</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactLinkContact">TContactLinkContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactLinkHasPhone">TContactLinkHasPhone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactLinkNone">TContactLinkNone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactLinkUnknown">TContactLinkUnknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContactStatus">TContactStatus</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TContainerMessage">TContainerMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDataJSON">TDataJSON</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDcOption">TDcOption</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDestroyAuthKeyFail">TDestroyAuthKeyFail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDestroyAuthKeyNone">TDestroyAuthKeyNone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDestroyAuthKeyOk">TDestroyAuthKeyOk</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDestroySessionNone">TDestroySessionNone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDestroySessionOk">TDestroySessionOk</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDhGenFail">TDhGenFail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDhGenOk">TDhGenOk</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDhGenRetry">TDhGenRetry</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDialog">TDialog</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDialogPeer">TDialogPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocument">TDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeAnimated">T<wbr>Document<wbr>Attribute<wbr>Animated</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeAudio">T<wbr>Document<wbr>Attribute<wbr>Audio</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeFilename">T<wbr>Document<wbr>Attribute<wbr>Filename</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeHasStickers">T<wbr>Document<wbr>Attribute<wbr>Has<wbr>Stickers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeImageSize">T<wbr>Document<wbr>Attribute<wbr>Image<wbr>Size</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeSticker">T<wbr>Document<wbr>Attribute<wbr>Sticker</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentAttributeVideo">T<wbr>Document<wbr>Attribute<wbr>Video</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDocumentEmpty">TDocumentEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDraftMessage">TDraftMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TDraftMessageEmpty">TDraftMessageEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedChat">TEncryptedChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedChatDiscarded">T<wbr>Encrypted<wbr>Chat<wbr>Discarded</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedChatEmpty">TEncryptedChatEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedChatRequested">T<wbr>Encrypted<wbr>Chat<wbr>Requested</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedChatWaiting">T<wbr>Encrypted<wbr>Chat<wbr>Waiting</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedFile">TEncryptedFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedFileEmpty">TEncryptedFileEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedMessage">TEncryptedMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TEncryptedMessageService">T<wbr>Encrypted<wbr>Message<wbr>Service</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TError">TError</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TExportedMessageLink">TExportedMessageLink</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFileHash">TFileHash</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFileLocation">TFileLocation</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFileLocationUnavailable">T<wbr>File<wbr>Location<wbr>Unavailable</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFoundGif">TFoundGif</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFoundGifCached">TFoundGifCached</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFutureSalt">TFutureSalt</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TFutureSalts">TFutureSalts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TGame">TGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TGeoPoint">TGeoPoint</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TGeoPointEmpty">TGeoPointEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TgZipPacked">TgZipPacked</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/THighScore">THighScore</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/THttpWait">THttpWait</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TImportedContact">TImportedContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInlineBotSwitchPM">TInlineBotSwitchPM</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputAppEvent">TInputAppEvent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageGame">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Game</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageID">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>I<wbr>D</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageMediaAuto">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Auto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageMediaContact">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Contact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageMediaGeo">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Geo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageMediaVenue">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Media<wbr>Venue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineMessageText">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>Text</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineResult">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Result</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineResultDocument">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Result<wbr>Document</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineResultGame">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Result<wbr>Game</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputBotInlineResultPhoto">T<wbr>Input<wbr>Bot<wbr>Inline<wbr>Result<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputChannel">TInputChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputChannelEmpty">TInputChannelEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputChatPhoto">TInputChatPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputChatPhotoEmpty">TInputChatPhotoEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputChatUploadedPhoto">T<wbr>Input<wbr>Chat<wbr>Uploaded<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputCheckPasswordEmpty">T<wbr>Input<wbr>Check<wbr>Password<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputCheckPasswordSRP">T<wbr>Input<wbr>Check<wbr>Password<wbr>S<wbr>R<wbr>P</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputClientProxy">TInputClientProxy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputDialogPeer">TInputDialogPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputDocument">TInputDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputDocumentEmpty">TInputDocumentEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputDocumentFileLocation">T<wbr>Input<wbr>Document<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedChat">TInputEncryptedChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedFile">TInputEncryptedFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedFileBigUploaded">T<wbr>Input<wbr>Encrypted<wbr>File<wbr>Big<wbr>Uploaded</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedFileEmpty">T<wbr>Input<wbr>Encrypted<wbr>File<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedFileLocation">T<wbr>Input<wbr>Encrypted<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputEncryptedFileUploaded">T<wbr>Input<wbr>Encrypted<wbr>File<wbr>Uploaded</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputFile">TInputFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputFileBig">TInputFileBig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputFileLocation">TInputFileLocation</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputGameID">TInputGameID</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputGameShortName">TInputGameShortName</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputGeoPoint">TInputGeoPoint</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputGeoPointEmpty">TInputGeoPointEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaContact">TInputMediaContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaDocument">TInputMediaDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaDocumentExternal">T<wbr>Input<wbr>Media<wbr>Document<wbr>External</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaEmpty">TInputMediaEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaGame">TInputMediaGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaGeoLive">TInputMediaGeoLive</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaGeoPoint">TInputMediaGeoPoint</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaGifExternal">T<wbr>Input<wbr>Media<wbr>Gif<wbr>External</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaInvoice">TInputMediaInvoice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaPhoto">TInputMediaPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaPhotoExternal">T<wbr>Input<wbr>Media<wbr>Photo<wbr>External</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaUploadedDocument">T<wbr>Input<wbr>Media<wbr>Uploaded<wbr>Document</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaUploadedPhoto">T<wbr>Input<wbr>Media<wbr>Uploaded<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMediaVenue">TInputMediaVenue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessageEntityMentionName">T<wbr>Input<wbr>Message<wbr>Entity<wbr>Mention<wbr>Name</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessageID">TInputMessageID</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagePinned">TInputMessagePinned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessageReplyTo">TInputMessageReplyTo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterChatPhotos">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Chat<wbr>Photos</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterContacts">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Contacts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterDocument">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Document</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterEmpty">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterGeo">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Geo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterGif">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Gif</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterMusic">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Music</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterMyMentions">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>My<wbr>Mentions</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterPhoneCalls">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Phone<wbr>Calls</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterPhotos">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Photos</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterPhotoVideo">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Photo<wbr>Video</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterRoundVideo">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Round<wbr>Video</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterRoundVoice">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Round<wbr>Voice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterUrl">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Url</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterVideo">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Video</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputMessagesFilterVoice">T<wbr>Input<wbr>Messages<wbr>Filter<wbr>Voice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputNotifyChats">TInputNotifyChats</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputNotifyPeer">TInputNotifyPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputNotifyUsers">TInputNotifyUsers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPaymentCredentials">T<wbr>Input<wbr>Payment<wbr>Credentials</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPaymentCredentialsAndroidPay">T<wbr>Input<wbr>Payment<wbr>Credentials<wbr>Android<wbr>Pay</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPaymentCredentialsApplePay">T<wbr>Input<wbr>Payment<wbr>Credentials<wbr>Apple<wbr>Pay</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPaymentCredentialsSaved">T<wbr>Input<wbr>Payment<wbr>Credentials<wbr>Saved</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerChannel">TInputPeerChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerChat">TInputPeerChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerEmpty">TInputPeerEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerNotifySettings">T<wbr>Input<wbr>Peer<wbr>Notify<wbr>Settings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerSelf">TInputPeerSelf</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPeerUser">TInputPeerUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPhoneCall">TInputPhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPhoneContact">TInputPhoneContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPhoto">TInputPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPhotoEmpty">TInputPhotoEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyKeyChatInvite">T<wbr>Input<wbr>Privacy<wbr>Key<wbr>Chat<wbr>Invite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyKeyPhoneCall">T<wbr>Input<wbr>Privacy<wbr>Key<wbr>Phone<wbr>Call</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyKeyStatusTimestamp">T<wbr>Input<wbr>Privacy<wbr>Key<wbr>Status<wbr>Timestamp</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueAllowAll">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Allow<wbr>All</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueAllowContacts">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Allow<wbr>Contacts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueAllowUsers">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Allow<wbr>Users</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueDisallowAll">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>All</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueDisallowContacts">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>Contacts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputPrivacyValueDisallowUsers">T<wbr>Input<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>Users</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputReportReasonCopyright">T<wbr>Input<wbr>Report<wbr>Reason<wbr>Copyright</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputReportReasonOther">T<wbr>Input<wbr>Report<wbr>Reason<wbr>Other</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputReportReasonPornography">T<wbr>Input<wbr>Report<wbr>Reason<wbr>Pornography</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputReportReasonSpam">T<wbr>Input<wbr>Report<wbr>Reason<wbr>Spam</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputReportReasonViolence">T<wbr>Input<wbr>Report<wbr>Reason<wbr>Violence</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputSecureFile">TInputSecureFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputSecureFileLocation">T<wbr>Input<wbr>Secure<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputSecureFileUploaded">T<wbr>Input<wbr>Secure<wbr>File<wbr>Uploaded</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputSecureValue">TInputSecureValue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputSingleMedia">TInputSingleMedia</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickeredMediaDocument">T<wbr>Input<wbr>Stickered<wbr>Media<wbr>Document</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickeredMediaPhoto">T<wbr>Input<wbr>Stickered<wbr>Media<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickerSetEmpty">T<wbr>Input<wbr>Sticker<wbr>Set<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickerSetID">TInputStickerSetID</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickerSetItem">TInputStickerSetItem</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputStickerSetShortName">T<wbr>Input<wbr>Sticker<wbr>Set<wbr>Short<wbr>Name</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputTakeoutFileLocation">T<wbr>Input<wbr>Takeout<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputUser">TInputUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputUserEmpty">TInputUserEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputUserSelf">TInputUserSelf</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputWebDocument">TInputWebDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputWebFileGeoPointLocation">T<wbr>Input<wbr>Web<wbr>File<wbr>Geo<wbr>Point<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInputWebFileLocation">T<wbr>Input<wbr>Web<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TInvoice">TInvoice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TIpPort">TIpPort</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TIpPortSecret">TIpPortSecret</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButton">TKeyboardButton</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonBuy">TKeyboardButtonBuy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonCallback">T<wbr>Keyboard<wbr>Button<wbr>Callback</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonGame">TKeyboardButtonGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonRequestGeoLocation">T<wbr>Keyboard<wbr>Button<wbr>Request<wbr>Geo<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonRequestPhone">T<wbr>Keyboard<wbr>Button<wbr>Request<wbr>Phone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonRow">TKeyboardButtonRow</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonSwitchInline">T<wbr>Keyboard<wbr>Button<wbr>Switch<wbr>Inline</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TKeyboardButtonUrl">TKeyboardButtonUrl</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLabeledPrice">TLabeledPrice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLangPackDifference">TLangPackDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLangPackLanguage">TLangPackLanguage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLangPackString">TLangPackString</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLangPackStringDeleted">T<wbr>Lang<wbr>Pack<wbr>String<wbr>Deleted</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TLangPackStringPluralized">T<wbr>Lang<wbr>Pack<wbr>String<wbr>Pluralized</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMaskCoords">TMaskCoords</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessage">TMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionBotAllowed">T<wbr>Message<wbr>Action<wbr>Bot<wbr>Allowed</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChannelCreate">T<wbr>Message<wbr>Action<wbr>Channel<wbr>Create</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChannelMigrateFrom">T<wbr>Message<wbr>Action<wbr>Channel<wbr>Migrate<wbr>From</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatAddUser">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Add<wbr>User</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatCreate">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Create</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatDeletePhoto">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Delete<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatDeleteUser">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Delete<wbr>User</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatEditPhoto">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Edit<wbr>Photo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatEditTitle">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Edit<wbr>Title</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatJoinedByLink">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Joined<wbr>By<wbr>Link</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionChatMigrateTo">T<wbr>Message<wbr>Action<wbr>Chat<wbr>Migrate<wbr>To</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionCustomAction">T<wbr>Message<wbr>Action<wbr>Custom<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionEmpty">TMessageActionEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionGameScore">T<wbr>Message<wbr>Action<wbr>Game<wbr>Score</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionHistoryClear">T<wbr>Message<wbr>Action<wbr>History<wbr>Clear</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionPaymentSent">T<wbr>Message<wbr>Action<wbr>Payment<wbr>Sent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionPaymentSentMe">T<wbr>Message<wbr>Action<wbr>Payment<wbr>Sent<wbr>Me</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionPhoneCall">T<wbr>Message<wbr>Action<wbr>Phone<wbr>Call</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionPinMessage">T<wbr>Message<wbr>Action<wbr>Pin<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionScreenshotTaken">T<wbr>Message<wbr>Action<wbr>Screenshot<wbr>Taken</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionSecureValuesSent">T<wbr>Message<wbr>Action<wbr>Secure<wbr>Values<wbr>Sent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageActionSecureValuesSentMe">T<wbr>Message<wbr>Action<wbr>Secure<wbr>Values<wbr>Sent<wbr>Me</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEmpty">TMessageEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityBold">TMessageEntityBold</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityBotCommand">T<wbr>Message<wbr>Entity<wbr>Bot<wbr>Command</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityCashtag">T<wbr>Message<wbr>Entity<wbr>Cashtag</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityCode">TMessageEntityCode</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityEmail">TMessageEntityEmail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityHashtag">T<wbr>Message<wbr>Entity<wbr>Hashtag</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityItalic">TMessageEntityItalic</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityMention">T<wbr>Message<wbr>Entity<wbr>Mention</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityMentionName">T<wbr>Message<wbr>Entity<wbr>Mention<wbr>Name</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityPhone">TMessageEntityPhone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityPre">TMessageEntityPre</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityTextUrl">T<wbr>Message<wbr>Entity<wbr>Text<wbr>Url</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityUnknown">T<wbr>Message<wbr>Entity<wbr>Unknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageEntityUrl">TMessageEntityUrl</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageFwdHeader">TMessageFwdHeader</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaContact">TMessageMediaContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaDocument">T<wbr>Message<wbr>Media<wbr>Document</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaEmpty">TMessageMediaEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaGame">TMessageMediaGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaGeo">TMessageMediaGeo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaGeoLive">TMessageMediaGeoLive</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaInvoice">TMessageMediaInvoice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaPhoto">TMessageMediaPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaUnsupported">T<wbr>Message<wbr>Media<wbr>Unsupported</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaVenue">TMessageMediaVenue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageMediaWebPage">TMessageMediaWebPage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageRange">TMessageRange</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMessageService">TMessageService</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgDetailedInfo">TMsgDetailedInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgNewDetailedInfo">TMsgNewDetailedInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgResendReq">TMsgResendReq</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgsAck">TMsgsAck</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgsAllInfo">TMsgsAllInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgsStateInfo">TMsgsStateInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TMsgsStateReq">TMsgsStateReq</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNearestDc">TNearestDc</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNewSessionCreated">TNewSessionCreated</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNotifyChats">TNotifyChats</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNotifyPeer">TNotifyPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNotifyUsers">TNotifyUsers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TNull">TNull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockAnchor">TPageBlockAnchor</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockAudio">TPageBlockAudio</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockAuthorDate">TPageBlockAuthorDate</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockBlockquote">TPageBlockBlockquote</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockChannel">TPageBlockChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockCollage">TPageBlockCollage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockCover">TPageBlockCover</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockDivider">TPageBlockDivider</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockEmbed">TPageBlockEmbed</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockEmbedPost">TPageBlockEmbedPost</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockFooter">TPageBlockFooter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockHeader">TPageBlockHeader</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockList">TPageBlockList</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockParagraph">TPageBlockParagraph</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockPhoto">TPageBlockPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockPreformatted">T<wbr>Page<wbr>Block<wbr>Preformatted</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockPullquote">TPageBlockPullquote</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockSlideshow">TPageBlockSlideshow</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockSubheader">TPageBlockSubheader</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockSubtitle">TPageBlockSubtitle</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockTitle">TPageBlockTitle</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockUnsupported">T<wbr>Page<wbr>Block<wbr>Unsupported</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageBlockVideo">TPageBlockVideo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPageFull">TPageFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPagePart">TPagePart</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPasswordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow">T<wbr>Password<wbr>Kdf<wbr>Algo<wbr>S<wbr>H<wbr>A256<wbr>S<wbr>H<wbr>A256<wbr>P<wbr>B<wbr>K<wbr>D<wbr>F2<wbr>H<wbr>M<wbr>A<wbr>C<wbr>S<wbr>H<wbr>A512iter100000<wbr>S<wbr>H<wbr>A256<wbr>Mod<wbr>Pow</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPasswordKdfAlgoUnknown">T<wbr>Password<wbr>Kdf<wbr>Algo<wbr>Unknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPaymentCharge">TPaymentCharge</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPaymentRequestedInfo">T<wbr>Payment<wbr>Requested<wbr>Info</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPaymentSavedCredentialsCard">T<wbr>Payment<wbr>Saved<wbr>Credentials<wbr>Card</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPeerChannel">TPeerChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPeerChat">TPeerChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPeerNotifySettings">TPeerNotifySettings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPeerSettings">TPeerSettings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPeerUser">TPeerUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCall">TPhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallAccepted">TPhoneCallAccepted</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallDiscarded">TPhoneCallDiscarded</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallDiscardReasonBusy">T<wbr>Phone<wbr>Call<wbr>Discard<wbr>Reason<wbr>Busy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallDiscardReasonDisconnect">T<wbr>Phone<wbr>Call<wbr>Discard<wbr>Reason<wbr>Disconnect</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallDiscardReasonHangup">T<wbr>Phone<wbr>Call<wbr>Discard<wbr>Reason<wbr>Hangup</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallDiscardReasonMissed">T<wbr>Phone<wbr>Call<wbr>Discard<wbr>Reason<wbr>Missed</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallEmpty">TPhoneCallEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallProtocol">TPhoneCallProtocol</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallRequested">TPhoneCallRequested</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneCallWaiting">TPhoneCallWaiting</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoneConnection">TPhoneConnection</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhoto">TPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhotoCachedSize">TPhotoCachedSize</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhotoEmpty">TPhotoEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhotoSize">TPhotoSize</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPhotoSizeEmpty">TPhotoSizeEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPong">TPong</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPopularContact">TPopularContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPostAddress">TPostAddress</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPQInnerData">TPQInnerData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPQInnerDataDc">TPQInnerDataDc</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPQInnerDataTemp">TPQInnerDataTemp</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPQInnerDataTempDc">TPQInnerDataTempDc</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyKeyChatInvite">T<wbr>Privacy<wbr>Key<wbr>Chat<wbr>Invite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyKeyPhoneCall">TPrivacyKeyPhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyKeyStatusTimestamp">T<wbr>Privacy<wbr>Key<wbr>Status<wbr>Timestamp</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueAllowAll">T<wbr>Privacy<wbr>Value<wbr>Allow<wbr>All</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueAllowContacts">T<wbr>Privacy<wbr>Value<wbr>Allow<wbr>Contacts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueAllowUsers">T<wbr>Privacy<wbr>Value<wbr>Allow<wbr>Users</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueDisallowAll">T<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>All</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueDisallowContacts">T<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>Contacts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TPrivacyValueDisallowUsers">T<wbr>Privacy<wbr>Value<wbr>Disallow<wbr>Users</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TReceivedNotifyMessage">T<wbr>Received<wbr>Notify<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRecentMeUrlChat">TRecentMeUrlChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRecentMeUrlChatInvite">T<wbr>Recent<wbr>Me<wbr>Url<wbr>Chat<wbr>Invite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRecentMeUrlStickerSet">T<wbr>Recent<wbr>Me<wbr>Url<wbr>Sticker<wbr>Set</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRecentMeUrlUnknown">TRecentMeUrlUnknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRecentMeUrlUser">TRecentMeUrlUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TReplyInlineMarkup">TReplyInlineMarkup</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TReplyKeyboardForceReply">T<wbr>Reply<wbr>Keyboard<wbr>Force<wbr>Reply</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TReplyKeyboardHide">TReplyKeyboardHide</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TReplyKeyboardMarkup">TReplyKeyboardMarkup</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TResPQ">TResPQ</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRpcAnswerDropped">TRpcAnswerDropped</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRpcAnswerDroppedRunning">T<wbr>Rpc<wbr>Answer<wbr>Dropped<wbr>Running</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRpcAnswerUnknown">TRpcAnswerUnknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRpcError">TRpcError</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRpcResult">TRpcResult</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TRsaPublicKey">TRsaPublicKey</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSavedPhoneContact">TSavedPhoneContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureCredentialsEncrypted">T<wbr>Secure<wbr>Credentials<wbr>Encrypted</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureData">TSecureData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureFile">TSecureFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureFileEmpty">TSecureFileEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecurePasswordKdfAlgoPBKDF2HMACSHA512iter100000">T<wbr>Secure<wbr>Password<wbr>Kdf<wbr>Algo<wbr>P<wbr>B<wbr>K<wbr>D<wbr>F2<wbr>H<wbr>M<wbr>A<wbr>C<wbr>S<wbr>H<wbr>A512iter100000</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecurePasswordKdfAlgoSHA512">T<wbr>Secure<wbr>Password<wbr>Kdf<wbr>Algo<wbr>S<wbr>H<wbr>A512</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecurePasswordKdfAlgoUnknown">T<wbr>Secure<wbr>Password<wbr>Kdf<wbr>Algo<wbr>Unknown</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecurePlainEmail">TSecurePlainEmail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecurePlainPhone">TSecurePlainPhone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureRequiredType">TSecureRequiredType</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureRequiredTypeOneOf">T<wbr>Secure<wbr>Required<wbr>Type<wbr>One<wbr>Of</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureSecretSettings">T<wbr>Secure<wbr>Secret<wbr>Settings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValue">TSecureValue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueError">TSecureValueError</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorData">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Data</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorFile">T<wbr>Secure<wbr>Value<wbr>Error<wbr>File</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorFiles">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Files</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorFrontSide">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Front<wbr>Side</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorReverseSide">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Reverse<wbr>Side</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorSelfie">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Selfie</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorTranslationFile">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Translation<wbr>File</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueErrorTranslationFiles">T<wbr>Secure<wbr>Value<wbr>Error<wbr>Translation<wbr>Files</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueHash">TSecureValueHash</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeAddress">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Address</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeBankStatement">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Bank<wbr>Statement</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeDriverLicense">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Driver<wbr>License</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeEmail">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Email</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeIdentityCard">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Identity<wbr>Card</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeInternalPassport">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Internal<wbr>Passport</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypePassport">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Passport</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypePassportRegistration">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Passport<wbr>Registration</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypePersonalDetails">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Personal<wbr>Details</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypePhone">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Phone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeRentalAgreement">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Rental<wbr>Agreement</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeTemporaryRegistration">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Temporary<wbr>Registration</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureValueTypeUtilityBill">T<wbr>Secure<wbr>Value<wbr>Type<wbr>Utility<wbr>Bill</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageCancelAction">T<wbr>Send<wbr>Message<wbr>Cancel<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageChooseContactAction">T<wbr>Send<wbr>Message<wbr>Choose<wbr>Contact<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageGamePlayAction">T<wbr>Send<wbr>Message<wbr>Game<wbr>Play<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageGeoLocationAction">T<wbr>Send<wbr>Message<wbr>Geo<wbr>Location<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageRecordAudioAction">T<wbr>Send<wbr>Message<wbr>Record<wbr>Audio<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageRecordRoundAction">T<wbr>Send<wbr>Message<wbr>Record<wbr>Round<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageRecordVideoAction">T<wbr>Send<wbr>Message<wbr>Record<wbr>Video<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageTypingAction">T<wbr>Send<wbr>Message<wbr>Typing<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageUploadAudioAction">T<wbr>Send<wbr>Message<wbr>Upload<wbr>Audio<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageUploadDocumentAction">T<wbr>Send<wbr>Message<wbr>Upload<wbr>Document<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageUploadPhotoAction">T<wbr>Send<wbr>Message<wbr>Upload<wbr>Photo<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageUploadRoundAction">T<wbr>Send<wbr>Message<wbr>Upload<wbr>Round<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSendMessageUploadVideoAction">T<wbr>Send<wbr>Message<wbr>Upload<wbr>Video<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TServerDHInnerData">TServerDHInnerData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TServerDHParamsFail">TServerDHParamsFail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TServerDHParamsOk">TServerDHParamsOk</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TShippingOption">TShippingOption</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TStickerPack">TStickerPack</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TStickerSet">TStickerSet</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TStickerSetCovered">TStickerSetCovered</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TStickerSetMultiCovered">T<wbr>Sticker<wbr>Set<wbr>Multi<wbr>Covered</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextBold">TTextBold</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextConcat">TTextConcat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextEmail">TTextEmail</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextEmpty">TTextEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextFixed">TTextFixed</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextItalic">TTextItalic</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextPlain">TTextPlain</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextStrike">TTextStrike</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextUnderline">TTextUnderline</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTextUrl">TTextUrl</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeer">TTopPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryBotsInline">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Bots<wbr>Inline</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryBotsPM">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Bots<wbr>P<wbr>M</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryChannels">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Channels</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryCorrespondents">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Correspondents</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryGroups">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Groups</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryPeers">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Peers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTopPeerCategoryPhoneCalls">T<wbr>Top<wbr>Peer<wbr>Category<wbr>Phone<wbr>Calls</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TTrue">TTrue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotCallbackQuery">T<wbr>Update<wbr>Bot<wbr>Callback<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotInlineQuery">T<wbr>Update<wbr>Bot<wbr>Inline<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotInlineSend">TUpdateBotInlineSend</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotPrecheckoutQuery">T<wbr>Update<wbr>Bot<wbr>Precheckout<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotShippingQuery">T<wbr>Update<wbr>Bot<wbr>Shipping<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotWebhookJSON">T<wbr>Update<wbr>Bot<wbr>Webhook<wbr>J<wbr>S<wbr>O<wbr>N</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateBotWebhookJSONQuery">T<wbr>Update<wbr>Bot<wbr>Webhook<wbr>J<wbr>S<wbr>O<wbr>N<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannel">TUpdateChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelAvailableMessages">T<wbr>Update<wbr>Channel<wbr>Available<wbr>Messages</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelMessageViews">T<wbr>Update<wbr>Channel<wbr>Message<wbr>Views</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelPinnedMessage">T<wbr>Update<wbr>Channel<wbr>Pinned<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelReadMessagesContents">T<wbr>Update<wbr>Channel<wbr>Read<wbr>Messages<wbr>Contents</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelTooLong">T<wbr>Update<wbr>Channel<wbr>Too<wbr>Long</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChannelWebPage">T<wbr>Update<wbr>Channel<wbr>Web<wbr>Page</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatAdmins">TUpdateChatAdmins</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatParticipantAdd">T<wbr>Update<wbr>Chat<wbr>Participant<wbr>Add</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatParticipantAdmin">T<wbr>Update<wbr>Chat<wbr>Participant<wbr>Admin</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatParticipantDelete">T<wbr>Update<wbr>Chat<wbr>Participant<wbr>Delete</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatParticipants">T<wbr>Update<wbr>Chat<wbr>Participants</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateChatUserTyping">T<wbr>Update<wbr>Chat<wbr>User<wbr>Typing</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateConfig">TUpdateConfig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateContactLink">TUpdateContactLink</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateContactRegistered">T<wbr>Update<wbr>Contact<wbr>Registered</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateContactsReset">TUpdateContactsReset</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDcOptions">TUpdateDcOptions</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDeleteChannelMessages">T<wbr>Update<wbr>Delete<wbr>Channel<wbr>Messages</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDeleteMessages">T<wbr>Update<wbr>Delete<wbr>Messages</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDialogPinned">TUpdateDialogPinned</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDialogUnreadMark">T<wbr>Update<wbr>Dialog<wbr>Unread<wbr>Mark</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateDraftMessage">TUpdateDraftMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateEditChannelMessage">T<wbr>Update<wbr>Edit<wbr>Channel<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateEditMessage">TUpdateEditMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateEncryptedChatTyping">T<wbr>Update<wbr>Encrypted<wbr>Chat<wbr>Typing</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateEncryptedMessagesRead">T<wbr>Update<wbr>Encrypted<wbr>Messages<wbr>Read</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateEncryption">TUpdateEncryption</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateFavedStickers">TUpdateFavedStickers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateInlineBotCallbackQuery">T<wbr>Update<wbr>Inline<wbr>Bot<wbr>Callback<wbr>Query</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateLangPack">TUpdateLangPack</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateLangPackTooLong">T<wbr>Update<wbr>Lang<wbr>Pack<wbr>Too<wbr>Long</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateMessageID">TUpdateMessageID</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateNewChannelMessage">T<wbr>Update<wbr>New<wbr>Channel<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateNewEncryptedMessage">T<wbr>Update<wbr>New<wbr>Encrypted<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateNewMessage">TUpdateNewMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateNewStickerSet">TUpdateNewStickerSet</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateNotifySettings">T<wbr>Update<wbr>Notify<wbr>Settings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatePhoneCall">TUpdatePhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatePinnedDialogs">TUpdatePinnedDialogs</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatePrivacy">TUpdatePrivacy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatePtsChanged">TUpdatePtsChanged</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadChannelInbox">T<wbr>Update<wbr>Read<wbr>Channel<wbr>Inbox</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadChannelOutbox">T<wbr>Update<wbr>Read<wbr>Channel<wbr>Outbox</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadFeaturedStickers">T<wbr>Update<wbr>Read<wbr>Featured<wbr>Stickers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadHistoryInbox">T<wbr>Update<wbr>Read<wbr>History<wbr>Inbox</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadHistoryOutbox">T<wbr>Update<wbr>Read<wbr>History<wbr>Outbox</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateReadMessagesContents">T<wbr>Update<wbr>Read<wbr>Messages<wbr>Contents</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateRecentStickers">T<wbr>Update<wbr>Recent<wbr>Stickers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdates">TUpdates</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateSavedGifs">TUpdateSavedGifs</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatesCombined">TUpdatesCombined</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateServiceNotification">T<wbr>Update<wbr>Service<wbr>Notification</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateShort">TUpdateShort</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateShortChatMessage">T<wbr>Update<wbr>Short<wbr>Chat<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateShortMessage">TUpdateShortMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateShortSentMessage">T<wbr>Update<wbr>Short<wbr>Sent<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateStickerSets">TUpdateStickerSets</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateStickerSetsOrder">T<wbr>Update<wbr>Sticker<wbr>Sets<wbr>Order</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdatesTooLong">TUpdatesTooLong</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserBlocked">TUpdateUserBlocked</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserName">TUpdateUserName</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserPhone">TUpdateUserPhone</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserPhoto">TUpdateUserPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserStatus">TUpdateUserStatus</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateUserTyping">TUpdateUserTyping</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUpdateWebPage">TUpdateWebPage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUser">TUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserEmpty">TUserEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserFull">TUserFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserProfilePhoto">TUserProfilePhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserProfilePhotoEmpty">T<wbr>User<wbr>Profile<wbr>Photo<wbr>Empty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusEmpty">TUserStatusEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusLastMonth">TUserStatusLastMonth</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusLastWeek">TUserStatusLastWeek</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusOffline">TUserStatusOffline</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusOnline">TUserStatusOnline</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TUserStatusRecently">TUserStatusRecently</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TVector_1">TVector<wbr>&lt;T&gt;<wbr></a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWallPaper">TWallPaper</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWallPaperSolid">TWallPaperSolid</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebAuthorization">TWebAuthorization</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebDocument">TWebDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebDocumentNoProxy">TWebDocumentNoProxy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebPage">TWebPage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebPageEmpty">TWebPageEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebPageNotModified">TWebPageNotModified</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TWebPagePending">TWebPagePending</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></li> <li class="header">Interface Types</li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IAccessPointRule">IAccessPointRule</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IAccountDaysTTL">IAccountDaysTTL</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IAuthorization">IAuthorization</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBadMsgNotification">IBadMsgNotification</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBool">IBool</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBotCommand">IBotCommand</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBotInfo">IBotInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBotInlineMessage">IBotInlineMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IBotInlineResult">IBotInlineResult</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ICdnConfig">ICdnConfig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ICdnPublicKey">ICdnPublicKey</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelAdminLogEvent">I<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelAdminLogEventAction">I<wbr>Channel<wbr>Admin<wbr>Log<wbr>Event<wbr>Action</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelAdminLogEventsFilter">I<wbr>Channel<wbr>Admin<wbr>Log<wbr>Events<wbr>Filter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelAdminRights">IChannelAdminRights</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelBannedRights">IChannelBannedRights</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelMessagesFilter">I<wbr>Channel<wbr>Messages<wbr>Filter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelParticipant">IChannelParticipant</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChannelParticipantsFilter">I<wbr>Channel<wbr>Participants<wbr>Filter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChat">IChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatCommon">IChatCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatFull">IChatFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatInvite">IChatInvite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatParticipant">IChatParticipant</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatParticipants">IChatParticipants</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IChatPhoto">IChatPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IConfig">IConfig</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IContact">IContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IContactBlocked">IContactBlocked</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IContactLink">IContactLink</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IContactStatus">IContactStatus</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDataJSON">IDataJSON</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDcOption">IDcOption</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDestroyAuthKeyRes">IDestroyAuthKeyRes</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDestroySessionRes">IDestroySessionRes</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDialog">IDialog</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDialogPeer">IDialogPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDocument">IDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDocumentAttribute">IDocumentAttribute</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IDraftMessage">IDraftMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEmpty">IEmpty</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEncryptedChat">IEncryptedChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEncryptedChatCommon">IEncryptedChatCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEncryptedFile">IEncryptedFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IEncryptedMessage">IEncryptedMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IError">IError</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IExportedChatInvite">IExportedChatInvite</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IExportedMessageLink">IExportedMessageLink</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IFileHash">IFileHash</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IFileLocation">IFileLocation</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IFoundGif">IFoundGif</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IFutureSalts">IFutureSalts</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IGame">IGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IGeoPoint">IGeoPoint</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IHighScore">IHighScore</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IImportedContact">IImportedContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInlineBotSwitchPM">IInlineBotSwitchPM</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputAppEvent">IInputAppEvent</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputBotInlineMessage">I<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputBotInlineMessageID">I<wbr>Input<wbr>Bot<wbr>Inline<wbr>Message<wbr>I<wbr>D</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputBotInlineResult">I<wbr>Input<wbr>Bot<wbr>Inline<wbr>Result</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputChannel">IInputChannel</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputChatPhoto">IInputChatPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputChatPhotoCommon">I<wbr>Input<wbr>Chat<wbr>Photo<wbr>Common</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputCheckPasswordSRP">I<wbr>Input<wbr>Check<wbr>Password<wbr>S<wbr>R<wbr>P</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputClientProxy">IInputClientProxy</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputContact">IInputContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputDialogPeer">IInputDialogPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputDocument">IInputDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputEncryptedChat">IInputEncryptedChat</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputEncryptedFile">IInputEncryptedFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputEncryptedFileCommon">I<wbr>Input<wbr>Encrypted<wbr>File<wbr>Common</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputFile">IInputFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputFileLocation">IInputFileLocation</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputGame">IInputGame</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputGeoPoint">IInputGeoPoint</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputMedia">IInputMedia</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputMediaCommon">IInputMediaCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputMessage">IInputMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputNotifyPeer">IInputNotifyPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPaymentCredentials">I<wbr>Input<wbr>Payment<wbr>Credentials</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPeer">IInputPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPeerCommon">IInputPeerCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPeerNotifySettings">I<wbr>Input<wbr>Peer<wbr>Notify<wbr>Settings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoneCall">IInputPhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPhoto">IInputPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPrivacyKey">IInputPrivacyKey</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputPrivacyRule">IInputPrivacyRule</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputSecureFile">IInputSecureFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputSecureValue">IInputSecureValue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputSingleMedia">IInputSingleMedia</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputStickeredMedia">IInputStickeredMedia</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputStickerSet">IInputStickerSet</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputStickerSetCommon">I<wbr>Input<wbr>Sticker<wbr>Set<wbr>Common</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputStickerSetItem">IInputStickerSetItem</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputUser">IInputUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputUserCommon">IInputUserCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputWebDocument">IInputWebDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInputWebFileLocation">I<wbr>Input<wbr>Web<wbr>File<wbr>Location</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IInvoice">IInvoice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IIpPort">IIpPort</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IKeyboardButton">IKeyboardButton</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IKeyboardButtonRow">IKeyboardButtonRow</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ILabeledPrice">ILabeledPrice</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ILangPackDifference">ILangPackDifference</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ILangPackLanguage">ILangPackLanguage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ILangPackString">ILangPackString</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMaskCoords">IMaskCoords</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessage">IMessage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageAction">IMessageAction</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageActionCommon">IMessageActionCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageCommon">IMessageCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageEntity">IMessageEntity</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageFwdHeader">IMessageFwdHeader</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageMedia">IMessageMedia</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageMediaCommon">IMessageMediaCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessageRange">IMessageRange</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessagesFilter">IMessagesFilter</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMessagesFilterCommon">I<wbr>Messages<wbr>Filter<wbr>Common</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IMsgDetailedInfo">IMsgDetailedInfo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/INearestDc">INearestDc</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/INotifyPeer">INotifyPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IObject">IObject</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPage">IPage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPageBlock">IPageBlock</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPasswordKdfAlgo">IPasswordKdfAlgo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPaymentCharge">IPaymentCharge</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPaymentRequestedInfo">I<wbr>Payment<wbr>Requested<wbr>Info</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPaymentSavedCredentials">I<wbr>Payment<wbr>Saved<wbr>Credentials</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPeer">IPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPeerNotifySettings">IPeerNotifySettings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPeerSettings">IPeerSettings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoneCall">IPhoneCall</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoneCallCommon">IPhoneCallCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoneCallDiscardReason">I<wbr>Phone<wbr>Call<wbr>Discard<wbr>Reason</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoneCallProtocol">IPhoneCallProtocol</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoneConnection">IPhoneConnection</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhoto">IPhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhotoSize">IPhotoSize</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPhotoSizeCommon">IPhotoSizeCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPong">IPong</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPopularContact">IPopularContact</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPostAddress">IPostAddress</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPQInnerData">IPQInnerData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPrivacyKey">IPrivacyKey</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IPrivacyRule">IPrivacyRule</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IReceivedNotifyMessage">I<wbr>Received<wbr>Notify<wbr>Message</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRecentMeUrl">IRecentMeUrl</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IReplyMarkup">IReplyMarkup</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IReportReason">IReportReason</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRequest">IRequest</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRequest_1">IRequest<wbr>&lt;TResult&gt;<wbr></a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IResPQ">IResPQ</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRichText">IRichText</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRichTextCommon">IRichTextCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IRpcDropAnswer">IRpcDropAnswer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISavedContact">ISavedContact</a></li> <li class="selected"><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureCredentialsEncrypted">I<wbr>Secure<wbr>Credentials<wbr>Encrypted</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureData">ISecureData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureFile">ISecureFile</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecurePasswordKdfAlgo">I<wbr>Secure<wbr>Password<wbr>Kdf<wbr>Algo</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecurePlainData">ISecurePlainData</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureRequiredType">ISecureRequiredType</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureSecretSettings">I<wbr>Secure<wbr>Secret<wbr>Settings</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureValue">ISecureValue</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureValueError">ISecureValueError</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureValueHash">ISecureValueHash</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureValueType">ISecureValueType</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISendMessageAction">ISendMessageAction</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IServerDHParams">IServerDHParams</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ISetClientDHParamsAnswer">I<wbr>Set<wbr>Client<wbr>D<wbr>H<wbr>Params<wbr>Answer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IShippingOption">IShippingOption</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IStickerPack">IStickerPack</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IStickerSet">IStickerSet</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IStickerSetCovered">IStickerSetCovered</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ITopPeer">ITopPeer</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ITopPeerCategory">ITopPeerCategory</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/ITopPeerCategoryPeers">I<wbr>Top<wbr>Peer<wbr>Category<wbr>Peers</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUpdate">IUpdate</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUpdates">IUpdates</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUser">IUser</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUserFull">IUserFull</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUserProfilePhoto">IUserProfilePhoto</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUserStatus">IUserStatus</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IUserStatusCommon">IUserStatusCommon</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IWallPaper">IWallPaper</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IWebAuthorization">IWebAuthorization</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IWebDocument">IWebDocument</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IWebPage">IWebPage</a></li> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IWebPageCommon">IWebPageCommon</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h1>I<wbr>Secure<wbr>Credentials<wbr>Encrypted <small>Interface</small></h1> </section> <section class="content"> <div class="panel panel-default"> <div class="panel-body"> <div class="row"> <div class="col-md-6"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/OpenTl.Schema/api/OpenTl.Schema">OpenTl<wbr>.Schema</a></dd> <dt>Interfaces</dt> <dd> <ul class="list-unstyled"> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/IObject">IObject</a></li> </ul> </dd> <dt>Implementing Types</dt> <dd> <ul class="list-unstyled"> <li><a href="/OpenTl.Schema/api/OpenTl.Schema/TSecureCredentialsEncrypted">T<wbr>Secure<wbr>Credentials<wbr>Encrypted</a></li> </ul> </dd> </dl> </div> <div class="col-md-6"> <div class="mermaid"> graph TD Interface0["IObject"]-.-&gt;Type click Interface0 "/OpenTl.Schema/api/OpenTl.Schema/IObject" Type["ISecureCredentialsEncrypted"] class Type type-node Type-.-&gt;Implementing0["TSecureCredentialsEncrypted"] click Implementing0 "/OpenTl.Schema/api/OpenTl.Schema/TSecureCredentialsEncrypted" </div> </div> </div> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>public interface ISecureCredentialsEncrypted : IObject</code></pre> <h1 id="Properties">Properties</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover three-cols"> <thead> <tr> <th>Name</th> <th>Value</th> <th>Summary</th> </tr> </thead> <tbody><tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureCredentialsEncrypted/DC4B95E2.html">Data</a></td> <td>byte[]</td> <td> <div></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureCredentialsEncrypted/07DADE9E.html">Hash</a></td> <td>byte[]</td> <td> <div></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/ISecureCredentialsEncrypted/4A2E45FA.html">Secret</a></td> <td>byte[]</td> <td> <div></div> </td> </tr> </tbody></table> </div> </div> <h1 id="ExtensionMethods">Extension Methods</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover three-cols"> <thead> <tr> <th>Name</th> <th>Value</th> <th>Summary</th> </tr> </thead> <tbody><tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/A1A958DE.html">As<wbr>&lt;T&gt;<wbr><wbr>()<wbr></a></td> <td>T</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/4941F7D3.html">Is<wbr>&lt;T&gt;<wbr><wbr>()<wbr></a></td> <td>T</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </td> </tr> <tr> <td><a href="/OpenTl.Schema/api/OpenTl.Schema/Utils/CF7043C9.html">IsEmpty<wbr>()<wbr></a></td> <td>bool</td> <td> <div></div> <div><small><em>From <a href="/OpenTl.Schema/api/OpenTl.Schema/Utils">Utils</a></em></small></div> </td> </tr> </tbody></table> </div> </div> </section> </div> <!-- Footer --> <footer class="main-footer"> </footer> </div> <div class="wrapper bottom-wrapper"> <footer class="bottom-footer"> Generated by <a href="https://wyam.io">Wyam</a> </footer> </div> <a href="javascript:" id="return-to-top"><i class="fa fa-chevron-up"></i></a> <script> // Close the sidebar if we select an anchor link $(".main-sidebar a[href^='#']:not('.expand')").click(function(){ $(document.body).removeClass('sidebar-open'); }); $(document).load(function() { mermaid.initialize( { flowchart: { htmlLabels: false, useMaxWidth:false } }); mermaid.init(undefined, ".mermaid") $('svg').addClass('img-responsive'); $('pre code').each(function(i, block) { hljs.highlightBlock(block); }); }); hljs.initHighlightingOnLoad(); // Back to top $(window).scroll(function() { if ($(this).scrollTop() >= 200) { // If page is scrolled more than 50px $('#return-to-top').fadeIn(1000); // Fade in the arrow } else { $('#return-to-top').fadeOut(1000); // Else fade out the arrow } }); $('#return-to-top').click(function() { // When arrow is clicked $('body,html').animate({ scrollTop : 0 // Scroll to top of body }, 500); }); </script> </body></html>
OpenTl/OpenTl.Schema
docs/api/OpenTl.Schema/ISecureCredentialsEncrypted/index.html
HTML
mit
99,411
<html> <head> <title>Lin Buchfield's panel show appearances</title> <script type="text/javascript" src="../common.js"></script> <link rel="stylesheet" media="all" href="../style.css" type="text/css"/> <script type="text/javascript" src="../people.js"></script> <!--#include virtual="head.txt" --> </head> <body> <!--#include virtual="nav.txt" --> <div class="page"> <h1>Lin Buchfield's panel show appearances</h1> <p>Lin Buchfield has appeared in <span class="total">1</span> episodes between 2007-2007. Note that these appearances may be for more than one person if multiple people have the same name.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2007</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2007-07-04</strong> / <a href="../shows/spicks-and-specks.html">Spicks and Specks</a></li> </ol> </div> </body> </html>
slowe/panelshows
people/bemakywz.html
HTML
mit
1,011
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./ecc9098f4c4b1dfe6b30b51550be9879e1ed8171ca47b904e63443a186d2380e.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/df8816c07f43a7efe007c27e476124a48b0436863a563853c32911161e9b5519.html
HTML
mit
550
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./02586f69f2db34b187cbce5c73c2c678490da640bad445e83d2090f1a48d3ba0.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/03dcf9200cb74d2acafa73719d74536fc0f8535a46f33e9fdc4db7972b962ce1.html
HTML
mit
550
--- layout: page title: Projects date: type: page published: false status: trash categories: [] tags: [] meta: Layout: 1c _edit_last: '2' bwps_enable_ssl: '' _wp_page_template: default _wp_trash_meta_status: private _css_code: "div.textwidget {\r\n text-align: center;\r\n}\r\n\r\ndiv#social a img {\r\n padding: 0px;\r\n margin: 10px 3px 0 0;\r\n}" _wp_trash_meta_time: '1449345967' author: login: aimeeknight83@gmail.com email: aimeeknight83@gmail.com display_name: Aimee Knight first_name: Aimee last_name: Knight --- <p>&nbsp;</p> <p style="text-align: center;"><b>[wp-portfolio single="16"]</b></p> <p style="text-align: center;"><b>[wp-portfolio single="15"]</b></p> <p style="text-align: center;"><b>[wp-portfolio single="10"]</b></p> <p style="text-align: center;"><b>[wp-portfolio single="8"]</b></p> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p>
AimeeKnight/AimeeKnight.github.io
_pages/projects.html
HTML
mit
884
<!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.11"/> <title>My Project: include -&gt; stream Relation</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">My Project </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#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><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li> </ul> </div> </div><!-- top --> <div class="contents"> <h3>include &rarr; stream Relation</h3><table class="dirtab"><tr class="dirtab"><th class="dirtab">File in include</th><th class="dirtab">Includes file in include/stream</th></tr><tr class="dirtab"><td class="dirtab"><a class="el" href="estimator_8h.html">estimator.h</a></td><td class="dirtab"><a class="el" href="v4l2-stream-stereo-device_8h.html">v4l2-stream-stereo-device.h</a></td></tr></table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
wafgo/rt-depth-map
html/dir_000002_000006.html
HTML
mit
3,917
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="description" content="Wikipedia Viewer"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Alegreya" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="wiki_viewer_style.css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <title>Wikipedia Viewer</title> </head> <body> <div id="wrapper"> <div id="head" class="radncalss"><h1>Welcome to Wikipedia Viewer!</h1></div> <div><input type="search" id="input" placeholder="entry to search in wiki"></input> <button id="searchBtn" type="button">Search</button></div> <div><a href="https://en.wikipedia.org/wiki/Special:Random" target="_blank" class="myLink">Or click here to go to random article</a></div> <div id="results"></div> </div> <script src="wiki_viewer_script.js"></script> </body> <html>
svmi3195/freecodecamp_projects
old-separate/wikipedia_viewer/wiki_viewer.html
HTML
mit
1,117
<!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <script type="text/javascript"> localStorage.setItem('selectSceneNum', 7); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-63202938-1', 'auto'); ga('send', 'pageview'); </script> <title>Page Redirection</title> </head> <body> <script type="text/javascript"> window.location.href = "indexDemo.html" </script> <!-- Note: don't tell people to `click` the link, just tell them that it is a link. --> If you are not redirected automatically, follow the <a href='indexDemo.html'>link to example</a> </body> </html>
josundin/josundin.github.io
magcut/selScene_7_sciencepark.html
HTML
mit
988
<!DOCTYPE html> <!--conf <sample> <product version="4.0b1" edition="std"/> <modifications> <modified date="130911"/> </modifications> </sample> --> <html> <head> <title>onBeforeContextMenu / onContextMenu / onAfterContextMenu</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/> <script src="../../../codebase/dhtmlx.js"></script> <style> #zoneA, #zoneB, #zoneC { position: relative; float: left; width: 100px; height: 100px; border: 1px solid #a4bed4; background-color: #e7f4ff; margin: 100px 0px 0px 50px; } </style> <script> var myContextMenu; function doOnLoad() { myContextMenu = new dhtmlXMenuObject({ icons_path: "../common/imgs/", xml: "../common/dhxmenu.xml" }); myContextMenu.renderAsContextMenu(); myContextMenu.addContextZone("zoneA"); myContextMenu.addContextZone("zoneB"); myContextMenu.addContextZone("zoneC"); // myContextMenu.attachEvent("onBeforeContextMenu", function(zoneId, ev){ printLog("<b>onBeforeContextMenu</b> zone="+zoneId+"<br>"); return true; // return false to cancel }); myContextMenu.attachEvent("onContextMenu", function(zoneId){ printLog("<b>onContextMenu</b> zone="+zoneId+"<br>"); }); myContextMenu.attachEvent("onAfterContextMenu", function(zoneId,ev){ printLog("<b>onAfterContextMenu</b> zone="+zoneId+"<br>"); }); } function printLog(text) { document.getElementById("ta").innerHTML = text+document.getElementById("ta").innerHTML; document.getElementById("ta").scrollTop = 0; } </script> </head> <body onload="doOnLoad()"> <div style=" position: relative; height: 380px;"> <div id="zoneA">zoneA</div> <div id="zoneB">zoneB</div> <div id="zoneC">zoneC</div> </div> <div id="ta" style="width: 500px; height: 160px; border: #909090 1px solid; overflow: auto; font-size: 11px; font-family: Tahoma;"></div> </body> </html>
blale-zhang/codegen
WebContent/component/dhtmlxSuite_v403_std/samples/dhtmlxMenu/05_events/08_onbefore_onafter_oncontextmenu.html
HTML
mit
2,136
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1"> <title>Test</title> </head> <body> <button>test</button> <ul id="fileList"></ul> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dolor, enim fugiat hic natus recusandae ut. Consequatur ea eligendi est facilis inventore molestiae odit, officia quaerat quidem temporibus veniam voluptatibus.</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci architecto asperiores aut dolores eaque esse excepturi fugiat fugit hic illo labore nihil non odio placeat, ratione repellat sunt ullam voluptatem?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequatur consequuntur dicta, molestiae perspiciatis quam quas quisquam? Consectetur delectus earum exercitationem iure labore omnis pariatur perferendis praesentium reiciendis, rerum tempore, temporibus?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dolor, enim fugiat hic natus recusandae ut. Consequatur ea eligendi est facilis inventore molestiae odit, officia quaerat quidem temporibus veniam voluptatibus.</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci architecto asperiores aut dolores eaque esse excepturi fugiat fugit hic illo labore nihil non odio placeat, ratione repellat sunt ullam voluptatem?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequatur consequuntur dicta, molestiae perspiciatis quam quas quisquam? Consectetur delectus earum exercitationem iure labore omnis pariatur perferendis praesentium reiciendis, rerum tempore, temporibus?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dolor, enim fugiat hic natus recusandae ut. Consequatur ea eligendi est facilis inventore molestiae odit, officia quaerat quidem temporibus veniam voluptatibus.</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci architecto asperiores aut dolores eaque esse excepturi fugiat fugit hic illo labore nihil non odio placeat, ratione repellat sunt ullam voluptatem?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequatur consequuntur dicta, molestiae perspiciatis quam quas quisquam? Consectetur delectus earum exercitationem iure labore omnis pariatur perferendis praesentium reiciendis, rerum tempore, temporibus?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Assumenda dolor, enim fugiat hic natus recusandae ut. Consequatur ea eligendi est facilis inventore molestiae odit, officia quaerat quidem temporibus veniam voluptatibus.</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Adipisci architecto asperiores aut dolores eaque esse excepturi fugiat fugit hic illo labore nihil non odio placeat, ratione repellat sunt ullam voluptatem?</p> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Consequatur consequuntur dicta, molestiae perspiciatis quam quas quisquam? Consectetur delectus earum exercitationem iure labore omnis pariatur perferendis praesentium reiciendis, rerum tempore, temporibus?</p> <script src="js/sfbrowser.js"></script> <script> (function () { document.querySelector('button').addEventListener('click',function(){ sfbrowser.init({ id:'img' ,folder: 'ImageFolder' ,baseFolder: 'data' ,title: 'Choose an image' ,callback:selectFiles }); },false); setTimeout(function(){ sfbrowser.init({ x: 10 ,y: 10 ,folder: '' ,baseFolder: 'data' ,lang: 'nl' ,callback:selectFiles }); },1000); function selectFiles(files){ var mList = document.getElementById('fileList') ,mFragment = document.createDocumentFragment(); files.forEach(function(file){ var mLi = document.createElement('li') ,mImg = document.createElement('img'); mLi.innerText = file.name; mImg.src = file.path+'/'+file.name; mImg.height = 16; mLi.appendChild(mImg); mFragment.appendChild(mLi); console.log('file',file); // log }); mList.innerHTML = ''; mList.appendChild(mFragment); } })(); </script> </body> </html>
Sjeiti/SFBrowser
dist_files/index.html
HTML
mit
4,153
<!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>OpenLibra Client: Book Class 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="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body onload='searchBox.OnSelectItem(0);'> <!-- Generated by Doxygen 1.7.4 --> <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">OpenLibra Client&#160;<span id="projectnumber">1.0.0</span></div> <div id="projectbrief">Objective-C OpenLibra API Client</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>Classes</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>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-static-methods">Static Public Member Functions</a> &#124; <a href="#properties">Properties</a> </div> <div class="headertitle"> <div class="title">Book Class Reference</div> </div> </div> <div class="contents"> <!-- doxytag: class="Book" --> <p><code>#import &lt;<a class="el" href="_book_8h_source.html">Book.h</a>&gt;</code></p> <p><a href="class_book-members.html">List of all members.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">(id)&#160;</td><td class="memItemRight" valign="bottom">- <a class="el" href="interface_book.html#ae4056227c171b77998bee34a1d9c02ee">initWithDictionary:</a></td></tr> <tr><td colspan="2"><h2><a name="pub-static-methods"></a> Static Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">(<a class="el" href="interface_book.html">Book</a> *)&#160;</td><td class="memItemRight" valign="bottom">+ <a class="el" href="interface_book.html#aba5b6b3d032db273752813c8411627db">bookWithDictionary:</a></td></tr> <tr><td colspan="2"><h2><a name="properties"></a> Properties</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#ade1e6376cdb0417bd207733607f6669a">id</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a507a4a5b02d5d042f6716316e2e5e293">title</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a9612be5178b7b2d676b32e77a436580a">author</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#ab50b743487d36dbad67e0c27c2db6d95">publisher</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a96ce18e68a2e534ef4d68b2c426d6440">publisherDate</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#afce3f5159731bc21f6d4eca13f957c98">pages</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a410185f5b9cba8002f29c7b90efc63fd">language</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#ae922c5937572505b3675a24bacf61c53">URLDetails</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#ac0535b8b5a6b54eacbdb3e36338210e7">URLDownload</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#ab9a2eba00a1c12702737db9f315cb1e8">cover</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a8afeec1f31606be6859a1db6d85c2692">rating</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a30fb1d5f55bbff0bb59069d8edac6fc5">numComments</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a5d02b41a17f0bf3da50e4613762d3865">categories</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">NSString *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="interface_book.html#a7a8f43ac597fb2a8280a4323157844d3">tags</a></td></tr> </table> <hr/><a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"><p>Class to represent a <a class="el" href="interface_book.html">Book</a> in the OpenLibra service.</p> <p>Books class stores all properties of a book and some helper methods to download, view or comment the book </p> </div><hr/><h2>Member Function Documentation</h2> <a class="anchor" id="aba5b6b3d032db273752813c8411627db"></a><!-- doxytag: member="Book::bookWithDictionary:" ref="aba5b6b3d032db273752813c8411627db" args="(NSDictionary *dictionary)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">+ (<a class="el" href="interface_book.html">Book</a> *) bookWithDictionary: </td> <td></td> <td class="paramtype">(NSDictionary *)&#160;</td> <td class="paramname"><em>dictionary</em></td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Creates an autoreleased book using given dictionary</p> <dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="interface_book.html">Book</a> Autoreleased book </dd></dl> </div> </div> <a class="anchor" id="ae4056227c171b77998bee34a1d9c02ee"></a><!-- doxytag: member="Book::initWithDictionary:" ref="ae4056227c171b77998bee34a1d9c02ee" args="(NSDictionary *dictionary)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (id) initWithDictionary: </td> <td></td> <td class="paramtype">(NSDictionary *)&#160;</td> <td class="paramname"><em>dictionary</em></td> <td></td> </tr> </table> </div> <div class="memdoc"> <p>Intialices a new <a class="el" href="interface_book.html">Book</a> object using given NSDictionary to fill all properties</p> <dl><dt><b>Parameters:</b></dt><dd> <table class="params"> <tr><td class="paramname">NSDictionary</td><td>Dictionary with all properties in a key/value format </td></tr> </table> </dd> </dl> <dl class="return"><dt><b>Returns:</b></dt><dd><a class="el" href="interface_book.html">Book</a> </dd></dl> </div> </div> <hr/><h2>Property Documentation</h2> <a class="anchor" id="a9612be5178b7b2d676b32e77a436580a"></a><!-- doxytag: member="Book::author" ref="a9612be5178b7b2d676b32e77a436580a" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)author<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's author </p> </div> </div> <a class="anchor" id="a5d02b41a17f0bf3da50e4613762d3865"></a><!-- doxytag: member="Book::categories" ref="a5d02b41a17f0bf3da50e4613762d3865" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)categories<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's categories </p> </div> </div> <a class="anchor" id="ab9a2eba00a1c12702737db9f315cb1e8"></a><!-- doxytag: member="Book::cover" ref="ab9a2eba00a1c12702737db9f315cb1e8" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)cover<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>String with url to book's cover </p> </div> </div> <a class="anchor" id="ade1e6376cdb0417bd207733607f6669a"></a><!-- doxytag: member="Book::id" ref="ade1e6376cdb0417bd207733607f6669a" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (int Book.)id<code> [read, write, assign]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Unique identifier of the book </p> </div> </div> <a class="anchor" id="a410185f5b9cba8002f29c7b90efc63fd"></a><!-- doxytag: member="Book::language" ref="a410185f5b9cba8002f29c7b90efc63fd" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)language<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's language </p> </div> </div> <a class="anchor" id="a30fb1d5f55bbff0bb59069d8edac6fc5"></a><!-- doxytag: member="Book::numComments" ref="a30fb1d5f55bbff0bb59069d8edac6fc5" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (int Book.)numComments<code> [read, write, assign]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Number of comments about this book </p> </div> </div> <a class="anchor" id="afce3f5159731bc21f6d4eca13f957c98"></a><!-- doxytag: member="Book::pages" ref="afce3f5159731bc21f6d4eca13f957c98" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (int Book.)pages<code> [read, write, assign]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's pages </p> </div> </div> <a class="anchor" id="ab50b743487d36dbad67e0c27c2db6d95"></a><!-- doxytag: member="Book::publisher" ref="ab50b743487d36dbad67e0c27c2db6d95" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)publisher<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's publisher </p> </div> </div> <a class="anchor" id="a96ce18e68a2e534ef4d68b2c426d6440"></a><!-- doxytag: member="Book::publisherDate" ref="a96ce18e68a2e534ef4d68b2c426d6440" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (int Book.)publisherDate<code> [read, write, assign]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's publisher date </p> </div> </div> <a class="anchor" id="a8afeec1f31606be6859a1db6d85c2692"></a><!-- doxytag: member="Book::rating" ref="a8afeec1f31606be6859a1db6d85c2692" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (float Book.)rating<code> [read, write, assign]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's rating </p> </div> </div> <a class="anchor" id="a7a8f43ac597fb2a8280a4323157844d3"></a><!-- doxytag: member="Book::tags" ref="a7a8f43ac597fb2a8280a4323157844d3" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)tags<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's tags </p> </div> </div> <a class="anchor" id="a507a4a5b02d5d042f6716316e2e5e293"></a><!-- doxytag: member="Book::title" ref="a507a4a5b02d5d042f6716316e2e5e293" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)title<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Book's title </p> </div> </div> <a class="anchor" id="ae922c5937572505b3675a24bacf61c53"></a><!-- doxytag: member="Book::URLDetails" ref="ae922c5937572505b3675a24bacf61c53" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)URLDetails<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>String with the url to book's details </p> </div> </div> <a class="anchor" id="ac0535b8b5a6b54eacbdb3e36338210e7"></a><!-- doxytag: member="Book::URLDownload" ref="ac0535b8b5a6b54eacbdb3e36338210e7" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">- (NSString* Book.)URLDownload<code> [read, write, retain]</code></td> </tr> </table> </div> <div class="memdoc"> <p>String with the download url </p> </div> </div> <hr/>The documentation for this class was generated from the following files:<ul> <li><a class="el" href="_book_8h_source.html">Book.h</a></li> <li>Book.m</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>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Properties</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> <hr class="footer"/><address class="footer"><small>Generated on Sat Sep 3 2011 01:14:40 for OpenLibra Client by&#160; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.4 </small></address> </body> </html>
vbergae/OpenLibraClient
OpenLibraClient/docs/html/interface_book.html
HTML
mit
16,555
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Diagnostics</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="date" content="Fri, 06 February 2015 "> <meta name="keywords" content=""> <meta name="copyright" content="(c) 2015 by the Illinois Motor Vehicle Theft Prevention Council"> <link rel="canonical" href="/diagnostics.hbs"> <link rel="stylesheet" href="styles/266a4b38.vendor.css"> <link rel="stylesheet" href="styles/b4539105.main.css"> <script src="scripts/vendor/81b1549c.modernizr.js"></script> <link rel="stylesheet" href="styles/fontawesome/css/fontawesome.css"> <!-- Google Fonts --> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,700,800,900"> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800"> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900"> <!-- End Google Fonts --> <script src="scripts/55f0155f.jquery.js"></script> <script src="scripts/d5e3faac.fusioncharts.js"></script> <!-- Content --> <!-- Navbar component ================================================== --> <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> <div id="navContainer" class="container"> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-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="/sitedev/mvtpc/"> <img src="./images/mvtpc-banner02.png" style="margin-top: -41px"> </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav navbar-right"> <li> <a href="/sitedev/mvtpc/" class="navLink menuTop"> Home </a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle menuTop" data-toggle="dropdown"> About <b class="caret"> </b> </a> <ul class="dropdown-menu"> <li> <a href="/sitedev/mvtpc/about/" class="navLink"> About the MVTPC </a> </li> <li> <a href="/sitedev/mvtpc/about/members.html" class="navLink"> MVTPC board </a> </li> <li> <a href="/sitedev/mvtpc/about/meetings.html" class="navLink"> MVTPC meetings </a> </li> <li> <a href="/sitedev/mvtpc/about/contact.html" class="navLink"> Contact us </a> </li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle menuTop" data-toggle="dropdown"> Partnerships <b class="caret"> </b> </a> <ul class="dropdown-menu"> <li> <a href="/sitedev/mvtpc/partnerships/nicb.html" class="navLink"> NICB </a> </li> <li> <a href="/sitedev/mvtpc/partnerships/aia.html" class="navLink"> Annual Insurance Association </a> </li> </ul> </li> <li> <a href="/sitedev/mvtpc/data" class="navLink menuTop"> Data </a> </li> <li> <a href="/sitedev/mvtpc/publications" class="navLink menuTop"> Publications </a> </li> <li> <a href="/sitedev/mvtpc/public-awareness" class="navLink menuTop"> Public Awareness </a> </li> <li class="dropdown" data-animate="animated fadeInUp" style="z-index:500"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-search"> </i> </a> <ul class="dropdown-menu animated bounceInDown"> <li id="dropdownForm"> <div class="dropdown-form"> <form class="form-inline" method="post" name="searchForm" id="searchForm"> <div class="input-group" style="padding: 4px 8px 4px 8px"> <input type="text" id="siteSearchTerm" class="form-control" style="width: 200px" placeholder="search..."> <span class="input-group-btn"> <input type="submit" class="btn btn-theme-bg" id="siteSearchButton" value="Go!"> </span> </div> <!--input group--> </form> <!--form--> </div> <!--.dropdown form--> </li> <!--.drop form search--> </ul> <!--.drop menu--> </li> <!--nav search form--> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Breadcrumb --> <section class="breadcrumbs hidden-print"> <div class="container"> <div class="row" style="text-align: right"> <ol class="breadcrumb" style="display: inline"><li><a href="./">Home</a></li><li>diagnostics</li></ol> |&nbsp;&nbsp;&nbsp;&nbsp; <div style="display: inline" id="printPage"> <a href="#"> <i class="fa fa-print"> </i> &nbsp;&nbsp;Print page </a> &nbsp;&nbsp; </div> </div> </div> <div style="clear: both"> </div> </section> <!-- //Breadcrumb --> <div class="page-top"> <style> td, th {padding: 5px 10px 5px 10px} </style> <h1>Diagnostics</h1> <table border="1"> <thead> <tr> <th>basename</th> <th>relativeLink</th> <th>data.title</th> <th>postLink</th> <th>data</th> </tr> </thead> <tbody> <tr> <td> diagnostics </td> <td> diagnostics.html </td> <td> Diagnostics </td> <td> src/diagnostics.hbs</td> <td> { &quot;title&quot;: &quot;Diagnostics&quot;, &quot;navTags&quot;: [ &quot;Diagnostics&quot; ], &quot;siteBase&quot;: &quot;&quot;, &quot;siteFolder&quot;: &quot;/sitedev/mvtpc/&quot; } </td> </tr> <tr> <td> 404 </td> <td> 404.html </td> <td> 404 </td> <td> src/404.hbs</td> <td> { &quot;layout&quot;: false, &quot;title&quot;: 404, &quot;tags&quot;: &quot;system&quot; } </td> </tr> <tr> <td> index </td> <td> about/index.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/about/index.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;About the Illinois Motor Vehicle Theft Prevention Council&quot;, &quot;dateCreated&quot;: &quot;01-15-2015&quot;, &quot;slug&quot;: &quot;About MVTPC&quot;, &quot;keywords&quot;: [ &quot;news&quot; ], &quot;posted&quot;: &quot;01-08-2015&quot;, &quot;summary&quot;: &quot;This is the summary of about the MVTPC.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> meetings </td> <td> about/meetings.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/about/meetings.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;Illinois Motor Vehicle Theft Prevention Council meeting information&quot;, &quot;slug&quot;: &quot;MVTPC Upcoming Meetings&quot;, &quot;keywords&quot;: [ &quot;news&quot;, &quot;meetings&quot; ], &quot;posted&quot;: &quot;01-23-2015&quot;, &quot;summary&quot;: &quot;Information about MVTPC meetings.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> members </td> <td> about/members.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/about/members.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;Illinois Motor Vehicle Theft Prevention Council Members&quot;, &quot;dateCreated&quot;: &quot;01-26-2015&quot;, &quot;slug&quot;: &quot;MVTPC Members&quot;, &quot;keywords&quot;: [ &quot;news&quot; ], &quot;posted&quot;: &quot;01-14-2014&quot;, &quot;summary&quot;: &quot;This is the summary of the members page.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> index </td> <td> data/index.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/data/index.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;Fusion Chart sample&quot;, &quot;dateCreated&quot;: &quot;01-30-2015&quot;, &quot;slug&quot;: &quot;Fusion Chart sample&quot;, &quot;keywords&quot;: [ &quot;data&quot; ], &quot;posted&quot;: &quot;01-30-2015&quot;, &quot;summary&quot;: &quot;This is the summary of data.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> contact </td> <td> about/contact.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/about/contact.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;Contact the Illinois Motor Vehicle Theft Prevention Council&quot;, &quot;dateCreated&quot;: &quot;01-15-2015&quot;, &quot;slug&quot;: &quot;Contact the Illinois MVTPC&quot;, &quot;keywords&quot;: [ &quot;news&quot; ], &quot;posted&quot;: &quot;01-13-2015&quot;, &quot;summary&quot;: &quot;This is the summary of how to contact the MVTPC.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> sample3 </td> <td> fusioncharts/sample3.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/fusioncharts/sample3.hbs</td> <td> { &quot;layout&quot;: &quot;page.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;siteBase&quot;: &quot;&lt;%= site.base %&gt;&quot;, &quot;siteFolder&quot;: &quot;&lt;%= site.siteFolder %&gt;&quot;, &quot;description&quot;: &quot;Fusion Chart sample&quot;, &quot;dateCreated&quot;: &quot;01-30-2015&quot;, &quot;slug&quot;: &quot;Fusion Chart sample&quot;, &quot;keywords&quot;: [ &quot;data&quot; ], &quot;posted&quot;: &quot;01-30-2015&quot;, &quot;summary&quot;: &quot;This is the summary of data.&quot;, &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> index </td> <td> index.html </td> <td> &lt;%= site.title %&gt; </td> <td> src/index.hbs</td> <td> { &quot;layout&quot;: &quot;default.hbs&quot;, &quot;title&quot;: &quot;&lt;%= site.title %&gt;&quot;, &quot;description&quot;: &quot;Adult Redeploy All Sites Summit 2015&quot;, &quot;dateCreated&quot;: &quot;06-23-2014&quot;, &quot;slug&quot;: &quot;Welcome to the new MVTPC website&quot;, &quot;breadCrumbs&quot;: false, &quot;posted&quot;: &quot;01-12-2014&quot;, &quot;keywords&quot;: [ &quot;news&quot; ], &quot;navSort&quot;: 100 } </td> </tr> <tr> <td> cfc </td> <td> sandbox/cfc.html </td> <td> </td> <td> src/sandbox/cfc.hbs</td> <td> {} </td> </tr> <tr> <td> chart </td> <td> sandbox/chart.html </td> <td> Chart </td> <td> src/sandbox/chart.hbs</td> <td> { &quot;title&quot;: &quot;Chart&quot;, &quot;navTags&quot;: [ &quot;Diagnostics&quot; ] } </td> </tr> <tr> <td> diagnostics </td> <td> sandbox/diagnostics.html </td> <td> Diagnostics </td> <td> src/sandbox/diagnostics.hbs</td> <td> { &quot;title&quot;: &quot;Diagnostics&quot;, &quot;navTags&quot;: [ &quot;Diagnostics&quot; ] } </td> </tr> <tr> <td> index </td> <td> sandbox/index.html </td> <td> </td> <td> src/sandbox/index.hbs</td> <td> { &quot;dateCreated&quot;: &quot;10-12-2014&quot;, &quot;keywords&quot;: [ &quot;tag 1&quot;, &quot;tag 2&quot;, &quot;tag 3&quot; ], &quot;tags&quot;: [ &quot;page&quot; ], &quot;published&quot;: true, &quot;slug&quot;: &quot;My Test Page&quot; } </td> </tr> </tbody> </table> /diagnostics.hbs <br>Site title: Illinois Motor Vehicle Theft Prevention Council<br>Base: <br>package: &gt;=0.8.0 <hr> <div> <div> <h2><a href="/">Illinois Motor Vehicle Theft Prevention Council</a></h2> <p>2015-01-23</p> <div> <p>Information about MVTPC meetings.</p> </div> <p><a href="/">more...</a></p> </div> <div> <h2><a href="/">Illinois Motor Vehicle Theft Prevention Council</a></h2> <p>2014-01-14</p> <div> <p>This is the summary of the members page.</p> </div> <p><a href="/">more...</a></p> </div> <div> <h2><a href="/">Illinois Motor Vehicle Theft Prevention Council</a></h2> <p>2015-01-13</p> <div> <p>This is the summary of how to contact the MVTPC.</p> </div> <p><a href="/">more...</a></p> </div> <div> <h2><a href="/">Illinois Motor Vehicle Theft Prevention Council</a></h2> <p>2014-01-12</p> <div> </div> <p><a href="/">more...</a></p> </div> <div> <h2><a href="/">Illinois Motor Vehicle Theft Prevention Council</a></h2> <p>2015-01-08</p> <div> <p>This is the summary of about the MVTPC.</p> </div> <p><a href="/">more...</a></p> </div> </div> </div><!-- //page-top --> <!-- MVTPC Footer --> <footer> <div class="container"> <div class="row"> <!-- col #1 --> <div class="col-md-12"> <div style="border-top: 1px solid #ccc; width: 100%; margin-bottom: 20px"></div> </div> </div> <div class="container text-center" style="font-size: 12px; margin-bottom: 20px"> &copy; 2014 <a href="##" target="_blank"> Illinois Criminal Justice Information Authority </a> - <a href="page-privacy.html" class="fsize11"> Privacy Policy </a> </div> </div> </footer> <!-- /MVTPC Footer --> <script src="scripts/abda8436.boostrap.js"></script> <script src="scripts/9f6fe36a.main.js"></script> <script> //Google Analytics (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='//www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X');ga('send','pageview'); //jQuery to collapse the navbar on scroll $(window).scroll(function() { if ($(".navbar").offset().top > 50) { $(".navbar-fixed-top").addClass("top-nav-collapse"); $("#navContainer").removeClass("container"); // $(".navbar-collapse > ul").removeClass("pull-right"); $( ".top-bar" ).fadeOut(100); $( "a.navbar-brand" ).html('<img src="./images/mvtpc-brand-new4.png" style="margin-top: -15px;" >'); $(".navbar-default .navbar-nav > .active > a").css({ "background-color": "#aa3c3e", "color": "#fff" }); } else { $(".navbar-fixed-top").removeClass("top-nav-collapse"); $("#navContainer").addClass("container"); //$(".navbar-collapse > ul").addClass("pull-right"); $(".navbar-default .navbar-nav > .active > a").css({ "background-color": "#fff", "color": "#222" }); $( ".top-bar" ).fadeIn(100); $( "a.navbar-brand" ).html('<img src="./images/mvtpc-banner02.png" style="margin-top: -41px">').fadeIn( 400 ); } }); </script> <!-- (c) 2015 by the Illinois Motor Vehicle Theft Prevention Council Page created: Friday, 06 February 2015 // Last updated: Friday, 06 February 2015 12:07:15 -0600. --> </head></html>
ICJIA/icjia-public-website
sitedev/mvtpcold/diagnostics.html
HTML
mit
16,794
{% extends "base.html" %} {% block body %} <h1 class="section-title">Set your username</h1> <form action="{{ url_for('login') }}" method="POST"> <div class="field"> <label for="username">Username</label> <input type="text" name="username" id="username"/> </div> <div class="control_row"> <input type="submit" name="Login" value="Login"/> </div> </form> {% endblock %}
jbbrokaw/telephone-project
templates/login.html
HTML
mit
388
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語&nbsp;</b></th><td class="ztd2">大才晚成</td></tr> <tr><th class="ztd1"><b>典故說明&nbsp;</b></th><td class="ztd2"> 此處所列為「大器晚成」之典故說明,提供參考。</font> 「大器晚成」一語出於今本《老子》第四十一章,在這一章中,提到「道」的境界不易知、不易行,所以一般俗士聽到「道」,就大笑起來,就是因為它難以捉摸。為了解釋「道」,老子用「大方」、「大器」、「大音」、「大象」來作比喻。這些都是「道」的象徵。「道」是什麼?它就像最圓融的空間,根本不是人為角度所能衡量;它也像最貴重的器物,需要長時間製作,所以修道之人需要長時間的修練;它也像天籟般的聲音一樣,不是言語或樂器所能表現的;它也可以說是無形,不是人力所能覺察的。後來就從這裡演變出「大器晚成」這句成語,用來比喻卓越的人才,往往成就較晚。這是根據後世傳本的《老子》演變而出的一句成語,假如參考新發現的出土文獻,《郭店楚墓竹簡》收錄有《老子》一書,「大器晚成」作「大器曼成」,竹簡整理小認為「曼」當讀作「晚」,裘錫圭則懷疑此字當讀為「<img src=/cydic/dicword/c13812.jpg border=0 alt=* class=fontimg valign=center>(慢)」。帛書本《老子》隸書本,則「大器晚成」作「大器免成」,意思是:「道」像最偉大的器物,不是人力所能製作的。這種意思和上下文的「大方無隅」、「大音希聲」、「大象無形」較能呼應。並附載於此,以供參考。</td></tr> </td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
BuzzAcademy/idioms-moe-unformatted-data
all-data/3000-3999/3437-32.html
HTML
mit
2,172
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="es"> <head> <!-- Generated by javadoc (1.8.0_66) on Mon Jan 04 17:31:19 CST 2016 --> <title>Uses of Class com.alejandrorm.util.search.Binary</title> <meta name="date" content="2016-01-04"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.alejandrorm.util.search.Binary"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/alejandrorm/util/search/Binary.html" title="class in com.alejandrorm.util.search">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/alejandrorm/util/search/class-use/Binary.html" target="_top">Frames</a></li> <li><a href="Binary.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 com.alejandrorm.util.search.Binary" class="title">Uses of Class<br>com.alejandrorm.util.search.Binary</h2> </div> <div class="classUseContainer">No usage of com.alejandrorm.util.search.Binary</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/alejandrorm/util/search/Binary.html" title="class in com.alejandrorm.util.search">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/alejandrorm/util/search/class-use/Binary.html" target="_top">Frames</a></li> <li><a href="Binary.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>
AlejandroRM94/Algorithms-and-Data-Structures-implemented-in-Java
doc/com/alejandrorm/util/search/class-use/Binary.html
HTML
mit
4,354
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>Andres Salazar | Designer</title> <link rel="stylesheet" href="../index.css"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.1/css/all.css" integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ" crossorigin="anonymous"> </head> <body> <div class="project-cover"> <a href="../index.html" class="back"> <i class="fas fa-arrow-left"></i> </a> <svg width="800" height="430" class="cloud-circle"> <path d="M 900 0 A 50 50 0 1 1 50 0" stroke="black" fill="transparent" stroke-width="10" z-index="o"></path> </svg> <div class="project-cover-image-pigeon"> <!-- DRAKE: fotos de la cloud --> <img src="./coheraimg/coheraheader.png" alt="" position="relative" class="cloudimg"> </div> </div> <div class="row"> <div class="item"></div> <h1 class="project-title">Cohera <br> Design Challenge</h1> </div> <section class="section section-introduction"> <div class="row"> <div class="item"></div> <div class="item item-4"> <h2>Introduction</h2> <div class="content-text-block"> <p> As part of a job interview, I was asked to create a mobile flow for onboarding users on an investment platform mobile application. Tha whole task was to be completed in 4 hours. </p> </div> </div> <div class="item"></div> <div class="item item-2 item--black project-tasks"> <p>Logo Design</p> <p>UX Design</p> <p>UI Design</p> </div> </div> <div class="row"> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item item--black"></div> <div class="item"></div> </div> </section> <section class="section section-understanding"> <div class="row"> <div class="item item-3 item--gray item--text"> <h2 class="project-section-title">The Task</h2> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <h3 class="section-subtitle">Break Down</h3> <div class="content-text-block"> <p> My first step after receiving the challenge was to break down the task, into small parts to properly plan how to go about solving the challenge. </p> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <div class="content-inline-image-block"> <img class="pigeonimg" src="./coheraimg/task.png" alt=""> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <h3 class="section-subtitle">First Draft</h3> <div class="content-text-block"> <p> After understanding the key problems to solve and what the user needs were, I started to draft the first version of the flow on pen and paper. </p> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <div class="content-inline-image-block"> <img class="pigeonimg" src="./coheraimg/draft.png" alt=""> </div> </div> </div> </section> <section class="section section-personas"> <div class="row"> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item"></div> <div class="item item-2 item--black item--text"> <h3 class="project-section-title">User Flow</h3> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <h3 class="section-subtitle">Cleaning It Up</h3> <div class="content-text-block"> <p> Once I have gone through several revisions of the user flow I used Sketch to make a digital version where I added more details into the flow. </p> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <div class="content-inline-image-block"> <img class="" src="./coheraimg/userflow.png" alt=""> </div> </div> </div> </section> <section class="section section-flow"> <div class="row"> <div class="item item-2 item--gray item--text"> <h3 class="project-section-title">UI Design</h3> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <h3 class="section-subtitle">Simple Design</h3> <div class="content-text-block"> <p> Because of the task higher focus on the user flow, I took the decision of keeping the UI simple and monochromatic, so that the focus would be still maintained on the user flow. </p> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-5"> <div class="content-inline-image-block"> <img src="./coheraimg/ui.png" alt=""> </div> </div> </div> <div class="row"> <div class="item"></div> <div class="item item-4"> <a href="#top" align="center">Back to top</a> </div> </div> </section> </body> </html>
dracodraco/dracodraco.github.io
portfolio/cohera.html
HTML
mit
5,854
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `impl_of_method` fn in crate `rustc_lint`."> <meta name="keywords" content="rust, rustlang, rust-lang, impl_of_method"> <title>rustc_lint::middle::ty::impl_of_method - Rust</title> <link rel="stylesheet" type="text/css" href="../../../main.css"> <link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <a href='../../../rustc_lint/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../../index.html'>rustc_lint</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>ty</a></p><script>window.sidebarCurrent = {name: 'impl_of_method', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press 'S' to search, '?' for more options..." type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>rustc_lint</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>ty</a>::<wbr><a class='fn' href=''>impl_of_method</a><wbr><a class='stability Unstable' title=''>Unstable</a></span><span class='out-of-band'><span id='render-detail'> <a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a> </span><a id='src-232038' href='../../../rustc/middle/ty/fn.impl_of_method.html?gotosrc=232038'>[src]</a></span></h1> <pre class='rust fn'>pub fn impl_of_method(tcx: &amp;<a class='struct' href='../../../rustc_lint/middle/ty/struct.ctxt.html' title='rustc_lint::middle::ty::ctxt'>ctxt</a>, def_id: <a class='struct' href='../../../syntax/ast/struct.DefId.html' title='syntax::ast::DefId'>DefId</a>) -&gt; <a class='enum' href='../../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='struct' href='../../../syntax/ast/struct.DefId.html' title='syntax::ast::DefId'>DefId</a>&gt;</pre><div class='docblock'><p>If the given def ID describes a method belonging to an impl, return the ID of the impl that the method belongs to. Otherwise, return <code>None</code>.</p> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div class="shortcuts"> <h1>Keyboard shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>typedef</code> (or <code>tdef</code>). </p> </div> </div> <script> window.rootPath = "../../../"; window.currentCrate = "rustc_lint"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script async src="../../../search-index.js"></script> </body> </html>
ArcherSys/ArcherSys
Rust/share/doc/rust/html/rustc_lint/middle/ty/fn.impl_of_method.html
HTML
mit
4,452
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>18 --> 19</title> <link href="./../../assets/style.css" rel="stylesheet"> </head> <body> <h2>You have to be fast</h2> <a href="./4562238986795c185f2a3eb52bea18662fff484909edbc33653d11a5964e839b.html">Teleport</a> <hr> <a href="./../../about.md">About</a> (Spoilers! ) <script src="./../../assets/md5.js"></script> <script> window.currentLevel = 7; </script> <script src="./../../assets/script.js"></script> </body> </html>
simonmysun/praxis
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/717d773b8eefe601e0d24dc027edcc519856dac3192644b0b54c8f2e0ae72c9d.html
HTML
mit
550
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <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="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">8.4.dev / contrib:weak-up-to dev</a></li> <li class="active"><a href="">2014-11-20 13:31:52</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:weak-up-to <small> dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2014-11-20 13:31:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-20 13:31:52 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:weak-up-to/coq:contrib:weak-up-to.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:weak-up-to.dev coq.8.4.dev</code></dd> <dt>Return code</dt> <dd>768</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.4.dev). The following dependencies couldn&#39;t be met: - coq:contrib:weak-up-to -&gt; coq = dev Your request can&#39;t be satisfied: - Conflicting version constraints for coq No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:weak-up-to.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq.8.4.dev === 1 to remove === =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq.8.4.dev. [WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing [WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing The following actions will be performed: - install coq.dev [required by coq:contrib:weak-up-to] - install coq:contrib:weak-up-to.dev === 2 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq.dev: ./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no -no-native-compiler make -j4 make install Installing coq.dev. Building coq:contrib:weak-up-to.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:weak-up-to.dev. </pre></dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>Data not available in this bench.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io-old
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:weak-up-to/dev/2014-11-20_13-31-52.html
HTML
mit
6,968
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Fri Dec 06 02:55:14 GMT 2013 --> <TITLE> Uses of Class node.client.CompanyRepositoryInterface </TITLE> <META NAME="date" CONTENT="2013-12-06"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class node.client.CompanyRepositoryInterface"; } } </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="../../../node/client/CompanyRepositoryInterface.html" title="class in node.client"><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-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?node/client//class-useCompanyRepositoryInterface.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CompanyRepositoryInterface.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>node.client.CompanyRepositoryInterface</B></H2> </CENTER> No usage of node.client.CompanyRepositoryInterface <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="../../../node/client/CompanyRepositoryInterface.html" title="class in node.client"><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-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?node/client//class-useCompanyRepositoryInterface.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CompanyRepositoryInterface.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>
balazspete/multi-hop-train-journey-booking
doc/node/client/class-use/CompanyRepositoryInterface.html
HTML
mit
5,822
<!DOCTYPE html> <html> <head> <title>Foodz - Forside</title> <meta charset=utf-8> <meta name=description content=""> <meta name=viewport content="width=device-width, initial-scale=1"> <link rel="shortcut icon" href="favicon.ico"> <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css"> <!--[if lte IE 8]> <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-old-ie-min.css"> <![endif]--> <!--[if gt IE 8]><!--> <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/grids-responsive-min.css"> <!--<![endif]--> <link rel="stylesheet" href="styles/style.css"> </head> <body> <div id="content"> <header> <div class="pure-menu pure-menu-open pure-menu-horizontal"> <a href="index.html" class="pure-menu-heading"><img src="media/static/logo/logo_and_text_72dpi.png" width="200px" alt=""/></a> <ul> <li><a href="search.html" title="">SØK</a></li> <li><a href="category.html?cat=raskt" title="">RASKT</a></li> <li><a href="category.html?cat=godt" title="">GODT</a></li> <li><a href="category.html?cat=dessert" title="">DESSERT</a></li> </ul> </div> </header> <div id="main"> <section> <div class="pure-g"> <div class="pure-u-1-4"><img src="media/img/kittens.jpg" width="165px" alt="Kittens!"></div> <div class="pure-u-3-4"> <h3>Foodz</h3> <p> Velkommen til Foodz. Dette er en enkel matoppskriftside som er laget av Kathrine Steffensen, Imre Kerr og Knut Fludal. Denne siden har ikke ett kommersielt formål, men er laget som en del av øvingsopplegget i IT2805, og alt materiale som ikke er kildegitt, er egenprodusert. Om du allikevel finner materialet som du mener tilhører deg, og som ikke er brukt i henhold til åndsverkloven, kan du ta kontakt på knutaf@stud.ntnu.no og så vil det bli fjernet. </p> </div> </div> </section> </div> </div> </body> </html>
imre-kerr/webtech
index.html
HTML
mit
2,114
<!DOCTYPE html> <!--[if lt IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html lang="en" ng-app="myApp" class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html lang="en" ng-app="myApp" class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html lang="en" ng-app="myApp" class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>My AngularJS App</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/normalize.css"> <link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/main.css"> <link rel="stylesheet" href="app.css"> <script src="bower_components/html5-boilerplate/dist/js/vendor/modernizr-2.8.3.min.js"></script> </head> <body> <!--[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 ng-view></div> <!-- In production use: <script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script> --> <script src="bower_components/angular/angular.js"></script> <script src="bower_components/angular-route/angular-route.js"></script> <script src="app.js"></script> <script src="view1/view1.js"></script> </body> </html>
alejomendoza/808splicechallenge
app/index.html
HTML
mit
1,541
<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="UTF-8"> <title>Radio - a11y</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link href="../../../../../css/ionic.bundle.css" rel="stylesheet"> <link href="../../../../../scripts/testing/styles.css" rel="stylesheet"> <script src="../../../../../scripts/testing/scripts.js"></script> <script nomodule src="../../../../../dist/ionic/ionic.js"></script> <script type="module" src="../../../../../dist/ionic/ionic.esm.js"></script></head> <body> <ion-app> <ion-header> <ion-toolbar> <ion-title>Radio - a11y</ion-title> </ion-toolbar> </ion-header> <ion-content id="content" class="outer-content"> <div class="native-radio-group"> <p>Select a maintenance drone (native):</p> <div> <input type="radio" id="huey" name="drone" value="huey" checked> <label for="huey">Huey</label> </div> <div> <input type="radio" id="dewey" name="drone" value="dewey"> <label for="dewey">Dewey</label> </div> <div> <input type="radio" id="fooey" value="fooey" disabled/> <label for="fooey">Fooey</label> </div> <div> <input type="radio" id="louie" name="drone" value="louie"> <label for="louie">Louie</label> </div> </div> <ion-list> <ion-list-header> <ion-label> Select a maintenance drone: </ion-label> </ion-list-header> <ion-radio-group value="huey"> <ion-item> <ion-label>Huey</ion-label> <ion-radio slot="start" value="huey"></ion-radio> </ion-item> <ion-item> <ion-label>Dewey</ion-label> <ion-radio slot="start" value="dewey"></ion-radio> </ion-item> <ion-item> <ion-label>Fooey</ion-label> <ion-radio slot="start" value="fooey" color="secondary" disabled></ion-radio> </ion-item> <ion-item> <ion-label>Louie</ion-label> <ion-radio slot="start" value="louie"></ion-radio> </ion-item> </ion-radio-group> </ion-list> <ion-list> <ion-radio-group value="huey"> <ion-item> <ion-label>Huey</ion-label> <ion-radio slot="start" value="huey" color="danger"></ion-radio> </ion-item> <ion-item> <ion-label>Dewey</ion-label> <ion-radio slot="start" value="dewey" color="secondary"></ion-radio> </ion-item> <ion-item> <ion-label>Fooey</ion-label> <ion-radio slot="start" value="fooey" color="secondary" disabled></ion-radio> </ion-item> <ion-item> <ion-label>Louie</ion-label> <ion-radio slot="start" value="louie" color="tertiary"></ion-radio> </ion-item> </ion-radio-group> </ion-list> <div style="padding: 10px 16px"> <ion-radio-group value="louie"> <h5>Custom Labels</h5> <div> <ion-radio id="custom-huey" value="huey"></ion-radio> <label for="custom-huey">Huey</label> </div> <div> <ion-radio id="custom-dewey" value="dewey"></ion-radio> <label for="custom-dewey">Dewey</label> </div> <div> <ion-radio id="custom-fooey" value="fooey" disabled></ion-radio> <label for="custom-fooey">Fooey</label> </div> <div> <ion-radio id="custom-louie" value="louie"></ion-radio> <label for="custom-louie">Louie</label> </div> </ion-radio-group> </div> </ion-content> </ion-app> </body> <style> ion-list { margin-bottom: 10px !important; } .native-radio-group { background: white; padding: 10px 16px; margin-bottom: 10px; } .native-radio-group div { margin: 10px 0; } </style> <script> const inputs = document.querySelectorAll('ion-radio'); for (var i = 0; i < inputs.length; i++) { const input = inputs[i]; input.addEventListener('ionBlur', function() { console.log('Listen ionBlur: fired'); }); input.addEventListener('ionFocus', function() { console.log('Listen ionFocus: fired'); }); input.addEventListener('ionChange', function(ev) { console.log('Listen ionChange: fired', ev.detail); }); input.addEventListener('click', function() { console.log('Listen click: fired'); }); } </script> </html>
driftyco/ionic
core/src/components/radio/test/a11y/index.html
HTML
mit
4,725
<!DOCTYPE html> <html class="theme-next mist" lang="en,zh-Hans,default"> <head> <meta charset="UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta name="theme-color" content="#222"> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" /> <link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"> <link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" /> <link href="/vendors/fontello/css/fontello.css" rel="stylesheet" type="text/css" /> <link href="/css/main.css?v=5.1.2" rel="stylesheet" type="text/css" /> <meta name="keywords" content="diary," /> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.2" /> <meta name="description" content="But a dream will always be a dream."> <meta name="keywords" content="diary"> <meta property="og:type" content="article"> <meta property="og:title" content="A human sometimes is not just a human"> <meta property="og:url" content="https://blog.haocen.me/2016/09/09/Human-dream/index.html"> <meta property="og:site_name" content="Winks of life"> <meta property="og:description" content="But a dream will always be a dream."> <meta property="og:locale" content="en"> <meta property="og:updated_time" content="2016-09-09T12:19:34.000Z"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="A human sometimes is not just a human"> <meta name="twitter:description" content="But a dream will always be a dream."> <script type="text/javascript" id="hexo.configurations"> var NexT = window.NexT || {}; var CONFIG = { root: '/', scheme: 'Mist', version: '5.1.2', sidebar: {"position":"right","display":"hide","offset":12,"offset_float":12,"b2t":false,"scrollpercent":false,"onmobile":false}, fancybox: true, tabs: true, motion: {"enable":false,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn"}}, duoshuo: { userId: '0', author: 'Author' }, algolia: { applicationID: '', apiKey: '', indexName: '', hits: {"per_page":10}, labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"} } }; </script> <link rel="canonical" href="https://blog.haocen.me/2016/09/09/Human-dream/"/> <title>A human sometimes is not just a human | Winks of life</title> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-59205823-2', 'auto'); ga('send', 'pageview'); </script> </head> <body itemscope itemtype="http://schema.org/WebPage" lang="en"> <div class="container sidebar-position-right page-post-detail"> <div class="headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="site-brand-wrapper"> <div class="site-meta "> <div class="custom-logo-site-title"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <span class="site-title">Winks of life<i class="icon-noblesse-oblige"></i></span> <span class="logo-line-after"><i></i></span> </a> </div> <p class="site-subtitle"></p> </div> <div class="site-nav-toggle"> <button> <span class="btn-bar"></span> <span class="btn-bar"></span> <span class="btn-bar"></span> </button> </div> </div> <nav class="site-nav"> <ul id="menu" class="menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"> Home </a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"> Tags </a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"> Archives </a> </li> <li class="menu-item menu-item-about"> <a href="https://haocen.me" rel="section"> About </a> </li> </ul> </nav> </div> </header> <main id="main" class="main"> <div class="main-inner"> <div class="content-wrap"> <div id="content" class="content"> <div id="posts" class="posts-expand"> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <div class="post-block"> <link itemprop="mainEntityOfPage" href="https://blog.haocen.me/2016/09/09/Human-dream/"> <span hidden itemprop="author" itemscope itemtype="http://schema.org/Person"> <meta itemprop="name" content="Haocen Xu"> <meta itemprop="description" content=""> <meta itemprop="image" content="https://haocen.me/images/profilepic.jpg"> </span> <span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization"> <meta itemprop="name" content="Winks of life"> </span> <header class="post-header"> <h1 class="post-title" itemprop="name headline">A human sometimes is not just a human</h1> <div class="post-meta"> <span class="post-time"> <span class="post-meta-item-icon"> <i class="fa fa-calendar-o"></i> </span> <span class="post-meta-item-text">Posted on</span> <time title="Post created" itemprop="dateCreated datePublished" datetime="2016-09-09T12:18:28+00:00"> 2016-09-09 </time> </span> <span id="/2016/09/09/Human-dream/" class="leancloud_visitors" data-flag-title="A human sometimes is not just a human"> <span class="post-meta-divider">|</span> <span class="post-meta-item-icon"> <i class="fa fa-eye"></i> </span> <span class="post-meta-item-text">Visitors&#58;</span> <span class="leancloud-visitors-count"></span> </span> </div> </header> <div class="post-body" itemprop="articleBody"> <p>But a dream will always be a dream.</p> </div> <footer class="post-footer"> <div class="post-tags"> <a href="/tags/diary/" rel="tag"># diary</a> </div> <div class="post-nav"> <div class="post-nav-next post-nav-item"> <a href="/2016/08/16/We-shall-defend-our-island-whatever-the-cost-may-be/" rel="next" title="We shall defend our island, whatever the cost may be"> <i class="fa fa-chevron-left"></i> We shall defend our island, whatever the cost may be </a> </div> <span class="post-nav-divider"></span> <div class="post-nav-prev post-nav-item"> <a href="/2016/09/10/Being-deeply-loved-is-a-luxury/" rel="prev" title="Being deeply loved is a luxury"> Being deeply loved is a luxury <i class="fa fa-chevron-right"></i> </a> </div> </div> </footer> </div> </article> <div class="post-spread"> </div> </div> </div> <div class="comments" id="comments"> </div> </div> <div class="sidebar-toggle"> <div class="sidebar-toggle-line-wrap"> <span class="sidebar-toggle-line sidebar-toggle-line-first"></span> <span class="sidebar-toggle-line sidebar-toggle-line-middle"></span> <span class="sidebar-toggle-line sidebar-toggle-line-last"></span> </div> </div> <aside id="sidebar" class="sidebar"> <div class="sidebar-inner"> <section class="site-overview sidebar-panel sidebar-panel-active"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="https://haocen.me/images/profilepic.jpg" alt="Haocen Xu" /> <p class="site-author-name" itemprop="name">Haocen Xu</p> <p class="site-description motion-element" itemprop="description">La vie est drôle</p> </div> <nav class="site-state motion-element"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">78</span> <span class="site-state-item-name">posts</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/index.html"> <span class="site-state-item-count">9</span> <span class="site-state-item-name">tags</span> </a> </div> </nav> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="mailto:haocen.xu@gmail.com" target="_blank" title="Email"> <i class="fa fa-fw fa-paper-plane"></i>Email</a> </span> <span class="links-of-author-item"> <a href="https://github.com/haocen" target="_blank" title="GitHub"> <i class="fa fa-fw fa-github-alt"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="https://haocen.me/#contact" target="_blank" title="Contact Form"> <i class="fa fa-fw fa-pencil"></i>Contact Form</a> </span> <span class="links-of-author-item"> <a href="https://haocen.me/privacy_policy?site=blog" target="_blank" title="Privacy Policy"> <i class="fa fa-fw fa-user-secret"></i>Privacy Policy</a> </span> </div> <div class="cc-license motion-element" itemprop="license"> <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/" class="cc-opacity" target="_blank"> <img src="/images/cc-by-nc-sa.svg" alt="Creative Commons" /> </a> </div> </section> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright" > &copy; 2016 &mdash; <span itemprop="copyrightYear">2019</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">Haocen Xu</span> </div> <div class="powered-by">Powered by <a class="theme-link" href="https://hexo.io">Hexo</a></div> <span class="post-meta-divider">|</span> <div class="theme-info">Theme &mdash; <a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">NexT.Mist</a> </div> </div> </footer> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> </div> </div> <script type="text/javascript"> if (Object.prototype.toString.call(window.Promise) !== '[object Function]') { window.Promise = null; } </script> <script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/post-details.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/scrollspy.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/post-details.js?v=5.1.2"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.2"></script> <script src="https://cdn1.lncld.net/static/js/av-core-mini-0.6.4.js"></script> <script>AV.initialize("MFqtGdjYYn2TkGAr0nIiTDFq-gzGzoHsz", "68HdC3nYALNyPsiJrqD1u2tT");</script> <script> function showTime(Counter) { var query = new AV.Query(Counter); var entries = []; var $visitors = $(".leancloud_visitors"); $visitors.each(function () { entries.push( $(this).attr("id").trim() ); }); query.containedIn('url', entries); query.find() .done(function (results) { var COUNT_CONTAINER_REF = '.leancloud-visitors-count'; if (results.length === 0) { $visitors.find(COUNT_CONTAINER_REF).text(0); return; } for (var i = 0; i < results.length; i++) { var item = results[i]; var url = item.get('url'); var time = item.get('time'); var element = document.getElementById(url); $(element).find(COUNT_CONTAINER_REF).text(time); } for(var i = 0; i < entries.length; i++) { var url = entries[i]; var element = document.getElementById(url); var countSpan = $(element).find(COUNT_CONTAINER_REF); if( countSpan.text() == '') { countSpan.text(0); } } }) .fail(function (object, error) { console.log("Error: " + error.code + " " + error.message); }); } function addCount(Counter) { var $visitors = $(".leancloud_visitors"); var url = $visitors.attr('id').trim(); var title = $visitors.attr('data-flag-title').trim(); var query = new AV.Query(Counter); query.equalTo("url", url); query.find({ success: function(results) { if (results.length > 0) { var counter = results[0]; counter.fetchWhenSave(true); counter.increment("time"); counter.save(null, { success: function(counter) { var $element = $(document.getElementById(url)); $element.find('.leancloud-visitors-count').text(counter.get('time')); }, error: function(counter, error) { console.log('Failed to save Visitor num, with error message: ' + error.message); } }); } else { var newcounter = new Counter(); /* Set ACL */ var acl = new AV.ACL(); acl.setPublicReadAccess(true); acl.setPublicWriteAccess(true); newcounter.setACL(acl); /* End Set ACL */ newcounter.set("title", title); newcounter.set("url", url); newcounter.set("time", 1); newcounter.save(null, { success: function(newcounter) { var $element = $(document.getElementById(url)); $element.find('.leancloud-visitors-count').text(newcounter.get('time')); }, error: function(newcounter, error) { console.log('Failed to create'); } }); } }, error: function(error) { console.log('Error:' + error.code + " " + error.message); } }); } $(function() { var Counter = AV.Object.extend("Counter"); if ($('.leancloud_visitors').length == 1) { addCount(Counter); } else if ($('.post-title-link').length > 1) { showTime(Counter); } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true, skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Queue(function() { var all = MathJax.Hub.getAllJax(), i; for (i=0; i < all.length; i += 1) { all[i].SourceElement().parentNode.className += ' has-jax'; } }); </script> <script type="text/javascript" src="//cdn.bootcss.com/mathjax/2.7.1/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> </body> </html>
haocen-site/haocen-site.github.io
2016/09/09/Human-dream/index.html
HTML
mit
18,488
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <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="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">dev / contrib:hedges 8.4.dev</a></li> <li class="active"><a href="">2014-11-21 05:28:20</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:hedges <small> 8.4.dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2014-11-21 05:28:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-21 05:28:20 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:hedges/coq:contrib:hedges.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:hedges.8.4.dev coq.dev</code></dd> <dt>Return code</dt> <dd>768</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq:contrib:hedges -&gt; coq &lt;= 8.4.dev Your request can&#39;t be satisfied: - Conflicting version constraints for coq No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:hedges.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq.dev === 1 to remove === =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq.dev. [WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing The following actions will be performed: - install coq.8.4pl4 [required by coq:contrib:hedges] - install coq:contrib:hedges.8.4.dev === 2 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq.8.4pl4: ./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc --prefix /home/bench/.opam/system --usecamlp5 --camlp5dir /home/bench/.opam/system/lib/camlp5 --coqide no make -j4 world make -j4 states make install Installing coq.8.4pl4. Building coq:contrib:hedges.8.4.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:hedges.8.4.dev. </pre></dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>Data not available in this bench.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io-old
clean/Linux-x86_64-4.01.0-1.2.0/unstable/dev/contrib:hedges/8.4.dev/2014-11-21_05-28-20.html
HTML
mit
6,876
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <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="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">hott / contrib:regexp 8.4.dev</a></li> <li class="active"><a href="">2014-12-02 15:31:10</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:regexp <small> 8.4.dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2014-12-02 15:31:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-12-02 15:31:10 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:regexp/coq:contrib:regexp.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:regexp.8.4.dev coq.hott</code></dd> <dt>Return code</dt> <dd>768</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is hott). The following dependencies couldn&#39;t be met: - coq:contrib:regexp -&gt; coq &lt;= 8.4.dev Your request can&#39;t be satisfied: - Conflicting version constraints for coq No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:regexp.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq.hott === 1 to remove === =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq.hott. [WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing The following actions will be performed: - install coq.8.4.dev [required by coq:contrib:regexp] - install coq:contrib:regexp.8.4.dev === 2 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq.8.4.dev: ./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no make -j4 make install Installing coq.8.4.dev. Building coq:contrib:regexp.8.4.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:regexp.8.4.dev. </pre></dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io-old
clean/Linux-x86_64-4.02.1-1.2.0/unstable/hott/contrib:regexp/8.4.dev/2014-12-02_15-31-10.html
HTML
mit
6,846
<!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_55) on Thu Apr 24 20:56:02 UTC 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>SimpleParams (Solr 4.8.0 API)</title> <meta name="date" content="2014-04-24"> <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="SimpleParams (Solr 4.8.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 class="navBarCell1Rev">Class</li> <li><a href="class-use/SimpleParams.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="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/common/params/ShardParams.html" title="interface in org.apache.solr.common.params"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/solr/common/params/SolrParams.html" title="class in org.apache.solr.common.params"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/common/params/SimpleParams.html" target="_top">Frames</a></li> <li><a href="SimpleParams.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="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</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.apache.solr.common.params</div> <h2 title="Interface SimpleParams" class="title">Interface SimpleParams</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public interface <span class="strong">SimpleParams</span></pre> <div class="block">Parameters used by the SimpleQParser.</div> </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> <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>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#AND_OPERATOR">AND_OPERATOR</a></strong></code> <div class="block">Enables <code>AND</code> operator (+)</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#ESCAPE_OPERATOR">ESCAPE_OPERATOR</a></strong></code> <div class="block">Enables <code>ESCAPE</code> operator (\)</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#FUZZY_OPERATOR">FUZZY_OPERATOR</a></strong></code> <div class="block">Enables <code>FUZZY</code> operator (~)</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#NEAR_OPERATOR">NEAR_OPERATOR</a></strong></code> <div class="block">Enables <code>NEAR</code> operator (~)</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#NOT_OPERATOR">NOT_OPERATOR</a></strong></code> <div class="block">Enables <code>NOT</code> operator (-)</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#OR_OPERATOR">OR_OPERATOR</a></strong></code> <div class="block">Enables <code>OR</code> operator (|)</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#PHRASE_OPERATOR">PHRASE_OPERATOR</a></strong></code> <div class="block">Enables <code>PHRASE</code> operator (")</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#PRECEDENCE_OPERATORS">PRECEDENCE_OPERATORS</a></strong></code> <div class="block">Enables <code>PRECEDENCE</code> operators: <code>(</code> and <code>)</code></div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#PREFIX_OPERATOR">PREFIX_OPERATOR</a></strong></code> <div class="block">Enables <code>PREFIX</code> operator (*)</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#QF">QF</a></strong></code> <div class="block">Query fields and boosts.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#QO">QO</a></strong></code> <div class="block">Override the currently enabled/disabled query operators.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="http://download.oracle.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="../../../../../org/apache/solr/common/params/SimpleParams.html#WHITESPACE_OPERATOR">WHITESPACE_OPERATOR</a></strong></code> <div class="block">Enables <code>WHITESPACE</code> operators: ' ' '\n' '\r' '\t'</div> </td> </tr> </table> </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="QF"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>QF</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> QF</pre> <div class="block">Query fields and boosts.</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.QF">Constant Field Values</a></dd></dl> </li> </ul> <a name="QO"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>QO</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> QO</pre> <div class="block">Override the currently enabled/disabled query operators.</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.QO">Constant Field Values</a></dd></dl> </li> </ul> <a name="AND_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>AND_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> AND_OPERATOR</pre> <div class="block">Enables <code>AND</code> operator (+)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.AND_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="NOT_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NOT_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> NOT_OPERATOR</pre> <div class="block">Enables <code>NOT</code> operator (-)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.NOT_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="OR_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>OR_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> OR_OPERATOR</pre> <div class="block">Enables <code>OR</code> operator (|)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.OR_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="PREFIX_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PREFIX_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PREFIX_OPERATOR</pre> <div class="block">Enables <code>PREFIX</code> operator (*)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.PREFIX_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="PHRASE_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PHRASE_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PHRASE_OPERATOR</pre> <div class="block">Enables <code>PHRASE</code> operator (")</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.PHRASE_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="PRECEDENCE_OPERATORS"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>PRECEDENCE_OPERATORS</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> PRECEDENCE_OPERATORS</pre> <div class="block">Enables <code>PRECEDENCE</code> operators: <code>(</code> and <code>)</code></div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.PRECEDENCE_OPERATORS">Constant Field Values</a></dd></dl> </li> </ul> <a name="ESCAPE_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ESCAPE_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> ESCAPE_OPERATOR</pre> <div class="block">Enables <code>ESCAPE</code> operator (\)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.ESCAPE_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="WHITESPACE_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>WHITESPACE_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> WHITESPACE_OPERATOR</pre> <div class="block">Enables <code>WHITESPACE</code> operators: ' ' '\n' '\r' '\t'</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.WHITESPACE_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="FUZZY_OPERATOR"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>FUZZY_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> FUZZY_OPERATOR</pre> <div class="block">Enables <code>FUZZY</code> operator (~)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.FUZZY_OPERATOR">Constant Field Values</a></dd></dl> </li> </ul> <a name="NEAR_OPERATOR"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>NEAR_OPERATOR</h4> <pre>static final&nbsp;<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> NEAR_OPERATOR</pre> <div class="block">Enables <code>NEAR</code> operator (~)</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../constant-values.html#org.apache.solr.common.params.SimpleParams.NEAR_OPERATOR">Constant Field Values</a></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/SimpleParams.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="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../org/apache/solr/common/params/ShardParams.html" title="interface in org.apache.solr.common.params"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../org/apache/solr/common/params/SolrParams.html" title="class in org.apache.solr.common.params"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/apache/solr/common/params/SimpleParams.html" target="_top">Frames</a></li> <li><a href="SimpleParams.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="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li> <li>Constr&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2014 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
dtelaroli/angular-solr-example
solr-4.8.0/docs/solr-solrj/org/apache/solr/common/params/SimpleParams.html
HTML
mit
19,220
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>exact-real-arithmetic: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.11.1 / exact-real-arithmetic - 8.9.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> exact-real-arithmetic <small> 8.9.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-08-20 03:22:08 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-20 03:22:08 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.11.1 Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.10.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.10.0 Official release 4.10.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/exact-real-arithmetic&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/ExactRealArithmetic&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} ] tags: [ &quot;keyword: correctness&quot; &quot;keyword: real numbers&quot; &quot;keyword: arithmetic&quot; &quot;category: Mathematics/Arithmetic and Number Theory/Real numbers&quot; ] authors: [ &quot;Jérôme Creci&quot; ] bug-reports: &quot;https://github.com/coq-contribs/exact-real-arithmetic/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/exact-real-arithmetic.git&quot; synopsis: &quot;Exact Real Arithmetic&quot; description: &quot;&quot;&quot; This contribution contains a proof of correctness of some exact real arithmetic algorithms from the PhD thesis of Valérie Ménissier-Morain&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/exact-real-arithmetic/archive/v8.9.0.tar.gz&quot; checksum: &quot;md5=c3c17b1042d813b4b6bf27ce8be8858f&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-exact-real-arithmetic.8.9.0 coq.8.11.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1). The following dependencies couldn&#39;t be met: - coq-exact-real-arithmetic -&gt; coq &lt; 8.10~ -&gt; ocaml &lt; 4.10 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-exact-real-arithmetic.8.9.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.10.0-2.0.6/released/8.11.1/exact-real-arithmetic/8.9.0.html
HTML
mit
6,957
<div class="collapsibleregioninner" id="aera_core_competency_add_competency_to_template_inner"><br/><div style="border:solid 1px #DEDEDE;background:#E2E0E0; color:#222222;padding:4px;">Add the competency to a template</div><br/><br/><span style="color:#EA33A6">Arguments</span><br/><span style="font-size:80%"><b>templateid</b> (Required)<br/>        The template id<br/><br/><div><div style="border:solid 1px #DEDEDE;background:#FFF1BC;color:#222222;padding:4px;"><pre><b>General structure</b><br/> int <span style="color:#2A33A6"> <i>//The template id</i></span><br/> </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#DFEEE7;color:#222222;padding:4px;"><pre><b>XML-RPC (PHP structure)</b><br/> [templateid] =&gt; int </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST (POST parameters)</b><br/> templateid= int </pre></div></div></span><span style="font-size:80%"><b>competencyid</b> (Required)<br/>        The competency id<br/><br/><div><div style="border:solid 1px #DEDEDE;background:#FFF1BC;color:#222222;padding:4px;"><pre><b>General structure</b><br/> int <span style="color:#2A33A6"> <i>//The competency id</i></span><br/> </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#DFEEE7;color:#222222;padding:4px;"><pre><b>XML-RPC (PHP structure)</b><br/> [competencyid] =&gt; int </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST (POST parameters)</b><br/> competencyid= int </pre></div></div></span><br/><br/><span style="color:#EA33A6">Response</span><br/><span style="font-size:80%">True if successful.<br/><br/><div><div style="border:solid 1px #DEDEDE;background:#FFF1BC;color:#222222;padding:4px;"><pre><b>General structure</b><br/> int <span style="color:#2A33A6"> <i>//True if successful.</i></span><br/> </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#DFEEE7;color:#222222;padding:4px;"><pre><b>XML-RPC (PHP structure)</b><br/> int </pre></div></div><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST</b><br/> &lt;?xml version="1.0" encoding="UTF-8" ?&gt; &lt;RESPONSE&gt; &lt;VALUE&gt;int&lt;/VALUE&gt; &lt;/RESPONSE&gt; </pre></div></div></span><br/><br/><span style="color:#EA33A6">Error message</span><br/><br/><span style="font-size:80%"><div><div style="border:solid 1px #DEDEDE;background:#FEEBE5;color:#222222;padding:4px;"><pre><b>REST</b><br/> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;EXCEPTION class="invalid_parameter_exception"&gt; &lt;MESSAGE&gt;Invalid parameter value detected&lt;/MESSAGE&gt; &lt;DEBUGINFO&gt;&lt;/DEBUGINFO&gt; &lt;/EXCEPTION&gt; </pre></div></div></span><br/><br/><span style="color:#EA33A6">Restricted to logged-in users<br/></span>Yes<br/><br/><span style="color:#EA33A6">Callable from AJAX<br/></span>Yes<br/><br/></div>
manly-man/moodle-destroyer-tools
docs/moodle_api_3.1/functions/core_competency_add_competency_to_template.html
HTML
mit
2,995
<div class="container full-width"> <div class="row"> <div id="antecedents" *ngIf="dossierMedical"> <h2>Antecedents du patient</h2> <button class="btn btn-primary" (click)="lgModal1.show()"><span class="glyphicon glyphicon-plus"></span></button> <div class="table-responsive" > <div class="table table-bordered" > <div class="pre-scrollable " > <table id="myTable4" class="table table-hover"> <tr class="header"> <th onclick="sortTable(0,4)" style="width:5%;">Id</th> <th onclick="sortTable(1,4)" style="width:50%;">Date</th> <th onclick="sortTable(2,4)" style="width:50%;">Description</th> <th onclick="sortTable(3,4)" style="width:50%;">Commentaire</th> <th onclick="sortTable(4,4)" style="width:45%;">Sujet</th> <th onclick="sortTable(5,4)" style="width:45%;">Date de création</th> <th><span class="glyphicon glyphicon-trash"></span></th> </tr> <tr id="antecedent" *ngFor="let antecedent of antecedents"(click)="onSelect(antecedent)" (dblclick)="resetMessage();lgModal2.show()"> <td>{{ antecedent.idAnt }}</td> <td>{{ antecedent.dateAnt }}</td> <td>{{ antecedent.descriptionAnt }}</td> <td>{{ antecedent.commentaireAnt }}</td> <td>{{ antecedent.sujetAnt }}</td> <td>{{antecedent.dateCreationAnt}}</td> <td> <button class="btn btn-primary" (click)="onSelect(antecedent);DeleteAntecedent()"><span class="glyphicon glyphicon-trash"></span></button></td> </tr> </table> </div> </div> </div> <!--Large modal--> <div bsModal #lgModal2="bs-modal" class="modal fade" tabindex="-1" role="dialog" [config]="{backdrop: 'static'} " aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title pull-left">Detail-Antecedent</h4> <button type="button" class="close pull-right" (click)="lgModal2.hide()" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <div id="detailAntecedent" *ngIf="antecedentSelectionne"> <div> <label>ID : {{antecedentSelectionne.idAnt}}</label> </div> <div> <label>Date :</label> <input [(ngModel)]="dateAnt" required /> </div> <div> <label>Date :</label> <input [(ngModel)]="descriptionAnt" required /> </div> <div> <label>Commentaire:</label> <input [(ngModel)]="commentaireAnt" required /> </div> <div> <label>Sujet:</label> <input [(ngModel)]="sujetAnt" required /> </div> <div> <label>Date de création: {{antecedentSelectionne.dateCreationAnt}}</label> </div> </div> <div *ngIf="!deleted"> <button class="btn btn-primary" (click)="UpdateAntecedent()"><span class="glyphicon glyphicon-pencil"></span></button> <button class="btn btn-primary" (click)="DeleteAntecedent()"><span class="glyphicon glyphicon-trash"></span></button> </div> <div *ngIf="messageKO"> <alert type="danger" [dismissOnTimeout]="2000">{{ messageKO }}</alert> </div> <div *ngIf="messageOK"> <alert type="success" [dismissOnTimeout]="2000">{{ messageOK }}</alert> </div> </div> </div> </div> </div> <div bsModal #lgModal1="bs-modal" class="modal fade" tabindex="-1" role="dialog" [config]="{backdrop: 'static'}" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h4 class="modal-title pull-left">Ajouter un antecedent</h4> <button type="button" class="close pull-right" (click)="lgModal1.hide();getAntecedents()" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <div id="ajoutAntecedent"> <antecedent-creation *ngIf="dossierMedical" [dossierMedical]="dossierMedical"></antecedent-creation> </div> </div> </div> </div> </div> </div> </div> </div>
MaaZtyle/Averroes-Angular
app/home/antecedent.component.html
HTML
mit
6,266
<!DOCTYPE html> <html> <head> <script> var urlParams = window.location.search.split(/[?&]/).slice(1).map(function(paramPair) { return paramPair.split(/=(.+)?/).slice(0, 2); }).reduce(function (obj, pairArray) { obj[pairArray[0]] = pairArray[1]; return obj; }, {}); window.addEventListener("load", function load(event){ var dest = unescape(urlParams.load_url); document.getElementById("dest").innerHTML = dest; }); </script> </head> <body> I will load <b id="dest"></b> when running. I promise! </body> </html>
muffinista/before-dawn-screensavers
run-url/preview.html
HTML
mit
603
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>select-setDefaultText.html</title> <style type="text/css"> option.placeholder{ display: none; } option:hover{ background: red; color: red; } </style> </head> <body> <form> <label>color: <input type="color" name="color" value="#FF0000"></label><br> <label>avatar: <input type="file" name=""></label><br> <button type="submit">OK</button> </form> </body> </html>
WWWCourses/ProgressBG-Front-End-Dev
pages/themes/beginners/Appendix/Forms/selectPlaceholder.html
HTML
mit
480
<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="zh-TW" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:user="urn:user-namespace-here" xmlns="http://www.w3.org/1999/xhtml"> <!-- Mirrored from igpa.nat.gov.tw/fp.asp?xItem=1892&ctNode=5&mp=1 by HTTrack Website Copier/3.x [XR&CO'2007], Wed, 26 Mar 2008 08:42:12 GMT --> <head> <title>清查不當黨產,向人民交代-國家資產經營管理委員會黨產處理小組</title> <link rel="stylesheet" type="text/css" href="xslgip/style1/css/content.css"/> </head> <body> <table cellpadding="0" cellspacing="0" id="middle" summary="二欄排版表格" width="100%" height="100%"> <tr> <td valign="top" id="main"><a href="#" title="主要內容區" class="Accesskey" accesskey="C">:::</a>   <div class="PageTitle">司法訴訟</div> <div class="Article"> <h1>徐少萍立法委員代表國民立法院黨團就中廣股權移轉案訴行政院張俊雄院長、許志雄政務委員及新聞局謝志偉局長侮辱公署及誹謗之刑事告發案</h1> <div class="Date">張貼日期:2007/9/5</div> <div class="Body"><P>一、華夏公司以新台幣6、7億元出賣中廣股權,且只收1億元就轉讓股權和變更負責人,華夏負責人陳明暉涉嫌違反刑法第342條背信罪嫌;而趙少康利用8家公司作為迂迴取得中廣股權工具,有違反公司法第9條之嫌。通傳會委員在未澄清中廣股權交易案疑點前,便核准移轉,就參與許可處分的政務官(亦即主委蘇永欽、副主委石世豪、劉宗德、委員林東泰、謝進男五人),行政院以涉嫌貪污治罪條例第6條第1項第4款圖利罪罪嫌函送檢方偵辦,並召開記者會對外說明。對行政院就本案之處置,徐少萍立法委員以國民黨黨團名義向台北地檢署提出刑事告發狀,除指摘行政院張俊雄院長、許志雄政務委與員新聞局謝志偉局長涉侮辱公署(通傳會)外,更認在記者會上將黨產譬喻為「贓物」係誹謗國民黨。 <P>&nbsp;二、將黨產譬喻為「贓款」之說法,臺灣臺北地方法院甫於今年6月1日做成之93年度自字第285號刑事判決(全文參見附檔)已指出:中國國民黨黨產之取得,有行政院及各級政府機關將所管有之公有財產贈與、轉帳撥用、或撥歸中國國民黨所有、經營之情形,顯不合現代民主法治、政黨政治之理念,早有爭議,除行政院所提「政黨不當取得財產處理條例」草案外,並有監察院2001年4月2日之調查報告可稽,顯屬可受公評之事。因其不當取得,而以「贓款」為比喻,乃適當之評論。 <P> <P>相關報導 <P><A title="藍營告妨害名譽 謝志偉:贓款字眼還太客氣(2007/07/05)" href="ct7f0f.html?xItem=1739&amp;ctNode=6&amp;mp=1">藍營告妨害名譽 謝志偉:贓款字眼還太客氣(2007/07/05)</A> <P><A title=國民黨立院黨團控告張俊雄等三人侮辱公署(2007/07/05) href="ctdf55.html?xItem=1783&amp;ctNode=6&amp;mp=1">國民黨立院黨團控告張俊雄等三人侮辱公署(2007/07/05)</A></P></div> </div> <div class="download"> <h3>附件下載</h3> <ul> <li><a target="_nwGIP" href="public/Attachment/79515351071.pdf" title="徐少萍訴張俊雄院長、許志雄政委及謝志偉局長侮辱公署及誹謗之刑事告發狀">徐少萍訴張俊雄院長、許志雄政委及謝志偉局長侮辱公署及誹謗之刑事告發狀</a></li> <li><a target="_nwGIP" href="public/Attachment/79716134771.pdf" title="臺灣臺北地方93年度自字第285號刑事判決">臺灣臺北地方93年度自字第285號刑事判決</a></li> </ul> </div><DIV id=footer >使用 IE 6.0 以上 最佳觀看解析度 1024x768 .&nbsp; <A href="contenta6c6.html?CuItem=39">網站免責條款</A>&nbsp;<BR> <font color="#990000"><strong>國家資產經營管理委員會—黨產處理小組</strong></font> 本網站所載之新聞報導、學者研究等內容,其著作權屬各該著作權人所有,其內容不代表政府立場。其餘資料,依<a href="http://data.gov.tw/license" target="_blank">政府資料開放授權條款</a>釋出。本網站原始碼,<a href="https://github.com/cipas-tw/old-website" target="_blank">依MIT授權條款釋出</a>。<br> <img alt=IGPA src="site/igpa/public/MMO/IGPA/IPGA-banner7.gif" mmoid="1585">歡迎連結</DIV></td> </tr> </table> </body> <!-- Mirrored from igpa.nat.gov.tw/fp.asp?xItem=1892&ctNode=5&mp=1 by HTTrack Website Copier/3.x [XR&CO'2007], Wed, 26 Mar 2008 08:42:12 GMT --> </html>
cipas-tw/old-website
igpa.nat.gov.tw/fpd944.html
HTML
mit
4,711
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Login Page - Photon Admin Panel Theme</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0"> <link rel="shortcut icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/favicon.ico"/> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/iosicon.png"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/> <!--[if IE]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" /> <![endif]--> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" /> <script type="text/javascript" src="js/plugins/excanvas.js"></script> <script type="text/javascript" src="js/plugins/html5shiv.js"></script> <script type="text/javascript" src="js/plugins/respond.min.js"></script> <script type="text/javascript" src="js/plugins/fixFontIcons.js"></script> <![endif]--> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/js/common.js"></script> </head> <body class="body-login"> <div class="nav-fixed-topright" style="visibility: hidden"> <ul class="nav nav-user-menu"> <li class="user-sub-menu-container"> <a href="javascript:;"> <i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i> </a> <ul class="nav user-sub-menu"> <li class="light"> <a href="javascript:;"> <i class='icon-photon stop'></i>Light Version </a> </li> <li class="dark"> <a href="javascript:;"> <i class='icon-photon stop'></i>Dark Version </a> </li> </ul> </li> <li> <a href="javascript:;"> <i class="icon-photon mail"></i> </a> </li> <li> <a href="javascript:;"> <i class="icon-photon comment_alt2_stroke"></i> <div class="notification-count">12</div> </a> </li> </ul> </div> <script> $(function(){ setTimeout(function(){ $('.nav-fixed-topright').removeAttr('style'); }, 300); $(window).scroll(function(){ if($('.breadcrumb-container').length){ var scrollState = $(window).scrollTop(); if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released'); else $('.nav-fixed-topright').removeClass('nav-released') } }); $('.user-sub-menu-container').on('click', function(){ $(this).toggleClass('active-user-menu'); }); $('.user-sub-menu .light').on('click', function(){ if ($('body').is('.light-version')) return; $('body').addClass('light-version'); setTimeout(function() { $.cookie('themeColor', 'light', { expires: 7, path: '/' }); }, 500); }); $('.user-sub-menu .dark').on('click', function(){ if ($('body').is('.light-version')) { $('body').removeClass('light-version'); $.cookie('themeColor', 'dark', { expires: 7, path: '/' }); } }); }); </script> <div class="container-login"> <div class="form-centering-wrapper"> <div class="form-window-login"> <div class="form-window-login-logo"> <div class="login-logo"> <img src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="farbtastic.js.html#">Sign Up &#187;</a> <a href="farbtastic.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a> </div> <div class="login-or">Or</div> <div class="login-input-area"> <form method="POST" action="dashboard.php"> <span class="help-block">Login With Your Photon Account</span> <input type="text" name="email" placeholder="Email"> <input type="password" name="password" placeholder="Password"> <button type="submit" class="btn btn-large btn-success btn-login">Login</button> </form> <a href="farbtastic.js.html#" class="forgot-pass">Forgot Your Password?</a> </div> </div> </div> </div> </div> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-1936460-27']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </body> </html>
user-tony/photon-rails
lib/assets/images/photon/plugins/elrte/js/plugins/prettify/images/photon/js/plugins/farbtastic.js.html
HTML
mit
13,729
{% for person in site.data.people.people %} {% if person.name == include.talk.speaker %} {% if talk.type %} {% assign talkClass = talk.type %} {% endif %} <li class="talk talk-{{talkClass}} media"> {% if include.showAvatar %} {% include partial-person-avatar.html person=person %} {% endif %} <div class="bd"> <h3 class="title">{{ include.talk.title }}</h3> <a class="speaker" href="/speakers/#{{ person.twitter }}">{{ person.name }}</a> {% if talk.slides %} <span class="sep">|</span> <a href="{{ talk.slides }}" class="slides">Slides</a> {% endif %} {% if include.showDescription == "true" %} <div class="talk-description"> {% if talk.description-long %} {% for p in talk.description-long %} <p>{{ p }}</p> {% endfor %} {% else %} <p>{{ talk.description-short }}</p> {% endif %} </div> {% endif %} </div> </li> {% endif %} {% endfor %}
styleandclass/styleandclass.ca
root/_includes/partial-talk.html
HTML
mit
1,250
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <HTML> <HEAD> <TITLE>Form1H.xls</TITLE> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <META name="generator" content="pdftohtml 0.40"> <META name="author" content="theilman"> <META name="date" content="2015-05-15T07:39:37+00:00"> </HEAD> <FRAMESET cols="100,*"> <FRAME name="links" src="W29714.pdf_ind.html"> <FRAME name="contents" src="W29714.pdfs.html"> </FRAMESET> </HTML>
datamade/elpc_bakken
html/pdf/W29714.pdf.html
HTML
mit
505
<!DOCTYPE html> <html> <head> <!-- [[! Document Settings ]] --> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <!-- [[! Page Meta ]] --> <title>Hacklab Mikkeli</title> <meta name="description" content="Hacklab Mikkeli - Avoin ja yhteisöllinen työtila tieteestä, teknologiasta ja digitaalisesta taiteesta kiinnostuneille Mikkelissä &bull; An open and community-based workspace for people with interest in science, technology and digital arts in Mikkeli" /> <meta name="HandheldFriendly" content="True" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="shortcut icon" href="/assets/images/favicon.ico" > <!-- [[! Styles'n'Scripts ]] --> <link rel="stylesheet" type="text/css" href="/assets/css/screen.css" /> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" /> <link rel="stylesheet" type="text/css" href="/assets/css/syntax.css" /> <!-- [[! Ghost outputs important style and meta data with this tag ]] --> <link rel="canonical" href="/" /> <meta name="referrer" content="origin" /> <link rel="next" href="/page2/" /> <meta property="og:site_name" content="Hacklab Mikkeli" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Hacklab Mikkeli" /> <meta property="og:description" content="Avoin ja yhteisöllinen työtila tieteestä, teknologiasta ja digitaalisesta taiteesta kiinnostuneille Mikkelissä &bull; An open and community-based workspace for people with interest in science, technology and digital arts in Mikkeli" /> <meta property="og:image" content="/assets/images/cover1.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Hacklab Mikkeli" /> <meta name="twitter:description" content="Avoin ja yhteisöllinen työtila tieteestä, teknologiasta ja digitaalisesta taiteesta kiinnostuneille Mikkelissä &bull; An open and community-based workspace for people with interest in science, technology and digital arts in Mikkeli" /> <meta name="twitter:image:src" content="/assets/images/cover1.jpg" /> <script type="application/ld+json"> { "@context": "http://schema.org", "@type": "Website", "publisher": "Finding The Way Home", "image": "/assets/images/cover1.jpg", "description": "Avoin ja yhteisöllinen työtila tieteestä, teknologiasta ja digitaalisesta taiteesta kiinnostuneille Mikkelissä &bull; An open and community-based workspace for people with interest in science, technology and digital arts in Mikkeli" } </script> <meta name="generator" content="Jekyll 3.0.0" /> <link rel="alternate" type="application/rss+xml" title="Hacklab Mikkeli" href="/rss.xml" /> </head> <body class="paged archive-template nav-closed"> <div class="nav"> <h3 class="nav-title">Menu</h3> <a href="#" class="nav-close"> <span class="hidden">Close</span> </a> <ul> <li class="nav-home " role="presentation"><a href="/">Home</a></li> <li class="nav-events nav-current" role="presentation"><a href="/tag/event">Events</a></li> <li class="nav-projects " role="presentation"><a href="/tag/project">Projects</a></li> <li class="nav-instructions " role="presentation"><a href="/instructions">Instructions</a></li> <li class="nav-join"><a href="https://hacklabmikkeli.yhdistysavain.fi/liity-jaseneksi/" >Hae jäsenyyttä &bull; Apply for membership</a></li> <li class="nav-for-members"><a href="https://hacklabmikkeli.yhdistysavain.fi/jasensivut/" >Jäsenille &bull; For members</a></li> <li class="nav-gh role="presentation"><a href="https://github.com/hacklabmikkeli">Github</a></li> <li class="nav-twitter role="presentation"><a href="https://twitter.com/HacklabMikkeli">Twitter</a></li> <li class="nav-fb role="presentation"><a href=" https://facebook.com/hacklabmikkeli">Facebook</a></li> </ul> <a class="subscribe-button icon-feed" href="/feed.xml">Subscribe</a> </div> <span class="nav-cover"></span> <div class="site-wrapper"> <!-- [[! Everything else gets inserted here ]] --> <!-- < dynamically overriding backgrounds for tags as well as descriptions --> <!-- < default}} --> <!-- The tag above means - insert everything in this file into the [body] of the default.hbs template --> <!-- If we have a tag cover, display that - else blog cover - else nothing --> <header class="main-header tag-head " style="background-image: url(/public/images/cake.jpg) "> <nav class="main-nav overlay clearfix"> <a class="blog-logo" href="/"><img src="/assets/images/alien_pink.svg" alt="Blog Logo" /></a> <a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a> </nav> <div class="vertical"> <div class="main-header-content inner"> <h1 class="page-title">Event</h1> <h2 class="page-description"> Events that we have been organizing. </h2> </div> </div> </header> <!-- The main content area on the homepage --> <main id="content" class="content" role="main"> <!-- The tag below includes the post loop - partials/loop.hbs --> <!-- Previous/next page links - only displayed on page 2+ --> <div class="extra-pagination inner"> <nav class="pagination" role="pagination"> <a class="newer-posts" href="/tag/event" title="Previous Page">&laquo; Newer Posts</a> <span class="page-number"> Page 2 of 4 </span> <a class="older-posts" href="/tag/event/page3/" title="Next Page">Older Posts &raquo;</a> </nav> </div> <!-- Previous/next page links - displayed on every page --> <nav class="pagination" role="pagination"> <a class="newer-posts" href="/tag/event" title="Previous Page">&laquo; Newer Posts</a> <span class="page-number"> Page 2 of 4 </span> <a class="older-posts" href="/tag/event/page3/" title="Next Page">Older Posts &raquo;</a> </nav> </main> <footer class="site-footer clearfix"> <section class="copyright"><a href="/">Hacklab Mikkeli</a> &copy; 2018</section> <section class="poweredby">Proudly published with <a href="https://jekyllrb.com/">Jekyll</a> using <a href="https://github.com/biomadeira/jasper">Jasper</a></section> </footer> </div> <!-- [[! Ghost outputs important scripts and data with this tag ]] --> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script> <!-- [[! The main JavaScript file for Casper ]] --> <script type="text/javascript" src="/assets/js/jquery.fitvids.js"></script> <script type="text/javascript" src="/assets/js/index.js"></script> <!-- Add Google Analytics --> <!-- Google Analytics Tracking code --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-59054179-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
hacklabmikkeli/hacklabmikkeli.github.io
tag/event/page2/index.html
HTML
mit
7,631
<!DOCTYPE html> <html lang="en-us" dir="ltr" itemscope itemtype="http://schema.org/Article"> <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>Sniper Americano</title> <meta name="author" content="" /> <meta name="description" content="sniper Americano é um filme de Clint Eastwood, e com isso deduzimos de onde vem a sensibilidade da maior parte do filme e a calma com que o tempo é conduzido na história de Chris Kyle (um Bradley..."/> <meta name="yandex-verification" content="48a8210fc043c5e8" /> <meta name="generator" content="Hugo 0.54.0" /> <meta itemprop="name" content="Sniper Americano"/> <meta itemprop="description" content="sniper Americano é um filme de Clint Eastwood, e com isso deduzimos de onde vem a sensibilidade da maior parte do filme e a calma com que o tempo é conduzido na história de Chris Kyle (um Bradley..."/> <meta itemprop="image" content="/img/logo.svg"/> <meta property="og:title" content="Sniper Americano"/> <meta property="og:type" content="article"/> <meta property="og:url" content="http://www.cinetenisverde.com.br/sniper-americano/"/> <meta property="og:image" content="/img/logo.svg"/> <meta property="og:description" content="sniper Americano é um filme de Clint Eastwood, e com isso deduzimos de onde vem a sensibilidade da maior parte do filme e a calma com que o tempo é conduzido na história de Chris Kyle (um Bradley..."/> <meta property="og:site_name" content="Cine Tênis Verde"/> <meta property="article:published_time" content="2015-04-30T00:00:00&#43;00:00"/> <meta property="article:section" content="post"/> <meta name="twitter:card" content="summary"/> <meta name="twitter:site" content=""/> <meta name="twitter:title" content="Sniper Americano"/> <meta name="twitter:description" content="sniper Americano é um filme de Clint Eastwood, e com isso deduzimos de onde vem a sensibilidade da maior parte do filme e a calma com que o tempo é conduzido na história de Chris Kyle (um Bradley..."/> <meta name="twitter:creator" content=""/> <meta name="twitter:image:src" content="/img/logo.svg"/> <link rel="stylesheet" type="text/css" href="/css/capsule.min.css"/> <link rel="stylesheet" type="text/css" href="/css/custom.css"/> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-50557403-1', 'auto'); ga('send', 'pageview'); </script> <link rel="apple-touch-icon" href="/img/apple-touch-icon.png"/> <link rel="icon" href="/img/favicon.ico"/> </head> <body style="min-height:100vh;display:flex;flex-direction:column"> <nav class="navbar has-shadow is-white" role="navigation" aria-label="main navigation"> <div class="container"> <div class="navbar-brand"> <a class="navbar-item" href="/"> <img alt="Brand" src="/img/brand.svg"> <div class="title is-4">&nbsp;Cine Tênis Verde</div> </a> <label class="button navbar-burger is-white" for="navbar-burger-state"> <span></span> <span></span> <span></span> </label> </div> <input type="checkbox" id="navbar-burger-state"/> <div class="navbar-menu"> <div class="navbar-end"> <a href="/post" class="navbar-item ">search </a> <a href="https://twitter.com/cinetenisverde" class="navbar-item ">twitter </a> <a href="/index.xml" class="navbar-item ">rss </a> </div> </div> </div> </nav> <section class="section" style="flex:1"> <div class="container"> <p class="title">Sniper Americano</p> <p class="subtitle"><span class="entry-sidebar-stars"> &#x2605;&#x2605;&#x2605;&#x2606;&#x2606; </span> Wanderley Caloni, <a href="https://github.com/Caloni/cinetenisverde/commits/master/content/post/sniper-americano.md">April 30, 2015</a></p> <p><p> <div class="content"> <p>sniper Americano é um filme de Clint Eastwood, e com isso deduzimos de onde vem a sensibilidade da maior parte do filme e a calma com que o tempo é conduzido na história de Chris Kyle (um Bradley Cooper irreconhecível), um &ldquo;caipira&rdquo; patriota e que resolveu se candidatar ao exército de elite, desistindo de sua vida de caubói e deixando sua esposa sozinha cuidado de seus filhos em longos hiatos, que são as operações que ele participou na última cagada norte-americana: a Guerra do Iraque.</p> <p>Ressaltando com exatidão os dilemas morais do sujeito, e universalizando essa dúvida com nós, espectadores, a primeira cena já é forte o suficiente para repensarmos toda essa bobagem de guerra: matar uma criança é justificável para salvar um bando de soldados que, adultos, escolheram esse risco? Igualmente preciso em imaginar a rotina de um atirador de elite através de sua arma, uma sniper de longo alcance e ótima pontaria, o filme é realista no ponto certo e em um ritmo rápido para trazer à tona o tema da guerra.</p> <p>No entanto, uma vez que a atmosfera é estabelecida, não temos mais nenhum avanço significativo na história. Entendemos a tensão acumulada em Chris e todos os seus assassinatos, mas não é preciso muito tempo de tela para entendermos isso. Até na primeira cena, que corta para o futuro, onde agora pai treina seu filho que atira em um veado.</p> <p>Sem altos e baixos, mas sem igualmente pontos altos, sniper Americano é um filme OK, que conta uma história OK e que termina abruptamente, cortando sua narrativa em prol da história baseada em fatos reais, nunca uma notícia muito boa.</p> <a href="https://www.imdb.com/title/tt2179136/mediaviewer/" target="ctvimg">Imagens</a> e créditos no <a title="IMDB: Internet Movie DataBase" href="http://www.imdb.com/title/tt2179136">IMDB</a>. </div> <span class="entry-sidebar-stars"> &#x2605;&#x2605;&#x2605;&#x2606;&#x2606; </span> Sniper Americano &#9679; Sniper Americano. American Sniper (USA, 2014). Dirigido por Clint Eastwood. Escrito por Jason Hall, Chris Kyle, Scott McEwen, James Defelice. Com Bradley Cooper, Kyle Gallner, Cole Konis, Ben Reed, Elise Robertson, Luke Sunshine, Troy Vincent, Brandon Salgado Telis, Keir O&#39;Donnell. &#9679; Nota: 3/5. Categoria: movies. Publicado em 2015-04-30. Texto escrito por Wanderley Caloni. <p><br>Quer <a href="https://twitter.com/search?q=@cinetenisverde Sniper%20Americano">comentar</a>?<br></p> </div> </section> <section class="section"> <br> <div class="container"> <div class="is-flex"> <span> <a class="button">Share</a> </span> &nbsp; <span> <a class="button" href="https://www.facebook.com/sharer/sharer.php?u=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f"> <span class="icon"><i class="fa fa-facebook"></i></span> </a> <a class="button" href="https://twitter.com/intent/tweet?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f&text=Sniper%20Americano"> <span class="icon"><i class="fa fa-twitter"></i></span> </a> <a class="button" href="https://news.ycombinator.com/submitlink?u=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f"> <span class="icon"><i class="fa fa-hacker-news"></i></span> </a> <a class="button" href="https://reddit.com/submit?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f&title=Sniper%20Americano"> <span class="icon"><i class="fa fa-reddit"></i></span> </a> <a class="button" href="https://plus.google.com/share?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f"> <span class="icon"><i class="fa fa-google-plus"></i></span> </a> <a class="button" href="https://www.linkedin.com/shareArticle?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f&title=Sniper%20Americano"> <span class="icon"><i class="fa fa-linkedin"></i></span> </a> <a class="button" href="https://www.tumblr.com/widgets/share/tool?canonicalUrl=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f&title=Sniper%20Americano&caption="> <span class="icon"><i class="fa fa-tumblr"></i></span> </a> <a class="button" href="https://pinterest.com/pin/create/bookmarklet/?media=%2fimg%2flogo.svg&url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f&description=Sniper%20Americano"> <span class="icon"><i class="fa fa-pinterest"></i></span> </a> <a class="button" href="whatsapp://send?text=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f"> <span class="icon"><i class="fa fa-whatsapp"></i></span> </a> <a class="button" href="https://web.skype.com/share?url=http%3a%2f%2fwww.cinetenisverde.com.br%2fsniper-americano%2f"> <span class="icon"><i class="fa fa-skype"></i></span> </a> </span> </div> </div> <br> </section> <footer class="footer"> <div class="container"> <nav class="level"> <div class="level-right has-text-centered"> <div class="level-item"> <a class="button" href="http://www.cinetenisverde.com.br/"> <span class="icon"><i class="fa fa-home"></i></span> </a> &nbsp; <a class="button" href="/post"> <span class="icon"><i class="fa fa-search"></i></span> </a> &nbsp; <a class="button" href="https://twitter.com/cinetenisverde"> <span class="icon"><i class="fa fa-twitter"></i></span> </a> &nbsp; <a class="button" href="/index.xml"> <span class="icon"><i class="fa fa-rss"></i></span> </a> &nbsp; </div> </div> </nav> </div> </footer> </body> </html>
cinetenisverde/cinetenisverde.github.io
sniper-americano/index.html
HTML
mit
10,940
<!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_131) on Fri Jul 28 10:43:11 CEST 2017 --> <title>RapidCallback.TimeOffset (Rapid.io Android API Reference)</title> <meta name="date" content="2017-07-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="RapidCallback.TimeOffset (Rapid.io Android API Reference)"; } } catch(err) { } //--> var methods = {"i0":6}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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="../../io/rapid/RapidCallback.Message.html" title="interface in io.rapid"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../io/rapid/RapidChannelPrefixReference.html" title="class in io.rapid"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../index.html?io/rapid/RapidCallback.TimeOffset.html" target="_top">Frames</a></li> <li><a href="RapidCallback.TimeOffset.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>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">io.rapid</div> <h2 title="Interface RapidCallback.TimeOffset" class="title">Interface RapidCallback.TimeOffset</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>Enclosing class:</dt> <dd><a href="../../io/rapid/RapidCallback.html" title="class in io.rapid">RapidCallback</a></dd> </dl> <hr> <br> <pre>public static interface <span class="typeNameLabel">RapidCallback.TimeOffset</span></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&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="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../io/rapid/RapidCallback.TimeOffset.html#onTimeOffsetReceived-long-">onTimeOffsetReceived</a></span>(long&nbsp;timeOffsetMs)</code>&nbsp;</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="onTimeOffsetReceived-long-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>onTimeOffsetReceived</h4> <pre>void&nbsp;onTimeOffsetReceived(long&nbsp;timeOffsetMs)</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> <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="../../io/rapid/RapidCallback.Message.html" title="interface in io.rapid"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../io/rapid/RapidChannelPrefixReference.html" title="class in io.rapid"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../index.html?io/rapid/RapidCallback.TimeOffset.html" target="_top">Frames</a></li> <li><a href="RapidCallback.TimeOffset.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>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>
rapid-io/rapid-io-android
docs/io/rapid/RapidCallback.TimeOffset.html
HTML
mit
7,521
<div id="menu" class="nav navbar-nav navbar-collapse collapse menu menu_top" aria-expanded="false"> <!-- COMMENT: removed navbar-collapse from class --> <!-- TODO: upper/floating menu in here --> <ul class="nav navbar-nav {{ page.layout }}"> {% for i in site.data.urls %} {% assign current = nil %} {% assign pageurl = page.url | split:'/' | last %} {% assign menuurl = i.url | split:'/' | last %} {% assign linkurl = nil %} {% if i.url contains '://' %} {% assign linkurl = i.url %} {% else %} {% assign linkurl = i.url | prepend: site.baseurl %} {% endif %} {% assign target = i.target %} {% unless target %} {% assign target = '_self' %} {% endunless %} {% if pageurl == menuurl or page.layout == i.layout %} {% assign current = 'current-menu-item' %} {% endif %} <li class="{{ current }} {{ pageurl }}"><a href="{{ linkurl }}" target="{{ target }}"> <i class="fa {{ i.icon }}"></i> <span class="text">{{ i.text }}</span> </a></li> {% endfor %} </ul> </div>
bhi-kimlab/bhi-kimlab.github.io
_includes/menu.html
HTML
mit
1,000
<form #editform="ngForm" id="editform" flex (ngSubmit)="editform.submitted && submitForm(editform)"> <input type="submit" #btnSubmit hidden id="btnSubmit" name="btnSubmit" value="" /> <section layout="column" flex="100" layout-margin> <div layout-gt-sm="row" layout-lt-md="column" flex> <mat-form-field tdFileDrop required (fileDrop)="files = $event" (click)="fileInput.inputElement.click()" (keyup.enter)="fileInput.inputElement.click()" (keyup.delete)="fileInput.clear()" (keyup.backspace)="fileInput.clear()" flex> <input matInput required placeholder="select or drop file" [value]="files?.length ? (files?.length + ' file') : files?.name" readonly /> </mat-form-field> <button mat-icon-button *ngIf="files" (click)="fileInput.clear()" (keyup.enter)="fileInput.clear()"> <mat-icon>cancel</mat-icon> </button> <td-file-input required class="push-left-sm push-right-sm" #fileInput name="fileInput" [(ngModel)]="files"> <mat-icon>folder</mat-icon> <span class="text-upper">Browse...</span> </td-file-input> </div> <div layout-gt-sm="row" layout-lt-md="column" flex> <mat-form-field flex class=""> <textarea matInput flex #comment name="comment" maxlength="1500" placeholder="Comments" [(ngModel)]="itemEdit.comment"></textarea> <mat-hint align="end">{{comment.value.length}} / 1500</mat-hint> </mat-form-field> </div> </section> </form>
legarza/CRMSalzgitterV2
src/app/crmapp/components/document/document.component.html
HTML
mit
1,493
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `AsciiGenerator` struct in crate `rand`."> <meta name="keywords" content="rust, rustlang, rust-lang, AsciiGenerator"> <title>rand::AsciiGenerator - Rust</title> <link rel="stylesheet" type="text/css" href="../main.css"> <link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <a href='../rand/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk.png' alt='' width='100'></a> <p class='location'><a href='index.html'>rand</a></p><script>window.sidebarCurrent = {name: 'AsciiGenerator', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press 'S' to search, '?' for more options..." type="search"> </div> </form> </nav> <section id='main' class="content struct"> <h1 class='fqn'><span class='in-band'>Struct <a href='index.html'>rand</a>::<wbr><a class='struct' href=''>AsciiGenerator</a><wbr><a class='stability Deprecated' title='use the crates.io `rand` library instead'>Deprecated</a></span><span class='out-of-band'><span id='render-detail'> <a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a> </span><a id='src-12122' href='../src/rand/lib.rs.html#339-341'>[src]</a></span></h1> <pre class='rust struct'>pub struct AsciiGenerator&lt;'a, R: 'a&gt; { // some fields omitted }</pre><div class='docblock'><p>Iterator which will continuously generate random ascii characters.</p> <p>This iterator is created via the <code>gen_ascii_chars</code> method on <code>Rng</code>.</p> </div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><a class='stability Stable' title='Stable'></a><code>impl&lt;'a, R: <a class='trait' href='../rand/trait.Rng.html' title='rand::Rng'>Rng</a>&gt; <a class='trait' href='../core/iter/trait.Iterator.html' title='core::iter::Iterator'>Iterator</a> for <a class='struct' href='../rand/struct.AsciiGenerator.html' title='rand::AsciiGenerator'>AsciiGenerator</a>&lt;'a, R&gt;</code></h3><div class='impl-items'><h4 id='assoc_type.Item' class='type'><a class='stability Unmarked' title='No stability level'></a><code>type Item = <a href='../core/primitive.char.html'>char</a></code></h4> <h4 id='method.next' class='method'><a class='stability Stable' title='Stable'></a><code>fn <a href='#method.next' class='fnname'>next</a>(&amp;mut self) -&gt; <a class='enum' href='../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a href='../core/primitive.char.html'>char</a>&gt;</code></h4> <h4 id='method.size_hint' class='tymethod'><a class='stability Stable' title='Stable'></a><code>fn <a href='#tymethod.size_hint' class='fnname'>size_hint</a>(&amp;self) -&gt; <a href='../core/primitive.tuple.html'>(<a href='../core/primitive.usize.html'>usize</a>, <a class='enum' href='../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a href='../core/primitive.usize.html'>usize</a>&gt;)</a></code></h4> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div class="shortcuts"> <h1>Keyboard shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>typedef</code> (or <code>tdef</code>). </p> </div> </div> <script> window.rootPath = "../"; window.currentCrate = "rand"; window.playgroundUrl = "http://play.rust-lang.org/"; </script> <script src="../jquery.js"></script> <script src="../main.js"></script> <script src="../playpen.js"></script> <script async src="../search-index.js"></script> </body> </html>
ArcherSys/ArcherSys
Rust/share/doc/rust/html/rand/struct.AsciiGenerator.html
HTML
mit
5,317
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="zqqf16"> <meta name="description" content="一个简单的脚本,从静态库中删除有冲突的 .o 文件"> <title>从静态库中删除一个 .o 文件</title> <link rel="stylesheet" type="text/css" href="/assets/css/normalize.css" /> <link rel="stylesheet" type="text/css" href="/assets/css/icons.css" /> <link rel="stylesheet" type="text/css" href="/assets/css/screen.css" /> <link href="https://fonts.googleapis.com/css?family=Bree+Serif|Lato:100,100i,300,300i,400,400i,700,700i|Source+Code+Pro:300,400,500,700" rel="stylesheet"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" src="/assets/bigfoot/bigfoot.min.js"></script> <link rel="stylesheet" type="text/css" href="/assets/bigfoot/bigfoot-number.css" /> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <script type="text/javascript"> $.bigfoot(); </script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-41282906-2"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-41282906-2'); </script> <link rel="stylesheet" type="text/css" href="/assets/css/pygments.css" /> </head> <body class=""> <header class="main-header"> <div class="main-header-content"> <h1 class="blog-title"><a href="https://blog.zorro.im">一个木匠</a></h1> <h2 class="blog-description">zqqf16 的个人博客</h2> </div> <div class="nav"> <a class="nav-link" role="presentation" href="/">Home</a> <a class="nav-link" role="presentation" href="/archive.html">Archive</a> <a class="nav-link" role="presentation" href="/posts/2013-4-25-about.html">About</a> <a class="nav-link" role="presentation" href="/rss.xml">RSS</a> </div> </header> <main class="content" role="main"> <article class="post "> <header class="post-header"> <h2 class="post-title">从静态库中删除一个 .o 文件</h2> <section class="post-meta"> <time class="post-date" datetime="2017-04-11">2017-04-11</time> </section> </header> <section class="post-content"> <p><a href="https://blog.zorro.im/how_to_create_a_static_library/">开发一个合格的 iOS SDK</a>里写过,有些 SDK 开发得不够规范,把一些第三方的库打包到自己的库里。比如见过很多把 OpenSSL 包进去的,SDK A 包一个 OpenSSL,SDK B 也包一个 OpenSSL,链接的时候就发现符号冲突了。</p> <p>这时不得不对这些库“动手术”,把冲突的内容删掉。于是也就有了这个脚本,还加了对 Fat file 的判断。</p> <div class="codehilite"><pre><span></span><code><span class="ch">#!/bin/sh</span> <span class="c1"># Remove an object from a static library.</span> <span class="nv">LIB_SRC</span><span class="o">=</span><span class="si">${</span><span class="nv">1</span><span class="si">}</span> <span class="nv">OBJ</span><span class="o">=</span><span class="si">${</span><span class="nv">2</span><span class="si">}</span> <span class="k">if</span> <span class="o">[</span> -z <span class="si">${</span><span class="nv">OBJ</span><span class="si">}</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span> <span class="nb">echo</span> <span class="s2">&quot;Usage: </span><span class="nv">$0</span><span class="s2"> source.a target.o&quot;</span> <span class="nb">exit</span> <span class="m">0</span> <span class="k">fi</span> <span class="k">if</span> <span class="o">[</span> ! -f <span class="si">${</span><span class="nv">LIB_SRC</span><span class="si">}</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span> <span class="nb">echo</span> <span class="s2">&quot;File </span><span class="si">${</span><span class="nv">LIB_SRC</span><span class="si">}</span><span class="s2"> not found&quot;</span> <span class="nb">exit</span> <span class="m">1</span> <span class="k">fi</span> EXTRACT_FAT<span class="o">(){</span> <span class="nv">SUBS</span><span class="o">=</span><span class="s2">&quot;&quot;</span> <span class="k">for</span> ARCH <span class="k">in</span> <span class="sb">`</span><span class="nb">echo</span> <span class="nv">$LIB_INFO</span> <span class="p">|</span> sed -n -e <span class="s1">&#39;s/Architectures in the fat file:.*are: \(.*\)/\1/p&#39;</span><span class="sb">`</span><span class="p">;</span> <span class="k">do</span> <span class="nv">SUB</span><span class="o">=</span><span class="si">${</span><span class="nv">1</span><span class="si">}</span>_<span class="si">${</span><span class="nv">ARCH</span><span class="si">}</span>.a lipo -thin <span class="si">${</span><span class="nv">ARCH</span><span class="si">}</span> <span class="si">${</span><span class="nv">1</span><span class="si">}</span> -output <span class="si">${</span><span class="nv">SUB</span><span class="si">}</span> EXTRACT <span class="si">${</span><span class="nv">SUB</span><span class="si">}</span> <span class="si">${</span><span class="nv">2</span><span class="si">}</span> <span class="nv">SUBS</span><span class="o">=</span><span class="s2">&quot;</span><span class="si">${</span><span class="nv">SUBS</span><span class="si">}</span><span class="s2"> </span><span class="si">${</span><span class="nv">SUB</span><span class="si">}</span><span class="s2">&quot;</span> <span class="k">done</span> lipo -create <span class="si">${</span><span class="nv">SUBS</span><span class="si">}</span> -output <span class="si">${</span><span class="nv">1</span><span class="si">}</span> rm <span class="si">${</span><span class="nv">SUBS</span><span class="si">}</span> <span class="o">}</span> EXTRACT<span class="o">(){</span> ar -d <span class="si">${</span><span class="nv">1</span><span class="si">}</span> <span class="si">${</span><span class="nv">2</span><span class="si">}</span> <span class="o">}</span> <span class="nv">LIB_INFO</span><span class="o">=</span><span class="sb">`</span>lipo -info <span class="si">${</span><span class="nv">LIB_SRC</span><span class="si">}</span><span class="sb">`</span> <span class="k">if</span> <span class="o">[</span> <span class="sb">`</span><span class="nb">echo</span> <span class="nv">$LIB_INFO</span> <span class="p">|</span> grep -c <span class="s2">&quot;Architectures in the fat file&quot;</span> <span class="sb">`</span> -gt <span class="m">0</span> <span class="o">]</span><span class="p">;</span> <span class="k">then</span> EXTRACT_FAT <span class="si">${</span><span class="nv">LIB_SRC</span><span class="si">}</span> <span class="si">${</span><span class="nv">OBJ</span><span class="si">}</span> <span class="k">else</span> EXTRACT <span class="si">${</span><span class="nv">LIB_SRC</span><span class="si">}</span> <span class="si">${</span><span class="nv">OBJ</span><span class="si">}</span> <span class="k">fi</span> </code></pre></div> <p>或者,移步 Gist:<a href="https://gist.github.com/zqqf16/1eb6649a68aeb1ee27fabd8a05ea8f1d">https://gist.github.com/zqqf16/1eb6649a68aeb1ee27fabd8a05ea8f1d</a></p> </section> <footer class="post-footer"> <section class="tags post-meta"> Tagged <a href="/tags/iOS/"> iOS </a> <a href="/tags/%E5%BC%80%E5%8F%91%E5%B7%A5%E5%85%B7/"> 开发工具 </a> </section> <section class="share" hidden="true"> <h4>Share this post</h4> <a class="icon-twitter" href="https://twitter.com/share?text=从静态库中删除一个 .o 文件&amp;url=https://blog.zorro.im/posts/2017-04-11-cong-jing-tai-ku-zhong-shan-chu-yi-ge-o-wen-jian.html" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;"> <span class="hidden"></span> </a> <a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u=https://blog.zorro.im/posts/2017-04-11-cong-jing-tai-ku-zhong-shan-chu-yi-ge-o-wen-jian.html" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;"> <span class="hidden"></span> </a> <a class="icon-google-plus" href="https://plus.google.com/share?url=https://blog.zorro.im/posts/2017-04-11-cong-jing-tai-ku-zhong-shan-chu-yi-ge-o-wen-jian.html" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;"> <span class="hidden"></span> </a> </section> </footer> <footer class="post comments"> <div id="disqus_thread"></div> <script type="text/javascript"> (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + 'zqqf16' + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </footer> </article> </main> <footer class="site-footer"> <section class="rss"><a class="subscribe-button icon-feed" href="https://blog.zorro.im/rss.xml"></a></section> <section class="Github"><a class="icon-github" href="https://github.com/zqqf16"> Github</a> </section> <section class="Weibo"><a class="icon-weibo" href="http://weibo.com/zqqf16"> Weibo</a> </section> <section class="Twitter"><a class="icon-twitter" href="http://twitter.com/zqqf16"> Twitter</a> </section> <section class="copyright">&copy; 2018 一个木匠</section> <section class="poweredby"><a href="http://thedarkroast.com/arabica">Arabica</a> theme by Sean Lunsford. Published with <a href="https://github.com/zqqf16/peanut">Peanut</a>.</section> </footer> </body> </html>
zqqf16/zqqf16.github.com
posts/2017-04-11-cong-jing-tai-ku-zhong-shan-chu-yi-ge-o-wen-jian.html
HTML
mit
10,705
<div flex layout="row" layout-align="start center"> <label for="ms-search-bar-input"> <md-icon id="ms-search-bar-expander" md-font-icon="icon-magnify" class="icon s24"></md-icon> <md-icon id="ms-search-bar-collapser" md-font-icon="icon-close" class="icon s24"></md-icon> </label> <input id="ms-search-bar-input" type="text" ng-model="$root.global.search" ng-model-options="{'debounce': debounce}" placeholder="Search" translate translate-attr-placeholder="TOOLBAR.SEARCH" flex> </div>
luchotes/angularjs-1.5-skeleton
src/app/core/directives/ms-search-bar/ms-search-bar.html
HTML
mit
523
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Rss20Writer.js </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> </HEAD> <SCRIPT> function asd() { parent.document.title=" Rss20Writer.js"; } </SCRIPT> <BODY BGCOLOR="white" onload="asd();"> <H3 class="FrameHeadingFont"><B></B></H3> <FONT size="+1" CLASS="FrameHeadingFont"> <B><a href="overview-summary-Rss20Writer.js.html" target="classFrame">Rss20Writer.js</a></B></FONT> <BR> <TABLE BORDER="0" WIDTH="100%"> <TR> <TD NOWRAP><FONT CLASS="FrameItemFont"><A HREF="jala.Rss20Writer.html" TARGET="classFrame">jala.Rss20Writer</A> <BR> </FONT></TD> </TR> </TABLE> </BODY> </HTML>
hankly/frizione
Frizione/modules/jala/docs/overview-Rss20Writer.js.html
HTML
mit
806
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jordan-curve-theorem: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.7.2 / jordan-curve-theorem - 8.6.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> jordan-curve-theorem <small> 8.6.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-22 06:02:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 06:02:19 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-ocamlbuild base OCamlbuild binary and libraries distributed with the OCaml compiler base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 1 Virtual package relying on perl coq 8.7.2 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.02.3 The OCaml compiler (virtual package) ocaml-base-compiler 4.02.3 Official 4.02.3 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/jordan-curve-theorem&quot; license: &quot;Unknown&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/JordanCurveTheorem&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.7~&quot;} ] tags: [ &quot;keyword: combinatorial hypermaps&quot; &quot;keyword: genus&quot; &quot;keyword: planarity&quot; &quot;keyword: Euler formula&quot; &quot;keyword: Discrete Jordan Curve Theorem&quot; &quot;category: Mathematics/Geometry/General&quot; &quot;date: 2008&quot; ] authors: [ &quot;Jean-François Dufourd &lt;dufourd@lsiit.u-strasbg.fr&gt; [http://dpt-info.u-strasbg.fr/~jfd/]&quot; ] bug-reports: &quot;https://github.com/coq-contribs/jordan-curve-theorem/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/jordan-curve-theorem.git&quot; synopsis: &quot;Hypermaps, planarity and discrete Jordan curve theorem&quot; description: &quot;&quot;&quot; http://dpt-info.u-strasbg.fr/~jfd/Downloads/JORDAN_Contrib_Coq.tar.gz Constructive formalization of the combinatorial hypermaps, characterization of the planarity, genus theorem, Euler formula, ring of faces, discrete Jordan curve theorem&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/jordan-curve-theorem/archive/v8.6.0.tar.gz&quot; checksum: &quot;md5=42157391127fc6af77f7d0dfa29f7e76&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-jordan-curve-theorem.8.6.0 coq.8.7.2</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.7.2). The following dependencies couldn&#39;t be met: - coq-jordan-curve-theorem -&gt; coq &lt; 8.7~ -&gt; ocaml &lt; 4.02.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-jordan-curve-theorem.8.6.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.02.3-2.0.6/released/8.7.2/jordan-curve-theorem/8.6.0.html
HTML
mit
7,595
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>subst: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">dev / subst - 8.7.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> subst <small> 8.7.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-16 03:29:46 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-16 03:29:46 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler ocamlfind 1.9.1 A library manager for OCaml ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/subst&quot; license: &quot;Unknown&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Subst&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.8~&quot;} ] tags: [ &quot;keyword: lambda-sigma-lift-calculus&quot; &quot;keyword: explicit substitution&quot; &quot;keyword: Newman&#39;s lemma&quot; &quot;keyword: Yokouchi&#39;s lemma&quot; &quot;keyword: confluence&quot; &quot;keyword: rewriting&quot; &quot;category: Computer Science/Lambda Calculi&quot; ] authors: [ &quot;Amokrane Saïbi&quot; ] bug-reports: &quot;https://github.com/coq-contribs/subst/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/subst.git&quot; synopsis: &quot;The confluence of Hardin-Lévy lambda-sigma-lift-calcul&quot; description: &quot;&quot;&quot; The confluence of Hardin-Lévy lambda-sigma-lift-calcul is proven. By the way, several standard definition and results about rewriting systems are proven (Newman&#39;s lemma, Yokouchi&#39;s lemma, ...).&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/subst/archive/v8.7.0.tar.gz&quot; checksum: &quot;md5=55a737d8d86b32bbcd34ea1e7994e224&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-subst.8.7.0 coq.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq-subst -&gt; coq &lt; 8.8~ -&gt; ocaml &lt; 4.05.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-subst.8.7.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.1/extra-dev/dev/subst/8.7.0.html
HTML
mit
7,429
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>iris: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.8.1 / iris - 3.0.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> iris <small> 3.0.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-09-01 14:15:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-01 14:15:30 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.12 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.8.1 Formal proof management system. num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; name: &quot;coq-iris&quot; version: &quot;3.0.0&quot; maintainer: &quot;Ralf Jung &lt;jung@mpi-sws.org&gt;&quot; authors: &quot;The Iris Team&quot; homepage: &quot;http://iris-project.org/&quot; bug-reports: &quot;https://gitlab.mpi-sws.org/FP/iris-coq/issues&quot; license: &quot;BSD&quot; dev-repo: &quot;git+https://gitlab.mpi-sws.org/FP/iris-coq.git&quot; build: [ [make &quot;-j%{jobs}%&quot;] ] install: [make &quot;install&quot;] remove: [ &quot;sh&quot; &quot;-c&quot; &quot;rm -rf &#39;%{lib}%/coq/user-contrib/iris&#39;&quot; ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {((&gt;= &quot;8.5.1&quot; &amp; &lt; &quot;8.7~&quot;) | (= &quot;dev&quot;))} &quot;coq-mathcomp-ssreflect&quot; {((&gt;= &quot;1.6.1&quot; &amp; &lt; &quot;1.7~&quot;) | (= &quot;dev&quot;))} ] synopsis: &quot;Iris is a Higher-Order Concurrent Separation Logic for reasoning about fine-grained concurrent programs, building logical relations, and more. It features an interactive proof mode for carrying out separation logic proofs in Coq&quot; url { src: &quot;https://gitlab.mpi-sws.org/iris/iris/repository/iris-3.0.0/archive.tar.gz&quot; checksum: &quot;md5=57b3384834a5347db223220cdcd9eb9e&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-iris.3.0.0 coq.8.8.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.8.1). The following dependencies couldn&#39;t be met: - coq-iris -&gt; coq (&lt; 8.7~ &amp; = dev) -&gt; ocaml &lt; 4.03.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-iris.3.0.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.1/iris/3.0.0.html
HTML
mit
7,057
<div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> <!-- Indicators --> <ol class="carousel-indicators"> <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li> <li data-target="#carousel-example-generic" data-slide-to="1"></li> <li data-target="#carousel-example-generic" data-slide-to="2"></li> </ol> <!-- Wrapper for slides --> <div class="carousel-inner"> {% for id in "123" %} <div class="item{% ifequal id '1'%} active{% endifequal %}"> <img src="{{MEDIA_URL}}carousel/{{id}}.jpg" alt="..."> <div class="carousel-caption" style="color: yellow"> <h3> Our participants are always suprised </h3> <p> Start to solve ROOTS today </p> </div> </div> {% endfor %} </div> <!-- Controls --> <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev"> <span class="glyphicon glyphicon-chevron-left"></span> </a> <a class="right carousel-control" href="#carousel-example-generic" data-slide="next"> <span class="glyphicon glyphicon-chevron-right"></span> </a> </div> </div> </div>
matus-stehlik/glowing-batman
base/templates/base/carousel.html
HTML
mit
1,207
<!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, shrink-to-fit=no"> <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico"> <title>Shmitter</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.5.1/css/bulma.min.css"> </head> <body> <noscript> You need to enable JavaScript to run this app. </noscript> <div id="root"></div> </body> </html>
apirobot/shmitter
frontend/public/index.html
HTML
mit
641
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.8.0" /> <title>Class Nth\Permit\Constants\RoleConstants</title> <script type="text/javascript" src="resources/combined.js?2867089679"></script> <script type="text/javascript" src="elementlist.js?3137373877"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" /> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li><a href="namespace-None.html">None</a> </li> <li class="active"><a href="namespace-Nth.html">Nth<span></span></a> <ul> <li class="active"><a href="namespace-Nth.Permit.html">Permit<span></span></a> <ul> <li class="active"><a href="namespace-Nth.Permit.Constants.html">Constants</a> </li> <li><a href="namespace-Nth.Permit.Exceptions.html">Exceptions</a> </li> <li><a href="namespace-Nth.Permit.Facades.html">Facades</a> </li> <li><a href="namespace-Nth.Permit.Helper.html">Helper</a> </li> <li><a href="namespace-Nth.Permit.Interfaces.html">Interfaces</a> </li> <li><a href="namespace-Nth.Permit.Models.html">Models</a> </li> <li><a href="namespace-Nth.Permit.Seeds.html">Seeds</a> </li> <li><a href="namespace-Nth.Permit.Services.html">Services</a> </li> </ul></li></ul></li> <li><a href="namespace-PHP.html">PHP</a> </li> </ul> </div> <hr /> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-Nth.Permit.Constants.ResourceConstants.html">ResourceConstants</a></li> <li class="active"><a href="class-Nth.Permit.Constants.RoleConstants.html">RoleConstants</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="text" /> <input type="submit" value="Search" /> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="namespace-Nth.Permit.Constants.html" title="Summary of Nth\Permit\Constants"><span>Namespace</span></a> </li> <li class="active"> <span>Class</span> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> </ul> <ul> </ul> </div> <div id="content" class="class"> <h1>Class RoleConstants</h1> <div class="description"> <p>Role Constants for built in roles</p> </div> <div class="info"> <b>Namespace:</b> <a href="namespace-Nth.html">Nth</a>\<a href="namespace-Nth.Permit.html">Permit</a>\<a href="namespace-Nth.Permit.Constants.html">Constants</a><br /> <b>Located at</b> <a href="source-class-Nth.Permit.Constants.RoleConstants.html#5-30" title="Go to source code">Nth/Permit/Constants/RoleConstants.php</a><br /> </div> <table class="summary" id="constants"> <caption>Constants summary</caption> <tr data-order="SUPER_ADMIN" id="SUPER_ADMIN"> <td class="attributes"><code>string</code></td> <td class="name"><code> <a href="source-class-Nth.Permit.Constants.RoleConstants.html#10-13" title="Go to source code"><b>SUPER_ADMIN</b></a> </code></td> <td class="value"><code><span class="php-quote">&quot;Super Admin&quot;</span></code></td> <td class="description"><div> <a href="#SUPER_ADMIN" class="anchor">#</a> <div class="description short"> <p>Role given for a super user who can manage all aspects of the website</p> </div> <div class="description detailed hidden"> <p>Role given for a super user who can manage all aspects of the website</p> </div> </div></td> </tr> <tr data-order="GUEST" id="GUEST"> <td class="attributes"><code>string</code></td> <td class="name"><code> <a href="source-class-Nth.Permit.Constants.RoleConstants.html#15-18" title="Go to source code"><b>GUEST</b></a> </code></td> <td class="value"><code><span class="php-quote">&quot;Guest&quot;</span></code></td> <td class="description"><div> <a href="#GUEST" class="anchor">#</a> <div class="description short"> <p>Role should be given for a public user who is not logged in</p> </div> <div class="description detailed hidden"> <p>Role should be given for a public user who is not logged in</p> </div> </div></td> </tr> <tr data-order="USER" id="USER"> <td class="attributes"><code>string</code></td> <td class="name"><code> <a href="source-class-Nth.Permit.Constants.RoleConstants.html#20-23" title="Go to source code"><b>USER</b></a> </code></td> <td class="value"><code><span class="php-quote">&quot;User&quot;</span></code></td> <td class="description"><div> <a href="#USER" class="anchor">#</a> <div class="description short"> <p>Role should be given for a logged in user</p> </div> <div class="description detailed hidden"> <p>Role should be given for a logged in user</p> </div> </div></td> </tr> <tr data-order="OWNER" id="OWNER"> <td class="attributes"><code>string</code></td> <td class="name"><code> <a href="source-class-Nth.Permit.Constants.RoleConstants.html#25-28" title="Go to source code"><b>OWNER</b></a> </code></td> <td class="value"><code><span class="php-quote">&quot;Owner&quot;</span></code></td> <td class="description"><div> <a href="#OWNER" class="anchor">#</a> <div class="description short"> <p>Role given for the owner of a permission resource such as blog post, medical record ,etc</p> </div> <div class="description detailed hidden"> <p>Role given for the owner of a permission resource such as blog post, medical record ,etc</p> </div> </div></td> </tr> </table> </div> <div id="footer"> API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </div> </div> </div> </body> </html>
thehung111/Permit
docs/api/class-Nth.Permit.Constants.RoleConstants.html
HTML
mit
6,189
<HTML><HEAD> <TITLE>Review for My Best Friend's Wedding (1997)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0119738">My Best Friend's Wedding (1997)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Cat+Stanton">Cat Stanton</A></H3><HR WIDTH="40%" SIZE="4"> <PRE> MY BEST FRIEND'S WEDDING A film review by Cat Stanton Copyright 1997 Cat Stanton</PRE> <P>P.J. Hogan, the director of MURIEL'S WEDDING, gives us yet another forced and somewhat embarrassing flick, but this time it has some big names behind it. MY BEST FRIEND'S WEDDING is definitely a top contender for the Puff Pastry award of summer movies.</P> <P>This movie would have been much more enjoyable without all of the bad, painfully staged singing numbers the audience is forced to endure from the opening credits to the ending scene. I've never almost walked out on a movie before the opening credits stopped rolling, but because of a strong aversion to Pepto Bismol pink sets and bad lip-synching, I nearly did in this movie. I'm glad I stayed. Well, sort of.</P> <P>>From the nonsensical opening number, the movie jarringly cuts to the chase, setting up the premise for the entire story with only a dozen sentences. Don't get in line for popcorn early, lest you miss the whole background story. But don't be fooled by the quick setup, the movie comes to a standstill... right about the time you get to the karaoke bar scene.</P> <P>The premise is simple. Julianne (Julia Roberts) is the slim size 6 food critic. How does she stay size six? Well apparently she does so by taking a single bite of her meal, reciting two words to the server about what she's going to say about it in her write up, and then recounting her neuroses to her editor instead of eating the rest of her dinner. Her career is merely a convenient set up and isn't very believable. Switch her creme brulee/jell-o metaphor towards the end of the movie for Fifi the pedigreed poodle and Benji the lovable mutt, and she could have been a dog trainer.</P> <P>But I digress. Julianne the food critic has spent the last nine years in troublesome relationships after breaking up with Michael (Dermot Mulroney), who has become her best friend since their romance. Long ago in Arizona they made a pact that they would marry each other if they were still alone at 28. When Michael calls her, she's certain he wants to marry her finally, right up until she finds out he's going to marry another woman in four days.</P> <P>Julianne drops everything, flies to Chicago, and hilarity ensues. Well, that's what we'd hoped for. More accurately, a mild undercurrent of amusement peppered with some painfully embarrassing scenes ensues.</P> <P>In Chicago, we meet Michael's fiancee Kimmy (Cameron Diaz). Kimmy is "annoyingly perfect" (as Julianne often says in the film). In short, Kimmy is an astonishingly beautiful, although sometimes slightly psychotic looking, rich doormat with bad driving habits.</P> <P>>From the start, Julianne sets out to destroy the relationship. In doing so, however, I found her character became confused and muddled. She wasn't exactly likeable, yet she wasn't the woman you'd love to hate either. She was the most ineffectual protagonist I've seen in a long time. She didn't seem to have any chemistry with Michael either, so I wasn't really rooting for her cause.</P> <P>In one telltale scene, she tries to convince Kimmy that Michael's job isn't what's best for the marriage, since it requires he move around constantly and Kimmy will have to give up a college degree and a stable career to follow him. She was all but telling Kimmy flat out, "Hey you shouldn't cater to his every whim, have him think of your life once in awhile" but when Kimmy politely brought up having him work for her father, his outburst was immediate and hurtful.</P> <P>Michael's character was lukewarm and Mulroney's scenes consisted mostly of dumb stares with his mouth half open. Admittedly, these were usually during the singing portions of the movie, where most of us were staring dumbfounded at the screen waiting for the plot to start back up. But how can you care who gets the guy when in fact, you're hoping neither of them ends up with a loser like him? A love triangle does not work when the crux of the triangle is dull and unlikeable.</P> <P>There were some bright spots in this film, believe it or not. First and foremost, we got to see another side to Julia Roberts. She does an excellent job inserting physical humor into the story as the slightly klutzy Julianne. Her timing really hit the mark and her best chemistry was with the gay character in the film, her "local" best friend and editor, George (Rupert Everett).</P> <P>George was my favorite character, by far. It's a shame he shows up all too rarely in the film. Sympathetic, classy and honest, he actually upstaged most of the top-billed actors. His friendship with Julianne is evident and the only believable relationship in the movie. Everett did an excellent job with his script and mannerisms.</P> <P>MY BEST FRIEND'S WEDDING has a lot more misses than hits, and while it was labelled a "chick flick" by my boyfriend, I found it quite painful and dull to watch myself.</P> <P>** - Rent just in case you get bored doing housework.</P> <PRE><HR></PRE> <PRE>Scores: **** = Go! See it early. See it often. Set a record. *** = Rent for a cozy little evening at home. ** = Rent just in case you get bored doing housework. * = View at your own risk.</PRE> <HR><P CLASS=flush><SMALL>The review above was posted to the <A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR> The Internet Movie Database accepts no responsibility for the contents of the review and has no editorial control. Unless stated otherwise, the copyright belongs to the author.<BR> Please direct comments/criticisms of the review to relevant newsgroups.<BR> Broken URLs inthe reviews are the responsibility of the author.<BR> The formatting of the review is likely to differ from the original due to ASCII to HTML conversion. </SMALL></P> <P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P> </P></BODY></HTML>
xianjunzhengbackup/code
data science/machine_learning_for_the_web/chapter_4/movie/7975.html
HTML
mit
6,587
<div class="panel panel-default"> <div class="panel-body"> Have feedback on this post? Let <a href="https://twitter.com/intent/tweet?text=@earlylightbalt%20&related=earlylightbalt&url={{site.url}}/{{page.url}}" target="_blank">@earlylightbalt</a> know on Twitter. </div> </div>
tkraak/elm
_includes/twitter-post-feedback.html
HTML
mit
286
@(sellOffers: List[SellOffer]) @Main("Sell Offers") { <div class="container"> <a class="btn btn-primary btn-lg pull-right" href="@routes.Application.newSellOffer(0)">Add Offer</a> <h2>Sell Offers <span class="badge">@sellOffers.size()</span></h2> <table class="table table-bordered table-stripped"> <tr> <th>Seller</th> <th>Textbook</th> <th>Price</th> <th>Expiration Date</th> </tr> @for(sellOffer <- sellOffers) { <tr> <td>@if(!sellOffer.isNotExpired()) {<label class="label label-danger"><i>Expired</i></label>} @sellOffer.getStudent()</td> <td>@sellOffer.getTextbook()</td> <td>@sellOffer.getPrice()</td> <td>@sellOffer.getExpirationDate()</td> <td><a href="@routes.Application.manageSellOffer(sellOffer.getId())"><button class="btn">Edit</button></a></td> <td><a href="@routes.Application.deleteSellOffer(sellOffer.getId())"><button class="btn">Delete</button></a></td> </tr> } </table> </div> }
eduardgamiao/textbookmania
app/views/SellOffers.scala.html
HTML
mit
1,060
<channel> <title><![CDATA[{{ _site_name }} | {{ folder|title }}]]></title> <link>{{ _site_url }}/{{ folder }}</link> <description>{{ _site_name }} {{ folder }}</description> <dc:language>{{ site_language }}</dc:language> <dc:creator>{{ contact_email }}</dc:creator> <dc:rights>Copyright {{ current_date format='Y' }}</dc:rights> <dc:date>{{ current_date format="c" }}</dc:date> <admin:generatorAgent rdf:resource="http://example.com/" /> {{ entries:listing folder="blog" limit="20" }} <item> <title><![CDATA[{{ title }}]]></title> <link>{{ permalink }}</link> <guid>{{ permalink }}</guid> <description>{{ content|full_urls|cdata }}</description> <dc:subject>{{ categories_list|cdata }}</dc:subject> <dc:date>{{ datestamp format="c" }}</dc:date> </item> {{ /entries:listing }} </channel>
putitinred/otomatic
_themes/otomatic/templates/feed.html
HTML
mit
822
<!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-google-v7) on Fri Jul 15 11:56:53 PDT 2016 --> <title>RemoteApiOptions</title> <meta name="date" content="2016-07-15"> <link rel="stylesheet" type="text/css" href="../../../../../dev_javadoc.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="RemoteApiOptions"; } } catch(err) { } //--> var methods = {"i0":10,"i1":42,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":42,"i19":10,"i20":10,"i21":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated 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="../../../../../com/google/appengine/tools/remoteapi/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiInstaller.html" title="class in com.google.appengine.tools.remoteapi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li>Next&nbsp;Class</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/google/appengine/tools/remoteapi/RemoteApiOptions.html" target="_top">Frames</a></li> <li><a href="RemoteApiOptions.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">com.google.appengine.tools.remoteapi</div> <h2 title="Class RemoteApiOptions" class="title">Class RemoteApiOptions</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.google.appengine.tools.remoteapi.RemoteApiOptions</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="typeNameLabel">RemoteApiOptions</span> extends java.lang.Object</pre> <div class="block">A mutable object containing settings for installing the remote API. <p>Example for connecting to a development app server:</p> <pre> RemoteApiOptions options = new RemoteApiOptions() .server("localhost", 8888), .useDevelopmentServerCredential(); </pre> <p>Example for connecting to a deployed app:</p> <pre> RemoteApiOptions options = new RemoteApiOptions() .server("myappid.appspot.com", 443), .useApplicationDefaultCredential(); </pre> <p> The options should be passed to <a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiInstaller.html#install-com.google.appengine.tools.remoteapi.RemoteApiOptions-"><code>RemoteApiInstaller.install(com.google.appengine.tools.remoteapi.RemoteApiOptions)</code></a>. </p></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&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="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#RemoteApiOptions--">RemoteApiOptions</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><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated 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="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#copy--">copy</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#credentials-java.lang.String-java.lang.String-">credentials</a></span>(java.lang.String&nbsp;newUserEMail, java.lang.String&nbsp;newPassword)</code> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp; <div class="block"><span class="deprecationComment">Use <a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useApplicationDefaultCredential--"><code>useApplicationDefaultCredential()</code></a> or <code>useServiceAccountCredential</code> instead.</span></div> </div> </td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#datastoreQueryFetchSize-int-">datastoreQueryFetchSize</a></span>(int&nbsp;newValue)</code> <div class="block">When executing a datastore query, this is the number of results to fetch per HTTP request.</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getCredentialsToReuse--">getCredentialsToReuse</a></span>()</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getDatastoreQueryFetchSize--">getDatastoreQueryFetchSize</a></span>()</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getHostname--">getHostname</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getMaxConcurrentRequests--">getMaxConcurrentRequests</a></span>()</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getMaxHttpResponseSize--">getMaxHttpResponseSize</a></span>()</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getPassword--">getPassword</a></span>()</code>&nbsp;</td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getPort--">getPort</a></span>()</code>&nbsp;</td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getRemoteApiPath--">getRemoteApiPath</a></span>()</code>&nbsp;</td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#getUserEmail--">getUserEmail</a></span>()</code>&nbsp;</td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#maxConcurrentRequests-int-">maxConcurrentRequests</a></span>(int&nbsp;newValue)</code> <div class="block">This parameter controls the maximum number of async API requests that will be in flight at once.</div> </td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#maxHttpResponseSize-int-">maxHttpResponseSize</a></span>(int&nbsp;newValue)</code> <div class="block">When making a remote call, this is the maximum size of the HTTP response.</div> </td> </tr> <tr id="i14" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#remoteApiPath-java.lang.String-">remoteApiPath</a></span>(java.lang.String&nbsp;newPath)</code> <div class="block">Sets the path used to access the remote API.</div> </td> </tr> <tr id="i15" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#reuseCredentials-java.lang.String-java.lang.String-">reuseCredentials</a></span>(java.lang.String&nbsp;newUserEmail, java.lang.String&nbsp;serializedCredentials)</code> <div class="block">Reuses credentials from another AppEngineClient.</div> </td> </tr> <tr id="i16" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#server-java.lang.String-int-">server</a></span>(java.lang.String&nbsp;newHostname, int&nbsp;newPort)</code> <div class="block">Sets the host and port port where we will connect.</div> </td> </tr> <tr id="i17" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useApplicationDefaultCredential--">useApplicationDefaultCredential</a></span>()</code> <div class="block">Use a Google Application Default credential for authentication.</div> </td> </tr> <tr id="i18" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useComputeEngineCredential--">useComputeEngineCredential</a></span>()</code> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp; <div class="block"><span class="deprecationComment">Use <a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useApplicationDefaultCredential--"><code>useApplicationDefaultCredential()</code></a>.</span></div> </div> </td> </tr> <tr id="i19" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useDevelopmentServerCredential--">useDevelopmentServerCredential</a></span>()</code> <div class="block">Use credentials appropriate for talking to the Development Server.</div> </td> </tr> <tr id="i20" class="altColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useServiceAccountCredential-java.lang.String-java.security.PrivateKey-">useServiceAccountCredential</a></span>(java.lang.String&nbsp;serviceAccountId, java.security.PrivateKey&nbsp;privateKey)</code> <div class="block">Use a service account credential.</div> </td> </tr> <tr id="i21" class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useServiceAccountCredential-java.lang.String-java.lang.String-">useServiceAccountCredential</a></span>(java.lang.String&nbsp;serviceAccountId, java.lang.String&nbsp;p12PrivateKeyFile)</code> <div class="block">Use a service account credential.</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>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="RemoteApiOptions--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>RemoteApiOptions</h4> <pre>public&nbsp;RemoteApiOptions()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="server-java.lang.String-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>server</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;server(java.lang.String&nbsp;newHostname, int&nbsp;newPort)</pre> <div class="block">Sets the host and port port where we will connect.</div> </li> </ul> <a name="credentials-java.lang.String-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>credentials</h4> <pre>@Deprecated public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;credentials(java.lang.String&nbsp;newUserEMail, java.lang.String&nbsp;newPassword)</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Use <a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useApplicationDefaultCredential--"><code>useApplicationDefaultCredential()</code></a> or <code>useServiceAccountCredential</code> instead.</span></div> <div class="block">Sets a username and password to be used for logging in via the ClientLogin API. Overrides any previously-provided credentials.</div> </li> </ul> <a name="reuseCredentials-java.lang.String-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reuseCredentials</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;reuseCredentials(java.lang.String&nbsp;newUserEmail, java.lang.String&nbsp;serializedCredentials)</pre> <div class="block">Reuses credentials from another AppEngineClient. Credentials can only be reused from a client with the same hostname and user. Overrides any previously-provided credentials.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>newUserEmail</code> - the email address of the user we want to log in as.</dd> <dd><code>serializedCredentials</code> - a string returned by calling <code>AppEngineClient.serializeCredentials()</code> on the previous client</dd> </dl> </li> </ul> <a name="useComputeEngineCredential--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>useComputeEngineCredential</h4> <pre>@Deprecated public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;useComputeEngineCredential()</pre> <div class="block"><span class="deprecatedLabel">Deprecated.</span>&nbsp;<span class="deprecationComment">Use <a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html#useApplicationDefaultCredential--"><code>useApplicationDefaultCredential()</code></a>.</span></div> <div class="block">Use a Compute Engine credential for authentication. Overrides any previously-provided credentials.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>this <code>RemoteApiOptions</code> instance</dd> </dl> </li> </ul> <a name="useApplicationDefaultCredential--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>useApplicationDefaultCredential</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;useApplicationDefaultCredential()</pre> <div class="block">Use a Google Application Default credential for authentication. Overrides any previously-provided credentials.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>this <code>RemoteApiOptions</code> instance.</dd> <dt><span class="seeLabel">See Also:</span></dt> <dd><a href="https://developers.google.com/identity/protocols/application-default-credentials"> Application Default Credentials</a></dd> </dl> </li> </ul> <a name="useServiceAccountCredential-java.lang.String-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>useServiceAccountCredential</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;useServiceAccountCredential(java.lang.String&nbsp;serviceAccountId, java.lang.String&nbsp;p12PrivateKeyFile)</pre> <div class="block">Use a service account credential. Overrides any previously-provided credentials.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>serviceAccountId</code> - service account ID (typically an e-mail address)</dd> <dd><code>p12PrivateKeyFile</code> - p12 file containing a private key to use with the service account</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>this <code>RemoteApiOptions</code> instance</dd> </dl> </li> </ul> <a name="useServiceAccountCredential-java.lang.String-java.security.PrivateKey-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>useServiceAccountCredential</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;useServiceAccountCredential(java.lang.String&nbsp;serviceAccountId, java.security.PrivateKey&nbsp;privateKey)</pre> <div class="block">Use a service account credential. Overrides any previously-provided credentials.</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>serviceAccountId</code> - service account ID (typically an e-mail address)</dd> <dd><code>privateKey</code> - private key to use with the service account</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>this <code>RemoteApiOptions</code> instance</dd> </dl> </li> </ul> <a name="useDevelopmentServerCredential--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>useDevelopmentServerCredential</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;useDevelopmentServerCredential()</pre> <div class="block">Use credentials appropriate for talking to the Development Server. Overrides any previously-provided credentials.</div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>this <code>RemoteApiOptions</code> instance</dd> </dl> </li> </ul> <a name="remoteApiPath-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>remoteApiPath</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;remoteApiPath(java.lang.String&nbsp;newPath)</pre> <div class="block">Sets the path used to access the remote API. If not set, the default is /remote_api.</div> </li> </ul> <a name="maxConcurrentRequests-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>maxConcurrentRequests</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;maxConcurrentRequests(int&nbsp;newValue)</pre> <div class="block">This parameter controls the maximum number of async API requests that will be in flight at once. Each concurrent request will likely be handled by a separate <a href="http://cloud.google.com/appengine/docs/adminconsole/instances.html" >instance</a> of your App. Having more instances increases throughput but may result in errors due to exceeding quota. Defaults to 5.</div> </li> </ul> <a name="datastoreQueryFetchSize-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>datastoreQueryFetchSize</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;datastoreQueryFetchSize(int&nbsp;newValue)</pre> <div class="block">When executing a datastore query, this is the number of results to fetch per HTTP request. Increasing this value will reduce the number of round trips when running large queries, but too high a value can be wasteful when not all results are needed. Defaults to 500. <p>(This value can be overridden by the code using the datastore API.)</p></div> </li> </ul> <a name="maxHttpResponseSize-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>maxHttpResponseSize</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;maxHttpResponseSize(int&nbsp;newValue)</pre> <div class="block">When making a remote call, this is the maximum size of the HTTP response. The default is 33M. Normally there's no reason to change this. This setting has no effect when running in an App Engine container.</div> </li> </ul> <a name="copy--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>copy</h4> <pre>public&nbsp;<a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiOptions.html" title="class in com.google.appengine.tools.remoteapi">RemoteApiOptions</a>&nbsp;copy()</pre> </li> </ul> <a name="getHostname--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getHostname</h4> <pre>public&nbsp;java.lang.String&nbsp;getHostname()</pre> </li> </ul> <a name="getPort--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getPort</h4> <pre>public&nbsp;int&nbsp;getPort()</pre> </li> </ul> <a name="getUserEmail--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getUserEmail</h4> <pre>public&nbsp;java.lang.String&nbsp;getUserEmail()</pre> </li> </ul> <a name="getPassword--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getPassword</h4> <pre>public&nbsp;java.lang.String&nbsp;getPassword()</pre> </li> </ul> <a name="getCredentialsToReuse--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getCredentialsToReuse</h4> <pre>public&nbsp;java.lang.String&nbsp;getCredentialsToReuse()</pre> </li> </ul> <a name="getRemoteApiPath--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getRemoteApiPath</h4> <pre>public&nbsp;java.lang.String&nbsp;getRemoteApiPath()</pre> </li> </ul> <a name="getMaxConcurrentRequests--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getMaxConcurrentRequests</h4> <pre>public&nbsp;int&nbsp;getMaxConcurrentRequests()</pre> </li> </ul> <a name="getDatastoreQueryFetchSize--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getDatastoreQueryFetchSize</h4> <pre>public&nbsp;int&nbsp;getDatastoreQueryFetchSize()</pre> </li> </ul> <a name="getMaxHttpResponseSize--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getMaxHttpResponseSize</h4> <pre>public&nbsp;int&nbsp;getMaxHttpResponseSize()</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> <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="../../../../../com/google/appengine/tools/remoteapi/package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../com/google/appengine/tools/remoteapi/RemoteApiInstaller.html" title="class in com.google.appengine.tools.remoteapi"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li>Next&nbsp;Class</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/google/appengine/tools/remoteapi/RemoteApiOptions.html" target="_top">Frames</a></li> <li><a href="RemoteApiOptions.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>
dougkoellmer/swarm
tools/appengine-java-sdk/docs/remoteapi/javadoc/com/google/appengine/tools/remoteapi/RemoteApiOptions.html
HTML
mit
31,700
<html> <head> <title>MOT-V300/0B.09.19R MIB/2.2 Profile/MIDP-2.0 Configuration/CLDC-1.0</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> </head> <body> <div class="container"> <div class="section"> <h1 class="header center orange-text">User agent detail</h1> <div class="row center"> MOT-V300/0B.09.19R MIB/2.2 Profile/MIDP-2.0 Configuration/CLDC-1.0 <p> Detected by 6 of 8 providers<br /> As bot detected by 0 of 7 </p> </div> </div> <div class="section"> <table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Actions</th></tr><tr><td>BrowscapPhp<br /><small>6011</small></td><td>Motorola Internet Browser 2.2</td><td> </td><td> </td><td>Motorola</td><td>V300</td><td>Mobile Phone</td><td>yes</td><td></td><td></td><td></td><td></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9">Detail</a> <!-- Modal Structure --> <div id="modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>BrowscapPhp result detail</h4> <p><pre><code class="php">stdClass Object ( [browser_name_regex] => /^mot\-v300\/.* mib\/2\.2 .*$/ [browser_name_pattern] => mot-v300/* mib/2.2 * [parent] => Motorola Internet Browser 2.2 [comment] => Motorola Internet Browser 2.2 [browser] => Motorola Internet Browser [browser_type] => Browser [browser_bits] => 0 [browser_maker] => Motorola [browser_modus] => unknown [version] => 2.2 [majorver] => 2 [minorver] => 2 [platform] => unknown [platform_version] => unknown [platform_description] => unknown [platform_bits] => 0 [platform_maker] => unknown [alpha] => [beta] => [win16] => [win32] => [win64] => [frames] => 1 [iframes] => 1 [tables] => 1 [cookies] => 1 [backgroundsounds] => [javascript] => [vbscript] => [javaapplets] => [activexcontrols] => [ismobiledevice] => 1 [istablet] => [issyndicationreader] => [crawler] => [cssversion] => 0 [aolversion] => 0 [device_name] => V300 [device_maker] => Motorola [device_type] => Mobile Phone [device_pointing_method] => unknown [device_code_name] => V300 [device_brand_name] => Motorola [renderingengine_name] => unknown [renderingengine_version] => unknown [renderingengine_description] => unknown [renderingengine_maker] => unknown ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>MOT-V300 0B.09.19R</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a> <!-- Modal Structure --> <div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>DonatjUAParser result detail</h4> <p><pre><code class="php">Array ( [platform] => [browser] => MOT-V300 [version] => 0B.09.19R ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td> </td><td> </td><td> </td><td>Motorola</td><td>V300</td><td>smartphone</td><td>yes</td><td></td><td></td><td></td><td></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf">Detail</a> <!-- Modal Structure --> <div id="modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>PiwikDeviceDetector result detail</h4> <p><pre><code class="php">Array ( [client] => [operatingSystem] => Array ( ) [device] => Array ( [brand] => MR [brandName] => Motorola [model] => V300 [device] => 1 [deviceName] => smartphone ) [bot] => [extra] => Array ( [isBot] => [isBrowser] => [isFeedReader] => [isMobileApp] => [isPIM] => [isLibrary] => [isMediaPlayer] => [isCamera] => [isCarBrowser] => [isConsole] => [isFeaturePhone] => [isPhablet] => [isPortableMediaPlayer] => [isSmartDisplay] => [isSmartphone] => 1 [isTablet] => [isTV] => [isDesktop] => [isMobile] => 1 [isTouchEnabled] => ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td> </td><td><i class="material-icons">close</i></td><td> </td><td>Motorola</td><td>V300</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a> <!-- Modal Structure --> <div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>UAParser result detail</h4> <p><pre><code class="php">UAParser\Result\Client Object ( [ua] => UAParser\Result\UserAgent Object ( [major] => [minor] => [patch] => [family] => Other ) [os] => UAParser\Result\OperatingSystem Object ( [major] => [minor] => [patch] => [patchMinor] => [family] => Other ) [device] => UAParser\Result\Device Object ( [brand] => Motorola [model] => V300 [family] => Motorola V300 ) [originalUserAgent] => MOT-V300/0B.09.19R MIB/2.2 Profile/MIDP-2.0 Configuration/CLDC-1.0 ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>WhichBrowser<br /><small>2.0.9</small></td><td>Motorola Internet Browser 2.2</td><td> </td><td> </td><td>Motorola</td><td>V300</td><td>mobile:feature</td><td>yes</td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b">Detail</a> <!-- Modal Structure --> <div id="modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>WhichBrowser result detail</h4> <p><pre><code class="php">Array ( [browser] => Array ( [name] => Motorola Internet Browser [version] => 2.2 [type] => browser ) [device] => Array ( [type] => mobile [subtype] => feature [manufacturer] => Motorola [model] => V300 ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>Java Applet </td><td><i class="material-icons">close</i></td><td> </td><td>Motorola</td><td>V300</td><td>Feature Phone</td><td>yes</td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a> <!-- Modal Structure --> <div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>Wurfl result detail</h4> <p><pre><code class="php">Array ( [virtual] => Array ( [is_android] => false [is_ios] => false [is_windows_phone] => false [is_app] => false [is_full_desktop] => false [is_largescreen] => false [is_mobile] => true [is_robot] => false [is_smartphone] => false [is_touchscreen] => false [is_wml_preferred] => false [is_xhtmlmp_preferred] => true [is_html_preferred] => false [advertised_device_os] => [advertised_device_os_version] => [advertised_browser] => Java Applet [advertised_browser_version] => [complete_device_name] => Motorola V300 [form_factor] => Feature Phone [is_phone] => true [is_app_webview] => false ) [all] => Array ( [brand_name] => Motorola [model_name] => V300 [unique] => true [ununiqueness_handler] => [is_wireless_device] => true [device_claims_web_support] => false [has_qwerty_keyboard] => false [can_skip_aligned_link_row] => false [uaprof] => http://motorola.handango.com/phoneconfig/v300/profile/v300.rdf [uaprof2] => [uaprof3] => [nokia_series] => 0 [nokia_edition] => 0 [device_os] => [mobile_browser] => Motorola Internet Browser [mobile_browser_version] => 2.2 [device_os_version] => [pointing_method] => [release_date] => 2002_january [marketing_name] => [model_extra_info] => [nokia_feature_pack] => 0 [can_assign_phone_number] => true [is_tablet] => false [manufacturer_name] => [is_bot] => false [is_google_glass] => false [proportional_font] => true [built_in_back_button_support] => false [card_title_support] => true [softkey_support] => true [table_support] => true [numbered_menus] => false [menu_with_select_element_recommended] => false [menu_with_list_of_links_recommended] => true [icons_on_menu_items_support] => true [break_list_of_links_with_br_element_recommended] => true [access_key_support] => false [wrap_mode_support] => false [times_square_mode_support] => false [deck_prefetch_support] => false [elective_forms_recommended] => true [wizards_recommended] => false [image_as_link_support] => true [insert_br_element_after_widget_recommended] => false [wml_can_display_images_and_text_on_same_line] => false [wml_displays_image_in_center] => false [opwv_wml_extensions_support] => false [wml_make_phone_call_string] => wtai://wp/mc; [chtml_display_accesskey] => false [emoji] => false [chtml_can_display_images_and_text_on_same_line] => false [chtml_displays_image_in_center] => false [imode_region] => none [chtml_make_phone_call_string] => tel: [chtml_table_support] => false [xhtml_honors_bgcolor] => false [xhtml_supports_forms_in_table] => false [xhtml_support_wml2_namespace] => false [xhtml_autoexpand_select] => true [xhtml_select_as_dropdown] => false [xhtml_select_as_radiobutton] => false [xhtml_select_as_popup] => false [xhtml_display_accesskey] => false [xhtml_supports_invisible_text] => false [xhtml_supports_inline_input] => true [xhtml_supports_monospace_font] => true [xhtml_supports_table_for_layout] => true [xhtml_supports_css_cell_table_coloring] => true [xhtml_format_as_css_property] => true [xhtml_format_as_attribute] => true [xhtml_nowrap_mode] => true [xhtml_marquee_as_css_property] => true [xhtml_readable_background_color1] => #99CCFF [xhtml_readable_background_color2] => #FFFFFF [xhtml_allows_disabled_form_elements] => false [xhtml_document_title_support] => true [xhtml_preferred_charset] => iso8859 [opwv_xhtml_extensions_support] => false [xhtml_make_phone_call_string] => wtai://wp/mc; [xhtmlmp_preferred_mime_type] => application/vnd.wap.xhtml+xml [xhtml_table_support] => true [xhtml_send_sms_string] => none [xhtml_send_mms_string] => none [xhtml_file_upload] => not_supported [cookie_support] => true [accept_third_party_cookie] => true [xhtml_supports_iframe] => none [xhtml_avoid_accesskeys] => false [xhtml_can_embed_video] => none [ajax_support_javascript] => false [ajax_manipulate_css] => false [ajax_support_getelementbyid] => false [ajax_support_inner_html] => false [ajax_xhr_type] => none [ajax_manipulate_dom] => false [ajax_support_events] => false [ajax_support_event_listener] => false [ajax_preferred_geoloc_api] => none [xhtml_support_level] => 3 [preferred_markup] => html_wi_oma_xhtmlmp_1_0 [wml_1_1] => true [wml_1_2] => true [wml_1_3] => true [html_wi_w3_xhtmlbasic] => true [html_wi_oma_xhtmlmp_1_0] => true [html_wi_imode_html_1] => false [html_wi_imode_html_2] => false [html_wi_imode_html_3] => false [html_wi_imode_html_4] => false [html_wi_imode_html_5] => false [html_wi_imode_htmlx_1] => false [html_wi_imode_htmlx_1_1] => false [html_wi_imode_compact_generic] => false [html_web_3_2] => false [html_web_4_0] => false [voicexml] => false [multipart_support] => true [total_cache_disable_support] => false [time_to_live_support] => false [resolution_width] => 176 [resolution_height] => 220 [columns] => 20 [max_image_width] => 168 [max_image_height] => 185 [rows] => 8 [physical_screen_width] => 27 [physical_screen_height] => 27 [dual_orientation] => false [density_class] => 1.0 [wbmp] => true [bmp] => true [epoc_bmp] => false [gif_animated] => true [jpg] => true [png] => true [tiff] => false [transparent_png_alpha] => false [transparent_png_index] => false [svgt_1_1] => false [svgt_1_1_plus] => false [greyscale] => false [gif] => true [colors] => 65536 [webp_lossy_support] => false [webp_lossless_support] => false [post_method_support] => true [basic_authentication_support] => true [empty_option_value_support] => true [emptyok] => false [nokia_voice_call] => false [wta_voice_call] => false [wta_phonebook] => false [wta_misc] => false [wta_pdc] => false [https_support] => true [phone_id_provided] => false [max_data_rate] => 40 [wifi] => false [sdio] => false [vpn] => false [has_cellular_radio] => true [max_deck_size] => 522240 [max_url_length_in_requests] => 128 [max_url_length_homepage] => 0 [max_url_length_bookmark] => 0 [max_url_length_cached_page] => 0 [max_no_of_connection_settings] => 0 [max_no_of_bookmarks] => 0 [max_length_of_username] => 0 [max_length_of_password] => 0 [max_object_size] => 32768 [downloadfun_support] => true [directdownload_support] => true [inline_support] => true [oma_support] => false [ringtone] => true [ringtone_3gpp] => false [ringtone_midi_monophonic] => true [ringtone_midi_polyphonic] => true [ringtone_imelody] => true [ringtone_digiplug] => false [ringtone_compactmidi] => false [ringtone_mmf] => false [ringtone_rmf] => false [ringtone_xmf] => false [ringtone_amr] => true [ringtone_awb] => false [ringtone_aac] => false [ringtone_wav] => true [ringtone_mp3] => true [ringtone_spmidi] => false [ringtone_qcelp] => false [ringtone_voices] => 24 [ringtone_df_size_limit] => 143360 [ringtone_directdownload_size_limit] => 143360 [ringtone_inline_size_limit] => 0 [ringtone_oma_size_limit] => 0 [wallpaper] => true [wallpaper_max_width] => 176 [wallpaper_max_height] => 220 [wallpaper_preferred_width] => 176 [wallpaper_preferred_height] => 220 [wallpaper_resize] => none [wallpaper_wbmp] => true [wallpaper_bmp] => false [wallpaper_gif] => true [wallpaper_jpg] => true [wallpaper_png] => true [wallpaper_tiff] => false [wallpaper_greyscale] => false [wallpaper_colors] => 16 [wallpaper_df_size_limit] => 15360 [wallpaper_directdownload_size_limit] => 0 [wallpaper_inline_size_limit] => 0 [wallpaper_oma_size_limit] => 0 [screensaver] => false [screensaver_max_width] => 0 [screensaver_max_height] => 0 [screensaver_preferred_width] => 0 [screensaver_preferred_height] => 0 [screensaver_resize] => none [screensaver_wbmp] => false [screensaver_bmp] => false [screensaver_gif] => false [screensaver_jpg] => false [screensaver_png] => false [screensaver_greyscale] => false [screensaver_colors] => 2 [screensaver_df_size_limit] => 0 [screensaver_directdownload_size_limit] => 0 [screensaver_inline_size_limit] => 0 [screensaver_oma_size_limit] => 0 [picture] => false [picture_max_width] => 0 [picture_max_height] => 0 [picture_preferred_width] => 0 [picture_preferred_height] => 0 [picture_resize] => none [picture_wbmp] => false [picture_bmp] => false [picture_gif] => false [picture_jpg] => false [picture_png] => false [picture_greyscale] => false [picture_colors] => 2 [picture_df_size_limit] => 0 [picture_directdownload_size_limit] => 0 [picture_inline_size_limit] => 0 [picture_oma_size_limit] => 0 [video] => true [oma_v_1_0_forwardlock] => true [oma_v_1_0_combined_delivery] => true [oma_v_1_0_separate_delivery] => true [streaming_video] => false [streaming_3gpp] => true [streaming_mp4] => false [streaming_mov] => false [streaming_video_size_limit] => 0 [streaming_real_media] => none [streaming_flv] => false [streaming_3g2] => false [streaming_vcodec_h263_0] => -1 [streaming_vcodec_h263_3] => -1 [streaming_vcodec_mpeg4_sp] => -1 [streaming_vcodec_mpeg4_asp] => -1 [streaming_vcodec_h264_bp] => -1 [streaming_acodec_amr] => none [streaming_acodec_aac] => none [streaming_wmv] => none [streaming_preferred_protocol] => rtsp [streaming_preferred_http_protocol] => none [wap_push_support] => true [connectionless_service_indication] => true [connectionless_service_load] => false [connectionless_cache_operation] => false [connectionoriented_unconfirmed_service_indication] => true [connectionoriented_unconfirmed_service_load] => true [connectionoriented_unconfirmed_cache_operation] => true [connectionoriented_confirmed_service_indication] => true [connectionoriented_confirmed_service_load] => true [connectionoriented_confirmed_cache_operation] => true [utf8_support] => true [ascii_support] => false [iso8859_support] => false [expiration_date] => true [j2me_cldc_1_0] => true [j2me_cldc_1_1] => false [j2me_midp_1_0] => true [j2me_midp_2_0] => true [doja_1_0] => false [doja_1_5] => false [doja_2_0] => false [doja_2_1] => false [doja_2_2] => false [doja_3_0] => false [doja_3_5] => false [doja_4_0] => false [j2me_jtwi] => false [j2me_mmapi_1_0] => true [j2me_mmapi_1_1] => false [j2me_wmapi_1_0] => true [j2me_wmapi_1_1] => false [j2me_wmapi_2_0] => false [j2me_btapi] => false [j2me_3dapi] => false [j2me_locapi] => false [j2me_nokia_ui] => false [j2me_motorola_lwt] => false [j2me_siemens_color_game] => false [j2me_siemens_extension] => false [j2me_heap_size] => 819200 [j2me_max_jar_size] => 102400 [j2me_storage_size] => 5242880 [j2me_max_record_store_size] => 65536 [j2me_screen_width] => 176 [j2me_screen_height] => 220 [j2me_canvas_width] => 176 [j2me_canvas_height] => 182 [j2me_bits_per_pixel] => 16 [j2me_audio_capture_enabled] => false [j2me_video_capture_enabled] => false [j2me_photo_capture_enabled] => false [j2me_capture_image_formats] => none [j2me_http] => true [j2me_https] => false [j2me_socket] => true [j2me_udp] => true [j2me_serial] => true [j2me_gif] => false [j2me_gif89a] => false [j2me_jpg] => true [j2me_png] => true [j2me_bmp] => false [j2me_bmp3] => false [j2me_wbmp] => false [j2me_midi] => true [j2me_wav] => true [j2me_amr] => true [j2me_mp3] => true [j2me_mp4] => false [j2me_imelody] => false [j2me_rmf] => false [j2me_au] => false [j2me_aac] => false [j2me_realaudio] => false [j2me_xmf] => false [j2me_wma] => false [j2me_3gpp] => false [j2me_h263] => false [j2me_svgt] => false [j2me_mpeg4] => false [j2me_realvideo] => false [j2me_real8] => false [j2me_realmedia] => false [j2me_left_softkey_code] => 21 [j2me_right_softkey_code] => 22 [j2me_middle_softkey_code] => 23 [j2me_select_key_code] => 0 [j2me_return_key_code] => 0 [j2me_clear_key_code] => 0 [j2me_datefield_no_accepts_null_date] => false [j2me_datefield_broken] => true [receiver] => true [sender] => true [mms_max_size] => 102400 [mms_max_height] => 480 [mms_max_width] => 640 [built_in_recorder] => false [built_in_camera] => true [mms_jpeg_baseline] => true [mms_jpeg_progressive] => true [mms_gif_static] => true [mms_gif_animated] => true [mms_png] => true [mms_bmp] => true [mms_wbmp] => true [mms_amr] => true [mms_wav] => true [mms_midi_monophonic] => true [mms_midi_polyphonic] => true [mms_midi_polyphonic_voices] => 24 [mms_spmidi] => true [mms_mmf] => false [mms_mp3] => true [mms_evrc] => false [mms_qcelp] => false [mms_ota_bitmap] => false [mms_nokia_wallpaper] => false [mms_nokia_operatorlogo] => false [mms_nokia_3dscreensaver] => false [mms_nokia_ringingtone] => false [mms_rmf] => false [mms_xmf] => false [mms_symbian_install] => false [mms_jar] => false [mms_jad] => false [mms_vcard] => false [mms_vcalendar] => false [mms_wml] => false [mms_wbxml] => false [mms_wmlc] => false [mms_video] => false [mms_mp4] => false [mms_3gpp] => false [mms_3gpp2] => false [mms_max_frame_rate] => 0 [nokiaring] => false [picturemessage] => false [operatorlogo] => false [largeoperatorlogo] => false [callericon] => false [nokiavcard] => false [nokiavcal] => false [sckl_ringtone] => false [sckl_operatorlogo] => false [sckl_groupgraphic] => false [sckl_vcard] => false [sckl_vcalendar] => false [text_imelody] => false [ems] => true [ems_variablesizedpictures] => false [ems_imelody] => false [ems_odi] => false [ems_upi] => false [ems_version] => 0 [siemens_ota] => false [siemens_logo_width] => 101 [siemens_logo_height] => 29 [siemens_screensaver_width] => 101 [siemens_screensaver_height] => 50 [gprtf] => false [sagem_v1] => false [sagem_v2] => false [panasonic] => false [sms_enabled] => true [wav] => true [mmf] => false [smf] => false [mld] => false [midi_monophonic] => true [midi_polyphonic] => true [sp_midi] => true [rmf] => false [xmf] => false [compactmidi] => false [digiplug] => false [nokia_ringtone] => false [imelody] => true [au] => true [amr] => true [awb] => false [aac] => false [mp3] => true [voices] => 24 [qcelp] => false [evrc] => false [flash_lite_version] => [fl_wallpaper] => false [fl_screensaver] => false [fl_standalone] => false [fl_browser] => false [fl_sub_lcd] => false [full_flash_support] => false [css_supports_width_as_percentage] => true [css_border_image] => none [css_rounded_corners] => none [css_gradient] => none [css_spriting] => false [css_gradient_linear] => none [is_transcoder] => false [transcoder_ua_header] => user-agent [rss_support] => false [pdf_support] => false [progressive_download] => false [playback_vcodec_h263_0] => 10 [playback_vcodec_h263_3] => -1 [playback_vcodec_mpeg4_sp] => 0 [playback_vcodec_mpeg4_asp] => -1 [playback_vcodec_h264_bp] => -1 [playback_real_media] => none [playback_3gpp] => true [playback_3g2] => false [playback_mp4] => true [playback_mov] => false [playback_acodec_amr] => nb [playback_acodec_aac] => none [playback_df_size_limit] => 0 [playback_directdownload_size_limit] => 0 [playback_inline_size_limit] => 0 [playback_oma_size_limit] => 0 [playback_acodec_qcelp] => false [playback_wmv] => none [hinted_progressive_download] => false [html_preferred_dtd] => xhtml_mp1 [viewport_supported] => false [viewport_width] => [viewport_userscalable] => [viewport_initial_scale] => [viewport_maximum_scale] => [viewport_minimum_scale] => [mobileoptimized] => false [handheldfriendly] => false [canvas_support] => none [image_inlining] => false [is_smarttv] => false [is_console] => false [nfc_support] => false [ux_full_desktop] => false [jqm_grade] => none [is_sencha_touch_ok] => false [controlcap_is_smartphone] => default [controlcap_is_ios] => default [controlcap_is_android] => default [controlcap_is_robot] => default [controlcap_is_app] => default [controlcap_advertised_device_os] => default [controlcap_advertised_device_os_version] => default [controlcap_advertised_browser] => default [controlcap_advertised_browser_version] => default [controlcap_is_windows_phone] => default [controlcap_is_full_desktop] => default [controlcap_is_largescreen] => default [controlcap_is_mobile] => default [controlcap_is_touchscreen] => default [controlcap_is_wml_preferred] => default [controlcap_is_xhtmlmp_preferred] => default [controlcap_is_html_preferred] => default [controlcap_form_factor] => default [controlcap_complete_device_name] => default ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr></table> </div> <div class="section"> <h1 class="header center orange-text">About this comparison</h1> <div class="row center"> <h5 class="header light"> The primary goal of this project is simple<br /> I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br /> <br /> The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br /> <br /> You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br /> <br /> The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a> </h5> </div> </div> <div class="card"> <div class="card-content"> Comparison created <i>2016-01-26 16:38:36</i> | by <a href="https://github.com/ThaDafinser">ThaDafinser</a> </div> </div> </div> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script> <script> $(document).ready(function(){ // the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered $('.modal-trigger').leanModal(); }); </script> </body> </html>
ThaDafinser/UserAgentParserComparison
v3/user-agent-detail/f5/af/f5afc709-76b9-4bb6-8613-7134b2deaad4.html
HTML
mit
34,478
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <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="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">dev / contrib:jordan-curve-theorem dev</a></li> <li class="active"><a href="">2014-11-28 21:50:38</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:jordan-curve-theorem <small> dev <span class="label label-danger">Error</span> </small> </h1> <p><em><script>document.write(moment("2014-11-28 21:50:38 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-28 21:50:38 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:jordan-curve-theorem/coq:contrib:jordan-curve-theorem.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:jordan-curve-theorem.dev coq.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following actions will be performed: - install coq:contrib:jordan-curve-theorem.dev === 1 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq:contrib:jordan-curve-theorem.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:jordan-curve-theorem.dev. </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --deps-only coq:contrib:jordan-curve-theorem.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --verbose coq:contrib:jordan-curve-theorem.dev</code></dd> <dt>Return code</dt> <dd>1024</dd> <dt>Duration</dt> <dd>1 m 32 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - install coq:contrib:jordan-curve-theorem.dev === 1 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= [coq:contrib:jordan-curve-theorem] Fetching https://gforge.inria.fr/git/coq-contribs/jordan-curve-theorem.git#trunk Initialized empty Git repository in /home/bench/.opam/packages.dev/coq:contrib:jordan-curve-theorem.dev/.git/ [master (root-commit) 8492d0c] opam-git-init From https://gforge.inria.fr/git/coq-contribs/jordan-curve-theorem * [new branch] trunk -&gt; opam-ref * [new branch] trunk -&gt; origin/trunk Jordan1.v Jordan10.v Jordan2.v Jordan3.v Jordan4.v Jordan5.v Jordan6.v Jordan7.v Jordan8.v Jordan9.v Make Makefile README description HEAD is now at e9bb83c Revert &quot;Regenerating Makefiles.&quot; We will be able to do so when we have access =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq:contrib:jordan-curve-theorem.dev: coq_makefile -f Make -o Makefile make -j4 make install &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan10.v&quot; &gt; &quot;Jordan10.v.d&quot; || ( RV=$?; rm -f &quot;Jordan10.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan1.v&quot; &gt; &quot;Jordan1.v.d&quot; || ( RV=$?; rm -f &quot;Jordan1.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan2.v&quot; &gt; &quot;Jordan2.v.d&quot; || ( RV=$?; rm -f &quot;Jordan2.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan3.v&quot; &gt; &quot;Jordan3.v.d&quot; || ( RV=$?; rm -f &quot;Jordan3.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan4.v&quot; &gt; &quot;Jordan4.v.d&quot; || ( RV=$?; rm -f &quot;Jordan4.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan5.v&quot; &gt; &quot;Jordan5.v.d&quot; || ( RV=$?; rm -f &quot;Jordan5.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan6.v&quot; &gt; &quot;Jordan6.v.d&quot; || ( RV=$?; rm -f &quot;Jordan6.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan7.v&quot; &gt; &quot;Jordan7.v.d&quot; || ( RV=$?; rm -f &quot;Jordan7.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan8.v&quot; &gt; &quot;Jordan8.v.d&quot; || ( RV=$?; rm -f &quot;Jordan8.v.d&quot;; exit ${RV} ) &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan9.v&quot; &gt; &quot;Jordan9.v.d&quot; || ( RV=$?; rm -f &quot;Jordan9.v.d&quot;; exit ${RV} ) &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan1 &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan2 &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan3 &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan4 &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan5 File &quot;./Jordan5.v&quot;, line 1798, characters 15-30: Error: Cannot coerce H to an evaluable reference. Makefile:234: recipe for target &#39;Jordan5.vo&#39; failed make: *** [Jordan5.vo] Error 1 [ERROR] The compilation of coq:contrib:jordan-curve-theorem.dev failed. Removing coq:contrib:jordan-curve-theorem.dev. rm -R /home/bench/.opam/system/lib/coq/user-contrib/JordanCurveTheorem rm: cannot remove &#39;/home/bench/.opam/system/lib/coq/user-contrib/JordanCurveTheorem&#39;: No such file or directory #=== ERROR while installing coq:contrib:jordan-curve-theorem.dev ==============# # opam-version 1.2.0 # os linux # command make -j4 # path /home/bench/.opam/system/build/coq:contrib:jordan-curve-theorem.dev # compiler system (4.01.0) # exit-code 2 # env-file /home/bench/.opam/system/build/coq:contrib:jordan-curve-theorem.dev/coq:contrib:jordan-curve-theorem-707-d2c37b.env # stdout-file /home/bench/.opam/system/build/coq:contrib:jordan-curve-theorem.dev/coq:contrib:jordan-curve-theorem-707-d2c37b.out # stderr-file /home/bench/.opam/system/build/coq:contrib:jordan-curve-theorem.dev/coq:contrib:jordan-curve-theorem-707-d2c37b.err ### stdout ### # ...[truncated] # &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan6.v&quot; &gt; &quot;Jordan6.v.d&quot; || ( RV=$?; rm -f &quot;Jordan6.v.d&quot;; exit ${RV} ) # &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan7.v&quot; &gt; &quot;Jordan7.v.d&quot; || ( RV=$?; rm -f &quot;Jordan7.v.d&quot;; exit ${RV} ) # &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan8.v&quot; &gt; &quot;Jordan8.v.d&quot; || ( RV=$?; rm -f &quot;Jordan8.v.d&quot;; exit ${RV} ) # &quot;coqdep&quot; -c -R &quot;.&quot; JordanCurveTheorem &quot;Jordan9.v&quot; &gt; &quot;Jordan9.v.d&quot; || ( RV=$?; rm -f &quot;Jordan9.v.d&quot;; exit ${RV} ) # &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan1 # &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan2 # &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan3 # &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan4 # &quot;coqc&quot; -q -R &quot;.&quot; JordanCurveTheorem -no-native-compiler Jordan5 # Makefile:234: recipe for target &#39;Jordan5.vo&#39; failed ### stderr ### # File &quot;./Jordan5.v&quot;, line 1798, characters 15-30: # Error: Cannot coerce H to an evaluable reference. # make: *** [Jordan5.vo] Error 1 &#39;opam install -y --verbose coq:contrib:jordan-curve-theorem.dev&#39; failed. </pre></dd> </dl> <h2>Installation size</h2> <p>Data not available in this bench.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io-old
clean/Linux-x86_64-4.01.0-1.2.0/unstable/dev/contrib:jordan-curve-theorem/dev/2014-11-28_21-50-38.html
HTML
mit
11,963
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Preview - Remarkable</title> <!-- build:css styles/vendor.css --> <!-- bower:css --> <!-- endbower --> <!-- endbuild --> <!-- build:css styles/main.css --> <link rel="stylesheet" href="styles/fonts.css"> <link rel="stylesheet" href="styles/preview.css"> <!-- endbuild --> </head> <body> <!-- build:js scripts/vendor.js --> <!-- bower:js --> <script src="bower_components/jquery/dist/jquery.js"></script> <script src="bower_components/remark/out/remark.js"></script> <!-- endbower --> <!-- endbuild --> <!-- build:js scripts/preview.js --> <script src="scripts/preview.js"></script> <!-- endbuild --> </body> </html>
Muffo/remarkable
app/preview.html
HTML
mit
848
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- /fasttmp/mkdist-qt-4.3.5-1211793125/qtopia-core-opensource-src-4.3.5/src/gui/text/qabstractfontengine_qws.cpp --> <head> <title>Qt 4.3: List of All Members for QFontEngineInfo</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 align="center">List of All Members for QFontEngineInfo</h1> <p>This is the complete list of members for <a href="qfontengineinfo.html">QFontEngineInfo</a>, including inherited members.</p> <ul> <li><div class="fn"/><a href="qfontengineinfo.html#QFontEngineInfo">QFontEngineInfo</a> ()</li> <li><div class="fn"/><a href="qfontengineinfo.html#QFontEngineInfo-2">QFontEngineInfo</a> ( const QString &amp; )</li> <li><div class="fn"/><a href="qfontengineinfo.html#QFontEngineInfo-3">QFontEngineInfo</a> ( const QFontEngineInfo &amp; )</li> <li><div class="fn"/><a href="qfontengineinfo.html#dtor.QFontEngineInfo">~QFontEngineInfo</a> ()</li> <li><div class="fn"/><a href="qfontengineinfo.html#family-prop">family</a> () const : QString</li> <li><div class="fn"/><a href="qfontengineinfo.html#pixelSize-prop">pixelSize</a> () const : qreal</li> <li><div class="fn"/><a href="qfontengineinfo.html#family-prop">setFamily</a> ( const QString &amp; )</li> <li><div class="fn"/><a href="qfontengineinfo.html#pixelSize-prop">setPixelSize</a> ( qreal )</li> <li><div class="fn"/><a href="qfontengineinfo.html#style-prop">setStyle</a> ( QFont::Style )</li> <li><div class="fn"/><a href="qfontengineinfo.html#weight-prop">setWeight</a> ( int )</li> <li><div class="fn"/><a href="qfontengineinfo.html#writingSystems-prop">setWritingSystems</a> ( const QList&lt;QFontDatabase::WritingSystem&gt; &amp; )</li> <li><div class="fn"/><a href="qfontengineinfo.html#style-prop">style</a> () const : QFont::Style</li> <li><div class="fn"/><a href="qfontengineinfo.html#weight-prop">weight</a> () const : int</li> <li><div class="fn"/><a href="qfontengineinfo.html#writingSystems-prop">writingSystems</a> () const : QList&lt;QFontDatabase::WritingSystem&gt;</li> <li><div class="fn"/><a href="qfontengineinfo.html#operator-eq">operator=</a> ( const QFontEngineInfo &amp; ) : QFontEngineInfo &amp;</li> </ul> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%">Copyright &copy; 2008 <a href="trolltech.html">Trolltech</a></td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.3.5</div></td> </tr></table></div></address></body> </html>
misizeji/StudyNote_201308
webserver/html/qfontengineinfo-members.html
HTML
mit
3,733
<!DOCTYPE html> <html> <head> <link type="text/css" rel="stylesheet" href="../node_modules/video.js/dist/video-js.min.css"/> </head> <body> <div id="container"> <pre id="logger"></pre> <canvas width="1024" height="255"></canvas> <video id="video" class="video-js vjs-default-skin" controls /> </div> <script src="../node_modules/video.js/dist/video.min.js"></script> <script src="../src/videojs-mediasource-segmented.js"></script> <script> var player = videojs('video', { plugins: { segment: { src: '/-/media?link=M0-2nWj1SSqhTbHjAkAQWZRWyxnzogniJFEMycrMbioxz4V-2QjHK.avi&encode=mp4', duration: 120 } }, controls: true }); player.src({ src: '/-/media?link=M0-2nWj1SSqhTbHjAkAQWZRWyxnzogniJFEMycrMbioxz4V-2QjHK.avi&encode=mp4', duration: 120 }); </script> </body> </html>
rifmj/videojs-mediasource-segmented
examples/index.html
HTML
mit
857
{% extends "skeleton.html" %} {% load autobreadcrumb %} {% block head_more_links %}{{ block.super }} {% include "po_projects/include_css.html" %} {% endblock %} {% block head_base_js %}{{ block.super }} {% include "po_projects/include_js.html" %} {% endblock %} {% block base_content %}<div class="row po_projects"> <div class="small-12 columns"> {% autobreadcrumbs_tag %} <h2>{% current_title_from_breadcrumbs %}</h2> {% block content %}{% endblock %} </div> </div>{% endblock %}
sveetch/PO-Projects
po_projects/templates/po_projects/base.html
HTML
mit
524
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>aalib.js :: Marylin</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body class="inverse"> <script type="text/javascript" src="../dist/aalib.js"></script> <script type="text/javascript"> aalib.read.image.fromURL("../resources/marylin.jpg") .map(aalib.aa({ width: 530, height: 160, colored: true })) .map(aalib.filter.inverse()) .map(aalib.render.html({ background: "#000", fontFamily: "Ubuntu Mono, monospace" })) .do(function (el) { document.body.appendChild(el); }) .subscribe(); </script> </body> </html>
mir3z/aalib.js
examples/marylin.html
HTML
mit
722
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Class DSchoenbauer\Orm\Builder\PdoModelBuilder</title> <link rel="stylesheet" href="resources/style.css?e99947befd7bf673c6b43ff75e9e0f170c88a60e"> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"> <a href="namespace-DSchoenbauer.html"> DSchoenbauer<span></span> </a> <ul> <li class="active"> <a href="namespace-DSchoenbauer.Orm.html"> Orm<span></span> </a> <ul> <li class="active"> <a href="namespace-DSchoenbauer.Orm.Builder.html"> Builder </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Entity.html"> Entity </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Enum.html"> Enum </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Events.html"> Events<span></span> </a> <ul> <li> <a href="namespace-DSchoenbauer.Orm.Events.Persistence.html"> Persistence </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Events.Validate.html"> Validate<span></span> </a> <ul> <li> <a href="namespace-DSchoenbauer.Orm.Events.Validate.DataType.html"> DataType </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Events.Validate.Schema.html"> Schema </a> </li> </ul></li></ul></li> <li> <a href="namespace-DSchoenbauer.Orm.Exception.html"> Exception </a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Framework.html"> Framework </a> </li> </ul></li></ul></li> </ul> </div> <hr> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-DSchoenbauer.Orm.Builder.ModelDirector.html">ModelDirector</a></li> <li class="active"><a href="class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html">PdoModelBuilder</a></li> </ul> <h3>Interfaces</h3> <ul> <li><a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html">BuilderInterface</a></li> <li><a href="class-DSchoenbauer.Orm.Builder.DirectorInterface.html">DirectorInterface</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value=""> <input type="hidden" name="ie" value="UTF-8"> <input type="text" name="q" class="text" placeholder="Search"> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="namespace-DSchoenbauer.Orm.Builder.html" title="Summary of DSchoenbauer\Orm\Builder"><span>Namespace</span></a> </li> <li class="active"> <span>Class</span> </li> </ul> <ul> </ul> <ul> </ul> </div> <div id="content" class="class"> <h1>Class PdoModelBuilder</h1> <dl class="tree"> <dd style="padding-left:0px"> <b><span>DSchoenbauer\Orm\Builder\PdoModelBuilder</span></b> implements <a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html"><span>DSchoenbauer\Orm\Builder\BuilderInterface</span></a> </dd> </dl> <div class="info"> <b>Namespace:</b> <a href="namespace-DSchoenbauer.html">DSchoenbauer</a>\<a href="namespace-DSchoenbauer.Orm.html">Orm</a>\<a href="namespace-DSchoenbauer.Orm.Builder.html">Builder</a><br> <b>Author:</b> David Schoenbauer<br> <b>Located at</b> <a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#43-135" title="Go to source code">Orm/Builder/PdoModelBuilder.php</a> <br> </div> <table class="summary methods" id="methods"> <caption>Methods summary</caption> <tr data-order="__construct" id="___construct"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#___construct">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#61-64" title="Go to source code">__construct</a>( <span>PDO <var>$adapter</var></span>, <span><code><a href="class-DSchoenbauer.Orm.Entity.EntityInterface.html">DSchoenbauer\Orm\Entity\EntityInterface</a></code> <var>$entity</var></span> )</code> <div class="description short"> </div> <div class="description detailed hidden"> </div> </div></td> </tr> <tr data-order="build" id="_build"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_build">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#66-69" title="Go to source code">build</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Implementation of</h4> <div class="list"><code><a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html#_build">DSchoenbauer\Orm\Builder\BuilderInterface::build()</a></code></div> </div> </div></td> </tr> <tr data-order="buildFinalOutput" id="_buildFinalOutput"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_buildFinalOutput">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#71-73" title="Go to source code">buildFinalOutput</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Implementation of</h4> <div class="list"><code><a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html#_buildFinalOutput">DSchoenbauer\Orm\Builder\BuilderInterface::buildFinalOutput()</a></code></div> </div> </div></td> </tr> <tr data-order="buildPersistence" id="_buildPersistence"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_buildPersistence">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#75-83" title="Go to source code">buildPersistence</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Implementation of</h4> <div class="list"><code><a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html#_buildPersistence">DSchoenbauer\Orm\Builder\BuilderInterface::buildPersistence()</a></code></div> </div> </div></td> </tr> <tr data-order="buildValidations" id="_buildValidations"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_buildValidations">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#85-98" title="Go to source code">buildValidations</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Implementation of</h4> <div class="list"><code><a href="class-DSchoenbauer.Orm.Builder.BuilderInterface.html#_buildValidations">DSchoenbauer\Orm\Builder\BuilderInterface::buildValidations()</a></code></div> </div> </div></td> </tr> <tr data-order="getAdapter" id="_getAdapter"> <td class="attributes"><code> public PDO </code> </td> <td class="name"><div> <a class="anchor" href="#_getAdapter">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#100-106" title="Go to source code">getAdapter</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Returns</h4> <div class="list"> PDO </div> </div> </div></td> </tr> <tr data-order="setAdapter" id="_setAdapter"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_setAdapter">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#108-116" title="Go to source code">setAdapter</a>( <span>PDO <var>$adapter</var></span> )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$adapter</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> <br>$this </div> </div> </div></td> </tr> <tr data-order="getModel" id="_getModel"> <td class="attributes"><code> public <code><a href="class-DSchoenbauer.Orm.CrudModel.html">DSchoenbauer\Orm\CrudModel</a></code> </code> </td> <td class="name"><div> <a class="anchor" href="#_getModel">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#118-124" title="Go to source code">getModel</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Returns</h4> <div class="list"> <code><a href="class-DSchoenbauer.Orm.CrudModel.html">DSchoenbauer\Orm\CrudModel</a></code> </div> </div> </div></td> </tr> <tr data-order="setModel" id="_setModel"> <td class="attributes"><code> public </code> </td> <td class="name"><div> <a class="anchor" href="#_setModel">#</a> <code><a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#126-134" title="Go to source code">setModel</a>( <span><code><a href="class-DSchoenbauer.Orm.CrudModel.html">DSchoenbauer\Orm\CrudModel</a></code> <var>$model</var></span> )</code> <div class="description short"> </div> <div class="description detailed hidden"> <h4>Parameters</h4> <div class="list"><dl> <dt><var>$model</var></dt> <dd></dd> </dl></div> <h4>Returns</h4> <div class="list"> <br>$this </div> </div> </div></td> </tr> </table> <table class="summary properties" id="properties"> <caption>Properties summary</caption> <tr data-order="adapter" id="$adapter"> <td class="attributes"><code> protected PDO </code></td> <td class="name"> <a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#51-54" title="Go to source code"><var>$adapter</var></a> <div class="description short"> </div> <div class="description detailed hidden"> </div> </td> <td class="value"> <div> <a href="#$adapter" class="anchor">#</a> <code></code> </div> </td> </tr> <tr data-order="model" id="$model"> <td class="attributes"><code> protected <code><a href="class-DSchoenbauer.Orm.CrudModel.html">DSchoenbauer\Orm\CrudModel</a></code> </code></td> <td class="name"> <a href="source-class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html#56-59" title="Go to source code"><var>$model</var></a> <div class="description short"> </div> <div class="description detailed hidden"> </div> </td> <td class="value"> <div> <a href="#$model" class="anchor">#</a> <code></code> </div> </td> </tr> </table> </div> <div id="footer"> API documentation generated by <a href="http://apigen.org">ApiGen</a> </div> </div> </div> <script src="resources/combined.js"></script> <script src="elementlist.js"></script> </body> </html>
dschoenbauer/orm
docs/class-DSchoenbauer.Orm.Builder.PdoModelBuilder.html
HTML
mit
11,323
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Cats in the Bag design - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492274208489&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=9203&V_SEARCH.docsStart=9202&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=9201&amp;V_DOCUMENT.docRank=9202&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492274215264&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567111252&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=9203&amp;V_DOCUMENT.docRank=9204&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492274215264&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567018363&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Cats in the Bag design </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Cats in the Bag design</p> <h2 class="h5 mrgn-bttm-0">Alternate Name:</h2> <p class="mrgn-bttm-0">design le Chat est dans l&#39;Sac</p> <p class="mrgn-bttm-0">design le Chat est dans l&#39;Sac</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.catsinthebag.com" target="_blank" title="Website URL">http://www.catsinthebag.com</a></p> <p><a href="mailto:info@catsinthebag.com" title="info@catsinthebag.com">info@catsinthebag.com</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> 7-48 Academy Rd<br/> WESTMOUNT, Quebec<br/> H3Z 1N6 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 7-48 Academy Rd<br/> WESTMOUNT, Quebec<br/> H3Z 1N6 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (438) 838-1145 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: </p> </div> <div class="col-md-3 mrgn-tp-md"> <h2 class="wb-inv">Logo</h2> <img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=234567011777&amp;graphFileName=CITB_LOGO_FR_ENG.png&amp;applicationCode=AP&amp;lang=eng" alt="Logo" /> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> <h2 class="wb-inv">Company Profile</h2> <br> We provide logo, brochure, trade show, website, social media marketing, personal and/or business branding. We will implement a creative strategy and complete brand image that will make your customers fall in love with your business offerings. <br> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Jennifer R. Cook </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Owner </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Administrative Services. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (438) 838-1145 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> info@catsinthebag.com </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 1992 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> Yes &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541430 - Graphic Design Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $1 to $99,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 1&nbsp; </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Strategic Design<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Strategic Graphic design involves research, complete understanding of your customers, your competitors, your short, medium and long term goals and objectives. In order to implement a strategic creative solution we MUST understand every aspect of your product, business or service. When we do this provides the fuel that makes your customers fall in love with your business, products, services and culture! <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Strategic Creative Visual Communication design<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> We provide logo, brochure, trade show, website, social media marketing, personal and business branding. We help you to achieve a complete brand image! We will implement a creative strategy that your clients and customers will fall in love with. <br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <h3 class="page-header"> Technology profile </h3> <section class="container-fluid"> We provide strategic graphic design and social media solutions for all types of business. You might require a logo, brochure, trade show, website, social media marketing, packaging design, personal and/or business branding. We help you achieve a complete brand image! We will implement a creative strategy that your clients and customers will fall in love with. </section> <!-- Market Profile --> <h3 class="page-header"> Market profile </h3> <section class="container-fluid"> <h4> Alliances: </h4> <ul> <li>Sales/Marketing</li> </ul> <h4> Strategic alliances: </h4> We can work with companies worldwide, helping each business reach their target audience with strategic creative solutions! From logo design to complete branding packages, packaging with specialization in Coffee and Tea marketing and design. We can also help businesses worldwide with effective strategic social media. <br> <h4> Industry sector market interests: </h4> <ul> <li>Agriculture</li> <li>Consumer Products</li> <li>Culture</li> <li>Information Technology and Telecommunications</li> <li>Manufacturing</li> <li>Service Industry</li> <li>Tourism</li> <li>Wholesale/Retail</li> <li>Food and Beverage Manufacturing</li> <li>Textile and Clothing</li> </ul> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Sector Information --> <h3 class="page-header"> Sector information </h3> <section class="container-fluid"> <h4> Unique applications: </h4> We use research to fuel the creative solution. Research and a great creative strategy will provide your business with results. We work in all industries and all business sectors providing successful results. Including creative social media packages. <h4> Key / Major clients: </h4> Pizza Hotline - Winnipeg <br> Lochan Tea - India <br> The Cuckoos Nest - Ottawa <br> Amik - Winnipeg <br> Manitoba First Nations Addictions Committee - Winnipeg <br> Castle Marketing - Vancouver <br> Benita Stafford-Smith - Oman, Muscat <br> FrogskinU - Calgary <br> <h4> Success stories: </h4> Many companies have come to us for complete branding services. Complete visual communication solutions for our diverse worldwide customer base helping them become visible to their customers. <h4> Testimonial: </h4> &quot;Jennifer has redesigned my website from start to finish. She wrote the copy and designed the site. An amazing ability to translate the work I do into a compelling, concise and easy to read message, visually and with the written word. Thanks Jennifer for your creativity, your dedication and the great results!&quot; <br> Benita Stafford-Smith <br> Coach Expert at Takatuf <br> <br> &quot;Jennifer is a fabulous graphic designer who thinks outside of the box. Her work is memorable and has always resulted in a great response from the target market. Best of all, she is always on time and budget.&quot; <br> Leo Sawicki - Achieving Balance <br> <br> &quot;Jennifer did a spectacular job creating the brand identity for our retail business - logo, tagline, print advertising and website. She is a very talented and creative graphic artist who truly understands both the art and science of branding and advertising. When Jennifer commits to a project she is all-in. She will take the time to understand you and your business/organization and she will produce results that are aligned with your end goals. Working with Jennifer is an experience in itself because, not only is she the best at what she does, she is also always a lot of fun!&quot; <br> <br> - Sab Ventola, The Cuckoo&#39;s Nest, June 14th 2015 <br> <br> <h4> International capital projects: </h4> The internet provides a portal of opportunity for any client world wide to work with our strategic graphic design services. We work with clients all over the world. A new area of expertise is with coffee and tea for social media. Please feel free to connect with us Jennifer R. Cook on LinkedIn! </section> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Jennifer R. Cook </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> Owner </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Administrative Services. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (438) 838-1145 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> info@catsinthebag.com </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 1992 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> Yes &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 541430 - Graphic Design Services </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $1 to $99,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 1&nbsp; </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Strategic Design<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Strategic Graphic design involves research, complete understanding of your customers, your competitors, your short, medium and long term goals and objectives. In order to implement a strategic creative solution we MUST understand every aspect of your product, business or service. When we do this provides the fuel that makes your customers fall in love with your business, products, services and culture! <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Strategic Creative Visual Communication design<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> We provide logo, brochure, trade show, website, social media marketing, personal and business branding. We help you to achieve a complete brand image! We will implement a creative strategy that your clients and customers will fall in love with. <br> <br> </div> </div> </section> </details> <details id="details-panel5"> <summary> Technology </summary> <h2 class="wb-invisible"> Technology profile </h2> <section class="container-fluid"> We provide strategic graphic design and social media solutions for all types of business. You might require a logo, brochure, trade show, website, social media marketing, packaging design, personal and/or business branding. We help you achieve a complete brand image! We will implement a creative strategy that your clients and customers will fall in love with. </section> </details> <details id="details-panel6"> <summary> Market </summary> <h2 class="wb-invisible"> Market profile </h2> <section class="container-fluid"> <h4> Alliances: </h4> <ul> <li>Sales/Marketing</li> </ul> <h4> Strategic alliances: </h4> We can work with companies worldwide, helping each business reach their target audience with strategic creative solutions! From logo design to complete branding packages, packaging with specialization in Coffee and Tea marketing and design. We can also help businesses worldwide with effective strategic social media. <br> <h4> Industry sector market interests: </h4> <ul> <li>Agriculture</li> <li>Consumer Products</li> <li>Culture</li> <li>Information Technology and Telecommunications</li> <li>Manufacturing</li> <li>Service Industry</li> <li>Tourism</li> <li>Wholesale/Retail</li> <li>Food and Beverage Manufacturing</li> <li>Textile and Clothing</li> </ul> </section> </details> <details id="details-panel7"> <summary> Sector </summary> <h2 class="wb-invisible"> Sector information </h2> <section class="container-fluid"> <h4> Unique applications: </h4> We use research to fuel the creative solution. Research and a great creative strategy will provide your business with results. We work in all industries and all business sectors providing successful results. Including creative social media packages. <h4> Key / Major clients: </h4> Pizza Hotline - Winnipeg <br> Lochan Tea - India <br> The Cuckoos Nest - Ottawa <br> Amik - Winnipeg <br> Manitoba First Nations Addictions Committee - Winnipeg <br> Castle Marketing - Vancouver <br> Benita Stafford-Smith - Oman, Muscat <br> FrogskinU - Calgary <br> <h4> Success stories: </h4> Many companies have come to us for complete branding services. Complete visual communication solutions for our diverse worldwide customer base helping them become visible to their customers. <h4> Testimonial: </h4> &quot;Jennifer has redesigned my website from start to finish. She wrote the copy and designed the site. An amazing ability to translate the work I do into a compelling, concise and easy to read message, visually and with the written word. Thanks Jennifer for your creativity, your dedication and the great results!&quot; <br> Benita Stafford-Smith <br> Coach Expert at Takatuf <br> <br> &quot;Jennifer is a fabulous graphic designer who thinks outside of the box. Her work is memorable and has always resulted in a great response from the target market. Best of all, she is always on time and budget.&quot; <br> Leo Sawicki - Achieving Balance <br> <br> &quot;Jennifer did a spectacular job creating the brand identity for our retail business - logo, tagline, print advertising and website. She is a very talented and creative graphic artist who truly understands both the art and science of branding and advertising. When Jennifer commits to a project she is all-in. She will take the time to understand you and your business/organization and she will produce results that are aligned with your end goals. Working with Jennifer is an experience in itself because, not only is she the best at what she does, she is also always a lot of fun!&quot; <br> <br> - Sab Ventola, The Cuckoo&#39;s Nest, June 14th 2015 <br> <br> <h4> International capital projects: </h4> The internet provides a portal of opportunity for any client world wide to work with our strategic graphic design services. We work with clients all over the world. A new area of expertise is with coffee and tea for social media. Please feel free to connect with us Jennifer R. Cook on LinkedIn! </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2016-08-11 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
GoC-Spending/data-corporations
html/234567011777.html
HTML
mit
55,950
@(media: Media) @import helper._ @import models._ <!-- Start confirmDeleteMediaModal --> <div class="modal fade" id="confirmDeleteMedia@media.id" tabindex="-1" role="dialog" aria-labelledby="confirmModalLabel" aria-hidden="true"> @views.html.Media.snippets.deleteMediaModal(media) </div> <!-- End confirmDeleteMediaModal --> <div class="dropdown"> <a class="dropdown-toggle" id="dropdownMenu" data-toggle="dropdown"> <span class="glyphicon glyphicon-chevron-down"></span> </a> <ul class="dropdown-menu nav-pills" role="menu" aria-labelledby="dropdownMenu"> <li><a href="@routes.MediaController.view(media.id)" data-toggle="modal"> <span class="glyphicon glyphicon-download"></span><br>Herunterladen </a></li> @if(Secured.deleteMedia(media)) { <li><a href="#confirmDeleteMedia@media.id" data-toggle="modal"> <span class="glyphicon glyphicon-trash"></span><br>Löschen </a></li> } </ul> </div>
roechi/htwplus_restAPI
app/views/Media/snippets/optionMenu.scala.html
HTML
mit
1,000
<!DOCTYPE HTML> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (14) on Tue Dec 14 18:57:40 EST 2021 --> <title>Uses of Class com.brettonw.bedrock.service.EventFilterResult (Service Base 1.6.9 API)</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="dc.created" content="2021-12-14"> <meta name="description" content="use: package: com.brettonw.bedrock.service, enum: EventFilterResult"> <meta name="generator" content="javadoc/ClassUseWriter"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../../../../../script-dir/jquery-ui.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> <script type="text/javascript" src="../../../../../script-dir/jszip/dist/jszip.min.js"></script> <script type="text/javascript" src="../../../../../script-dir/jszip-utils/dist/jszip-utils.min.js"></script> <!--[if IE]> <script type="text/javascript" src="../../../../../script-dir/jszip-utils/dist/jszip-utils-ie.min.js"></script> <![endif]--> <script type="text/javascript" src="../../../../../script-dir/jquery-3.4.1.js"></script> <script type="text/javascript" src="../../../../../script-dir/jquery-ui.js"></script> </head> <body class="class-use"> <script type="text/javascript">var pathtoroot = "../../../../../"; loadScripts(document, 'script');</script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <div class="flexBox"> <header role="banner" class="flexHeader"> <nav role="navigation"> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a id="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../package-summary.html">Package</a></li> <li><a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">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"> <div class="navListSearch"><label for="search">SEARCH:</label> <input type="text" id="search" value="search" disabled="disabled"> <input type="reset" id="reset" value="reset" disabled="disabled"> </div> </div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="skipNav"><a id="skip.navbar.top"> <!-- --> </a></div> </nav> </header> <div class="flexContent"> <main role="main"> <div class="header"> <h1 title="Uses of Class com.brettonw.bedrock.service.EventFilterResult" class="title">Uses of Class<br>com.brettonw.bedrock.service.EventFilterResult</h1> </div> <div class="classUseContainer"> <section class="classUses"> <ul class="blockList"> <li class="blockList"> <section class="detail"><a id="com.brettonw.bedrock.service"> <!-- --> </a> <h2>Uses of <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a> in <a href="../package-summary.html">com.brettonw.bedrock.service</a></h2> <div class="useSummary"> <table> <caption><span>Methods in <a href="../package-summary.html">com.brettonw.bedrock.service</a> that return <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></span><span class="tabEnd">&nbsp;</span></caption> <thead> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colSecond" scope="col">Method</th> <th class="colLast" scope="col">Description</th> </tr> </thead> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilter.</span><code><span class="memberNameLink"><a href="../EventFilter.html#checkAllList(com.brettonw.bedrock.service.Event,com.brettonw.bedrock.bag.BagArray)">checkAllList</a></span>&#8203;(<a href="../Event.html" title="class in com.brettonw.bedrock.service">Event</a>&nbsp;event, <a href="https://bedrock.brettonw.com/libraries/bag/apidocs/com/brettonw/bedrock/bag/BagArray.html?is-external=true" title="class or interface in com.brettonw.bedrock.bag" class="externalLink">BagArray</a>&nbsp;allList)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilter.</span><code><span class="memberNameLink"><a href="../EventFilter.html#checkAnyList(com.brettonw.bedrock.service.Event,com.brettonw.bedrock.bag.BagArray)">checkAnyList</a></span>&#8203;(<a href="../Event.html" title="class in com.brettonw.bedrock.service">Event</a>&nbsp;event, <a href="https://bedrock.brettonw.com/libraries/bag/apidocs/com/brettonw/bedrock/bag/BagArray.html?is-external=true" title="class or interface in com.brettonw.bedrock.bag" class="externalLink">BagArray</a>&nbsp;anyList)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilter.</span><code><span class="memberNameLink"><a href="../EventFilter.html#checkIpAddressList(com.brettonw.bedrock.service.Event,com.brettonw.bedrock.bag.BagArray)">checkIpAddressList</a></span>&#8203;(<a href="../Event.html" title="class in com.brettonw.bedrock.service">Event</a>&nbsp;event, <a href="https://bedrock.brettonw.com/libraries/bag/apidocs/com/brettonw/bedrock/bag/BagArray.html?is-external=true" title="class or interface in com.brettonw.bedrock.bag" class="externalLink">BagArray</a>&nbsp;ipAddressList)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilter.</span><code><span class="memberNameLink"><a href="../EventFilter.html#checkSecretList(com.brettonw.bedrock.service.Event,com.brettonw.bedrock.bag.BagArray)">checkSecretList</a></span>&#8203;(<a href="../Event.html" title="class in com.brettonw.bedrock.service">Event</a>&nbsp;event, <a href="https://bedrock.brettonw.com/libraries/bag/apidocs/com/brettonw/bedrock/bag/BagArray.html?is-external=true" title="class or interface in com.brettonw.bedrock.bag" class="externalLink">BagArray</a>&nbsp;secretList)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilter.</span><code><span class="memberNameLink"><a href="../EventFilter.html#filterEvent(com.brettonw.bedrock.service.Event,com.brettonw.bedrock.bag.BagObject)">filterEvent</a></span>&#8203;(<a href="../Event.html" title="class in com.brettonw.bedrock.service">Event</a>&nbsp;event, <a href="https://bedrock.brettonw.com/libraries/bag/apidocs/com/brettonw/bedrock/bag/BagObject.html?is-external=true" title="class or interface in com.brettonw.bedrock.bag" class="externalLink">BagObject</a>&nbsp;filterConfiguration)</code></th> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a></code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilterResult.</span><code><span class="memberNameLink"><a href="../EventFilterResult.html#valueOf(java.lang.String)">valueOf</a></span>&#8203;(<a href="https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/String.html?is-external=true" title="class or interface in java.lang" class="externalLink">String</a>&nbsp;name)</code></th> <td class="colLast"> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">EventFilterResult</a>[]</code></td> <th class="colSecond" scope="row"><span class="typeNameLabel">EventFilterResult.</span><code><span class="memberNameLink"><a href="../EventFilterResult.html#values()">values</a></span>()</code></th> <td class="colLast"> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> </div> </section> </li> </ul> </section> </div> </main> <footer role="contentinfo"> <nav role="navigation"> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a id="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a id="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../package-summary.html">Package</a></li> <li><a href="../EventFilterResult.html" title="enum in com.brettonw.bedrock.service">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> <a id="skip.navbar.bottom"> <!-- --> </a> <!-- ======== END OF BOTTOM NAVBAR ======= --> </nav> <p class="legalCopy"><small>Copyright &#169; 2021. All rights reserved.</small></p> </footer> </div> </div> </body> </html>
brettonw/Bedrock
applications/bedrock-site/src/main/webapp/dist/1.6.9/docs/service-base/com/brettonw/bedrock/service/class-use/EventFilterResult.html
HTML
mit
10,117
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>jQuery Mobile Docs - Content Themes</title> <link rel="stylesheet" href="../../css/themes/default/jquery.mobile.css" /> <link rel="stylesheet" href="../_assets/css/jqm-docs.css"/> <script src="../../js/jquery.js"></script> <script src="../../docs/_assets/js/jqm-docs.js"></script> <script src="../../js/"></script> </head> <body> <div data-role="page" class="type-interior"> <div data-role="header" data-theme="f"> <h1>Theming content</h1> <a href="../../" data-icon="home" data-iconpos="notext" data-direction="reverse">Home</a> <a href="../nav.html" data-icon="search" data-iconpos="notext" data-rel="dialog" data-transition="fade">Search</a> </div><!-- /header --> <div data-role="content"> <div class="content-primary"> <h2>Theming the content area</h2> <p>The main content area of a page (container with the <code> data-role="content"</code> attribute) should be themed by adding the <code> data-theme</code> attribute to the <code> data-role="page"</code> container to ensure that the background colors are applied to the full page, regardless of the content length. (If you add the <code> data-theme</code> attribute to the content container, the background color will stop after the content. So there may be a gap in color between the content and fixed footer.)</p> <p>Additionally, the content area of a collapsible can be themed to match the theme of the collapsible header using the <code>data-content-theme</code> attribute.</p> <code> &lt;div data-role=&quot;page&quot; <strong> data-theme=&quot;a&quot;</strong> <strong>data-content-theme=&quot;a&quot;</strong>&gt; </code> <h2>Theming collapsible blocks</h2> <p>To set the color of the collapsible header, add the <code> data-theme</code> attribute to the collapsible container. The icon and body are not currently themable through data attributes, but can be styled directly with custom css.</p> <code> &lt;div data-role=&quot;collapsible&quot; data-collapsed=&quot;true&quot; <strong> data-theme=&quot;a&quot;&gt;</strong> </code> <h2>Themed examples</h2> <p>Swatch <strong>"a"</strong> on content &amp; collapsible</p> <div class="ui-body ui-body-a"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="a"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="a" data-content-theme="a"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p>Swatch <strong>"b"</strong> on content &amp; collapsible</p> <div class="ui-body ui-body-b"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="b"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="b" data-content-theme="b"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p>Swatch <strong>"c"</strong> on content &amp; collapsible</p> <div class="ui-body ui-body-c"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="c"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="c" data-content-theme="c"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p>Swatch <strong>"d"</strong> on content &amp; collapsible</p> <div class="ui-body ui-body-d"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="d"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="d" data-content-theme="d"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> <p>Swatch <strong>"e"</strong> on content &amp; collapsible</p> <div class="ui-body ui-body-e"> <h1>H1 Heading</h1> <p>This is a paragraph that contains <strong>strong</strong>, <em>emphasized</em> and <a href="index.html">linked</a> text. Here is more text so you can see how HTML markup works in content. Here is more text so you can see how HTML markup works in content.</p> <div data-role="collapsible" data-collapsed="true" data-theme="e"> <h3>I'm a themed collapsible</h3> <p>I have <code> data-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div><!-- /collapsible --> <div data-role="collapsible" data-theme="e" data-content-theme="e"> <h3>I'm a themed collapsible with a themed content</h3> <p>I have <code> data-content-theme</code> attribute set manually on my container to set the color to match the content block I'm in. </p> </div> </div><!-- /themed container --> </div><!--/content-primary --> <div class="content-secondary"> <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d"> <h3>More in this section</h3> <ul data-role="listview" data-theme="c" data-dividertheme="d"> <li data-role="list-divider">Content Formatting</li> <li><a href="content-html.html">Basic HTML styles</a></li> <li><a href="content-grids.html">Layout grids (columns)</a></li> <li><a href="content-collapsible.html">Collapsible content blocks</a></li> <li><a href="content-collapsible-set.html">Collapsible sets (accordions)</a></li> <li data-theme="a"><a href="content-themes.html">Theming content</a></li> </ul> </div> </div> </div><!-- /content --> <div data-role="footer" class="footer-docs" data-theme="c"> <p>&copy; 2011-12 The jQuery Foundation</p> </div> </div><!-- /page --> </body> </html>
trojanspike/jquery-mobile
docs/content/content-themes.html
HTML
mit
8,062
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ru"> <head> <!-- Generated by javadoc (1.8.0_05) on Tue May 05 22:17:05 FET 2015 --> <title>O-Index</title> <meta name="date" content="2015-05-05"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <script type="text/javascript" src="../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="O-Index"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-4.html">Prev Letter</a></li> <li><a href="index-6.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-5.html" target="_top">Frames</a></li> <li><a href="index-5.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="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">F</a>&nbsp;<a href="index-3.html">G</a>&nbsp;<a href="index-4.html">M</a>&nbsp;<a href="index-5.html">O</a>&nbsp;<a href="index-6.html">R</a>&nbsp;<a href="index-7.html">S</a>&nbsp;<a href="index-8.html">T</a>&nbsp;<a href="index-9.html">V</a>&nbsp;<a name="I:O"> <!-- --> </a> <h2 class="title">O</h2> <dl> <dt><span class="memberNameLink"><a href="../ru/simplefuzzy/FuzzyRule.html#out">out</a></span> - Variable in class ru.simplefuzzy.<a href="../ru/simplefuzzy/FuzzyRule.html" title="class in ru.simplefuzzy">FuzzyRule</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../ru/simplefuzzy/Fuzzy.html#output--">output()</a></span> - Method in class ru.simplefuzzy.<a href="../ru/simplefuzzy/Fuzzy.html" title="class in ru.simplefuzzy">Fuzzy</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../ru/simplefuzzy/FuzzyRule.html#outTerm">outTerm</a></span> - Variable in class ru.simplefuzzy.<a href="../ru/simplefuzzy/FuzzyRule.html" title="class in ru.simplefuzzy">FuzzyRule</a></dt> <dd>&nbsp;</dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">F</a>&nbsp;<a href="index-3.html">G</a>&nbsp;<a href="index-4.html">M</a>&nbsp;<a href="index-5.html">O</a>&nbsp;<a href="index-6.html">R</a>&nbsp;<a href="index-7.html">S</a>&nbsp;<a href="index-8.html">T</a>&nbsp;<a href="index-9.html">V</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-4.html">Prev Letter</a></li> <li><a href="index-6.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-5.html" target="_top">Frames</a></li> <li><a href="index-5.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>
boggad/simple-fuzzy
javadoc/index-files/index-5.html
HTML
mit
4,976
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>光学图谱,基因组装,结构变异,菌株区分,单倍体划分 | 华人基因组学在线沙龙</title> <link rel="stylesheet" href="/css/style.css" /> <link rel="stylesheet" href="/css/fonts.css" /> <link href="//cdn.bootcss.com/highlight.js/9.12.0/styles/github.min.css" rel="stylesheet"> <link href="/css/custom.css" rel="stylesheet"> <script async src="//yihui.name/js/no-highlight.js"></script> <script async src="/js/pangu.js"></script> </head> <body> <nav class="header"> <div class="banner-wrapper"> <div class="banner"> <div class="banner-image"><a href="/"> <picture> <source media="(min-width: 715px)" srcset="/img/new-logo-wide2020.png"><source media="(max-width: 380px)" srcset="/img/new-logo-wide2020.png"> <img src="/img/logo.png" alt="CGM标志"> </picture> </a></div> <ul class="menu-top"> <li><a href="/"><span data-hover="首页">首页</span></a></li> <li><a href="/coming_cn/"><span data-hover="中国区预告">中国区预告</span></a></li> <li><a href="/coming_us/"><span data-hover="北美区预告">北美区预告</span></a></li> <li><a href="/coming_eu/"><span data-hover="欧洲区预告">欧洲区预告</span></a></li> <li><a href="/tags/talks/"><span data-hover="往期活动">往期活动</span></a></li> <li><a href="/wechat/"><span data-hover="公众号">公众号</span></a></li> <li><a href="/cgmec/"><span data-hover="组织管理">组织管理</span></a></li> <li><a href="/business/"><span data-hover="企业沙龙">企业沙龙</span></a></li> <li><a href="/timeline/"><span data-hover="大事记">大事记</span></a></li> <li><a href="/subscribe/"><span data-hover="加入我们">加入我们</span></a></li> <li><a href="/archives/"><span data-hover="讨论列表">讨论列表</span></a></li> </ul> </div> </div> <div class="head-meta"> <span>光学图谱,基因组装,结构变异,菌株区分,单倍体划分</span> <span>2021-03-14</span> <span>1 / 1</span> </div> </nav> <div class="container"> <main class="list"> <section class="article-list"> <div class="categories"> <a href="/categories/%E5%AD%A6%E6%9C%AF%E6%8A%A5%E5%91%8A">学术报告</a> </div> <h1><a href="/2020/07/cgm-%E7%AC%AC101%E6%9C%9F%E5%85%89%E5%AD%A6%E5%9B%BE%E8%B0%B1%E5%9C%A8%E5%9F%BA%E5%9B%A0%E7%BB%84%E5%AD%A6%E4%B8%AD%E7%9A%84%E5%BA%94%E7%94%A8/">CGM 第101期:光学图谱在基因组学中的应用</a></h1> <div class="date-author"> <span class="date">2020-07-01</span> </div> <div class="summary"> <a href="/2020/07/cgm-%E7%AC%AC101%E6%9C%9F%E5%85%89%E5%AD%A6%E5%9B%BE%E8%B0%B1%E5%9C%A8%E5%9F%BA%E5%9B%A0%E7%BB%84%E5%AD%A6%E4%B8%AD%E7%9A%84%E5%BA%94%E7%94%A8/"> 光学图谱作为DNA测序技术的一个重要补充,在基因组学中发挥重要的作用。在近30年的发展过程中,光学图谱已被应用到微生物以及高等动、植物的基因组研究中。大体上,光学图谱多应用于基因组组装,大范围结构变异挖掘以及菌株区分。随着技术的进一步发展,以及算法的不断提升,光学图谱的应用仍具有重要前景。在此次报告中,我将与大家分享如何利用光学图谱来提升基因组学相关研究吧。 </a> </div> </section> </main> <nav> </nav> </div> <script async src="//yihui.name/js/center-img.js"></script> <footer> <script src="/js/article-titles.js"></script> <div class="footer"> <ul class="menu"> <li><a href="/categories/%E4%BA%BA%E7%89%A9%E4%B8%93%E8%AE%BF/"><span data-hover="人物专访">人物专访</span></a></li> <li><a href="/categories/%E4%B8%93%E9%A2%98%E8%AE%A8%E8%AE%BA/"><span data-hover="专题讨论">专题讨论</span></a></li> <li><a href="/categories/%E5%AD%A6%E6%9C%AF%E6%8A%A5%E5%91%8A/"><span data-hover="学术报告">学术报告</span></a></li> <li><a href="/tags/"><span data-hover="关键词">关键词</span></a></li> <li><a href="/categories/%E4%BC%81%E4%B8%9A%E7%BE%A4/"><span data-hover="企业群">企业群</span></a></li> <li><a href="/search/"><span data-hover="搜索CGM">搜索CGM</span></a></li> <li><a href="/calendar/"><span data-hover="活动日历">活动日历</span></a></li> <li><a href="/sponsor/"><span data-hover="赞助伙伴">赞助伙伴</span></a></li> <li><a href="/jobinfo/"><span data-hover="工作信息">工作信息</span></a></li> <li><a href="/"><span data-hover="关于我们">关于我们</span></a></li> <li><a href="/knowledgebase/"><span data-hover="知识库">知识库</span></a></li> </ul> <div class="copyright">© 华人基因组学在线沙龙 2021 | <a href="https://github.com/cgmonline">Github</a> | <a href="https://www.youtube.com/channel/UCk4tsPZOzGkP2IaU4YvUG_g">YouTube</a></div> </div> </footer> <script type="application/javascript"> var doNotTrack = false; if (!doNotTrack) { (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-48206713-4', 'auto'); ga('send', 'pageview'); } </script> </body> </html>
cgmonline/cgmonline
docs/tags/光学图谱基因组装结构变异菌株区分单倍体划分/index.html
HTML
mit
5,666
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Publications from IMS Metagroup - Metamaterial group at Institute of Material Science, Vietnam</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="IMS Metamaterial Group is a part of Laboratory of Superconductivity and Magnetism, Institute of Materials Science, Vietnam Academy of Science and Technology. Our research group activities focus mainly on investigating the electromagnetism of metamaterials operating at microwave and THz frequencies. Research at IMS metamaterial group is based on both experimental and theoretical approaches, covering a wide range of advanced metamaterial designs and properties. The researchers at IMS metamaterial group is working in a strong collaboration with domestic and international experts in the field of optics, photonics, and metamaterials."> <meta name="author" content="Nguyen Van Dung"> <link rel="canonical" href="http://localhost:4000/publications.html"> <link rel="alternate" type="application/rss+xml" title="RSS Feed for Metamaterial group at Institute of Material Science, Vietnam" href="/feed.xml" /> <meta name="msvalidate.01" content="AAF1839A763BCBD427E1038B41C34028" /> <!-- Custom CSS --> <link rel="stylesheet" href="/dist/css/metagroup.css?201901281627" type="text/css"> <script type="text/javascript" src="/dist/scripts/jquery-3.1.1.min.js?201901281627"></script> <script type="text/javascript" src="/dist/scripts/metagroup.js?201901281627"></script> <script src="https://cdn.jsdelivr.net/jquery.glide/1.0.6/jquery.glide.min.js" charset="utf-8"></script> <!-- Open Graph --> <!-- From: https://github.com/mmistakes/hpstr-jekyll-theme/blob/master/_includes/head.html --> <meta property="og:locale" content="en_US"> <meta property="og:type" content="article"> <meta property="og:title" content="Publications from IMS Metagroup"> <meta property="og:description" content="IMS Metamaterial Group is a part of Laboratory of Superconductivity and Magnetism, Institute of Materials Science, Vietnam Academy of Science and Technology. Our research group activities focus mainly on investigating the electromagnetism of metamaterials operating at microwave and THz frequencies. Research at IMS metamaterial group is based on both experimental and theoretical approaches, covering a wide range of advanced metamaterial designs and properties. The researchers at IMS metamaterial group is working in a strong collaboration with domestic and international experts in the field of optics, photonics, and metamaterials."> <meta property="og:url" content="http://localhost:4000/publications.html"> <meta property="og:site_name" content="Metamaterial group at Institute of Material Science, Vietnam"> </head> <body> <div class="pusher"> <!-- Sidebar Menu --> <div class="ui vertical inverted sidebar menu"> <a href="/" class="item"><i class="home icon"></i>Home</a> <a href="/members.html" class="item"><i class="users icon"></i>Members</a> <a href="/research.html" class="item"><i class="student icon"></i>Research</a> <a href="/publications.html" class="item"><i class="file pdf outline icon"></i>Publications</a> <a href="/collaboration.html" class="item"><i class="translate icon"></i>Collaboration</a> <a href="/news.html" class="item"><i class="heartbeat icon"></i>Activities</a> <a href="/contact.html" class="item"><i class="doctor icon"></i>Contact</a> </div> <div class="ui large secondary pointing menu"> <a class="toc item"> <i class="sidebar icon"></i> </a> <div class="ui container"> <a href="/" class="header item"> METAGROUP IMS </a> <div class="right menu"> <a href="/" class="item"><i class="home icon"></i>Home</a> <a href="/members.html" class="item"><i class="users icon"></i>Members</a> <a href="/research.html" class="item"><i class="student icon"></i>Research</a> <a href="/publications.html" class="item"><i class="file pdf outline icon"></i>Publications</a> <a href="/collaboration.html" class="item"><i class="translate icon"></i>Collaboration</a> <a href="/news.html" class="item"><i class="heartbeat icon"></i>Activities</a> <a href="/contact.html" class="item"><i class="doctor icon"></i>Contact</a> </div> </div> </div> <div class="ui vertical segment"> <div class="ui center aligned three column grid container"> <div class="row"> <div class="four wide computer only column"> <div class="ui red segment tall stacked aligned"> <div class="ui red header">Research Highlights</div> <div class="ui very relaxed divided list"> <div class="item"> <div class="content"> <a href="https://www.nature.com/articles/s41598-018-29896-4" class="ui"> <img src="https://media.springernature.com/lw900/springer-static/image/art%3A10.1038%2Fs41598-018-29896-4/MediaObjects/41598_2018_29896_Fig5_HTML.png" class="ui image"> Application of the basic-DMPA model for the smaller size and the higher operational frequency. </a> </div> </div> <div class="item"> <div class="content"> <!--<div class="ui header">Thermally tunable</div>--> <a href="http://www.nature.com/articles/srep32123" class="ui center"> <img src="/images/jopt2016.jpg" class="ui image"> Metamaterial-enhanced vibrational absorption spectroscopy for the detection of protein molecules </a> </div> </div> <div class="item"> <div class="content"> <a href="" class="ui"> <img src="/images/physicab.jpg" class="ui image"> Broadening the absorption bandwidth of metamaterial absorber by coupling three dipole resonances </a> </div> </div> <div class="item"> <div class="content"> <a href="" class="ui"> <img src="/images/hien.jpg" class="ui image"> Broadband negative refractive index obtained by plasmonic hybridization in metamaterials </a> </div> </div> </div> </div> </div> <div class="eight wide computer sixteen wide tablet sixteen wide mobile column left aligned"> <h1 id="publications">Publications</h1> <h3 style="text-align: center;"> <a href="#2018">2018</a>&nbsp;|&nbsp; <a href="#2017">2017</a>&nbsp;|&nbsp; <a href="#2016">2016</a>&nbsp;|&nbsp; <a href="#2015">2015 </a>|&nbsp; <a href="#2014">2014 </a>|&nbsp; <a href="#2013">2013</a>&nbsp;| <a href="#2012">2012</a> | <a href="#2011">2011</a>&nbsp;| <a href="#2010">2010</a>&nbsp;| <a href="#2009">2009</a>&nbsp;| <a href="#2008">2008</a>&nbsp;| <a href="#2007">2007</a>&nbsp;&nbsp;</h3> <h3 style="text-align: center;"><a href="#bf2007">Before 2007</a>&nbsp;| <a href="/publications/non-isi-papers.html">Non ISI papers</a></h3> <h3 style="text-align: center;"><a name="2018">2018</a></h3> <p><strong>Enhanced-bandwidth perfect absorption based on a hybrid metamaterial</strong><br /> D. H. Tiep, B. X. Khuyen, B. S. Tung, Y. J. Kim, J. S. Hwang, V. D. Lam, and Y. P. Lee <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Opt. Mat. Exp. </strong></font></em><strong>8 </strong>, 2751 (2018). DOI:10.1038/s41598-018-29896-4. </p> <p><strong>Ultra-subwavelength thickness for dual/triple-band metamaterial absorber at very low frequency</strong><br /> Bui Xuan Khuyen, Bui Son Tung, Young Ju Kim, Ji Sub Hwang, Ki Won Kim, Joo Yull Rhee, Vu Dinh Lam and YuongPak Lee <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Re. </strong></font></em><strong>8 </strong>, 11632 (2018). DOI:10.1038/s41598-018-29896-4. </p> <p><strong>Controlled Defect Based Ultra Broadband Full-sized Metamaterial Absorber</strong><br /> Manh Cuong Tran, Dinh Hai Le, Van Hai Pham, Hoang Tung Do, Dac Tuyen Le, Hong Luu Dang, Dinh Lam Vu <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Re. </strong></font></em><strong>8 </strong>, 9523 (2018). DOI:10.1038/s41598-018-27920-1. </p> <p><strong>Induced high-order resonance linewidth shrinking with multiple coupled resonators in silicon-organic hybrid slotted two-dimensional photonic crystals for reduced optical switching power in bistable devices</strong><br /> Thu Trang Hoang, Quang Minh Ngo, Dinh Lam Vu, Khai Q. Le, Truong Khang Nguyen Hieu P. T. Nguyen <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of Nanophotonics </strong></font></em><strong>12 </strong>, 016014 (2018). </p> <p><strong>Reversibly-propagational metamaterial absorber for sensing application</strong><br /> Dang Hong Luu, Bui Son Tung, Bui Xuan Khuyen, Le Dac Tuyen, Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Bui Son Tung, Bui Xuan Khuyen and Young Joon Yoo, YoungPak Lee and Vu Dinh Lam </strong></font></em> 1850044 (2018). </p> <p><strong>Multi-band absorption induced by near-field coupling and defects in metamaterial</strong><br /> Dang Hong Luu, Bui Son Tung, Bui Xuan Khuyen, Le Dac Tuyen, Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Applied Surface Science </strong></font></em><strong>427 </strong>, 649–655 (2018). </p> <p><strong>Effect of flattened surface morphology of anodized aluminum oxide templates on the magnetic properties of nanoporous Co/Pt and Co/Pd thin multilayered films</strong><br /> T.N. Anh Nguyen, J. Fedotova, J. Kasiuk, V. Bayev, O. Kupreeva, S.Lazarouk, D.H. Manh, Vu Dinh Lam, S. Chung, J. Åkerman, V. Altynov, A. Maximenko <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Applied Surface Science </strong></font></em><strong>427 </strong>, 649–655 (2018). </p> <h3 style="text-align: center;"><a name="2017">2017</a></h3> <p><strong>Polarization-independent, wide incident-angle and dual-band perfect absorption, based on near-field coupling in a symmetric metamaterial</strong><br /> Bui Son Tung, Bui Xuan Khuyen, Young Ju Kim, Vu Dinh Lam, Ki Won Kim, YoungPak Le <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Rep. </strong></font></em> 711507 (2017). </p> <p><strong>Miniaturization for ultrathin metamaterial perfect absorber in the VHF band</strong><br /> Bui Xuan Khuyen, Bui Son Tung, Young Joon Yoo, Young Ju Kim, Ki Won Kim, Liang-Yao Chen, Vu Dinh Lam, and YoungPak Lee <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Rep. </strong></font></em> <strong>7 </strong>, 45151 (2017). </p> <p><strong>Dual-band perfect absorption by breaking the symmetry of metamaterial structure</strong><br /> Le Dinh Hai, Vu Dinh Qui, Dinh Hong Tiep, Pham Hai, Trinh Thị Giang, Tran Manh Cuong, Bui Son Tung and Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of Electronic Materials </strong></font></em> <strong>46 </strong>, 3757 (2017). </p> <p><strong>Production of photonic nanojets by using pupil-masked 3D dielectric cuboid</strong><br /> Liyang Yue, Bing Yan, James N Monks, Zengbo Wang, Nguyen Thanh Tung, Vu Dinh Lam, Oleg Minin, and Igor Minin <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> J. Phys. D: Appl. Phys. </strong></font></em> <strong>5 </strong>, 0175102 (2017). </p> <p><strong>Broadening the absorption bandwidth of metamaterial absorber by coupling three dipole resonances</strong><br /> Vu Dinh Quy, Le Dinh Hai, Dinh Hong Tiep, Le Dac Tuyen and Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> accepted to be published in Journal of Physica B </strong></font></em> </p> <p><strong>Plasmonic Effect Enhanced Photocurrent in Nanostructured TiO2 Films Decorated with Gold Nanoparticles</strong><br /> Pham Duy Long, Dang Tran Chien, Nguyen Thanh Trung, Nguyen Si Hieu, Le Ha Chi, Vu Van Cat, Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of Electronic Materials </strong></font></em> <strong>46</strong>, 4448 (2017). </p> <p><strong>Broadband metamaterial perfect absorber obtained by coupling effect</strong><br /> Hong Luu Dang, Van Cuong Nguyen, Dinh Hai Le, Hoang Tung Nguyen, Manh Cuong Tran, Dac Tuyen Le, and Dinh Lam Vu <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of Nonlinear Optical Physics &amp; Materials </strong></font></em> <strong>26</strong>, 1750036 (2017). </p> <p><strong>Polarization-independent, wideincident-angle and dual-band perfect absorption, based on near-feld coupling in a symmetric metamaterial</strong><br /> Bui Son Tung, Bui Xuan Khuyen, Young Ju Kim, Vu Dinh Lam, Ki Won Kim, YoungPak Le <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Rep </strong></font></em> <strong>427</strong>, 11824 (2018). </p> <p><strong>Effect of flattened surface morphology of anodized aluminum oxide templates on the magnetic properties of nanoporous Co/Pt and Co/Pd thin multilayered films</strong><br /> T.N. Anh Nguyen, J. Fedotova, J. Kasiuk, V. Bayev, O. Kupreeva, S.Lazarouk, D.H. Manh, Vu Dinh Lam, S. Chung, J. Akerman, V. Altynov, A. Maximenko <br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Applied Surface Science </strong></font></em> <strong>7</strong>, 11507 (2017). </p> <h3 style="text-align: center;"><a name="2016">2016</a></h3> <p><strong>Ultrathin metamaterial-based perfect absorbers for VHF and THz bands</strong><br /> B.X. Khuyen, B.S. Tung, Y.J. Yoo, Y.J. Kim, V.D. Lam, Y.P. Lee <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Current Applied Physics </strong></font></em> <strong>16</strong>, 1009 (2016). </p> <p><strong>Metamaterial Perfect Absorber Using the Magnetic Resonance of Dielectric Inclusions</strong><br /> Nguyen Van Dung, Bui Son Tung, Bui Xuan Khuyen, Young Joon Yoo, YoungPak Lee and Vu Dinh Lam <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of the Korean Physical Society </strong></font></em> <strong>68</strong>, 1008 (2016). </p> <p><strong>Metamaterial-enhanced vibrational absorption spectroscopy for the detection of protein molecules</strong><br /> Tung S. Bui, Thang D. Dao, Luu H. Dang, Lam D. Vu, Akihiko Ohi, Toshihide Nabatame, YoungPak Lee, Tadaaki Nagao, and Chung V. Hoang <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Sci. Rep. </strong></font></em> <strong>6</strong>, 32123 (2016). </p> <p><strong>Broadband negative refractive index obtained by plasmonic hybridization in metamaterials</strong><br /> Hien T. Nguyen, Tung S. Bui, Sen Yan, Guy A. E. Vandenbosch, Peter Lievens, Lam D. Vu, and Ewald Janssens <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Appl. Phys. Lett. </strong></font></em> <strong>109 </strong>, 221902 (2016). </p> <p><strong>Structure and high photocatalytic activity of (N, Ta)-doped TiO2 nanoparticles</strong><br /> N. T. H. Le, T. D. Thanh, V.-T. Pham, T. L. Phan, V. D. Lam, D. H. Manh, T. X. Anh, T. K. C. Le, N. Thammajak, L. V. Hong, and S. C. Yu <br /><em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong> Journal of Applied Physics </strong></font></em> <strong>120 </strong>, 142110 (2017). </p> <p><strong>Symmetry-Breaking Metamaterials Enabling Broadband Negative Permeability</strong><br /> Pham Thi Trang, Bui Huu Nguyen, Dinh Hong Tiep, Le Minh Thuy, Vu Dinh Lam, Nguyen Thanh Tung<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Journal of Electronic Materials</strong></font></em> <strong>45</strong>, 2547 (2016) (<a href="http://link.springer.com/article/10.1007%2Fs11664-016-4410-z" target="_blank">Article</a>).</p> <p><strong>Experiments on localized wireless power transmission using a magneto-inductive wave two-dimensional metamaterial cavity</strong><br /> Thanh Son Pham, Aruna Kumara Ranaweera, Vu Dinh Lam, and Jong-Wook Lee<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Applied Physics Express</strong></font></em> <strong>9</strong>, 044101 (2016) (<a href="http://iopscience.iop.org/article/10.7567/APEX.9.044101/pdf" target="_blank">PDF</a>).</p> <p><strong>Cavity induced perfect absorption in metamaterials</strong><br /> Dang Hong Luu, Nguyen Hoang Tung, Nguyen Van Dung, Bui Son Tung, Le Dac Tuyen, Ngo Quang Minh and Vu Dinh Lam<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Adv. Nat. Sci: Nanosci. Nanotechnol.</strong></font></em> <strong>7</strong>, 015015 (2016) (<a href="http://iopscience.iop.org/article/10.1088/2043-6262/7/1/015015/pdf" target="_blank">PDF</a>).</p> <p><strong>Metamaterial perfect absorber using the magnetic resonance of dielectric inclusions</strong><br /> Nguyen Van Dung, Bui Son Tung, Bui Xuan Khuyen, Young Joon Yoo, YoungPak Lee , Joo Yull Rhee, Vu Dinh Lam<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Journal of the Korean Physical Society</strong></font></em> <strong>68</strong>, 1008 (2016) (<a href="http://link.springer.com/article/10.3938%2Fjkps.68.1008" target="_blank">Article</a>).</p> <p><strong>Light trapping and plasmonic enhancement in silicon, dye-sensitized and titania solar cells</strong><br /> Hong Nhung Tran, Van Hieu Nguyen, Bich Ha Nguyen and Dinh Lam Vu<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Adv. Nat. Sci.: Nanosci. Nanotechnol.</strong></font></em> <strong>7</strong>, 013001 (2016) (<a href="http://iopscience.iop.org/article/10.1088/2043-6262/7/1/013001/pdf" target="_blank">PDF</a>).</p> <p><strong>Application of Graphene Oxide-MnFe2O4 Magnetic Nanohybrids as Magnetically Separable Adsorbent for Highly Efficient Removal of Arsenic from Water</strong><br /> Pham Thi Lan Huong, Le Thanh Huy, Vu Ngoc Phan, Tran Quang Huy, Man Hoai Nam, Vu Dinh Lam, and Anh-Tuan Le<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Journal of Electronic Materials</strong></font></em> <strong>45</strong>, 2372 (2016) (<a href="http://link.springer.com/article/10.1007%2Fs11664-015-4314-3" target="_blank">Article</a>).</p> <p><strong>Influence of Ti Doping on the Critical Behavior and Magnetocaloric Effect in Disordered Ferromagnets La0.7Ba0.3Mn1-xTixO3</strong><br /> T.A. HO, M.H. PHAN, N.X. PHUC, V.D. LAM, T.L. PHAN, and S.C. YU<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Journal of Electronic Materials</strong></font></em> <strong>45</strong>, 2547 (2016) (<a href="http://link.springer.com/article/10.1007/s11664-016-4397-5" target="_blank">Article</a>).</p> <p><strong>Structure, magnetism, and dissociation energy of small bimetallic cobalt-chromium oxide cluster cations: A density-functional-theory study</strong><br /> Hung Tan Pham, Ngo Tuan Cuong, Nguyen Minh Tam, Vu Dinh Lam, Nguyen Thanh Tung<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Chemical Physics Letters </strong></font></em> <strong>643</strong>, 77 (2016) (<a href="http://www.sciencedirect.com/science/article/pii/S0009261415008660" target="_blank">Article</a>).</p> <p><strong>Switchable and tunable metamaterial absorber in THz frequencies</strong><br /> Dang Hong Luu, Nguyen Van Dung, Pham Hai, Trinh Thi Giang and Vu Dinh Lam<br /> <b style="color: rgb(128, 128, 0);"><i>Journal of Science: Advanced Materials and Devices, xxx (2016) </i></b>(INPRESS)<b style="color: rgb(128, 128, 0);"><i> </i></b>(<a href="http://www.sciencedirect.com/science/article/pii/S2468217916300181?np=y" target="_blank">DOI</a>) (<a href="http://www.sciencedirect.com/science/article/pii/S2468217916300181/pdfft?md5=4dee42eb582650afd3de52053566afa4&amp;pid=1-s2.0-S2468217916300181-main.pdf" target="_blank">PDF</a>)</p> <h3 style="text-align: center;"><a name="2015" style="background-color: rgb(255, 255, 255);">2015</a></h3> <p><strong>Multi-band near-perfect absorption via the resonance excitation of dark meta-molecules</strong><br /> Bui Son Tung, Bui Xuan Khuyen, Nguyen Van Dung, Vu Dinh Lam, Yong Hwan Kim, Hyeonsik Cheong, YoungPak Lee<br /> <em><font style="color: rgb(128, 128, 0); font-style: italic;"><strong>Optics Communications</strong></font></em> <strong>48</strong>, 375103 (2015).</p> <p><strong>Simple metamaterial structure enabling triple-band perfect absorber</strong><br /> Nguyen Van Dung; Bui Son Tung;Yoo YoungJoon; Kim Young Ju; Vu Dinh Lam; Rhee Joo; Kim KiWon; Kim Y. H.; and YoungPak Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Journal of Physics D: Applied Physics</font>&nbsp;48</strong>, 375103 (2015).</p> <p><strong>Taming electromagnetic metamaterials for isotropic perfect absorbers</strong><br /> Doan Tung Anh, Do Thanh Viet, Pham Thi Trang, Nguyen Manh Thang, Ho Quang Quy, Nguyen Van Hieu, Vu Dinh Lam, and Nguyen Thanh Tung<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">AIP Advances</font></strong>&nbsp;<strong>5</strong>, 007119 (2015).</p> <p><strong>Size-efficient metamaterial absorber at low frequencies: Design, fabrication, and characterization</strong><br /> Bui XuanKhuyen, Bui SonTung, Nguyen VanDung, Young JoonYoo, Young JuKim, Ki WonKim, Vu DinhLam, Jun GyuYang, and YoungPakLee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Journal of Applied Physics&nbsp;</font><strong>117</strong></strong>, 243105 (2015)</p> <p><strong><strong>Perfect and Broad Absorption by the Active Control of Electric Resonance in Metamaterial</strong></strong><br /> Nguyen Van Dung; Pham Van Tuong; Yoo YoungJoon; Kim YoungJoo; Bui Son Tung; Vu Dinh Lam; Rhee Joo; Kim KiWon; Kim Y. H.; Chen Liang-Yao and YoungPak Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Opt.</font>&nbsp;<strong>17</strong></strong>, 045105 (2015)</p> <p><strong><strong>Isotropic metamaterial absorbers using cut-wire-pair structures</strong></strong><br /> Do Thanh Viet, Nguyen Van Hieu, Vu Dinh Lam, and Nguyen Thanh Tung<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Appl. Phys. Express&nbsp;</font><strong>8</strong></strong>, 032001 (2015)</p> <p><strong><strong>Characterizations of a thermal tunable fishnet metamaterial at THz frequencies</strong></strong><br /> Nguyen Thi Hien, Ly Nguyen Le, Pham Thi Trang, Bui Son Tung, Ngo Duc Viet, Phan Thi Duyen, Nguyen Manh Thang, Do Thanh Viet, YoungPak Lee, Vu Dinh Lam, and Nguyen Thanh Tung<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Comp. Mat. Sci.</font>&nbsp;<strong>103</strong></strong>, 189 (2015).</p> <p><strong><strong>Local geometric and electronic structures and origin of magnetism in Co-doped BaTiO3 multiferroics</strong></strong><br /> The-Long Phan, P. D. Thang, T. A. Ho, T. V. Manh, Tran Dang Thanh, V. D. Lam, N. T. Dang, and S. C. Yu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.&nbsp;</font><strong>117</strong></strong>, 17D904 (2015)</p> <p><strong><strong>Numerical investigation of tunable Fano-based optical bistability in coupled nonlinear gratings</strong></strong><br /> Quang Minh Ngo, Khai Q. Le, Thu Trang Hoang, Dinh Lam Vu, Van Hoi Pham<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Optics Communications </font>&nbsp;<strong>338</strong></strong>, 528 (2015)</p> <h3 style="text-align: center;"><strong><a name="2014">2014</a></strong></h3> <p><strong><strong>Broadband negative permeability using hybridized metamaterials: Characterization, multiple hybridization, and terahertz response</strong></strong><br /> Nguyen Thanh Tung, Bui Son Tung, Ewald Janssens, Peter Lievens and Vu Dinh Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font>&nbsp;<strong>116</strong></strong>, 083104 (2014)</p> <p><strong><strong>Influence of Cr doping on the stability and structure of small cobalt oxide clusters</strong></strong><br /> N. T. Tung, N. M. Tam, M. T. Nguyen, P. Lievens, and E. Janssens<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Chem. Phys.</font>&nbsp;<strong>141</strong></strong>, 044311 (2014)</p> <p><strong><strong>Polarization dependence of the metamagnetic resonance of cut-wire-pair structure by using plasmon hybridization</strong></strong><br /> Nguyen Van Dung, YoungJoon Yoo, &nbsp;Nguyen Thanh Tung, Bui Son Tung, Vu Dinh Lam, YoungPak Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Journal of the Korean Physical Society.</font>&nbsp;<strong>65</strong></strong>, 70 (2014)</p> <p><strong><strong>Metamaterial-based perfect absorber: polarization insensitivity and broadband </strong></strong><br /> Thi Hien Nguyen, Son Tung Bui, Trong Tuan Nguyen, Thanh Tung Nguyen, YoungPak Lee, Manh An Nguyen and Dinh Lam Vu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci: Nanosci. Nanotechnol.</font>&nbsp;<strong>5</strong></strong>, 025013 (2014)</p> <p><strong><strong>Optical bistability based on Fano resonances in single- and double-layer nonlinear slab waveguide gratings</strong></strong><br /> Quang Minh Ngo, Khai Q. Le, Dinh Lam Vu, and Van Hoi Pham<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">JOSA B.</font>&nbsp;<strong>31</strong></strong>, 1054 (2014)</p> <p><strong><strong>Dopant dependent stability of transition metal doped cobalt cluster cations</strong></strong><br /> N. T. Tung, E. Janssens, and P. Lievens<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Appl. Phys. B</font> <strong>114</strong></strong>, 497 (2014)</p> <p><strong><strong>Perfect absorber metamaterials: Peak, multi-peak and broadband absorption</strong></strong><br /> D.T. Viet, N.T. Hien, P.V. Tuong, N.Q Minh, P.T. Trang, L.N. Le, Y.P. Lee, V.D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Commun.</font>&nbsp;<strong>322</strong></strong>, 209 (2014)&nbsp;</p> <h3 style="text-align: center;"><strong><a name="2013">2013</a></strong></h3> <p><strong><strong>Dielectric and Ohmic losses in perfectly absorbing metamaterials</strong></strong><br /> P.V. Tuong, J.W. Park, V.D. Lam, W.H. Jang, S.A. Nikitov, Y.P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Commun.</font> <strong>295</strong></strong>, 17 (2013)</p> <p><strong><strong>Metallic assisted guided-mode resonances in slab waveguide gratings for reduced optical switching intensity in bistable devices</strong></strong><br /> Quang Minh Ngo, Thu Trang Hoang, Duc Long Nguyen, Dinh Lam Vu and Van Hoi Pham<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Opt.</font> <strong>15</strong></strong> , 055503 (2013)</p> <p><strong><strong>Perfect-absorber metamaterial based on flower-shaped structure</strong></strong><br /> P.V. Tuong, V.D. Lam, J.W. Park, E.H. Choi, S.A. Nikitov, Y.P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Photonics Nanostruct.: Fundam. Appl.</font> <strong>11</strong></strong>, 89 (2013)</p> <p><strong><strong>Spin reorientation and giant dielectric response in multiferroic La1.5Sr0.5NiO4+</strong></strong><br /> Dang Thanh Tran, Dinh LamVu, Van Hong Le, The-Long Phan and Seong-Cho Yu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>4</strong></strong>, 025010 (2013)</p> <p><strong><strong>Structure and Raman spectra of NdxY1-xBa2Cu3O7</strong></strong><br /> Dang Thanh Tran, Thi Ha Nguyen, Hung Manh Do, Dinh Lam Vu, The-Long Phan and Seong-Cho Yu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>4</strong></strong>, 035001 (2013)</p> <p><strong><strong>Superparamagnetic behaviour and deviation from Bloch T3/2 law of La0.7Ca0.3MnO3 nanoparticles</strong></strong><br /> Do Hung Manh, Tran Dang Thanh, Nguyen Van Chien, Vu Dinh Lam, Le Van Hong, Nguyen Xuan Phuc, Pham Thanh Phong<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Int. J. Nanotechnol.</font> <strong>10</strong></strong>, 197 (2013)</p> <p><strong><strong>Tensile, rheological properties, thermal stability, and morphology of ethylene vinyl acetate copolymer/silica nanocomposites using EVA-g-maleic anhydride</strong></strong><br /> Thai Hoang, Trinh Anh Truc, Dinh Thi Mai Thanh, Nguyen Thuy Chinh, Do Quang Tham, Nguyen Thi Thu Trang, Nguyen Vu Giang, Vu Dinh Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Compos. Mater.</font> ,</strong> 002199831347631 (2013)</p> <p><strong><strong>Thermally tunable magnetic metamaterial at THz frequencies</strong></strong><br /> B. S. Tung, N. V. Dung, B. X. Khuyen, N. T. Tung, P. Lievens, Y. P. Lee, and V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Journal of Optics.</font><strong>15</strong></strong>, 075101, (2013) [IF (2013) = 1.990]&nbsp;</p> <p><strong><strong>THz-metamaterial absorbers</strong></strong><br /> Van Tuong Pham, J W Park, Dinh Lam Vu, H Y Zheng, J Y Rhee, K W Kim and Y P Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>4</strong></strong>, 015001 (2013)</p> <p><strong>&nbsp;</strong></p> <h3 style="text-align: center;"><strong><a name="2012">2012</a></strong></h3> <p><strong><strong>Broadband Negative Permeability by Hybridized Cut-Wire Pair Metamaterials</strong></strong><br /> Tung, Nguyen Thanh; Viet, Do Thanh; Tung, Bui Son; Hieu, Nguyen Van; Lievens, Peter; Lam, Vu Dinh<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Appl. Phys. Express</font> <strong>5</strong></strong>, 112001 (2012)</p> <p><strong><strong>Design, fabrication and characterization of a perfect absorber using simple cut-wire metamaterials</strong></strong><br /> Thanh Viet Do, Son Tung Bui, Van Quynh Le, Thi Hien Nguyen, Trong Tuan Nguyen, Thanh Tung Nguyen, YoungPak Lee and Dinh Lam Vu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>3</strong></strong>, 045014 (2012)</p> <p><strong><strong>Influences of annealing temperature on structural characterization and Magnetic properties of Mn-doped BaTiO3 ceramics</strong></strong><br /> The-Long Phan, P. Zhang, D. Grinting, S. C. Yu, N. X. Nghia, N. V. Dang, and V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>112</strong>, 013909 (2012)</strong></p> <p><strong><strong>Magnetic and Magnetotransport Properties of La0.7Sr0.2Ca0.1MnO3 Prepared From Nanoparticles</strong></strong><br /> PHAN T. L.; ZHANG P.; GRINTING D.; LAM V. D.; TUAN D. A.; YU S. C.;<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">IEEE Trans. Magn.</font> <strong>48</strong></strong>, 4018 (2012)</p> <p><strong><strong>Multi-plasmon resonances supporting the negative refractive index in ”single-atom” metamaterials</strong></strong><br /> D. T. VIET, N. T. TUNG, N. T. HIEN, Y. P. LEE, B. S. TUNG, V. D. LAM<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Nonlinear Opt. Phys. Mater.</font> <strong>21</strong></strong>, 21250019 (2012)</p> <p><strong><strong>Negative-refractive index at the third-order resonance of flower-shaped metamaterial</strong></strong><br /> Pham Van Tuong; Park, J.W. ; Lam, V.D. ; Jang, W.H. ; Choi, E.H. ; Nikitov, S.A. ; Young Pak Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Lightwave Technol.</font> <strong>30</strong></strong>, 3451 (2012)</p> <p><strong><strong>Optical bistability based on guided-mode resonances in photonic crystal slabs</strong></strong><br /> Quang Minh Ngo, Khai Q. Le, and Vu Dinh Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Opt. Soc. Am. B.</font> <strong>29</strong></strong>, &nbsp;1291 (2012)</p> <p><strong><strong>Powerful colloidal silver nanoparticles for the prevention of gastrointestinal bacterial infections</strong></strong><br /> Anh-Tuan Le, Thi Tam Le, Van Quy Nguyen, Huy Hoang Tran, Duc Anh Dang, Quang Huy Tran and Dinh Lam Vu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>3</strong></strong>, 045007 (2012)</p> <p><strong><strong>Simplified perfect absorber structure</strong></strong><br /> P.V. Tuong, J.W. Park, V.D. Lam, K.W. Kim, H. Cheong, W.H. Jang, Y.P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Comp. Mater. Sci.</font> <strong>61</strong></strong>, 243-247 (2012)</p> <p><strong><strong>Structural phase separation, optical and magnetic properties of BaTi1-xMnxO3 multiferroics</strong></strong><br /> Dang, N.V.; Phan, The-Long ; Thanh, T.D. ; Lam, V.D. ; Hong, L.V<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>111</strong></strong>, 113913 (2012)</p> <p><strong><strong>Structure and magnetism of BaTi1-xFexO3- δ multiferroics</strong></strong><br /> Dang, N.V. Nguyen, Ha M. ; Chuang, Pei-Yu ; Zhang, Jie-Hao ; Thanh, T.D. ; Hu, Chih-Wei ; Chen, Tsan-Yao ; Yang, Hung-Duen ; Lam, V.D. ; Lee, Chih-Hao ; Hong, L.V.<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>111</strong></strong>, 07D915 (2012)</p> <p><strong><strong>Structure of BaTi1−xFexO3−δ Multiferroics Using X-ray Analysis</strong></strong><br /> N. V. Dang, Ha M. Nguyen, Pei-Yu Chuang,T. D. Thanh,V. D. Lam, Chih-Hao Lee and L. V. Hong<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Chinese J. Phys.</font> <strong>50</strong></strong>, 262 (2012)</p> <p><strong><strong>Suppression of Mn segregation in Ge/Mn5Ge3 heterostructures induced by interstitial carbon</strong></strong><br /> Minh-Tuan Dau, Vinh Le Thanh, , Thi-Giang Le, Aurélie Spiesser, Matthieu Petit, Lisa A. Michez, Thu-Huong Ngo, Dinh Lam Vu, Quang Liem Nguyen, Pierre Sebband<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Thin Solid Films</font> <strong>520</strong></strong>, 3410 (2012)</p> <p><strong><strong>Synthesis and optical properties of water soluble CdSe/CdS quantum dots for Biological applications</strong></strong><br /> Viet Ha Chu, Thi Ha Lien Nghiem, Tien Ha Le3, Dinh Lam Vu, Hong Nhung Tran and Thi Kim Lien Vu<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>3</strong></strong>, 025017 (2012)</p> <p><strong><strong>TiO2 nanocrystal incorporated with CuO and its optical properties</strong></strong><br /> Ngoc Tai Ly, Thanh Van Hoang, Thi Hong Le Ngo, Van Chien Nguyen, Dang Thanh Tran, Hung Manh Do, Dinh Lam Vu, Xuan Nghia Nguyen, Thi Hoa Dao, Quang Huy Le, Minh Hong Nguyen and Van Hong Le<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>3</strong></strong>, 045009 (2012)</p> <p><strong>&nbsp;</strong></p> <h3 style="text-align: center;"><strong><a name="2011">2011</a></strong></h3> <p><strong><strong>Characterization and electromagnetic response of a ϕ-shaped metamaterial</strong></strong><br /> N. T. Tung, J. W. Park, V. T. T. Thuy, P. Lievens, Y. P. Lee, V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Eur. Phys. J. B</font> <strong>81</strong></strong>, 263 (2011)</p> <p><strong><strong>Dependence of transmittance and group Index on the coupling strength between constituents of a metamaterial</strong></strong><br /> Tran Thanh Thuy Vu, Thanh Tung Nguyen, Joo Yull Rhee, Dinh Lam Vu and Young Pak Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>2</strong></strong>, 015003 (2011)</p> <p><strong><strong>In-plane Interactions in Super cells of Cut-wire Pairs</strong><br /> Vu Tran Thanh, Thuy; Nguyen Thanh, Tung; Jinwoo, Park; Youngpak, Lee; Vu Dinh, Lam; Joo Yull, Rhee<br /> <font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>58</strong>, 87 (2011)</strong></p> <p><strong><strong>Molecular engineering of carbazole functionalized ruthenium dyes for efficient dye-sensitized solar cells</strong></strong><br /> Hong Minh Nguyen, Dinh Lam Vu and Duc Nghia Nguyen<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Adv. Nat. Sci.: Nanosci. Nanotechnol.</font> <strong>2</strong></strong>, 045009 (2011)</p> <p><strong><strong>Strong tie between cut-wire pair and continuous wire in combined structure metamaterials</strong></strong><br /> J.W. Park, N.T Tung, V.T.T. Thuy, V.D. Lam, Y.P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Commun.</font> <strong>284</strong></strong>, 919 (2011)</p> <p><strong><strong>Structural, optical and magnetic properties of polycrystalline BaTi1-xFexO3 ceramics</strong></strong><br /> N. V. Dang, T. D. Thanh, L. V. Hong, V. D. Lam, and The-Long Phan<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Appl. Phys. Lett.</font> <strong>110</strong></strong>, 043914 (2011)</p> <p><strong><strong>Tetragonal and hexagonal polymorphs of BaTi1-xFexO3-δ multiferroics using x-ray and Raman analyses</strong></strong><br /> Ha M. Nguyen, N. V. Dang, Pei-Yu Chuang, T. D. Thanh, Chih-Wei Hu, Tsan-Yao Chen, V. D. Lam, Chih-Hao Lee, and L. V. Hong<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Appl. Phys. Lett.</font> <strong>99</strong></strong>,&nbsp;202501 (2011)</p> <h3 style="text-align: center;"><strong><a name="2010">2010</a></strong></h3> <p><strong><strong>Comprehensive effective-medium analysis for the transmission properties of combined metamaterials</strong></strong><br /> N.T. Tung, T.X. Hoai, V.D. Lam, Y.P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Comp. Mater. Sci.</font> <strong>49</strong></strong>, S284 (2010)</p> <p><strong><strong>Detailed Numerical Study of Cut-wire Pair Structures</strong></strong><br /> N. T. Tung, J. W. Park, Y. P. Lee, V. D. Lam, W. H. Jang<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>56</strong></strong>, 1291 (2010)</p> <p><strong><strong>Highly dispersive transparency in coupled metamaterials</strong></strong><br /> V T T Thuy, N T Tung, J W Park, V D Lam, Y P Lee, and J Y Rhee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Opt.</font> <strong>12</strong></strong>, 115102 (2010)</p> <p><strong><strong>Influence of Mn doping on structural, optical, and magnetic properties of Zn1−xMnxO nanorods</strong></strong><br /> The-Long Phan, S. C. Yu, R. Vincent, H. M. Bui, T. D. Thanh, V. D. Lam, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>108</strong></strong>, 044910 (2010)</p> <p><strong><strong>Perfect impedance-matched left-handed behavior in combined metamaterial</strong></strong><br /> N. T. Tung, T. X. Hoai, V. D. Lam, J. W. Park, V. T. Thuy, Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Eur. Phys. J. B.&nbsp;</font><strong>74</strong></strong>, 47 (2010)</p> <p><strong><strong>Resonant Raman Scattering in ZnO Nanostructures Annealed at Different Temperatures</strong></strong><br /> S. C. Yu, T. L. Phan, N. X. Nghia and V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>57</strong></strong>, 1569 (2010)</p> <p><strong><strong>Triple negative permeability band in plasmon-hybridized cut-wire-pair metamaterials</strong></strong><br /> V.T.T. Thuy, D.T. Viet, N.V. Hieu, Y.P. Lee, V.D. Lam, N.T. Tung<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Commun.</font> <strong>283</strong></strong>, 4303 (2010)</p> <h3 style="text-align: center;"><strong><a name="2009">2009</a></strong></h3> <p><strong><strong>Current-Temperature Diagram of Resistive States in Long Superconducting YBCO strips</strong></strong><br /> K. Harrabi, F.-R. Ladan, Vu Dinh Lam, J.-P. Maneval, J.-F. Hamet, J.-C. Villégier, R. W. Bland<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Low Temp. Phys.</font> <strong>157</strong></strong>, &nbsp;36 (2009<strong>)</strong></p> <p><strong><strong>Effect of the dielectric layer thickness on the electromagnetic response of cut-wire pair and combined structures</strong></strong><br /> V D Lam, N T Tung, M H Cho, J W Park, W H Jang and Y P Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Phys. D: Appl. Phys.</font> <strong>42</strong></strong>, 115404 (2009)</p> <p><strong><strong>Effect of the electric component on combined metamaterial structure</strong></strong><br /> N. T. Tung, V. D. Lam, M. H. Cho, J. W. Park, S. J. Lee, W. H. Jang, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">IEEE Trans. Magn.</font> <strong>45</strong></strong>, 4310 (2009)</p> <p><strong><strong>Impact of Geometrical parameters on transmission properties of cut-wire pair structure</strong></strong><br /> N. T. Tung, Y. P. Lee, T. X. Hoai, and V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Nonlinear Opt. Phys. Mater.</font> <strong>18</strong></strong>, 489 (2009)</p> <p><strong><strong>Influence of Lattice Constant on the Electromagnetic Behavior of Cut-wire Pair and Combined Structures</strong></strong><br /> V. D. Lam, N. T. Tung, J. W. Park, S. J. Lee, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>55</strong></strong>, 1250 (2009)</p> <p><strong><strong>Influence of lattice parameters on the resonance frequencies of cut-wire medium</strong></strong><br /> V. D. Lam, N. T. Tung, M. H. Cho, J. W. Park, J. Y. Rhee, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>105</strong></strong>, 113102 (2009)</p> <p><strong><strong>Influence of the dielectric-spacer thickness on the left-handed behavior of fishnet metamaterial structure</strong></strong><br /> N. T. Tung, V. D. Lam, M. H. Cho, J. W. Park, W. H. Jang, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Photon. Nanostruct.: Fundam. Appl.</font> <strong>7</strong></strong>, 206 (2009)</p> <p><strong><strong>Single- and double – negative refractive indices of combined structure</strong></strong><br /> N. T. Tung, V. D. Lam, J. W. Park, M. H. Cho, J. Y. Rhee, W. H. Jang, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>106</strong></strong>, 053109 (2009)</p> <p><strong><strong>Transmission properties of electromagnetic metamaterials: From split-ring resonator to fishnet structure</strong></strong><br /> N. T. Tung, Y. P. Lee, and V. D. Lam<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Rev.</font> <strong>16</strong></strong>, 578 (2009)</p> <h3 style="text-align: center;"><strong><a name="2008">2008</a></strong></h3> <p><strong><strong>Dependence of the distance between cut-wire-pair layers on resonance frequencies</strong></strong><br /> V. D. Lam, J. B. Kim, N. T. Tung, S. J. Lee, Y. P. Lee, and J. Y. Rhee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Express</font> <strong>16</strong></strong>, 5934 (2008)</p> <p><strong><strong>Electromagnetic behavior of representative metamaterial structures</strong></strong><br /> V. D. Lam, J. B. Kim, S. J. Lee, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>53</strong></strong>, 558 (2008)</p> <p><strong><strong>Excitation of resistive states in superconducting films by using electrical and light pulses</strong></strong><br /> Jean-Paul Maneval, François-René Ladan, J.-C. Villégier, Vu Dinh Lam and Phan Hông Khôi<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>52</strong></strong>, 1641 (2008)</p> <p><strong><strong>Experimental Evidence for the Left-handed Behavior of Combined Structures of a Cut-wire Pair and a Continuous)</strong></strong><br /> V. D. Lam, J. B. Kim, J. W. Pak, S. J. Lee, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>53</strong></strong>, 1323 (2008)</p> <p><strong><strong>Left-handed behavior of combined and fishnet structures</strong></strong><br /> V. D. Lam, J. B. Kim, S. J. Lee, and Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Appl. Phys.</font> <strong>103</strong></strong>, 033107 (2008)</p> <p><strong><strong>Transition from 2-D to 1-D Transport in Superconducting YBa2Cu3O7</strong></strong><br /> V. D. Lam, L. V. Hong, P. H. Khoi, J.-F. Hamet, F. Boyer, J.-P. Maneval, Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Korean Phys. Soc.</font> <strong>52</strong></strong>, 1652 (2008)</p> <h3 style="text-align: center;"><strong><a name="2007">2007</a></strong></h3> <p><strong><strong>Dependence of the magnetic-resonance frequency on the cut-wire width of cut-wire pair medium</strong></strong><br /> V. D. Lam, J. B. Kim, Y. P. Lee, and J. Y. Rhee,<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Opt. Express</font> <strong>15</strong></strong>, 16651 (2007)</p> <p><strong><strong>Experimental observation of the electric coupling effect in split ring resonators and the prevention</strong></strong><br /> V. D. Lam, J. B. Kim, S. J. Lee, and Y. P. Lee,<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Phys. Status Solidi A</font> <strong>204</strong></strong>, 3975 (2007)</p> <p><strong><strong>Room-temperature ferromagnetism of ZnO/Zn0.96Mn0.04O core-shell nanowimble</strong></strong><br /> D. F. Wang, S. Y. Park, H. W. Lee, Y. S. Lee, V. D. Lam, Y. P. Lee<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">Phys. Status Solidi A</font> <strong>204</strong></strong>, 4029 (2007)</p> <h3 style="text-align: center;"><strong><a name="bf2007">Before 2007</a></strong></h3> <p><strong><strong>Extended Domain of existence for PSCs on Superconductor</strong></strong><br /> J. P Maneval, Kh. Harrabi, Vu Dinh Lam, F. Boyer, and F-R Ladan<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Supercond. Novel Magn.</font> <strong>15</strong></strong>, 417 (2002)</p> <p><strong><strong>Structure and Raman spectra of NdxY1-xBa2Cu3O7</strong></strong><br /> Duong Cong Hiep, Vu Dinh Lam and Le Van Hong<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Raman Spectrosc.</font> <strong>32</strong></strong>, 827 (2001)</p> <p><strong><strong>Temporal Evolution of Normal Hot Spots in Current-Driven Superconducting Films</strong></strong><br /> Kh. Harrabi, N. Cheenne, Vu Dinh Lam, F. R. Ladan, and J. P. Maneval,<br /> <strong><font style="color: rgb(128, 128, 0); font-style: italic;">J. Supercond. Novel Magn.</font> <strong>14</strong></strong>, 325 (2001)</p> </div> <div class="four wide computer only column"> <div class="ui violet segment left aligned"> <div class="ui violet right ribbon label">HIGHLIGHTED NEWS</div> <div class="ui bulleted list"> <div class="item"> <div class="content"> <b>Jan. 2019</b> <a href="/news/10-years-metagroup.html">The 10th annivesary of the MetaMaterial Group</a> </div> <div class="content"> <b>Dec. 2018</b> <a href="/news/new-publication-on-OE.html">Our research progress on broadband Metamaterial perfect absorber has been published.</a> </div> <div class="content"> <b>Sept. 2018</b> <a href="/publications.html">Updating publication list.</a> </div> </div> <div class="item"> <div class="content"> <b>February 28</b> - Trang Pham successful defence of PhD thesis </div> </div> <div class="item"> <div class="content"> <b>January 18</b> - Hien Nguyen got her paper accepted in Computational Materials Science. Congratulation! </div> </div> <div class="item"> <b>January 01</b> - Viet Do's paper got accepted in Applied Physics Express. Congratulation! </div> <div class="item"> <b>November 02</b> - 7th IWAMSN </div> <div class="item"> <b>October 30</b> - Viet won the 3rd best poster prize for his work presented at ICAMN2014 </div> <div class="item"> <b>September 24</b> - 1st Meeting on metamaterials and application with CST </div> <div class="item"> <b>August 24</b> - Our new paper has been published in JAP 116, 083104 (2014). </div> <div class="item"> <b>August 18</b> - Viet has successfully passed his preliminary defend. </div> <div class="item"> <b>July 24</b> - Dzung's first paper gets accepted in Journal of Korean Physical Society (Congratulations!) </div> </div> </div> <div class="ui teal segment left aligned"> <div class="ui teal right ribbon label">OPEN POSITIONS</div> <div class="ui bulleted list"> <div class="item"> 02 Master students. </div> <div class="item"> 01 PhD student. </div> <div class="item"> Bachelor students are always welcome. </div> </div> </div> <div class="ui green segment left aligned"> <div class="ui green right ribbon label">LINKS</div> <div class="ui grid two columns container"> <div class="row"> <a class="column ui image" href="http://ims.vast.ac.vn/"> <img src="http://farm6.staticflickr.com/5460/8988054024_15e8d8a5ec_o.png" alt="IMS"> </a> <a class="column ui image" href="http://www.hanyang.ac.kr/english/"> <img src="http://farm4.staticflickr.com/3788/8986856257_c5d4ee7e71_o.png" alt="Hanyang"> </a> <a class="column ui image" href="http://www.itims.edu.vn/"> <img src="http://farm3.staticflickr.com/2851/8988054662_97a481bab5_o.png" alt="ITIMS"> </a> <a class="column ui image" href="http://www.nims.go.jp/eng/"> <img src="http://farm9.staticflickr.com/8120/8988052036_aa9ef52840_o.png" alt="NIMS"> </a> <a class="column ui image" href="http://www.vietnamequipment.vn/vi/"> <img src="http://farm9.staticflickr.com/8134/8986870675_d32170a4ca_o.png" alt=""> </a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </body> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <div class="ui inverted vertical footer segment"> <div class="ui center aligned container"> <div class="ui divided grid"> <div class="center column sixteen floated"> <h4 class="ui inverted header"> Metamaterial Group, Institute of Materials Science </h4> <p>18 Hoang Quoc Viet, Cau Giay, Ha Noi, Viet Nam, Email: lamvd[at]ims.vast.ac.vn</p> </div> </div> </div> </div> <script> (function(){ $('.ui.sidebar').sidebar('attach events', '.toc.item'); })(); </script> </html>
metagroupims/metagroupims.github.io
_site/publications.html
HTML
mit
52,353
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>compcert: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.10.0 / compcert - 3.3.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> compcert <small> 3.3.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-07-16 08:04:26 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-16 08:04:26 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.10.0 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Jacques-Henri Jourdan &lt;jacques-Henri.jourdan@normalesup.org&gt;&quot; homepage: &quot;http://compcert.inria.fr/&quot; dev-repo: &quot;git+https://github.com/AbsInt/CompCert.git&quot; bug-reports: &quot;https://github.com/AbsInt/CompCert/issues&quot; license: &quot;INRIA Non-Commercial License Agreement&quot; build: [ [ &quot;./configure&quot; &quot;ia32-linux&quot; {os = &quot;linux&quot;} &quot;ia32-macosx&quot; {os = &quot;macos&quot;} &quot;ia32-cygwin&quot; {os = &quot;cygwin&quot;} &quot;-bindir&quot; &quot;%{bin}%&quot; &quot;-libdir&quot; &quot;%{lib}%/compcert&quot; &quot;-install-coqdev&quot; &quot;-clightgen&quot; &quot;-coqdevdir&quot; &quot;%{lib}%/coq/user-contrib/compcert&quot; &quot;-ignore-coq-version&quot; ] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] [&quot;install&quot; &quot;-m&quot; &quot;0644&quot; &quot;VERSION&quot; &quot;%{lib}%/coq/user-contrib/compcert/&quot;] ] remove: [ [&quot;rm&quot; &quot;%{bin}%/ccomp&quot;] [&quot;rm&quot; &quot;%{bin}%/clightgen&quot;] [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/compcert&quot;] [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/compcert&quot;] [&quot;rm&quot; &quot;%{share}%/compcert.ini&quot;] [&quot;rm&quot; &quot;%{share}%/man/man1/ccomp.1&quot;] [&quot;sh&quot; &quot;-c&quot; &quot;rmdir -p %{share}%/man/man1 || true&quot;] ] depends: [ &quot;ocaml&quot; {&lt; &quot;4.07.0&quot;} &quot;coq&quot; {&gt; &quot;8.6.0&quot; &amp; &lt; &quot;8.8.1&quot;} &quot;menhir&quot; {&gt;= &quot;20161201&quot; &amp; &lt; &quot;20180530&quot;} ] synopsis: &quot;The CompCert C compiler&quot; authors: &quot;Xavier Leroy &lt;xavier.leroy@inria.fr&gt;&quot; url { src: &quot;https://github.com/AbsInt/CompCert/archive/v3.3.tar.gz&quot; checksum: &quot;md5=89c62f13cea4c2be7917aa04590e8c7d&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-compcert.3.3.0 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0). The following dependencies couldn&#39;t be met: - coq-compcert -&gt; coq &lt; 8.8.1 -&gt; ocaml &lt; 4.03.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-compcert.3.3.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.05.0-2.0.6/released/8.10.0/compcert/3.3.0.html
HTML
mit
7,715
<div class="row align-items-center justify-content-center" ng-show="ctrl.loading" style="height: 100vh; width: 100vw; background-color: white; opacity: 0.9;"> <span class="col"> Cargando... </span> </div> <div ng-show="!ctrl.loading" style="background-color: #00b3ee; height: 100px; margin-bottom: 20px;"> <label style="padding-left: 90px; padding-top: 10px; font-size: 50px; color: white"> Solicita tu préstamo al instante </label> </div> <form name="info" class="col-8 offset-1" ng-show="!ctrl.loading"> <div class="alert alert-danger" role="alert" ng-show="ctrl.userData.results.error_code == 208"> Por favor revisa nuevamente los campos. </div> <div class="alert alert-danger" role="alert" ng-show="ctrl.userData.results.error_code == 209"> No se encuentra el fondo '{{ctrl.userData.results.nombre_fondo}}' administrado por '{{ctrl.userData.results.administradora}}'. </div> <h2 style="color: #0089b7; margin-left: -20px">Información personal</h2> <br> <div class="row"> <div class="form-group col"> <label for="InputName">Nombre</label> <input ng-model="ctrl.userData.data.nombre.text" ng-minlength="3" type="text" class="form-control" id="InputName" aria-describedby="nameHelp" placeholder="Ingrese su nombre"> <small id="nameHelp" class="form-text text-muted"> {{ctrl.userData.results.nombre.message}} </small> </div> <div class="form-group col"> <label for="InputLastName">Apellidos</label> <input ng-model="ctrl.userData.data.apellidos.text" type="text" class="form-control" id="InputLastName" aria-describedby="LastNameHelp" placeholder="Ingrese sus apellidos"> <small id="LastNameHelp" class="form-text text-muted"> {{ctrl.userData.results.apellidos.message}} </small> </div> </div> <div class="row"> <div class="form-group col-6"> <label for="InputId">Cédula</label> <input type="text" ng-model="ctrl.userData.data.cedula.text" class="form-control" id="InputId" aria-describedby="emailHelp" placeholder="Ingrese su número de identificación"> <small id="id_number" class="form-text text-muted"> {{ctrl.userData.results.cedula.message}} </small> </div> <div class="form-group col-6"> <label for="InputId">Celular</label> <input type="text" ng-model="ctrl.userData.data.celular.text" class="form-control" id="InputPhone" aria-describedby="phoneNumber" placeholder="Ingrese su número de celular"> <small id="phoneNumber" class="form-text text-muted"> {{ctrl.userData.results.celular.message}} </small> </div> </div> <div class="row"> <div class="form-group col-6"> <label for="InputEmail">Correo electrónico</label> <input type="text" ng-model="ctrl.userData.data.correo.text" class="form-control" id="InputEmail" aria-describedby="emailHelp" placeholder="Ingrese su correo electrónico"> <small id="emailHelp" class="form-text text-muted"> {{ctrl.userData.results.correo.message}} </small> </div> </div> <br> <h2 style="color: #0089b7; margin-left: -20px">Información del FIC</h2> <br> <div class="row"> <div class="form-group col-12"> <label for="InputId">Administradora</label> <input ng-change="ctrl.loadFics(ctrl.userData.data.administradora.text)" type="text" list="adminNames" ng-model="ctrl.userData.data.administradora.text" class="form-control" id="InputAdmin" aria-describedby="admin" placeholder="Ingrese la administradora"> <datalist id="adminNames"> <option ng-repeat="admin in ctrl.administradoras">{{admin}}</option> </datalist> <small id="admin" class="form-text text-muted"> {{ctrl.userData.results.administradora.message}} </small> </div> </div> <div class="row"> <div class="form-group col-12"> <label for="InputId">Nombre del fondo</label> <input autocomplete="off" type="text" list="fundName" ng-model="ctrl.userData.data.nombre_fondo.text" class="form-control" id="InputFund" aria-describedby="fundNameMSG" placeholder="Ingrese el nombre del fondo"> <datalist id="fundName"> <option ng-repeat="fic in ctrl.selectedAdminFics">{{fic}}</option> </datalist> <small id="fundNameMSG" class="form-text text-muted"> {{ctrl.userData.results.nombre_fondo.message}} </small> </div> </div> <button style="height: 50px; display: block; margin-left: auto; margin-right: auto;" type="submit" class="btn btn-primary" ng-click="ctrl.submit()"> Solicitalo ya </button> <br> </form>
SignoPesos1/SignoPesos1.github.io
app/source/templates/form.html
HTML
mit
5,006
<div id="section-add"> <div class="wrapper-login"> <div class="container"> <div class="row"> <div class="col-md-6 col-md-offset-3"> <div class="panel panel-login"> <div class="panel-heading"> <div class="row"> <div class="col-xs-12"> <a href="#" class="active special-color" id="login-form-link">Add new section</a> </div> </div> </div> <div class="panel-body"> <div class="row"> <div class="col-lg-12"> <form id="login-form"> <div class="form-group"> <input type="text" name="section-name" id="tb-section-name" tabindex="1" class="form-control" placeholder="Section name" value=""> </div> <div class="form-group"> <textarea class="form-control" rows="3" id="tb-section-description" tabindex="2" placeholder="Section description"></textarea> </div> <div class="form-group"> <div class="row"> <div class="col-sm-6 col-sm-offset-3"> <input type="button" name="login-submit" id="btn-section-add" tabindex="3" class="form-control btn btn-primary" value="Add"> </div> </div> </div> </form> </div> </div> </div> </div> </div> </div> </div> </div> </div>
Momus-Telerik-Academy/StudentsLearningServerDeployTest
Source/Client/StudentsLearning.Client/partials/add-section.html
HTML
mit
2,179
<post class="listPosts"> <list data-create-state="createPost" data-display="title" data-edit-state="editPost" data-filter-model="postCtrl.filterModel" data-get-filter-fields="postCtrl.getFilterFields" data-get-items="postCtrl.findProjects()" data-link="url" data-items="postCtrl.posts" data-plural-model="Projects" data-secondary-display="shortDescription" data-total-pages="postCtrl.totalPages" data-view-state="viewPost"></list> </post>
brian-rowe/brian-rowe-node
public/modules/posts/views/list-projects.client.view.html
HTML
mit
538
<section class="container container-spacer"> <!-- Browsing with non-public account --> <div ng-if="app.user.public === false" ng-include="'/modules/users/views/profile/activate.client.view.html'"></div> <!-- Loading first init --> <div class="divider divider-first text-muted text-center" ng-if="app.user.public && !thread.isInitialized"> <tr-spinner size="xs"></tr-spinner> <br><br> <small>Wait a moment...</small> </div> <div class="row" ng-if="app.user.public && thread.isInitialized"> <div class="col-sm-9" id="thread-container" thread-dimensions> <!-- Thread --> <threads id="messages-thread" moremessages="thread.moreMessages()"> <!-- Pagination error --> <div class="divider divider-first" ng-if="thread.messageHandler.resolved === false && thread.messageHandler.nextPage"> <div class="panel panel-danger"> <div class="panel-body"> <p class="text-danger"> Whoops! Something went wrong. </p> <button class="btn btn-warning btn-md" ng-click="thread.moreMessages()"> <span class="icon-bolt icon-lg"></span> Retry </button> </div> </div> </div> <!-- /Pagination Error --> <!-- Pagination Loading --> <div class="text-center" ng-if="thread.messageHandler.nextPage && thread.messageHandler.resolved !== false"> <tr-spinner size="xs"></tr-spinner> </div> <!-- No messages --> <div class="content-empty" ng-if="thread.messageHandler.resolved && !thread.messages.length && thread.profileDescriptionLength >= app.appSettings.profileMinimumLength"> <i class="icon-3x icon-messages-alt"></i> <h4>You haven't been talking yet.</h4> <div tr-flashcards></div> </div><!-- /.row --> <!-- No messages & profile empty --> <div class="content-empty" ng-if="thread.messageHandler.resolved && !thread.messages.length && thread.profileDescriptionLength < app.appSettings.profileMinimumLength"> <i class="icon-3x icon-messages-alt"></i> <p class="lead"> Your profile seems quite empty.<br> Please write longer profile description before sending messages.<br> <a ui-sref="profile-edit.about">Edit your profile</a> </p> </div><!-- /.row --> <!-- No user --> <div class="content-empty" ng-if="!thread.userTo._id"> <i class="icon-3x icon-messages-alt"></i> <h4>This user isn't a member anymore.</h4> </div> <!-- Messages --> <div ng-if="thread.messageHandler.resolved && thread.messages.length"> <div class="message" ng-repeat="message in thread.messages | orderBy:'-created':true track by $index" zum-waypoint="thread.waypoints" offset="50%" up="scroll.up" down="scroll.down" ng-class="{ 'message-unread': !thread.messageRead(message, thread.waypoints.scroll.up, thread.waypoints.scroll.down), 'message-sender-other': app.user._id !== message.userFrom._id }"> <!-- Discussion started --> <div class="col-xs-12 divider divider-first text-muted" ng-if="$first && !thread.messageHandler.nextPage"> <small>Conversation started {{ ::thread.messages[0].created | date:'mediumDate' }}</small> </div> <div class="col-xs-12 col-sm-11"> <div class="message-meta"> <span ng-if="app.user._id === message.userFrom._id">You</span> <a ng-if="app.user._id !== message.userFrom._id" ui-sref="profile.about({ username: message.userFrom.username })">{{::message.userFrom.displayName}}</a> — <span tr-time="message.created"></span> </div> <div class="message-content panel panel-default" zum-waypoint="wp" offset="15%" up="next"> <div tr-avatar data-user="message.userFrom" data-size="24"></div> <div class="panel-body" ng-bind-html="message.content | trustedHtml"></div> </div> </div> <div class="col-sm-1 hidden-xs message-author"> <div tr-avatar data-user="message.userFrom" data-size="32"></div> </div> </div> </div> <!-- /Messages --> </threads> <!-- /Thread --> <!-- Reply --> <form id="message-reply" name="messageForm" class="form-horizontal" novalidate ng-submit="thread.sendMessage()" ng-disabled="!thread.userTo._id"> <div class="row"> <div class="col-xs-12"> <div class="panel panel-default"> <div id="message-reply-content" ng-if="thread.userTo._id && (thread.messages.length || thread.profileDescriptionLength >= app.appSettings.profileMinimumLength)" ng-model="thread.content" tr-editor tr-editor-options="::app.editorOptions" tr-editor-on-ctrl-enter="thread.sendMessage()" data-placeholder="Write a message" ng-change="thread.editorContentChanged()"></div> <div id="message-reply-content" class="text-muted" ng-if="!thread.userTo._id || (!thread.messages.length && thread.profileDescriptionLength < app.appSettings.profileMinimumLength)"> <em class="lead">Sorry, you cannot write to this thread.</em> </div> </div><!-- /.panel --> </div> <div class="col-xs-2 col-sm-12"> <small class="text-muted hidden-xs"> Highlight text to add links or change its appearance. Ctrl+Enter to send. </small> <button ng-disabled="!thread.content || thread.isSending === true || !thread.messageHandler.resolved || !thread.userTo._id || (!thread.messages.length && thread.profileDescriptionLength < app.appSettings.profileMinimumLength)" type="submit" class="btn btn-md btn-primary message-reply-btn" id="messageReplySubmit" aria-label="Send"> <i class="icon-send"></i><span class="hidden-xs"> Send</span> </button> </div> </div><!-- /.row --> </form> <!-- /Reply --> </div><!-- /.col-* --> <div class="col-sm-3 hidden-xs text-center" ng-if="thread.userTo._id"> <div tr-monkeybox profile="thread.userTo"></div> <div tr-reference-thread="thread.userTo._id" ng-if="thread.messageHandler.resolved && thread.messages.length"></div> <span tr-report-member="::thread.userTo.username"></span> </div> </div><!-- /.row --> </section><!-- /.container -->
mleanos/trustroots
modules/messages/client/views/thread.client.view.html
HTML
mit
7,043
<!DOCTYPE html><html><head><title>https://matingholami.github.io/tags/development/</title><link rel="canonical" href="https://matingholami.github.io/tags/development/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://matingholami.github.io/tags/development/" /></head></html>
matingholami/matingholami.github.io
tags/development/page/1/index.html
HTML
mit
340
<html> <body> <div class="ui-page"> <div id="t-67b92904-8878-4926-a40e-8d7723101a04" class="template growth-both firer commentable" name="EmptyScreen" width="" height=""> <div id="backgroundBox"></div> <div id="alignmentBox" class="center"> <link type="text/css" rel="stylesheet" href="./resources/templates/67b92904-8878-4926-a40e-8d7723101a04-1499285103580.css" /> <!--[if IE]><link type="text/css" rel="stylesheet" href="./resources/templates/67b92904-8878-4926-a40e-8d7723101a04-1499285103580-ie.css" /><![endif]--> <!--[if lte IE 8]><link type="text/css" rel="stylesheet" href="./resources/templates/67b92904-8878-4926-a40e-8d7723101a04-1499285103580-ie8.css" /><![endif]--> </div> <div id="loadMark"></div> </div> </div> </body> </html>
mnunezdm/cazasteroides
docs/3analisisYPropuestaDeMejora/aplicacion/cazasteroides/review/templates/67b92904-8878-4926-a40e-8d7723101a04.html
HTML
mit
847
{% extends "base.html" %} {% import 'bootstrap/wtf.html' as wtf %} {% block page_content %} <div class="page-header"> <h1>Login</h1> </div> {{ wtf.quick_form(form) }} {% endblock %}
bionikspoon/playing-with-flask---talks-app
app/templates/auth/login.html
HTML
mit
186
<!DOCTYPE html> <!-- portfolYOU Jekyll theme by Youssef Raafat Free for personal and commercial use under the MIT license https://github.com/YoussefRaafatNasry/portfolYOU --> <html lang="en" class="h-100"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <title>anthonyrchao</title> <link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico"> <!-- Font Awesome CDN --> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.0/css/all.css"> <!-- Bootstrap CSS CDN --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"> <!-- Animate CSS CDN --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.css" type="text/css"/> <!-- Custom CSS --> <link rel="stylesheet" href="/assets/css/style.css" type="text/css"> </head> <body class="d-flex flex-column h-100"> <main class="flex-shrink-0 container mt-5"> <nav class="navbar navbar-expand-lg navbar-light"> <a class="navbar-brand" href="/"><h5><b>anthonyrchao</b></h5></a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNavAltMarkup"> <div class="navbar-nav ml-auto"><a class="nav-item nav-link " href="/projects/">Projects</a> <a class="nav-item nav-link " href="/blog/">Blog</a> <a class="nav-item nav-link " href="/about/">About</a> </div> </div> </nav> <div class="row justify-content-center align-items-center p-4"> <div class="col-lg-4 col-md-6 text-center mt-4"> <!-- Fine Circle Responsive Image --> <div id="container" class="my-2"> <div id="dummy"></div> <div id="element"> <img src="https://i.imgur.com/TTykADv.jpg?1" alt="anthonyrchao" class="circle-image wow animated zoomIn" data-wow-delay=".1s" /> </div> </div> <p class="text-muted wow animated slideInUp" data-wow-delay=".15s"></p> </div> </div> </main> <footer class="mt-auto py-3 text-center"> <small class="text-muted mb-2"> <i class="fas fa-code"></i> with <i class="fas fa-heart"></i> by <strong>Anthony Chao</strong> </small> <div class="container-fluid justify-content-center"><a class="social mx-1" href="mailto:anthony.r.chao@gmail.com" style="color: #6c757d" onMouseOver="this.style.color='#db4437'" onMouseOut="this.style.color='#6c757d'"> <i class="fas fa-envelope fa-1x"></i> </a><a class="social mx-1" href="https://www.facebook.com/AnthonyRChao" style="color: #6c757d" onMouseOver="this.style.color='#3b5998'" onMouseOut="this.style.color='#6c757d'"> <i class="fab fa-facebook fa-1x"></i> </a><a class="social mx-1" href="https://www.github.com/AnthonyRChao" style="color: #6c757d" onMouseOver="this.style.color='#333333'" onMouseOut="this.style.color='#6c757d'"> <i class="fab fa-github fa-1x"></i> </a><a class="social mx-1" href="https://www.instagram.com/AnthonyRChao" style="color: #6c757d" onMouseOver="this.style.color='#405de6'" onMouseOut="this.style.color='#6c757d'"> <i class="fab fa-instagram fa-1x"></i> </a><a class="social mx-1" href="https://www.linkedin.com/in/AnthonyRChao" style="color: #6c757d" onMouseOver="this.style.color='#007bb5'" onMouseOut="this.style.color='#6c757d'"> <i class="fab fa-linkedin-in fa-1x"></i> </a><a class="social mx-1" href="https://www.twitter.com/AnthonyRChao" style="color: #6c757d" onMouseOver="this.style.color='#1da1f2'" onMouseOut="this.style.color='#6c757d'"> <i class="fab fa-twitter fa-1x"></i> </a> </div><small id="attribution"> theme <a href="https://github.com/YoussefRaafatNasry/portfolYOU">portfolYOU</a> </small> </footer> <!-- GitHub Buttons --> <script async defer src="https://buttons.github.io/buttons.js"></script> <!-- jQuery CDN --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- Popper.js CDN --> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script> <!-- Bootstrap JS CDN --> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script> <!-- wow.js CDN & Activation --> <script src="https://cdnjs.cloudflare.com/ajax/libs/wow/1.1.2/wow.js"></script> <script> new WOW().init(); </script> <!-- Initialize all tooltips --> <script> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script> </body> </html>
AnthonyRChao/anthonyrchao.github.io
_site/index.html
HTML
mit
4,938
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>dijkstra: 14 s 🏆</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.13.1 / dijkstra - 0.1.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> dijkstra <small> 0.1.0 <span class="label label-success">14 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-10-26 18:01:49 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-10-26 18:01:49 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq 8.13.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: # This file is generated by dune, edit dune-project instead opam-version: &quot;2.0&quot; synopsis: &quot;A Verified Implementation of Dijkstra&#39;s Algorithm&quot; maintainer: [&quot;Masayuki Mizuno &lt;mizuno@wantedly.com&gt;&quot;] authors: [&quot;Masayuki Mizuno &lt;mizuno@wantedly.com&gt;&quot;] license: &quot;MIT&quot; homepage: &quot;https://github.com/fetburner/coq-dijkstra&quot; bug-reports: &quot;https://github.com/fetburner/coq-dijkstra/issues&quot; depends: [ &quot;dune&quot; {&gt;= &quot;2.5&quot;} &quot;coq&quot; {&gt;= &quot;8.8&quot;} &quot;coq-mathcomp-ssreflect&quot; {&gt;= &quot;1.11&quot;} ] build: [ [&quot;dune&quot; &quot;subst&quot;] {pinned} [ &quot;dune&quot; &quot;build&quot; &quot;-p&quot; name &quot;-j&quot; jobs &quot;@install&quot; &quot;@runtest&quot; {with-test} &quot;@doc&quot; {with-doc} ] ] dev-repo: &quot;git+https://github.com/fetburner/coq-dijkstra.git&quot; tags: [ &quot;keyword:graph theory&quot; &quot;keyword:shortest path&quot; &quot;keyword:Dijkstra&#39;s algorithm&quot; &quot;category:Computer Science/Graph Theory&quot; &quot;date:2021-03-02&quot; &quot;logpath:Dijkstra&quot; ] url { src: &quot;https://github.com/fetburner/coq-dijkstra/archive/0.1.0.tar.gz&quot; checksum: &quot;md5=ba5b8f156d209b428eaafe75436bee97&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-dijkstra.0.1.0 coq.8.13.1</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-dijkstra.0.1.0 coq.8.13.1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 m 6 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-dijkstra.0.1.0 coq.8.13.1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>14 s</dd> </dl> <h2>Installation size</h2> <p>Total: 76 K</p> <ul> <li>68 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Dijkstra/Dijkstra.vo</code></li> <li>6 K <code>../ocaml-base-compiler.4.08.1/lib/coq/user-contrib/Dijkstra/Dijkstra.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.08.1/doc/coq-dijkstra/LICENSE</code></li> <li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq-dijkstra/opam</code></li> <li>1 K <code>../ocaml-base-compiler.4.08.1/lib/coq-dijkstra/dune-package</code></li> <li>0 K <code>../ocaml-base-compiler.4.08.1/lib/coq-dijkstra/META</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-dijkstra.0.1.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.08.1-2.0.5/released/8.13.1/dijkstra/0.1.0.html
HTML
mit
7,530
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>lambda: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">8.11.dev / lambda - 8.7.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> lambda <small> 8.7.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2019-11-29 00:21:18 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2019-11-29 00:21:18 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.11.dev Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/lambda&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Lambda&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.8~&quot;} ] tags: [ &quot;keyword: pure lambda-calculus&quot; &quot;keyword: confluence&quot; &quot;keyword: parallel-moves lemma&quot; &quot;keyword: Lévy&#39;s Cube Lemma&quot; &quot;keyword: Church-Rosser&quot; &quot;keyword: residual&quot; &quot;keyword: Prism theorem&quot; &quot;category: Computer Science/Lambda Calculi&quot; ] authors: [ &quot;Gérard Huet&quot; ] bug-reports: &quot;https://github.com/coq-contribs/lambda/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/lambda.git&quot; synopsis: &quot;Residual Theory in Lambda-Calculus&quot; description: &quot;&quot;&quot; We present the complete development in Gallina of the residual theory of beta-reduction in pure lambda-calculus. The main result is the Prism Theorem, and its corollary Lévy&#39;s Cube Lemma, a strong form of the parallel-moves lemma, itself a key step towards the confluence theorem and its usual corollaries (Church-Rosser, uniqueness of normal forms).&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/lambda/archive/v8.7.0.tar.gz&quot; checksum: &quot;md5=4e91d279a4dd2565b76c3da824fb8022&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-lambda.8.7.0 coq.8.11.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.11.dev). The following dependencies couldn&#39;t be met: - coq-lambda -&gt; coq &lt; 8.8~ -&gt; ocaml &lt; 4.05.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-lambda.8.7.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
coq-bench/coq-bench.github.io
clean/Linux-x86_64-4.04.2-2.0.5/extra-dev/8.11.dev/lambda/8.7.0.html
HTML
mit
7,345
<section id="experiences" class="col-xs-12"> <h2><i class="fa fa-briefcase"></i> Experiences</h2> <ul class="content-posts">    {% for post in site.categories.experiences %} <li class="content-post"> <div class="row"> <div class="col-lg-8 col-xs-12 post-title"> <i class="fa fa-chevron-right"></i> <strong>{{ post.title }}</strong>{% if post.company %} at {{ post.company }} {% endif %} </div> <p class="duration col-lg-4 col-xs-12"> <time datetime="{{ post.entry_date | date: '%Y-%m'}}"> {{ post.entry_date }} </time> <span class="italique">to</span> <time datetime="{{ post.out_date | date: '%Y-%m' }}"> {{ post.out_date }} </time> {% if post.time %} ({{ post.time }}){% endif %} </p> </div> <div class="row"> {%if post.website %} <p class="col-sm-6 col-xs-12"> <a class="website" href="{{ post.website }}"> Visit web page </a> </p> {% endif %} {% if post.city %} <p class="col-sm-6 col-xs-12"> <span class="location ">{{ post.city }}</span> </p> {% endif %} </div> <div class="post-content"> {{ post.content }} <p class="small"> References : {{ post.references | join:', ' }} </p> </div> </li> {% endfor %} </ul> </section>
gbergere/gbergere.github.io
_resume/experiences.html
HTML
mit
1,959
<!DOCTYPE html SYSTEM "about:legacy-compat"> <html dir="ltr" lang="nl-be" class="no-js" prefix="og: http://ogp.me/ns#"> <head> <link rel="stylesheet" href="css/main.css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css"> <link rel="stylesheet" href="css/locatie.css"> <link rel="stylesheet" href="css/grid.css"> </head> <nav role="navigatie"> <ul class="nav"> <li><a class="knopA" href="overons.html">Over ons</a></li> <li><a class="knopB" href="portfolio.html">Portfolio </a></li> <li><a class="knopC" href="index.html"> <img src="assets/images/logokleur.png" width="200px"></a></li> <li><a class="knopD" href="socialmedia.html">Social Media </a></li> <li><a class="knopE" href="contact.html">Contact</a></li> </ul> </nav> <body> <h1> LOCATIE <img src="assets/images/locatie.png" width="60px"> </h1> <div class="kaart"><iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2508.296729313682!2d3.4049771158577116!3d51.04760857956221!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c342279ffd78cb%3A0xe6dcd9256c3a8f4!2sAalterstraat+94%2C+8755+Ruiselede!5e0!3m2!1snl!2sbe!4v1494578382617" width="400" height="300" frameborder="0" style="border:0" allowfullscreen></iframe></div> <br> <p> Indien we niet op het kantoor te vinden zijn kan u altijd bellen naar ons.</p> <br> </body> <div class="footer-wrapper"> <div class="grid__row"> <div class="grid__column-12"> <footer class="footer"> <div class="grid__row" > <br> <div class="grid__column-8"> Adres: Aalterstraat 95 8755 Ruiselede <br> Tel.: 0470861113 </div> <div class="iconen"> <div class="grid__column-8"> <a href="https://facebook.com"><img src="assets/images/facebook.png" width="50px"></a> <a href="https://pinterest.com"><img src="assets/images/pintrest.png" width="50px"></a> <a href="https://twitter.com"><img src="assets/images/twitter.png" width="50px"></a> </div> </div> <div class="grid__column-8"> <br>Copyright Lore Verstraete. Deze website is gemaakt als opdracht voor Webdesign II Arteveldehogeschool Mariakerke. </div> </div> <br> </div> </footer> </div> </div> </div> </div> </html>
lorevers3/1617.webd2
locatie.html
HTML
mit
2,426
<!DOCTYPE html> <div class="card"> <form class="form-horizontal" autocomplete="on" name="editInstituteForm" ng-submit="save()"> <div class="card-header" style="font-size: 20pt;"> <div class="row"> <div class="col"> {{ 'EDIT_INSTITUTE' | translate }} </div> <div class="col right"> <button class="btn btn-secondary" role="button" ng-click="redirect('/institutes/' + institute.institute_id)"> <i class="fa fa-times" aria-hidden="true"></i> </button> </div> </div> </div> <div class="card-block"> <label> <b>{{ 'INSTITUTE_NAME' | translate }}*</b> </label> <div class="form-group" ng-class="{'has-danger': editInstituteForm.document_email_address.$invalid && !editInstituteForm.document_email_address.$pristine}"> <input type="text" class="form-control" ng-model="updated_institute.institute_name" name="institute_name" id="institute_name" placeholder="{{ 'NAME' | translate }}" aria-describedby="inputInstituteName" required autofocus> <span ng-show="editInstituteForm.institute_name.$error.required && !editInstituteForm.institute_name.$pristine" class="text-danger"> <small> {{ 'REQUIRED' | translate }} </small> </span> </div> <br> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12"> <label> <b>{{ 'UNIVERSITY' | translate }}*</b> </label> <div class="form-group" ng-class="{'has-danger': editInstituteForm.university_id.$invalid && !editInstituteForm.university_id.$pristine}"> <div class="input-group"> <span class="input-group-addon"> <i class="fa fa-university" aria-hidden="true"></i> </span> <select class="custom-select form-control" id="university_id" name="university_id" ng-model="updated_institute.university_id" ng-options="university.university_id as university.university_name for university in universities" disabled required > <option value=""> {{ 'PLEASE_SELECT_AN_UNIVERSITY' | translate }} </option> </select> </div> <span ng-show="editInstituteForm.university_id.$error.required && !editInstituteForm.university_id.$pristine" class="text-danger"> <small> {{ 'REQUIRED' | translate }} </small> </span> </div> <br> </div> </div> <label> <b>{{ 'FORMER_STATUS' | translate }}*</b> </label> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-6 col-lg-4"> <div class="form-group" ng-class="{'has-danger': createInstituteForm.former.$invalid && !createInstituteForm.former.$pristine }"> <div class="input-group"> <span class="input-group-addon"> <i class="fa fa-archive" aria-hidden="true"></i> </span> <span class="input-group-addon" style="background-color: #FFFFFF;"> <label class="custom-control custom-radio" style="margin-bottom: 0px;"> <input class="custom-control-input" type="radio" name="former" id="former_1" ng-model="updated_institute.former" ng-value="true" required> <span class="custom-control-indicator"></span> <span class="custom-control-description">{{ 'TRUE' | translate }}</span> </label> </span> <span class="input-group-addon" style="background-color: #FFFFFF;"> <label class="custom-control custom-radio" style="margin-bottom: 0px;"> <input class="custom-control-input" type="radio" name="former" id="former_2" ng-model="updated_institute.former" ng-value="false" required> <span class="custom-control-indicator"></span> <span class="custom-control-description">{{ 'FALSE' | translate }} (d)</span> </label> </span> </div> <span ng-show="createInstituteForm.former.$error.required && !createInstituteForm.former.$pristine" class="text-danger"> <small> {{ 'REQUIRED' | translate }} </small> </span> </div> </div> <div class="col-xs-12 col-sm-12 col-md-6 col-lg-8"> <div class="alert alert-warning justified" role="alert"> <i class="fa fa-info-circle" aria-hidden="true"></i>&nbsp;&nbsp;{{ 'EXPLANATION_OF_THE_FORMER_STATUS_OF_AN_INSTITUTE' | translate }} </div> <br> </div> </div> <div class="row"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 text-muted right"> <small> * {{ 'REQUIRED' | translate }}&nbsp;&nbsp;|&nbsp;&nbsp;d {{ 'DEFAULT' | translate }} </small> </div> </div> </div> <div class="card-footer right"> <button class="btn btn-success" role="submit"> <i class="fa fa-floppy-o" aria-hidden="true"></i>&nbsp;&nbsp;{{ 'SAVE' | translate }} </button> </div> </form> </div>
sitcomlab/Ethics-app
public/member-client/js/templates/institute/edit.html
HTML
mit
7,270
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale="1.0"> <title>Shambhavi's Website </title> <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script|Metamorphous' rel='stylesheet' type='text/css'> <link href="http://fonts.googleapis.com/css?family=Roboto:400,500" rel="stylesheet" type="text/css"> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,300,400"> <link rel="stylesheet" href="../stylesheets/normalize.css"> <link rel="stylesheet" href="../stylesheets/projects.css"> </head> <body> <header class="primary-header"> <div class="header"> <div class="logo"> <h1 class="logo-1">Shambhavi Sachid</h1> <h3 class="logo-2">Web Developer</h3> </div> <nav class="nav primary-nav"> <ul> <li><a href="../index.html">HOME</a></li> <li><a href="resume.html">RESUME</a></li> <LI><a class="selected" href="projects.html">PROJECTS</a></li> <li><a href="../blog-posts/t1-compare-websites.html">BLOG</a></li> <li><a href="contact.html">CONTACT</a></li> </ul> </nav> </div> </header> <section class="main-section"> <article class="side"> <table class="side-category"> <thead> <tr> <th>Categories</th> </tr> </thead> <tbody> <tr class="category"> <td><a href="#week-1">HTML + CSS</a></td> </tr> </tbody> </table> </article> <section id="week-1" class="main-content"> <article class="project-1"> <img class="image" src="../imgs/responsive.png" alt="responsive"> <div class="img-content"> <h1>Responsive Web Design</h1> <p> Pair programming challenge to turn an existing site into a beautiful page that is responsive and works across multiple viewport sizes and device types. </p><br> <div class="button"><a href="../projects/starting-point.html" target="_blank">Read More</a></div> </div> </article> <article class="project-1"> <img class="image" src="../imgs/guided-pair.png" alt="responsive"> <div class="img-content"> <h1>GPS1.1: Guided Pairing Session</h1> <p>Guided pairing session to build a simple webpage from scratch using HTML and CSS.</p><br> <div class="button"><a href="../projects/gps1.1.html" target="_blank">Read More</a></div> </div> </article> </section> </section> <footer class="primary-footer container group"> <small>&copy; 2014 Shambhavi Sachid </small> <nav class="nav"> <ul> <li><a href="https://www.facebook.com/shambhavi.bhatt.1"><img src="../imgs/facebook.png"></a></li> <li><a href="https://twitter.com/shambu1985"><img src="../imgs/twitter.png"></a></li> <li><a href="https://www.linkedin.com/profile/view?id=259408775&trk=nav_responsive_tab_profile"><img src="../imgs/linkdin.png"></a></li> <LI><a href="https://github.com/shambu1985"><img src="../imgs/github.png"></a></li> <li><a href="https://plus.google.com/u/0/107790871642479149596/posts""><img src="../imgs/googleplus.png"></a></li> </ul> </nav> </footer> </body> </html>
shambu1985/shambu1985.github.io
other-pages/projects.html
HTML
mit
3,865
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_25) on Sun Dec 08 14:57:13 UTC 2013 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>BranchState (Neo4j Community 2.0.0 API)</title> <meta name="date" content="2013-12-08"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="BranchState (Neo4j Community 2.0.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 class="navBarCell1Rev">Class</li> <li><a href="class-use/BranchState.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 class="aboutLanguage"><em>Neo4j Community</em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/neo4j/graphdb/traversal/BranchSelector.html" title="interface in org.neo4j.graphdb.traversal"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/neo4j/graphdb/traversal/Evaluation.html" title="enum in org.neo4j.graphdb.traversal"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/neo4j/graphdb/traversal/BranchState.html" target="_top">Frames</a></li> <li><a href="BranchState.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="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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">org.neo4j.graphdb.traversal</div> <h2 title="Interface BranchState" class="title">Interface BranchState&lt;STATE&gt;</h2> </div> <div class="contentContainer"> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl><dt><span class="strong">Type Parameters:</span></dt><dd><code>STATE</code> - the type of object the state is.</dd></dl> <hr> <br> <pre>public interface <span class="strong">BranchState&lt;STATE&gt;</span></pre> <div class="block">Accessor for a state associated with a <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a> during a traversal. A <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a> can have an associated state which follows down the branch as the traversal goes. If the state is modified with <a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#setState(STATE)"><code>setState(Object)</code></a> it means that branches further down will have the newly set state, until it potentially gets overridden again. The state returned from <a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#getState()"><code>getState()</code></a> represents the state associated with the parent branch, which by this point has followed down to the branch calling <a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#getState()"><code>getState()</code></a>.</div> <dl><dt><span class="strong">Author:</span></dt> <dd>Mattias Persson</dd></dl> </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> <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>static <a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="interface in org.neo4j.graphdb.traversal">BranchState</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#NO_STATE">NO_STATE</a></strong></code> <div class="block">Instance representing no state, usage resulting in <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang"><code>IllegalStateException</code></a> being thrown.</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><a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="type parameter in BranchState">STATE</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#getState()">getState</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../org/neo4j/graphdb/traversal/BranchState.html#setState(STATE)">setState</a></strong>(<a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="type parameter in BranchState">STATE</a>&nbsp;state)</code> <div class="block">Sets the <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a> state for upcoming children of that branch.</div> </td> </tr> </table> </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="NO_STATE"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>NO_STATE</h4> <pre>static final&nbsp;<a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="interface in org.neo4j.graphdb.traversal">BranchState</a> NO_STATE</pre> <div class="block">Instance representing no state, usage resulting in <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/IllegalStateException.html?is-external=true" title="class or interface in java.lang"><code>IllegalStateException</code></a> being thrown.</div> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getState()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getState</h4> <pre><a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="type parameter in BranchState">STATE</a>&nbsp;getState()</pre> <dl><dt><span class="strong">Returns:</span></dt><dd>the associated state for a <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a>.</dd></dl> </li> </ul> <a name="setState(java.lang.Object)"> <!-- --> </a><a name="setState(STATE)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>setState</h4> <pre>void&nbsp;setState(<a href="../../../../org/neo4j/graphdb/traversal/BranchState.html" title="type parameter in BranchState">STATE</a>&nbsp;state)</pre> <div class="block">Sets the <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a> state for upcoming children of that branch.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>state</code> - the <a href="../../../../org/neo4j/graphdb/traversal/TraversalBranch.html" title="interface in org.neo4j.graphdb.traversal"><code>TraversalBranch</code></a> state to set for upcoming children.</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/BranchState.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 class="aboutLanguage"><em>Neo4j Community</em></div> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/neo4j/graphdb/traversal/BranchSelector.html" title="interface in org.neo4j.graphdb.traversal"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/neo4j/graphdb/traversal/Evaluation.html" title="enum in org.neo4j.graphdb.traversal"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/neo4j/graphdb/traversal/BranchState.html" target="_top">Frames</a></li> <li><a href="BranchState.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="#field_summary">Field</a>&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><a href="#field_detail">Field</a>&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 ======= --> <p class="legalCopy"><small>Copyright &#169; 2002&#x2013;2013 <a href="http://neo4j.org/">The Neo4j Graph Database Project</a>. All rights reserved.</small></p> </body> </html>
danielmorozoff/taste-rna-db
lib/neo4j-community-2.0.0/doc/java/api/org/neo4j/graphdb/traversal/BranchState.html
HTML
mit
12,202
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>UnitTestHelper - FAKE - F# Make</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="Steffen Forkmann, Mauricio Scheffer, Colin Bull"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="http://fsharp.github.io/FAKE/content/style.css" /> <script type="text/javascript" src="http://fsharp.github.io/FAKE/content/tips.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="http://github.com/fsharp/fake">github page</a></li> </ul> <h3 class="muted"><a href="http://fsharp.github.io/FAKE/index.html">FAKE - F# Make</a></h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> <h1>UnitTestHelper</h1> <div class="xmldoc"> <p>This module contains functions which allow to report unit test results to build servers.</p> </div> <!-- Render nested types and modules, if there are any --> <h2>Nested types and modules</h2> <div> <table class="table table-bordered type-list"> <thead> <tr><td>Type</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="type-name"> <a href="fake-unittesthelper-test.html">Test</a> </td> <td class="xmldoc"><p>Basic data type to represent tests</p> </td> </tr> <tr> <td class="type-name"> <a href="fake-unittesthelper-testresults.html">TestResults</a> </td> <td class="xmldoc"><p>Basic data type to represent test results</p> </td> </tr> <tr> <td class="type-name"> <a href="fake-unittesthelper-teststatus.html">TestStatus</a> </td> <td class="xmldoc"><p>Basic data type to represent test status</p> </td> </tr> </tbody> </table> </div> <h3>Functions and values</h3> <table class="table table-bordered member-list"> <thead> <tr><td>Function or value</td><td>Description</td></tr> </thead> <tbody> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '872', 872)" onmouseover="showTip(event, '872', 872)"> reportTestResults testResults </code> <div class="tip" id="872"> <strong>Signature:</strong> testResults:TestResults -&gt; unit<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/UnitTestHelper.fs#L62-62" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Reports the given test results to the detected build server</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '873', 873)" onmouseover="showTip(event, '873', 873)"> reportToAppVeyor testResults </code> <div class="tip" id="873"> <strong>Signature:</strong> testResults:TestResults -&gt; unit<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/UnitTestHelper.fs#L49-49" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Reports the given test results to <a href="http://www.appveyor.com/">AppVeyor</a>.</p> </td> </tr> <tr> <td class="member-name"> <code onmouseout="hideTip(event, '874', 874)" onmouseover="showTip(event, '874', 874)"> reportToTeamCity testResults </code> <div class="tip" id="874"> <strong>Signature:</strong> testResults:TestResults -&gt; unit<br /> </div> </td> <td class="xmldoc"> <a href="https://github.com/fsharp/FAKE/blob/master/src/app/FakeLib/UnitTest/UnitTestHelper.fs#L33-33" class="github-link"> <img src="../content/img/github.png" class="normal" /> <img src="../content/img/github-blue.png" class="hover" /> </a> <p>Reports the given test results to <a href="http://www.jetbrains.com/teamcity/">TeamCity</a>.</p> </td> </tr> </tbody> </table> </div> <div class="span3"> <a href="http://fsharp.github.io/FAKE/index.html"> <img src="http://fsharp.github.io/FAKE/pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">FAKE - F# Make</li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://www.nuget.org/packages/FAKE">Get FAKE - F# Make via NuGet</a></li> <li><a href="http://github.com/fsharp/fake">Source Code on GitHub</a></li> <li><a href="http://github.com/fsharp/fake/blob/master/License.txt">License (Apache 2)</a></li> <li><a href="http://fsharp.github.io/FAKE/RELEASE_NOTES.html">Release Notes</a></li> <li><a href="http://fsharp.github.io/FAKE//contributing.html">Contributing to FAKE - F# Make</a></li> <li><a href="http://fsharp.github.io/FAKE/users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="http://fsharp.github.io/FAKE/gettingstarted.html">Getting started</a></li> <li><a href="http://fsharp.github.io/FAKE/cache.html">Build script caching</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/nuget.html">NuGet package restore</a></li> <li><a href="http://fsharp.github.io/FAKE/fxcop.html">Using FxCop in a build</a></li> <li><a href="http://fsharp.github.io/FAKE/assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="http://fsharp.github.io/FAKE/create-nuget-package.html">Create NuGet packages</a></li> <li><a href="http://fsharp.github.io/FAKE/specifictargets.html">Running specific targets</a></li> <li><a href="http://fsharp.github.io/FAKE/commandline.html">Running FAKE from command line</a></li> <li><a href="http://fsharp.github.io/FAKE/parallel-build.html">Running targets in parallel</a></li> <li><a href="http://fsharp.github.io/FAKE/fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="http://fsharp.github.io/FAKE/customtasks.html">Creating custom tasks</a></li> <li><a href="http://fsharp.github.io/FAKE/soft-dependencies.html">Soft dependencies</a></li> <li><a href="http://fsharp.github.io/FAKE/teamcity.html">TeamCity integration</a></li> <li><a href="http://fsharp.github.io/FAKE/canopy.html">Running canopy tests</a></li> <li><a href="http://fsharp.github.io/FAKE/octopusdeploy.html">Octopus Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/typescript.html">TypeScript support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurewebjobs.html">Azure WebJobs support</a></li> <li><a href="http://fsharp.github.io/FAKE/azurecloudservices.html">Azure Cloud Services support</a></li> <li><a href="http://fsharp.github.io/FAKE/fluentmigrator.html">FluentMigrator support</a></li> <li><a href="http://fsharp.github.io/FAKE/androidpublisher.html">Android publisher</a></li> <li><a href="http://fsharp.github.io/FAKE/watch.html">File Watcher</a></li> <li><a href="http://fsharp.github.io/FAKE/wix.html">WiX Setup Generation</a></li> <li><a href="http://fsharp.github.io/FAKE/chocolatey.html">Using Chocolatey</a></li> <li><a href="http://fsharp.github.io/FAKE/slacknotification.html">Using Slack</a></li> <li><a href="http://fsharp.github.io/FAKE/sonarcube.html">Using SonarQube</a></li> <li class="divider"></li> <li><a href="http://fsharp.github.io/FAKE/deploy.html">Fake.Deploy</a></li> <li><a href="http://fsharp.github.io/FAKE/iis.html">Fake.IIS</a></li> <li class="nav-header">Reference</li> <li><a href="http://fsharp.github.io/FAKE/apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="http://github.com/fsharp/fake"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> </body> </html>
ploeh/dependency-rejection-samples
FSharp/packages/FAKE/docs/apidocs/fake-unittesthelper.html
HTML
mit
9,935
--- layout: default title: --- <p>2013 Ant collecting! From FL to ME </p> <img src="/assets/ant_collecting.jpg"/> <p>2013-present common garden experiment</p> <img src="/assets/common_garden.jpg"/> <p>2014 Experimental set up to determine heat tolerance</p> <img src="/assets/heat_shocks.jpg"/> <p>2014 Gotelli-Brody lab</p> <img src="/assets/2014_brotelli_lab.jpg"/>
asmeyer/asmeyer.github.io
photo/index.html
HTML
mit
375
<div class="sheet-row"> <div class="sheet-cdiv"> <input class="sheet-HideConfig" type="checkbox" checked="checked" name="attr_is_config"><span class="sheet-is-config"><span style="font-family: &quot;pictos&quot;">y</span></span> <div class="sheet-config" style="border-style: dotted ; border-color: gray ; padding: 5px ; background-color: white ; background-image: none"> <div class="sheet-row"><h2 class="sheet-sectionHeader">CONFIGURATION</h2></div> <div class='sheet-2colrow'> <div class='sheet-col'> <input type="checkbox" name="attr_showhpbl" checked="checked"> Show "Fatigue Points"<br> <input type="checkbox" name="attr_showmjrwnd" > Show "Major Wound"<br> <input type="checkbox" name="attr_showedufld" checked="checked" >Show EDU<br /> <input type="checkbox" name="attr_showhitloc" checked="checked" >Show Hit Locations<br /> <input type="checkbox" name="attr_showstrike-rank" checked="checked" >Show Strike Ranks<br /> <input type="checkbox" name="attr_toggle-categories" checked="checked">Skills By Category<br /> </div> <div class='sheet-col'> <input type="checkbox" name="attr_toggle-alphabetic" >Alphabetical Skills<br /> <input type="checkbox" class="sheet-toggle-magic1" name="attr_toggle-magic1" />Magic / Powers <br /> </div> </div> </div> </div> <div class='sheet-2colrow'> <div style="width:45%"> <img src="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Basic_Roleplaying/Logo.jpg" /> </div> <!-- General character descriptions --> <div class='sheet-col'> <table style="width: 100%;"> <tr> <td>Name</td> <td><input type="text" name="attr_Name" style="width: 300px" /></td> </tr> <tr> <td>Race</td> <td> <input type="text" name="attr_Race" style="width: 219px" /> Sex <input type="text" name="attr_Sex" style="width: 50px" /> </td> </tr> <tr> <td>Handedness</td> <td> <input type="text" name="attr_Handedness" style="width: 106px" /> Height <input type="text" name="attr_Height" style="width: 50px" /> Weight <input type="text" name="attr_Weight" style="width: 50px" /> </td> </tr> <tr> <td>Description</td> <td><textarea rows="3" name="attr_Description" style="margin-bottom: 0px;height: 4em; width: 289px;" ></textarea></td> </tr> <tr> <td>Distinctive </br />Features</td> <td><textarea rows="3" name="attr_Features" style="margin-bottom: 0px;height: 4em; width: 289px;" ></textarea></td> </tr> <tr> <td>Gods/Religion</td> <td><input type="text" name="attr_Religion" style="width: 221px" /> Age<input type="text" name="attr_Age" style="width: 50px" /> </td> </tr> <tr> <td>Profession</td> <td> <input type="text" name="attr_Profession" style="width: 200px" /> Wealth <input type="text" name="attr_Wealth" style="width: 50px" /> </td> </tr> </table> </div> <!-- Characteristics & Rolls --> <div class='sheet-col'> <h3 style="margin-bottom: 0px; text-align: center; color: #FFF; background-color: #000;">Characteristics & Rolls</h3> <table class="sheet-characteristics"> <tbody> <tr> <td class=".sheet-chkfiller"><td> <div class="sheet-cdiv"> <td><p>STR</p></td> <td><input type="number" value="10" name="attr_STR" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{STR}}} {{success=[[ceil(@{STR}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Strength}}">Effort</button></td> <td><p>Dmg. Bonus</p></td> <td colspan="3"> <input type="text" name="attr_Damage_Bonus" value="0" style="margin-bottom: 0px;height: 24px ; width: 75px"> </tr> <tr> <td class=".sheet-chkfiller"><td> <td><p>CON</p></td> <td><input type="number" value="10" name="attr_CON" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{CON}}} {{success=[[ceil(@{CON}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Constitution}}">Stamina</button></td> <td> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"><p >Siz SR</p></div> </td> <td> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> <input type="number" name="attr_size_SR" /> </div> </td> <td></td> <td></td> </tr> <tr> <td class=".sheet-chkfiller"><td> <td><p>SIZ</p></td> <td><input type="number" value="10" name="attr_SIZ" /></td> <td ></td> <td> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> <p>Dex SR</p> </div> </td> <td> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> <input type="number" name="attr_dex_SR" /> </div> </td> <td></td> <td></td> </tr> <tr> <td class=".sheet-chkfiller"><td> <td><p>INT</p></td> <td><input type="number" value="10" name="attr_INT" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{INT}}} {{success=[[ceil(@{INT}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Intelligence}}">Idea</button></td> <td><p>MOV</p></td><td><input type="number" name="attr_mov" /></td> <td></td> <td></td> </tr> <tr> <td><input type="checkbox" name="attr_power-check" /><td> <td><p>POW</p></td> <td><input class="sheet-plain" value="10" type="number" name="attr_POW" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{POW}}} {{success=[[ceil(@{POW}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Power}}">Luck</button></td> <td><p>Hit Pts.</p></td> <td><input type="number" name="attr_cur_hp" /> <td>/</td> <td><input type="number" name="attr_max_hp" /></td> </tr> <tr> <td class=".sheet-chkfiller"><td> <td><p>DEX</p></td> <td><input type="number" value="10" name="attr_DEX" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{DEX}}} {{success=[[ceil(@{DEX}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Dexterity}}">Agility</button></td> <td><p>Power Pts.</p></td> <td><input type="number" name="attr_cur_mp" /> <td>/</td> <td><input type="number" name="attr_max_mp" /></td> </tr> <tr> <td class=".sheet-chkfiller"><td> <td><p>APP</p></td> <td><input type="number" value="10" name="attr_APP" /></td> <td><button class="sheet-characteristic-roll sheet-plain" style="width: 75px; font-size:15px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{APP}}} {{success=[[ceil(@{APP}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Appearance}}">Charisma</button></td> <div class="sheet-hpbl"> <td> <input type="checkbox" class="sheet-showhbpl" name="attr_showhpbl" checked="checked" style="display: none"> <div class="sheet-hpbl"><p>Ftg. Pts.</div></p></td> <td> <input type="checkbox" class="sheet-showhbpl" name="attr_showhpbl" checked="checked" style="display: none"> <div class="sheet-hpbl"><input type="number" name="attr_cur_ftgp" /></div> </td> <td> <input type="checkbox" class="sheet-showhbpl" name="attr_showhpbl" checked="checked" style="display: none"> <div class="sheet-hpbl">/</div> </td> <td> <input type="checkbox" class="sheet-showhbpl" name="attr_showhpbl" checked="checked" style="display: none"> <div class="sheet-hpbl"><input type="number" name="attr_max_ftgp" /></div> </td> </div> </tr> <tr> <td class=".sheet-chkfiller"><td> <td> <input type="checkbox" class="sheet-showedufld" name="attr_showedufld" checked="checked" style="display: none"> <div class="sheet-edufld"><p>EDU</p><div> </td> <td> <input type="checkbox" class="sheet-showedufld" name="attr_showedufld" checked="checked" style="display: none"> <div class="sheet-edufld"><input type="number" value="10" name="attr_EDU" /></div> </td> <td> <input type="checkbox" class="sheet-showedufld" name="attr_showedufld" checked="checked" style="display: none"> <div class="sheet-edufld"> <button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:characteristicRoll} {{name=@{Name}}} {{skillvalue=@{EDU}}} {{success=[[ceil(@{EDU}*?{Multiplier|Normal, 5|Easy, 10|Difficult, 5/2|x4, 4|x3, 3|x2, 2|x1, 1})]]}} {{roll=[[1d100]]}} {{skillname=Education}}">Know</button> </div> </td> <td> <button class="sheet-characteristic-roll sheet-plain" style="width: 75px" type="roll" value="&{template:sanityRoll} {{name=@{Name}}} {{skillvalue=@{cur_san}}} {{success=[[@{cur_san}]]}} {{roll=[[1d100]]}} {{skillname=Sanity}}">SAN</button> </td> <td><input type="number" name="attr_cur_san" /></td> <td>/</td> <td><input type="number" name="attr_max_san" /></td> </tr> <tr> <td class=".sheet-chkfiller"><td> <td></td> <td></td> <td></td> <td> <button class="sheet-characteristic-roll sheet-plain" style="width: 75px; font-size:13px" type="roll" value="&{template:ResistanceRoll} {{name=@{Name}}} {{skillvalue1=@{Active_Characteristic}}} {{skillvalue2=@{Passive_Characteristic}}} {{success=[[50+((@{Active_Characteristic}-@{Passive_Characteristic})*5)]]}} {{roll=[[1d100]]}} ">Resistance <br> Table</button> </td> <td><input type="number" value="0" name="attr_Active_Characteristic" /></td> <td>vs</td> <td><input type="number" value="0" name="attr_Passive_Characteristic" /></td> </tr> </tbody> </table> </div> </div> </div> <hr/> <!-- ********************************************************************************************************************* --> <!-- Start of alpahbetical skills--> <input type="checkbox" class="sheet-toggle-alphabetical" name="attr_toggle-alphabetic" style="display: none"> <div class="sheet-skills-alphabetical" /> <p> <h3 class="sheet-skills-header">Skills</h3> <div class="skillmod"> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> </div> <div class='sheet-3colrow'> <div class='sheet-col'> <!-- Col 1 --> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Appraise" /></td> <td class="sheet-skillname">Appraise (15%)</td> <td><input type="number" style="width:105%" value="15" name="attr_Appraise" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Appraise}}} {{fumble=[[ceil(95+(@{Appraise}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Appraise}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Appraise}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Appraise}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Appraise}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Art(05):</td> </tr> </table> <fieldset class='repeating_artskills'> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_artSuccess" /></td> <td><input type="text" name="attr_artSkillname" class="sheet-skillname" /></td> <td><input type="number" style="width:105%" value="5" name="attr_artScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{artScore}}} {{fumble=[[ceil(95+(@{artScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{artScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{artScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{artScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{artSkillname}}}"/></td> </tr> </table> </fieldset> <table style="width: 100%"> </tr> <tr> <td><input type="checkbox" name="attr_Success-Bargain" /></td> <td class="sheet-skillname">Bargain (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Bargain" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{success=[[ceil(@{Bargain}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Bargain}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Bargain}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Bargain}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{Bargain}}} {{roll=[[1d100]]}} {{skillname=Bargain}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Climb" /></td> <td class="sheet-skillname">Climb (40%)</td> <td><input type="number" style="width:105%" value="40" name="attr_Climb" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Climb}}} {{fumble=[[ceil(95+(@{Climb}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Climb}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Climb}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Climb}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Climb}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Command" /></td> <td class="sheet-skillname">Command (05)</td> <td><input type="number" style="width:105%" value="5" name="attr_Command" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Command}}} {{fumble=[[ceil(95+(@{Command}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Command}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Command}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Command}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Command}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Craft(05):</td> </tr> </table> <fieldset class='repeating_craftskills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_craftSuccess" /></td> <td><input type="text" name="attr_craftSkillname" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="5" style="width:105%" value="5" name="attr_craftScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{craftScore}}} {{fumble=[[ceil(95+(@{craftScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{craftScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{craftScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{craftScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{craftSkillname}}}"/></td> </table> </fieldset> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Demolition" /></td> <td class="sheet-skillname">Demolition (01%)</td> <td><input type="number" style="width:105%" value="1" name="attr_Demolition" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Demolition}}} {{fumble=[[ceil(95+(@{Demolition}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Demolition}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Demolition}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Demolition}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Demolition}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Disguise" /></td> <td class="sheet-skillname">Disguise (01)</td> <td><input type="number" style="width:105%" value="1" name="attr_Disguise" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Disguise}}} {{fumble=[[ceil(95+(@{Disguise}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Disguise}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Disguise}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Disguise}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Disguise}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Dodge" /></td> <td class="sheet-skillname">Dodge (DEX x02%)</td> <td><input type="number" style="width:105%" name="attr_Dodge" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Dodge}}} {{fumble=[[ceil(95+(@{Dodge}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Dodge}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Dodge}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Dodge}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Dodge}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Drive(Varies):</td> </tr> </table> <fieldset class='repeating_DriveSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_DriveSucess" /></td> <td><input type="text" name="attr_DriveSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_DriveScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{DriveScore}}} {{fumble=[[ceil(95+(@{DriveScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{DriveScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{DriveScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{DriveScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Drive}}"/></td> </fieldset> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Etiquette" /></td> <td class="sheet-skillname">Etiquette (05)</td> <td><input type="number" style="width:105%" value="5" name="attr_Etiquette" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Etiquette}}} {{fumble=[[ceil(95+(@{Etiquette}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Etiquette}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Etiquette}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Etiquette}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Etiquette}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FastTalk" /></td> <td class="sheet-skillname">Fast Talk (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_FastTalk" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{FastTalk}}} {{fumble=[[ceil(95+(@{FastTalk}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{FastTalk}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{FastTalk}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{FastTalk}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Fast Talk}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FineManipulation" /></td> <td class="sheet-skillname">Fine Manipulation (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_FineManipulation" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{FineManipulation}}} {{fumble=[[ceil(95+(@{FineManipulation}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{FineManipulation}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{FineManipulation}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{FineManipulation}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Fine Manip.}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FirstAid" /></td> <td class="sheet-skillname">First Aid (30% or INT x1)</td> <td><input type="number" style="width:105%" name="attr_FirstAid" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{FirstAid}}} {{fumble=[[ceil(95+(@{FirstAid}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{FirstAid}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{FirstAid}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{FirstAid}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=First Aid}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Gaming" /></td> <td class="sheet-skillname">Gaming (INT+POW)</td> <td><input type="number" style="width:105%" name="attr_Gaming" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Gaming}}} {{fumble=[[ceil(95+(@{Gaming}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Gaming}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Gaming}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Gaming}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Gaming}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Heavy Machine (01%):</td> </tr> </table> <fieldset class='repeating_hMachineSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_hMachineSuccess" /></td> <td><input type="text" name="attr_hMachineSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="1" name="attr_hMachineScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{hMachineScore}}} {{fumble=[[ceil(95+(@{hMachineScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{hMachineScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{hMachineScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{hMachineScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{hMachineSkills}}}"/></td> </fieldset> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Hide" /></td> <td class="sheet-skillname">Hide (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Hide" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Hide}}} {{fumble=[[ceil(95+(@{Hide}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Hide}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Hide}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Hide}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Hide}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Insight" /></td> <td class="sheet-skillname">Insight (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Insight" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Insight}}} {{fumble=[[ceil(95+(@{Insight}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Insight}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Insight}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Insight}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Insight}}"/></td> </tr> </table> <!-- End of Col 1 --> </div> <!-- col 1 close --> <div class='sheet-col'><!-- col 2 start --> <!-- Start of Col 2 --> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Jump" /></td> <td class="sheet-skillname">Jump (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Jump" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Jump}}} {{fumble=[[ceil(95+(@{Jump}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Jump}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Jump}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Jump}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Jump}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Knowledge (Varies):</td> </tr> </table> <fieldset class='repeating_KnowSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_KnowSucess" /></td> <td><input type="text" name="attr_KnowSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_KnowScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{KnowScore}}} {{fumble=[[ceil(95+(@{KnowScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{KnowScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{KnowScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{KnowScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{KnowSkills}}}"/></td> </fieldset> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-ownLang" /></td> <td class="sheet-skillname">Language, Own (INT/EDUx5%)</td> <td><input type="number" style="width:105%" name="attr_ownLang" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{ownLang}}} {{fumble=[[ceil(95+(@{ownLang}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{ownLang}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{ownLang}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{ownLang}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Own Language}}"/></td> </tr> </table> <fieldset class='repeating_Langskills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_LangSuccess" /></td> <td><input type="text" name="attr_LangSkillname" class="sheet-repeat-skillname" /></td> <td><input type="number" style="width:105%" name="attr_LangScore" /></td></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{LangScore}}} {{fumble=[[ceil(95+(@{LangScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{LangScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{LangScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{LangScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{LangSkillname}}}"/></td> </fieldset> </table> <table style="width: 100%"> <tr> <td><input type="checkbox" name="attr_Success-Listen" /></td> <td class="sheet-skillname">Listen (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Listen" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Listen}}} {{fumble=[[ceil(95+(@{Listen}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Listen}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Listen}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Listen}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Listen}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Literacy (Varies):</td> </tr> </table> <fieldset class='repeating_LitSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_LitSucess" /></td> <td><input type="text" name="attr_LitSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_LitScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{LitScore}}} {{fumble=[[ceil(95+(@{LitScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{LitScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{LitScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{LitScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{LitSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Martial Arts (1%):</td> </tr> </table> <fieldset class='repeating_MartialArtsSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_Success-MartialArts" /></td> <td><input type="text" name="attr_MartialArtSkill" class="sheet-skillname"/></td> <td><input type="number" value="1" name="attr_MartialArts" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{MartialArts}}} {{fumble=[[ceil(95+((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{MartialArtSkill}}}"/></td> </table> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Medicine" /></td> <td class="sheet-skillname">Medicine (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Medicine" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Medicine}}} {{fumble=[[ceil(95+(@{Medicine}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Medicine}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Medicine}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Medicine}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Medicine}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Navigate" /></td> <td class="sheet-skillname">Navigate (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Navigate" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Navigate}}} {{fumble=[[ceil(95+(@{Navigate}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Navigate}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Navigate}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Navigate}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Navigate}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Perform (05%):</td> </tr> </table> <fieldset class='repeating_PerformSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_Success-Perform" /></td> <td><input type="text" name="attr_PerformSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="5" name="attr_Perform" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Perform}}} {{fumble=[[ceil(95+(@{Perform}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Perform}*?{Multipler}+?{Mods|0})/20)+1]]}} {{special=[[ceil((@{Perform}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Perform}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{PerformSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Persuade" /></td> <td class="sheet-skillname">Persuade (15%)</td> <td><input type="number" style="width:105%" value="15" name="attr_Persuade" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Persuade}}} {{fumble=[[ceil(95+(@{Persuade}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Persuade}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Persuade}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Persuade}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Persuade}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Pilot(Varies):</td> </tr> </table> <fieldset class='repeating_PilotSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_PilotSucess" /></td> <td><input type="text" name="attr_PilotSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_PilotScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{PilotScore}}} {{fumble=[[ceil(95+(@{PilotScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{PilotScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{PilotScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{PilotScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{PilotSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Projection" /></td> <td class="sheet-skillname">Projection(DEX x02%)</td> <td><input type="number" style="width:105%" name="attr_Projection" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Projection}}} {{fumble=[[ceil(95+(@{Projection}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Projection}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Projection}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Projection}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Projection}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Psychotherapy" /></td> <td class="sheet-skillname">Psychotherapy(00% or 01%)</td> <td><input type="number" style="width:105%" name="attr_Psychotherapy" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Psychotherapy}}} {{fumble=[[ceil(95+(@{Psychotherapy}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Psychotherapy}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Psychotherapy}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Psychotherapy}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Psychotherapy}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td class="sheet-skillname">Repair (15%)</td> </tr> </table> <fieldset class='repeating_repairSkills'></td> <table style="width: 100%"> <td><input type="checkbox" name="attr_repairSuccess" /></td> <td><input type="text" name="attr_repairSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="15" name="attr_repairScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{repairScore}}} {{fumble=[[ceil(95+(@{repairScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{repairScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{repairScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{repairScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{repairSkills}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Research" /></td> <td class="sheet-skillname">Research (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Research" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Research}}} {{fumble=[[ceil(95+(@{Research}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Research}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Research}*@{Multiplier}+@{Mods})/5)+1]]}} {{1/2success=[[ceil((@{Research}*@{Multiplier}+@{Mods})/2)+1]]}} {{success=[[ceil(@{Research}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Research}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Ride(Varies):</td> </tr> </table> <fieldset class='repeating_RideSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_RideSucess" /></td> <td><input type="text" name="attr_RideSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_RideScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{RideScore}}} {{fumble=[[ceil(95+(@{RideScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{RideScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{RideScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{RideScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{RideSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Science (01%)</td> </tr> </table> <fieldset class='repeating_ScienceSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_ScienceSucess" /></td> <td><input type="text" name="attr_ScienceSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="1" name="attr_ScienceScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{ScienceScore}}} {{fumble=[[ceil(95+(@{ScienceScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{ScienceScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{ScienceScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{ScienceScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{ScienceSkill}}}"/></td> </fieldset> </div><!-- col 2 close --> <div class="sheet-col"> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Sense" /></td> <td class="sheet-skillname">Sense (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Sense" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Sense}}} {{fumble=[[ceil(95+(@{Sense}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Sense}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Sense}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Sense}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Sense}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_SleightofHandSuccess" /></td> <td class="sheet-skillname">Sleight of Hand (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_SleightofHandScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{SleightofHandScore}}} {{fumble=[[ceil(95+(@{SleightofHandScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{SleightofHandScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{SleightofHandScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{SleightofHandScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Sleight of Hand}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Spot" /></td> <td class="sheet-skillname">Spot (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Spot" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Spot}}} {{fumble=[[ceil(95+(@{Spot}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Spot}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Spot}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Spot}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Spot}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Status" /></td> <td class="sheet-skillname">Status (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Status" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Status}}} {{fumble=[[ceil(95+(@{Status}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Status}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Status}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Status}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Status}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Stealth" /></td> <td class="sheet-skillname">Stealth (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Stealth" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Stealth}}} {{fumble=[[ceil(95+(@{Stealth}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Stealth}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Stealth}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Stealth}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Stealth}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Strategy" /></td> <td class="sheet-skillname">Strategy (01%)</td> <td><input type="number" style="width:105%" value="1" style="width:105%" value="1" name="attr_Strategy" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Strategy}}} {{fumble=[[ceil(95+(@{Strategy}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Strategy}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Strategy}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Strategy}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Strategy}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Swim" /></td> <td class="sheet-skillname">Swim (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Swim" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Swim}}} {{fumble=[[ceil(95+(@{Swim}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Swim}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Swim}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Swim}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Swim}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Teach" /></td> <td class="sheet-skillname">Teach (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Teach" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Teach}}} {{fumble=[[ceil(95+(@{Teach}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Teach}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Teach}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Teach}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Teach}}"/></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Technical Skill(Varies):</td> </tr> </table> <fieldset class='repeating_TechSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_TechSucess" /></td> <td><input type="text" name="attr_TechSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_TechScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{TechScore}}} {{fumble=[[ceil(95+(@{TechScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{TechScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{TechScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{TechScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{TechSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Throw" /></td> <td class="sheet-skillname">Throw (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_throw" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{throw}}} {{fumble=[[ceil(95+(@{throw}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{throw}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{throw}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{throw}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Throw}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Track " /></td> <td class="sheet-skillname">Track (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Track" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Track}}} {{fumble=[[ceil(95+(@{Track}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Track}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Track}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Track}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Track}}"/></td> </tr> </table> <br /> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td><strong>Other Skills</strong></td> </tr> </table> <fieldset class='repeating_OtherSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_OtherSucess" /></td> <td><input type="text" name="attr_OtherSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="1" name="attr_OtherScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{OtherScore}}} {{fumble=[[ceil(95+(@{OtherScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{OtherScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{OtherScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{OtherScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{OtherSkill}}}"/></td> </fieldset> <br /> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td><strong>Combat</strong></td> <td></td> <td></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Melee (Physical)</td> </tr> </table> <fieldset class='repeating_meleeSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_meleeSucess" /></td> <td><input type="text" name="attr_meleeSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_meleeScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{meleeScore}}} {{fumble=[[ceil(95+(@{meleeScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{meleeScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{meleeScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{meleeScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{meleeSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Ranged (Manip.)</td> </tr> </table> <fieldset class='repeating_rangedSkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_rangedSucess" /></td> <td><input type="text" name="attr_rangedSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_rangedScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{rangedScore}}} {{fumble=[[ceil(95+(@{rangedScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{rangedScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{rangedScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{rangedScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{rangedSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Artillery (Manip.)</td> </tr> </table> <fieldset class='repeating_artillerySkills'> <table style="width: 100%"> <td><input type="checkbox" name="attr_ArtillerySucess" /></td> <td><input type="text" name="attr_ArtillerySkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_ArtilleryScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{ArtilleryScore}}} {{fumble=[[ceil(95+(@{ArtilleryScore}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{ArtilleryScore}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{ArtilleryScore}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{ArtilleryScore}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{ArtillerySkill}}}"/></td> </fieldset> <br /> <br> </div> </div> </p> <div class="skillmod"> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> </div> </div> <!--End of alabetical skills--> <!-- ********************************************************************************************************************* --> <!-- Start of skills by category--> <input type="checkbox" class="sheet-toggle-categories" name="attr_toggle-categories" checked="checked" style="display: none"> <div class="sheet-skills-by-category" /> <p> <h3 class="sheet-skills-header">Skills</h3> <div class="skillmod"> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> </div> <div class='sheet-3colrow'> <div class='sheet-col'> <!-- Communication --> <table style="width: 100%;"> <tr> <td style="width:20px"></td> <td><b class="sheet-cat_header">Communication</b></td> <td><input type="number" name="attr_Communication" value="0" /></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Bargain" /></td> <td class="sheet-skillname">Bargain (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Bargain" /></td> <td><button type="roll" value="&{template:skillRoll} {{fumble=[[ceil(95+((@{Bargain}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Bargain}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Bargain}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Bargain}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{skillvalue=@{Bargain}}} {{roll=[[1d100]]}} {{skillname=Bargain}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Command" /></td> <td class="sheet-skillname">Command (05)</td> <td><input type="number" style="width:105%" value="5" name="attr_Command" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Command}}} {{fumble=[[ceil(95+((@{Command}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Command}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Command}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Command}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Command}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Disguise" /></td> <td class="sheet-skillname">Disguise (01)</td> <td><input type="number" style="width:105%" value="1" name="attr_Disguise" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Disguise}}} {{fumble=[[ceil(95+((@{Disguise}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Disguise}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Disguise}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Disguise}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Disguise}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Etiquette" /></td> <td class="sheet-skillname">Etiquette (05)</td> <td><input type="number" style="width:105%" value="5" name="attr_Etiquette" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Etiquette}}} {{fumble=[[ceil(95+((@{Etiquette}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Etiquette}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Etiquette}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Etiquette}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Etiquette}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FastTalk" /></td> <td class="sheet-skillname">Fast Talk (05)</td> <td><input type="number" style="width:105%" value="5" name="attr_FastTalk" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{FastTalk}}} {{fumble=[[ceil(95+((@{FastTalk}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{FastTalk}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{FastTalk}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{FastTalk}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Fast Talk}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-ownLang" /></td> <td class="sheet-skillname">Language, Own (INT/EDUx5%)</td> <td><input type="number" style="width:105%" name="attr_ownLang" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{ownLang}}} {{fumble=[[ceil(95+((@{ownLang}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{ownLang}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{ownLang}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{ownLang}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Own Language}}"/></td> </tr> </table> <fieldset class='repeating_Langskills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_LangSuccess" /></td> <td><input type="text" name="attr_LangSkillname" class="sheet-repeat-skillname" /></td> <td><input type="number" style="width:105%" name="attr_LangScore" /></td></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{LangScore}}} {{fumble=[[ceil(95+((@{LangScore}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{LangScore}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{LangScore}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{LangScore}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{LangSkillname}}}"/></td> </fieldset> </table> <table style="width:100%;"> <tr> <td><input type="checkbox" name="attr_Success-Perform" /></td> <td class="sheet-skillname">Perform (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Perform" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Perform}}} {{fumble=[[ceil(95+((@{Perform}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Perform}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Perform}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Perform}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Perform}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Persuade" /></td> <td class="sheet-skillname">Persuade (15%)</td> <td><input type="number" style="width:105%" value="15" name="attr_Persuade" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Persuade}}} {{fumble=[[ceil(95+((@{Persuade}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Persuade}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Persuade}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Persuade}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Persuade}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Status" /></td> <td class="sheet-skillname">Status (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Status" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Status}}} {{fumble=[[ceil(95+((@{Status}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Status}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Status}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Status}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Status}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Teach" /></td> <td class="sheet-skillname">Teach (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Teach" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Teach}}} {{fumble=[[ceil(95+((@{Teach}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Teach}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Teach}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Teach}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Teach}}"/></td> </tr> </table> <fieldset class='repeating_commskills'> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_ComSuccess" /></td> <td><input type="text" name="attr_ComSkillname" class="sheet-skillname" /></td> <td><input type="number" style="width:105%" name="attr_ComScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{ComScore}}} {{fumble=[[ceil(95+((@{ComScore}+@{Communication})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{ComScore}+@{Communication})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{ComScore}+@{Communication})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{ComScore}+@{Communication})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{ComSkillname}}}"/></td> </tr> </table> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td><b class="sheet-cat_header">Manipulation</b></td> <td><input type="number" name="attr_manipulation" value="0" /></td> </tr> <tr> <td class="sheet-chkfiller"></td> <td>Art(05):</td> </tr> </table> <fieldset class='repeating_artskills'> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_artSuccess" /></td> <td><input type="text" name="attr_artSkillname" class="sheet-skillname" /></td> <td><input type="number" style="width:105%" value="5" name="attr_artScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{artScore}}} {{fumble=[[ceil(95+((@{artScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{artScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{artScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{artScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{artSkillname}}}"/></td> </tr> </table> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Craft(05):</td> </tr> </table> <fieldset class='repeating_craftskills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_craftSuccess" /></td> <td><input type="text" name="attr_craftSkillname" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="5" name="attr_craftScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{craftScore}}} {{fumble=[[ceil(95+((@{craftScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{craftScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{craftScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{craftScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{craftSkillname}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Demolition" /></td> <td class="sheet-skillname">Demolition (01%)</td> <td><input type="number" style="width:105%" value="1" name="attr_Demolition" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Demolition}}} {{fumble=[[ceil(95+((@{Demolition}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Demolition}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Demolition}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Demolition}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Demolition}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FineManipulation" /></td> <td class="sheet-skillname">Fine Manipulation (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_FineManipulation" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{FineManipulation}}} {{fumble=[[ceil(95+((@{FineManipulation}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{FineManipulation}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{FineManipulation}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{FineManipulation}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Fine Manip.}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Heavy Machine (01%):</td> </tr> </table> <fieldset class='repeating_hMachineSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_hMachineSuccess" /></td> <td><input type="text" name="attr_hMachineSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="1" name="attr_hMachineScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{hMachineScore}}} {{fumble=[[ceil(95+((@{hMachineScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{hMachineScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{hMachineScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{hMachineScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{hMachineSkills}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td class="sheet-skillname">Repair (15%)</td> </tr> </table> <fieldset class='repeating_repairSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_repairSuccess" /></td> <td><input type="text" name="attr_repairSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="15" name="attr_repairScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{repairScore}}} {{fumble=[[ceil(95+((@{repairScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{repairScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{repairScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{repairScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{repairSkills}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_SleightofHandSuccess" /></td> <td class="sheet-skillname">Sleight of Hand (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_SleightofHandScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{SleightofHandScore}}} {{fumble=[[ceil(95+((@{SleightofHandScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{SleightofHandScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{SleightofHandScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{SleightofHandScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Sleight of Hand}}"/></td> </tr> </table> <fieldset class='repeating_manipkills'> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_manipSuccess" /></td> <td><input type="text" name="attr_manipSkillname" class="sheet-skillname" /></td> <td><input type="number" style="width:105%" name="attr_manipScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{manipScore}}} {{fumble=[[ceil(95+((@{manipScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{manipScore}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{manipScore}+@{Manipulation})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{manipScore}+@{Manipulation})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{manipSkillname}}}"/></td> </tr> </table> </fieldset> </div> <!-- Mental --> <div class='sheet-col'> <table style="width: 100%;"> <tr> <td style="width:20px"></td> <td><b class="sheet-cat_header">Mental</b></td> <td><input type="number" name="attr_Mental" value="0"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Appraise" /></td> <td class="sheet-skillname">Appraise (15%)</td> <td><input type="number" style="width:105%" value="15" name="attr_Appraise" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Appraise}}} {{fumble=[[ceil(95+((@{Appraise}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Appraise}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Appraise}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Appraise}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Appraise}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-FirstAid" /></td> <td class="sheet-skillname">First Aid (30% or INT x1)</td> <td><input type="number" style="width:105%" value="30" name="attr_FirstAid" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{FirstAid}}} {{fumble=[[ceil(95+((@{FirstAid}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{FirstAid}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{FirstAid}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{FirstAid}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=First Aid}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Gaming" /></td> <td class="sheet-skillname">Gaming (INT+POW)</td> <td><input type="number" style="width:105%" name="attr_Gaming" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Gaming}}} {{fumble=[[ceil(95+((@{Gaming}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Gaming}+@{Manipulation})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Gaming}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Gaming}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Gaming}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Psychotherapy" /></td> <td class="sheet-skillname">Psychotherapy (00 or 01)</td> <td><input type="number" style="width:105%" value="1" name="attr_Psychotherapy" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Psychotherapy}}} {{fumble=[[ceil(95+((@{Psychotherapy}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Psychotherapy}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Psychotherapy}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Psychotherapy}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Psychotherapy}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Knowledge (Varies):</td> </tr> </table> <fieldset class='repeating_knowSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_KnowSucess" /></td> <td><input type="text" name="attr_KnowSkills" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_KnowScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{KnowScore}}} {{fumble=[[ceil(95+((@{KnowScore}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{KnowScore}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{KnowScore}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{KnowScore}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{KnowSkills}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Literacy (Varies):</td> </tr> </table> <fieldset class='repeating_LitSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_LitSucess" /></td> <td><input type="text" name="attr_LitSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_LitScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{LitScore}}} {{fumble=[[ceil(95+((@{LitScore}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{LitScore}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{LitScore}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{LitScore}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{LitSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Medicine" /></td> <td class="sheet-skillname">Medicine (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Medicine" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Medicine}}} {{fumble=[[ceil(95+((@{Medicine}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Medicine}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Medicine}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Medicine}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Medicine}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Science (01%)</td> </tr> </table> <fieldset class='repeating_ScienceSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_ScienceSucess" /></td> <td><input type="text" name="attr_ScienceSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" value="1" name="attr_ScienceScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{ScienceScore}}} {{fumble=[[ceil(95+((@{ScienceScore}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{ScienceScore}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{ScienceScore}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{ScienceScore}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{ScienceSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Strategy" /></td> <td class="sheet-skillname">Strategy (01%)</td> <td><input type="number" style="width:105%" value="1" name="attr_Strategy" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Strategy}}} {{fumble=[[ceil(95+((@{Strategy}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Strategy}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Strategy}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Strategy}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Strategy}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Technical Skill(Varies):</td> </tr> </table> <fieldset class='repeating_TechSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_TechSucess" /></td> <td><input type="text" name="attr_TechSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_TechScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{TechScore}}} {{fumble=[[ceil(95+((@{TechScore}+@{Mental})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{TechScore}+@{Mental})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{TechScore}+@{Mental})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{TechScore}+@{Mental})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{TechSkill}}}"/></td> </fieldset> <!-- Perception --> <table style="width: 100%;"> <tr> <td style="width:20px"></td> <td class="sheet-skillname"><b class="sheet-cat_header">Perception</b></td> <td><input type="number" name="attr_Perception" value="0" /></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Insight" /></td> <td class="sheet-skillname">Insight (05%)</td> <td><input type="number" style="width:105%" value="5" name="attr_Insight" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Insight}}} {{fumble=[[ceil(95+((@{Insight}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Insight}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Insight}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Insight}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Insight}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Listen" /></td> <td class="sheet-skillname">Listen (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Listen" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Listen}}} {{fumble=[[ceil(95+((@{Listen}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Listen}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Listen}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Listen}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Listen}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Navigate" /></td> <td class="sheet-skillname">Navigate (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Navigate" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Navigate}}} {{fumble=[[ceil(95+((@{Navigate}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Navigate}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Navigate}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Navigate}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Navigate}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Research" /></td> <td class="sheet-skillname">Research (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Research" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Research}}} {{fumble=[[ceil(95+((@{Research}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Research}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Research}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Research}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Research}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Sense" /></td> <td class="sheet-skillname">Sense (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Sense" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Sense}}} {{fumble=[[ceil(95+((@{Sense}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Sense}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Sense}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Sense}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Sense}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Spot" /></td> <td class="sheet-skillname">Spot (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Spot" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Spot}}} {{fumble=[[ceil(95+((@{Spot}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Spot}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Spot}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Spot}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Spot}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Track " /></td> <td class="sheet-skillname">Track (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Track" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Track}}} {{fumble=[[ceil(95+((@{Track}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Track}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Track}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Track}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Track}}"/></td> </tr> </table> <fieldset class='repeating_PercepSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_PercepSucess" /></td> <td><input type="text" name="attr_PercepSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_PercepScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{PercepScore}}} {{fumble=[[ceil(95+((@{PercepScore}+@{Perception})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{PercepScore}+@{Perception})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{PercepScore}+@{Perception})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{PercepScore}+@{Perception})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{PercepSkill}}}"/></td> </fieldset> </div> <div class="sheet-col"> <!-- Physical --> <table style="width: 100%;"> <tr> <td style="width:20px"></td> <td><b class="sheet-cat_header">Physical</b></td> <td><input type="number" name="attr_Physical" value="0" /></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Climb" /></td> <td class="sheet-skillname">Climb (40%)</td> <td><input type="number" style="width:105%" value="40" name="attr_Climb" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Climb}}} {{fumble=[[ceil(95+((@{Climb}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Climb}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Climb}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Climb}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Climb}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Dodge" /></td> <td class="sheet-skillname">Dodge (DEX x02%)</td> <td><input type="number" style="width:105%" name="attr_Dodge" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Dodge}}} {{fumble=[[ceil(95+((@{Dodge}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Dodge}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Dodge}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Dodge}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Dodge}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Drive(Varies):</td> </tr> </table> <fieldset class='repeating_DriveSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_DriveSucess" /></td> <td><input type="text" name="attr_DriveSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_DriveScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{DriveScore}}} {{fumble=[[ceil(95+((@{DriveScore}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{DriveScore}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{DriveScore}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{DriveScore}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{DriveSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Hide" /></td> <td class="sheet-skillname">Hide (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Hide" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Hide}}} {{fumble=[[ceil(95+((@{Hide}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Hide}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Hide}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Hide}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Hide}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Jump" /></td> <td class="sheet-skillname">Jump (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Jump" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Jump}}} {{fumble=[[ceil(95+((@{Jump}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Jump}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Jump}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Jump}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Jump}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Pilot(Varies):</td> </tr> </table> <fieldset class='repeating_PilotSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_PilotSucess" /></td> <td><input type="text" name="attr_PilotSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_PilotScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{PilotScore}}} {{fumble=[[ceil(95+((@{PilotScore}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{PilotScore}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{PilotScore}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{PilotScore}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{PilotSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Projection" /></td> <td class="sheet-skillname">Projection (DEX x02%)</td> <td><input type="number" style="width:105%" name="attr_Projection" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Projection}}} {{fumble=[[ceil(95+((@{Projection}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Projection}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Projection}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Projection}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Projection}}"/></td> </tr> </table> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Ride(Varies):</td> </tr> </table> <fieldset class='repeating_RideSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_RideSucess" /></td> <td><input type="text" name="attr_RideSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_RideScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{RideScore}}} {{fumble=[[ceil(95+((@{RideScore}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{RideScore}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{RideScore}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{RideScore}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{RideSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success-Stealth" /></td> <td class="sheet-skillname">Stealth (10%)</td> <td><input type="number" style="width:105%" value="10" name="attr_Stealth" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Stealth}}} {{fumble=[[ceil(95+((@{Stealth}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Stealth}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Stealth}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Stealth}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Stealth}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Swim" /></td> <td class="sheet-skillname">Swim (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_Swim" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{Swim}}} {{fumble=[[ceil(95+((@{Swim}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{Swim}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{Swim}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{Swim}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Swim}}"/></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Throw" /></td> <td class="sheet-skillname">Throw (25%)</td> <td><input type="number" style="width:105%" value="25" name="attr_throw" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{throw}}} {{fumble=[[ceil(95+((@{throw}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{throw}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{throw}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{throw}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Throw}}"/></td> </tr> </table> <fieldset class='repeating_PhysicalSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_PhysicalSucess" /></td> <td><input type="text" name="attr_PhysicalSkill" class="sheet-skillname"/></td> <td><input type="number" style="width:105%" name="attr_PhysicalScore" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{PhysicalScore}}} {{fumble=[[ceil(95+((@{PhysicalScore}+@{Physical})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{PhysicalScore}+@{Physical})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{PhysicalScore}+@{Physical})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{PhysicalScore}+@{Physical})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{PhysicalSkill}}}"/></td> </fieldset> <!-- Combat --> <table style="width: 100%;"> <tr> <td style="width:20px"></td> <td><b class="sheet-cat_header">Combat</b></td> <td><input type="number" name="attr_Combat" value="0"/></td> </tr> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Martial Arts (1%):</td> </tr> </table> <fieldset class='repeating_MartialArtsSkills'> <table style="width: 100%;"> <td><input type="checkbox" name="attr_Success-MartialArts" /></td> <td><input type="text" name="attr_MartialArtSkill" class="sheet-skillname"/></td> <td><input type="number" value="1" name="attr_MartialArts" /></td> <td><button type="roll" value="&{template:skillRoll} {{skillvalue=@{MartialArts}}} {{fumble=[[ceil(95+((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{MartialArts}+@{Combat})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{MartialArtSkill}}}"/></td> </table> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Melee</td> </tr> </table> <fieldset class='repeating_meleeSkills'> <input type="checkbox" name="attr_meleeSucess" /> <input type="text" name="attr_meleeSkill" class="sheet-skillname"/> <input type="number" name="attr_meleeScore" /> <button type="roll" value="&{template:skillRoll} {{skillvalue=@{meleeScore}}} {{fumble=[[ceil(95+((@{meleeScore}+@{Combat})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{meleeScore}+@{Combat})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{meleeScore}+@{Combat})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{meleeScore}+@{Combat})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{meleeSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Ranged</td> </tr > </table> <fieldset class='repeating_rangedSkills'> <input type="checkbox" name="attr_rangedSucess" /> <input type="text" name="attr_rangedSkill" class="sheet-skillname"/> <input type="number" name="attr_rangedScore" /> <button type="roll" value="&{template:skillRoll} {{skillvalue=@{rangedScore}}} {{fumble=[[ceil(95+((@{rangedScore}+@{Combat})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{rangedScore}+@{Combat})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{rangedScore}+@{Combat})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{rangedScore}+@{Combat})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{rangedSkill}}}"/></td> </fieldset> <table style="width: 100%;"> <tr> <td class="sheet-chkfiller"></td> <td>Artillery</td> </tr> </table> <fieldset class='repeating_artillerySkills'> <input type="checkbox" name="attr_ArtillerySucess" /> <input type="text" name="attr_ArtillerySkill" class="sheet-skillname"/> <input type="number" name="attr_ArtilleryScore" /> <button type="roll" value="&{template:skillRoll} {{skillvalue=@{ArtilleryScore}}} {{fumble=[[ceil(95+((@{ArtilleryScore}+@{Combat})*@{Multiplier}+@{Mods})/20)]]}} {{crit=[[ceil(((@{ArtilleryScore}+@{Combat})*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil(((@{ArtilleryScore}+@{Combat})*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil((@{ArtilleryScore}+@{Combat})*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{ArtillerySkill}}}"/></td> </fieldset> </div> </div> </p> <div class="skillmod"> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> </div> </div> <!--End of Skills by category--> <hr /> <div class='sheet-2colrow'> <div class='sheet-col sheet-big-col'> <h3 style="text-align: center; color: #FFF; background-color: #000;">Hand-To-Hand Weapons</h3> <div style="text-align: center; width:100%; font-size:0.8em"><b>*For the button to work correctly fill in skill and damage and select a damage bonus*</b></div> <table style="width: 100%;"> <thead class="sheet-header-text"> <th></th> <th style="text-align: left;">Weapon</th> <th> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> SR </div> </td> <th>Range</th> <th>Skill %</th> <th>Special</th> <th>Damage</th> <th>HP</th> <th>Damage<br>Bonus?</td></th> <th></th> </thead> <tbody> <tr> <td><input type="checkbox" name="attr_Success-Fist-Punch" /></td> <td style="width: 122px;"><p style="width: 111px; margin-bottom: 0px">Brawl (25%)</p></td> <td > <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> <input style="width:35px" type="number" name="attr_Brawl_sr" /> </div> </td> <td> <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_Brawl_length"> <option value="S"selected>S</option> <option value="M">M</option> <option value="M/L">M/L</option> <option value="L">L</option> <option value="ALL">ALL</option> </select> </td> <td ><input style="width:50px" value="25" type="number" name="attr_Brawl" /></td> <td > <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_Brawl_spcl"> <option value="Bl">Bl</option> <option value="Im">Im</option> <option value="Cr"selected>Cr</option> <option value="En">En</option> <option value="Kn">Kn</option> </select> </td> <td ><input type="text" value="1d3" name="attr_Brawl-Damage" style="width: 60px" /></td> <td ><input style="width: 40px" type="text" name="attr_Brawl-HP"/></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width: 45px" name="attr_weapon_typeB"> <option selected="selected" value="1">Full</option> <option value="0.5">Half</option> </select> </td> <td><button type="roll" value="&{template:melee-roll} {{tot=[[@{Brawl-Damage}+(ceil(@{Damage_Bonus}*@{weapon_typeB}))]]}} {{success=[[ceil(@{Brawl}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Brawl}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Brawl}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Brawl}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{Brawl}}} {{roll=[[1d100]]}} {{skillname=Brawl}}" /></td> </tr> <tr> <td><input type="checkbox" name="attr_Success-Grapple" /></td> <td style="width: 122px"><p style="width: 111px; margin-bottom: 0px">Grapple (25%)</p></td> <td> <input type="checkbox" class="sheet-showstrike-rank" name="attr_showstrike-rank" checked="checked" style="display: none"> <div class="sheet-strike-rank"> <input style="width:35px" type="number" name="attr_Grapple_sr" /> </div> </td> <td> <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_Grapple_length"> <option value="S"selected>S</option> <option value="M">M</option> <option value="M/L">M/L</option> <option value="L">L</option> <option value="ALL">ALL</option> </select> </td> <td><input style="width:50px" value="25" type="number" name="attr_Grapple" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_Grapple_spcl"> <option value="Bl">Bl</option> <option value="Im">Im</option> <option value="Cr">Cr</option> <option value="En"Selected>En</option> <option value="Kn">Kn</option> </select> </td> <td><input type="text" value="1d3" name="attr_Grapple-Damage" style="width: 60px" /></td> <td><input style="width:40px" type="text" name="attr_Grapple-HP" style="width: 40px" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width: 45px" name="attr_weapon_typeG"> <option selected="selected" value="1">Full</option> <option value="0.5">Half</option> </select> </td> <td><button type="roll" value="&{template:melee-roll} {{tot=[[@{Grapple-Damage}+(ceil(@{Damage_Bonus}*@{weapon_typeG}))]]}} {{success=[[ceil(@{Grapple}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Grapple}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Grapple}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Grapple}*@{Multiplier}+@{Mods})/5)+1]]}} {{roll=[[1d100]]}} {{skillname=Grapple}}" /></td> </tr> </tbody> </table> <tbody> <input type="checkbox" class="sheet-check-melee-toggle" name="attr_showstrike-rank" style="display: none" /> <fieldset class="repeating_melee"> <table style="width: 100%;"> <tr> <td><input type="checkbox" name="attr_Success" /></td> <td style="width: 122px;"><input style="width: 113px;" type="text" name="attr_Attack-Weapon" /></td> <td><div class="sheet-melee-toggle"><input style="width:35px" type="number" name="attr_melee_sr" /></div></td> <td> <td> <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_length"> <option value="S">S</option> <option value="M">M</option> <option value="M/L">M/L</option> <option value="L">L</option> <option value="ALL">ALL</option> </select> </td> <td><input style="width:50px" type="number" name="attr_Score" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width:49px" name="attr_spcl"> <option value="Bl">Bl</option> <option value="Im">Im</option> <option value="Cr">Cr</option> <option value="En">En</option> <option value="Kn">Kn</option> </select> </td> <td><input style="width:62px" type="text" name="attr_Damagex" /></td> <td><input style="width:40px" type="text" name="attr_HP" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width: 45px" name="attr_weapon_type"> <option selected="selected" value="1">Full</option> <option value="0.5">Half</option> </select> </td> <td><button type="roll" value="&{template:melee-roll} {{name=@{Name}}}{{tot=[[@{Damagex}+(ceil(@{Damage_Bonus}*@{weapon_type}))]]}} {{success=[[ceil(@{Score}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Score}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{Score}}} {{roll=[[1d100]]}} {{skillname=@{Attack-Weapon}}}" /></td> </tr> </tbody> </table> </fieldset> <h3 style="text-align: center; color: #FFF; background-color: #000;">Ranged Weapons</h3> <table style="width: 100%"> <thead class="sheet-header-text"> <th style="text-align: left"> Weapon</th> <th style="" >Skill %</th> <th style="" >Damage</th> <th style="" >Range</th> <th style="" >SR /<br />Attks</th> <th style="" >Shots<br>in Gun</th> <th style="" >Mal.</th> <th style="">HP</th> <th>Damage<br>Bonus?</td></th> </thead> <tbody> <tr> <td><input type="text" name="attr_Firearm1" style="width: 93px" /></td> <td><input type="number" name="attr_Score1" style="width: 50px" /></td> <td><input type="text" name="attr_Damage1" style="width: 46px" /></td> <td><input type="number" name="attr_Range1"style="width: 47px "/></td> <td><input type="text" name="attr_Shots-per-Round1" style="width: 40px" /></td> <td><input type="number" name="attr_Shots-in-Gun1" style="width: 50px" /></td> <td><input type="number" name="attr_Malfunc-Num1" style="width: 40px"/></td> <td><input type="number" name="attr_HP" style="width: 40px" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width: 45px" name="attr_weapon_type1"> <option selected="selected" value="0">No</option> <option value="0.5">Yes</option> </select> </td> <td><button type="roll" value="&{template:melee-roll} {{tot=[[@{Damage1}+(ceil(@{Damage_Bonus}*@{weapon_type1}))]]}} {{success=[[ceil(@{Score1}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Score1}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score1}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score1}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{Score1}}} {{roll=[[1d100]]}} {{skillname=@{Firearm1}}}" /></td> </tr> </tbody> </table> <fieldset class="repeating_Firearms"> <table style="width: 100%;"> <tr> <td><input type="text" name="attr_Firearm" style="width: 93px" /></td> <td><input type="number" name="attr_Score" style="width: 50px" /></td> <td><input type="text" name="attr_Damage" style="width: 46px" /></td> <td><input type="number" name="attr_Range"style="width: 47px "/></td> <td><input type="text" name="attr_Shots-per-Round" style="width: 40px" /></td> <td><input type="number" name="attr_Shots-in-Gun" style="width: 50px" /></td> <td><input type="number" name="attr_Malfunc-Num" style="width: 40px"/></td> <td><input type="number" name="attr_HP" style="width: 40px" /></td> <td> <select style="font-size: 9px; margin-bottom: 0px; width: 45px" name="attr_weapon_type"> <option selected="selected" value="0">No</option> <option value="0.5">Yes</option> </select> </td> <td><button type="roll" value="&{template:melee-roll} {{tot=[[@{Damage}+(ceil(@{Damage_Bonus}*@{weapon_type}))]]}} {{success=[[ceil(@{Score}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{Score}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{Score}}} {{roll=[[1d100]]}} {{skillname=@{Firearm}}}" /></td> </tr> </table> </fieldset> </div> <div class='sheet-col sheet-small-col'> <input type="checkbox" class="sheet-showhitloc" name="attr_showhitloc" checked="checked" style="display: none"> <div class="sheet-hitloc"> <h3 style="text-align: center; color: #FFF; background-color: #000;">Hit Location & Armor</h3> <table> <thead class="sheet-header-text"> <tr> <th>Location</th><th>Armor</th><th>AP</th><th>Cur. <br />HP</th><td> </td><th>Max <br /> HP</th> </tr> </thead> <tbody> <tr> <td class="sheet-loc-text">Right Leg</td> <td><input type="text" name="attr_r_leg_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_r_Leg_ap" /></td> <td><input type="number" name="attr_r_leg_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_r_leg_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Left Leg</td> <td><input type="text" name="attr_l_leg_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_l_Leg_ap" /></td> <td><input type="number" name="attr_l_leg_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_l_leg_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Abdomen</td> <td ><input type="text" name="attr_abd_armor_name" class="sheet-armor-name"/></td> <td ><input type="number" name="attr_abd_ap" /></td> <td ><input type="number" name="attr_abd_cur_hp" /></td> <td>/</td> <td ><input type="number" name="attr_abd_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Chest</td> <td><input type="text" name="attr_chst_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_chst_ap" /></td> <td><input type="number" name="attr_chst_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_chst_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Right Arm</td> <td ><input type="text" name="attr_r_arm_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_r_arm_ap" /></td> <td><input type="number" name="attr_r_arm_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_r_arm_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Left Arm</td> <td><input type="text" name="attr_l_arm_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_l_arm_ap" /></td> <td><input type="number" name="attr_l_arm_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_l_arm_max_hp" /></td> </tr> <tr> <td class="sheet-loc-text">Head</td> <td><input type="text" name="attr_hd_armor_name" class="sheet-armor-name"/></td> <td><input type="number" name="attr_hd_ap" /></td> <td><input type="number" name="attr_hd_cur_hp" /></td> <td>/</td> <td><input type="number" name="attr_hd_max_hp" /></td> </tr> </tbody> </table> <fieldset class="repeating_hlocations"> <table> <tr> <td><input type="text" name="attr_hloc" style="width: 58px" /></td> <td><input class="sheet-armor-name" type="text" name="attr_atype" /></td> <td><input type="number" name="attr_app" /></td> <td><input type="number" name="attr_chp" /></td> <td>/ </td> <td><input type="number" name="attr_mhp"/></td> </tr> </table> </fieldset> </div> <input type="checkbox" class="sheet-showmjrwnd" name="attr_showmjrwnd" style="display: none"> <div class="sheet-mjrwnd"> <h3 style="text-align: center; color: #FFF; background-color: #000;">Armor, Shield</h3> <table style="width: 100%"> <thead> <tr> <th>Armor</th><th>AV</th><th>Skill <br />Penalty</th><th>Energy <br />Points</th> </tr> </thead> <tbody> <tr> <td><input style="width:125px" type="text" name="attr_armor_name" /></td> <td ><input style="width:60px" type="text" name="attr_armor_value" /></td> <td><input type="number" name="attr_armor_skill_penalty" /></td> <td><input type="number" name="attr_armor_energy_points" /></td> <td style="text-align:center"><button type="roll" value="Armor deflects [[@{armor_value}]] pts" /></td> </tr> </tbody> </table> <fieldset class="repeating_ armors"> <table> <tr> <td><input style="width:125px" type="text" name="attr_armor_name1" /></td> <td ><input style="width:60px" type="text" name="attr_armor_value1" /></td> <td><input type="number" name="attr_armor_skill_penalty1" /></td> <td><input type="number" name="attr_armor_energy_points1" /></td> <td style="text-align:center"><button type="roll" value="Armor deflects [[@{armor_value1}]] pts" /></td> </tr> </table> </fieldset> <div style="width: 100%;font-size:0.8em"> <div style="display: inline"> <input type="checkbox" name="attr_shield_success" /> <button type="roll"style="Width: 55px;font-size:0.8em;"value="&{template:melee-roll} {{tot=[[@{shield_damage}+@{Damage_Bonus}]]}} {{success=[[ceil(@{shield_skill}*@{Multiplier}+@{Mods})]]}} {{fumble=[[ceil(95+(@{shield_skill}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{shield_skill}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{shield_skill}*@{Multiplier}+@{Mods})/5)+1]]}} {{skillvalue=@{shield_skill}}} {{roll=[[1d100]]}} {{skillname=Shield}}" class="sheet-plain" >Shield</button> <input type="number" name="attr_shield_skill" /> %&nbsp; </div> <div style="display:inline; float:right"> Attack Damage <input style="width: 55px" type="text" name="attr_shield_damage" /> </div> </div> <div style="font-size:0.8em"> <div style="display:inline"> <input type="radio" name="attr_shield_type" value="H" />&nbsp;H <input type="radio" name="attr_shield_type" value="S" />&nbsp;S <input type="radio" name="attr_shield_type" value="F" />&nbsp;F <input type="radio" name="attr_shield_type" value="L" />&nbsp;L Base Chance <input type="number" name="attr_shield_base_chance" /> </div> <div style="display: inline; float: right"> HP<input type="number" name="attr_shield_hp" /> </div> </div> </div > <div style=" color: #FFF; background-color: #000;width: 100%" > <div style="display: inline"> <input type="checkbox" class="sheet-showmjrwnd" name="attr_showmjrwnd" style="display: none"> <div class="sheet-mjrwnd" > <button type="roll" value="&{template:major-wound} {{roll=[[1d100]]}}" class="sheet-plain-major-wound">Major Wound</button> <input style="color: #FFF; background-color: #000;border: none" type="number" disabled="true" name="attr_major_wound" value="ceil(@{max_hp}/2)" /> <input type="checkbox" name="attr_wounded" /> </div> </div> </div> </div> </div> <br> <div style="width: 100%; color: #FFF; background-color: #000;"> <div style="margin-left: 5px ; display: inline"> Dodge <input style="width:47px" class="sheet-section-header" disabled="true" value="@{Dodge}" type="number" name="attr_Dodge_display" /> <td><button type="roll" style="color:black" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Dodge}}} {{fumble=[[ceil(95+(@{Dodge}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Dodge}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Dodge}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Dodge}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=Dodge}}"/></td> </div> <div style="display: inline"> Fumble <select name="attr_selected_fumble_table" style="margin-top: 7px; height: 24px ; width: 128px"> <option selected="selected" value="0">Melee Attack</option> <option value="1">Melee Parry</option> <option value="2">Missle Attack</option> <option value="3">Natural Weapon</option> </select> <button type="roll" style="color:black" value="&{template:Melee-Attack-Fumble} {{table=[[@{selected_fumble_table}]]}} {{roll=[[1d100]]}}" /> </div> <input type="checkbox" class="sheet-showhitloc" name="attr_showhitloc" checked="checked" style="display: none"> <div class="sheet-hitloc" style="margin-left: 15px; padding-top: 5px; padding-bottom: 5px"> Roll <select name="attr_selected_hit_location" style="margin-top: 7px; height: 24px ; width: 75px"> <option value="0">Human</option> </select> Hit Location <button style="font-size:0;margin-bottom:7px; height:24px;width :24px" name="roll_melee-location" type="roll" value="&{template:HL-Melee} {{roll=[[1d20]]}}" class="btn ui-draggable"> <img src="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Basic_Roleplaying/Sword.png" /> </button> <button style="font-size:0;margin-bottom:7px; height:24px;width :24px" name="roll_missle-location" type="roll" value="&{template:HL-Missle} {{roll=[[1d20]]}}" class="btn ui-draggable "> <img src="https://raw.githubusercontent.com/Roll20/roll20-character-sheets/master/Basic_Roleplaying/Bow.png" /> </button> </div> <div style="display: inline">Hit Pts. <input style="border: none; width:42px" class="sheet-section-header" type="number" name="attr_cur_hp" /> <p style="display:inline">/</p> <input style="border: none; width:42pxpx" class="sheet-section-header" type="number" name="attr_max_hp" /> </div> </div> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> <hr/> <input type="checkbox" class="sheet-toggle-magic1" name="attr_toggle-magic1" style="display: none"> <div class="sheet-skills-magic1"> <p> <h3 class="sheet-section-header">Powers <div style="float:right">Power Pts. <input class="sheet-section-header" type="number" name="attr_cur_mp" /> / <input class="sheet-section-header" type="number" name="attr_max_mp" /> <div> </h3> <p> <h3 class="sheet-section-header"><input class="sheet-section-header" type="text" name="attr_magic_type-1" /> <input style="width: 4.5em" class="sheet-section-header" type="number" name="attr_magic_type-1_Score" />%</h3> <table style="width: 100%"> <thead class="sheet-header-text"> <th style="width: 111px; text-align: left">Power</th> <th style="width: 50px" >Skill</th> <th style="width: 60px" >Range</th> <th style="width: 60px" >Duration</th> <th style="width: 40px" >Cost</th> <th style="width: 430px" >Effect</th> <th></th> </thead> </table> <fieldset class="repeating_spells1"> <table> <tr> <td><input type="text" name="attr_spell-name" style="width: 111px" /></td> <td><input type="number" name="attr_Score" style="width: 50px" /></td> <td><input type="text" name="attr_Range" style="width: 60px" /></td> <td><input type="text" name="attr_Duration"style="width: 60px "/></td> <td><input type="number" name="attr_Cost" style="width: 40px" /></td> <td><input type="text" name="attr_Effect" style="width: 430px" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Score}}} {{fumble=[[ceil(95+(@{Score}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Score}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{spell-name}}}"/></td> </tr> </table> </fieldset> </p> <hr /> <p> <h3 class="sheet-section-header"> <input class="sheet-section-header" type="text" name="attr_magic_type-2" /> <input style="width: 4.5em" class="sheet-section-header" type="number" name="attr_magic_type-2_Score" />% </h3> <table style="width: 100%"> <thead class="sheet-header-text"> <th style="width: 111px; text-align: left">Power</th> <th style="width: 50px" >Skill</th> <th style="width: 60px" >Range</th> <th style="width: 60px" >Duration</th> <th style="width: 40px" >Cost</th> <th style="width: 430px" >Effect</th> <th></th> </thead> </table> <fieldset class="repeating_spells2"> <table> <tr> <td><input type="text" name="attr_spell-name" style="width: 111px" /></td> <td><input type="number" name="attr_Score" style="width: 50px" /></td> <td><input type="text" name="attr_Range" style="width: 60px" /></td> <td><input type="text" name="attr_Duration"style="width: 60px "/></td> <td><input type="number" name="attr_Cost" style="width: 40px" /></td> <td><input type="text" name="attr_Effect" style="width: 430px" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Score}}} {{fumble=[[ceil(95+(@{Score}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Score}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{spell-name}}}"/></td> </tr> </table> </fieldset> </p> <hr /> <p> <h3 class="sheet-section-header"> <input class="sheet-section-header" type="text" name="attr_magic_type-3" /> <input style="width: 4.5em" class="sheet-section-header" type="number" name="attr_magic_type-3_Score" />% </h3> <table style="width: 100%"> <thead class="sheet-header-text"> <th style="width: 111px; text-align: left">Power</th> <th style="width: 50px" >Skill</th> <th style="width: 60px" >Range</th> <th style="width: 60px" >Duration</th> <th style="width: 40px" >Cost</th> <th style="width: 430px" >Effect</th> <th></th> </thead> </table> <fieldset class="repeating_spells3"> <table> <tr> <td><input type="text" name="attr_spell-name" style="width: 111px" /></td> <td><input type="number" name="attr_Score" style="width: 50px" /></td> <td><input type="text" name="attr_Range" style="width: 60px" /></td> <td><input type="text" name="attr_Duration"style="width: 60px "/></td> <td><input type="number" name="attr_Cost" style="width: 40px" /></td> <td><input type="text" name="attr_Effect" style="width: 430px" /></td> <td><button type="roll" value="&{template:skillRoll} {{name=@{Name}}} {{skillvalue=@{Score}}} {{fumble=[[ceil(95+(@{Score}*@{Multiplier}+@{Mods})/20))]]}} {{crit=[[ceil((@{Score}*@{Multiplier}+@{Mods})/20)+1]]}} {{special=[[ceil((@{Score}*@{Multiplier}+@{Mods})/5)+1]]}} {{success=[[ceil(@{Score}*@{Multiplier}+@{Mods})]]}} {{roll=[[1d100]]}} {{skillname=@{spell-name}}}"/></td> </tr> </table> </fieldset> </p> <hr /> </p> <div style="text-align: center;"> <td>Multiplier</td> <select style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" name="attr_Multiplier"> <option selected="selected" value="1">1x</option> <option value="2">2x</option> <option value="1/2">1/2x</option> <option value="1/3">1/3x</option> <option value="1/4">1/4x</option> <option value="1/5">1/5x</option> <option value="1/6">1/6x</option> <option value="1/8">1/8x</option> <option value="1/10">1/10x</option> <option value="1/20">1/20x</option> </select> <input name="attr_Mods" style="font-size: 15px; margin-bottom: 0px; width: 75px; height: 50px" type="number" value="0"> <td>Modifier</td> </div> <hr/> </div> <h3 style="text-align: center; color: #FFF; background-color: #000;">Personal Data</h3> <div class='sheet-2colrow'> <div class='sheet-col'> Personal Description <textarea name="attr_Personal-Description"></textarea><br> Family & Friends <textarea name="attr_Family-Friends"></textarea> </div> <div class='sheet-col'> Wounds & Injuries <textarea name="attr_Wounds-Injuries"></textarea><br> Marks & Scars <textarea name="attr_Marks-Scars"></textarea> </div> </div> <hr/> <p> <h3 style="text-align: center; color: #FFF; background-color: #000;">Income & Savings</h3> <table> <tr> <td style="width: 45px">Income</td> <td><input type="text" name="attr_Income" style="width: 130px" /><br></td> <td>Cash on Hand</td> <td><input type="text" name="attr_Cash" style="width: 130px" /><br></td> </tr> </table> <table> <tr> <td style="width: 45px">Savings</td> <td><input type="text" name="attr_Savings" style="width: 345px" /><br></td> </tr> </table> Personal Property <textarea name="attr_Personal-Property"></textarea><br> Real Estate <textarea name="attr_Real-Estate"></textarea> </p> <p> <h3 style="text-align: center; color: #FFF; background-color: #000;">Adventuring Gear &amp; Other Possesions</h3> <textarea name="attr_Gear-Possessions"></textarea> </p> <rolltemplate class="sheet-rolltemplate-melee-roll"> <table class="skillRoll" style="border 1px black"> <tr><th colspan="2">{{name}}</th></tr> <tr><th colspan="2">Weapon Roll</th></tr> <tr> <tr> <td class="template_label"><b>Rolling:</b> {{skillname}} {{skillvalue}}% </td> <td class="template_value"> ({{success}}%)</td> </tr> </tr> <tr> <td class="template_label"><b>Rolled:</b></td> <td class="template_value">&nbsp;{{roll}}</td> </tr> <tr> <td class="template_label"><b>Result:</b></td> {{#rollBetween() roll fumble 100}} <td class="template_value">Fumble</td> {{/rollBetween() roll fumble 100}} {{#^rollBetween() roll fumble 100}} {{#rollGreater() success 99}} {{#rollLess() roll crit}}<td class="template_value">Critical!!!!!!</td>{{/rollLess() roll crit}} {{#^rollLess() roll crit}} {{#rollLess() roll special}}<td class="template_value">Special!!!</td>{{/rollLess() roll special}} {{#^rollLess() roll special}}<td class="template_value">Success</td>{{/^rollLess() roll special}} {{/^rollLess() roll crit}} {{/rollGreater() success 99}} {{#^rollGreater() success 99}} {{#rollLess() roll crit}}<td class="template_value">Critical!!!!!!</td>{{/rollLess() roll crit}} {{#^rollLess() roll crit}} {{#rollLess() roll special}}<td class="template_value">Special!!!</td>{{/rollLess() roll special}} {{#^rollLess() roll special}} {{#rollBetween() roll special success}}<td class="template_value">Success</td>{{/rollBetween() roll special success}} {{#^rollBetween() roll special success}} {{#rollLess() roll fumble}} <td class="template_value">Failure</td> {{/rollLess() roll fumble}} {{#^rollLess() roll fumble}} <td class="template_value">fumble</td> {{/^rollLess() roll fumble}} {{/^rollBetween() roll special success}} {{/^rollLess() roll special}} {{/^rollLess() roll crit}} {{/^rollGreater() success 99}} {{/^rollBetween() roll fumble 100}} {{#^rollGreater() roll success}} <tr> <td class="template_label"><b>Damage:</b></td> <td style="text-align: right"; class="template_value">{{tot}}<td> </tr> {{/^rollGreater() roll success}} </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-HL-Melee"> <table class="skillRoll" style="border 1px black"> <tr><th colspan="1">Melee Hit location roll</th></tr> <tr> {{#rollBetween() roll 1 4}}<td class="template_label">Hit on the Left Leg</td>{{/rollBetween() roll 1 4}} {{#rollBetween() roll 5 8}}<td class="template_label">Hit on the Right Leg</td>{{/rollBetween() roll 5 8}} {{#rollBetween() roll 9 11}}<td class="template_label">Hit on the Abdomen</td>{{/rollBetween() roll 9 11}} {{#rollTotal() roll 12}} <td class="template_value">Hit on the Chest</td> {{/rollTotal() roll 12}} {{#rollBetween() roll 13 15}}<td class="template_label">Hit on the Right Arm</td>{{/rollBetween() roll 13 15}} {{#rollBetween() roll 16 18}}<td class="template_label">Hit on the Left Arm</td>{{/rollBetween() roll 16 18}} {{#rollBetween() roll 19 20}}<td class="template_label">Hit on the Head</td>{{/rollBetween() roll 19 20}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-HL-Missle"> <table class="skillRoll" style="border 1px black"> <tr><th colspan="1">Missle Hit location roll</th></tr> <tr> {{#rollBetween() roll 1 3}}<td class="template_label">Hit on the Left Leg</td>{{/rollBetween() roll 1 3}} {{#rollBetween() roll 4 6}}<td class="template_label">Hit on the Right Leg</td>{{/rollBetween() roll 4 6}} {{#rollBetween() roll 7 10}}<td class="template_label">Hit on the Abdomen</td>{{/rollBetween() roll 7 10}} {{#rollBetween() roll 11 15}}<td class="template_label">Hit on the Chest</td>{{/rollBetween() roll 11 15}} {{#rollBetween() roll 16 17}}<td class="template_label">Hit on the Right Arm</td>{{/rollBetween() roll 16 17}} {{#rollBetween() roll 18 19}}<td class="template_label">Hit on the Left Arm</td>{{/rollBetween() roll 18 19}} {{#rollTotal() roll 20}} <td class="template_value">Hit on the Head</td> {{/rollTotal() roll 20}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-skillRoll"> <table class="skillRoll" style="width: 100%; border: 1px solid black;"> <tr><th colspan="2">{{name}}</th></tr> <tr><th colspan="2">Skill Roll</th></tr> <tr> <tr> <td class="template_label"><b>Rolling:</b> {{skillname}} {{skillvalue}}% </td> <td class="template_value"> ({{success}}%)</td> </tr> </tr> <tr> <td class="template_label"><b>Rolled:</b></td> <td class="template_value">&nbsp;{{roll}}</td> </tr> <tr> <td class="template_label"><b>Result:</b></td> {{#rollBetween() roll fumble 100}} <td class="template_value">Fumble</td> {{/rollBetween() roll fumble 100}} {{#^rollBetween() roll fumble 100}} {{#rollGreater() success 99}} {{#rollLess() roll crit}}<td class="template_value">Critical!!!!!!</td>{{/rollLess() roll crit}} {{#^rollLess() roll crit}} {{#rollLess() roll special}}<td class="template_value">Special!!!</td>{{/rollLess() roll special}} {{#^rollLess() roll special}}<td class="template_value">Success</td>{{/^rollLess() roll special}} {{/^rollLess() roll crit}} {{/rollGreater() success 99}} {{#^rollGreater() success 99}} {{#rollLess() roll crit}}<td class="template_value">Critical!!!!!!</td>{{/rollLess() roll crit}} {{#^rollLess() roll crit}} {{#rollLess() roll special}}<td class="template_value">Special!!!</td>{{/rollLess() roll special}} {{#^rollLess() roll special}} {{#rollBetween() roll special success}}<td class="template_value">Success</td>{{/rollBetween() roll special success}} {{#^rollBetween() roll special success}} {{#rollLess() roll fumble}} <td class="template_value">Failure</td> {{/rollLess() roll fumble}} {{#^rollLess() roll fumble}} <td class="template_value">fumble</td> {{/^rollLess() roll fumble}} {{/^rollBetween() roll special success}} {{/^rollLess() roll special}} {{/^rollLess() roll crit}} {{/^rollGreater() success 99}} {{/^rollBetween() roll fumble 100}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-characteristicRoll"> <table class="characteristicRoll" style="width: 100%; border: 1px solid black;"> <tr><th colspan="2">{{name}}</th></tr> <tr><th colspan="2">Characteristic Roll</th></tr> <tr> <tr> <td class="template_label"><b>Rolling:</b> {{skillname}} {{skillvalue}} </td> <td class="template_value"> ({{success}}%)</td> </tr> </tr> <tr> <td class="template_label"><b>Rolled:</b></td> <td class="template_value">&nbsp;{{roll}}</td> </tr> <tr> <td class="template_label"><b>Result:</b></td> {{#^rollGreater() roll success}} <td class="template_value">Success</td> {{/^rollGreater() roll success}} {{#rollGreater() roll success}} <td class="template_value">Failure</td> {{/rollGreater() roll success}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-ResistanceRoll"> <table class="ResistanceRoll" style="width: 100%; border: 1px solid black;"> <tr><th colspan="2">{{name}}</th></tr> <tr><th colspan="2">Resistance Roll</th></tr> <tr> <tr> <td class="template_label"><b>Rolling:</b> {{skillvalue1}} vs {{skillvalue2}} </td> <td class="template_value"> ({{success}}%)</td> </tr> </tr> <tr> <td class="template_label"><b>Rolled:</b></td> <td class="template_value">&nbsp;{{roll}}</td> </tr> <tr> <td class="template_label"><b>Result:</b></td> {{#^rollGreater() roll success}} <td class="template_value">Success</td> {{/^rollGreater() roll success}} {{#rollGreater() roll success}} <td class="template_value">Failure</td> {{/rollGreater() roll success}} </tr> </table> </rolltemplate> </rolltemplate> <rolltemplate class="sheet-rolltemplate-sanityRoll"> <table class="characteristicRoll" style="width: 100%; border: 1px solid black;"> <tr><th colspan="2">{{name}}</th></tr> <tr><th colspan="2">Sanity Roll</th></tr> <tr> <tr> <td class="template_label"><b>Rolling:</b> {{skillname}} {{skillvalue}} </td> <td class="template_value"> ({{success}}%)</td> </tr> </tr> <tr> <td class="template_label"><b>Rolled:</b></td> <td class="template_value">&nbsp;{{roll}}</td> </tr> <tr> <td class="template_label"><b>Result:</b></td> {{#^rollGreater() roll success}} <td class="template_value">Success</td> {{/^rollGreater() roll success}} {{#rollGreater() roll success}} <td class="template_value">Failure</td> {{/rollGreater() roll success}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-Melee-Attack-Fumble"> <table style="background-color: #ffffff;" class="sheet-rolltemplate-skillRoll"> {{#rollTotal() table 0}} <th>Melee Attack Fumble </th> {{/rollTotal() table 0}} {{#rollTotal() table 1}} <th>Melee Parry Fumble </th> {{/rollTotal() table 1}} {{#rollTotal() table 2}} <th>Missle Attack Fumble </th> {{/rollTotal() table 2}} {{#rollTotal() table 3}} <th>Natural Weapon Fumble </th> {{/rollTotal() table 3}} <tr> {{#rollTotal() table 0}} {{#rollBetween() roll 1 15}}<td class="template_value">Lose the next combat round and are effectively helpless.</td>{{/rollBetween() roll 1 15}} {{#rollBetween() roll 16 25}}<td class="template_value">Lose the next 1D3 combat rounds and are effectively helpless.</td>{{/rollBetween() roll 16 25}} {{#rollBetween() roll 26 40}}<td class="template_value">Fall down.</td>{{/rollBetween() roll 26 40}} {{#rollBetween() roll 41 50}}<td class="template_value">Drop the weapon being used.</td>{{/rollBetween() roll 41 50}} {{#rollBetween() roll 51 60}}<td class="template_value">Throw weapon 1D10 meters away.</td>{{/rollBetween() roll 51 60}} {{#rollBetween() roll 61 65}}<td class="template_value">Lose 1D10 points of weapon’s hit points.</td>{{/rollBetween() roll 61 65}} {{#rollBetween() roll 66 75}}<td class="template_value">Vision obscured, lose 30% on all appropriate skills for 1D3 combat rounds.</td>{{/rollBetween() roll 66 75}} {{#rollBetween() roll 76 85}}<td class="template_value">Hit nearest ally for normal damage, or Drop the weapon being used if no ally nearby.</td>{{/rollBetween() roll 76 85}} {{#rollBetween() roll 86 90}}<td class="template_value">Hit nearest ally for special damage, or Throw weapon 1D10 meters away, if no ally nearby.</td>{{/rollBetween() roll 86 90}} {{#rollBetween() roll 91 98}}<td class="template_value">Hit nearest ally for critical damage, or Lose 1D10 points of weapon’s hit points, if no ally nearby.</td>{{/rollBetween() roll 91 98}} {{#rollTotal() roll 99}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 99}} {{#rollTotal() roll 00}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 00}} {{/rollTotal() table 0}} {{#rollTotal() table 1}} {{#rollBetween() roll 1 20}}<td>Lose the next combat round and are effectively helpless.</td>{{/rollBetween() roll 1 20}} {{#rollBetween() roll 21 40}}<td>Fall down.</td>{{/rollBetween() roll 21 40}} {{#rollBetween() roll 41 50}}<td>Drop the weapon being used.</td>{{/rollBetween() roll 41 50}} {{#rollBetween() roll 51 60}}<td>Throw weapon 1D10 meters away.</td>{{/rollBetween() roll 51 60}} {{#rollBetween() roll 61 75}}<td>Lose 1D10 points of weapon’s hit points.</td>{{/rollBetween() roll 61 75}} {{#rollBetween() roll 76 85}}<td>Wide open; foe automatically hits with normal hit.</td>{{/rollBetween() roll 76 85}} {{#rollBetween() roll 86 90}}<td>Wide open; foe automatically hits with special hit.</td>{{/rollBetween() roll 86 90}} {{#rollBetween() roll 91 93}}<td>Wide open; foe automatically hits with critical hit</td>{{/rollBetween() roll 91 93}} {{#rollBetween() roll 94 98}}<td>Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollBetween() roll 94 98}} {{#rollBetween() roll 99 100}}<td>Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollBetween() roll 99 100}} {{/rollTotal() table 1}} {{#rollTotal() table 2}} {{#rollBetween() roll 1 15}}<td class="template_value">Lose the next attack or other activity.</td>{{/rollBetween() roll 1 15}} {{#rollBetween() roll 16 25}}<td class="template_value">Lose the next 1D3 combat rounds or other activity.</td>{{/rollBetween() roll 16 25}} {{#rollBetween() roll 26 40}}<td class="template_value">Fall down.</td>{{/rollBetween() roll 26 40}} {{#rollBetween() roll 41 55}}<td class="template_value">Vision obscured; lose 30% on all appropriate skills for 1D3 combat rounds</td>{{/rollBetween() roll 41 55}} {{#rollBetween() roll 56 65}}<td class="template_value">Drop weapon; which slides or bounces 1D6–1 meters away.</td>{{/rollBetween() roll 56 65}} {{#rollBetween() roll 66 80}}<td class="template_value">Do 1D6 damage to weapon’s hit points or break if the weapon has no hit points.</td>{{/rollBetween() roll 66 80}} {{#rollBetween() roll 81 85}}<td class="template_value">Break weapon.</td>{{/rollBetween() roll 81 85}} {{#rollBetween() roll 86 90}}<td class="template_value">Hit nearest ally for normal damage, or Drop weapon; which slides or bounces 1D6–1 meters away. if no ally nearby.</td>{{/rollBetween() roll 86 90}} {{#rollBetween() roll 91 95}}<td class="template_value">Hit nearest ally for special damage, orDo 1D6 damage to weapon’s hit points or break if the weapon has no hit points, if no ally nearby.</td>{{/rollBetween() roll 91 95}} {{#rollBetween() roll 96 98}}<td class="template_value">Hit nearest ally for critical damage, or Break weapon, if no ally nearby</td>{{/rollBetween() roll 96 98}} {{#rollTotal() roll 99}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 99}} {{#rollTotal() roll 100}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 100}} {{/rollTotal() table 2}} {{#rollTotal() table 3}} {{#rollBetween() roll 1 25}}<td class="template_value">Lose the next combat round (or this one if no action has yet been taken).</td>{{/rollBetween() roll 1 25}} {{#rollBetween() roll 26 30}}<td class="template_value">Lose the next 1D3 combat rounds (this includes this one if no action has yet been taken).</td>{{/rollBetween() roll 26 30}} {{#rollBetween() roll 31 50}}<td class="template_value">Fall down.</td>{{/rollBetween() roll 31 50}} {{#rollBetween() roll 51 60}}<td class="template_value">Fall down and twist ankle; lose 1 meter/DEX rank of movement for 1D10 full turns (and all combat turns within them).</td>{{/rollBetween() roll 51 60}} {{#rollBetween() roll 61 75}}<td class="template_value">Vision obscured; lose 30% on all appropriate skills for 1D3 combat rounds.</td>{{/rollBetween() roll 61 75}} {{#rollBetween() roll 76 85}}<td class="template_value">Miss and strain something; lose 1 hit point (in the attacking limb if hit locations are being used)</td>{{/rollBetween() roll 76 85}} {{#rollBetween() roll 86 90}}<td class="template_value">Hit nearest ally for normal damage, or Miss and strain something; lose 1 hit point (in the attacking limb if hit locations are being used), if no ally nearby</td>{{/rollBetween() roll 86 90}} {{#rollBetween() roll 91 94}}<td class="template_value">Hit nearest ally for special damage, or Miss and strain something; lose 1 hit point (in the attacking limb if hit locations are being used), if no ally nearby.</td>{{/rollBetween() roll 91 94}} {{#rollBetween() roll 95 98}}<td class="template_value">Hit hard surface; do normal damage to self (in the attacking limb if hit locations are being used)..</td>{{/rollBetween() roll 95 98}} {{#rollBetween() roll 96 98}}<td class="template_value">Hit nearest ally for critical damage, or Break weapon, if no ally nearby</td>{{/rollBetween() roll 96 98}} {{#rollTotal() roll 99}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 99}} {{#rollTotal() roll 100}}<td class="template_value">Blow it; roll twice more on this table (cumulative if this result is rolled again)</td>{{/rollTotal() roll 100}} {{/rollTotal() table 3}} </tr> </table> </rolltemplate> <rolltemplate class="sheet-rolltemplate-major-wound"> <table style="background-color: #ffffff;" class="sheet-rolltemplate-skillRoll"> <tr> <th>Major Wound</th> </tr> <tr> {{#rollBetween() roll 1 10}} <td class="template_value"> Severed leg tendons cause limping; fused ankle bones cause limping; back muscles or spinal nerve damage bend the torso to the left or right; a shattered knee cannot bend; or make up a new wound effect. Lose 1D3 DEX. The maximum MOV is now reduced by the same 1D3 result. Your character is still able to fight. {{/rollBetween() roll 1 10}} </td> {{#rollBetween() roll 11 20}} <td class="template_value"> Much of the nose has been sliced away; multiple scars deface both hands; an ear has been cut off; a livid scar lends an evil cast to your character’s appearance; or make up a new wound effect. Lose 1D3 APP. The visible and unappealing deformity cannot be disguised. Your character is still able to fight. {{/rollBetween() roll 11 20}} </td> {{#rollBetween() roll 21 30}} <td class="template_value"> Wrist or hand damage; a slab of arm or shoulder muscle has been cut away; a chunk was hewn from thigh or calf muscles; spinal nerves are damaged; several fingers or toes are severed; or make up a new wound effect. Lose 1D3 STR; this loss may change what weapons can be used. Your character is still able to fight with a weapon, but not a shield. {{/rollBetween() roll 21 30}} </td> {{#rollBetween() roll 31 40}} <td class="template_value"> A punctured lung leads to a weakened respiratory system; deep stomach wounds become chronically reinfected or belly wounds weaken digestion and general health; kidneys and liver are damaged; or make up a new wound effect. Lose 1D3 CON; maximum MOV is now reduced by the same 1D3, and hit points may be lowered. Your character is still able to fight. {{/rollBetween() roll 31 40}} </td> {{#rollBetween() roll 41 50}} <td class="template_value"> Concussion damages hearing and limits Listen and Insight to maximums of 65 percent; injury to the head thereafter require Luck rolls each time to use any Mental skills; blows or cuts which affect depth perception leave missile weapon skill ratings at a maximum of 65%; multiple wounds to the face and neck limit the skills of any Communication skills to 65% maximum; or make up a new wound effect. Lose 1D3 INT; this loss may affect your character’s ability to use any powers. Your character is still able to fight. {{/rollBetween() roll 41 50}} </td> {{#rollBetween() roll 51 60}} <td class="template_value"> Refer to 01–10 for what happened, which now expands to the loss of one or both arms or legs. Lose 1D6 DEX and reduce maximum MOV by that same amount. Your character is unable to fight. {{/rollBetween() roll 51 60}} </td> {{#rollBetween() roll 61 70}} <td class="template_value"> Much of the nose has been sliced away; multiple scars deface both hands; an ear has been cut off; a livid scar lends an evil cast to your character’s appearance; or make up a new wound effect. . Lose 1D6 APP; it creates one or more visible deformities that cannot be disguised Your character is still able to fight. {{/rollBetween() roll 61 70}} </td> {{#rollBetween() roll 71 80}} <td class="template_value"> Wrist or hand damage; a slab of arm or shoulder muscle has been cut away; a chunk was hewn from thigh or calf muscles; spinal nerves are damaged; several fingers or toes are severed; or make up a new wound effect. Lose 1D6 STR; change hit points and damage bonus. Your character is still able to fight. {{/rollBetween() roll 71 80}} </td> {{#rollBetween() roll 81 90}} <td class="template_value"> A punctured lung leads to a weakened respiratory system; deep stomach wounds become chronically reinfected or belly wounds weaken digestion and general health; kidneys and liver are damaged; or make up a new wound effect. Lose 1D6 CON; may affect hit points, damage bonus, and reduces MOV by that number of units equal to the 1D6 result rolled.Your character is unable to fight. {{/rollBetween() roll 81 90}} </td> {{#rollBetween() roll 91 92}} <td class="template_value"> Bad facial and vocal-cord injuries. Lose 1D6 APP; lower the Charisma roll respectively. Your character is still able to fight. {{/rollBetween() roll 91 92}} </td> {{#rollBetween() roll 93 94}} <td class="template_value"> Broken bones and severed ganglia. Lose 1D6 DEX; from now on your character can only use one-handed melee weapons. Your character is still able to fight using his or her remaining arm. {{/rollBetween() roll 93 94}} </td> {{#rollBetween() roll95 96}} <td class="template_value"> Nerve damage to left or right arm (roll 1D6; a result of 1–3 is the left arm, 4–6 is the right arm). Lose 1D6 DEX; hereafter your character can only wield weapons or equipment in his or her undamaged arm. Your character is still able to fight using his or her remaining arm. {{/rollBetween() roll95 96}} </td> {{#rollBetween() roll 97 98}} <td class="template_value"> Nerve damage to both arms. Lose 1D6 DEX; though the legs are fine, neither arms nor hands can wield anything. Your character is unable to fight, unless using his or her legs or head butts. {{/rollBetween() roll 97 98}} </td> {{#rollTotal() roll 99}} <td class="template_value"> Your character is mutilated with vicious wounds. Lose 1D3 points each from APP, DEX, and CON, and describe the results. Your character is unable to fight. {{/rollTotal() roll 99}} </td> </tr> </table> </rolltemplate> <!-- SHEET WORKERS --> <script type="text/worker"> on("change:str change:siz", function() { // stat names must use lower case here getAttrs(["STR", "SIZ"], function(pvalue) { // from here on, use the actual case of the stat names. var curStrength = parseInt(pvalue.STR); var curSize = parseInt(pvalue.SIZ); var STRplusSIZ = curStrength + curSize; var DBonus; //Determine Bonus if (STRplusSIZ < 13) { DBonus = "-1d6"; } else if (STRplusSIZ < 18) { DBonus = "-1d4"; } else if (STRplusSIZ < 25) { DBonus = "0"; } else if (STRplusSIZ < 32) { DBonus = "1d4"; } else { var damageFactor = Math.ceil((STRplusSIZ-24)/16); DBonus = damageFactor + "d6"; } setAttrs({ Damage_Bonus: DBonus // change the DMG attribute name here to whatever your damage bonus attribute is called }); }); }); </script> <script type="text/worker"> // Skill Category Bonus on("change:STR change:CON change:SIZ change:INT change:POW change:DEX change:APP change:EDU", function() { // stat names must use lower case here getAttrs(["STR", "CON", "SIZ", "INT", "POW", "DEX", "APP", "EDU"], function(pvalue) { // from here on, use the actual case of the stat names. var curStrength = parseInt(pvalue.STR); var curConstitution = parseInt(pvalue.CON); var curSize = parseInt(pvalue.SIZ); var curIntelligence = parseInt(pvalue.INT); var curPower = parseInt(pvalue.POW); var curDexterity = parseInt(pvalue.DEX); var curAppearance = parseInt(pvalue.APP); var curEducation = parseInt(pvalue.EDU); //Primary Bonus var P_DEXBonus = Math.ceil((curDexterity-10)); var P_INTBonus = Math.ceil((curIntelligence-10)); //Secondary Bonus var S_INTBonus = Math.ceil(((curIntelligence-10)/2)); var S_STRBonus = Math.ceil(((curStrength-10)/2)); var S_POWBonus = Math.ceil(((curPower-10)/2)); var S_APPBonus = Math.ceil(((curAppearance-10)/2)); var S_EDUBonus = Math.ceil(((curEducation-10)/2)); var S_CONBonus = Math.ceil(((curConstitution-10)/2)); //Size Penalty var SIZPenalty = Math.ceil((10-curSize)); { var CombatBonus = Math.ceil((P_DEXBonus+S_INTBonus+S_STRBonus)); var CommunicationBonus = Math.ceil((P_INTBonus+S_POWBonus+S_APPBonus)); var ManipulationBonus = Math.ceil((P_DEXBonus+S_INTBonus+S_STRBonus)); var MentalBonus = Math.ceil((P_INTBonus+S_POWBonus+S_EDUBonus)); var PerceptionBonus = Math.ceil((P_INTBonus+S_POWBonus+S_CONBonus)); var PhysicalBonus = Math.ceil((P_DEXBonus+S_STRBonus+S_CONBonus+SIZPenalty)); } setAttrs({ Combat: CombatBonus }); setAttrs({ Communication: CommunicationBonus }); setAttrs({ Manipulation: ManipulationBonus }); setAttrs({ Mental: MentalBonus }); setAttrs({ Perception: PerceptionBonus }); setAttrs({ Physical: PhysicalBonus }); }); }); </script>
cypher0n3/roll20-character-sheets
Basic_Roleplaying/Basic_Roleplaying.html
HTML
mit
160,941
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Gravure Universelle Inc. - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492289387182&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=20112&V_SEARCH.docsStart=20111&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=20110&amp;V_DOCUMENT.docRank=20111&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492289407079&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567135442&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=20112&amp;V_DOCUMENT.docRank=20113&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492289407079&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567106219&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Gravure Universelle Inc. </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Gravure Universelle Inc.</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.gravureuniverselle.ca" target="_blank" title="Website URL">http://www.gravureuniverselle.ca</a></p> <p><a href="mailto:info@gravureuniverselle.ca" title="info@gravureuniverselle.ca">info@gravureuniverselle.ca</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> 110-732 Taniata Ave<br/> lévis, Quebec<br/> G6Z 2C5 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 110-732 Taniata Ave<br/> lévis, Quebec<br/> G6Z 2C5 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (418) 903-2577 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (418) 903-2533</p> </div> <div class="col-md-3 mrgn-tp-md"> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Simon Guay </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Manufacturing/Production/Operations. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (418) 692-1205 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (418) 692-0974 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> gunivers@qc.aira.com </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 1958 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 332810 - Coating, Engraving, Heat Treating and Allied Activities </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Manufacturer / Processor / Producer &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $200,000 to $499,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 2&nbsp; </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Engraving <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Engraving on any materials (plastic, aluminum, steel, wood...) <br> dies, punches, stencils, id. plates, signage. <br> <br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <!-- Market Profile --> <!-- Sector Information --> <h3 class="page-header"> Sector information </h3> <section class="container-fluid"> </section> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Simon Guay </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> <!--if client gender is not null or empty we use gender based job title--> President </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Manufacturing/Production/Operations. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (418) 692-1205 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Facsimile: </strong> </div> <div class="col-md-7"> (418) 692-0974 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> gunivers@qc.aira.com </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Year Established: </strong> </div> <div class="col-md-7"> 1958 </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 332810 - Coating, Engraving, Heat Treating and Allied Activities </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Manufacturer / Processor / Producer &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Total Sales ($CDN): </strong> </div> <div class="col-md-7"> $200,000 to $499,999&nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Number of Employees: </strong> </div> <div class="col-md-7"> 2&nbsp; </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Product Name: </strong> </div> <div class="col-md-9"> Engraving <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Engraving on any materials (plastic, aluminum, steel, wood...) <br> dies, punches, stencils, id. plates, signage. <br> <br> <br> </div> </div> </section> </details> <details id="details-panel7"> <summary> Sector </summary> <h2 class="wb-invisible"> Sector information </h2> <section class="container-fluid"> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2016-05-11 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
GoC-Spending/data-corporations
html/123456242182.html
HTML
mit
38,161
--- layout: default title: Joguinho zuado logo: 'assets/images/logo.png' --- <header class="main-header post-head {% if page.cover %}" style="background-image: url({{ site.baseurl }}{{ page.cover }}){% else %}no-cover{% endif %}"> <nav class="main-nav {% if page.cover %}overlay{% endif %} clearfix"> {% if page.logo %}<a class="blog-logo" href="{{ site.baseurl }}"><img src="{{ site.baseurl }}{{ page.logo }}" alt="Blog Logo" /></a>{% endif %} {% if page.navigation %} <a class="menu-button icon-menu" href="#"><span class="word">Menu</span></a> {{ include navigation.html }} {% endif %} </nav> </header> <!--========================================================================== Esse jogo foi feito com base no tutorial do Raining Chain. Veja mais vídeos no canal dele: https://www.youtube.com/channel/UC8Yp-YagXZ4C5vOduEhcjRw ===========================================================================--> <body><center> <canvas id="ctx" width="1080" height="500" style="border:1px solid #000000;"> </canvas> </center> <script> var ctx = document.getElementById("ctx").getContext("2d"); // 1. Modify Settings ctx.font = '30px Arial'; // Font used ctx.fillStyle = 'black'; // Color of the text and forms // ctx.globalAlpha = 0.5; // Transparency 0 = invisible, 1 = visible // 2. Drawing entity ctx.fillText('Player', 50, 50); // 3. Animation var heightCanvas = 500; var widthCanvas = 500; var timeWhenGameStarted = Date.now(); // return time in ms var frameCount = 0; var score = 0; // player var player; Player = function(){ var self = Actor('player', 'myId', 50, 40, 30, 5, 20, 20, 'green', 10, 1); self.updatePosition = function(){ console.log("Entrou aqui"); if(self.pressingRight) self.x += 10; if(self.pressingLeft) self.x -= 10; if(self.pressingDown) self.y += 10; if(self.pressingUp) self.y -= 10; //is position valid if(self.x < self.width/2) self.x = self.width/2; if(self.x > widthCanvas-self.width/2) self.x = widthCanvas - self.width/2; if(self.y < self.height/2) self.y = self.height/2; if(self.y > heightCanvas - self.height/2) self.y = heightCanvas - self.height/2; } self.pressingRight = false; self.pressingDown = false; self.pressingLeft = false; self.pressingUp = false; return self; } Entity = function(type, id, x, y, spdX, spdY, width, height, color){ var self = { type: type, x: x, spdX: spdX, y: y, spdY: spdY, width: width, height: height, color: color, }; self.update = function(){ self.updatePosition(); self.draw(); } self.updatePosition = function(){ self.x += self.spdX; self.y += self.spdY; if(self.x < 0 || self.x > widthCanvas){ self.spdX = -self.spdX; } if(self.y < 0 || self.y > heightCanvas){ self.spdY = -self.spdY; } } self.getDistance = function (entity2){ //return distance (number) var vx = self.x - entity2.x; var vy = self.y - entity2.y; return Math.sqrt(vx*vx+vy*vy); } self.testCollision = function(entity2){ //return if colliding (true/false) var rect1 = { x:self.x-self.width/2, y:self.y-self.height/2, width:self.width, height:self.height, } var rect2 = { x:entity2.x-entity2.width/2, y:entity2.y-entity2.height/2, width:entity2.width, height:entity2.height, } return testCollisionRectRect(rect1,rect2); } self.draw = function(){ ctx.save(); ctx.fillStyle = self.color; ctx.fillRect(self.x-self.width/2,self.y-self.height/2,self.width,self.height); ctx.restore(); } return self; } Actor = function(type, id, x, y, spdX, spdY, width, height, color){ var self = Entity(type,id,x,y,spdX,spdY,width,height,color); self.attackCounter = 0; self.aimAngle = 0; self.atkSpd = 1; self.performAttack = function(){ if(self.attackCounter > 25){ //every 1 sec self.attackCounter = 0; generateBullet(self); } } self.performSpecialAttack = function(){ if(self.attackCounter > 50){ //every 1 sec self.attackCounter = 0; for(var i = 0 ; i < 360; i += 10){ generateBullet(self,i); } } } return self; } Enemy = function(id, x, spdX, y, spdY, width, height){ var self = Actor('enemy', id, x, y, spdX, spdY, width, height, 'red'); enemyList[id] = self; } Upgrade = function(id, x, spdX, y, spdY, width, height, category, color){ var self = Entity('upgrade', id, x, y, spdX, spdY, width, height, color); self.category = category; upgradeList[id] = self; } Bullet = function(id, x, spdX, y, spdY, width, height){ var self = Entity('bullet', id, x, y, spdX, spdY, width, height, 'black'); self.timer = 0; bulletList[id] = self; } // lists var upgradeList = {}; var bulletList = {}; var enemyList = {}; testCollisionRectRect = function (rect1, rect2) { return rect1.x <= rect2.x + rect2.width && rect2.x <= rect1.x + rect1.width && rect1.y <= rect2.y + rect2.height && rect2.y <= rect1.y + rect1. height; } document.onclick = function(mouse){ player.performAttack(); } document.oncontextmenu = function(mouse){ player.performSpecialAttack(); mouse.preventDefault(); } document.onmousemove = function(mouse){ var mouseX = mouse.clientX - document.getElementById('ctx').getBoundingClientRect().left; var mouseY = mouse.clientY - document.getElementById('ctx').getBoundingClientRect().top; mouseX -= player.x; mouseY -= player.y; player.aimAngle = Math.atan2(mouseY,mouseX) / Math.PI * 180; } document.onkeydown = function(event){ if(event.keyCode === 68) //d player.pressingRight = true; else if(event.keyCode === 83) //s player.pressingDown = true; else if(event.keyCode === 65) //a player.pressingLeft = true; else if(event.keyCode === 87) // w player.pressingUp = true; } document.onkeyup = function(event){ if(event.keyCode === 68) //d player.pressingRight = false; else if(event.keyCode === 83) //s player.pressingDown = false; else if(event.keyCode === 65) //a player.pressingLeft = false; else if(event.keyCode === 87) // w player.pressingUp = false; } startNewGame = function () { player.hp = 20; timeWhenGameStarted = Date.now(); frameCount = 0; score = 0; enemyList = {}; upgradeList = {}; bulletList = {}; randomlyGenerateEnemy(); randomlyGenerateEnemy(); randomlyGenerateEnemy(); } update = function(){ ctx.clearRect(0, 0, widthCanvas + 1000, heightCanvas + 100); frameCount++; player.attackCounter += player.atkSpd; score++; player.update(); if(frameCount % 100 === 0){ randomlyGenerateEnemy(); // after every 4 sec } if(frameCount % 75 === 0){ randomlyGenerateUpgrade(); // after every 3 sec } for(var key in bulletList){ bulletList[key].update(); bulletList[key].timer++; if(bulletList[key].timer > 100){ delete bulletList[key]; continue; // o loop acaba aqui e vai para o key++; } for(var key2 in enemyList){ var isColliding = bulletList[key].testCollision(enemyList[key2]); if(isColliding){ delete bulletList[key]; delete enemyList[key2]; break; } } } for(var key in upgradeList){ upgradeList[key].update(); var isColliding = player.testCollision(upgradeList[key]); if(isColliding){ if(upgradeList[key].category === 'score') score += 1000; if(upgradeList[key].category === 'atkSpd'){ player.atkSpd += 3; console.log("poder " + player.atkSpd); } delete upgradeList[key]; } } for(var key in enemyList){ enemyList[key].update(); var isColliding = player.testCollision(enemyList[key]); if(isColliding){ console.log('is Colliding'); player.hp -= 1; } } if(player.hp <= 0){ // player morreu var timeSurvived = Date.now() - timeWhenGameStarted; console.log("YOU SURVIVED FOR " + timeSurvived + "ms."); startNewGame(); } ctx.fillText(player.hp + " HP", 0, 30); ctx.fillText("Score: " + score, 200, 30); } randomlyGenerateEnemy = function (){ var x = Math.random() * widthCanvas; var y = Math.random() * heightCanvas; var height = 10 + Math.random() * 30; var width = 10 + Math.random() * 30; var id = Math.random(); var spdX = 5 + Math.random() * 5; var spdY = 5 + Math.random() * 5; Enemy(id, x, spdX, y, spdY, width, height); } randomlyGenerateUpgrade = function (){ var x = Math.random() * widthCanvas; var y = Math.random() * heightCanvas; var height = 10; var width = 10; var id = Math.random(); var spdX = 0; var spdY = 0; if(Math.random() < 0.5){ var category = 'score'; var color = 'orange'; }else { var category = 'atkSpd'; var color = 'purple'; } Upgrade(id, x, spdX, y, spdY, width, height, category, color); } generateBullet = function (actor, overwriteAngle){ var x = actor.x; var y = actor.y; var height = 10; var width = 10; var id = Math.random(); var angle = actor.aimAngle; if(overwriteAngle != undefined){ angle = overwriteAngle; } var spdX = Math.cos(angle/180*3.14)*5; var spdY = Math.sin(angle/180*3.14)*5; Bullet(id, x, spdX, y, spdY, width, height); } player = Player(); startNewGame(); setInterval(update, 40); </script> </body>
hugo-0/hugo-0.github.io
pages/game.html
HTML
mit
9,883