text
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta> <title>500-64-1.smi.png.html</title> </head> <body>ID500-64-1<br/> <img border="0" src="500-64-1.smi.png" alt="500-64-1.smi.png"></img><br/> <br/> <table border="1"> <tr> <td></td><td>ID</td><td>Formula</td><td>FW</td><td>DSSTox_CID</td><td>DSSTox_RID</td><td>DSSTox_GSID</td><td>DSSTox_FileID_Sort</td><td>TS_ChemName</td><td>TS_ChemName_Synonyms</td><td>TS_CASRN</td><td>CASRN_ChemName_Relationship</td><td>TS_Description</td><td>ChemNote</td><td>STRUCTURE_Shown</td><td>STRUCTURE_Formula</td><td>STRUCTURE_MW</td><td>STRUCTURE_ChemType</td><td>STRUCTURE_DefinedOrganicForm</td><td>STRUCTURE_IUPAC</td><td>STRUCTURE_SMILES</td><td>STRUCTURE_SMILES_Desalt</td><td>Substance_modify_yyyymmdd</td></tr> <tr> <td>500-64-1</td><td>6638</td><td>C14H14O3</td><td>230.2592</td><td>13595</td><td>79087</td><td>33595</td><td>3769</td><td>Kavain</td><td>Kavain (Kawain)</td><td>500-64-1</td><td>primary</td><td>single chemical compound</td><td>stereochem</td><td>tested chemical</td><td>C14H14O3</td><td>230.2592</td><td>defined organic</td><td>parent</td><td>(6R)-4-methoxy-6-[(E)-2-phenylethenyl]-5,6-dihydro-2H-pyran-2-one</td><td>O=C2C=C(C[C@H](/C=C/c1ccccc1)O2)OC</td><td>O=C2C=C(C[C@H](/C=C/c1ccccc1)O2)OC</td><td>20080429</td></tr> </table> <br/><br/><font size="-2">(Page generated on Wed Sep 17 03:58:26 2014 by <a href="http://www.embl.de/~gpau/hwriter/index.html">hwriter</a> 1.3)</font><br/> </body></html>
andrewdefries/ToxCast
Figure3/Tox21_nnm/WorkHere/500-64-1.smi.png.html
HTML
mit
1,683
<!doctype html> <html> <head> <meta charset="utf-8"> <title>CodeMirror: Diff mode</title> <link rel="stylesheet" href="../../../../web/lib/codeMirror/lib/codemirror.css"> <script src="../../../../web/lib/codeMirror/lib/codemirror.js"></script> <script src="../../../../web/lib/codeMirror/mode/diff/diff.js"></script> <style> .CodeMirror {border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;} span.cm-meta {color: #a0b !important;} span.cm-error { background-color: black; opacity: 0.4;} span.cm-error.cm-string { background-color: red; } span.cm-error.cm-tag { background-color: #2b2; } </style> <link rel="stylesheet" href="../../../../web/lib/codeMirror/doc/docs.css"> </head> <body> <h1>CodeMirror: Diff mode</h1> <form><textarea id="code" name="code"> diff --git a/index.html b/index.html index c1d9156..7764744 100644 --- a/index.html +++ b/index.html @@ -95,7 +95,8 @@ StringStream.prototype = { <script> var editor = CodeMirror.fromTextArea(document.getElementById("code"), { lineNumbers: true, - autoMatchBrackets: true + autoMatchBrackets: true, + onGutterClick: function(x){console.log(x);} }); </script> </body> diff --git a/lib/codemirror.js b/lib/codemirror.js index 04646a9..9a39cc7 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -399,10 +399,16 @@ var CodeMirror = (function() { } function onMouseDown(e) { - var start = posFromMouse(e), last = start; + var start = posFromMouse(e), last = start, target = e.target(); if (!start) return; setCursor(start.line, start.ch, false); if (e.button() != 1) return; + if (target.parentNode == gutter) { + if (options.onGutterClick) + options.onGutterClick(indexOf(gutter.childNodes, target) + showingFrom); + return; + } + if (!focused) onFocus(); e.stop(); @@ -808,7 +814,7 @@ var CodeMirror = (function() { for (var i = showingFrom; i < showingTo; ++i) { var marker = lines[i].gutterMarker; if (marker) html.push('<div class="' + marker.style + '">' + htmlEscape(marker.text) + '</div>'); - else html.push("<div>" + (options.lineNumbers ? i + 1 : "\u00a0") + "</div>"); + else html.push("<div>" + (options.lineNumbers ? i + options.firstLineNumber : "\u00a0") + "</div>"); } gutter.style.display = "none"; // TODO test whether this actually helps gutter.innerHTML = html.join(""); @@ -1371,10 +1377,8 @@ var CodeMirror = (function() { if (option == "parser") setParser(value); else if (option === "lineNumbers") setLineNumbers(value); else if (option === "gutter") setGutter(value); - else if (option === "readOnly") options.readOnly = value; - else if (option === "indentUnit") {options.indentUnit = indentUnit = value; setParser(options.parser);} - else if (/^(?:enterMode|tabMode|indentWithTabs|readOnly|autoMatchBrackets|undoDepth)$/.test(option)) options[option] = value; - else throw new Error("Can't set option " + option); + else if (option === "indentUnit") {options.indentUnit = value; setParser(options.parser);} + else options[option] = value; }, cursorCoords: cursorCoords, undo: operation(undo), @@ -1402,7 +1406,8 @@ var CodeMirror = (function() { replaceRange: operation(replaceRange), operation: function(f){return operation(f)();}, - refresh: function(){updateDisplay([{from: 0, to: lines.length}]);} + refresh: function(){updateDisplay([{from: 0, to: lines.length}]);}, + getInputField: function(){return input;} }; return instance; } @@ -1420,6 +1425,7 @@ var CodeMirror = (function() { readOnly: false, onChange: null, onCursorActivity: null, + onGutterClick: null, autoMatchBrackets: false, workTime: 200, workDelay: 300, </textarea></form> <script> var editor = CodeMirror.fromTextArea(document.getElementById("code"), {}); </script> <p><strong>MIME types defined:</strong> <code>text/x-diff</code>.</p> </body> </html>
ldjking/wbscreen
web/wb/5editor/codeMirror/mode/diff/index.html
HTML
mit
4,198
<!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-beta2) on Mon Mar 19 18:23:46 CST 2007 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> SocketException (Java Platform SE 6) </TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script> <META NAME="date" CONTENT="2007-03-19"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="SocketException (Java Platform SE 6)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>类</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/SocketException.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Java<sup><font size=-2>TM</font></sup>&nbsp;Platform<br>Standard&nbsp;Ed. 6</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../java/net/SocketAddress.html" title="java.net 中的类"><B>上一个类</B></A>&nbsp; &nbsp;<A HREF="../../java/net/SocketImpl.html" title="java.net 中的类"><B>下一个类</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?java/net/SocketException.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="SocketException.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 摘要:&nbsp;嵌套&nbsp;|&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_summary">构造方法</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Throwable">方法</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 详细信息:&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_detail">构造方法</A>&nbsp;|&nbsp;方法</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> java.net</FONT> <BR> 类 SocketException</H2> <PRE> <A HREF="../../java/lang/Object.html" title="java.lang 中的类">java.lang.Object</A> <IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">java.lang.Throwable</A> <IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../java/lang/Exception.html" title="java.lang 中的类">java.lang.Exception</A> <IMG SRC="../../resources/inherit.gif" ALT="继承者 "><A HREF="../../java/io/IOException.html" title="java.io 中的类">java.io.IOException</A> <IMG SRC="../../resources/inherit.gif" ALT="继承者 "><B>java.net.SocketException</B> </PRE> <DL> <DT><B>所有已实现的接口:</B> <DD><A HREF="../../java/io/Serializable.html" title="java.io 中的接口">Serializable</A></DD> </DL> <DL> <DT><B>直接已知子类:</B> <DD><A HREF="../../java/net/BindException.html" title="java.net 中的类">BindException</A>, <A HREF="../../java/net/ConnectException.html" title="java.net 中的类">ConnectException</A>, <A HREF="../../java/net/NoRouteToHostException.html" title="java.net 中的类">NoRouteToHostException</A>, <A HREF="../../java/net/PortUnreachableException.html" title="java.net 中的类">PortUnreachableException</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>SocketException</B><DT>extends <A HREF="../../java/io/IOException.html" title="java.io 中的类">IOException</A></DL> </PRE> <P> 抛出此异常指示在底层协议中存在错误,如 TCP 错误。 <P> <P> <DL> <DT><B>从以下版本开始:</B></DT> <DD>JDK1.0</DD> <DT><B>另请参见:</B><DD><A HREF="../../serialized-form.html#java.net.SocketException">序列化表格</A></DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>构造方法摘要</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../java/net/SocketException.html#SocketException()">SocketException</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;构造不带详细消息的新 <code>SocketException</code>。</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../java/net/SocketException.html#SocketException(java.lang.String)">SocketException</A></B>(<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A>&nbsp;msg)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;构造带指定详细消息的新 <code>SocketException</code>。</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>方法摘要</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>从类 java.lang.<A HREF="../../java/lang/Throwable.html" title="java.lang 中的类">Throwable</A> 继承的方法</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../java/lang/Throwable.html#fillInStackTrace()">fillInStackTrace</A>, <A HREF="../../java/lang/Throwable.html#getCause()">getCause</A>, <A HREF="../../java/lang/Throwable.html#getLocalizedMessage()">getLocalizedMessage</A>, <A HREF="../../java/lang/Throwable.html#getMessage()">getMessage</A>, <A HREF="../../java/lang/Throwable.html#getStackTrace()">getStackTrace</A>, <A HREF="../../java/lang/Throwable.html#initCause(java.lang.Throwable)">initCause</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace()">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace(java.io.PrintStream)">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#printStackTrace(java.io.PrintWriter)">printStackTrace</A>, <A HREF="../../java/lang/Throwable.html#setStackTrace(java.lang.StackTraceElement[])">setStackTrace</A>, <A HREF="../../java/lang/Throwable.html#toString()">toString</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>从类 java.lang.<A HREF="../../java/lang/Object.html" title="java.lang 中的类">Object</A> 继承的方法</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../java/lang/Object.html#clone()">clone</A>, <A HREF="../../java/lang/Object.html#equals(java.lang.Object)">equals</A>, <A HREF="../../java/lang/Object.html#finalize()">finalize</A>, <A HREF="../../java/lang/Object.html#getClass()">getClass</A>, <A HREF="../../java/lang/Object.html#hashCode()">hashCode</A>, <A HREF="../../java/lang/Object.html#notify()">notify</A>, <A HREF="../../java/lang/Object.html#notifyAll()">notifyAll</A>, <A HREF="../../java/lang/Object.html#wait()">wait</A>, <A HREF="../../java/lang/Object.html#wait(long)">wait</A>, <A HREF="../../java/lang/Object.html#wait(long, int)">wait</A></CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>构造方法详细信息</B></FONT></TH> </TR> </TABLE> <A NAME="SocketException(java.lang.String)"><!-- --></A><H3> SocketException</H3> <PRE> public <B>SocketException</B>(<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A>&nbsp;msg)</PRE> <DL> <DD>构造带指定详细消息的新 <code>SocketException</code>。 <P> <DL> <DT><B>参数:</B><DD><CODE>msg</CODE> - 详细消息。</DL> </DL> <HR> <A NAME="SocketException()"><!-- --></A><H3> SocketException</H3> <PRE> public <B>SocketException</B>()</PRE> <DL> <DD>构造不带详细消息的新 <code>SocketException</code>。 <P> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="跳过导航链接"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>类</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/SocketException.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Java<sup><font size=-2>TM</font></sup>&nbsp;Platform<br>Standard&nbsp;Ed. 6</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../java/net/SocketAddress.html" title="java.net 中的类"><B>上一个类</B></A>&nbsp; &nbsp;<A HREF="../../java/net/SocketImpl.html" title="java.net 中的类"><B>下一个类</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?java/net/SocketException.html" target="_top"><B>框架</B></A> &nbsp; &nbsp;<A HREF="SocketException.html" target="_top"><B>无框架</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>所有类</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>所有类</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 摘要:&nbsp;嵌套&nbsp;|&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_summary">构造方法</A>&nbsp;|&nbsp;<A HREF="#methods_inherited_from_class_java.lang.Throwable">方法</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> 详细信息:&nbsp;字段&nbsp;|&nbsp;<A HREF="#constructor_detail">构造方法</A>&nbsp;|&nbsp;方法</FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <font size="-1"><a href="http://bugs.sun.com/services/bugreport/index.jsp">提交错误或意见</a><br>有关更多的 API 参考资料和开发人员文档,请参阅 <a href="http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html">Java SE 开发人员文档</a>。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。 <p>版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守<a href="http://java.sun.com/javase/6/docs/legal/license.html">许可证条款</a>。另请参阅<a href="http://java.sun.com/docs/redist.html">文档重新分发政策</a>。</font> </BODY> </HTML>
piterlin/piterlin.github.io
doc/jdk6_cn/java/net/SocketException.html
HTML
mit
14,256
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>counting: 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 / counting - 8.5.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> counting <small> 8.5.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2020-07-18 17:11:19 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-18 17:11:19 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.dev Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 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;[email protected]&quot; homepage: &quot;https://github.com/coq-contribs/counting&quot; license: &quot;Proprietary&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Counting&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5&quot; &amp; &lt; &quot;8.6~&quot;} ] tags: [ &quot;keyword:statistics&quot; &quot;category:Miscellaneous/Coq Extensions&quot; ] authors: [ &quot;Stéphane Lescuyer &lt;&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/counting/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/counting.git&quot; synopsis: &quot;Counting: a Coq plugin for measuring definitions/proofs&quot; description: &quot;This plugin keeps the count of the size of definitions and proofs in the current Coq session.&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/counting/archive/v8.5.0.tar.gz&quot; checksum: &quot;md5=44463f7f336e1bd200a651b051fee094&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-counting.8.5.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-counting -&gt; coq &lt; 8.6~ -&gt; ocaml &lt; 4.06.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-counting.8.5.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.06.1-2.0.5/extra-dev/8.11.dev/counting/8.5.0.html
HTML
mit
6,813
<HTML><HEAD> <TITLE>Review for Twelfth Night: Or What You Will (1996)</TITLE> <LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css"> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> <H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0117991">Twelfth Night: Or What You Will (1996)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?E.+Benjamin+Kelsey">E. Benjamin Kelsey</A></H3><HR WIDTH="40%" SIZE="4"> <PRE>TWELFTH NIGHT: OR WHAT YOU WILL (PG)</PRE> <PRE>Directed by Trevor Nunn Running Time: 134 minutes Originally Released: October 25, 1996 (USA)</PRE> <PRE>Reviewed by E. Benjamin Kelsey</PRE> <PRE>* * ½ (out of four)</PRE> <P>Shakespeare's plays are some of the hardest to follow for us here in modern times. With odd, lengthy character names, a busy hustling of events, and loquacious dialogue spoken swiftly and fluently in thick English accents, us Americans generally ain't got no clue what's going on. That's what makes the actors (or players to sound more authentic) so very important whenever a Shakespearean production is presented, whether it be for the big screen, the small screen, or the stage. It is up to them to convey to us what they're saying and feeling, and a good actor can make the most complex character easy to understand and follow.</P> <P>Sadly, TWELFTH NIGHT: OR WHAT YOU WILL is one of the poorer examples of such. This is one of the hardest to follow Shakespeare adaptions of recent memory, but I do admire anyone who attempts to tackle such a feat, and the effort here is credible even if the overall result needs a bit of a tune up. An otherwise mediocre film, TWELFTH NIGHT is saved by a few, *very* few, commendable touches, particularly Helena Bonham Carter who stars as the Countess Olivia. Olivia has recently suffered the death of a brother, and is using the tragedy to ignore the repeated efforts of Duke Orsino (Toby Stephens) to swoon her. Orsino has enlisted the aid of Cesario (Imogen Stubbs) to assist him in his efforts by sending the young man to profess of the Duke's love. As common Shakespeare would always have it, however, nobody loves who they're "supposed" to, and Olivia ends up falling for the messenger instead. There's just one catch . . .</P> <P>Cesario is in reality a young *woman* named Viola who washed to shore after a terrible storm wrecked the ship she was traveling on with her almost identical brother, Sebastian (Steven Mackintosh). Both survived and drifted to different shores, but both assumed the other to be dead. With nothing left, Viola took the disguise of a young man and became a servant to the Duke, a man she would come to love without revelation due to her male semblance.</P> <P>Also coming into play is a barrage of comic relief characters who flail about to our amusement in yet another typical attribute of any Shakespearean comedy. This time around, they consist of Olivia's steward Malvolio (Nigel Hawthorne), Olivia's drunken uncle, Sir Toby Belch (Mel Smith) and waiting gentlewoman Maria (Imelda Staunton), and Orisno's jester of sorts, Feste (Ben Kingsley). While these characters are meant to lighten up the film, they are quite dizzying and confusing, and although they do play somewhat of an important role in the overall story, the focus on them may have been a bit excessive.</P> <P>It is by far Carter who shines and lures you into the story, but unfortunately she is the one whose character is used less than we'd like, proving a bit ironic when she is such an important element in the story. Stubbs is almost annoying, but handles her transvestite role well enough to satisfy, and it's true that her scenes with Carter are some of the best the movie has to offer. It is these scenes that make the film worth watching, even if it means wading thru the boringly hectic scenes carried by the more mundane cast of actors.</P> <P>It is crucial to note that the time frame of this story has been moved up to the 19th century, which leaves no need for adaption from Carter, who has spent a great amount of screen time reveling in both Shakespearean films and period pieces set in the 1800's (think 1990's HAMLET and HOWARDS END as well as the current WINGS OF THE DOVE). Shakespeare being set in futuristic (as far as the time they were written is concerned) settings seems to be the latest trend, with a present day ROMEO + JULIET and a RICHARD III set in the 1930's being recent examples. It's a bit off-kilter when they rely heavily on the original dialogue, such as with this film and ROMEO + JULIET, but it's also an interesting transposition of the classics that make it interesting to watch. In fact, this is one to be seen simply for the fact that it's Shakespeare if for nothing else.</P> <P>Shakespeare movies definitely require the right audience. He is definitely not everybody's taste. This adaption of TWELFTH NIGHT is perhaps a bit too sophomoric for loyal enthusiasts, and yet too luxurious for those better suited with a high-caliber action flick. Finding the right middle ground will be a definite chore as this one doesn't hold the class of such "elegant comedies" as EMMA, and yet doesn't resemble silly farces that best accompany a pajama party. What that means is that this film will likely dwindle away in mediocrity, but if it's any consultation, not too much will be lost.</P> <PRE>December 27, 1997</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/10396.html
HTML
mit
6,218
<!DOCTYPE html> <!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]--> <!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]--> <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]--> <head> <meta charset="utf-8"> <title>Petascale Tools Workshop 2013 - RayHightower.com</title> <meta name="author" content="Raymond T. Hightower - Chicago Ruby on Rails & iOS Developer"> <meta name="description" content="The Petascale Tools Workshop is for computer scientists who create tools that enable apps to run efficiently on the world&rsquo;s fastest &hellip;"> <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="canonical" href="http://RayHightower.com/blog/2013/07/19/petascale-tools-workshop-2013"> <link href="/favicon.png" rel="icon"> <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css"> <link href="/atom.xml" rel="alternate" title="RayHightower.com" type="application/atom+xml"> <script src="/javascripts/modernizr-2.0.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <!-- next two lines copied from octopress-yortz example --> <!-- <link rel="stylesheet" href="http://localhost:4000/blog/assets/app-1094520b91e86929a538822f9bde7657.css"> &#8211;> <script src="http://localhost:4000/blog/assets/app-f6a144c800a4818350bed53d612cb244.js"></script> <script>!window.jQuery && document.write(unescape('%3Cscript src="/javascripts/libs/jquery.min.js"%3E%3C/script%3E'))</script> <script src="/javascripts/octopress.js" type="text/javascript"></script> <!--Fonts from Google"s Web font directory at http://google.com/webfonts --> <link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css"> <!-- Arvo is like Rockwell. Added by RTH on 12/27/2012. --> <link href='http://fonts.googleapis.com/css?family=Arvo:700' rel='stylesheet' type='text/css'> <script id="search-results-template" type="text/x-handlebars-template"> {{#entries}} <article> <h3> <small><time datetime="{{date}}" pubdate>{{date}}</time></small> <a href="{{url}}">{{title}}</a> <p>tagged: {{ tags }} | category: <a href="/categories/{{category }}">{{category}}</a></p> </h3> </article> {{/entries}} </script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-330946-28']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body > <header role="banner"><hgroup> <h1><a href="/">RayHightower.com</a></h1> <h2>Thoughts about Ruby, Rails, iOS, the Internet of Things, software development, and business growth.</h2> </hgroup> </header> <nav role="navigation"><ul class="subscription" data-subscription="rss"> <li><a href="/atom.xml" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li> </ul> <form action="/search" method="get"> <fieldset role ="search"> <input type="text" id="search-query" name="q" placeholder="Search" autocomplete="off" class="search" /> </fieldset> </form> <ul class="main-navigation"> <li><a href="/">Home</a></li> <li><a href="/blog/archives">Archives</a></li> <li><a href="/speaking">Speaking</a></li> <li><a href="/if-rudyard-kipling">If</a></li> <li><a href="/contact">Contact</a></li> </ul> </nav> <div id="main"> <div id="content"> <div> <article class="hentry" role="article"> <header> <h1 class="entry-title">Petascale Tools Workshop 2013</h1> <p class="meta"> <time class='entry-date' datetime='2013-07-19T02:12:00-05:00'><span class='date'>July 19, 2013</span> <span class='time'></span></time> </p> </header> <div class="entry-content"><p>The <a href="http://www.paradyn.org/CSCADS2013/index.html">Petascale Tools Workshop</a> is for computer scientists who create tools that enable apps to run efficiently on the world&rsquo;s fastest supercomputers. Supercomputer performance is measured in petaflops: 10<sup><sup>15</sup></sup> floating point operations per second. That&rsquo;s blazing speed, thousands of times faster than the fastest MacBook Pro.</p> <!--more--> <p><a href="http://WisdomGroup.com">WisdomGroup</a> was invited to attend the workshop because we have a client client, <a href="http://www.wisdomgroup.com/case-studies/texas-am-university/">Texas A &amp; M University</a>, operating in the high performance computing (HPC) space. As the only non-PhD in the room, I was given a chance to exercise Pat Metheny&rsquo;s <a href="/blog/2013/07/17/pat-metheny-be-the-worst/">be-the-worst</a> philosophy in the extreme. The result: I learned things that will help WisdomGroup to deliver better solutions for our clients, especially the TAMU team.</p> <h3>One Megawatt = $1,000,000.00</h3> <p>As with other disciplines of engineering, supercomputer design is all about managing trade-offs. If you increase the clock speed, how will that affect your electrical bill? If you increase the size of the cache, how much more will you spend on hardware?</p> <p>Every Petascale Workshop presenter highlighted the toughest constraint: The cost of electrical power. High performance computers gulp electricity. The wattage numbers were all very abstract to me until one presenter layed out a direct one-to-one correspondence between electricity and money. <em>One megawatt of power used over the course of a year costs one million dollars.</em></p> <p>Express a constraint in terms of money, and the abstractions melt away.</p> <p>The debate between the scientists was vigorous yet respectful. After hearing the 1-to-1 rule of thumb, one audience member remarked, &ldquo;I know how to genererate a megawatt for only $865,000.&rdquo; He then outlined his solution, a combination of coal, fossil fuels, and natural gas that would achieve the reduction. The more important point: Electricity is expensive.</p> <h3>Re-Framing the Power Problem</h3> <p>There is another way to look at the power problem. Consider it from the perspective of performance, not power. Here&rsquo;s how one presenter put it: No matter where we build a supercomputer, we will only have a limited amount of power. Let&rsquo;s look at the maximum available power as a constraint and go from there.</p> <p>Rubyists are familiar with the saying &#34;<a href="http://gettingreal.37signals.com/ch03_Embrace_Constraints.php">constraints are liberating</a>&#34;, popularized by 37signals. Since power limitations are real constraints, our next step is to figure out how to extract the best results allowed within the constraints.</p> <h3>Top Five</h3> <p>Supercomputer scientists are as competitive as olympic athletes. As of June 2013, the five fastest machines in the world are:</p> <center> <table class="table table-condensed"> <thead> <tr> <th width="50">Rank</th> <th width="75">Site</th> <th width="100" style="text-align: right;">Cores</th> <th width="75" style="text-align: right;">Rmax (PF/s)</th> <th width="75" style="text-align: right;">Power (MW)</th> </tr> </thead> <tr class="sublist odd"> <td><span class="badge">1</span></td> <td>China</td> <td style="text-align: right;">3,120,000</td> <td style="text-align: right;">33.9</td> <td style="text-align: right;">17.8</td> </tr> <tr class="sublist even"> <td><span class="badge">2</span></td> <td>USA</td> <td style="text-align: right;">560,640</td> <td style="text-align: right;">17.5</td> <td style="text-align: right;">8.2</td> </tr> <tr class="sublist odd"> <td><span class="badge">3</span></td> <td>USA</td> <td style="text-align: right;">1,572,864</td> <td style="text-align: right;">17.2</td> <td style="text-align: right;">7.9</td> </tr> <tr class="sublist even"> <td><span class="badge">4</span></td> <td>Japan</td> <td style="text-align: right;">705,024</td> <td style="text-align: right;">10.5</td> <td style="text-align: right;">12.6</td> </tr> <tr class="sublist odd"> <td><span class="badge">5</span></td> <td>USA</td> <td style="text-align: right;">786,432</td> <td style="text-align: right;">8.6</td> <td style="text-align: right;">3.9</td> </tr> </table> </center> <p>&nbsp;<br/> Scientists determine Rmax by running the <a href="http://en.wikipedia.org/wiki/LINPACK_benchmarks">LINPACK</a> benchmark. <a href="http://top500.org">Top500.org</a> has more information about the fastest machines.</p> <h3>Digging Deeper</h3> <p>Some of the biggest performance gains can be realized through more efficient software. Most supercomputers run some distribution of Linux. Some teams of researchers focus on ways to optimize the Linux kernel for supercomputing.</p> <p>Optimization is not a one-size-fits all process. The scientists need to consder the type of applications being run, percentage of time spent on I/O, efficiency of algorithms, and so on. Each potential optimization choice is like a node on an ever expanding tree. The choices are endless, and the seasoned expert will know where to focus for the best results.</p> <p>In the Ruby world, we might use tools like <a href="http://newrelic.com">New Relic</a> or <a href="http://codeclimate.com">Code Climate</a> to identify hot spots in our code, places where re-factoring can reduce CPU utilization or improve I/O. HPC tools tend to be highly customizable because the users are intimately familar with their own hardware. During a lunch conversation, one team of scientists shared how they suspected a defect in hardware counters used to measure the behavior of a supercomputer under study. The instincts of the scientists proved correct, and the errant counters were replaced.</p> <h3>Conclusion</h3> <p>When smart people challenge each other to grow, great things happen. The scientists at the Petascale Tools Workshop were clearly helping each other to grow. The next few years in supercomputing will be exciting!</p> <h3>Acknowledgements</h3> <p>I am grateful to the organizers of the Petascale Tools Workshop for hosting the event, and to the TAMU team for extending the invitation. Thank you both!</p> </div> <footer> <p class="meta"> <span class="byline author vcard">Posted by <span class="fn">Raymond T. Hightower - Chicago Ruby on Rails & iOS Developer</span></span> <time class='entry-date' datetime='2013-07-19T02:12:00-05:00'><span class='date'>July 19, 2013</span> <span class='time'></span></time> <span class="categories"> <a class='category' href='/blog/categories/education/'>education</a>, <a class='category' href='/blog/categories/high-performance-computing/'>high performance computing</a> </span> </p> <div class="sharing"> <a href="//twitter.com/share" class="twitter-share-button" data-url="http://RayHightower.com/blog/2013/07/19/petascale-tools-workshop-2013/" data-via="" data-counturl="http://RayHightower.com/blog/2013/07/19/petascale-tools-workshop-2013/" >Tweet</a> </div> <p class="meta"> <a class="basic-alignment left" href="/blog/2013/07/17/pat-metheny-be-the-worst/" title="Previous Post: Pat Metheny: Be the Worst">&laquo; Pat Metheny: Be the Worst</a> <a class="basic-alignment right" href="/blog/2013/07/29/why-we-need-stem/" title="Next Post: Why We Need STEM">Why We Need STEM &raquo;</a> </p> </footer> </article> <section> <h1>Comments</h1> <div id="disqus_thread" aria-live="polite"><noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </section> </div> <aside class="sidebar"> <section> <h1>About</h1> <p>Raymond T. Hightower is a software developer, founder of <a href="http://wisdomgroup.com">WisdomGroup</a>, organizer of <a href="http://chicagoruby.org">ChicagoRuby</a>, and producer of <a href="http://windycityrails.org">WindyCityRails</a> & <a href="http://rubycaribe.com">RubyCaribe</a>. He is currently exploring parallelism and concurrency. </p> <p> <a href="http://windycityrails.org"><img src="/images/windycityrails.jpg" width="191" height="42" alt="WindyCityRails - Ruby on Rails Conference in Chicago, IL USA" title="WindyCityRails - Ruby on Rails Conference in Chicago, IL USA"/></a><br/> <a href="http://wisdomgroup.com"><img src="/images/wisdomgroup.jpg" width="191" height="42" alt="WisdomGroup - Ruby on Rails. MVP. iPhone. iPad." title="WisdomGroup - Ruby on Rails. MVP. iPhone. iPad."/></a><br/> <a href="http://rubycaribe.com"><img src="/images/rubycaribe.jpg" width="191" height="42" alt="RubyCaribe - Ruby conference in Barbados. Ruby in the Caribbean. Ruby on Rails." title="RubyCaribe - Ruby conference in Barbados. Ruby in the Caribbean. Ruby on Rails."/></a><br/> <a href="http://chicagoruby.org"><img src="/images/chicagoruby.jpg" width="191" height="42" alt="ChicagoRuby - Ruby on Rails in Chicago, IL USA" title="ChicagoRuby - Ruby on Rails in Chicago, IL USA" /></a><br/> </p> </section> <section> <h1>Observations</h1> <ul> <li>The best way to make dreams come true is to wake up.<br/> ~Mae C. Jemison</li> <li>Tact is the art of making a point without making an enemy.<br/>~Isaac Newton</li> <li>Find a need and fulfill it. Successful businesses are founded on the needs of people.<br/>~A. G. Gaston</li> <li>It&#8217;s kind of fun to do the impossible.<br/>~Walt Disney</li> <li>If one ox could not do the job they did not try to grow a bigger ox, but used two oxen. When we need greater computer power, the answer is not to get a bigger computer, but to build systems of computers and operate them in parallel.<br/>~Grace Hopper</li> <li>A person with a new idea is a crank until the idea succeeds.<br/> ~Mark Twain</li> <li>My over arching framework is 1) Pure appreciation. 2) Spend time with good people. 3) Leave the world a little better.<br/>~Mellody Hobson</li> <li>Everybody told me no at first, including my wife. I turned the nos into yeses and the disadvantages into advantages.<br/>~John H. Johnson</li> <li>I would have been fired a hundred times at a company run by MBAs. But I never went into business to make money. I went&#8230; so that I could do interesting things that hadn&#8217;t been done before.<br/>~Amar Bose</li> <li>Don&#8217;t undertake a project unless it is manifestly important and nearly impossible.<br/>~Edwin Land</li> </ul> </section> <section> <h1>Speaking</h1> <ul> <li><a href="http://in5.ae/">in5 hub Innovation Hub</a><br/>in Dubai, UAE</li> <li><a href="https://www.eventbrite.com/e/devnights-robot-tickets-15433389684">DevNights at The Cribb</a><br/>in Dubai, UAE</li> <li><a href="http://rubyfuza.org/">Rubyfuza</a><br/>in Cape Town, South Africa</li> <li><a href="http://www.meetup.com/nodejs/events/206159562/">NYC Node JS Meetup</a><br/>in New York, NY</li> <li><a href="http://www.meetup.com/Chicago-Nodejs/events/177556202">Chicago Node.js</a><br/>in Chicago, IL</li> <li><a href="https://www.eventbrite.com/e/cloudcamp-chicago-developer-night-registration-11736697779">CloudCamp Chicago - Developer Night</a><br/>in Chicago, IL</li> <li><a href="http://LinuxBarbados.org">LinuxBarbados</a><br/>at University of the West Indies<br/>at Cave Hill, Barbados</li> <li><a href="http://flourishconf.com/2014/">Flourish Open Source Conference</a><br/>at University of Illinois at Chicago</li> <li><a href="http://www.meetup.com/Chicago-RubyMotion/events/143412442/">Chicago RubyMotion</a> at DevBootcamp<br/>in Chicago, IL</li> <li><a href="http://chippewavalleycodecamp.com/">Chippewa Valley Code Camp</a><br/>in Eau Claire, WI</li> <li><a href="/blog/2012/10/29/building-ios-apps-with-ruby-motion/">Aloha Ruby</a> in Honolulu, HI</li> <li><a href="/blog/2012/10/29/building-ios-apps-with-ruby-motion/">Magic Ruby</a> in Orlando, FL</li> </ul> </section> <section> <h1>Social Media</h1> <ul class="social" id="css3"> <li class="twitter"> <a href="http://twitter.com/rayhightower"><strong>Twitter</strong></a> </li> <li class="github"> <a href="http://www.github.com/rayhightower"><strong>GitHub</strong></a> </li> <li class="linkedin"> <a href="http://www.linkedin.com/in/rayhightower"><strong>LinkedIn</strong></a> </li> <li class="vimeo"> <a href="http://vimeo.com/chicagoruby"><strong>Vimeo</strong></a> </li> </ul> <p>&nbsp;<br/>&nbsp;</p> </section> <!-- added by RTH 1/9/2013 from http://www.dotnetguy.co.uk/post/2012/06/25/octopress-category-list-plugin/ --> <section> <h1>Blog Categories</h1> <ul id="categories"> <li class='category'><a href='/blog/categories/arduino/'>arduino (2)</a></li> <li class='category'><a href='/blog/categories/beaglebone-black/'>beaglebone black (8)</a></li> <li class='category'><a href='/blog/categories/business/'>business (35)</a></li> <li class='category'><a href='/blog/categories/community/'>community (38)</a></li> <li class='category'><a href='/blog/categories/education/'>education (48)</a></li> <li class='category'><a href='/blog/categories/environment-of-respect/'>environment of respect (3)</a></li> <li class='category'><a href='/blog/categories/functional-programming/'>functional programming (1)</a></li> <li class='category'><a href='/blog/categories/git/'>git (6)</a></li> <li class='category'><a href='/blog/categories/high-performance-computing/'>high performance computing (8)</a></li> <li class='category'><a href='/blog/categories/ios/'>ios (13)</a></li> <li class='category'><a href='/blog/categories/iot/'>iot (13)</a></li> <li class='category'><a href='/blog/categories/linux/'>linux (15)</a></li> <li class='category'><a href='/blog/categories/node/'>node (4)</a></li> <li class='category'><a href='/blog/categories/objective-c/'>objective-c (5)</a></li> <li class='category'><a href='/blog/categories/openrov/'>openrov (13)</a></li> <li class='category'><a href='/blog/categories/os-x/'>os x (13)</a></li> <li class='category'><a href='/blog/categories/parallella/'>parallella (10)</a></li> <li class='category'><a href='/blog/categories/rails/'>rails (11)</a></li> <li class='category'><a href='/blog/categories/raspberri-pi/'>raspberri pi (1)</a></li> <li class='category'><a href='/blog/categories/raspberry-pi/'>raspberry pi (4)</a></li> <li class='category'><a href='/blog/categories/ruby/'>ruby (27)</a></li> <li class='category'><a href='/blog/categories/rubymotion/'>rubymotion (13)</a></li> <li class='category'><a href='/blog/categories/solar/'>solar (1)</a></li> <li class='category'><a href='/blog/categories/ux/'>ux (3)</a></li> <li class='category'><a href='/blog/categories/vim/'>vim (5)</a></li> <li class='category'><a href='/blog/categories/xcode/'>xcode (5)</a></li> </ul> </section> <section> <h1>Featured Articles</h1> <ul> <li><a href="/blog/2014/07/07/parallella-quick-start-guide-with-gotchas/">Parallella Quick Start Guide</a></li> <li><a href="/blog/2014/06/16/citizen-science-with-openrov/">Citizen Science With OpenROV</a></li> <li><a href="/blog/2014/01/02/beaglebone-black-ubuntu-part-1/">Ruby on BeagleBone Black</a></li> <li><a href="/blog/2012/12/03/ruby-on-raspberry-pi/">Ruby on Raspberry Pi</a></li> <li><a href="/blog/2014/04/12/recursion-and-memoization/">Recursion and Memoization</a></li> <li><a href="/blog/2014/05/30/how-to-grow-a-user-group/">How to Grow a User Group</a></li> <li><a href="/blog/2013/05/16/upgrading-ruby-with-rvm/">Upgrading Ruby With RVM</a></li> </ul> </section> <section> <h1>Vim</h1> <p>I don&#8217;t always use a modal editor. But when I do, I use <a href="/blog/2013/01/12/why-i-use-vim/">Vim</a>.</p> <p> <a href="/blog/2013/01/12/why-i-use-vim/"><img src="/images/vim_editor.gif" width="125" height="60" alt="Vim, the editor" title="Vim, the editor"/></a> </p> </section> </aside> </div> </div> <footer role="contentinfo"><p> Copyright &copy; 2015 - Raymond T. Hightower - Chicago Ruby on Rails & iOS Developer - <span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span> </p> </footer> <script type="text/javascript"> var disqus_shortname = 'rayhightower'; // var disqus_developer = 1; var disqus_identifier = 'http://RayHightower.com/blog/2013/07/19/petascale-tools-workshop-2013/'; var disqus_url = 'http://RayHightower.com/blog/2013/07/19/petascale-tools-workshop-2013/'; var disqus_script = 'embed.js'; (function () { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/' + disqus_script; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); }()); </script> <script type="text/javascript"> (function(){ var twitterWidgets = document.createElement('script'); twitterWidgets.type = 'text/javascript'; twitterWidgets.async = true; twitterWidgets.src = '//platform.twitter.com/widgets.js'; document.getElementsByTagName('head')[0].appendChild(twitterWidgets); })(); </script> </body> </html>
RayHightower/rayhightower.github.octo-broken
blog/2013/07/19/petascale-tools-workshop-2013/index.html
HTML
mit
22,196
{% extends "layout.html" %} {% block content %} <div class="page-header"> <h1>中港跌零系统登陆</h1> </div> <form class="form-horizontal" action="{{ url_for('user_login') }}" method="POST"> <div class="form-group"> <label class="col-sm-2 control-label">手机号码</label> <div class="col-sm-2"><input type="text" class="form-control" name="mobile"></div> </div> <div class="form-group"> <label class="col-sm-2 control-label">密码</label> <div class="col-sm-2"><input type="password" class="form-control" name="password"></div> </div> <div class="form-group"> <button class="btn btn-default col-sm-offset-2" name="login">登录</button> </div> </form> {% endblock %} {% block js %} <script> $('[name=login]').on('click', function(e) { e.preventDefault(); e.target.blur(); $('form').submit(); }) </script> {% endblock %}
yxdong/ybk
zg/templates/login.html
HTML
mit
884
<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="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目&nbsp;</b></th><td class="std2">阿鼻地獄</td></tr> <tr><th class="std1"><b>注音&nbsp;</b></th><td class="std2">ㄚ ㄅ|<sup class="subfont">ˊ</sup> ㄉ|<sup class="subfont">ˋ</sup> ㄩ<sup class="subfont">ˋ</sup></td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">ā bí dì yù</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2">佛教宇宙觀中地獄中最苦的一種。為胡語音義合譯,意為無間。墮落到此的眾生受苦無間斷,故稱為<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>無間<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。為八大地獄中的第八獄。念佛三昧寶王論.卷上:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>女人能集,眾多苦事,假以香華,而為嚴好,愚人於此,妄起貪求,如海疲鳥,迷於彼岸,死必當墮,阿鼻地獄。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>簡稱為<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>阿鼻<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。</td></tr> <tr><th class="std1"><b><font class="fltypefont">附錄</font>&nbsp;</b></th><td class="std2">修訂本參考資料</td></tr> </td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
BuzzAcademy/idioms-moe-unformatted-data
all-data/18000-18999/18345-22.html
HTML
mit
1,892
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.6"/> <title>My Project: Member List</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/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">My Project </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.6 --> <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 class="current"><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> <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="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <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></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><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">PlaylistModel Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_playlist_model.html">PlaylistModel</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Column</b> enum name (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>columnCount</b>(const QModelIndex &amp;parent=QModelIndex()) const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ColumnCount</b> enum value (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>data</b>(const QModelIndex &amp;index, int role=Qt::DisplayRole) const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>index</b>(int row, int column, const QModelIndex &amp;parent=QModelIndex()) const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>parent</b>(const QModelIndex &amp;child) const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>playlist</b>() const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>PlaylistModel</b>(QObject *parent=0) (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">explicit</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>rowCount</b>(const QModelIndex &amp;parent=QModelIndex()) const (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>setData</b>(const QModelIndex &amp;index, const QVariant &amp;value, int role=Qt::DisplayRole) (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setPlaylist</b>(QMediaPlaylist *playlist) (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"><span class="mlabel">slot</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Title</b> enum value (defined in <a class="el" href="class_playlist_model.html">PlaylistModel</a>)</td><td class="entry"><a class="el" href="class_playlist_model.html">PlaylistModel</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Wed Jul 2 2014 12:21:46 for My Project by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
danielholanda/Qt-Audio-Spectrum-Analyzer
Qt_code/html/class_playlist_model-members.html
HTML
mit
8,232
<!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="/SonghayCore/assets/img/favicon.ico" type="image/x-icon"> <link rel="icon" href="/SonghayCore/assets/img/favicon.ico" type="image/x-icon"> <title>SonghayCore Documentation - API - Encryptor.Encrypt(string, string) Method</title> <link href="/SonghayCore/assets/css/highlight.css" rel="stylesheet"> <link href="/SonghayCore/assets/css/bootstrap/bootstrap.css" rel="stylesheet"> <link href="/SonghayCore/assets/css/adminlte/AdminLTE.css" rel="stylesheet"> <link href="/SonghayCore/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="/SonghayCore/assets/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="/SonghayCore/assets/css/override.css" rel="stylesheet"> <script src="/SonghayCore/assets/js/jquery-2.2.3.min.js"></script> <script src="/SonghayCore/assets/js/bootstrap.min.js"></script> <script src="/SonghayCore/assets/js/app.min.js"></script> <script src="/SonghayCore/assets/js/highlight.pack.js"></script> <script src="/SonghayCore/assets/js/jquery.slimscroll.min.js"></script> <script src="/SonghayCore/assets/js/jquery.sticky-kit.min.js"></script> <script src="/SonghayCore/assets/js/mermaid.min.js"></script> <script src="/SonghayCore/assets/js/svg-pan-zoom.min.js"></script> <!--[if lt IE 9]> <script src="/SonghayCore/assets/js/html5shiv.min.js"></script> <script src="/SonghayCore/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="/SonghayCore/" class="logo"> <span>SonghayCore Documentation</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 class="active"><a href="/SonghayCore/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="#Summary">Summary</a></p> <p><a href="#Syntax">Syntax</a></p> <p><a href="#Parameters">Parameters</a></p> <p><a href="#ReturnValue">Return Value</a></p> <hr class="infobar-hidden"> </div> </section> <section class="sidebar"> <script src="/SonghayCore/assets/js/lunr.min.js"></script> <script src="/SonghayCore/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="/SonghayCore/api/Songhay.Security.Cryptography">Songhay<wbr>.Security<wbr>.Cryptography</a></li> <li class="header">Type</li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor">Encryptor</a></li> <li role="separator" class="divider"></li> <li class="header">Constructors</li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/23C39CC3">Encryptor<wbr>(<wbr>Encryption<wbr>Algorithm)<wbr></a></li> <li class="header">Method Members</li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/19A99B19">Encrypt<wbr>(byte[], <wbr>byte[])<wbr></a></li> <li class="selected"><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/A5C38E8D">Encrypt<wbr>(string, <wbr>string)<wbr></a></li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/30CFBB6D">Encrypt<wbr>(string)<wbr></a></li> <li class="header">Property Members</li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/76207612">IV</a></li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/85C7E31B">IvString</a></li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/623540B5">Key</a></li> <li><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor/FE4A6EED">KeyString</a></li> </ul> </section> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h3><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor">Encryptor</a>.</h3> <h1>Encrypt<wbr>(string, <wbr>string)<wbr> <small>Method</small></h1> </section> <section class="content"> <h1 id="Summary">Summary</h1> <div class="lead"> Encrypts <code class="cs"><a href="/SonghayCore">string</a></code> data. </div> <div class="panel panel-default"> <div class="panel-body"> <dl class="dl-horizontal"> <dt>Namespace</dt> <dd><a href="/SonghayCore/api/Songhay.Security.Cryptography">Songhay<wbr>.Security<wbr>.Cryptography</a></dd> <dt>Containing Type</dt> <dd><a href="/SonghayCore/api/Songhay.Security.Cryptography/Encryptor">Encryptor</a></dd> </dl> </div> </div> <h1 id="Syntax">Syntax</h1> <pre><code>public string Encrypt(string StringLiteral, string Key)</code></pre> <h1 id="Parameters">Parameters</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>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>StringLiteral</td> <td>string</td> <td> The data to encrypt. </td> </tr> <tr> <td>Key</td> <td>string</td> <td> The encryption key. </td> </tr> </tbody></table> </div> </div> <h1 id="ReturnValue">Return Value</h1> <div class="box"> <div class="box-body no-padding table-responsive"> <table class="table table-striped table-hover two-cols"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody><tr> <td>string</td> <td> A string representation of the encrypted data. </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).ready(function() { mermaid.initialize( { flowchart: { useMaxWidth: false }, startOnLoad: false, cloneCssStyles: false }); mermaid.init(undefined, ".mermaid"); // Remove the max-width setting that Mermaid sets var mermaidSvg = $('.mermaid svg'); mermaidSvg.addClass('img-responsive'); mermaidSvg.css('max-width', ''); // Make it scrollable var target = document.querySelector(".mermaid svg"); if(target !== null) { var panZoom = window.panZoom = svgPanZoom(target, { zoomEnabled: true, controlIconsEnabled: true, fit: true, center: true, maxZoom: 20, zoomScaleSensitivity: 0.6 }); // Do the reset once right away to fit the diagram panZoom.resize(); panZoom.fit(); panZoom.center(); $(window).resize(function(){ panZoom.resize(); panZoom.fit(); panZoom.center(); }); } $('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>
BryanWilhite/SonghayCore
docs/api/Songhay.Security.Cryptography/Encryptor/A5C38E8D.html
HTML
mit
12,935
<!--Start of Tawk.to Script--> <!--script type="text/javascript"> var $_Tawk_API={},$_Tawk_LoadStart=new Date(); (function(){ var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0]; s1.async=true; s1.src='https://embed.tawk.to/573291c187b47a7a385aeab7/default'; s1.charset='UTF-8'; s1.setAttribute('crossorigin','*'); s0.parentNode.insertBefore(s1,s0); })(); </script--> <!--End of Tawk.to Script--> <!--Start of Zopim Live Chat Script--> <script type="text/javascript"> window.$zopim||(function(d,s){var z=$zopim=function(c){ z._.push(c)},$=z.s= d.createElement(s),e=d.getElementsByTagName(s)[0];z.set=function(o){z.set. _.push(o)};z._=[];z.set._=[];$.async=!0;$.setAttribute('charset','utf-8'); $.src='//v2.zopim.com/?3uDfBFylVa74Usxh0ruA003rkwiE3RIQ';z.t=+new Date;$. type='text/javascript';e.parentNode.insertBefore($,e)})(document,'script'); </script> <!--End of Zopim Live Chat Script--> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script>window.jQuery || document.write('<script src="{{ site.url }}/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script> <script src="{{ site.url }}/assets/js/scripts.min.js"></script> {% if site.google_analytics %} <!-- Asynchronous Google Analytics snippet --> <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', '{{ site.google_analytics }}', 'auto'); ga('require', 'linkid', 'linkid.js'); ga('send', 'pageview'); </script> {% endif %} {% if page.comments != false %} {% include disqus_comments.html %} {% endif %}
navri/navri.github.io
_includes/scripts.html
HTML
mit
1,872
<nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <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" routerLink="/home">Converter</a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li routerLinkActive="active" [routerLinkActiveOptions]="{exact: true}"><a routerLink="/home">Home</a></li> <li routerLinkActive="active"><a routerLink="/encodeDecode">Encode/Decode</a></li> <li routerLinkActive="active"><a routerLink="/string">String</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li role="separator" class="divider"></li> <li class="dropdown-header">Nav header</li> <li><a href="#">Separated link</a></li> <li><a href="#">One more separated link</a></li> </ul> </li> </ul> </div><!--/.nav-collapse --> </div> </nav>
gglee0127/Converter
client/src/app/components/navbar/navbar.component.html
HTML
mit
1,724
<html> <head> <title>Index</title> </head> <body> Hello World!!! This is a test. </body> </html>
andrewlr/myrandomstuff
index.html
HTML
mit
97
<div class="code-block"> <div class="code-block__wrapper" data-syntax="scss"> ```scss /// Slightly lighten a color /// @access public /// @param {Color} $color - color to tint /// @param {Number} $percentage - percentage of `$color` in returned color /// @return {Color} @function tint($color, $percentage) { @return mix(white, $color, $percentage); } /// Slightly darken a color /// @access public /// @param {Color} $color - color to shade /// @param {Number} $percentage - percentage of `$color` in returned color /// @return {Color} @function shade($color, $percentage) { @return mix(black, $color, $percentage); } ``` </div> <div class="code-block__wrapper" data-syntax="sass"> ```sass /// Slightly lighten a color /// @access public /// @param {Color} $color - color to tint /// @param {Number} $percentage - percentage of `$color` in returned color /// @return {Color} @function tint($color, $percentage) @return mix($color, white, $percentage) /// Slightly darken a color /// @access public /// @param {Color} $color - color to shade /// @param {Number} $percentage - percentage of `$color` in returned color /// @return {Color} @function shade($color, $percentage) @return mix($color, black, $percentage) ``` </div> </div>
HugoGiraudel/sass-guidelines
_includes/snippets/syntax/18/en.html
HTML
mit
1,251
Performs sort on local data set. <div class="definition"> localSort([silent], [noResetRefresh]) </div> <div class="arguments"> <table> <tr> <td>silent</td> <td><b>boolean</b>, <i>optional</i> indicates whether to display sort time in the status bar</td> </tr> <tr> <td>noResetRefresh</td> <td><b>boolean</b>, <i>optional</i> indicates whether to call .reset() and .refresh() after sort</td> </tr> </table> </div> Returns number of milliseconds it took to sort. <h4>Description</h4> Performs local sort based on the information in the <a class="property" href="w2grid.sortData">.sortData</a> array. This method only works on the local data source, when <a class="property" href="w2grid.url">.url</a> property is not set. <div style="height: 10px"></div> If you have grid defined in the following way: <textarea class="javascript"> let grid = new w2grid({ name: 'grid', columns: [ { field: 'recid', text: 'ID', size: '50px' }, { field: 'lname', text: 'Last Name', size: '30%' }, { field: 'fname', text: 'First Name', size: '30%' }, { field: 'email', text: 'Email', size: '40%' }, { field: 'sdate', text: 'Start Date', size: '120px' }, { field: 'sdate', text: 'End Date', size: '120px' } ], records: [ { recid: 1, fname: 'John', lname: 'doe', email: '[email protected]', sdate: '1/3/2012' }, { recid: 2, fname: 'Stuart', lname: 'Motzart', email: '[email protected]', sdate: '2/4/2012' }, { recid: 3, fname: 'Jin', lname: 'Franson', email: '--', sdate: '4/23/2012' }, { recid: 4, fname: 'Susan', lname: 'Ottie', email: '[email protected]', sdate: '5/3/2012' }, { recid: 5, fname: 'Kelly', lname: 'Silver', email: '[email protected]', sdate: '4/3/2012' }, { recid: 6, fname: 'Francis', lname: 'Gatos', email: '[email protected]', sdate: '2/5/2012' } ] }); </textarea> You can apply sort in the following way: <textarea class="javascript"> grid.localSort(true, true); </textarea>
vitmalina/w2ui
docs/details/w2grid.localSort.html
HTML
mit
2,077
{% extends "site_base.html" %} {% load url from future %} {% load i18n %} {% load crispy_forms_tags %} {% block head_title %}{% trans "Set your new password" %}{% endblock %} {% block body %} <form method="POST" action="{% url "account_password_reset_token" uidb36=uidb36 token=token %}"> <legend>{% trans "Set your new password" %}</legend> <fieldset> {% csrf_token %} {{ form|crispy }} <div class="form-actions"> <button type="submit" class="btn btn-primary">{% trans "Save" %}</button> </div> </fieldset> </form> {% endblock %}
swiharta/radres
radres/templates/account/password_reset_token.html
HTML
mit
630
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title></title> <script> </script> </head> <body> <script src="https://code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script> <link rel="import" href="../italymap-datalet.html" /> <italymap-datalet data-url="http://172.16.15.128/cocreation/ajax/get-dataset-by-room-id-and-version/?room_id=11&version=1" selectedfields="[]"></italymap-datalet> </body> </html>
routetopa/deep-components
datalets/italymap-datalet/demo/index.html
HTML
mit
475
<html><FONT FACE=Verdana, Arial, Sans> <head> <title>Heatbugs</title> </head> <body> This is the documentation for the Heatbugs model...</p> </body> </html>
DrewHoo/Infochemical-Model
Heatbugs/docs/index.html
HTML
mit
171
<!-- Version: 0.10.13 | Wednesday, October 6, 2021, 1:48 PM --> <!doctype html> <html lang=""> <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></title> <!-- Fav icons compatible with all major browsers and devices --> <link rel="apple-touch-icon" sizes="180x180" href="../images/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="../images/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../images/favicon-16x16.png"> <link rel="manifest" href="../site.webmanifest"> <link rel="mask-icon" href="../images/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#00aba9"> <meta name="theme-color" content="#ffffff"> <!-- toolkit styles --> <link rel="stylesheet" href="../toolkit.css"> <!-- /toolkit styles --> <script src="https://polyfill.io/v3/polyfill.min.js"></script> <script> /** Allows to add custom scripts that will be executed inside the jQuery's $(document).ready(). */ var onDocumentReadyFunctions = []; function runFunctionOnDocumentReady( fn ) { onDocumentReadyFunctions.push( fn ); } </script> </head> <body> <!-- If 'fabricator=true' is present in page's annotation. --> <!-- If 'fabricator=false' is present or attribute is not present at all in the annotation. --> <div class="global" id="global-nav"> <div class="menu-toggle horisontal-links"> <a href="javascript:void(0);"><div class="logo-mini">&nbsp;</div></a> <a href="javascript:void(0);" class="js-toggle-global-nav" role="button" aria-label="Toggle Navigation"> <span class="tcon tcon-menu--xcross" aria-label="toggle menu" style="float:right;"> <span class="tcon-menu__lines" aria-hidden="true"></span> <span class="tcon-visuallyhidden">toggle menu</span> </span> </a> <!-- <div class="mobile logo-mini"></div> --> </div> <div class="menu"> <nav> <div class="search"> <form method="get" action="//wgtn.ac.nz/search"> <div role="search"> <a href="javascript:void(0);" class="js-toggle-global-search hide-on-mobile"> <span class="tcon tcon-search--xcross " aria-label="toggle search"> <span class="tcon-search__item" aria-hidden="true"></span> <span class="tcon-visuallyhidden">toggle search</span> </span> </a> <!-- <a href="#" class="icon-search js-toggle-global-search hide-on-mobile"></a> --> <label class="input-wrapper -icon-search" id="global-search"> <input type="text" autocomplete="off" name="q" placeholder="Search Victoria for…" required> <input type="submit" value="Go"> </label> </div> </form> <div class="horisontal-links align-center hide-on-desktop"> <a href="#"><span class="icon-home"></span>Home</a> <a href="#"><span class="icon-phone"></span>Contact</a> </div> </div> <div id="menu"> <a href="#" class="home"> <span class="icon-home"></span> <span class="hide-on-desktop">Victoria's main site</span> </a> <a href="#">Future students</a> <a href="#">International students</a> <a href="#">Current students</a> <a href="#">Research</a> <a href="#">About Victoria</a> <!-- <label role="search" class="hide-on-mobile"> <a href="#" class="icon-search"></a> </label> --> </div> </nav> </div> </div> <!-- Default fallback for header when not specified in the template. --> <header role="banner" class="site-header"> <div class="block centraliser"> <!-- Logotype --> <div class="logo"> <a href="/" title="Victoria University of Wellington homepage"> <picture> <!-- *MUST* be in pixels to avoid inconsistencies between CSS mediaqueries and HTML mediaqueries on Safari (*facepalm*) --> <source media="(max-width: 1087px)" srcset="../images/new/v2/logo-white-portrait.svg"> <img src="../images//new/v2/logo-white-full.svg" alt="Victoria University of Wellington - Te Whare Wānanga o te Ūpoko o te Ika a Māui"> </picture> </a> </div> <!-- Introductory block --> <div class="site-intro"> <a href="#" title=" homepage"> <h1> <span class="preline">School of</span> History, Philosophy, Political Science and International Relations <small lang="mi"> Te Kura Ao Whakamuri, Rapunga Whakaaro, Matai Tōrangapū me te Ao </small> </h1> </a> </div> </div> </header> <!-- 'Go up' button --> <a href="javascript:;" id="btn-up" title="Go to the top of the page" class="btn-floating sticky bottom" tabindex="-1"><span class="icon-arrow-up"></span></a> <!-- 'Edit page' button --> <a href="/_edit" id="btn-admin" style="display: none;" title="Edit the page in Squiz administration" class="btn-floating top" tabindex="-1"><span class="icon-edit"></span></a> <!-- Center 'content' and right 'widget' columns --> <div class="layout centraliser homepage-banner"> <div class="sidebar "> <nav class="sidemenu" role="navigation" data-gtm-track> <!-- Mobile devices *only* sidemenu control --> <h1 class="sidemenu-toggle"><a href="#" title="Show/Hide Research menu">Research menu</a></h1> <ul> <!-- Alt Root (1st) level items under the given Hub --> <li class="sidemenu__label"><a href="#" title="">Engage</a></li> <!-- Root (1st) level items under the given Hub --> <li><a class="sidemenu__link--withIcon" href="#" title="">Staff Support <i class="icon-arrow-left"></i></a></li> <li> <a href="#" title="">Research and ethics integrity</a> <!-- 2nd level --> <ul> <li><a href="#" title="">General rules</a></li> <li><a href="#" title="">Staff</a></li> <li><a href="#" title="">Research and ethics integrity manual</a></li> <li><a href="#" title="">Responsibilities</a></li> </ul> </li> <li class="has-submenu active expanded"> <a href="/research-IA/engage-our-talent.html" title="">New research staff and their specialisation</a> <span class="btn-expander" title="Toggle subpages"></span> <!-- 2nd level --> <ul> <li><a href="#" title="">Welcome ceremony</a></li> <li><a href="#" title="">Privacy rules</a></li> <li><a href="#" title="">Research departments</a></li> <li class="has-submenu active expanded"> <a href="#" title="">Contacts</a> <span class="btn-expander" title="Toggle subpages"></span> <!-- 3rd level --> <ul> <li><a href="#" title="">Directorate</a></li> <li class="active"><a href="#" title="">General assistance</a></li> <li><a href="#" title="">Emergency issues</a></li> <li><a href="#" title="">E-mail and phone</a></li> <li><a href="#" title="">Guidelines</a></li> </ul> </li> <li><a href="#" title="">Organisational structure</a></li> <li><a href="#" title="">Human resources and hiring process</a></li> </ul> </li> <li><a href="#" title="">Commercialise your research</a></li> <li><a href="#" title="">Research funding and grants</a></li> <li> <a href="#" title="">PBRF</a> <!-- 2nd level --> <ul> <li><a href="#" title="">Welcome ceremony</a></li> <li><a href="#" title="">Privacy rules</a></li> <li><a href="#" title="">Research departments</a></li> <li> <a href="#" title="">Contacts</a> <!-- 3rd level --> <ul> <li><a href="#" title="">Directorate</a></li> <li><a href="#" title="">General assistance</a></li> <li><a href="#" title="">Emergency issues</a></li> <li> <a href="#" title="">E-mail and phone</a> <!-- 4th level --> <ul> <li><a href="#" title="">Department of internal relationships</a></li> <li><a href="#" title="">Department of seriousness relationships</a></li> <li><a href="#" title="">Direct assistance services</a></li> <li><a href="#" title="">Lost and found</a></li> </ul> </li> <li><a href="#" title="">Guidelines</a></li> </ul> </li> <li><a href="#" title="">Organisational structure</a></li> <li><a href="#" title="">Human resources and hiring process</a></li> </ul> </li> <li> <a href="#" title="">Workshops, resources and support</a> <ul> <li><a href="#" title="">Workshop</a></li> <li><a href="#" title="">Resources</a></li> <li><a href="#" title="">Support</a></li> <li><a href="#" title="">Events</a></li> <li><a href="#" title="">Dates</a></li> <li><a href="#" title="">Contacts</a></li> <li><a href="#" title="">Issues resolution</a></li> <li><a href="#" title="">Framework</a></li> <li><a href="#" title="">Best practices</a></li> </ul> </li> <li><a href="#" title="">Supervising research students</a></li> </ul> </nav> </div> <figure class="banner"> <a href="#"> <img src="//www.wgtn.ac.nz/__data/assets/image/0017/344105/crocodile-bike-2000x800px.jpg"> <!-- Use class="wider, bottom or top" to position the text box --> <figcaption> <h1>Centre for Strategic Studies: New Zealand <i class="icon-caret-right"></i></h1> </figcaption> </a> </figure> </div> <div class="homepage-base layout"> <!-- Center 'content' column --> <div class="content-panel"> <main> <!-- Banner --> <section> <div class="sector"> <div class="centraliser"> <div class="homepage-intro block formatting"> <div class="intro-text"> <p>Challenge your ideas and cultivate your creativity at Victoria’s Faculty of Humanities and Social Sciences.</p> <p>Our diverse range of courses and location in the nation’s capital and cultural heart will provide you with unrivalled opportunities to build your future.</p> </div> <div class="links-wrap"> <div class="button-links"> <a href="https://www.wgtn.ac.nz/fhss/about" class="button large">About us</a> <a href="https://www.wgtn.ac.nz/fhss/schools" class="button large">Explore our Schools</a> </div> <div class="social-links"> <p>Find us on</p> <a class="social-icon" title="Our Facebook page" href="https://www.facebook.com/"> <img alt="Facebook logo" src="../images/social-facebook.svg"> </a> <a class="social-icon" title="Our Linkedin profile" href="https://www.linkedin.com/"> <img alt="LinkedIn icon" src="../images/social-linkedin.svg"> </a> <a class="social-icon" title="Our YouTube profile" href="https://www.youtube.com/"> <img alt="YouTube icon" src="../images/social-youtube.svg"> </a> </div> </div> </div> <!-- Video block --> <div class="text-promo-panel video"> <div class="block formatting centraliser"> <figure class="media featured"> <a data-lity="" href="http://www.youtube.com/watch?v=k1-243Uv5cw" target="_blank"> <img alt="The colour of crime" src="http://cms.wgtn.ac.nz/__data/assets/image/0009/475929/varieties/ls_small.jpg"> <figcaption class="outside"> <h4>The colour of crime <i class="icon-triangle-right"></i></h4> </figcaption> </a> </figure> </div> </div> </div> </div> <div class="tiles-panel"> <section class="centraliser block"> <div class="study-area-tabs" id="study-area-tabs"> <ul> <li class="active"><a href="javascript:void(0)"><h4><span class="icon-book-open"></span>Study areas</h4></a></li> <li><a href="javascript:void(0)"><h4><span class="icon-graduation-cap"></span>Degrees and qualifications</h4></a></li> </ul> </div> <div class="study-area-single study-areas"> <h1>Explore our diverse range of disicplines</h1> <div class="study-area-wide-panel"> <div class="img-wrap"> <img src="http://placekitten.com/g/440/270" alt=""> </div> <div class="content-wrap"> <div class="text-subjects-wrap"> <div class="text-wrap"> <h2>Asian Languages and Cultures</h2> <p>Study the cultures and languages of the world's biggest.</p> </div> <div class="subjects-wrap"> <h4 class="icon-book">Available subjects</h4> <ul> <li>Asian Studies</li> <li>Chinese</li> <li>Japanese</li> <li>Asian Studies</li> <li>Korean</li> </ul> </div> </div> <a class="button primary" href="">Find out more</a> </div> </div> <div class="study-area-wide-panel"> <div class="img-wrap"> <img src="http://placekitten.com/g/440/250" alt=""> </div> <div class="content-wrap"> <div class="text-subjects-wrap"> <div class="text-wrap"> <h2>Asian Languages and Cultures</h2> <p>Study the cultures and languages of the world's biggest, most populous continent, Asia. Become a truly global citizen with the communication skills to bridge cultural and linguistic gaps.</p> </div> <div class="subjects-wrap"> <h4 class="icon-book">Available subjects</h4> <ul> <li>Asian Studies</li> <li>Chinese</li> <li>Japanese</li> </ul> </div> </div> <a class="button primary clearfix" href="">Find out more</a> </div> </div> </div> <section class="degrees-quals updated-tile-grid hidden"> <h1>Undergraduate degrees</h1> <div class="centraliser"> <div class="tile-strip-grid"> <div class="tiles-wrap"> <ul> <li class="tile"> <a href=""> <h2>Bachelor of Commerce</h2> <h4>BE(Hons)</h4> <h4>3 years</h4> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Bachelor of Engineering with Honours</h2> <h4>BE(Hons)</h4> <h4>3 years</h4> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Bachelor of Arts</h2> <h4>BA</h4> <h4>FHSS</h4> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Certificate in Deaf Studies: Teaching New Zealand Sign Language</h2> <h4>CertDeafStud (Teaching NZSL)</h4> <!-- <h4>FHSS</h4> --> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Bachelor of Arts</h2> <h4>BE(Hons)</h4> <h4>Law</h4> <i class="icon-arrow-right"></i> </a> </li> </ul> </div> </div> </div> </section> <section class="degrees-quals updated-tile-grid hidden"> <h1>Postgraduate degrees</h1> <div class="centraliser tiles-wrap four-col"> <ul> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> <li class="tile"> <a href=""> <h2>Master of Museum and Heritage Practice</h2> <div class="sub-text"> <h4>MMHP</h4> </div> <i class="icon-arrow-right"></i> </a> </li> </ul> </div> </section> <!-- Anthropology Art History Asian Languages and Cultures Classics Creative writing Criminology English Literature English Proficiency Film and Media Studies Health History Language Teaching Linguistics Literary Translation Māori Studies Music New Zealand Sign Language Pacific Cultures and Languages Philosophy Politics and International Relations Religious Studies Sociology Te Reo Māori Theatre Midwifery Nursing Science European and Latin American Languages and Cultures --> </section> </div> <div class="promo-panel"> <div class="block formatting centraliser"> <figure class=" "> <img alt="Wellington waterfront" src="https://www.wgtn.ac.nz/__data/assets/image/0010/351739/qs-stars.jpg"> <figcaption> <h1>Our national and global rankings</h1> <p>We are New Zealand's top ranked university for research quality and consistently rank among the world’s best universities.</p> <a title="Why to study at Victoria" href="https://www.wgtn.ac.nz/about/victorias-story/statistics" class="button large">Victoria at a glance</a> </figcaption> </figure> </div> </div> <div class="text-promo-panel "> <div class="block formatting centraliser"> <div class="text-wrap"> <h2>Research matters</h2> <p>In the Faculty of Humanities and Social Sciences, we explore the fundamental questions that define human experience.</p> </div> <div class="button-wrap"> <a href="https://www.wgtn.ac.nz/fhss/research " title="Check out our student services" class="button primary large">Find out more</a> </div> </div> </div> <div class="centraliser"> <div class=" block formatting"> <h2>Know your next move</h2> <section class="grid-flex col-3"> <figure class=" "> <a href="#"> <img alt="Wellington waterfront" src="https://www.wgtn.ac.nz/__data/assets/image/0011/366851/varieties/ls_small.jpg"> <figcaption> <h3>Course planning appointments</h3> <p>If you need help deciding what degree might be right for you, or what courses to take, book a course planning session with us.</p> </figcaption> </a> </figure> <figure class=" "> <a href="#"> <img alt="Wellington waterfront" src="https://www.wgtn.ac.nz/__data/assets/image/0004/373945/varieties/ls_small.jpg"> <figcaption> <h3>Book a campus tour</h3> <p>Get a taste of what life at Victoria is like—book a campus tour and check out our student accommodation while you are here.</p> </figcaption> </a> </figure> <figure class=" "> <a href="#"> <img alt="Wellington waterfront" src="https://www.wgtn.ac.nz/__data/assets/image/0010/294427/varieties/ls_small.jpg"> <figcaption> <h3>School visits</h3> <p>We're visiting schools throughout the year. For your introduction to Victoria, find out when we're in your region.</p> </figcaption> </a> </figure> </section> </div> </div> </section> </main> </div> </div> <!-- If 'fabricator=false' is present or attribute is not present at all in the annotation. --> <!-- Default fallback for footer when not specified in the template. --> <footer role="contentinfo"> <!-- Links and contacts that can vary between sub-sites --> <section class="footer-secondary two-columns"> <div class="centraliser"> <!-- Sub-site's related or recommended links --> <div class="block"> <h2>Useful links</h2> <nav role="navigation"> <ul role="menubar"> <li> <a href="#" role="menuitem" title="Read Deadlines and dates for 2016">Deadlines and dates for 2016</a> </li> <li> <a href="#" role="menuitem" title="Read Organising events">Organising events</a> </li> <li> <a href="#" role="menuitem" title="Read PhD guidelines">PhD guidelines</a> </li> <li> <a href="#" role="menuitem" title="Read Contacts and directories">Contacts and directories</a> </li> <li> <a href="#" role="menuitem" title="Read Deadlines for last year">Deadlines for last year</a> </li> </ul> </nav> </div> <!-- Sub-site's related links --> <div class="block contacts"> <a href="#" title="See more contact information" class="link-more">Other contacts</a> <h2>Useful contacts</h2> <address> <!-- Phone numbers --> <ul class="phones"> <li> <a href="tel:+64 4 472 1000" title="Call to general enquiries">+64 4 472 1000</a> general enquiries </li> <li> <a href="tel:64221231210" title="Call to personal advisory">64221231210</a> personal advisory </li> </ul> <!-- Mail addresses --> <ul class="mails"> <li> <a href="mailto:[email protected]" title="Send an email to [email protected]">[email protected]</a> </li> </ul> </address> </div> </div> </section> <!-- Related links from global site --> <section class="footer-secondary"> <div class="centraliser"> <div class="block"> <h2>Victoria University</h2> <nav role="navigation"> <ul role="menubar"> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Faculties</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Contacts and directories</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Campuses</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Study</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Students</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Students</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Staff</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Careers</a></li> <li role="menuitem"><a href="#" role="menuitem" title="Read about ...">Alumni</a></li> </ul> </nav> </div> </div> </section> <!-- Meta-links and contacts that are shared between sub-sites --> <section class="footer-primary"> <div class="centraliser"> <div class="block"> <!-- Smaller version of logotype --> <div class="logo"> <a href="/" title="Victoria University of Wellington homepage"> <img class="logo" src="../images/new/v2/logo-white-full.svg" alt="Victoria University of Wellington - Te Whare Wānanga o te Ūpoko o te Ika a Māui"> </a> </div> <!-- Global contacts --> <ul class="contacts"> <li> <a title="Call Victoria about general enquiries" href="tel:+6444721000">+64 4 472 1000</a> </li> <li> <a title="Write Victoria an email" href="mailto:[email protected]">[email protected]</a> </li> <li> Enrolments: <a title="Call Victoria regarding enrolments" href="tel:+64800842867">0800 VICTORIA</a> </li> <li> Emergency: <a title="Call in case of emergency" href="tel:+6444639999">+64 4 463 9999</a> or ext. 8888 (internal) </li> </ul> </div> <div class="block small"> <nav role="navigation"> <ul role="menubar" class="minilinks"> <li role="menuitem"><a title="See ..." href="https://www.wgtn.ac.nz/site-info">Site info</a></li> <li role="menuitem"><a title="See ..." href="https://www.wgtn.ac.nz/site-info/site-map">Site map</a></li> <li role="menuitem"><a title="See ..." href="https://www.wgtn.ac.nz/site-info/feedback">Feedback</a></li> <li role="menuitem"><a title="See ..." href="https://www.wgtn.ac.nz/site-info/glossary">Glossary</a></li> </ul> </nav> <small class="copyright">Copyright &copy; Victoria University of Wellington, New Zealand</small> </div> </div> </section> </footer> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> <!-- toolkit scripts --> <script src="../toolkit.js"></script> <!-- /toolkit scripts --> </body> </html>
victoriauniversity/vuw-styleguide
dist/examples/homepage-fewer-study-areas.html
HTML
mit
29,144
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>Zombieland</title> <link rel="stylesheet" href="assets/web/game.css" /> </head> <body> <!-- Canvas --> <canvas id="game" width="640" height="480" class="hide"></canvas> <div id="noise"></div> <!-- UI: Boot logo --> <div id="burningtomato" class="hide"> <img src="assets/images/burningtomato.gif" /> <h1>www.burningtomato.com</h1> </div> <!-- UI: Net status --> <div id="net-status" class="hide"> <img src="assets/images/network.svg" height="32" width="32" /> <span>Connecting to online services...</span> </div> <!-- UI: HUD --> <div id="hud" class="hide"> <div class="health"> <img class="icon" src="assets/images/health.png" /> <div class="progress" style="width: 60%;"></div> <div class="text">100%</div> </div> </div> <!-- UI: Dialogs --> <div id="overlay"></div> <div id="dialogs"></div> <div class="ui-template hide" id="dl-login"> <h4>Welcome!</h4> <p>Sign in to your Zombieland account, or create one right now to dive in to the action.</p> <form class="login"> <label for="username">Username:</label> <input type="text" id="username" name="username" maxlength="16" class="form-control" /> <label for="password">Password:</label> <input type="password" id="password" name="password" maxlength="16" class="form-control" /> <p class="result">If your username does not yet exist, we'll create a new account for you with the password you've entered.</p> <button type="submit" class="form-control">Continue</button> </form> <div class="clearfix"></div> </div> <!-- UI: Chat --> <div id="chat" class="hide"> <div class="messages"> </div> <div class="input"> <img src="images/chat.png" /> <input type="text" class="form-control inactive" maxlength="255" disabled placeholder="Press ENTER or CLICK to send chat message" /> </div> </div> <!-- JS --> <script src="assets/web/jquery-1.11.2.js" type="text/javascript"></script> <script src="assets/web/socket.io-1.3.4.js"></script> <script src="build/zombieland.min.js" type="text/javascript"></script> </body> </html>
burningtomatoes/ZombielandClient
index.html
HTML
mit
2,413
<!DOCTYPE html> <!-- Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.7 Version: 4.7 Author: KeenThemes Website: http://www.keenthemes.com/ Contact: [email protected] Follow: www.twitter.com/keenthemes Dribbble: www.dribbble.com/keenthemes Like: www.facebook.com/keenthemes Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes Renew Support: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project. --> <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]--> <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]--> <!--[if !IE]><!--> <html lang="en"> <!--<![endif]--> <!-- BEGIN HEAD --> <head> <meta charset="utf-8" /> <title>Metronic | The Ultimate Multi-purpose Bootstrap Admin Dashboard Theme | Theme #1 | Full Height Content</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1" name="viewport" /> <meta content="#1 selling multi-purpose bootstrap admin theme sold in themeforest marketplace packed with angularjs, material design, rtl support with over thausands of templates and ui elements and plugins to power any type of web applications including saas and admin dashboards. Preview page of Theme #1 for layout with full height content" name="description" /> <meta content="" name="author" /> <!-- BEGIN GLOBAL MANDATORY STYLES --> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch.min.css" rel="stylesheet" type="text/css" /> <!-- END GLOBAL MANDATORY STYLES --> <!-- BEGIN THEME GLOBAL STYLES --> <link href="../assets/global/css/components.min.css" rel="stylesheet" id="style_components" type="text/css" /> <link href="../assets/global/css/plugins.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME GLOBAL STYLES --> <!-- BEGIN THEME LAYOUT STYLES --> <link href="../assets/layouts/layout/css/layout.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/layouts/layout/css/themes/darkblue.min.css" rel="stylesheet" type="text/css" id="style_color" /> <link href="../assets/layouts/layout/css/custom.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME LAYOUT STYLES --> <link rel="shortcut icon" href="favicon.ico" /> </head> <!-- END HEAD --> <body class="page-header-fixed page-sidebar-closed-hide-logo page-content-white page-sidebar-fixed"> <div class="page-wrapper"> <!-- BEGIN HEADER --> <div class="page-header navbar navbar-fixed-top"> <!-- BEGIN HEADER INNER --> <div class="page-header-inner "> <!-- BEGIN LOGO --> <div class="page-logo"> <a href="index.html"> <img src="../assets/layouts/layout/img/logo.png" alt="logo" class="logo-default" /> </a> <div class="menu-toggler sidebar-toggler"> <span></span> </div> </div> <!-- END LOGO --> <!-- BEGIN RESPONSIVE MENU TOGGLER --> <a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse"> <span></span> </a> <!-- END RESPONSIVE MENU TOGGLER --> <!-- BEGIN TOP NAVIGATION MENU --> <div class="top-menu"> <ul class="nav navbar-nav pull-right"> <!-- BEGIN NOTIFICATION DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after "dropdown-extended" to change the dropdown styte --> <!-- DOC: Apply "dropdown-hoverable" class after below "dropdown" and remove data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to enable hover dropdown mode --> <!-- DOC: Remove "dropdown-hoverable" and add data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to the below A element with dropdown-toggle class --> <li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-bell"></i> <span class="badge badge-default"> 7 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3> <span class="bold">12 pending</span> notifications</h3> <a href="page_user_profile_1.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="time">just now</span> <span class="details"> <span class="label label-sm label-icon label-success"> <i class="fa fa-plus"></i> </span> New user registered. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 mins</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Server #12 overloaded. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">10 mins</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Server #2 not responding. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">14 hrs</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> Application error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">2 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Database overloaded 68%. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> A user IP blocked. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">4 days</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Storage Server #4 not responding dfdfdfd. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">5 days</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> System Error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">9 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Storage server failed. </span> </a> </li> </ul> </li> </ul> </li> <!-- END NOTIFICATION DROPDOWN --> <!-- BEGIN INBOX DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-inbox" id="header_inbox_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-envelope-open"></i> <span class="badge badge-default"> 4 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <span class="bold">7 New</span> Messages</h3> <a href="app_inbox.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">Just Now </span> </span> <span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">16 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Bob Nilson </span> <span class="time">2 hrs </span> </span> <span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">40 mins </span> </span> <span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">46 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> </ul> </li> </ul> </li> <!-- END INBOX DROPDOWN --> <!-- BEGIN TODO DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-calendar"></i> <span class="badge badge-default"> 3 </span> </a> <ul class="dropdown-menu extended tasks"> <li class="external"> <h3>You have <span class="bold">12 pending</span> tasks</h3> <a href="app_todo.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New release v1.2 </span> <span class="percent">30%</span> </span> <span class="progress"> <span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">40% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Application deployment</span> <span class="percent">65%</span> </span> <span class="progress"> <span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">65% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile app release</span> <span class="percent">98%</span> </span> <span class="progress"> <span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">98% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Database migration</span> <span class="percent">10%</span> </span> <span class="progress"> <span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">10% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Web server upgrade</span> <span class="percent">58%</span> </span> <span class="progress"> <span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">58% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile development</span> <span class="percent">85%</span> </span> <span class="progress"> <span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">85% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New UI release</span> <span class="percent">38%</span> </span> <span class="progress progress-striped"> <span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">38% Complete</span> </span> </span> </a> </li> </ul> </li> </ul> </li> <!-- END TODO DROPDOWN --> <!-- BEGIN USER LOGIN DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-user"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <img alt="" class="img-circle" src="../assets/layouts/layout/img/avatar3_small.jpg" /> <span class="username username-hide-on-mobile"> Nick </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu dropdown-menu-default"> <li> <a href="page_user_profile_1.html"> <i class="icon-user"></i> My Profile </a> </li> <li> <a href="app_calendar.html"> <i class="icon-calendar"></i> My Calendar </a> </li> <li> <a href="app_inbox.html"> <i class="icon-envelope-open"></i> My Inbox <span class="badge badge-danger"> 3 </span> </a> </li> <li> <a href="app_todo.html"> <i class="icon-rocket"></i> My Tasks <span class="badge badge-success"> 7 </span> </a> </li> <li class="divider"> </li> <li> <a href="page_user_lock_1.html"> <i class="icon-lock"></i> Lock Screen </a> </li> <li> <a href="page_user_login_1.html"> <i class="icon-key"></i> Log Out </a> </li> </ul> </li> <!-- END USER LOGIN DROPDOWN --> <!-- BEGIN QUICK SIDEBAR TOGGLER --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-quick-sidebar-toggler"> <a href="javascript:;" class="dropdown-toggle"> <i class="icon-logout"></i> </a> </li> <!-- END QUICK SIDEBAR TOGGLER --> </ul> </div> <!-- END TOP NAVIGATION MENU --> </div> <!-- END HEADER INNER --> </div> <!-- END HEADER --> <!-- BEGIN HEADER & CONTENT DIVIDER --> <div class="clearfix"> </div> <!-- END HEADER & CONTENT DIVIDER --> <!-- BEGIN CONTAINER --> <div class="page-container"> <!-- BEGIN SIDEBAR --> <div class="page-sidebar-wrapper"> <!-- BEGIN SIDEBAR --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed --> <div class="page-sidebar navbar-collapse collapse"> <!-- BEGIN SIDEBAR MENU --> <!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) --> <!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode --> <!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Set data-keep-expand="true" to keep the submenues expanded --> <!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed --> <ul class="page-sidebar-menu page-header-fixed " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200" style="padding-top: 20px"> <!-- DOC: To remove the sidebar toggler from the sidebar you just need to completely remove the below "sidebar-toggler-wrapper" LI element --> <!-- BEGIN SIDEBAR TOGGLER BUTTON --> <li class="sidebar-toggler-wrapper hide"> <div class="sidebar-toggler"> <span></span> </div> </li> <!-- END SIDEBAR TOGGLER BUTTON --> <!-- DOC: To remove the search box from the sidebar you just need to completely remove the below "sidebar-search-wrapper" LI element --> <li class="sidebar-search-wrapper"> <!-- BEGIN RESPONSIVE QUICK SEARCH FORM --> <!-- DOC: Apply "sidebar-search-bordered" class the below search form to have bordered search box --> <!-- DOC: Apply "sidebar-search-bordered sidebar-search-solid" class the below search form to have bordered & solid search box --> <form class="sidebar-search sidebar-search-bordered" action="page_general_search_3.html" method="POST"> <a href="javascript:;" class="remove"> <i class="icon-close"></i> </a> <div class="input-group"> <input type="text" class="form-control" placeholder="Search..."> <span class="input-group-btn"> <a href="javascript:;" class="btn submit"> <i class="icon-magnifier"></i> </a> </span> </div> </form> <!-- END RESPONSIVE QUICK SEARCH FORM --> </li> <li class="nav-item start "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-home"></i> <span class="title">Dashboard</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item start "> <a href="index.html" class="nav-link "> <i class="icon-bar-chart"></i> <span class="title">Dashboard 1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_2.html" class="nav-link "> <i class="icon-bulb"></i> <span class="title">Dashboard 2</span> <span class="badge badge-success">1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_3.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Dashboard 3</span> <span class="badge badge-danger">5</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Features</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-diamond"></i> <span class="title">UI Features</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_colors.html" class="nav-link "> <span class="title">Color Library</span> </a> </li> <li class="nav-item "> <a href="ui_general.html" class="nav-link "> <span class="title">General Components</span> </a> </li> <li class="nav-item "> <a href="ui_buttons.html" class="nav-link "> <span class="title">Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_buttons_spinner.html" class="nav-link "> <span class="title">Spinner Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_confirmations.html" class="nav-link "> <span class="title">Popover Confirmations</span> </a> </li> <li class="nav-item "> <a href="ui_sweetalert.html" class="nav-link "> <span class="title">Bootstrap Sweet Alerts</span> </a> </li> <li class="nav-item "> <a href="ui_icons.html" class="nav-link "> <span class="title">Font Icons</span> </a> </li> <li class="nav-item "> <a href="ui_socicons.html" class="nav-link "> <span class="title">Social Icons</span> </a> </li> <li class="nav-item "> <a href="ui_typography.html" class="nav-link "> <span class="title">Typography</span> </a> </li> <li class="nav-item "> <a href="ui_tabs_accordions_navs.html" class="nav-link "> <span class="title">Tabs, Accordions & Navs</span> </a> </li> <li class="nav-item "> <a href="ui_timeline.html" class="nav-link "> <span class="title">Timeline 1</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_2.html" class="nav-link "> <span class="title">Timeline 2</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_horizontal.html" class="nav-link "> <span class="title">Horizontal Timeline</span> </a> </li> <li class="nav-item "> <a href="ui_tree.html" class="nav-link "> <span class="title">Tree View</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Page Progress Bar</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a> </li> <li class="nav-item "> <a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a> </li> </ul> </li> <li class="nav-item "> <a href="ui_blockui.html" class="nav-link "> <span class="title">Block UI</span> </a> </li> <li class="nav-item "> <a href="ui_bootstrap_growl.html" class="nav-link "> <span class="title">Bootstrap Growl Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_notific8.html" class="nav-link "> <span class="title">Notific8 Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_toastr.html" class="nav-link "> <span class="title">Toastr Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_bootbox.html" class="nav-link "> <span class="title">Bootbox Dialogs</span> </a> </li> <li class="nav-item "> <a href="ui_alerts_api.html" class="nav-link "> <span class="title">Metronic Alerts API</span> </a> </li> <li class="nav-item "> <a href="ui_session_timeout.html" class="nav-link "> <span class="title">Session Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_idle_timeout.html" class="nav-link "> <span class="title">User Idle Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_modals.html" class="nav-link "> <span class="title">Modals</span> </a> </li> <li class="nav-item "> <a href="ui_extended_modals.html" class="nav-link "> <span class="title">Extended Modals</span> </a> </li> <li class="nav-item "> <a href="ui_tiles.html" class="nav-link "> <span class="title">Tiles</span> </a> </li> <li class="nav-item "> <a href="ui_datepaginator.html" class="nav-link "> <span class="title">Date Paginator</span> </a> </li> <li class="nav-item "> <a href="ui_nestable.html" class="nav-link "> <span class="title">Nestable List</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-puzzle"></i> <span class="title">Components</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="components_date_time_pickers.html" class="nav-link "> <span class="title">Date & Time Pickers</span> </a> </li> <li class="nav-item "> <a href="components_color_pickers.html" class="nav-link "> <span class="title">Color Pickers</span> <span class="badge badge-danger">2</span> </a> </li> <li class="nav-item "> <a href="components_select2.html" class="nav-link "> <span class="title">Select2 Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_multiselect_dropdown.html" class="nav-link "> <span class="title">Bootstrap Multiselect Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select.html" class="nav-link "> <span class="title">Bootstrap Select</span> </a> </li> <li class="nav-item "> <a href="components_multi_select.html" class="nav-link "> <span class="title">Bootstrap Multiple Select</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select_splitter.html" class="nav-link "> <span class="title">Select Splitter</span> </a> </li> <li class="nav-item "> <a href="components_clipboard.html" class="nav-link "> <span class="title">Clipboard</span> </a> </li> <li class="nav-item "> <a href="components_typeahead.html" class="nav-link "> <span class="title">Typeahead Autocomplete</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_tagsinput.html" class="nav-link "> <span class="title">Bootstrap Tagsinput</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_switch.html" class="nav-link "> <span class="title">Bootstrap Switch</span> <span class="badge badge-success">6</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_maxlength.html" class="nav-link "> <span class="title">Bootstrap Maxlength</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_fileinput.html" class="nav-link "> <span class="title">Bootstrap File Input</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_touchspin.html" class="nav-link "> <span class="title">Bootstrap Touchspin</span> </a> </li> <li class="nav-item "> <a href="components_form_tools.html" class="nav-link "> <span class="title">Form Widgets & Tools</span> </a> </li> <li class="nav-item "> <a href="components_context_menu.html" class="nav-link "> <span class="title">Context Menu</span> </a> </li> <li class="nav-item "> <a href="components_editors.html" class="nav-link "> <span class="title">Markdown & WYSIWYG Editors</span> </a> </li> <li class="nav-item "> <a href="components_code_editors.html" class="nav-link "> <span class="title">Code Editors</span> </a> </li> <li class="nav-item "> <a href="components_ion_sliders.html" class="nav-link "> <span class="title">Ion Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_noui_sliders.html" class="nav-link "> <span class="title">NoUI Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_knob_dials.html" class="nav-link "> <span class="title">Knob Circle Dials</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">Form Stuff</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="form_controls.html" class="nav-link "> <span class="title">Bootstrap Form <br>Controls</span> </a> </li> <li class="nav-item "> <a href="form_controls_md.html" class="nav-link "> <span class="title">Material Design <br>Form Controls</span> </a> </li> <li class="nav-item "> <a href="form_validation.html" class="nav-link "> <span class="title">Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_validation_states_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation States</span> </a> </li> <li class="nav-item "> <a href="form_validation_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_layouts.html" class="nav-link "> <span class="title">Form Layouts</span> </a> </li> <li class="nav-item "> <a href="form_repeater.html" class="nav-link "> <span class="title">Form Repeater</span> </a> </li> <li class="nav-item "> <a href="form_input_mask.html" class="nav-link "> <span class="title">Form Input Mask</span> </a> </li> <li class="nav-item "> <a href="form_editable.html" class="nav-link "> <span class="title">Form X-editable</span> </a> </li> <li class="nav-item "> <a href="form_wizard.html" class="nav-link "> <span class="title">Form Wizard</span> </a> </li> <li class="nav-item "> <a href="form_icheck.html" class="nav-link "> <span class="title">iCheck Controls</span> </a> </li> <li class="nav-item "> <a href="form_image_crop.html" class="nav-link "> <span class="title">Image Cropping</span> </a> </li> <li class="nav-item "> <a href="form_fileupload.html" class="nav-link "> <span class="title">Multiple File Upload</span> </a> </li> <li class="nav-item "> <a href="form_dropzone.html" class="nav-link "> <span class="title">Dropzone File Upload</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bulb"></i> <span class="title">Elements</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="elements_steps.html" class="nav-link "> <span class="title">Steps</span> </a> </li> <li class="nav-item "> <a href="elements_lists.html" class="nav-link "> <span class="title">Lists</span> </a> </li> <li class="nav-item "> <a href="elements_ribbons.html" class="nav-link "> <span class="title">Ribbons</span> </a> </li> <li class="nav-item "> <a href="elements_overlay.html" class="nav-link "> <span class="title">Overlays</span> </a> </li> <li class="nav-item "> <a href="elements_cards.html" class="nav-link "> <span class="title">User Cards</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-briefcase"></i> <span class="title">Tables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_static_basic.html" class="nav-link "> <span class="title">Basic Tables</span> </a> </li> <li class="nav-item "> <a href="table_static_responsive.html" class="nav-link "> <span class="title">Responsive Tables</span> </a> </li> <li class="nav-item "> <a href="table_bootstrap.html" class="nav-link "> <span class="title">Bootstrap Tables</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Datatables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a> </li> <li class="nav-item "> <a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a> </li> <li class="nav-item "> <a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a> </li> <li class="nav-item "> <a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a> </li> <li class="nav-item "> <a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="?p=" class="nav-link nav-toggle"> <i class="icon-wallet"></i> <span class="title">Portlets</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="portlet_boxed.html" class="nav-link "> <span class="title">Boxed Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_light.html" class="nav-link "> <span class="title">Light Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_solid.html" class="nav-link "> <span class="title">Solid Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_ajax.html" class="nav-link "> <span class="title">Ajax Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_draggable.html" class="nav-link "> <span class="title">Draggable Portlets</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bar-chart"></i> <span class="title">Charts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_amcharts.html" class="nav-link "> <span class="title">amChart</span> </a> </li> <li class="nav-item "> <a href="charts_flotcharts.html" class="nav-link "> <span class="title">Flot Charts</span> </a> </li> <li class="nav-item "> <a href="charts_flowchart.html" class="nav-link "> <span class="title">Flow Charts</span> </a> </li> <li class="nav-item "> <a href="charts_google.html" class="nav-link "> <span class="title">Google Charts</span> </a> </li> <li class="nav-item "> <a href="charts_echarts.html" class="nav-link "> <span class="title">eCharts</span> </a> </li> <li class="nav-item "> <a href="charts_morris.html" class="nav-link "> <span class="title">Morris Charts</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">HighCharts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_highcharts.html" class="nav-link "> HighCharts </a> </li> <li class="nav-item "> <a href="charts_highstock.html" class="nav-link "> HighStock </a> </li> <li class="nav-item "> <a href="charts_highmaps.html" class="nav-link "> HighMaps </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-pointer"></i> <span class="title">Maps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="maps_google.html" class="nav-link "> <span class="title">Google Maps</span> </a> </li> <li class="nav-item "> <a href="maps_vector.html" class="nav-link "> <span class="title">Vector Maps</span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Layouts</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-layers"></i> <span class="title">Page Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_blank_page.html" class="nav-link "> <span class="title">Blank Page</span> </a> </li> <li class="nav-item "> <a href="layout_ajax_page.html" class="nav-link "> <span class="title">Ajax Content Layout</span> </a> </li> <li class="nav-item "> <a href="layout_offcanvas_mobile_menu.html" class="nav-link "> <span class="title">Off-canvas Mobile Menu</span> </a> </li> <li class="nav-item "> <a href="layout_classic_page_head.html" class="nav-link "> <span class="title">Classic Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_light_page_head.html" class="nav-link "> <span class="title">Light Page Head</span> </a> </li> <li class="nav-item "> <a href="layout_content_grey.html" class="nav-link "> <span class="title">Grey Bg Content</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_1.html" class="nav-link "> <span class="title">Search Box On Header 1</span> </a> </li> <li class="nav-item "> <a href="layout_search_on_header_2.html" class="nav-link "> <span class="title">Search Box On Header 2</span> </a> </li> <li class="nav-item "> <a href="layout_language_bar.html" class="nav-link "> <span class="title">Header Language Bar</span> </a> </li> <li class="nav-item "> <a href="layout_footer_fixed.html" class="nav-link "> <span class="title">Fixed Footer</span> </a> </li> <li class="nav-item "> <a href="layout_boxed_page.html" class="nav-link "> <span class="title">Boxed Page</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-feed"></i> <span class="title">Sidebar Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_sidebar_menu_light.html" class="nav-link "> <span class="title">Light Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_menu_hover.html" class="nav-link "> <span class="title">Hover Sidebar Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_1.html" class="nav-link "> <span class="title">Sidebar Search Option 1</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_search_2.html" class="nav-link "> <span class="title">Sidebar Search Option 2</span> </a> </li> <li class="nav-item "> <a href="layout_toggler_on_sidebar.html" class="nav-link "> <span class="title">Sidebar Toggler On Sidebar</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_reversed.html" class="nav-link "> <span class="title">Reversed Sidebar Page</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_fixed.html" class="nav-link "> <span class="title">Fixed Sidebar Layout</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_closed.html" class="nav-link "> <span class="title">Closed Sidebar Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-paper-plane"></i> <span class="title">Horizontal Menu</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_mega_menu_light.html" class="nav-link "> <span class="title">Light Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_mega_menu_dark.html" class="nav-link "> <span class="title">Dark Mega Menu</span> </a> </li> <li class="nav-item "> <a href="layout_full_width.html" class="nav-link "> <span class="title">Full Width Layout</span> </a> </li> </ul> </li> <li class="nav-item active open"> <a href="javascript:;" class="nav-link nav-toggle"> <i class=" icon-wrench"></i> <span class="title">Custom Layouts</span> <span class="selected"></span> <span class="arrow open"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_disabled_menu.html" class="nav-link "> <span class="title">Disabled Menu Links</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_portlet.html" class="nav-link "> <span class="title">Full Height Portlet</span> </a> </li> <li class="nav-item active open"> <a href="layout_full_height_content.html" class="nav-link "> <span class="title">Full Height Content</span> <span class="selected"></span> </a> </li> </ul> </li> <li class="heading"> <h3 class="uppercase">Pages</h3> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-basket"></i> <span class="title">eCommerce</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ecommerce_index.html" class="nav-link "> <i class="icon-home"></i> <span class="title">Dashboard</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders.html" class="nav-link "> <i class="icon-basket"></i> <span class="title">Orders</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders_view.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Order View</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Products</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products_edit.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Product Edit</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-docs"></i> <span class="title">Apps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="app_todo.html" class="nav-link "> <i class="icon-clock"></i> <span class="title">Todo 1</span> </a> </li> <li class="nav-item "> <a href="app_todo_2.html" class="nav-link "> <i class="icon-check"></i> <span class="title">Todo 2</span> </a> </li> <li class="nav-item "> <a href="app_inbox.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Inbox</span> </a> </li> <li class="nav-item "> <a href="app_calendar.html" class="nav-link "> <i class="icon-calendar"></i> <span class="title">Calendar</span> </a> </li> <li class="nav-item "> <a href="app_ticket.html" class="nav-link "> <i class="icon-notebook"></i> <span class="title">Support</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-user"></i> <span class="title">User</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_profile_1.html" class="nav-link "> <i class="icon-user"></i> <span class="title">Profile 1</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_account.html" class="nav-link "> <i class="icon-user-female"></i> <span class="title">Profile 1 Account</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_help.html" class="nav-link "> <i class="icon-user-following"></i> <span class="title">Profile 1 Help</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_2.html" class="nav-link "> <i class="icon-users"></i> <span class="title">Profile 2</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Login</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a> </li> <li class="nav-item "> <a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a> </li> <li class="nav-item "> <a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a> </li> <li class="nav-item "> <a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a> </li> <li class="nav-item "> <a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a> </li> <li class="nav-item "> <a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_user_lock_1.html" class="nav-link " target="_blank"> <i class="icon-lock"></i> <span class="title">Lock Screen 1</span> </a> </li> <li class="nav-item "> <a href="page_user_lock_2.html" class="nav-link " target="_blank"> <i class="icon-lock-open"></i> <span class="title">Lock Screen 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-social-dribbble"></i> <span class="title">General</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_about.html" class="nav-link "> <i class="icon-info"></i> <span class="title">About</span> </a> </li> <li class="nav-item "> <a href="page_general_contact.html" class="nav-link "> <i class="icon-call-end"></i> <span class="title">Contact</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Portfolio</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-magnifier"></i> <span class="title">Search</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_search.html" class="nav-link "> Search 1 </a> </li> <li class="nav-item "> <a href="page_general_search_2.html" class="nav-link "> Search 2 </a> </li> <li class="nav-item "> <a href="page_general_search_3.html" class="nav-link "> Search 3 </a> </li> <li class="nav-item "> <a href="page_general_search_4.html" class="nav-link "> Search 4 </a> </li> <li class="nav-item "> <a href="page_general_search_5.html" class="nav-link "> Search 5 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_general_pricing.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Pricing</span> </a> </li> <li class="nav-item "> <a href="page_general_faq.html" class="nav-link "> <i class="icon-wrench"></i> <span class="title">FAQ</span> </a> </li> <li class="nav-item "> <a href="page_general_blog.html" class="nav-link "> <i class="icon-pencil"></i> <span class="title">Blog</span> </a> </li> <li class="nav-item "> <a href="page_general_blog_post.html" class="nav-link "> <i class="icon-note"></i> <span class="title">Blog Post</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice_2.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">System</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_cookie_consent_1.html" class="nav-link "> <span class="title">Cookie Consent 1</span> </a> </li> <li class="nav-item "> <a href="page_cookie_consent_2.html" class="nav-link "> <span class="title">Cookie Consent 2</span> </a> </li> <li class="nav-item "> <a href="page_system_coming_soon.html" class="nav-link " target="_blank"> <span class="title">Coming Soon</span> </a> </li> <li class="nav-item "> <a href="page_system_404_1.html" class="nav-link "> <span class="title">404 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_404_2.html" class="nav-link " target="_blank"> <span class="title">404 Page 2</span> </a> </li> <li class="nav-item "> <a href="page_system_404_3.html" class="nav-link " target="_blank"> <span class="title">404 Page 3</span> </a> </li> <li class="nav-item "> <a href="page_system_500_1.html" class="nav-link "> <span class="title">500 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_500_2.html" class="nav-link " target="_blank"> <span class="title">500 Page 2</span> </a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-folder"></i> <span class="title">Multi Level Menu</span> <span class="arrow "></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> Item 1 <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-user"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-power"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-paper-plane"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-star"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-camera"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-link"></i> Sample Link 2</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pointer"></i> Sample Link 3</a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" target="_blank" class="nav-link"> <i class="icon-globe"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-tag"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pencil"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-graph"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-bar-chart"></i> Item 3 </a> </li> </ul> </li> </ul> <!-- END SIDEBAR MENU --> <!-- END SIDEBAR MENU --> </div> <!-- END SIDEBAR --> </div> <!-- END SIDEBAR --> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <!-- BEGIN CONTENT BODY --> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <!-- BEGIN THEME PANEL --> <div class="theme-panel hidden-xs hidden-sm"> <div class="toggler"> </div> <div class="toggler-close"> </div> <div class="theme-options"> <div class="theme-option theme-colors clearfix"> <span> THEME COLOR </span> <ul> <li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li> <li class="color-darkblue tooltips" data-style="darkblue" data-container="body" data-original-title="Dark Blue"> </li> <li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li> <li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li> <li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li> <li class="color-light2 tooltips" data-style="light2" data-container="body" data-html="true" data-original-title="Light 2"> </li> </ul> </div> <div class="theme-option"> <span> Theme Style </span> <select class="layout-style-option form-control input-sm"> <option value="square" selected="selected">Square corners</option> <option value="rounded">Rounded corners</option> </select> </div> <div class="theme-option"> <span> Layout </span> <select class="layout-option form-control input-sm"> <option value="fluid" selected="selected">Fluid</option> <option value="boxed">Boxed</option> </select> </div> <div class="theme-option"> <span> Header </span> <select class="page-header-option form-control input-sm"> <option value="fixed" selected="selected">Fixed</option> <option value="default">Default</option> </select> </div> <div class="theme-option"> <span> Top Menu Dropdown</span> <select class="page-header-top-dropdown-style-option form-control input-sm"> <option value="light" selected="selected">Light</option> <option value="dark">Dark</option> </select> </div> <div class="theme-option"> <span> Sidebar Mode</span> <select class="sidebar-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> <div class="theme-option"> <span> Sidebar Menu </span> <select class="sidebar-menu-option form-control input-sm"> <option value="accordion" selected="selected">Accordion</option> <option value="hover">Hover</option> </select> </div> <div class="theme-option"> <span> Sidebar Style </span> <select class="sidebar-style-option form-control input-sm"> <option value="default" selected="selected">Default</option> <option value="light">Light</option> </select> </div> <div class="theme-option"> <span> Sidebar Position </span> <select class="sidebar-pos-option form-control input-sm"> <option value="left" selected="selected">Left</option> <option value="right">Right</option> </select> </div> <div class="theme-option"> <span> Footer </span> <select class="page-footer-option form-control input-sm"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> </div> </div> <!-- END THEME PANEL --> <!-- BEGIN PAGE BAR --> <div class="page-bar"> <ul class="page-breadcrumb"> <li> <a href="index.html">Home</a> <i class="fa fa-circle"></i> </li> <li> <span>Custom Layouts</span> </li> </ul> <div class="page-toolbar"> <div class="btn-group pull-right"> <button type="button" class="btn green btn-sm btn-outline dropdown-toggle" data-toggle="dropdown"> Actions <i class="fa fa-angle-down"></i> </button> <ul class="dropdown-menu pull-right" role="menu"> <li> <a href="#"> <i class="icon-bell"></i> Action</a> </li> <li> <a href="#"> <i class="icon-shield"></i> Another action</a> </li> <li> <a href="#"> <i class="icon-user"></i> Something else here</a> </li> <li class="divider"> </li> <li> <a href="#"> <i class="icon-bag"></i> Separated link</a> </li> </ul> </div> </div> </div> <!-- END PAGE BAR --> <!-- BEGIN PAGE TITLE--> <h1 class="page-title"> Full Height Content <small>layout with full height content</small> </h1> <!-- END PAGE TITLE--> <!-- END PAGE HEADER--> <div class="full-height-content full-height-content-scrollable"> <div class="full-height-content-body"> <p> Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! </p> <p> This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? </p> <p> Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. </p> Thanks a ton!height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. </p> <p> I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton! </p> <p> Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! </p> <p> This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? </p> <p> Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. </p> Thanks a ton!height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. </p> <p> I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton! </p> <p> Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! </p> <p> This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? </p> <p> Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. </p> Thanks a ton!height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. </p> <p> I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton! </p> <p> Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! </p> <p> This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? </p> <p> Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. </p> Thanks a ton!height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. </p> <p> I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton! </p> <p> Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! </p> <p> This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? </p> <p> Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. </p> Thanks a ton!height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. </p> <p> I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton!Hi! This is an amazing UI! Is there a way to turn sidebar completely off with a simple body class, like that which is used to minimize the sidebar? Also, I’m looking for a way to make portlets fill the vertical space between the fixed header and fixed footer. I know that full height divs are a chore, but I’m wondering if you have already written any code that checks the height of the window and adjusts the height of an element that I could re-purpose or extend for these full height content areas? If you have, I’d love a tip on where to find it in app.js or wherever else. Otherwise any other suggestions you may have. Thanks a ton! </p> </div> </div> </div> <!-- END CONTENT BODY --> </div> <!-- END CONTENT --> <!-- BEGIN QUICK SIDEBAR --> <a href="javascript:;" class="page-quick-sidebar-toggler"> <i class="icon-login"></i> </a> <div class="page-quick-sidebar-wrapper" data-close-on-body-click="false"> <div class="page-quick-sidebar"> <ul class="nav nav-tabs"> <li class="active"> <a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users <span class="badge badge-danger">2</span> </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts <span class="badge badge-success">7</span> </a> </li> <li class="dropdown"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-bell"></i> Alerts </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-info"></i> Notifications </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-speech"></i> Activities </a> </li> <li class="divider"></li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-settings"></i> Settings </a> </li> </ul> </li> </ul> <div class="tab-content"> <div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1"> <div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list"> <h3 class="list-heading">Staff</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-success">8</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Bob Nilson</h4> <div class="media-heading-sub"> Project Manager </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Nick Larson</h4> <div class="media-heading-sub"> Art Director </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">3</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Hubert</h4> <div class="media-heading-sub"> CTO </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ella Wong</h4> <div class="media-heading-sub"> CEO </div> </div> </li> </ul> <h3 class="list-heading">Customers</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-warning">2</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lara Kunis</h4> <div class="media-heading-sub"> CEO, Loop Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="label label-sm label-success">new</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ernie Kyllonen</h4> <div class="media-heading-sub"> Project Manager, <br> SmartBizz PTL </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lisa Stone</h4> <div class="media-heading-sub"> CTO, Keort Inc </div> <div class="media-heading-small"> Last seen 13:10 PM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-success">7</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Portalatin</h4> <div class="media-heading-sub"> CFO, H&D LTD </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Irina Savikova</h4> <div class="media-heading-sub"> CEO, Tizda Motors Inc </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">4</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Maria Gomez</h4> <div class="media-heading-sub"> Manager, Infomatic Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> </ul> </div> <div class="page-quick-sidebar-item"> <div class="page-quick-sidebar-chat-user"> <div class="page-quick-sidebar-nav"> <a href="javascript:;" class="page-quick-sidebar-back-to-list"> <i class="icon-arrow-left"></i>Back</a> </div> <div class="page-quick-sidebar-chat-user-messages"> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> When could you send me the report ? </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:15</span> <span class="body"> Its almost done. I will be sending it shortly </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> Alright. Thanks! :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:16</span> <span class="body"> You are most welcome. Sorry for the delay. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> No probs. Just take your time :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Alright. I just emailed it to you. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Great! Thanks. Will check it right away. </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Please let me know if you have any comment. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span> </div> </div> </div> <div class="page-quick-sidebar-chat-user-form"> <div class="input-group"> <input type="text" class="form-control" placeholder="Type a message here..."> <div class="input-group-btn"> <button type="button" class="btn green"> <i class="icon-paper-clip"></i> </button> </div> </div> </div> </div> </div> </div> <div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2"> <div class="page-quick-sidebar-alerts-list"> <h3 class="list-heading">General</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-warning"> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> <h3 class="list-heading">System</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-warning"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-default "> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> </div> </div> <div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3"> <div class="page-quick-sidebar-settings-list"> <h3 class="list-heading">General Settings</h3> <ul class="list-items borderless"> <li> Enable Notifications <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Allow Tracking <input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Log Errors <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Auto Sumbit Issues <input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Enable SMS Alerts <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <h3 class="list-heading">System Settings</h3> <ul class="list-items borderless"> <li> Security Level <select class="form-control input-inline input-sm input-small"> <option value="1">Normal</option> <option value="2" selected>Medium</option> <option value="e">High</option> </select> </li> <li> Failed Email Attempts <input class="form-control input-inline input-sm input-small" value="5" /> </li> <li> Secondary SMTP Port <input class="form-control input-inline input-sm input-small" value="3560" /> </li> <li> Notify On System Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Notify On SMTP Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <div class="inner-content"> <button class="btn btn-success"> <i class="icon-settings"></i> Save Changes</button> </div> </div> </div> </div> </div> </div> <!-- END QUICK SIDEBAR --> </div> <!-- END CONTAINER --> <!-- BEGIN FOOTER --> <div class="page-footer"> <div class="page-footer-inner"> 2016 &copy; Metronic Theme By <a target="_blank" href="http://keenthemes.com">Keenthemes</a> &nbsp;|&nbsp; <a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a> </div> <div class="scroll-to-top"> <i class="icon-arrow-up"></i> </div> </div> <!-- END FOOTER --> </div> <!-- BEGIN QUICK NAV --> <nav class="quick-nav"> <a class="quick-nav-trigger" href="#0"> <span aria-hidden="true"></span> </a> <ul> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active"> <span>Purchase Metronic</span> <i class="icon-basket"></i> </a> </li> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/reviews/4021469?ref=keenthemes" target="_blank"> <span>Customer Reviews</span> <i class="icon-users"></i> </a> </li> <li> <a href="http://keenthemes.com/showcast/" target="_blank"> <span>Showcase</span> <i class="icon-user"></i> </a> </li> <li> <a href="http://keenthemes.com/metronic-theme/changelog/" target="_blank"> <span>Changelog</span> <i class="icon-graph"></i> </a> </li> </ul> <span aria-hidden="true" class="quick-nav-bg"></span> </nav> <div class="quick-nav-overlay"></div> <!-- END QUICK NAV --> <!--[if lt IE 9]> <script src="../assets/global/plugins/respond.min.js"></script> <script src="../assets/global/plugins/excanvas.min.js"></script> <script src="../assets/global/plugins/ie8.fix.min.js"></script> <![endif]--> <!-- BEGIN CORE PLUGINS --> <script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script> <!-- END CORE PLUGINS --> <!-- BEGIN THEME GLOBAL SCRIPTS --> <script src="../assets/global/scripts/app.min.js" type="text/javascript"></script> <!-- END THEME GLOBAL SCRIPTS --> <!-- BEGIN THEME LAYOUT SCRIPTS --> <script src="../assets/layouts/layout/scripts/layout.min.js" type="text/javascript"></script> <script src="../assets/layouts/layout/scripts/demo.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script> <!-- END THEME LAYOUT SCRIPTS --> </body> </html>
Garulth/mdiary_admintools
public/layout/admin_1/layout_full_height_content.html
HTML
mit
195,321
<div id="content"> <div ng-window-sectors="header"> <h1>{{param.title}}</h1> <a ng-click="close()">Закрыть</a> <a class="nav-prev" ng-show="nav.prev" ng-click="prev()">Назад</a> <a class="nav-next" ng-show="nav.next" ng-click="next()">Вперед</a> </div> <div ng-window-sectors="content"> <img src="{{param.src}}" width="{{param.width}}" height="{{param.height}}" alt="" /> </div> <div ng-window-sectors="footer"> <b>{{param.description}}</b> <i>{{param.test}}</i> {{param.index}} - {{param.count}} </div> </div>
abaddonGIT/angularWindow
tpl/defInnerTpl.html
HTML
mit
616
<!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>GNU Radio&#39;s CHANNELCODING Package: channelcoding Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </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">GNU Radio&#39;s CHANNELCODING Package </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('dir_e56716b0eebb96a9c01b0305e1872a4f.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">channelcoding Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="files"></a> Files</h2></td></tr> <tr class="memitem:api_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="api_8h.html">api.h</a> <a href="api_8h_source.html">[code]</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:binary__symmetric__channel_8h"><td class="memItemLeft" align="right" valign="top">file &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="binary__symmetric__channel_8h.html">binary_symmetric_channel.h</a> <a href="binary__symmetric__channel_8h_source.html">[code]</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_e56716b0eebb96a9c01b0305e1872a4f.html">channelcoding</a></li> <li class="footer">Generated on Fri Jun 10 2016 17:18:23 for GNU Radio&#39;s CHANNELCODING Package by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.11 </li> </ul> </div> </body> </html>
ClydeSpace-GroundStation/GroundStation
GNURadio/OOT_Modules/gr-channelcoding/build/docs/doxygen/html/dir_e56716b0eebb96a9c01b0305e1872a4f.html
HTML
mit
3,526
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Home</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> </head> <body> <div id="main"> <h1 class="page-title">Home</h1> <h3> </h3> <section> <article><h1>jscodeshift <a href="https://travis-ci.org/facebook/jscodeshift"><img src="https://travis-ci.org/facebook/jscodeshift.svg?branch=master" alt="Build Status"></a></h1><p>jscodeshift is a toolkit for running codemods over multiple JS files. It provides:</p> <ul> <li>A runner, which executes the provided transform for each file passed to it. It also outputs a summary of how many files have (not) been transformed.</li> <li>A wrapper around <a href="https://github.com/benjamn/recast">recast</a>, providing a different API. Recast is an AST-to-AST transform tool and also tries to preserve the style of original code as much as possible.</li> </ul> <h2>Install</h2><p>Get jscodeshift from <a href="https://www.npmjs.com/">npm</a>:</p> <pre class="prettyprint source"><code>$ npm install -g jscodeshift</code></pre><p>This will install the runner as <code>jscodeshift</code>.</p> <h2>Usage (CLI)</h2><p>The CLI provides the following options:</p> <pre class="prettyprint source lang-text"><code>$ jscodeshift --help Usage: jscodeshift &lt;path>... [options] path Files or directory to transform Options: -t FILE, --transform FILE Path to the transform file. Can be either a local path or url [./transform.js] -c, --cpus (all by default) Determines the number of processes started. -v, --verbose Show more information about the transform process [0] -d, --dry Dry run (no changes are made to files) -p, --print Print output, useful for development --babel Apply Babel to transform files [true] --extensions File extensions the transform file should be applied to [js] --ignore-pattern Ignore files that match a provided glob expression --ignore-config FILE Ignore files if they match patterns sourced from a configuration file (e.g., a .gitignore) --run-in-band Run serially in the current process [false] -s, --silent No output [false] --parser The parser to use for parsing your source files (babel | babylon | flow) [babel] --version print version and exit</code></pre><p>This passes the source of all passed through the transform module specified with <code>-t</code> or <code>--transform</code> (defaults to <code>transform.js</code> in the current directory). The next section explains the structure of the transform module.</p> <h2>Transform module</h2><p>The transform is simply a module that exports a function of the form:</p> <pre class="prettyprint source lang-js"><code>module.exports = function(fileInfo, api, options) { // transform `fileInfo.source` here // ... // return changed source return source; };</code></pre><h3>Arguments</h3><h4><code>fileInfo</code></h4><p>Holds information about the currently processed file.</p> <table> <thead> <tr> <th>Property</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>path</td> <td>File path</td> </tr> <tr> <td>source</td> <td>File content</td> </tr> </tbody> </table> <h4><code>api</code></h4><p>This object exposes the <code>jscodeshift</code> library and helper functions from the runner.</p> <table> <thead> <tr> <th>Property</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>jscodeshift</td> <td>A reference to the jscodeshift library</td> </tr> <tr> <td>stats</td> <td>A function to collect statistics during <code>--dry</code> runs</td> </tr> </tbody> </table> <p><code>jscodeshift</code> is a reference to the wrapper around recast and provides a jQuery-like API to navigate and transform the AST. Here is a quick example, a more detailed description can be found below.</p> <pre class="prettyprint source lang-js"><code>/** * This replaces every occurrence of variable &quot;foo&quot;. */ module.exports = function(fileInfo, api) { return api.jscodeshift(fileInfo.source) .findVariableDeclarators('foo') .renameTo('bar') .toSource(); }</code></pre><p><strong>Note:</strong> This API is exposed for convenience, but you don't have to use it. You can use any tool to modify the source.</p> <p><code>stats</code> is a function that only works when the <code>--dry</code> options is set. It accepts a string, and will simply count how often it was called with that value.</p> <p>At the end, the CLI will report those values. This can be useful while developing the transform, e.g. to find out how often a certain construct appears in the source(s).</p> <h4><code>options</code></h4><p>Contains all options that have been passed to runner. This allows you to pass additional options to the transform. For example, if the CLI is called with</p> <pre class="prettyprint source"><code>$ jscodeshift -t myTransforms fileA fileB --foo=bar</code></pre><p><code>options</code> would contain <code>{foo: 'bar'}</code>. jscodeshift uses <a href="https://www.npmjs.com/package/nomnom">nomnom</a> to parse command line options.</p> <h3>Return value</h3><p>The return value of the function determines the status of the transformation:</p> <ul> <li>If a string is returned and it is different from passed source, the transform is considered to be successful.</li> <li>If a string is returned but it's the same as the source, the transform is considered to be unsuccessful.</li> <li>If nothing is returned, the file is not supposed to be transformed (which is ok).</li> </ul> <p>The CLI provides a summary of the transformation at the end. You can get more detailed information by setting the <code>-v</code> option to <code>1</code> or <code>2</code>.</p> <p>You can collect even more stats via the <code>stats</code> function as explained above.</p> <h3>Parser</h3><p>The transform can let jscodeshift know with which parser to parse the source files (and features like templates).</p> <p>To do that, the transform module can export <code>parser</code>, which can either be one of the strings <code>&quot;babel&quot;</code>, <code>&quot;babylon&quot;</code>, or <code>&quot;flow&quot;</code>, or it can be a parser object that is compatible with recast.</p> <p>For example:</p> <pre class="prettyprint source lang-js"><code>module.exports.parser = 'flow'; // use the flow parser // or module.exports.parser = { parse: function(source) { // return estree compatible AST }, };</code></pre><h3>Example output</h3><pre class="prettyprint source lang-text"><code>$ jscodeshift -t myTransform.js src Processing 10 files... Spawning 2 workers with 5 files each... All workers done. Results: 0 errors 2 unmodified 3 skipped 5 ok</code></pre><h2>The jscodeshift API</h2><p>As already mentioned, jscodeshift also provides a wrapper around <a href="https://github.com/benjamn/recast">recast</a>. In order to properly use the jscodeshift API, one has to understand the basic building blocks of recast (and ASTs) as well.</p> <h3>Core Concepts</h3><h4>AST nodes</h4><p>An AST node is a plain JavaScript object with a specific set of fields, in accordance with the <a href="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Parser_API">Mozilla Parser API</a>. The primary way to identify nodes is via their <code>type</code>.</p> <p>For example, string literals are represented via <code>Literal</code> nodes, which have the structure</p> <pre class="prettyprint source lang-js"><code>// &quot;foo&quot; { type: 'Literal', value: 'foo', raw: '&quot;foo&quot;' }</code></pre><p>It's OK to not know the structure of every AST node type. The <a href="http://astexplorer.net/">(esprima) AST explorer</a> is an online tool to inspect the AST for a given piece of JS code.</p> <h4>Path objects</h4><p>Recast itself relies heavily on <a href="https://github.com/benjamn/ast-types">ast-types</a> which defines methods to traverse the AST, access node fields and build new nodes. ast-types wraps every AST node into a <em>path object</em>. Paths contain meta-information and helper methods to process AST nodes.</p> <p>For example, the child-parent relationship between two nodes is not explicitly defined. Given a plain AST node, it is not possible to traverse the tree <em>up</em>. Given a path object however, the parent can be traversed to via <code>path.parent</code>.</p> <p>For more information about the path object API, please have a look at <a href="https://github.com/benjamn/ast-types">ast-types</a>.</p> <h4>Builders</h4><p>To make creating AST nodes a bit simpler and &quot;safer&quot;, ast-types defines a couple of <em>builder methods</em>, which are also exposed on <code>jscodeshift</code>.</p> <p>For example, the following creates an AST equivalent to <code>foo(bar)</code>:</p> <pre class="prettyprint source lang-js"><code>// inside a module transform var j = jscodeshift; // foo(bar); var ast = j.callExpression( j.identifier('foo'), [j.identifier('bar')] );</code></pre><p>The signature of each builder function is best learned by having a look at the <a href="https://github.com/benjamn/ast-types/blob/master/def/">definition files</a>.</p> <h3>Collections and Traversal</h3><p>In order to transform the AST, you have to traverse it and find the nodes that need to be changed. jscodeshift is built around the idea of <strong>collections</strong> of paths and thus provides a different way of processing an AST than recast or ast-types.</p> <p>A collection has methods to process the nodes inside a collection, often resulting in a new collection. This results in a fluent interface, which can make the transform more readable.</p> <p>Collections are &quot;typed&quot; which means that the type of a collection is the &quot;lowest&quot; type all AST nodes in the collection have in common. That means you cannot call a method for a <code>FunctionExpression</code> collection on an <code>Identifier</code> collection.</p> <p>Here is an example of how one would find/traverse all <code>Identifier</code> nodes with jscodeshift and with recast:</p> <pre class="prettyprint source lang-js"><code>// recast var ast = recast.parse(src); recast.visit(ast, { visitIdentifier: function(path) { // do something with path return false; } }); // jscodeshift jscodeshift(src) .find(jscodeshift.Identifier) .forEach(function(path) { // do something with path });</code></pre><p>To learn about the provided methods, have a look at the <a href="src/Collection.js">Collection.js</a> and its <a href="src/collections/">extensions</a>.</p> <h3>Extensibility</h3><p>jscodeshift provides an API to extend collections. By moving common operators into helper functions (which can be stored separately in other modules), a transform can be made more readable.</p> <p>There are two types of extensions: generic extensions and type-specific extensions. <strong>Generic extensions</strong> are applicable to all collections. As such, they typically don't access specific node data, but rather traverse the AST from the nodes in the collection. <strong>Type-specific</strong> extensions work only on specific node types and are not callable on differently typed collections.</p> <h4>Examples</h4><pre class="prettyprint source lang-js"><code>// Adding a method to all Identifiers jscodeshift.registerMethods({ logNames: function() { return this.forEach(function(path) { console.log(path.node.name); }); } }, jscodeshift.Identifier); // Adding a method to all collections jscodeshift.registerMethods({ findIdentifiers: function() { return this.find(jscodeshift.Identifier); } }); jscodeshift(ast).findIdentifiers().logNames(); jscodeshift(ast).logNames(); // error, unless `ast` only consists of Identifier nodes</code></pre><h3>Passing options to <a href="https://github.com/benjamn/recast">recast</a></h3><p>You may want to change some of the output settings (like setting <code>'</code> instead of <code>&quot;</code>). This can be done by passing config options to <a href="https://github.com/benjamn/recast">recast</a>.</p> <pre class="prettyprint source lang-js"><code>.toSource({quote: 'single'}); // sets strings to use single quotes in transformed code.</code></pre><p>You can also pass options to recast's <code>parse</code> method by passing an object to jscodeshift as second argument:</p> <pre class="prettyprint source lang-js"><code>jscodeshift(source, {...})</code></pre><p>More on config options <a href="https://github.com/benjamn/recast/blob/52a7ec3eaaa37e78436841ed8afc948033a86252/lib/options.js#L61">here</a></p> <h3>Unit Testing</h3><p>jscodeshift comes with a simple utility to allow easy unit testing with <a href="https://facebook.github.io/jest/">Jest</a>, without having to write a lot of boilerplate code. This utility makes some assumptions in order to reduce the amount of configuration required:</p> <ul> <li>The test is located in a subdirectory under the directory the transform itself is located in (eg. <code>__tests__</code>)</li> <li>Test fixtures are located in a <code>__testfixtures__</code> directory</li> </ul> <p>This results in a directory structure like this:</p> <pre class="prettyprint source"><code>/MyTransform.js /__tests__/MyTransform-test.js /__testfixtures__/MyTransform.input.js /__testfixtures__/MyTransform.output.js</code></pre><p>To define a test, use <code>defineTest</code> or <code>defineInlineTest</code> from the <code>testUtils</code> module. A simple example is bundled in the <a href="sample">sample directory</a>.</p> <h4><code>defineTest</code></h4><pre class="prettyprint source lang-js"><code>jest.autoMockOff(); const defineTest = require('jscodeshift/dist/testUtils').defineTest; defineTest(__dirname, 'MyTransform');</code></pre><p>An alternate fixture filename can be provided as the fourth argument to <code>defineTest</code>. This also means that multiple test fixtures can be provided:</p> <pre class="prettyprint source lang-js"><code>defineTest(__dirname, 'MyTransform', null, 'FirstFixture'); defineTest(__dirname, 'MyTransform', null, 'SecondFixture');</code></pre><p>This will run two tests: One for <code>__testfixtures__/FirstFixture.input.js</code> and one for <code>__testfixtures__/SecondFixture.input.js</code></p> <h4><code>defineInlineTest</code></h4><pre class="prettyprint source lang-js"><code>const transform = require('../myTransform'); defineInlineTest(transform, {}, 'input', 'expected output', 'test name (optional)');</code></pre><h3>Example Codemods</h3><ul> <li><a href="https://github.com/reactjs/react-codemod">react-codemod</a> - React codemod scripts to update React APIs.</li> <li><a href="https://github.com/cpojer/js-codemod/">js-codemod</a> - Codemod scripts to transform code to next generation JS.</li> <li><a href="https://github.com/jhgg/js-transforms">js-transforms</a> - Some documented codemod experiments to help you learn.</li> </ul> <h3>Recipes</h3><ul> <li><a href="recipes/retain-first-comment.md">Retain leading comment(s) in file when replacing/removing first statement</a></li> </ul> <h3>Support</h3><ul> <li>Discord - <a href="https://discordapp.com/channels/102860784329052160/103748721107292160">#codemod</a> on <a href="http://www.reactiflux.com/">Reactiflux</a></li> </ul></article> </section> </div> <nav> <h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-jscodeshift.html">jscodeshift</a></li></ul><h3>Externals</h3><ul><li><a href="external-astTypes.html">astTypes</a></li></ul><h3>Classes</h3><ul><li><a href="Collection.html">Collection</a></li></ul><h3>Mixins</h3><ul><li><a href="globalMethods.html">globalMethods</a></li><li><a href="mutationMethods.html">mutationMethods</a></li><li><a href="transformMethods.html">transformMethods</a></li><li><a href="traversalMethods.html">traversalMethods</a></li></ul><h3>Global</h3><ul><li><a href="global.html#registerMethods">registerMethods</a></li></ul> </nav> <br class="clear"> <footer> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Tue Oct 09 2018 21:58:15 GMT-0400 (EDT) </footer> <script> prettyPrint(); </script> <script src="scripts/linenumber.js"> </script> </body> </html>
facebook/jscodeshift
docs/index.html
HTML
mit
16,716
<div class="modal-bg"> <div class="modal"> <div ng-transclude></div> </div> </div>
kenkouot/beautiful-wikia
assets/templates/angular/modal.html
HTML
mit
88
<!DOCTYPE html> <html> <head> <meta http-equiv="Content" charset="utf-8" /> <title>演示 scriptLoader</title> <!-- <link href="css/reset.css" rel="stylesheet" type="text/css" /> --> <script type="text/javascript" src="../../MyCore.ScriptLoader.js"></script> <!-- // <script type="text/javascript" src="JS/jquery-1.7.1.min.js"></script> --> </head> <body> <h1>演示 scriptLoader</h1> <script type="text/javascript"> MyCore.ScriptLoader.loadScript('externalFile.js',function(){ alert('success loaded!'); }); </script> </body> </html>
wbpmrck/OneLib
test/old/MyCore.ScriptLoader.Demo/MyCore.ScriptLoader.Demo.html
HTML
mit
628
<!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="./75a429c12c25c8b138e64cdb7615e4c7ea1275d9ec295f2790d55e7b128d1e5b.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/d66b9ce9f0ff4bb0d0b13e4e3df58eb18eac097c8667cac3ceaacc915d18a89b.html
HTML
mit
550
--- layout: archive title: "News" permalink: /news/ author_profile: true paginate: collection: posts reversed: false --- {% include base_path %} {% for post in paginator.posts %} {% include news-list.html %} {% endfor %} {% include collection_pagination.html %}
OSUOSC/open-source-club-website
_pages/news.html
HTML
mit
275
<!doctype html> <html> <head> <title>shortened</title> <meta charset="utf-8"> <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, width=device-width"> <meta name="apple-mobile-web-app-capable" content="yes"> <link rel="stylesheet" href="../css/main.css?v=1.0"> </head> <body class="_IE9"> <!-- ####################################################################### --> <div class="sxc-transparent"> <div class="sxc-default container-fluid"> <div class="row sxc-p30"> <div class="col-xs-12"> <h1>shortened</h1> </div> </div> <!-- row --> </div> <!-- sxc-type container --> </div> <!-- sxc-color --> <!-- ####################################################################### --> <div class="sxc-transparent"> <div class="sxc-default container-fluid"> <div class="row sxc-p30"> <div class="col-xs-12"> <p class="sx-shortened sx-shortened-white h100"> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. </p> </div> </div> <!-- row --> </div> <!-- sxc-type container --> </div> <!-- sxc-color --> <script src="../js/libs.js"></script> <script src="../js/scripts.js"></script> <a class="sg-back-link" href="00-index.html"><i class="fa fa-home"></i></a> </body> </html>
kblh/LessStarter-2017-01
assets/src/styleguide/shortened.html
HTML
mit
2,176
<!DOCTYPE html> <html lang='en' dir='auto'> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <script src="https://kit.fontawesome.com/5e6a8c1a2b.js" crossorigin="anonymous"></script><head> <meta charset='utf-8'> <meta name='viewport' content='width=device-width, initial-scale=1'> <meta name='description' content='Get in Touch.'> <meta name='theme-color' content='#ff5722'> <meta property='og:title' content='Contact • Arvind Iyer'> <meta property='og:description' content='Get in Touch.'> <meta property='og:url' content='http://www.arvindkiyer.com/contact/'> <meta property='og:site_name' content='Arvind Iyer'> <meta property='og:type' content='article'><meta property='article:section' content='page'><meta property='article:published_time' content='2018-06-10T22:00:25&#43;08:00'/><meta property='article:modified_time' content='2018-06-10T22:00:25&#43;08:00'/><meta name='twitter:card' content='summary'><meta name='twitter:site' content='@arvind_k_iyer'> <meta name="generator" content="Hugo 0.72.0" /> <title>Contact • Arvind Iyer</title> <link rel='canonical' href='http://www.arvindkiyer.com/contact/'> <link rel='icon' href='/static/images/logo.png'> <link rel='stylesheet' href='/assets/css/main.ab98e12b.css'><link rel='stylesheet' href='/css/custom.css'><style> :root{--color-accent:#ff5722;} </style> </head> <body class='page type-page has-sidebar'> <div class='site'><div id='sidebar' class='sidebar'> <a class='screen-reader-text' href='#main-menu'>Skip to Main Menu</a> <div class='container'><section class='widget widget-about sep-after'> <header> <div class='logo'> <a href='/'> <img src='/images/logo.png'> </a> </div> </header> </section> <section class='widget widget-sidebar_menu sep-after'><nav id='sidebar-menu' class='menu sidebar-menu' aria-label='Sidebar Menu'> <div class='container'> <ul><li class='item'> <a href='/'>Home</a></li><li class='item'> <a href='/research/'>Research</a></li><li class='item'> <a href='/publication/'>Publications</a></li><li class='item current'> <a aria-current='page' href='/contact/'>Contact</a></li></ul> </div> </nav> </section><section class='widget widget-social_menu sep-after'><nav aria-label='Social Menu'> <ul><li> <a href='https://github.com/arvindiyer' target='_blank' rel='noopener'> <span class='screen-reader-text'>Open Github account in new tab</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"/> </svg> </a> </li><li> <a href='https://facebook.com/ARVIND.K.IYER' target='_blank' rel='noopener'> <span class='screen-reader-text'>Open Facebook account in new tab</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"/> </svg> </a> </li><li> <a href='https://twitter.com/arvind_k_Iyer' target='_blank' rel='noopener'> <span class='screen-reader-text'>Open Twitter account in new tab</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"/> </svg> </a> </li><li> <a href='mailto:[email protected]' target='_blank' rel='noopener'> <span class='screen-reader-text'>Contact via Email</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"/> <polyline points="22,6 12,13 2,6"/> </svg> </a> </li><li> <a href='https://linkedin.com/in/arvindiyer1994' target='_blank' rel='noopener'> <span class='screen-reader-text'>Open Linkedin account in new tab</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"/> <rect x="2" y="9" width="4" height="12"/> <circle cx="4" cy="4" r="2"/> </svg> </a> </li><li> <a href='https://scholar.google.com/citations?user=0q8O0ecAAAAJ' target='_blank' rel='noopener'> <span class='screen-reader-text'>Open Google_scholar account in new tab</span><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <path d="M21.328 2.002v9.2M8.695 7.85c.014-.787-.11-2.236.28-2.89.623-1.045.856-1.39 1.797-1.989 1.953-.988 4.296.692 4.296.692.803.564 1.672 2.1 1.672 2.1l1.368-1.824-5.444-1.754-3.515 1.34L6.08 7.681m9.109 3.42s.65-.633 1.168-1.085c.461-.402.516-.714.6-.914.18-.426.268-.909.268-1.446 0-.7-.131-1.274-.388-1.735-.031-.053 0 0-.097-.157l4.588-3.762H10.32L3.672 7.85l5.023-.024c.23 1.237.619 1.575 1.019 2.222.744.719 1.13 1.194 2.215 1.194.254 0 2.6-.057 2.842-.09 0 0 .546 1.199-.133 1.71-.41.31.576 1.304.576 1.304s-5.577.831-6.523 1.427a4.13 4.13 0 0 0-1.306 1.277 3.034 3.034 0 0 0-.493 1.665c0 .502.106.955.32 1.357.214.403.493.733.84.99.345.258.744.473 1.194.649.45.174.896.297 1.342.367a8.348 8.348 0 0 0 3.41-.166 7.754 7.754 0 0 0 1.964-.807 4.28 4.28 0 0 0 1.49-1.443c.38-.609.57-1.292.57-2.049 0-.574-.116-1.096-.347-1.57a3.755 3.755 0 0 0-.847-1.164c-.335-.302-2.19-1.837-2.19-1.837"/> </svg> </a> </li></ul> </nav> </section></div> <div class='sidebar-overlay'></div> </div><div class='main'><nav id='main-menu' class='menu main-menu' aria-label='Main Menu'> <div class='container'> <a class='screen-reader-text' href='#content'>Skip to Content</a> <button id='sidebar-toggler' class='sidebar-toggler' aria-controls='sidebar'> <span class='screen-reader-text'>Toggle Sidebar</span> <span class='open'><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <line x1="3" y1="12" x2="21" y2="12" /> <line x1="3" y1="6" x2="21" y2="6" /> <line x1="3" y1="18" x2="21" y2="18" /> </svg> </span> <span class='close'><svg class='icon' viewbox='0 0 24 24' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' aria-hidden='true'> <line x1="18" y1="6" x2="6" y2="18" /> <line x1="6" y1="6" x2="18" y2="18" /> </svg> </span> </button> <ul><li class='item'> <a href='/'>Home</a> </li><li class='item'> <a href='/research/'>Research</a> </li><li class='item'> <a href='/publication/'>Publications</a> </li><li class='item current'> <a aria-current='page' href='/contact/'>Contact</a> </li><li class='item'> <a href='/cv.pdf'>CV</a> </li></ul> </div> </nav><div class='header-widgets'> <div class='container'></div> </div> <header id='header' class='header site-header'> <div class='container sep-after'> <div class='header-info'><p class='site-title title'>Arvind Iyer</p><p class='desc site-desc'>PhD Student</p> <p class='desc site-desc'>University of Lausanne</p> </div> </div> </header> <main id='content'> <article lang='en' class='entry'> <header class='header entry-header'> <div class='container sep-after'> <div class='header-info'> <h1 class='title'>Contact</h1> <p class='desc'>Get in Touch.</p> </div> </div> </header> <div class='w3-container entry-content' style="text-align: justify;"> <p>Email is the best way to reach me.</p> <h2 id="details">Details</h2> <p><strong>Arvind Iyer</strong><br> Computational Systems Onclogy Lab<br> Quartier UNIL-Sorge<br> Génopode Building<br> Office: 2016.2<br> CH-1015 Lausanne<br> Email: <a href="mailto:[email protected]">[email protected]</a><br></p> </div> </article> </main> <footer id='footer' class='footer'> <div class='container sep-before'>Powered by <a title="Hugo" href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> and <a title="Minimo" href="https://themes.gohugo.io/minimo/" target="_blank" rel="noopener">Minimo Theme (modified)</a> <div class='copyright'> <p>Copyright &copy; 2020 Arvind Iyer </p> </div> </div> </footer> </div> </div><script>window.__assets_js_src="/assets/js/"</script> <script src='/assets/js/main.c3bcf2df.js'></script><script src='/js/custom.js'></script> </body> </html>
Arvindiyer/Arvindiyer.github.io
contact/index.html
HTML
mit
9,075
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>unimath-substitution-systems: 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.14.0 / unimath-substitution-systems - 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> unimath-substitution-systems <small> 0.1.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-01 12:01:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-01 12:01:13 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.14.0 Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 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;[email protected]&quot; homepage: &quot;https://github.com/UniMath/UniMath&quot; dev-repo: &quot;git+https://github.com/UniMath/UniMath.git&quot; bug-reports: &quot;https://github.com/UniMath/UniMath/issues&quot; license: &quot;Kind of MIT&quot; authors: [&quot;The UniMath Development Team&quot;] build: [ [&quot;coq_makefile&quot; &quot;-f&quot; &quot;Make&quot; &quot;-o&quot; &quot;Makefile&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5.0&quot; &amp; &lt; &quot;8.6&quot;} &quot;coq-unimath-category-theory&quot; &quot;coq-unimath-foundations&quot; ] synopsis: &quot;Aims to formalize a substantial body of mathematics using the univalent point of view&quot; extra-files: [&quot;Make&quot; &quot;md5=8606de3f7fc761f04872219361ba9c7d&quot;] url { src: &quot;https://github.com/UniMath/UniMath/archive/v0.1.tar.gz&quot; checksum: &quot;md5=1ed57c1028e227a309f428a6dc5f0866&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-unimath-substitution-systems.0.1.0 coq.8.14.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.14.0). The following dependencies couldn&#39;t be met: - coq-unimath-substitution-systems -&gt; coq &lt; 8.6 -&gt; ocaml &lt; 4.06.0 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-unimath-substitution-systems.0.1.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.07.1-2.0.6/released/8.14.0/unimath-substitution-systems/0.1.0.html
HTML
mit
7,114
<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>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title> <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}"> <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> <!-- Google fonts --> <link href='https://fonts.googleapis.com/css?family=Cabin' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'> </head>
reginafcompton/music-place
_includes/head.html
HTML
mit
689
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="nl"> <head> <!-- Generated by javadoc (1.8.0_66) on Sat Feb 03 21:58:02 CET 2018 --> <title>org.encryptor4j.util</title> <meta name="date" content="2018-02-03"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.encryptor4j.util"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/encryptor4j/test/package-summary.html">Prev&nbsp;Package</a></li> <li>Next&nbsp;Package</li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/encryptor4j/util/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.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="Package" class="title">Package&nbsp;org.encryptor4j.util</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../org/encryptor4j/util/Entropy.html" title="class in org.encryptor4j.util">Entropy</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../org/encryptor4j/util/FileEncryptor.html" title="class in org.encryptor4j.util">FileEncryptor</a></td> <td class="colLast"> <div class="block">Class for encrypting and decrypting files.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../org/encryptor4j/util/TextEncryptor.html" title="class in org.encryptor4j.util">TextEncryptor</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../org/encryptor4j/test/package-summary.html">Prev&nbsp;Package</a></li> <li>Next&nbsp;Package</li> </ul> <ul class="navList"> <li><a href="../../../index.html?org/encryptor4j/util/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.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>
martinwithaar/Encryptor4j
docs/org/encryptor4j/util/package-summary.html
HTML
mit
5,257
<div class="container"> <h1>OM MIT LIV</h1> <div class="row"> <div class="col-md-8"> <h2>Williams Syndrom</h2> <p>Williams Syndrom er en genetisk <abbr title="Noget som bare sker">mutation</abbr></p> <p>Se hvad du ved om ws ved at tage denne <a href="#">test</a></p> </div> <div class="col-md-4"><h2>IT</h2></div> </div> </div>
Krighaar/Showcase
app/viewWS/omWS.html
HTML
mit
403
<sky-tabset [active]="activeIndex" (tabIndexesChange)="onTabIndexesChange($event)" > <sky-tab *ngFor="let tab of tabArray" [active]="tab.active" [tabIndex]="tab.tabIndex" [tabHeading]="tab.tabHeading" > {{ tab.tabContent }} </sky-tab> </sky-tabset>
blackbaud/skyux
libs/components/tabs/src/lib/modules/tabs/fixtures/tabset-loop.component.fixture.html
HTML
mit
279
<!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/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/favicon.ico" /> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/iosicon.png" /> <!-- DEVELOPMENT LESS --> <!-- <link rel="stylesheet/less" href="css/photon.less" media="all" /> <link rel="stylesheet/less" href="css/photon-responsive.less" media="all" /> --> <!-- PRODUCTION CSS --> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/css/css_compiled/photon-min.css?v1.1" media="all" /> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/css/css_compiled/photon-min-part2.css?v1.1" media="all" /> <link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/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/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/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/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/images/photon/[email protected]" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="bootstrap.min.js.html#">Sign Up &#187;</a> <a href="bootstrap.min.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="bootstrap.min.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/bootstrap/js/plugins/prettify/images/photon/js/bootstrap/bootstrap.min.js.html
HTML
mit
15,844
<!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 Dec 17 20:48:28 PST 2014 --> <title>Uses of Class java.util.SimpleTimeZone (Java Platform SE 8 )</title> <meta name="date" content="2014-12-17"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class java.util.SimpleTimeZone (Java Platform SE 8 )"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/SimpleTimeZone.html" title="class in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/SimpleTimeZone.html" target="_top">Frames</a></li> <li><a href="SimpleTimeZone.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class java.util.SimpleTimeZone" class="title">Uses of Class<br>java.util.SimpleTimeZone</h2> </div> <div class="classUseContainer">No usage of java.util.SimpleTimeZone</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../java/util/SimpleTimeZone.html" title="class in java.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?java/util/class-use/SimpleTimeZone.html" target="_top">Frames</a></li> <li><a href="SimpleTimeZone.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../legal/cpyr.html">Copyright</a> &#x00a9; 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
fbiville/annotation-processing-ftw
doc/java/jdk8/java/util/class-use/SimpleTimeZone.html
HTML
mit
5,001
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_18) on Thu Dec 18 17:18:42 PST 2014 --> <title>Uses of Class org.omg.CosNaming.BindingIteratorHolder (Java Platform SE 7 )</title> <meta name="date" content="2014-12-18"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.omg.CosNaming.BindingIteratorHolder (Java Platform SE 7 )"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;7</strong></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/omg/CosNaming/class-use/BindingIteratorHolder.html" target="_top">Frames</a></li> <li><a href="BindingIteratorHolder.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.omg.CosNaming.BindingIteratorHolder" class="title">Uses of Class<br>org.omg.CosNaming.BindingIteratorHolder</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.omg.CosNaming">org.omg.CosNaming</a></td> <td class="colLast"> <div class="block">Provides a naming service for Java&nbsp;IDL.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.omg.CosNaming"> <!-- --> </a> <h3>Uses of <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a> in <a href="../../../../org/omg/CosNaming/package-summary.html">org.omg.CosNaming</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../org/omg/CosNaming/package-summary.html">org.omg.CosNaming</a> with parameters of type <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">_NamingContextExtStub.</span><code><strong><a href="../../../../org/omg/CosNaming/_NamingContextExtStub.html#list(int,%20org.omg.CosNaming.BindingListHolder,%20org.omg.CosNaming.BindingIteratorHolder)">list</a></strong>(int&nbsp;how_many, <a href="../../../../org/omg/CosNaming/BindingListHolder.html" title="class in org.omg.CosNaming">BindingListHolder</a>&nbsp;bl, <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a>&nbsp;bi)</code> <div class="block">The list operation allows a client to iterate through a set of bindings in a naming context.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">NamingContextOperations.</span><code><strong><a href="../../../../org/omg/CosNaming/NamingContextOperations.html#list(int,%20org.omg.CosNaming.BindingListHolder,%20org.omg.CosNaming.BindingIteratorHolder)">list</a></strong>(int&nbsp;how_many, <a href="../../../../org/omg/CosNaming/BindingListHolder.html" title="class in org.omg.CosNaming">BindingListHolder</a>&nbsp;bl, <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a>&nbsp;bi)</code> <div class="block">The list operation allows a client to iterate through a set of bindings in a naming context.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">_NamingContextStub.</span><code><strong><a href="../../../../org/omg/CosNaming/_NamingContextStub.html#list(int,%20org.omg.CosNaming.BindingListHolder,%20org.omg.CosNaming.BindingIteratorHolder)">list</a></strong>(int&nbsp;how_many, <a href="../../../../org/omg/CosNaming/BindingListHolder.html" title="class in org.omg.CosNaming">BindingListHolder</a>&nbsp;bl, <a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">BindingIteratorHolder</a>&nbsp;bi)</code> <div class="block">The list operation allows a client to iterate through a set of bindings in a naming context.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/omg/CosNaming/BindingIteratorHolder.html" title="class in org.omg.CosNaming">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;7</strong></em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/omg/CosNaming/class-use/BindingIteratorHolder.html" target="_top">Frames</a></li> <li><a href="BindingIteratorHolder.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://docs.oracle.com/javase/7/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../../legal/cpyr.html">Copyright</a> &#x00a9; 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
fbiville/annotation-processing-ftw
doc/java/jdk7/org/omg/CosNaming/class-use/BindingIteratorHolder.html
HTML
mit
8,869
<h1>ivy-tree</h1> <div class="textfield"> <lu-select class="textfield-input" [(ngModel)]="item"> <ng-container *luDisplayer="let value">{{ value.name }}</ng-container> <lu-tree-option-picker> <lu-tree-option [tree]="tree"> <ng-container *luDisplayer="let value">{{ value.name }}</ng-container> </lu-tree-option> </lu-tree-option-picker> </lu-select> <label for="" class="textfield-label">select single</label> </div> <div class="textfield"> <lu-select class="textfield-input" [(ngModel)]="item"> <ng-container *luDisplayer="let value">{{ value.name }}</ng-container> <lu-tree-option-picker-advanced> <lu-tree-option-feeder [options]="options"></lu-tree-option-feeder> <lu-tree-option-searcher [searchFn]="searchFn"></lu-tree-option-searcher> <lu-tree-option *luForTreeOptions="let option" [tree]="option"> <ng-container *luDisplayer="let value">{{ value.name }}</ng-container> </lu-tree-option> </lu-tree-option-picker-advanced> </lu-select> <label for="" class="textfield-label">single with operators</label> </div> <div class="textfield"> <lu-select class="textfield-input" [(ngModel)]="collection" multiple> <ng-container *luDisplayer="let values; multiple: true">{{ values.length }} items selected</ng-container> <lu-tree-option-picker-advanced> <lu-tree-option-feeder [options]="options"></lu-tree-option-feeder> <lu-tree-option-searcher [searchFn]="searchFn"></lu-tree-option-searcher> <lu-tree-option *luForTreeOptions="let option" [tree]="option"> <ng-container *luDisplayer="let value">{{ value.name }}</ng-container> </lu-tree-option> </lu-tree-option-picker-advanced> </lu-select> <label for="" class="textfield-label">multiple with operators</label> </div>
LuccaSA/lucca-front
to-migrate/ng/ivy-tree/ivy-tree.component.html
HTML
mit
1,741
<div class="sidebar" style="font-size: 110% !important;"> <div class="container sidebar-sticky"> <div class="sidebar-about"> <h1 style="font-size: 110% !important;">{{ site.title }}</h1> <img src="http://www.bible-sms.com/images/bible-sms.jpg" width="140" height="160" alt="Bible SMS - Daily Bible Verse" /> <br /> <a href="http://www.bible-sms.com/">Bible SMS</a> <br /> <a href="http://www.bible-sms.com/daily_bible_verse.php">Daily Bible Verse</a> <br /><br /> <p class="lead">{{ site.description }}</p> </div> <ul class="sidebar-nav"> <li class="sidebar-nav-item{% if page.title == "Home" %} active{% endif %}"> <a href="/">Home</a> </li> {% comment %} The code below dynamically generates a sidebar nav of pages with `layout: page` in the front-matter. See readme for usage. {% endcomment %} {% assign pages_list = site.pages %} {% for node in pages_list %} {% if node.title != null %} {% if node.layout == "page" %} <li class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}"> <a href="{{ node.url }}">{{ node.title }}</a> </li> {% endif %} {% endif %} {% endfor %} <!--li class="sidebar-nav-item"><a href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a></li> <li class="sidebar-nav-item"><a href="{{ site.github.repo }}">GitHub project</a></li> <li class="sidebar-nav-item">Currently v{{ site.version }}</li--> </ul> <p>&copy; {{ site.time | date: '%Y' }}. All rights reserved.</p> </div> </div>
daily-bible-verse/daily-bible-verse.github.io
_includes/sidebar.html
HTML
mit
1,663
{% extends 'base.html' %} {% block title %}Profile | {% endblock %} {% block content %} <div class="container"> <div class="row dashboard"> <div class="col-xs-12"> <div class="widget subscribe view-profile"> <a href="{%url 'account:dashboard' %}"><i class="zmdi zmdi-chevron-left"></i> Back</a> <h4> Billing profile for you account </h4> <a href="{%url 'account:edit-profile' %}">Edit</a> <h5> Account Type </h5> <div class="row"> <div class="col-xs-6 col-sm-4 text-right-sm">Account Type:</div> <div class="col-xs-6 col-sm-8">{{user.account.account_type}}</div> </div> <hr> <h5> Address </h5> <div class="row"> <div class="col-sm-4 text-right-sm hidden-xs">Address:</div> <div class="col-sm-8 address"> {% if user.account.business_name %}<h5 style="font-weight: 400; margin-bottom: 0">{{user.account.business_name}}</h5>{% endif %} <h5 style="font-weight: 400; font-size: 16px">{{user.account.name}}</h5> <p>{{user.account.address_1}}</p> {% if user.account.address_2 %}<p>{{user.account.address_2}}</p>{% endif %} <p>{{user.account.city}}</p> <p>{{user.account.state}}</p> <p>{{user.account.zip_code}}</p> <p>{{user.account.country}}</p> </div> </div> <hr> <h5> Billing Administrators </h5> <div class="row"> <div class="col-sm-10"> <table class="table table-striped"> <thead> <tr> <td> Name </td> <td> Phone </td> <td> Email </td> </tr> </thead> <tbody> {% for billing_admin in billing_admins %} <tr> <td> {{billing_admin.get_full_name}} {% if billing_admin.is_primary_contact %} (Primary Contact) {% endif %}</td> <td> {{billing_admin.phone_number}} </td> <td> {{billing_admin.email}} </td> <td> {% if request.user != billing_admin and not billing_admin.is_primary_contact %} <a href="{%url 'account:revoke-access' billing_admin.id %}">X</a> {% endif %} </td> </tr> {% endfor %} {% for invite in invites %} <tr> <td colspan="2">Invitation Sent</td> <td>{{invite.email}}</td> <td><a href="{%url 'account:revoke-invite' invite.id %}">X</a></td> </tr> {% endfor %} </tbody> </table> </div> </div> <div class="row"> <div class="col-sm-8"> <form action="{% url 'account:send-invite' %}" method="post"> {% csrf_token %} <div class="row"> <div class="col-xs-12"> {{ invitation_form.non_field_errors }} {{ invitation_form.email.errors }} </div> </div> {{ invitation_form.email }} </form> </div> </div> </div> </div> </div> </div> {% endblock %} {% block js %} <script> $(function(){ $('#{{ invitation_form.email.id_for_label }}').attr('placeholder', 'Email'); }); </script> {% endblock %}
katyaeka2710/python2017005
templates/account/view_profile.html
HTML
mit
3,092
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>:: Epic 1 Media | 2017</title> <!-- Bootstrap core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom styles for this template --> <link href="css/modern-business.css" rel="stylesheet"> </head> <body> <!-- Navigation --> <nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark fixed-top"> <div class="container"> <a class="navbar-brand" href="index.html">Start Bootstrap</a> <button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarResponsive"> <ul class="navbar-nav ml-auto"> <li class="nav-item"> <a class="nav-link" href="about.html">About</a> </li> <li class="nav-item"> <a class="nav-link" href="services.html">Services</a> </li> <li class="nav-item"> <a class="nav-link" href="contact.html">Contact</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownPortfolio" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Portfolio </a> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownPortfolio"> <a class="dropdown-item" href="portfolio-1-col.html">1 Column Portfolio</a> <a class="dropdown-item" href="portfolio-2-col.html">2 Column Portfolio</a> <a class="dropdown-item" href="portfolio-3-col.html">3 Column Portfolio</a> <a class="dropdown-item" href="portfolio-4-col.html">4 Column Portfolio</a> <a class="dropdown-item" href="portfolio-item.html">Single Portfolio Item</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownBlog" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Blog </a> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownBlog"> <a class="dropdown-item" href="blog-home-1.html">Blog Home 1</a> <a class="dropdown-item" href="blog-home-2.html">Blog Home 2</a> <a class="dropdown-item" href="blog-post.html">Blog Post</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="navbarDropdownBlog" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Other Pages </a> <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownBlog"> <a class="dropdown-item" href="full-width.html">Full Width Page</a> <a class="dropdown-item" href="sidebar.html">Sidebar Page</a> <a class="dropdown-item" href="faq.html">FAQ</a> <a class="dropdown-item" href="404.html">404</a> <a class="dropdown-item" href="pricing.html">Pricing Table</a> </div> </li> </ul> </div> </div> </nav> <header> <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel"> <ol class="carousel-indicators"> <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li> <li data-target="#carouselExampleIndicators" data-slide-to="1"></li> <li data-target="#carouselExampleIndicators" data-slide-to="2"></li> </ol> <div class="carousel-inner" role="listbox"> <!-- Slide One - Set the background image for this slide in the line below --> <div class="carousel-item active" style="background-image: url('http://placehold.it/1900x1080')"> <div class="carousel-caption d-none d-md-block"> <h3>First Slide</h3> <p>This is a description for the first slide.</p> </div> </div> <!-- Slide Two - Set the background image for this slide in the line below --> <div class="carousel-item" style="background-image: url('http://placehold.it/1900x1080')"> <div class="carousel-caption d-none d-md-block"> <h3>Second Slide</h3> <p>This is a description for the second slide.</p> </div> </div> <!-- Slide Three - Set the background image for this slide in the line below --> <div class="carousel-item" style="background-image: url('http://placehold.it/1900x1080')"> <div class="carousel-caption d-none d-md-block"> <h3>Third Slide</h3> <p>This is a description for the third slide.</p> </div> </div> </div> <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a> <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a> </div> </header> <!-- Page Content --> <div class="container"> <h1 class="my-4">Welcome to Modern Business</h1> <!-- Marketing Icons Section --> <div class="row"> <div class="col-lg-4 mb-4"> <div class="card h-100"> <h4 class="card-header">Card Title</h4> <div class="card-body"> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente esse necessitatibus neque.</p> </div> <div class="card-footer"> <a href="#" class="btn btn-primary">Learn More</a> </div> </div> </div> <div class="col-lg-4 mb-4"> <div class="card h-100"> <h4 class="card-header">Card Title</h4> <div class="card-body"> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Reiciendis ipsam eos, nam perspiciatis natus commodi similique totam consectetur praesentium molestiae atque exercitationem ut consequuntur, sed eveniet, magni nostrum sint fuga.</p> </div> <div class="card-footer"> <a href="#" class="btn btn-primary">Learn More</a> </div> </div> </div> <div class="col-lg-4 mb-4"> <div class="card h-100"> <h4 class="card-header">Card Title</h4> <div class="card-body"> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente esse necessitatibus neque.</p> </div> <div class="card-footer"> <a href="#" class="btn btn-primary">Learn More</a> </div> </div> </div> </div> <!-- /.row --> <!-- Portfolio Section --> <h2>Portfolio Heading</h2> <div class="row"> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project One</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Amet numquam aspernatur eum quasi sapiente nesciunt? Voluptatibus sit, repellat sequi itaque deserunt, dolores in, nesciunt, illum tempora ex quae? Nihil, dolorem!</p> </div> </div> </div> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project Two</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.</p> </div> </div> </div> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project Three</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos quisquam, error quod sed cumque, odio distinctio velit nostrum temporibus necessitatibus et facere atque iure perspiciatis mollitia recusandae vero vel quam!</p> </div> </div> </div> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project Four</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.</p> </div> </div> </div> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project Five</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam viverra euismod odio, gravida pellentesque urna varius vitae.</p> </div> </div> </div> <div class="col-lg-4 col-sm-6 portfolio-item"> <div class="card h-100"> <a href="#"><img class="card-img-top" src="http://placehold.it/700x400" alt=""></a> <div class="card-body"> <h4 class="card-title"> <a href="#">Project Six</a> </h4> <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Itaque earum nostrum suscipit ducimus nihil provident, perferendis rem illo, voluptate atque, sit eius in voluptates, nemo repellat fugiat excepturi! Nemo, esse.</p> </div> </div> </div> </div> <!-- /.row --> <!-- Features Section --> <div class="row"> <div class="col-lg-6"> <h2>Modern Business Features</h2> <p>The Modern Business template by Start Bootstrap includes:</p> <ul> <li> <strong>Bootstrap v4</strong> </li> <li>jQuery</li> <li>Font Awesome</li> <li>Working contact form with validation</li> <li>Unstyled page elements for easy customization</li> </ul> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Corporis, omnis doloremque non cum id reprehenderit, quisquam totam aspernatur tempora minima unde aliquid ea culpa sunt. Reiciendis quia dolorum ducimus unde.</p> </div> <div class="col-lg-6"> <img class="img-fluid rounded" src="http://placehold.it/700x450" alt=""> </div> </div> <!-- /.row --> <hr> <!-- Call to Action Section --> <div class="row mb-4"> <div class="col-md-8"> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestias, expedita, saepe, vero rerum deleniti beatae veniam harum neque nemo praesentium cum alias asperiores commodi.</p> </div> <div class="col-md-4"> <a class="btn btn-lg btn-secondary btn-block" href="#">Call to Action</a> </div> </div> </div> <!-- /.container --> <!-- Footer --> <footer class="py-5 bg-dark"> <div class="container"> <p class="m-0 text-center text-white">Copyright &copy; Your Website 2017</p> </div> <!-- /.container --> </footer> <!-- Bootstrap core JavaScript --> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/popper/popper.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.min.js"></script> </body> </html>
larryperryepic1/bootstrap-web
index.html
HTML
mit
13,167
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../css/bootstrap.css"/> <link rel="stylesheet" href="../css/font-awesome.css"/> <link rel="stylesheet" href="../css/bootstrap-datepicker.css"/> <link rel="stylesheet" href="../css/zxx.lib.css"/> <link rel="stylesheet" href="../../dist/css/mine.min.css"/> <title>Query</title> </head> <body> <form id="query" class="form-inline" autocomplete="off" data-mode="1"> <table> <tr> <td>手机号码</td> <td> <input class="form-control form-field" name="mobile_number" data-type="text" data-default-value="" type="text" placeholder="按手机号码来搜索" value=""> </td> <td>姓名</td> <td> <input class="form-control form-field" name="name" data-type="text" data-default-value="" type="text" placeholder="按姓名来搜索" value=""> </td> <td>注册日期</td> <td> <input style="width: 160px" class="form-control form-field" name="create_at" data-type="date" data-default-value="" type="text" placeholder="按注册日期来搜索" value=""> </td> <td> <button data-click="query" class="btn btn-default" type="button">搜索</button> </td> </tr> </table> </form> <script src="../../lib/global/jquery.js"></script> <script src="../../lib/global/bootstrap.js"></script> <script src="../../lib/global/datepicker/bootstrap-datepicker.js"></script> <script src="../../lib/global/datepicker/bootstrap-datepicker.zh-CN.js"></script> <script src="../../dist/js/mine.min.js"></script> <script> me.init({ deps: { jquery: jQuery }, mods: ['query'] }); var $ = me.jquery; var Query = me.query; new Query('#query', { onQuery: function(e,queryData){ console.log(queryData); } }); </script> </body> </html>
liuyunzhuge/mine
examples/global/query.html
HTML
mit
2,572
<!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 class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>todoledo</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- build:css(.tmp) styles/main.css --> <link rel="stylesheet" href="styles/main.css"> <!-- endbuild --> <!-- build:js scripts/vendor/modernizr.js --> <script src="bower_components/modernizr/modernizr.js"></script> <!-- endbuild --> </head> <body> <!--[if lt IE 10]> <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 class="container"> <div class="header"> <ul class="nav nav-pills pull-right"> <li class="active"><a href="#">Home</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> </ul> <h3 class="text-muted">todoledo</h3> </div> <div class="jumbotron"> <h1>'Allo, 'Allo!</h1> <p class="lead">Always a pleasure scaffolding your apps.</p> <p><a class="btn btn-lg btn-success" href="#">Splendid!</a></p> </div> <div class="row text-left"> <div class="col-md-offset-4"> <h2>Now Try,</h2> <h4><b>yo backbone:router</b> &lt;router&gt;</h4> <h4><b>yo backbone:collection</b> &lt;collection&gt;</h4> <h4><b>yo backbone:model </b> &lt;model&gt;</h4> <h4><b>yo backbone:view </b> &lt;view&gt;</h4> </div> </div> <div class="row marketing"> <div class="col-lg-6"> <h4>HTML5 Boilerplate</h4> <p>HTML5 Boilerplate is a professional front-end template for building fast, robust, and adaptable web apps or sites.</p> <h4>Bootstrap</h4> <p>Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.</p> <h4>Modernizr</h4> <p>Modernizr is an open-source JavaScript library that helps you build the next generation of HTML5 and CSS3-powered websites.</p> </div> <div class="col-lg-6"> <h4>Backbone.js</h4> <p>Backbone.js gives structure to web applications by providing models, collections, views and connects it all to your existing API over a RESTful JSON interface.</p> <h4>Underscore.js</h4> <p>Underscore.js is a utility-belt library for JavaScript that provides a lot of the functional programming support</p> <h4>RequireJS</h4> <p>RequireJS is a JavaScript file and module loader. It is optimized for in-browser use, but it can be used in other JavaScript environments, like Rhino and Node.</p> </div> </div> <div class="footer"> <p>♥ from the Yeoman team</p> </div> </div> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (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'); </script> <!-- build:js scripts/main.js --> <script data-main="scripts/main" src="bower_components/requirejs/require.js"></script> <!-- endbuild --> </body> </html>
wayuk/todoledo
app/index.html
HTML
mit
4,439
<!DOCTYPE html> <html> <head> <title>Chat</title> <meta charset="utf-8"> <link rel="stylesheet" href="/assets/css/app.css"> </head> <body> <script src="/assets/js/vendor/require.js" data-main="/assets/js/app"></script> </body> </html>
jakelazaroff/chat
client/index.html
HTML
mit
244
{%extends "db.html"%} {%block body%} {%include "header.html"%} <link rel="stylesheet" type="text/css" href="static/css/custom.css"> {% if added != 0 %} <p align="center"><b>{{added}} had been added to the database!</b></p> {% endif %} <p align="center"><b>Please enter User Information</b></p> <p></p> <div align="center"> <form action="addUser" method="post" align="center" > <div>&nbsp;<input type="textarea" style="width:300px" id="email" name="email" placeholder='e-mail' class="textarea" /> </div> <p></p> <div>&nbsp;<input type="password" id="password" style="width:300px" name="password" placeholder='password' class="textarea" /> </div><p></p> <div>&nbsp;<input type="textarea" style="width:300px" id="read_access" name="read_access" placeholder='read access' class="textarea" /> </div> <p></p> <div>&nbsp;<input type="textarea" style="width:300px" id="write_access" name="write_access" placeholder='write access' class="textarea" /> </div> <p></p> <button class="loginbutton" type="post" id="addUser" >Add User!</button> </form> </div> {%endblock%}
emreozen/FCC-PSAP-DB
source code/PSAPDB/templates/addUser.html
HTML
mit
1,084
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'><head><title>/Library/Ruby/Gems/1.8/gems/ruby-openid-2.0.1/lib/openid/fetchers.rb - C0 code coverage information</title> <style type='text/css'>body { background-color: rgb(240, 240, 245); }</style> <style type='text/css'>span.cross-ref-title { font-size: 140%; } span.cross-ref a { text-decoration: none; } span.cross-ref { background-color:#f3f7fa; border: 1px dashed #333; margin: 1em; padding: 0.5em; overflow: hidden; } a.crossref-toggle { text-decoration: none; } span.marked0 { background-color: rgb(185, 210, 200); display: block; } span.marked1 { background-color: rgb(190, 215, 205); display: block; } span.inferred0 { background-color: rgb(175, 200, 200); display: block; } span.inferred1 { background-color: rgb(180, 205, 205); display: block; } span.uncovered0 { background-color: rgb(225, 110, 110); display: block; } span.uncovered1 { background-color: rgb(235, 120, 120); display: block; } span.overview { border-bottom: 8px solid black; } div.overview { border-bottom: 8px solid black; } body { font-family: verdana, arial, helvetica; } div.footer { font-size: 68%; margin-top: 1.5em; } h1, h2, h3, h4, h5, h6 { margin-bottom: 0.5em; } h5 { margin-top: 0.5em; } .hidden { display: none; } div.separator { height: 10px; } /* Commented out for better readability, esp. on IE */ /* table tr td, table tr th { font-size: 68%; } td.value table tr td { font-size: 11px; } */ table.percent_graph { height: 12px; border: #808080 1px solid; empty-cells: show; } table.percent_graph td.covered { height: 10px; background: #00f000; } table.percent_graph td.uncovered { height: 10px; background: #e00000; } table.percent_graph td.NA { height: 10px; background: #eaeaea; } table.report { border-collapse: collapse; width: 100%; } table.report td.heading { background: #dcecff; border: #d0d0d0 1px solid; font-weight: bold; text-align: center; } table.report td.heading:hover { background: #c0ffc0; } table.report td.text { border: #d0d0d0 1px solid; } table.report td.value, table.report td.lines_total, table.report td.lines_code { text-align: right; border: #d0d0d0 1px solid; } table.report tr.light { background-color: rgb(240, 240, 245); } table.report tr.dark { background-color: rgb(230, 230, 235); } </style> <script type='text/javascript'> // <![CDATA[ function toggleCode( id ) { if ( document.getElementById ) elem = document.getElementById( id ); else if ( document.all ) elem = eval( "document.all." + id ); else return false; elemStyle = elem.style; if ( elemStyle.display != "block" ) { elemStyle.display = "block" } else { elemStyle.display = "none" } return true; } // Make cross-references hidden by default document.writeln( "<style type=\"text/css\">span.cross-ref { display: none }</style>" ) // ]]> </script> <style type='text/css'>span.run0 { background-color: rgb(178, 204, 255); display: block; } span.run1 { background-color: rgb(178, 206, 255); display: block; } span.run2 { background-color: rgb(178, 209, 255); display: block; } span.run3 { background-color: rgb(178, 211, 255); display: block; } span.run4 { background-color: rgb(178, 214, 255); display: block; } span.run5 { background-color: rgb(178, 218, 255); display: block; } span.run6 { background-color: rgb(178, 220, 255); display: block; } span.run7 { background-color: rgb(178, 223, 255); display: block; } span.run8 { background-color: rgb(178, 225, 255); display: block; } span.run9 { background-color: rgb(178, 228, 255); display: block; } span.run10 { background-color: rgb(178, 232, 255); display: block; } span.run11 { background-color: rgb(178, 234, 255); display: block; } span.run12 { background-color: rgb(178, 237, 255); display: block; } span.run13 { background-color: rgb(178, 239, 255); display: block; } span.run14 { background-color: rgb(178, 242, 255); display: block; } span.run15 { background-color: rgb(178, 246, 255); display: block; } span.run16 { background-color: rgb(178, 248, 255); display: block; } span.run17 { background-color: rgb(178, 251, 255); display: block; } span.run18 { background-color: rgb(178, 253, 255); display: block; } span.run19 { background-color: rgb(178, 255, 253); display: block; } span.run20 { background-color: rgb(178, 255, 249); display: block; } span.run21 { background-color: rgb(178, 255, 247); display: block; } span.run22 { background-color: rgb(178, 255, 244); display: block; } span.run23 { background-color: rgb(178, 255, 242); display: block; } span.run24 { background-color: rgb(178, 255, 239); display: block; } span.run25 { background-color: rgb(178, 255, 235); display: block; } span.run26 { background-color: rgb(178, 255, 233); display: block; } span.run27 { background-color: rgb(178, 255, 230); display: block; } span.run28 { background-color: rgb(178, 255, 228); display: block; } span.run29 { background-color: rgb(178, 255, 225); display: block; } span.run30 { background-color: rgb(178, 255, 221); display: block; } span.run31 { background-color: rgb(178, 255, 219); display: block; } span.run32 { background-color: rgb(178, 255, 216); display: block; } span.run33 { background-color: rgb(178, 255, 214); display: block; } span.run34 { background-color: rgb(178, 255, 211); display: block; } span.run35 { background-color: rgb(178, 255, 207); display: block; } span.run36 { background-color: rgb(178, 255, 205); display: block; } span.run37 { background-color: rgb(178, 255, 202); display: block; } span.run38 { background-color: rgb(178, 255, 200); display: block; } span.run39 { background-color: rgb(178, 255, 197); display: block; } span.run40 { background-color: rgb(178, 255, 193); display: block; } span.run41 { background-color: rgb(178, 255, 191); display: block; } span.run42 { background-color: rgb(178, 255, 188); display: block; } span.run43 { background-color: rgb(178, 255, 186); display: block; } span.run44 { background-color: rgb(178, 255, 183); display: block; } span.run45 { background-color: rgb(178, 255, 179); display: block; } span.run46 { background-color: rgb(179, 255, 178); display: block; } span.run47 { background-color: rgb(182, 255, 178); display: block; } span.run48 { background-color: rgb(184, 255, 178); display: block; } span.run49 { background-color: rgb(187, 255, 178); display: block; } span.run50 { background-color: rgb(191, 255, 178); display: block; } span.run51 { background-color: rgb(193, 255, 178); display: block; } span.run52 { background-color: rgb(196, 255, 178); display: block; } span.run53 { background-color: rgb(198, 255, 178); display: block; } span.run54 { background-color: rgb(201, 255, 178); display: block; } span.run55 { background-color: rgb(205, 255, 178); display: block; } span.run56 { background-color: rgb(207, 255, 178); display: block; } span.run57 { background-color: rgb(210, 255, 178); display: block; } span.run58 { background-color: rgb(212, 255, 178); display: block; } span.run59 { background-color: rgb(215, 255, 178); display: block; } span.run60 { background-color: rgb(219, 255, 178); display: block; } span.run61 { background-color: rgb(221, 255, 178); display: block; } span.run62 { background-color: rgb(224, 255, 178); display: block; } span.run63 { background-color: rgb(226, 255, 178); display: block; } span.run64 { background-color: rgb(229, 255, 178); display: block; } span.run65 { background-color: rgb(233, 255, 178); display: block; } span.run66 { background-color: rgb(235, 255, 178); display: block; } span.run67 { background-color: rgb(238, 255, 178); display: block; } span.run68 { background-color: rgb(240, 255, 178); display: block; } span.run69 { background-color: rgb(243, 255, 178); display: block; } span.run70 { background-color: rgb(247, 255, 178); display: block; } span.run71 { background-color: rgb(249, 255, 178); display: block; } span.run72 { background-color: rgb(252, 255, 178); display: block; } span.run73 { background-color: rgb(255, 255, 178); display: block; } span.run74 { background-color: rgb(255, 252, 178); display: block; } span.run75 { background-color: rgb(255, 248, 178); display: block; } span.run76 { background-color: rgb(255, 246, 178); display: block; } span.run77 { background-color: rgb(255, 243, 178); display: block; } span.run78 { background-color: rgb(255, 240, 178); display: block; } span.run79 { background-color: rgb(255, 238, 178); display: block; } span.run80 { background-color: rgb(255, 234, 178); display: block; } span.run81 { background-color: rgb(255, 232, 178); display: block; } span.run82 { background-color: rgb(255, 229, 178); display: block; } span.run83 { background-color: rgb(255, 226, 178); display: block; } span.run84 { background-color: rgb(255, 224, 178); display: block; } span.run85 { background-color: rgb(255, 220, 178); display: block; } span.run86 { background-color: rgb(255, 218, 178); display: block; } span.run87 { background-color: rgb(255, 215, 178); display: block; } span.run88 { background-color: rgb(255, 212, 178); display: block; } span.run89 { background-color: rgb(255, 210, 178); display: block; } span.run90 { background-color: rgb(255, 206, 178); display: block; } span.run91 { background-color: rgb(255, 204, 178); display: block; } span.run92 { background-color: rgb(255, 201, 178); display: block; } span.run93 { background-color: rgb(255, 198, 178); display: block; } span.run94 { background-color: rgb(255, 196, 178); display: block; } span.run95 { background-color: rgb(255, 192, 178); display: block; } span.run96 { background-color: rgb(255, 189, 178); display: block; } span.run97 { background-color: rgb(255, 187, 178); display: block; } span.run98 { background-color: rgb(255, 184, 178); display: block; } span.run99 { background-color: rgb(255, 182, 178); display: block; } span.run100 { background-color: rgb(255, 178, 178); display: block; } </style> </head> <body><h3>C0 code coverage information</h3> <p>Generated on Sun Jan 06 23:15:41 -0500 2008 with <a href='http://eigenclass.org/hiki/rcov'>rcov 0.8.1.2</a> </p> <hr/> <pre><span class='marked0'>Code reported as executed by Ruby looks like this... </span><span class='marked1'>and this: this line is also marked as covered. </span><span class='inferred0'>Lines considered as run by rcov, but not reported by Ruby, look like this, </span><span class='inferred1'>and this: these lines were inferred by rcov (using simple heuristics). </span><span class='uncovered0'>Finally, here&apos;s a line marked as not executed. </span></pre> <table class='report'><thead><tr><td class='heading'>Name</td> <td class='heading'>Total lines</td> <td class='heading'>Lines of code</td> <td class='heading'>Total coverage</td> <td class='heading'>Code coverage</td> </tr> </thead> <tbody><tr class='light'><td><a href='-Library-Ruby-Gems-1_8-gems-ruby-openid-2_0_1-lib-openid-fetchers_rb.html'>/Library/Ruby/Gems/1.8/gems/ruby-openid-2.0.1/lib/openid/fetchers.rb</a> </td> <td class='lines_total'><tt>199</tt> </td> <td class='lines_code'><tt>156</tt> </td> <td><table cellspacing='0' cellpadding='0' align='right'><tr><td><tt class='coverage_total'>31.2%</tt> &nbsp;</td> <td><table cellspacing='0' class='percent_graph' cellpadding='0' width='100'><tr><td class='covered' width='31'/> <td class='uncovered' width='69'/> </tr> </table> </td> </tr> </table> </td> <td><table cellspacing='0' cellpadding='0' align='right'><tr><td><tt class='coverage_code'>23.1%</tt> &nbsp;</td> <td><table cellspacing='0' class='percent_graph' cellpadding='0' width='100'><tr><td class='covered' width='23'/> <td class='uncovered' width='77'/> </tr> </table> </td> </tr> </table> </td> </tr> </tbody> </table> <pre><span class="marked1"><a name="line1"></a> 1 require 'net/http' </span><span class="marked0"><a name="line2"></a> 2 require 'openid' </span><span class="marked1"><a name="line3"></a> 3 require 'openid/util' </span><span class="inferred0"><a name="line4"></a> 4 </span><span class="marked1"><a name="line5"></a> 5 begin </span><span class="marked0"><a name="line6"></a> 6 require 'net/https' </span><span class="uncovered1"><a name="line7"></a> 7 rescue LoadError </span><span class="uncovered0"><a name="line8"></a> 8 OpenID::Util.log('WARNING: no SSL support found. Will not be able ' + </span><span class="uncovered1"><a name="line9"></a> 9 'to fetch HTTPS URLs!') </span><span class="uncovered0"><a name="line10"></a> 10 require 'net/http' </span><span class="uncovered1"><a name="line11"></a> 11 end </span><span class="inferred0"><a name="line12"></a> 12 </span><span class="marked1"><a name="line13"></a> 13 module Net </span><span class="marked0"><a name="line14"></a> 14 class HTTP </span><span class="marked1"><a name="line15"></a> 15 def post_connection_check(hostname) </span><span class="uncovered0"><a name="line16"></a> 16 check_common_name = true </span><span class="uncovered1"><a name="line17"></a> 17 cert = @socket.io.peer_cert </span><span class="uncovered0"><a name="line18"></a> 18 cert.extensions.each { |ext| </span><span class="uncovered1"><a name="line19"></a> 19 next if ext.oid != &quot;subjectAltName&quot; </span><span class="uncovered0"><a name="line20"></a> 20 ext.value.split(/,\s+/).each{ |general_name| </span><span class="uncovered1"><a name="line21"></a> 21 if /\ADNS:(.*)/ =~ general_name </span><span class="uncovered0"><a name="line22"></a> 22 check_common_name = false </span><span class="uncovered1"><a name="line23"></a> 23 reg = Regexp.escape($1).gsub(/\\\*/, &quot;[^.]+&quot;) </span><span class="uncovered0"><a name="line24"></a> 24 return true if /\A#{reg}\z/i =~ hostname </span><span class="uncovered1"><a name="line25"></a> 25 elsif /\AIP Address:(.*)/ =~ general_name </span><span class="uncovered0"><a name="line26"></a> 26 check_common_name = false </span><span class="uncovered1"><a name="line27"></a> 27 return true if $1 == hostname </span><span class="uncovered0"><a name="line28"></a> 28 end </span><span class="uncovered1"><a name="line29"></a> 29 } </span><span class="uncovered0"><a name="line30"></a> 30 } </span><span class="uncovered1"><a name="line31"></a> 31 if check_common_name </span><span class="uncovered0"><a name="line32"></a> 32 cert.subject.to_a.each{ |oid, value| </span><span class="uncovered1"><a name="line33"></a> 33 if oid == &quot;CN&quot; </span><span class="uncovered0"><a name="line34"></a> 34 reg = Regexp.escape(value).gsub(/\\\*/, &quot;[^.]+&quot;) </span><span class="uncovered1"><a name="line35"></a> 35 return true if /\A#{reg}\z/i =~ hostname </span><span class="uncovered0"><a name="line36"></a> 36 end </span><span class="uncovered1"><a name="line37"></a> 37 } </span><span class="uncovered0"><a name="line38"></a> 38 end </span><span class="uncovered1"><a name="line39"></a> 39 raise OpenSSL::SSL::SSLError, &quot;hostname does not match&quot; </span><span class="uncovered0"><a name="line40"></a> 40 end </span><span class="uncovered1"><a name="line41"></a> 41 end </span><span class="uncovered0"><a name="line42"></a> 42 end </span><span class="inferred1"><a name="line43"></a> 43 </span><span class="marked0"><a name="line44"></a> 44 module OpenID </span><span class="inferred1"><a name="line45"></a> 45 # Our HTTPResponse class extends Net::HTTPResponse with an additional </span><span class="inferred0"><a name="line46"></a> 46 # method, final_url. </span><span class="marked1"><a name="line47"></a> 47 class HTTPResponse </span><span class="marked0"><a name="line48"></a> 48 attr_accessor :final_url </span><span class="inferred1"><a name="line49"></a> 49 </span><span class="marked0"><a name="line50"></a> 50 attr_accessor :_response </span><span class="inferred1"><a name="line51"></a> 51 </span><span class="marked0"><a name="line52"></a> 52 def self._from_net_response(response, final_url, headers=nil) </span><span class="uncovered1"><a name="line53"></a> 53 me = self.new </span><span class="uncovered0"><a name="line54"></a> 54 me._response = response </span><span class="uncovered1"><a name="line55"></a> 55 me.final_url = final_url </span><span class="uncovered0"><a name="line56"></a> 56 return me </span><span class="uncovered1"><a name="line57"></a> 57 end </span><span class="inferred0"><a name="line58"></a> 58 </span><span class="marked1"><a name="line59"></a> 59 def method_missing(method, *args) </span><span class="uncovered0"><a name="line60"></a> 60 @_response.send(method, *args) </span><span class="uncovered1"><a name="line61"></a> 61 end </span><span class="inferred0"><a name="line62"></a> 62 </span><span class="marked1"><a name="line63"></a> 63 def body=(s) </span><span class="uncovered0"><a name="line64"></a> 64 @_response.instance_variable_set('@body', s) </span><span class="uncovered1"><a name="line65"></a> 65 # XXX Hack to work around ruby's HTTP library behavior. @body </span><span class="uncovered0"><a name="line66"></a> 66 # is only returned if it has been read from the response </span><span class="uncovered1"><a name="line67"></a> 67 # object's socket, but since we're not using a socket in this </span><span class="uncovered0"><a name="line68"></a> 68 # case, we need to set the @read flag to true to avoid a bug in </span><span class="uncovered1"><a name="line69"></a> 69 # Net::HTTPResponse.stream_check when @socket is nil. </span><span class="uncovered0"><a name="line70"></a> 70 @_response.instance_variable_set('@read', true) </span><span class="uncovered1"><a name="line71"></a> 71 end </span><span class="uncovered0"><a name="line72"></a> 72 end </span><span class="inferred1"><a name="line73"></a> 73 </span><span class="marked0"><a name="line74"></a> 74 class FetchingError &lt; OpenIDError </span><span class="inferred1"><a name="line75"></a> 75 end </span><span class="inferred0"><a name="line76"></a> 76 </span><span class="marked1"><a name="line77"></a> 77 class HTTPRedirectLimitReached &lt; FetchingError </span><span class="inferred0"><a name="line78"></a> 78 end </span><span class="inferred1"><a name="line79"></a> 79 </span><span class="marked0"><a name="line80"></a> 80 class SSLFetchingError &lt; FetchingError </span><span class="inferred1"><a name="line81"></a> 81 end </span><span class="inferred0"><a name="line82"></a> 82 </span><span class="marked1"><a name="line83"></a> 83 @fetcher = nil </span><span class="inferred0"><a name="line84"></a> 84 </span><span class="marked1"><a name="line85"></a> 85 def self.fetch(url, body=nil, headers=nil, </span><span class="inferred0"><a name="line86"></a> 86 redirect_limit=StandardFetcher::REDIRECT_LIMIT) </span><span class="uncovered1"><a name="line87"></a> 87 return fetcher.fetch(url, body, headers, redirect_limit) </span><span class="uncovered0"><a name="line88"></a> 88 end </span><span class="inferred1"><a name="line89"></a> 89 </span><span class="marked0"><a name="line90"></a> 90 def self.fetcher </span><span class="uncovered1"><a name="line91"></a> 91 if @fetcher.nil? </span><span class="uncovered0"><a name="line92"></a> 92 @fetcher = StandardFetcher.new </span><span class="uncovered1"><a name="line93"></a> 93 end </span><span class="uncovered0"><a name="line94"></a> 94 </span><span class="uncovered1"><a name="line95"></a> 95 return @fetcher </span><span class="uncovered0"><a name="line96"></a> 96 end </span><span class="inferred1"><a name="line97"></a> 97 </span><span class="marked0"><a name="line98"></a> 98 def self.fetcher=(fetcher) </span><span class="uncovered1"><a name="line99"></a> 99 @fetcher = fetcher </span><span class="uncovered0"><a name="line100"></a>100 end </span><span class="inferred1"><a name="line101"></a>101 </span><span class="marked0"><a name="line102"></a>102 class StandardFetcher </span><span class="inferred1"><a name="line103"></a>103 </span><span class="marked0"><a name="line104"></a>104 USER_AGENT = &quot;ruby-openid/#{OpenID::VERSION} (#{PLATFORM})&quot; </span><span class="inferred1"><a name="line105"></a>105 </span><span class="marked0"><a name="line106"></a>106 REDIRECT_LIMIT = 5 </span><span class="inferred1"><a name="line107"></a>107 </span><span class="marked0"><a name="line108"></a>108 attr_accessor :ca_file </span><span class="inferred1"><a name="line109"></a>109 </span><span class="marked0"><a name="line110"></a>110 def initialize </span><span class="uncovered1"><a name="line111"></a>111 @ca_file = nil </span><span class="uncovered0"><a name="line112"></a>112 end </span><span class="inferred1"><a name="line113"></a>113 </span><span class="marked0"><a name="line114"></a>114 def supports_ssl?(conn) </span><span class="uncovered1"><a name="line115"></a>115 return conn.respond_to?(:use_ssl=) </span><span class="uncovered0"><a name="line116"></a>116 end </span><span class="inferred1"><a name="line117"></a>117 </span><span class="marked0"><a name="line118"></a>118 def make_http(uri) </span><span class="uncovered1"><a name="line119"></a>119 Net::HTTP.new(uri.host, uri.port) </span><span class="uncovered0"><a name="line120"></a>120 end </span><span class="inferred1"><a name="line121"></a>121 </span><span class="marked0"><a name="line122"></a>122 def set_verified(conn, verify) </span><span class="uncovered1"><a name="line123"></a>123 if verify </span><span class="uncovered0"><a name="line124"></a>124 conn.verify_mode = OpenSSL::SSL::VERIFY_PEER </span><span class="uncovered1"><a name="line125"></a>125 else </span><span class="uncovered0"><a name="line126"></a>126 conn.verify_mode = OpenSSL::SSL::VERIFY_NONE </span><span class="uncovered1"><a name="line127"></a>127 end </span><span class="uncovered0"><a name="line128"></a>128 end </span><span class="inferred1"><a name="line129"></a>129 </span><span class="marked0"><a name="line130"></a>130 def make_connection(uri) </span><span class="uncovered1"><a name="line131"></a>131 conn = make_http(uri) </span><span class="uncovered0"><a name="line132"></a>132 </span><span class="uncovered1"><a name="line133"></a>133 if !conn.is_a?(Net::HTTP) </span><span class="uncovered0"><a name="line134"></a>134 raise RuntimeError, sprintf(&quot;Expected Net::HTTP object from make_http; got %s&quot;, </span><span class="uncovered1"><a name="line135"></a>135 conn.class) </span><span class="uncovered0"><a name="line136"></a>136 end </span><span class="uncovered1"><a name="line137"></a>137 </span><span class="uncovered0"><a name="line138"></a>138 if uri.scheme == 'https' </span><span class="uncovered1"><a name="line139"></a>139 if supports_ssl?(conn) </span><span class="uncovered0"><a name="line140"></a>140 </span><span class="uncovered1"><a name="line141"></a>141 conn.use_ssl = true </span><span class="uncovered0"><a name="line142"></a>142 </span><span class="uncovered1"><a name="line143"></a>143 if @ca_file </span><span class="uncovered0"><a name="line144"></a>144 set_verified(conn, true) </span><span class="uncovered1"><a name="line145"></a>145 conn.ca_file = @ca_file </span><span class="uncovered0"><a name="line146"></a>146 else </span><span class="uncovered1"><a name="line147"></a>147 Util.log(&quot;WARNING: making https request to #{uri} without verifying &quot; + </span><span class="uncovered0"><a name="line148"></a>148 &quot;server certificate; no CA path was specified.&quot;) </span><span class="uncovered1"><a name="line149"></a>149 set_verified(conn, false) </span><span class="uncovered0"><a name="line150"></a>150 end </span><span class="uncovered1"><a name="line151"></a>151 else </span><span class="uncovered0"><a name="line152"></a>152 raise RuntimeError, &quot;SSL support not found; cannot fetch #{uri}&quot; </span><span class="uncovered1"><a name="line153"></a>153 end </span><span class="uncovered0"><a name="line154"></a>154 end </span><span class="uncovered1"><a name="line155"></a>155 </span><span class="uncovered0"><a name="line156"></a>156 return conn </span><span class="uncovered1"><a name="line157"></a>157 end </span><span class="inferred0"><a name="line158"></a>158 </span><span class="marked1"><a name="line159"></a>159 def fetch(url, body=nil, headers=nil, redirect_limit=REDIRECT_LIMIT) </span><span class="uncovered0"><a name="line160"></a>160 unparsed_url = url.dup </span><span class="uncovered1"><a name="line161"></a>161 url = URI::parse(url) </span><span class="uncovered0"><a name="line162"></a>162 </span><span class="uncovered1"><a name="line163"></a>163 headers ||= {} </span><span class="uncovered0"><a name="line164"></a>164 headers['User-agent'] ||= USER_AGENT </span><span class="uncovered1"><a name="line165"></a>165 </span><span class="uncovered0"><a name="line166"></a>166 conn = make_connection(url) </span><span class="uncovered1"><a name="line167"></a>167 response = nil </span><span class="uncovered0"><a name="line168"></a>168 </span><span class="uncovered1"><a name="line169"></a>169 begin </span><span class="uncovered0"><a name="line170"></a>170 response = conn.start { </span><span class="uncovered1"><a name="line171"></a>171 # Check the certificate against the URL's hostname </span><span class="uncovered0"><a name="line172"></a>172 if supports_ssl?(conn) and conn.use_ssl? </span><span class="uncovered1"><a name="line173"></a>173 conn.post_connection_check(url.host) </span><span class="uncovered0"><a name="line174"></a>174 end </span><span class="uncovered1"><a name="line175"></a>175 </span><span class="uncovered0"><a name="line176"></a>176 if body.nil? </span><span class="uncovered1"><a name="line177"></a>177 conn.request_get(url.request_uri, headers) </span><span class="uncovered0"><a name="line178"></a>178 else </span><span class="uncovered1"><a name="line179"></a>179 headers[&quot;Content-type&quot;] ||= &quot;application/x-www-form-urlencoded&quot; </span><span class="uncovered0"><a name="line180"></a>180 conn.request_post(url.request_uri, body, headers) </span><span class="uncovered1"><a name="line181"></a>181 end </span><span class="uncovered0"><a name="line182"></a>182 } </span><span class="uncovered1"><a name="line183"></a>183 rescue OpenSSL::SSL::SSLError =&gt; why </span><span class="uncovered0"><a name="line184"></a>184 raise SSLFetchingError, &quot;Error connecting to SSL URL #{url}: #{why}&quot; </span><span class="uncovered1"><a name="line185"></a>185 end </span><span class="uncovered0"><a name="line186"></a>186 </span><span class="uncovered1"><a name="line187"></a>187 case response </span><span class="uncovered0"><a name="line188"></a>188 when Net::HTTPRedirection </span><span class="uncovered1"><a name="line189"></a>189 if redirect_limit &lt;= 0 </span><span class="uncovered0"><a name="line190"></a>190 raise HTTPRedirectLimitReached.new( </span><span class="uncovered1"><a name="line191"></a>191 &quot;Too many redirects, not fetching #{response['location']}&quot;) </span><span class="uncovered0"><a name="line192"></a>192 end </span><span class="uncovered1"><a name="line193"></a>193 return fetch(response['location'], body, headers, redirect_limit - 1) </span><span class="uncovered0"><a name="line194"></a>194 else </span><span class="uncovered1"><a name="line195"></a>195 return HTTPResponse._from_net_response(response, unparsed_url) </span><span class="uncovered0"><a name="line196"></a>196 end </span><span class="uncovered1"><a name="line197"></a>197 end </span><span class="uncovered0"><a name="line198"></a>198 end </span><span class="uncovered1"><a name="line199"></a>199 end </span></pre><hr/> <p>Generated using the <a href='http://eigenclass.org/hiki.rb?rcov'>rcov code coverage analysis tool for Ruby</a> version 0.8.1.2.</p> <p><a href='http://validator.w3.org/check/referer'><img src='http://www.w3.org/Icons/valid-xhtml10' height='31' alt='Valid XHTML 1.0!' width='88'/> </a> <a href='http://jigsaw.w3.org/css-validator/check/referer'><img src='http://jigsaw.w3.org/css-validator/images/vcss' alt='Valid CSS!' style='border:0;width:88px;height:31px'/> </a> </p> </body> </html>
jared/ygo_classic
coverage/-Library-Ruby-Gems-1_8-gems-ruby-openid-2_0_1-lib-openid-fetchers_rb.html
HTML
mit
29,837
Mañaneros was a chilean band. Created on 2011 under the premise of continuous experimentation with different latin rhythms and sonic textures. Their biggest influences were peruvian cumbia, tribal guarachero, chilean folk, dub end electronic músic. Most of their workflow and taste become the cornerstone of what the is Mañana Records today. The band took different paths after their 4th album "Chacal", released on 2016.
jstnn/mananarecords.com
_includes/mananeros_bio.html
HTML
mit
424
<!DOCTYPE html> <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=""> <meta name="keywords" content=" "> <title>Click | LivePerson Technical Documentation</title> <link rel="stylesheet" href="css/syntax.css"> <link rel="stylesheet" type="text/css" href="css/font-awesome-4.7.0/css/font-awesome.min.css"> <!--<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">--> <link rel="stylesheet" href="css/modern-business.css"> <link rel="stylesheet" href="css/lavish-bootstrap.css"> <link rel="stylesheet" href="css/customstyles.css"> <link rel="stylesheet" href="css/theme-blue.css"> <!-- <script src="assets/js/jsoneditor.js"></script> --> <script src="assets/js/jquery-3.1.0.min.js"></script> <!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css'> --> <!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css'> --> <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> --> <script src="assets/js/jquery.cookie-1.4.1.min.js"></script> <script src="js/jquery.navgoco.min.js"></script> <script src="assets/js/bootstrap-3.3.4.min.js"></script> <script src="assets/js/anchor-2.0.0.min.js"></script> <script src="js/toc.js"></script> <script src="js/customscripts.js"></script> <link rel="shortcut icon" href="images/favicon.ico"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <link rel="alternate" type="application/rss+xml" title="" href="http://0.0.0.0:4005feed.xml"> <script> $(document).ready(function() { // Initialize navgoco with default options $("#mysidebar").navgoco({ caretHtml: '', accordion: true, openClass: 'active', // open save: false, // leave false or nav highlighting doesn't work right cookie: { name: 'navgoco', expires: false, path: '/' }, slide: { duration: 400, easing: 'swing' } }); $("#collapseAll").click(function(e) { e.preventDefault(); $("#mysidebar").navgoco('toggle', false); }); $("#expandAll").click(function(e) { e.preventDefault(); $("#mysidebar").navgoco('toggle', true); }); }); </script> <script> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script> </head> <body> <!-- Navigation --> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container topnavlinks"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <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="fa fa-home fa-lg navbar-brand" href="index.html">&nbsp;<span class="projectTitle"> LivePerson Technical Documentation</span></a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <!-- entries without drop-downs appear here --> <!-- entries with drop-downs appear here --> <!-- conditional logic to control which topnav appears for the audience defined in the configuration file.--> <li><a class="email" title="Submit feedback" href="https://github.com/LivePersonInc/dev-hub/issues" ><i class="fa fa-github"></i> Issues</a><li> <!--comment out this block if you want to hide search--> <li> <!--start search--> <div id="search-demo-container"> <input type="text" id="search-input" placeholder="search..."> <ul id="results-container"></ul> </div> <script src="js/jekyll-search.js" type="text/javascript"></script> <script type="text/javascript"> SimpleJekyllSearch.init({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('results-container'), dataSource: 'search.json', searchResultTemplate: '<li><a href="{url}" title="Click">{title}</a></li>', noResultsText: 'No results found.', limit: 10, fuzzy: true, }) </script> <!--end search--> </li> </ul> </div> </div> <!-- /.container --> </nav> <!-- Page Content --> <div class="container"> <div class="col-lg-12">&nbsp;</div> <!-- Content Row --> <div class="row"> <!-- Sidebar Column --> <div class="col-md-3"> <ul id="mysidebar" class="nav"> <li class="sidebarTitle"> </li> <li> <a href="#">Common Guidelines</a> <ul> <li class="subfolders"> <a href="#">Introduction</a> <ul> <li class="thirdlevel"><a href="index.html">Home</a></li> <li class="thirdlevel"><a href="getting-started.html">Getting Started with LiveEngage APIs</a></li> </ul> </li> <li class="subfolders"> <a href="#">Guides</a> <ul> <li class="thirdlevel"><a href="guides-customizedchat.html">Customized Chat Windows</a></li> </ul> </li> </ul> <li> <a href="#">Account Configuration</a> <ul> <li class="subfolders"> <a href="#">Predefined Content API</a> <ul> <li class="thirdlevel"><a href="account-configuration-predefined-content-overview.html">Overview</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-methods.html">Methods</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-items.html">Get Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-by-id.html">Get Predefined Content by ID</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-query-delta.html">Predefined Content Query Delta</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-create-content.html">Create Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-update-content.html">Update Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-update-content-items.html">Update Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content.html">Delete Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content-items.html">Delete Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-default-items.html">Get Default Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-default-items-by-id.html">Get Default Predefined Content by ID</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Automatic Messages API</a> <ul> <li class="thirdlevel"><a href="account-configuration-automatic-messages-overview.html">Overview</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-methods.html">Methods</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-messages.html">Get Automatic Messages</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-message-by-id.html">Get Automatic Message by ID</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-update-an-automatic-message.html">Update an Automatic Message</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-appendix.html">Appendix</a></li> </ul> </li> </ul> <li> <a href="#">Administration</a> <ul> <li class="subfolders"> <a href="#">Users API</a> <ul> <li class="thirdlevel"><a href="administration-users-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-users-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-users.html">Get all users</a></li> <li class="thirdlevel"><a href="administration-get-user-by-id.html">Get user by ID</a></li> <li class="thirdlevel"><a href="administration-create-users.html">Create users</a></li> <li class="thirdlevel"><a href="administration-update-users.html">Update users</a></li> <li class="thirdlevel"><a href="administration-update-user.html">Update user</a></li> <li class="thirdlevel"><a href="administration-delete-users.html">Delete users</a></li> <li class="thirdlevel"><a href="administration-delete-user.html">Delete user</a></li> <li class="thirdlevel"><a href="administration-change-users-password.html">Change user's password</a></li> <li class="thirdlevel"><a href="administration-reset-users-password.html">Reset user's password</a></li> <li class="thirdlevel"><a href="administration-user-query-delta.html">User query delta</a></li> <li class="thirdlevel"><a href="administration-users-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Skills API</a> <ul> <li class="thirdlevel"><a href="administration-skills-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-skills-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-skills.html">Get all skills</a></li> <li class="thirdlevel"><a href="administration-get-skill-by-id.html">Get skill by ID</a></li> <li class="thirdlevel"><a href="administration-create-skills.html">Create skills</a></li> <li class="thirdlevel"><a href="administration.update-skills.html">Update skills</a></li> <li class="thirdlevel"><a href="administration-update-skill.html">Update skill</a></li> <li class="thirdlevel"><a href="administration-delete-skills.html">Delete skills</a></li> <li class="thirdlevel"><a href="administration-delete-skill.html">Delete skill</a></li> <li class="thirdlevel"><a href="administration-skills-query-delta.html">Skills Query Delta</a></li> <li class="thirdlevel"><a href="administration-skills-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Agent Groups API</a> <ul> <li class="thirdlevel"><a href="administration-agent-groups-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-agent-groups-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-agent-groups.html">Get all agent groups</a></li> <li class="thirdlevel"><a href="administration-get-agent-groups-by-id.html">Get agent group by ID</a></li> <li class="thirdlevel"><a href="administration-create-agent-groups.html">Create agent groups</a></li> <li class="thirdlevel"><a href="administration-update-agent-groups.html">Update agent groups</a></li> <li class="thirdlevel"><a href="administration-update-agent-group.html">Update agent group</a></li> <li class="thirdlevel"><a href="administration-delete-agent-groups.html">Delete agent groups</a></li> <li class="thirdlevel"><a href="administration-delete-agent-group.html">Delete agent group</a></li> <li class="thirdlevel"><a href="administration-get-subgroups-and-members.html">Get subgroups and members of an agent group</a></li> <li class="thirdlevel"><a href="administration-agent-groups-query-delta.html">Agent Groups Query Delta</a></li> </ul> </li> </ul> <li> <a href="#">Consumer Experience</a> <ul> <li class="subfolders"> <a href="#">JavaScript Chat SDK</a> <ul> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-chat-states.html">Chat States</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-surveys.html">Surveys</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-creating-an-instance.html">Creating an Instance</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getestimatedwaittime.html">getEstimatedWaitTime</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getprechatsurvey.html">getPreChatSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getengagement.html">getEngagement</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-requestchat.html">requestChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-addline.html">addLine</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitortyping.html">setVisitorTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitorname.html">setVisitorName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-endchat.html">endChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-requesttranscript.html">requestTranscript</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getexitsurvey.html">getExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitexitsurvey.html">submitExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getofflinesurvey.html">getOfflineSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitofflinesurvey.html">submitOfflineSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getstate.html">getState</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentloginname.html">getAgentLoginName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getvisitorname.html">getVisitorName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentid.html">getAgentId</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getrtsessionid.html">getRtSessionId</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getsessionkey.html">getSessionKey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagenttyping.html">getAgentTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-events.html">Events</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onload.html">onLoad</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninit.html">onInit</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onestimatedwaittime.html">onEstimatedWaitTime</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onengagement.html">onEngagement</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onprechatsurvey.html">onPreChatSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstart.html">onStart</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstop.html">onStop</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onrequestchat.html">onRequestChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-ontranscript.html">onTranscript</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-online.html">onLine</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstate.html">onState</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninfo.html">onInfo</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onagenttyping.html">onAgentTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onexitsurvey.html">onExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onaccounttoaccounttransfer.html">onAccountToAccountTransfer</a></li> <li class="thirdlevel"><a href="rt-interactions-example.html">Engagement Attributes Body Example</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-demo.html">Demo App</a></li> </ul> </li> <li class="subfolders"> <a href="#">Server Chat API</a> <ul> <li class="thirdlevel"><a href="consumer-experience-server-chat-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-availability.html">Retrieve Availability</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-available-slots.html">Retrieve Available Slots</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-estimated-wait-time.html">Retrieve Estimated Wait Time</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-offline-survey.html">Retrieve an Offline Survey</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-start-chat.html">Start a Chat</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-events.html">Retrieve Chat Events</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-add-lines.html">Add Lines / End Chat</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-information.html">Retrieve Chat Information</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-name.html">Retrieve the Visitor's Name</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-name.html">Set the Visitor's Name</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-agent-typing-status.html">Retrieve the Agent's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-typing-status.html">Retrieve the Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-typing-status.html">Set the Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-exit-survey-structure.html">Retrieve Exit Survey Structure</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-submit-survey-data.html">Submit Survey Data</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-send-transcript.html">Send a Transcript</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-sample.html">Sample Postman Collection</a></li> </ul> </li> <li class="subfolders"> <a href="#">Push Service API</a> <ul> <li class="thirdlevel"><a href="push-service-overview.html">Overview</a></li> <li class="thirdlevel"><a href="push-service-tls-html">TLS Authentication</a></li> <li class="thirdlevel"><a href="push-service-codes-html">HTTP Response Codes</a></li> <li class="thirdlevel"><a href="push-service-configuration-html">Configuration of Push Proxy</a></li> </ul> </li> <li class="subfolders"> <a href="#">In-App Messaging SDK iOS (2.0)</a> <ul> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-quick-start.html">Quick Start</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-configurations.html">Advanced Configurations</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-initialize.html">initialize</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-showconversation.html">showConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-removeconversation.html">removeConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-reconnect.html">reconnect</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-togglechatactions.html">toggleChatActions</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-checkactiveconversation.html">checkActiveConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-markasurgent.html">markAsUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-isurgent.html">isUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-dismissurgent.html">dismissUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-resolveconversation.html">resolveConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-clearhistory.html">clearHistory</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-logout.html">logout</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-destruct.html">destruct</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-handlepush.html">handlePush</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-registerpushnotifications.html">registerPushNotifications</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-setuserprofile.html">setUserProfile</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getassignedagent.html">getAssignedAgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-subscribelogevents.html">subscribeLogEvents</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getsdkversion.html">getSDKVersion</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-printalllocalizedkeys.html">printAllLocalizedKeys</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-printsupportedlanguages.html">printSupportedLanguages</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getallsupportedlanguages.html">getAllSupportedLanguages</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-interfacedefinitions.html">Interface and Class Definitions</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-callbacks-index.html">Callbacks index</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-configuring-the-sdk.html">Configuring the SDK</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-attributes.html">Attributes</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-deprecated-attributes.html">Deprecated Attributes</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-stringlocalization.html">String localization in SDK</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-localizationkeys.html">Localization Keys</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-timestamps.html">Timestamps Formatting</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-createcertificate.html">OS Certificate Creation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-csat.html">CSAT UI Content</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-photosharing.html">Photo Sharing (Beta)</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-pushnotifications.html">Configuring Push Notifications</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-opensource.html">Open Source List</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-security.html">Security</a></li> </ul> </li> <li class="subfolders"> <a href="#">In-App Messaging SDK Android (2.0)</a> <ul> <li class="thirdlevel"><a href="android-overview.html">Overview</a></li> <li class="thirdlevel"><a href="android-prerequisites.html">Prerequisites</a></li> <li class="thirdlevel"><a href="android-download-and-unzip.html">Step 1: Download and Unzip the SDK</a></li> <li class="thirdlevel"><a href="android-configure-project-settings.html">Step 2: Configure project settings to connect LiveEngage SDK</a></li> <li class="thirdlevel"><a href="android-code-integration.html">Step 3: Code integration for basic deployment</a></li> <li class="thirdlevel"><a href="android-initialization.html">SDK Initialization and Lifecycle</a></li> <li class="thirdlevel"><a href="android-authentication.html">Authentication</a></li> <li class="thirdlevel"><a href="android-conversations-lifecycle.html">Conversations Lifecycle</a></li> <li class="thirdlevel"><a href="android-callbacks-interface.html">LivePerson Callbacks Interface</a></li> <li class="thirdlevel"><a href="android-notifications.html">Notifications</a></li> <li class="thirdlevel"><a href="android-user-data.html">User Data</a></li> <li class="thirdlevel"><a href="android-logs.html">Logs and Info</a></li> <li class="thirdlevel"><a href="android-methods.html">Methods</a></li> <li class="thirdlevel"><a href="android-initializedeprecated.html">initialize (Deprecated)</a></li> <li class="thirdlevel"><a href="android-initializeproperties.html">initialize (with SDK properties object)</a></li> <li class="thirdlevel"><a href="android-showconversation.html">showConversation</a></li> <li class="thirdlevel"><a href="android-showconversationauth.html">showConversation (with authentication support)</a></li> <li class="thirdlevel"><a href="android-hideconversation.html">hideConversation</a></li> <li class="thirdlevel"><a href="android-getconversationfrag.html">getConversationFragment</a></li> <li class="thirdlevel"><a href="android-getconversationfragauth.html">getConversationFragment with authentication support</a></li> <li class="thirdlevel"><a href="android-reconnect.html">reconnect</a></li> <li class="thirdlevel"><a href="android-setuserprofile.html">setUserProfile</a></li> <li class="thirdlevel"><a href="android-setuserprofiledeprecated.html">setUserProfile (Deprecated)</a></li> <li class="thirdlevel"><a href="android-registerlppusher.html">registerLPPusher</a></li> <li class="thirdlevel"><a href="android-unregisterlppusher.html">unregisterLPPusher</a></li> <li class="thirdlevel"><a href="android-handlepush.html">handlePush</a></li> <li class="thirdlevel"><a href="android-getsdkversion.html">getSDKVersion</a></li> <li class="thirdlevel"><a href="android-setcallback.html">setCallback</a></li> <li class="thirdlevel"><a href="android-removecallback.html">removeCallBack</a></li> <li class="thirdlevel"><a href="android-checkactiveconversation.html">checkActiveConversation</a></li> <li class="thirdlevel"><a href="android-checkagentid.html">checkAgentID</a></li> <li class="thirdlevel"><a href="android-markurgent.html">markConversationAsUrgent</a></li> <li class="thirdlevel"><a href="android-marknormal.html">markConversationAsNormal</a></li> <li class="thirdlevel"><a href="android-checkurgent.html">checkConversationIsMarkedAsUrgent</a></li> <li class="thirdlevel"><a href="android-resolveconversation.html">resolveConversation</a></li> <li class="thirdlevel"><a href="android-shutdown.html">shutDown</a></li> <li class="thirdlevel"><a href="android-shutdowndeprecated.html">shutDown (Deprecated)</a></li> <li class="thirdlevel"><a href="android-clearhistory.html">clearHistory</a></li> <li class="thirdlevel"><a href="android-logout.html">logOut</a></li> <li class="thirdlevel"><a href="android-callbacks-index.html">Callbacks Index</a></li> <li class="thirdlevel"><a href="android-configuring-sdk.html">Configuring the SDK</a></li> <li class="thirdlevel"><a href="android-attributes.html">Attributes</a></li> <li class="thirdlevel"><a href="android-configuring-edittext.html">Configuring the message’s EditText</a></li> <li class="thirdlevel"><a href="android-proguard.html">Proguard Configuration</a></li> <li class="thirdlevel"><a href="android-modifying-string.html">Modifying Strings</a></li> <li class="thirdlevel"><a href="android-modifying-resources.html">Modifying Resources</a></li> <li class="thirdlevel"><a href="android-plural-string.html">Plural String Resource Example</a></li> <li class="thirdlevel"><a href="android-timestamps.html">Timestamps Formatting</a></li> <li class="thirdlevel"><a href="android-off-hours.html">Date and Time</a></li> <li class="thirdlevel"><a href="android-bubble.html">Bubble Timestamp</a></li> <li class="thirdlevel"><a href="android-separator.html">Separator Timestamp</a></li> <li class="thirdlevel"><a href="android-resolve.html">Resolve Message</a></li> <li class="thirdlevel"><a href="android-csat.html">CSAT Behavior</a></li> <li class="thirdlevel"><a href="android-photo-sharing.html">Photo Sharing - Beta</a></li> <li class="thirdlevel"><a href="android-push-notifications.html">Enable Push Notifications</a></li> <li class="thirdlevel"><a href="android-appendix.html">Appendix</a></li> </ul> </li> </ul> <li> <a href="#">Real-time Interactions</a> <ul> <li class="subfolders"> <a href="#">Visit Information API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-visit-information-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-visit-information-visit-information.html">Visit Information</a></li> </ul> </li> <li class="subfolders"> <a href="#">App Engagement API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-app-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-app-engagement-methods.html">Methods</a></li> <li class="thirdlevel"><a href="rt-interactions-create-session.html">Create Session</a></li> <li class="thirdlevel"><a href="rt-interactions-update-session.html">Update Session</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Attributes</a> <ul> <li class="thirdlevel"><a href="rt-interactions-engagement-attributes-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-engagement-attributes-engagement-attributes.html">Engagement Attributes</a></li> </ul> </li> <li class="subfolders"> <a href="#">IVR Engagement API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-methods.html">Methods</a></li> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-external engagement.html">External Engagement</a></li> </ul> </li> <li class="subfolders"> <a href="#">Validate Engagement</a> <ul> <li class="thirdlevel"><a href="rt-interactions-validate-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-validate-engagement-validate-engagement.html">Validate Engagement API</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Trigger API</a> <ul> <li class="thirdlevel"><a href="trigger-overview.html">Overview</a></li> <li class="thirdlevel"><a href="trigger-methods.html">Methods</a></li> <li class="active thirdlevel"><a href="trigger-click.html">Click</a></li> <li class="thirdlevel"><a href="trigger-getinfo.html">getEngagementInfo</a></li> <li class="thirdlevel"><a href="trigger-getstate.html">getEngagementState</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Window Widget SDK</a> <ul> <li class="thirdlevel"><a href="rt-interactions-window-sdk-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-limitations.html">Limitations</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-configuration.html">Configuration</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-how-to-use.html">How to use the SDK</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-code-examples.html">Code Examples</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-event-structure.html">Event Structure</a></li> </ul> </li> </ul> <li> <a href="#">Agent</a> <ul> <li class="subfolders"> <a href="#">Agent Workspace Widget SDK</a> <ul> <li class="thirdlevel"><a href="agent-workspace-sdk-overview.html">Overview</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-limitations.html">Limitations</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-how-to-use.html">How to use the SDK</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-public-model.html">Public Model Structure</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-public-properties.html">Public Properties</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-code-examples.html">Code Examples</a></li> </ul> </li> <li class="subfolders"> <a href="#">LivePerson Domain API</a> <ul> <li class="thirdlevel"><a href="agent-domain-domain-api.html">Domain API</a></li> </ul> </li> <li class="subfolders"> <a href="#">Login Service API</a> <ul> <li class="thirdlevel"><a href="login-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-login-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-login.html">Login</a></li> <li class="thirdlevel"><a href="agent-refresh.html">Refresh</a></li> <li class="thirdlevel"><a href="agent-refresh.html">Logout</a></li> </ul> </li> <li class="subfolders"> <a href="#">Chat Agent API</a> <ul> <li class="thirdlevel"><a href="chat-agent-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-chat-agent-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-start-agent-session.html">Start Agent Session</a></li> <li class="thirdlevel"><a href="agent-retrieve-current-availability.html">Retrieve Current Availability</a></li> <li class="thirdlevel"><a href="agent-set-agent-availability.html">Set Agent Availability</a></li> <li class="thirdlevel"><a href="agent-retrieve-available-agents.html">Retrieve Available Agents</a></li> <li class="thirdlevel"><a href="agent-retrieve-available-slots.html">Retrieve Available Slots</a></li> <li class="thirdlevel"><a href="agent-retrieve-agent-information.html">Retrieve Agent Information</a></li> <li class="thirdlevel"><a href="agent-determine-incoming.html">Determine Incoming Chat Requests</a></li> <li class="thirdlevel"><a href="agent-accept-chat.html">Accept a Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-sessions.html">Retrieve Chat Sessions</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li> <li class="thirdlevel"><a href="agent-retrieve-data.html">Retrieve Data for Multiple Chats</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-events.html">Retrieve Chat Events</a></li> <li class="thirdlevel"><a href="agent-add-lines.html">Add Lines</a></li> <li class="thirdlevel"><a href="agent-end-chat.html">End Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-info.html">Retrieve Chat Information</a></li> <li class="thirdlevel"><a href="">Retrieve Visitor’s Name</a></li> <li class="thirdlevel"><a href="agent-retrieve-agent-typing.html">Retrieve Agent's Typing Status</a></li> <li class="thirdlevel"><a href="agent-set-agent-typing.html">Set Agent’s Typing Status</a></li> <li class="thirdlevel"><a href="agent-retrieve-visitor-typing.html">Retrieve Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="agent-chat-agent-retrieve-skills.html">Retrieve Available Skills</a></li> <li class="thirdlevel"><a href="agent-transfer-chat.html">Transfer a Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-survey-structure.html">Retrieve Agent Survey Structure</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Agent SDK</a> <ul> <li class="thirdlevel"><a href="messaging-agent-sdk-overview.html">Overview</a></li> </ul> </li> </ul> <li> <a href="#">Data</a> <ul> <li class="subfolders"> <a href="#">Data Access API (Beta)</a> <ul> <li class="thirdlevel"><a href="data-data-access-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-data-access-architecture.html">Architecture</a></li> <li class="thirdlevel"><a href="data-data-access-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-data-access-base-resource.html">Base Resource</a></li> <li class="thirdlevel"><a href="data-data-access-agent-activity.html">Agent Activity</a></li> <li class="thirdlevel"><a href="data-data-access-web-session.html">Web Session</a></li> <li class="thirdlevel"><a href="data-data-access-engagement.html">Engagement</a></li> <li class="thirdlevel"><a href="data-data-access-survey.html">Survey</a></li> <li class="thirdlevel"><a href="data-data-access-schema.html">Schema</a></li> <li class="thirdlevel"><a href="data-data-access-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Operations API</a> <ul> <li class="thirdlevel"><a href="data-messaging-operations-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-messaging-operations-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-messaging-operations-messaging-conversation.html">Messaging Conversation</a></li> <li class="thirdlevel"><a href="data-messaging-operations-messaging-csat-distribution.html">Messaging CSAT Distribution</a></li> <li class="thirdlevel"><a href="data-messaging-operations-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Interactions API (Beta)</a> <ul> <li class="thirdlevel"><a href="data-messaging-interactions-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-conversations.html">Conversations</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-get-conversation-by-conversation-id.html">Get conversation by conversation ID</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-get-conversations-by-consumer-id.html">Get Conversations by Consumer ID</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-sample-code.html">Sample Code</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement History API</a> <ul> <li class="thirdlevel"><a href="data-engagement-history-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-engagement-history-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-engagement-history-retrieve-engagement-list-by-criteria.html">Retrieve Engagement List by Criteria</a></li> <li class="thirdlevel"><a href="data-engagement-history-sample-code.html">Sample Code</a></li> <li class="thirdlevel"><a href="data-engagement-history-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Operational Real-time API</a> <ul> <li class="thirdlevel"><a href="data-operational-realtime-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-operational-realtime-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-operational-realtime-queue-health.html">Queue Health</a></li> <li class="thirdlevel"><a href="data-operational-realtime-engagement-activity.html">Engagement Activity</a></li> <li class="thirdlevel"><a href="data-operational-realtime-agent-activity.html">Agent Activity</a></li> <li class="thirdlevel"><a href="data-operational-realtime-current-queue-state.html">Current Queue State</a></li> <li class="thirdlevel"><a href="data-operational-realtime-sla-histogram.html">SLA Histogram</a></li> <li class="thirdlevel"><a href="data-operational-realtime-sample-code.html">Sample Code</a></li> </ul> </li> </ul> <li> <a href="#">LiveEngage Tag</a> <ul> <li class="subfolders"> <a href="#">LE Tag Events</a> <ul> <li class="thirdlevel"><a href="lp-tag-tag-events-overview.html">Overview</a></li> <li class="thirdlevel"><a href="lp-tag-tag-events-how.html">How to use these Events</a></li> <li class="thirdlevel"><a href="lp-tag-tag-events-events.html">Events</a></li> <li class="thirdlevel"><a href="lp-tag-visitor-flow.html">Visitor Flow Events</a></li> <li class="thirdlevel"><a href="lp-tag-engagement.html">Engagement Events</a></li> <li class="thirdlevel"><a href="lp-tag-engagement-window.html">Engagement Window Events</a></li> </ul> </li> </ul> <li> <a href="#">Messaging Window API</a> <ul> <li class="subfolders"> <a href="#">Introduction</a> <ul> <li class="thirdlevel"><a href="consumer-interation-index.html">Home</a></li> <li class="thirdlevel"><a href="consumer-int-protocol-overview.html">Protocol Overview</a></li> <li class="thirdlevel"><a href="consumer-int-getting-started.html">Getting Started</a></li> </ul> </li> <li class="subfolders"> <a href="#">Tutorials</a> <ul> <li class="thirdlevel"><a href="consumer-int-get-msg.html">Get Messages</a></li> <li class="thirdlevel"><a href="consumer-int-conversation-md.html">Conversation Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-readaccept-events.html">Read/Accept events</a></li> <li class="thirdlevel"><a href="consumer-int-authentication.html">Authentication</a></li> <li class="thirdlevel"><a href="consumer-int-agent-profile.html">Agent Profile</a></li> <li class="thirdlevel"><a href="consumer-int-post-survey.html">Post Conversation Survey</a></li> <li class="thirdlevel"><a href="consumer-int-client-props.html">Client Properties</a></li> <li class="thirdlevel"><a href="consumer-int-no-headers.html">Avoid Webqasocket Headers</a></li> </ul> </li> <li class="subfolders"> <a href="#">Samples</a> <ul> <li class="thirdlevel"><a href="consumer-int-js-sample.html">JavaScript Messenger</a></li> </ul> </li> <li class="subfolders"> <a href="#">API Reference</a> <ul> <li class="thirdlevel"><a href="consumer-int-api-reference.html">Overview</a></li> <li class="thirdlevel"><a href="consumer-int-msg-reqs.html">Request Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-resps.html">Response Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-notifications.html">Notification Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-req-conv.html">New Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-close-conv.html">Close Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-conv-ttr.html">Urgent Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-csat-conv.html">Update CSAT</a></li> <li class="thirdlevel"><a href="consumer-int-msg-sub-conv.html">Subscribe Conversations Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-msg-unsub-conv.html">Unsubscribe Conversations Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-msg-text-cont.html">Publish Content</a></li> <li class="thirdlevel"><a href="consumer-int-msg-sub-events.html">Subscribe Conversation Content</a></li> <li class="thirdlevel"><a href="consumer-int-msg-init-con.html">Browser Init Connection</a></li> </ul> </li> </ul> <!-- if you aren't using the accordion, uncomment this block: <p class="external"> <a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a> </p> --> </li> </ul> </div> <!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.--> <script>$("li.active").parents('li').toggleClass("active");</script> <!-- Content Column --> <div class="col-md-9"> <div class="post-header"> <h1 class="post-title-main">Click</h1> </div> <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-96175782-1', 'auto'); ga('send', 'pageview'); </script> <div class="post-content"> <p>This method simulates a mouse click on an engagement. For example, a virtual agent can programmatically start the conversation flow without knowing where in the DOM the engagement is. The method can receive information about the consumer’s actions that lead to the “click”. This information is displayed as an Automatic Message to both agent and consumer in the conversation window once the consumer is connected to an agent.</p> <p><strong>Syntax</strong></p> <p><code class="highlighter-rouge">lpTag.taglets.rendererStub.click(engagementId);</code></p> <p><strong>Parameters</strong></p> <table> <thead> <tr> <th style="text-align: left">Name</th> <th style="text-align: left">Description</th> <th style="text-align: left">Type/Value</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">engagementId</td> <td style="text-align: left">The ID of the engagement on which to simulate a mouse click.</td> <td style="text-align: left">ALPHA_NUMERIC</td> </tr> <tr> <td style="text-align: left">options</td> <td style="text-align: left">[Optional] additional options to pass to this method.</td> <td style="text-align: left">Object</td> </tr> </tbody> </table> <p><strong>Options Object Properties</strong></p> <table> <thead> <tr> <th style="text-align: left">Name</th> <th style="text-align: left">Description</th> <th style="text-align: left">Type/Value</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">preChatLines</td> <td style="text-align: left">An array of strings that can be used to pass information about the consumer’s actions that lead to the conversation. The sent data is presented as an Automatic Message to both agent and consumer in the conversation window once the consumer is connected to an agent. <br /> Example: <br /> <code class="highlighter-rouge"><span class="p">{</span></code> <br /> <code class="highlighter-rouge">preChatLines: [</code> <br /> <code class="highlighter-rouge">"The assigned agent will help you with the last question you asked the Virtual Agent \"If I sign up today can I do a 12 month contract instead of 24?\""</code> <br /> <code class="highlighter-rouge">]</code> <br /> <code class="highlighter-rouge">}</code></td> <td style="text-align: left">ARRAY</td> </tr> </tbody> </table> <p><em>Example</em></p> <div class="highlighter-rouge"><pre class="highlight"><code>if(lpTag &amp;&amp; lpTag.taglets &amp;&amp; lpTag.taglets.rendererStub){ var clicked = lpTag.taglets.rendererStub.click(12356454, {preChatLines: ["The assigned agent will help you with the last question you asked the Virtual Agent \"If I sign up today can I do a 12 month contract instead of 24?\""]}); } </code></pre> </div> <p><strong>Return Value</strong></p> <p>The method returns a boolean value: <strong>True</strong> if an engagement was found and clicked; <strong>false</strong> if not.</p> <div class="tags"> </div> </div> <hr class="shaded"/> <footer> <div class="row"> <div class="col-lg-12 footer"> &copy;2017 LivePerson. All rights reserved.<br />This documentation is subject to change without notice.<br /> Site last generated: Apr 6, 2017 <br /> <p><img src="img/company_logo.png" alt="Company logo"/></p> </div> </div> </footer> </div> <!-- /.row --> </div> <!-- /.container --> </div> </body> </html>
LivePersonInc/dev-hub
content_ga4/trigger-click.html
HTML
mit
169,210
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>React Suite dist test</title> </head> <body> <iframe src="./default.html" ></iframe> <iframe src="./dark.html"></iframe> </body> </html>
suitejs/suite
test/dist-test/index.html
HTML
mit
346
{% extends "base.html" %} {% block container %} <div id="wiki_title">{{ title }}</div> <div class="pdf"> <embed src="/f/{{ uid }}" height="800" width="700" > </div> <style type="text/css"> .pdf{ margin: 0px; text-align: center; } </style> {% endblock %}
phyng/simpleshare
templates/pdf.html
HTML
mit
287
<!DOCTYPE html> <html> <head> <base target="_blank"> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>ÄÐ×°</title> <style type="text/css"> body{background:#EEE9E3;} a:link {text-decoration:none;} .buju{width:980px;margin:0 auto;background:#FFFFFF;padding:10px 8px;margin-bottom:20px;border:1px solid #cccccc;} .head{width:960px;height:60px;margin:0 auto;} .head h2{width:240px;height:60px;display:inline;font-family:"΢ÈíÑźÚ",sans-serif;font-size:30px;color:#C40000;font-weight:bold;line-height:60px;margin-left:50px;} .search{width:600px;height:40px;float:right;margin-top:20px;} .input{height:29px;width:450px;line-height:29px;font-size:14px;border:2px solid #C40000;padding-left:8px;margin-right:-10px;} .button{height:35px;width:90px;line-height:29px;cursor:pointer;font-size:16px;color:white;background:#C40000;border:none;} .body{width:964px;height:560px;margin-top:40px;} .name{width:964px;height:30px;} .name ul{width:962px;list-style-type:none;margin:0;padding:0;} .name ul li{float:left;width:160px;line-height:30px;text-align:center;} .name ul li a{display:inline-block;width:100%;height:100%;color:#000000;} .name ul li a:hover{color:#FFFFFF;background:#E23F3F;font-weight:bold;} .clear{display:block;height:30px;} .back{width:100%;height:35px;margin-top:150px;} .back a{font-family:"΢ÈíÑźÚ",sans-serif;font-size:24px;color:#000000;font-weight:bold;line-height:35px;} .footer{width:300px;margin:0 auto;font-size:12px;color:#7B7B7B;} </style> </head> <BODY> <div class="buju"> <div class="head"> <h2>ÄÐ ×°</h2> <div class="search"> <form name="form" method="get" action="http://s8.taobao.com/search?" target="_blank" > <input type="text" name="q" autocomplete="off" maxlength="100" class="input"> <button type="submit" class="button">ËÑ Ë÷</button> <input type="hidden" name="pid" value="mm_10054659_3403176_14986812" /> </form> </div> </div> <!-- Í·²¿½áÊø --> <div style="width:960px;border-top:3px solid #e23f3f;margin:25px auto 0;line-height:0;height:0;"></div> <div class="body"> <div style="height:10px;"></div> <div class="name"> <ul> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DEPHiqcB2ArUcQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2ULyFuItUK4DaNWmle4rCMwVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z3FyokviWbyqUTyFz%2FqTBhzIYULNg46oBA%3D">ÆßÆ¥ÀÇ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D4Ky6mvX6tOscQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2a%2FZP%2FvwCGZ6HBMajAjK1gAVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z1XJweZJuKEtb2lmsEa4TYMcSpj5qSCmbA%3D">GXGÄÐ×°</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DB8YxGAaxc1UcQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2bfTU33bDk1zmyBzYSO0LNwVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z2%2BFK8XKhxsOG0Tsv8Qjnc%2BcSpj5qSCmbA%3D">ÂÞÃÉ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DmPa%2BW1JewWUcQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2bfTU33bDk1zrumJQoe%2FxcMVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z2DrytkNmsal4rV%2BkQ0eRGIIYULNg46oBA%3D">Âí¿Ë»ª·Æ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DGyP%2FVf0F7PAcQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2Sp98kLhSYMoQev46Oo1utQVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z1P0LWZf0clfgMbVAQShqAKcSpj5qSCmbA%3D">̫ƽÄñÄÐ×°</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3Dj%2BjbVmoj3%2B8cQipKwQzePDAVflQIoZeppRe%2F8jaAHci5VBFTL4hn2cqeOu5u7NEb7km9mWjOCUYVYAXCaM1hiwbsm%2F%2F30wtbsPloTe%2F76Z2gtJIv4Otksmjb1QvI0NYwcSpj5qSCmbA%3D">ÃÀÌØË¹°îÍþ</a></li> </ul> </div> <div class="clear"></div> <div class="name"> <ul> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DVU4LnozuTeAcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMWma%2FnCiTEsBJ1gyddu7kN9S%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAuuYpYCCq6FEGcTt9qZQ9Wf">Lee</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D54WEVxQa6uAcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMQFncv8QKP8LRitN3%2FurF3xS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAuHUFrIEgZBV%2BlS9Qudr%2Fgj">viishow</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DL9Hpi5lvFgYcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMaz1ULDgxoAlJ1gyddu7kN9S%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAs%2FX1tIkVBgNfRdVGZTln3T">Dickies</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D1HW0%2F%2B10vUAcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMb01c4P90YNj79%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAsKGFAhW95YAO8ISHN1dHdN">¾¢°Ô</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D9jRHxtG7r%2FUcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMTvz8fNsnUBw8sviUM61dt1S%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAv21CMLvvM1GYddban42cwS">¿¨±ö</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D0upRwpJeVZ4cQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMVzXBoijg3Uzxq3IhSJN6GRS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAvAQ%2BJqYHiy5FVuwQ5Jyifg">ÂæÍÕÄÐ×°</a></li> </ul> </div> <div class="clear"></div> <div class="name"> <ul> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DoAhnD8x8MNQcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMYESwees5vZR79%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAvNoVmprmGJxBSW2OHrA6Fe">¾ÅÄÁÍõ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DVs5azJIcKQkcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMYUudQkvXF5K8sviUM61dt1S%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAvoR%2ByKG5xja6cZuLN2UiHB">²¼Ò´«Ëµ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DOxVT9vTPqVwcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMZTRi23dRFBu5x%2BIUlGKNpVS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAtaYrDAOu%2FHH%2FRqKeiwmIC5">matchÂ鼪</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DHNDi4bY3dBUcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMSEE03MwtB1079%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAubsrZcoaWd%2BAZJAi8Ny4Xp">×ôµ¤Å«</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DuTEHNrhOSxccQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMSMPIIRw4%2Fgd5x%2BIUlGKNpVS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAsXzIvVciF0HvnmRFozdGnO">ASOS</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DGTQJhqXi%2FpocQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMc7eOs6nCG7g79%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAtLyELssqU9X8fsMW4%2FiGso">ÑŹ</a></li> </ul> </div> <div class="clear"></div> <div class="name"> <ul> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D6QwWCSpBXi0cQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMRc5bXHZU40%2F1aH1Hk3GeOhS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAt%2FdLNN8ZdznM0x3iVD588M">ÓëÀǹ²Îè</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DTAWY8nfYo%2FEcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMYc5V%2FHunyMBMMgx22UI05ZS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAsL%2BXX9l3xpdZ%2FhLKycbrpX">±¤Ê¨Áú</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DraJekDXHgw8cQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMcox%2FDJMJ%2Fb0lovu%2FCElQOtS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAtHtjxgGEkiXMAjmblm%2FSvu">Playboy»¨»¨¹«×Ó</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D%2F50bAwx4bHkcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMVBKCooSnHjVxq3IhSJN6GRS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAthaXjSd%2Blzid5J%2FfqLBPoa">ɼɼ</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DIqy9lfx0NfAcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMcBD%2BeMEvESdRitN3%2FurF3xS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAuk8g5c8Equ0D6sskpH4xik">ÂæÍÕ¹ú¼Ê</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DUcYbuOipCSgcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMQkvH1BQUPKkxq3IhSJN6GRS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAsp6dBTpOTjePoHp5W8oF%2BZ">ÑŸê¶û</a></li> </ul> </div> <div class="clear"></div> <div class="name"> <ul> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DoAzpeuU%2FnDocQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMVA%2B46m%2BeQfd79%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAtUSw83uZlXZw2xsQVnim%2F%2B">Ê¥µÃÎ÷</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DxjEpMoLwpgIcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMeUY%2BYvHBjoS79%2FTFaMDK6RS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAsdyriYPZpgxHBh5GuYdCs%2B">Levi's</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DZ8yZqSkp6dMcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMeKHdf4keQZtxq3IhSJN6GRS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAv%2BhaY4g%2F4qh9gHjLa9%2Fa2u">¹ÅÀÏöèÓã</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DBrnOvlyhtZUcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMQuq67sNl09dRitN3%2FurF3xS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAu9%2BwqRC3gwVVpObVQCoLJg">deepocean</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3D%2FYET0h1ZdJocQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMfGAUGzMHkcmMMgx22UI05ZS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAv0b1lvehtAbEQljDbRP58k">Éð¹ó</a></li> <li><a href="http://s.click.taobao.com/t?e=m%3D2%26s%3DY9HG7t8Wf3kcQipKwQzePDAVflQIoZepK7Vc7tFgwiFRAdhuF14FMbgUcer4sXPYMMgx22UI05ZS%2F1ZaMdIGXc3gMOVSGhGtO3vaKvmHoAvhkW9jmODeJeEEGCAhpOSN">½ðÀûÀ´</a></li> </ul> </div> <div class="clear"></div> <p class="back" align="center"><a href="/" title="·µ»ØÊ×Ò³">·µ»Ø</a></p> </div> <!-- Ö÷Ìå½áÊø --> </div> <div class="footer">2014-2018 Ycff.com Ììè֪ÃûÉ̼ҵ¼º½</div> <div style="display:none"> <script src="js/tj.js"></script> </div> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"1","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"slide":{"type":"slide","bdImg":"8","bdPos":"right","bdTop":"150.5"}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script> </body> </html>
daniel163/daniel163.github.io
daohang/nanzhuang.html
HTML
mit
9,461
--- theme : name : the-program layout: default --- {% include JB/setup %} {% include themes/the-program/post.html %}
cxx7532706/cxx7532706.github.io
_layouts/post.html
HTML
mit
118
{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}删除标签 - {{ config['ZBLOG_TITLE_SUFFIX'] }}{% endblock %} {% block page_content %} <div class="page-header"> <h1>Delete Tag</h1> </div> <div> <form action="{{ url_for('.delete_tag', name=tag.name) }}" method="post"> <h3>确定要删除'{{ tag.name }}'标签吗?</h3> <button class="btn btn-md btn-danger" type="submit">Delete</button> <a href="{{ url_for('.tags') }}"> <span class="btn btn-md btn-default">Cancel</span> </a> </form> </div> {% endblock %}
Jeffiy/zblog
app/templates/delete_tag.html
HTML
mit
650
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>matrix demo</title> </head> <body> <script src="matrix.js"></script> <script> var arra = [1,2,3,4]; var arrb = ["a","b","c","d"]; var arrc = ["A","B","C","D"]; var arrd = ["α","β","γ","δ"]; var ms = matrix.single(arra,arrb,arrc,function(a,b,c){ return a +"-"+ b +"-"+ c ; // +"-"+ d }); console.log(JSON.stringify(ms)); // reutrn ["1-a-A","1-a-B","1-a-C","1-a-D","1-b-A","1-b-B","1-b-C","1-b-D","1-c-A","1-c-B","1-c-C","1-c-D","1-d-A","1-d-B","1-d-C","1-d-D","2-a-A","2-a-B","2-a-C","2-a-D","2-b-A","2-b-B","2-b-C","2-b-D","2-c-A","2-c-B","2-c-C","2-c-D","2-d-A","2-d-B","2-d-C","2-d-D","3-a-A","3-a-B","3-a-C","3-a-D","3-b-A","3-b-B","3-b-C","3-b-D","3-c-A","3-c-B","3-c-C","3-c-D","3-d-A","3-d-B","3-d-C","3-d-D","4-a-A","4-a-B","4-a-C","4-a-D","4-b-A","4-b-B","4-b-C","4-b-D","4-c-A","4-c-B","4-c-C","4-c-D","4-d-A","4-d-B","4-d-C","4-d-D"] var mm = matrix.multi(arra,arrb,arrc,function(a,b,c){ return a +"-"+ b +"-"+ c ; // +"-"+ d }); console.log(JSON.stringify(mm)) // return [[["1-a-A","1-a-B","1-a-C","1-a-D"],["1-b-A","1-b-B","1-b-C","1-b-D"],["1-c-A","1-c-B","1-c-C","1-c-D"],["1-d-A","1-d-B","1-d-C","1-d-D"]],[["2-a-A","2-a-B","2-a-C","2-a-D"],["2-b-A","2-b-B","2-b-C","2-b-D"],["2-c-A","2-c-B","2-c-C","2-c-D"],["2-d-A","2-d-B","2-d-C","2-d-D"]],[["3-a-A","3-a-B","3-a-C","3-a-D"],["3-b-A","3-b-B","3-b-C","3-b-D"],["3-c-A","3-c-B","3-c-C","3-c-D"],["3-d-A","3-d-B","3-d-C","3-d-D"]],[["4-a-A","4-a-B","4-a-C","4-a-D"],["4-b-A","4-b-B","4-b-C","4-b-D"],["4-c-A","4-c-B","4-c-C","4-c-D"],["4-d-A","4-d-B","4-d-C","4-d-D"]]] var m2sData = [ [ ["1-a-A", "1-a-B", "1-a-C", "1-a-D"], ["1-b-A", "1-b-B", "1-b-C", "1-b-D"], ["1-c-A", "1-c-B", "1-c-C", "1-c-D"], ["1-d-A", "1-d-B", "1-d-C", "1-d-D"] ], [ ["2-a-A", "2-a-B", "2-a-C", "2-a-D"], ["2-b-A", "2-b-B", "2-b-C", "2-b-D"], ["2-c-A", "2-c-B", "2-c-C", "2-c-D"], ["2-d-A", "2-d-B", "2-d-C", "2-d-D"] ], [ ["3-a-A", "3-a-B", "3-a-C", "3-a-D"], ["3-b-A", "3-b-B", "3-b-C", "3-b-D"], ["3-c-A", "3-c-B", "3-c-C", "3-c-D"], ["3-d-A", "3-d-B", "3-d-C", "3-d-D"] ], [ ["4-a-A", "4-a-B", "4-a-C", "4-a-D"], ["4-b-A", "4-b-B", "4-b-C", "4-b-D"], ["4-c-A", "4-c-B", "4-c-C", "4-c-D"], ["4-d-A", "4-d-B", "4-d-C", "4-d-D"] ] ]; var m2s = matrix.m2s(m2sData); console.log(JSON.stringify(m2s)); // return ["1-a-A","1-a-B","1-a-C","1-a-D","1-b-A","1-b-B","1-b-C","1-b-D","1-c-A","1-c-B","1-c-C","1-c-D","1-d-A","1-d-B","1-d-C","1-d-D","2-a-A","2-a-B","2-a-C","2-a-D","2-b-A","2-b-B","2-b-C","2-b-D","2-c-A","2-c-B","2-c-C","2-c-D","2-d-A","2-d-B","2-d-C","2-d-D","3-a-A","3-a-B","3-a-C","3-a-D","3-b-A","3-b-B","3-b-C","3-b-D","3-c-A","3-c-B","3-c-C","3-c-D","3-d-A","3-d-B","3-d-C","3-d-D","4-a-A","4-a-B","4-a-C","4-a-D","4-b-A","4-b-B","4-b-C","4-b-D","4-c-A","4-c-B","4-c-C","4-c-D","4-d-A","4-d-B","4-d-C","4-d-D"] matrix.walk(true,m2sData,function(d){ console.log("The current data is:"+ d); }); // The current data is:1-a-A // The current data is:1-a-B console.log( matrix.depth(m2sData)); </script> </body> </html>
icai/ac-matrix
demo.html
HTML
mit
3,118
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>jonathanchan.me Tests</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> {{content-for "head"}} {{content-for "test-head"}} <link rel="stylesheet" href="{{rootURL}}assets/vendor.css"> <link rel="stylesheet" href="{{rootURL}}assets/jonathanchan.me.css"> <link rel="stylesheet" href="{{rootURL}}assets/test-support.css"> {{content-for "head-footer"}} {{content-for "test-head-footer"}} </head> <body> {{content-for "body"}} {{content-for "test-body"}} <script src="/testem.js" integrity=""></script> <script src="{{rootURL}}assets/vendor.js"></script> <script src="{{rootURL}}assets/test-support.js"></script> <script src="{{rootURL}}assets/jonathanchan.me.js"></script> <script src="{{rootURL}}assets/tests.js"></script> {{content-for "body-footer"}} {{content-for "test-body-footer"}} </body> </html>
NathanJang/nathanjang.github.io
tests/index.html
HTML
mit
1,075
<!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 Dec 17 20:48:30 PST 2014 --> <title>Uses of Interface javax.swing.Renderer (Java Platform SE 8 )</title> <meta name="date" content="2014-12-17"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface javax.swing.Renderer (Java Platform SE 8 )"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../javax/swing/Renderer.html" title="interface in javax.swing">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?javax/swing/class-use/Renderer.html" target="_top">Frames</a></li> <li><a href="Renderer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Interface javax.swing.Renderer" class="title">Uses of Interface<br>javax.swing.Renderer</h2> </div> <div class="classUseContainer">No usage of javax.swing.Renderer</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="../../../javax/swing/Renderer.html" title="interface in javax.swing">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><strong>Java&trade;&nbsp;Platform<br>Standard&nbsp;Ed.&nbsp;8</strong></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?javax/swing/class-use/Renderer.html" target="_top">Frames</a></li> <li><a href="Renderer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://download.oracle.com/javase/8/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../legal/cpyr.html">Copyright</a> &#x00a9; 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p> </body> </html>
fbiville/annotation-processing-ftw
doc/java/jdk8/javax/swing/class-use/Renderer.html
HTML
mit
4,981
<!DOCTYPE html> <html > <head> <meta charset="UTF-8"> <title>Relatable articles</title> <link rel="stylesheet" href="css/normalize.css"> <link rel='stylesheet prefetch' href='https://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.css'> <link rel="stylesheet" href="css/style.css"> </head> <body> <!-- <script> window.fbAsyncInit = function() { FB.init({ appId : '915209068547528', xfbml : true, version : 'v2.5' }); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> --> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=915209068547528"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s) [0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <!-- Fixed navbar --> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <div class="small-logo-container"> <a class="small-logo" href="#">Introspection</a> </div> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav navbar-right"> <li class="active"><a href="#">Home</a></li> <li><a href="about.html">About</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> <div class="container-fluid big-logo-row"> <div class="container"> <div class="row"> <div class="col-xs-12 big-logo-container"> <div class="big-logo"> <h1>Introspection</h1> <h2>Sharing discussions, stories, lessons, and insights in a relatable way.</h2> </div> </div><!--/.col-xs-12 --> </div><!--/.row --> </div><!--/.container --> </div><!--/.container-fluid --> <div class="container"> <div class="row"> <div class="col-lg-5 col-md-6 col-sm-8"> <h2></h2> </div> </div> <div class="row"> <!-- <div class="col-sm-8 col-md-8 col-sm-offset-2 col-md-offset-2">--> <div class="col-sm-6 col-md-6 col-sm-offset-3 col-md-offset-3"> <div class="thumbnail"> <img src="" alt=""> <div class="caption"> <row> <div class="span4"> <div class="clearfix content-heading"> <img class="pull-left img-circle" src="http://placehold.it/32x32"/> <h5 class="pull-left"><div class="card-author">Zain Manji</div></h5> <h6 class="pull-left"><div class="card-time">&#8226; 8 min read</div></h6> </div> </div> </row> <row> <p></p> </row> <img src="img/post-bg.jpg" class="img-responsive" alt="Responsive image"> <h3>Mental Toughness</h3> <p>Ever wondered what makes someone a good leader, a good athlete, or a good competitor? Why do some people accomplish their goals while others fail? Why are some people more successful than others...</p> <p><a href="post.html" class="btn btn-primary" role="button">Read post</a> <a class="btn fb-share-button" data-href="http://zainmanji.github.io/ThoughtArticles/" data-layout="button_count"></a> <a href="https://twitter.com/share" class="btn twitter-share-button" data-url="http://zainmanji.github.io/ThoughtArticles/" data-via="ZainManji" data-hashtags="JustAThought">Tweet</a> </p> </div> </div> </div> <!-- <div class="col-sm-6 col-md-6"> <div class="thumbnail"> <img src="" alt=""> <div class="caption"> <row> <div class="span4"> <div class="clearfix content-heading"> <img class="pull-left img-circle" src="http://placehold.it/32x32"/> <h5 class="pull-left"><div class="card-author">Zain Manji</div></h5> <h6 class="pull-left"><div class="card-time">&#8226; 8 min read</div></h6> </div> </div> </row> <row> <p></p> </row> <img src="img/post-bg.jpg" class="img-responsive" alt="Responsive image"> <h3>Mental Toughness</h3> <p>Ever wondered what makes someone a good leader, a good athlete, or a good competitor? Why do some people accomplish their goals while others fail? Why are some people more successful than others?</p> <p><a href="post.html" class="btn btn-primary" role="button">Read post</a> <a class="btn fb-share-button" data-href="http://zainmanji.github.io/ThoughtArticles/" data-layout="button_count"></a> <a href="https://twitter.com/share" class="btn twitter-share-button" data-url="http://zainmanji.github.io/ThoughtArticles/" data-via="ZainManji" data-hashtags="JustAThought">Tweet</a></p> </div> </div> </div> <div class="col-sm-6 col-md-6"> <div class="thumbnail"> <img src="" alt=""> <div class="caption"> <row> <div class="span4"> <div class="clearfix content-heading"> <img class="pull-left img-circle" src="http://placehold.it/32x32"/> <h5 class="pull-left"><div class="card-author">Zain Manji</div></h5> <h6 class="pull-left"><div class="card-time">&#8226; 8 min read</div></h6> </div> </div> </row> <row> <p></p> </row> <img src="img/post-bg.jpg" class="img-responsive" alt="Responsive image"> <h3>Mental Toughness</h3> <p>Ever wondered what makes someone a good leader, a good athlete, or a good competitor? Why do some people accomplish their goals while others fail? Why are some people more successful than others?</p> <p><a href="post.html" class="btn btn-primary" role="button">Read post</a> <a class="btn fb-share-button" data-href="http://zainmanji.github.io/ThoughtArticles/" data-layout="button_count"></a> <a href="https://twitter.com/share" class="btn twitter-share-button" data-url="http://zainmanji.github.io/ThoughtArticles/" data-via="ZainManji" data-hashtags="JustAThought">Tweet</a></p> </div> </div> </div> <div class="col-sm-6 col-md-6"> <div class="thumbnail"> <img src="" alt=""> <div class="caption"> <row> <div class="span4"> <div class="clearfix content-heading"> <img class="pull-left img-circle" src="http://placehold.it/32x32"/> <h5 class="pull-left"><div class="card-author">Zain Manji</div></h5> <h6 class="pull-left"><div class="card-time">&#8226; 8 min read</div></h6> </div> </div> </row> <row> <p></p> </row> <img src="img/post-bg.jpg" class="img-responsive" alt="Responsive image"> <h3>Mental Toughness</h3> <p>Ever wondered what makes someone a good leader, a good athlete, or a good competitor? Why do some people accomplish their goals while others fail? Why are some people more successful than others?</p> <p><a href="post.html" class="btn btn-primary" role="button">Read post</a> <a class="btn fb-share-button" data-href="http://zainmanji.github.io/ThoughtArticles/" data-layout="button_count"></a> <a href="https://twitter.com/share" class="btn twitter-share-button" data-url="http://google.com" data-via="ZainManji" data-hashtags="JustAThought">Tweet</a></p> </div> </div> </div> --> </div> <hr> <!-- Footer --> <footer> <div class="row"> <div class="col-lg-12"> <p>Website developed by Zeen Labs &#8226; Copyright &copy; Relatable 2016</p> </div> <!-- /.col-lg-12 --> </div> <!-- /.row --> </footer> </div><!--/.container --> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src='http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js'></script> <script src="js/index.js"></script> </body> </html>
ZainManji/ThoughtArticles
index.html
HTML
mit
10,055
<!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>V8 API Reference Guide for node.js v6.10.3: v8::Uint32Array Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <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">V8 API Reference Guide for node.js v6.10.3 </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="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="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1Uint32Array.html">Uint32Array</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-static-methods">Static Public Member Functions</a> &#124; <a href="classv8_1_1Uint32Array-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::Uint32Array Class Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="v8_8h_source.html">v8.h</a>&gt;</code></p> <div class="dynheader"> Inheritance diagram for v8::Uint32Array:</div> <div class="dyncontent"> <div class="center"><img src="classv8_1_1Uint32Array__inherit__graph.png" border="0" usemap="#v8_1_1Uint32Array_inherit__map" alt="Inheritance graph"/></div> <map name="v8_1_1Uint32Array_inherit__map" id="v8_1_1Uint32Array_inherit__map"> </map> <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div> <div class="dynheader"> Collaboration diagram for v8::Uint32Array:</div> <div class="dyncontent"> <div class="center"><img src="classv8_1_1Uint32Array__coll__graph.png" border="0" usemap="#v8_1_1Uint32Array_coll__map" alt="Collaboration graph"/></div> <map name="v8_1_1Uint32Array_coll__map" id="v8_1_1Uint32Array_coll__map"> </map> <center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> Static Public Member Functions</h2></td></tr> <tr class="memitem:ab8dbef5ff846fc6cc9381bc29f744b5b"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab8dbef5ff846fc6cc9381bc29f744b5b"></a> static <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Uint32Array.html">Uint32Array</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>New</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1ArrayBuffer.html">ArrayBuffer</a> &gt; array_buffer, size_t byte_offset, size_t length)</td></tr> <tr class="separator:ab8dbef5ff846fc6cc9381bc29f744b5b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a03da1a9371316818a926d2b8231ac33a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a03da1a9371316818a926d2b8231ac33a"></a> static <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Uint32Array.html">Uint32Array</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>New</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1SharedArrayBuffer.html">SharedArrayBuffer</a> &gt; shared_array_buffer, size_t byte_offset, size_t length)</td></tr> <tr class="separator:a03da1a9371316818a926d2b8231ac33a"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad40e645ee0abac443dba759ee861de49"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad40e645ee0abac443dba759ee861de49"></a> static V8_INLINE <a class="el" href="classv8_1_1Uint32Array.html">Uint32Array</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>Cast</b> (<a class="el" href="classv8_1_1Value.html">Value</a> *obj)</td></tr> <tr class="separator:ad40e645ee0abac443dba759ee861de49"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_methods_classv8_1_1TypedArray"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classv8_1_1TypedArray')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classv8_1_1TypedArray.html">v8::TypedArray</a></td></tr> <tr class="memitem:ac3f23cc8171d3be0815df7731140382f inherit pub_static_methods_classv8_1_1TypedArray"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac3f23cc8171d3be0815df7731140382f"></a> static V8_INLINE <a class="el" href="classv8_1_1TypedArray.html">TypedArray</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>Cast</b> (<a class="el" href="classv8_1_1Value.html">Value</a> *obj)</td></tr> <tr class="separator:ac3f23cc8171d3be0815df7731140382f inherit pub_static_methods_classv8_1_1TypedArray"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_methods_classv8_1_1ArrayBufferView"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classv8_1_1ArrayBufferView')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classv8_1_1ArrayBufferView.html">v8::ArrayBufferView</a></td></tr> <tr class="memitem:a84db315fe904ca1421c0e8e3f615cccb inherit pub_static_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a84db315fe904ca1421c0e8e3f615cccb"></a> static V8_INLINE <a class="el" href="classv8_1_1ArrayBufferView.html">ArrayBufferView</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>Cast</b> (<a class="el" href="classv8_1_1Value.html">Value</a> *obj)</td></tr> <tr class="separator:a84db315fe904ca1421c0e8e3f615cccb inherit pub_static_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_methods_classv8_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classv8_1_1Object')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classv8_1_1Object.html">v8::Object</a></td></tr> <tr class="memitem:a324a71142f621a32bfe5738648718370 inherit pub_static_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">static V8_INLINE int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a324a71142f621a32bfe5738648718370">InternalFieldCount</a> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt; &amp;object)</td></tr> <tr class="separator:a324a71142f621a32bfe5738648718370 inherit pub_static_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a65b5a3dc93c0774594f8b0f2ab5481c8 inherit pub_static_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">static V8_INLINE void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a65b5a3dc93c0774594f8b0f2ab5481c8">GetAlignedPointerFromInternalField</a> (const <a class="el" href="classv8_1_1PersistentBase.html">PersistentBase</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt; &amp;object, int index)</td></tr> <tr class="separator:a65b5a3dc93c0774594f8b0f2ab5481c8 inherit pub_static_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0c397b055e2f5050c6ffc33970669c4d inherit pub_static_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c397b055e2f5050c6ffc33970669c4d"></a> static <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>New</b> (<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate)</td></tr> <tr class="separator:a0c397b055e2f5050c6ffc33970669c4d inherit pub_static_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1f9ac46d0b164197318ce81dc0ec1343 inherit pub_static_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f9ac46d0b164197318ce81dc0ec1343"></a> static V8_INLINE <a class="el" href="classv8_1_1Object.html">Object</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>Cast</b> (<a class="el" href="classv8_1_1Value.html">Value</a> *obj)</td></tr> <tr class="separator:a1f9ac46d0b164197318ce81dc0ec1343 inherit pub_static_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_methods_classv8_1_1Value"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classv8_1_1Value')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classv8_1_1Value.html">v8::Value</a></td></tr> <tr class="memitem:ae5aa9b54ebed55819c3a4b2a3eb5fe12 inherit pub_static_methods_classv8_1_1Value"><td class="memTemplParams" colspan="2"><a class="anchor" id="ae5aa9b54ebed55819c3a4b2a3eb5fe12"></a> template&lt;class T &gt; </td></tr> <tr class="memitem:ae5aa9b54ebed55819c3a4b2a3eb5fe12 inherit pub_static_methods_classv8_1_1Value"><td class="memTemplItemLeft" align="right" valign="top">static V8_INLINE <a class="el" href="classv8_1_1Value.html">Value</a> *&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Cast</b> (T *value)</td></tr> <tr class="separator:ae5aa9b54ebed55819c3a4b2a3eb5fe12 inherit pub_static_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pub_methods_classv8_1_1TypedArray"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1TypedArray')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1TypedArray.html">v8::TypedArray</a></td></tr> <tr class="memitem:abb1047225d53d960c0da9c9f83cd7042 inherit pub_methods_classv8_1_1TypedArray"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1TypedArray.html#abb1047225d53d960c0da9c9f83cd7042">Length</a> ()</td></tr> <tr class="separator:abb1047225d53d960c0da9c9f83cd7042 inherit pub_methods_classv8_1_1TypedArray"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classv8_1_1ArrayBufferView"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1ArrayBufferView')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1ArrayBufferView.html">v8::ArrayBufferView</a></td></tr> <tr class="memitem:a2ceba3908fbf98ecc81702083127b046 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1ArrayBuffer.html">ArrayBuffer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1ArrayBufferView.html#a2ceba3908fbf98ecc81702083127b046">Buffer</a> ()</td></tr> <tr class="separator:a2ceba3908fbf98ecc81702083127b046 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4739a31269f5ebc5b88a708b9429c688 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1ArrayBufferView.html#a4739a31269f5ebc5b88a708b9429c688">ByteOffset</a> ()</td></tr> <tr class="separator:a4739a31269f5ebc5b88a708b9429c688 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9fc7563c97e0b639a6c0a3274995bb3c inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1ArrayBufferView.html#a9fc7563c97e0b639a6c0a3274995bb3c">ByteLength</a> ()</td></tr> <tr class="separator:a9fc7563c97e0b639a6c0a3274995bb3c inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa728e762ed43194f3a5e05e792fff64e inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1ArrayBufferView.html#aa728e762ed43194f3a5e05e792fff64e">CopyContents</a> (void *dest, size_t byte_length)</td></tr> <tr class="separator:aa728e762ed43194f3a5e05e792fff64e inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab3a7de283cab4140632d190a1e3eef22 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1ArrayBufferView.html#ab3a7de283cab4140632d190a1e3eef22">HasBuffer</a> () const </td></tr> <tr class="separator:ab3a7de283cab4140632d190a1e3eef22 inherit pub_methods_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classv8_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1Object')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1Object.html">v8::Object</a></td></tr> <tr class="memitem:a86333122230b703cabfb08d8a7d54a58 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a86333122230b703cabfb08d8a7d54a58"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool <a class="el" href="classv8_1_1Set.html">Set</a>(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value))</td></tr> <tr class="separator:a86333122230b703cabfb08d8a7d54a58 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac5840fc655bea7b2b55a4b49338360ae inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac5840fc655bea7b2b55a4b49338360ae"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Set</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:ac5840fc655bea7b2b55a4b49338360ae inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0c2305335e71c88d245dd1aa0060a2de inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0c2305335e71c88d245dd1aa0060a2de"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool <a class="el" href="classv8_1_1Set.html">Set</a>(uint32_t index, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value))</td></tr> <tr class="separator:a0c2305335e71c88d245dd1aa0060a2de inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ace0cbcf5659a82106601d07b3e6fa2be inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ace0cbcf5659a82106601d07b3e6fa2be"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Set</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:ace0cbcf5659a82106601d07b3e6fa2be inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae334696b1e57ea2b333c4da48dd37895 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae334696b1e57ea2b333c4da48dd37895"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>CreateDataProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:ae334696b1e57ea2b333c4da48dd37895 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aec3a99813837c0bc6444c59f8e5ca22a inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aec3a99813837c0bc6444c59f8e5ca22a"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>CreateDataProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:aec3a99813837c0bc6444c59f8e5ca22a inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a65f44f92b7ee9d479ce6b3ebb9ac8d4b inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a65f44f92b7ee9d479ce6b3ebb9ac8d4b"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>DefineOwnProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value, PropertyAttribute attributes=None)</td></tr> <tr class="separator:a65f44f92b7ee9d479ce6b3ebb9ac8d4b inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9b395d8c790161187549bd2ed7c4ed71 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9b395d8c790161187549bd2ed7c4ed71"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use CreateDataProperty / DefineOwnProperty&quot;, bool ForceSet(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value, PropertyAttribute attribs=None))</td></tr> <tr class="separator:a9b395d8c790161187549bd2ed7c4ed71 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac68c9dad55543a27ff82cbb34722f7c0 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac68c9dad55543a27ff82cbb34722f7c0"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use CreateDataProperty / DefineOwnProperty&quot;, Maybe&lt; bool &gt; ForceSet(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value, PropertyAttribute attribs=None))</td></tr> <tr class="separator:ac68c9dad55543a27ff82cbb34722f7c0 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a15c40cda73a1927bef406b85032d5564 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a15c40cda73a1927bef406b85032d5564"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; Get(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key))</td></tr> <tr class="separator:a15c40cda73a1927bef406b85032d5564 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a239c03bb250cd6bf583ca60f72e18918 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a239c03bb250cd6bf583ca60f72e18918"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Get</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key)</td></tr> <tr class="separator:a239c03bb250cd6bf583ca60f72e18918 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac27f1b680e53d4c9c879aac3c7380202 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac27f1b680e53d4c9c879aac3c7380202"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; Get(uint32_t index))</td></tr> <tr class="separator:ac27f1b680e53d4c9c879aac3c7380202 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac1fcfcfedaf66775c46b53cb1804b949 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac1fcfcfedaf66775c46b53cb1804b949"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Get</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index)</td></tr> <tr class="separator:ac1fcfcfedaf66775c46b53cb1804b949 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa45eb69321fa3eb1037b058b69ecfec1 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aa45eb69321fa3eb1037b058b69ecfec1">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, PropertyAttribute GetPropertyAttributes(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key))</td></tr> <tr class="separator:aa45eb69321fa3eb1037b058b69ecfec1 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae5c97a596bcb634c50605a574358a9c6 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae5c97a596bcb634c50605a574358a9c6"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; PropertyAttribute &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetPropertyAttributes</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key)</td></tr> <tr class="separator:ae5c97a596bcb634c50605a574358a9c6 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad914d35a19347cd1afdeea4e215f4999 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ad914d35a19347cd1afdeea4e215f4999">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; GetOwnPropertyDescriptor(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:ad914d35a19347cd1afdeea4e215f4999 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a17fd31922f11c634183c59c0eb08cf65 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a17fd31922f11c634183c59c0eb08cf65"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetOwnPropertyDescriptor</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key)</td></tr> <tr class="separator:a17fd31922f11c634183c59c0eb08cf65 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adbaa619d9f0588470c1e88532949da65 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adbaa619d9f0588470c1e88532949da65"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool Has(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key))</td></tr> <tr class="separator:adbaa619d9f0588470c1e88532949da65 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a57d4819c2cc13715ed22dd23cdc84d7c inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a57d4819c2cc13715ed22dd23cdc84d7c"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Has</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key)</td></tr> <tr class="separator:a57d4819c2cc13715ed22dd23cdc84d7c inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad76afc75f558f317a80b4f4b83c5cd53 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad76afc75f558f317a80b4f4b83c5cd53"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool Delete(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key))</td></tr> <tr class="separator:ad76afc75f558f317a80b4f4b83c5cd53 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab0626985ff54cbeeccef5e50656e5481 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab0626985ff54cbeeccef5e50656e5481"></a> <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Delete</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; key)</td></tr> <tr class="separator:ab0626985ff54cbeeccef5e50656e5481 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3ce6e6be77b337272e954a715e2e78de inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3ce6e6be77b337272e954a715e2e78de"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, bool Has(uint32_t index))</td></tr> <tr class="separator:a3ce6e6be77b337272e954a715e2e78de inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adfbff82d3a45a69415ae99013a654daa inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adfbff82d3a45a69415ae99013a654daa"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Has</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index)</td></tr> <tr class="separator:adfbff82d3a45a69415ae99013a654daa inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac0f010485bb637ce7b69141c695febc6 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac0f010485bb637ce7b69141c695febc6"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, bool Delete(uint32_t index))</td></tr> <tr class="separator:ac0f010485bb637ce7b69141c695febc6 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aabd005ef33ff69c15562d5296f4982d0 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aabd005ef33ff69c15562d5296f4982d0"></a> <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Delete</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index)</td></tr> <tr class="separator:aabd005ef33ff69c15562d5296f4982d0 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a808d6c708acf41c1c9122d4b29617ae1 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a808d6c708acf41c1c9122d4b29617ae1"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, bool SetAccessor(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; name, <a class="el" href="namespacev8.html#a722613c87061708a4f1aa050d095f868">AccessorGetterCallback</a> getter, AccessorSetterCallback setter=0, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; data=<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;(), <a class="el" href="namespacev8.html#a31d8355cb043d7d2dda3f4a52760b64e">AccessControl</a> settings=DEFAULT, PropertyAttribute attribute=None))</td></tr> <tr class="separator:a808d6c708acf41c1c9122d4b29617ae1 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad23d8d79b60a8bb24bf6f631b71bcd42 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad23d8d79b60a8bb24bf6f631b71bcd42"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, bool SetAccessor(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; data=<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;(), <a class="el" href="namespacev8.html#a31d8355cb043d7d2dda3f4a52760b64e">AccessControl</a> settings=DEFAULT, PropertyAttribute attribute=None))</td></tr> <tr class="separator:ad23d8d79b60a8bb24bf6f631b71bcd42 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6ab0b45aa38debc2cc9877ae3b232e55 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6ab0b45aa38debc2cc9877ae3b232e55"></a> <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>SetAccessor</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; name, AccessorNameGetterCallback getter, AccessorNameSetterCallback setter=0, <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; data=<a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;(), <a class="el" href="namespacev8.html#a31d8355cb043d7d2dda3f4a52760b64e">AccessControl</a> settings=DEFAULT, PropertyAttribute attribute=None)</td></tr> <tr class="separator:a6ab0b45aa38debc2cc9877ae3b232e55 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a284911d760fc853d81adf98c242bc453 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a284911d760fc853d81adf98c242bc453"></a> void&#160;</td><td class="memItemRight" valign="bottom"><b>SetAccessorProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; name, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Function.html">Function</a> &gt; getter, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Function.html">Function</a> &gt; setter=<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Function.html">Function</a> &gt;(), PropertyAttribute attribute=None, <a class="el" href="namespacev8.html#a31d8355cb043d7d2dda3f4a52760b64e">AccessControl</a> settings=DEFAULT)</td></tr> <tr class="separator:a284911d760fc853d81adf98c242bc453 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aad699867935fd2142ec97afa6e39a7f0 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aad699867935fd2142ec97afa6e39a7f0">HasPrivate</a> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Private.html">Private</a> &gt; key)</td></tr> <tr class="separator:aad699867935fd2142ec97afa6e39a7f0 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6ebc49302a65e706c52eeca31ba83283 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6ebc49302a65e706c52eeca31ba83283"></a> <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>SetPrivate</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Private.html">Private</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:a6ebc49302a65e706c52eeca31ba83283 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad78ba140348f92581361329aab917382 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad78ba140348f92581361329aab917382"></a> <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>DeletePrivate</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Private.html">Private</a> &gt; key)</td></tr> <tr class="separator:ad78ba140348f92581361329aab917382 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6b2e55f1bf6b057c5cd9f2fc0e609c86 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6b2e55f1bf6b057c5cd9f2fc0e609c86"></a> <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetPrivate</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Private.html">Private</a> &gt; key)</td></tr> <tr class="separator:a6b2e55f1bf6b057c5cd9f2fc0e609c86 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3f735ad2eab826ddc5eba467ce624acb inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a3f735ad2eab826ddc5eba467ce624acb">V8_DEPRECATE_SOON</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Array.html">Array</a> &gt; GetPropertyNames())</td></tr> <tr class="separator:a3f735ad2eab826ddc5eba467ce624acb inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a771be1943535959085da5c384f8e6405 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a771be1943535959085da5c384f8e6405"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Array.html">Array</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetPropertyNames</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context)</td></tr> <tr class="separator:a771be1943535959085da5c384f8e6405 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa72e9d0d22d1d4a4c4b63827a5469d40 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aa72e9d0d22d1d4a4c4b63827a5469d40">V8_DEPRECATE_SOON</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Array.html">Array</a> &gt; GetOwnPropertyNames())</td></tr> <tr class="separator:aa72e9d0d22d1d4a4c4b63827a5469d40 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab4f1fc692a02c11d749a7d5120e67026 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab4f1fc692a02c11d749a7d5120e67026"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Array.html">Array</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetOwnPropertyNames</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context)</td></tr> <tr class="separator:ab4f1fc692a02c11d749a7d5120e67026 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae8d3fed7d6dbd667c29cabb3039fe7af inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ae8d3fed7d6dbd667c29cabb3039fe7af">GetPrototype</a> ()</td></tr> <tr class="separator:ae8d3fed7d6dbd667c29cabb3039fe7af inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4ce54e137e22eddbe2857a15a20219b2 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a4ce54e137e22eddbe2857a15a20219b2">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, bool SetPrototype(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; prototype))</td></tr> <tr class="separator:a4ce54e137e22eddbe2857a15a20219b2 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1f1fc25d2a440ad2a8b7d94db04f88fb inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1f1fc25d2a440ad2a8b7d94db04f88fb"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>SetPrototype</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; prototype)</td></tr> <tr class="separator:a1f1fc25d2a440ad2a8b7d94db04f88fb inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae2ad9fee9db6e0e5da56973ebb8ea2bc inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ae2ad9fee9db6e0e5da56973ebb8ea2bc">FindInstanceInPrototypeChain</a> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1FunctionTemplate.html">FunctionTemplate</a> &gt; tmpl)</td></tr> <tr class="separator:ae2ad9fee9db6e0e5da56973ebb8ea2bc inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a06bb9aab716e466b8fa0e0c3fbb8f5d7 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a06bb9aab716e466b8fa0e0c3fbb8f5d7">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; ObjectProtoToString())</td></tr> <tr class="separator:a06bb9aab716e466b8fa0e0c3fbb8f5d7 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7a65552d78eff4a1b9755f99167f4255 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7a65552d78eff4a1b9755f99167f4255"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ObjectProtoToString</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context)</td></tr> <tr class="separator:a7a65552d78eff4a1b9755f99167f4255 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7bbe987794658f20a3ec1b68326305e6 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a7bbe987794658f20a3ec1b68326305e6">GetConstructorName</a> ()</td></tr> <tr class="separator:a7bbe987794658f20a3ec1b68326305e6 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac45163422a18bb7481cc78fcacecb301 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ac45163422a18bb7481cc78fcacecb301">SetIntegrityLevel</a> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="namespacev8.html#a02642d03ff1eecc2fd358626499c2e30">IntegrityLevel</a> level)</td></tr> <tr class="separator:ac45163422a18bb7481cc78fcacecb301 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaec28576353eebe6fee113bce2718ecc inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aaec28576353eebe6fee113bce2718ecc">InternalFieldCount</a> ()</td></tr> <tr class="separator:aaec28576353eebe6fee113bce2718ecc inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa3324fdf652d8ac3b2f27faa0559231d inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">V8_INLINE <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aa3324fdf652d8ac3b2f27faa0559231d">GetInternalField</a> (int index)</td></tr> <tr class="separator:aa3324fdf652d8ac3b2f27faa0559231d inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aebf949a0592cebc144bb2f96bfb7ec72 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#aebf949a0592cebc144bb2f96bfb7ec72">SetInternalField</a> (int index, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value)</td></tr> <tr class="separator:aebf949a0592cebc144bb2f96bfb7ec72 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a435f68bb7ef0f64dd522c5c910682448 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">V8_INLINE void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a435f68bb7ef0f64dd522c5c910682448">GetAlignedPointerFromInternalField</a> (int index)</td></tr> <tr class="separator:a435f68bb7ef0f64dd522c5c910682448 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0ccba69581f0b5e4e672bab90f26879b inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a0ccba69581f0b5e4e672bab90f26879b">SetAlignedPointerInInternalField</a> (int index, void *value)</td></tr> <tr class="separator:a0ccba69581f0b5e4e672bab90f26879b inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a332143937efdc58dac2d877ebeb5f8ef inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a332143937efdc58dac2d877ebeb5f8ef"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, bool HasOwnProperty(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:a332143937efdc58dac2d877ebeb5f8ef inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acdd3921e95d5bb1a27cea489792607ff inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acdd3921e95d5bb1a27cea489792607ff"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>HasOwnProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:acdd3921e95d5bb1a27cea489792607ff inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abf24b52a108c801a74718e1a1e64ba5b inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abf24b52a108c801a74718e1a1e64ba5b"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool HasRealNamedProperty(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:abf24b52a108c801a74718e1a1e64ba5b inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad830b937c7586fe2086b288ea79935c4 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad830b937c7586fe2086b288ea79935c4"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>HasRealNamedProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:ad830b937c7586fe2086b288ea79935c4 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abd04e5cb82426a70ebea6afec8687c9e inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abd04e5cb82426a70ebea6afec8687c9e"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool HasRealIndexedProperty(uint32_t index))</td></tr> <tr class="separator:abd04e5cb82426a70ebea6afec8687c9e inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a46de2f348f4caafca287328ce385ab56 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a46de2f348f4caafca287328ce385ab56"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>HasRealIndexedProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, uint32_t index)</td></tr> <tr class="separator:a46de2f348f4caafca287328ce385ab56 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae1ffb11a0fa7549652d0530c0c4c4ca6 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae1ffb11a0fa7549652d0530c0c4c4ca6"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool HasRealNamedCallbackProperty(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:ae1ffb11a0fa7549652d0530c0c4c4ca6 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a62bde6bea1ce32b30b2152f33a105b14 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a62bde6bea1ce32b30b2152f33a105b14"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>HasRealNamedCallbackProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:a62bde6bea1ce32b30b2152f33a105b14 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a00982b58e0c86fcb37f5d74c8a33d1b8 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a00982b58e0c86fcb37f5d74c8a33d1b8">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; GetRealNamedPropertyInPrototypeChain(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:a00982b58e0c86fcb37f5d74c8a33d1b8 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afe68d490fc41783e30126ca547b7fc90 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afe68d490fc41783e30126ca547b7fc90"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetRealNamedPropertyInPrototypeChain</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:afe68d490fc41783e30126ca547b7fc90 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac11ecb441033271172a4c34770be6488 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ac11ecb441033271172a4c34770be6488">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Maybe&lt; PropertyAttribute &gt; GetRealNamedPropertyAttributesInPrototypeChain(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:ac11ecb441033271172a4c34770be6488 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aab7c2e5c5659e95e97488e01b04bf3c8 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aab7c2e5c5659e95e97488e01b04bf3c8"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; PropertyAttribute &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetRealNamedPropertyAttributesInPrototypeChain</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:aab7c2e5c5659e95e97488e01b04bf3c8 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a870785c34482a0d284e56db93cd1eb5a inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a870785c34482a0d284e56db93cd1eb5a">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; GetRealNamedProperty(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:a870785c34482a0d284e56db93cd1eb5a inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aecec39cefb3e394e1696fe618862efec inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aecec39cefb3e394e1696fe618862efec"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetRealNamedProperty</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:aecec39cefb3e394e1696fe618862efec inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1fdd165c23a55dba4ba48f484a94c3c3 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a1fdd165c23a55dba4ba48f484a94c3c3">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Maybe&lt; PropertyAttribute &gt; GetRealNamedPropertyAttributes(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:a1fdd165c23a55dba4ba48f484a94c3c3 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a476c21f05ffc519252fad0ab46de33d7 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a476c21f05ffc519252fad0ab46de33d7"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; PropertyAttribute &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>GetRealNamedPropertyAttributes</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Name.html">Name</a> &gt; key)</td></tr> <tr class="separator:a476c21f05ffc519252fad0ab46de33d7 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1e96fcb9ee17101c0299ec68f2cf8610 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a1e96fcb9ee17101c0299ec68f2cf8610">HasNamedLookupInterceptor</a> ()</td></tr> <tr class="separator:a1e96fcb9ee17101c0299ec68f2cf8610 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a278913bcd203434870ce5184a538a9af inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a278913bcd203434870ce5184a538a9af">HasIndexedLookupInterceptor</a> ()</td></tr> <tr class="separator:a278913bcd203434870ce5184a538a9af inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac1ece41e81a499920ec3a2a3471653bc inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#ac1ece41e81a499920ec3a2a3471653bc">GetIdentityHash</a> ()</td></tr> <tr class="separator:ac1ece41e81a499920ec3a2a3471653bc inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afb7135780f033b122025df8c6274a274 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="afb7135780f033b122025df8c6274a274"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use v8::Object::SetPrivate instead.&quot;, bool SetHiddenValue(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; value))</td></tr> <tr class="separator:afb7135780f033b122025df8c6274a274 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acdece4ecbf0f68e0ba67582db5feae0d inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acdece4ecbf0f68e0ba67582db5feae0d"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use v8::Object::GetPrivate instead.&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; GetHiddenValue(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:acdece4ecbf0f68e0ba67582db5feae0d inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9390e502d8dbabbb18cbe2c47bc3c3b9 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9390e502d8dbabbb18cbe2c47bc3c3b9"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use v8::Object::DeletePrivate instead.&quot;, bool DeleteHiddenValue(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; key))</td></tr> <tr class="separator:a9390e502d8dbabbb18cbe2c47bc3c3b9 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5018c9d085aa71f65530cf1e073a04ad inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a5018c9d085aa71f65530cf1e073a04ad">Clone</a> ()</td></tr> <tr class="separator:a5018c9d085aa71f65530cf1e073a04ad inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af6966283a7d7e20779961eed434db04d inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#af6966283a7d7e20779961eed434db04d">CreationContext</a> ()</td></tr> <tr class="separator:af6966283a7d7e20779961eed434db04d inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a23c2c1f23b50fab4a02e2f819641b865 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a23c2c1f23b50fab4a02e2f819641b865">IsCallable</a> ()</td></tr> <tr class="separator:a23c2c1f23b50fab4a02e2f819641b865 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8b4e2b65f72712420eb76842f2123fe3 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a8b4e2b65f72712420eb76842f2123fe3">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; CallAsFunction(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; recv, int argc, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; argv[]))</td></tr> <tr class="separator:a8b4e2b65f72712420eb76842f2123fe3 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aec7375fe34a800baac4e26deb33ccac0 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aec7375fe34a800baac4e26deb33ccac0"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>CallAsFunction</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; recv, int argc, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; argv[])</td></tr> <tr class="separator:aec7375fe34a800baac4e26deb33ccac0 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0ce5417b42d5bfb5a8dc3482dcb733eb inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a0ce5417b42d5bfb5a8dc3482dcb733eb">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; CallAsConstructor(int argc, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; argv[]))</td></tr> <tr class="separator:a0ce5417b42d5bfb5a8dc3482dcb733eb inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a10dcefb0bd595a959234703690a02530 inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a10dcefb0bd595a959234703690a02530"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>CallAsConstructor</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, int argc, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; argv[])</td></tr> <tr class="separator:a10dcefb0bd595a959234703690a02530 inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5e7199a517d980396bb86f876b5bae0a inherit pub_methods_classv8_1_1Object"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Object.html#a5e7199a517d980396bb86f876b5bae0a">V8_DEPRECATE_SOON</a> (&quot;Keep track of isolate correctly&quot;, Isolate *GetIsolate())</td></tr> <tr class="separator:a5e7199a517d980396bb86f876b5bae0a inherit pub_methods_classv8_1_1Object"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classv8_1_1Value"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1Value')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1Value.html">v8::Value</a></td></tr> <tr class="memitem:aea287b745656baa8a12a2ae1d69744b6 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aea287b745656baa8a12a2ae1d69744b6">IsUndefined</a> () const </td></tr> <tr class="separator:aea287b745656baa8a12a2ae1d69744b6 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa2c6ed8ef832223a7e2cd81e6ac61c78 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aa2c6ed8ef832223a7e2cd81e6ac61c78">IsNull</a> () const </td></tr> <tr class="separator:aa2c6ed8ef832223a7e2cd81e6ac61c78 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8f27462322186b295195eecb3e81d6d7 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a8f27462322186b295195eecb3e81d6d7">IsTrue</a> () const </td></tr> <tr class="separator:a8f27462322186b295195eecb3e81d6d7 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a68c0296071d01ca899825d7643cf495a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a68c0296071d01ca899825d7643cf495a">IsFalse</a> () const </td></tr> <tr class="separator:a68c0296071d01ca899825d7643cf495a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8829b16b442a6231499c89fd5a6f8049 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a8829b16b442a6231499c89fd5a6f8049">IsName</a> () const </td></tr> <tr class="separator:a8829b16b442a6231499c89fd5a6f8049 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab23a34b7df62806808e01b0908bf5f00 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ab23a34b7df62806808e01b0908bf5f00">IsString</a> () const </td></tr> <tr class="separator:ab23a34b7df62806808e01b0908bf5f00 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af3e6081c22d09a7bbc0a2aff59ed60a5 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#af3e6081c22d09a7bbc0a2aff59ed60a5">IsSymbol</a> () const </td></tr> <tr class="separator:af3e6081c22d09a7bbc0a2aff59ed60a5 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a05532a34cdd215f273163830ed8b77e7 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a05532a34cdd215f273163830ed8b77e7">IsFunction</a> () const </td></tr> <tr class="separator:a05532a34cdd215f273163830ed8b77e7 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaee0b144087d20eae02314c9393ff80f inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aaee0b144087d20eae02314c9393ff80f">IsArray</a> () const </td></tr> <tr class="separator:aaee0b144087d20eae02314c9393ff80f inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a355b7991c5c978c0341f6f961b63c5a2 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a355b7991c5c978c0341f6f961b63c5a2">IsObject</a> () const </td></tr> <tr class="separator:a355b7991c5c978c0341f6f961b63c5a2 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0aceb7645e71b096df5cd73d1252b1b0 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a0aceb7645e71b096df5cd73d1252b1b0">IsBoolean</a> () const </td></tr> <tr class="separator:a0aceb7645e71b096df5cd73d1252b1b0 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1bd51e3e55f67c65b9a8f587fbffb7c7 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a1bd51e3e55f67c65b9a8f587fbffb7c7">IsNumber</a> () const </td></tr> <tr class="separator:a1bd51e3e55f67c65b9a8f587fbffb7c7 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7ac61a325c18af8dcb6d7d5bf47d2503 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a7ac61a325c18af8dcb6d7d5bf47d2503">IsExternal</a> () const </td></tr> <tr class="separator:a7ac61a325c18af8dcb6d7d5bf47d2503 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a01e1db51c65b2feace248b7acbf71a2c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a01e1db51c65b2feace248b7acbf71a2c">IsInt32</a> () const </td></tr> <tr class="separator:a01e1db51c65b2feace248b7acbf71a2c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a783c89631bac4ef3c4b909f40cc2b8d8 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a783c89631bac4ef3c4b909f40cc2b8d8">IsUint32</a> () const </td></tr> <tr class="separator:a783c89631bac4ef3c4b909f40cc2b8d8 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8bc11fab0aded4a805722ab6df173cae inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a8bc11fab0aded4a805722ab6df173cae">IsDate</a> () const </td></tr> <tr class="separator:a8bc11fab0aded4a805722ab6df173cae inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad06a4b1f7215d852c367df390491ac84 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ad06a4b1f7215d852c367df390491ac84">IsArgumentsObject</a> () const </td></tr> <tr class="separator:ad06a4b1f7215d852c367df390491ac84 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abe7bc06283e5e66013f2f056a943168b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#abe7bc06283e5e66013f2f056a943168b">IsBooleanObject</a> () const </td></tr> <tr class="separator:abe7bc06283e5e66013f2f056a943168b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5f4aa9504a6d8fc3af9489330179fe14 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a5f4aa9504a6d8fc3af9489330179fe14">IsNumberObject</a> () const </td></tr> <tr class="separator:a5f4aa9504a6d8fc3af9489330179fe14 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3e0f2727455fd01a39a60b92f77e28e0 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a3e0f2727455fd01a39a60b92f77e28e0">IsStringObject</a> () const </td></tr> <tr class="separator:a3e0f2727455fd01a39a60b92f77e28e0 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a867baa94cb8f1069452359e6cef6751e inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a867baa94cb8f1069452359e6cef6751e">IsSymbolObject</a> () const </td></tr> <tr class="separator:a867baa94cb8f1069452359e6cef6751e inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a579fb52e893cdc24f8b77e5acc77d06d inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a579fb52e893cdc24f8b77e5acc77d06d">IsNativeError</a> () const </td></tr> <tr class="separator:a579fb52e893cdc24f8b77e5acc77d06d inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aae41e43486937d6122c297a0d43ac0b8 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aae41e43486937d6122c297a0d43ac0b8">IsRegExp</a> () const </td></tr> <tr class="separator:aae41e43486937d6122c297a0d43ac0b8 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1cbbebde8c256d051c4606a7300870c6 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a1cbbebde8c256d051c4606a7300870c6">IsGeneratorFunction</a> () const </td></tr> <tr class="separator:a1cbbebde8c256d051c4606a7300870c6 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a72982768acdadd82d1df02a452251d14 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a72982768acdadd82d1df02a452251d14">IsGeneratorObject</a> () const </td></tr> <tr class="separator:a72982768acdadd82d1df02a452251d14 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a93d6a0817b15a1d28050ba16e131e6b4 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a93d6a0817b15a1d28050ba16e131e6b4">IsPromise</a> () const </td></tr> <tr class="separator:a93d6a0817b15a1d28050ba16e131e6b4 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a71ef50f22d6bb4a093cc931b3d981c08 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a71ef50f22d6bb4a093cc931b3d981c08">IsMap</a> () const </td></tr> <tr class="separator:a71ef50f22d6bb4a093cc931b3d981c08 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a220bd4056471ee1dda8ab9565517edd7 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a220bd4056471ee1dda8ab9565517edd7">IsSet</a> () const </td></tr> <tr class="separator:a220bd4056471ee1dda8ab9565517edd7 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af9c52a0668fa3260a0d12a2cdf895b4e inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#af9c52a0668fa3260a0d12a2cdf895b4e">IsMapIterator</a> () const </td></tr> <tr class="separator:af9c52a0668fa3260a0d12a2cdf895b4e inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:addbae0104e07b990ee1af0bd7927824b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#addbae0104e07b990ee1af0bd7927824b">IsSetIterator</a> () const </td></tr> <tr class="separator:addbae0104e07b990ee1af0bd7927824b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aab0297b39ed8e2a71b5dca7950228a36 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aab0297b39ed8e2a71b5dca7950228a36">IsWeakMap</a> () const </td></tr> <tr class="separator:aab0297b39ed8e2a71b5dca7950228a36 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6f5a238206cbd95f98e2da92cab72e80 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a6f5a238206cbd95f98e2da92cab72e80">IsWeakSet</a> () const </td></tr> <tr class="separator:a6f5a238206cbd95f98e2da92cab72e80 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a65f9dad740f2468b44dc16349611c351 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a65f9dad740f2468b44dc16349611c351">IsArrayBuffer</a> () const </td></tr> <tr class="separator:a65f9dad740f2468b44dc16349611c351 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad54475d15b7e6b6e17fc80fb4570cdf2 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ad54475d15b7e6b6e17fc80fb4570cdf2">IsArrayBufferView</a> () const </td></tr> <tr class="separator:ad54475d15b7e6b6e17fc80fb4570cdf2 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac2f2f6c39f14a39fbb5b43577125dfe4 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ac2f2f6c39f14a39fbb5b43577125dfe4">IsTypedArray</a> () const </td></tr> <tr class="separator:ac2f2f6c39f14a39fbb5b43577125dfe4 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acbe2cd9c9cce96ee498677ba37c8466d inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#acbe2cd9c9cce96ee498677ba37c8466d">IsUint8Array</a> () const </td></tr> <tr class="separator:acbe2cd9c9cce96ee498677ba37c8466d inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad3cb464ab5ef0215bd2cbdd4eb2b7e3d inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ad3cb464ab5ef0215bd2cbdd4eb2b7e3d">IsUint8ClampedArray</a> () const </td></tr> <tr class="separator:ad3cb464ab5ef0215bd2cbdd4eb2b7e3d inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a10a88a2794271dfcd9c3abd565e8f28a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a10a88a2794271dfcd9c3abd565e8f28a">IsInt8Array</a> () const </td></tr> <tr class="separator:a10a88a2794271dfcd9c3abd565e8f28a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4a45fabf58b241f5de3086a3dd0a09ae inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a4a45fabf58b241f5de3086a3dd0a09ae">IsUint16Array</a> () const </td></tr> <tr class="separator:a4a45fabf58b241f5de3086a3dd0a09ae inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a928c586639dd75ae4efdaa66b1fc4d50 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a928c586639dd75ae4efdaa66b1fc4d50">IsInt16Array</a> () const </td></tr> <tr class="separator:a928c586639dd75ae4efdaa66b1fc4d50 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5e39229dc74d534835cf4ceba10676f4 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a5e39229dc74d534835cf4ceba10676f4">IsUint32Array</a> () const </td></tr> <tr class="separator:a5e39229dc74d534835cf4ceba10676f4 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a48eac78a49c8b42d9f8cf05c514b3750 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a48eac78a49c8b42d9f8cf05c514b3750">IsInt32Array</a> () const </td></tr> <tr class="separator:a48eac78a49c8b42d9f8cf05c514b3750 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4effc7ca1a221dd8c1e23c0f28145ef0 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a4effc7ca1a221dd8c1e23c0f28145ef0">IsFloat32Array</a> () const </td></tr> <tr class="separator:a4effc7ca1a221dd8c1e23c0f28145ef0 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a293f140b81b0219d1497e937ed948b1e inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a293f140b81b0219d1497e937ed948b1e">IsFloat64Array</a> () const </td></tr> <tr class="separator:a293f140b81b0219d1497e937ed948b1e inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab071bf567d89c8ce1489b1b7d93abc36 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ab071bf567d89c8ce1489b1b7d93abc36">IsFloat32x4</a> () const </td></tr> <tr class="separator:ab071bf567d89c8ce1489b1b7d93abc36 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afd20ab51e79658acc405c12dad2260ab inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#afd20ab51e79658acc405c12dad2260ab">IsDataView</a> () const </td></tr> <tr class="separator:afd20ab51e79658acc405c12dad2260ab inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa4ce26f174a4c1823dec56eb946d3134 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#aa4ce26f174a4c1823dec56eb946d3134">IsSharedArrayBuffer</a> () const </td></tr> <tr class="separator:aa4ce26f174a4c1823dec56eb946d3134 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8a056f765e6e07a1d957fdc1be9b00d5 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#a8a056f765e6e07a1d957fdc1be9b00d5">IsProxy</a> () const </td></tr> <tr class="separator:a8a056f765e6e07a1d957fdc1be9b00d5 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a40a62da1dd52184cc4c1fd735c538f8b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a40a62da1dd52184cc4c1fd735c538f8b"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Boolean.html">Boolean</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToBoolean</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a40a62da1dd52184cc4c1fd735c538f8b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9fa8386aa436c2b83c9af6a65b8a2cad inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a9fa8386aa436c2b83c9af6a65b8a2cad"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Number.html">Number</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToNumber</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a9fa8386aa436c2b83c9af6a65b8a2cad inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a62315204812aa88ac5577587c49e02ab inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a62315204812aa88ac5577587c49e02ab"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToString</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a62315204812aa88ac5577587c49e02ab inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aeb6599247811f27464db5dc4777e35e6 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aeb6599247811f27464db5dc4777e35e6"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToDetailString</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:aeb6599247811f27464db5dc4777e35e6 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4823df6b6920f74f64f30d5341fc879a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4823df6b6920f74f64f30d5341fc879a"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToObject</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a4823df6b6920f74f64f30d5341fc879a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a183cd0a8d99f2bbbaa4405b21ef752d6 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a183cd0a8d99f2bbbaa4405b21ef752d6"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Integer.html">Integer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToInteger</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a183cd0a8d99f2bbbaa4405b21ef752d6 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3ea85bd616b0cf6335cd580937b56e1c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3ea85bd616b0cf6335cd580937b56e1c"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Uint32.html">Uint32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToUint32</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a3ea85bd616b0cf6335cd580937b56e1c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a710ab9ca1f72a69bee3223e03d01e414 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a710ab9ca1f72a69bee3223e03d01e414"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Int32.html">Int32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToInt32</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a710ab9ca1f72a69bee3223e03d01e414 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad3b9978f3fedccb48817ce87c5a454ed inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad3b9978f3fedccb48817ce87c5a454ed"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Boolean.html">Boolean</a> &gt; ToBoolean(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:ad3b9978f3fedccb48817ce87c5a454ed inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a855a0b74584b9c322c04891783f37e9c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a855a0b74584b9c322c04891783f37e9c"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Number.html">Number</a> &gt; ToNumber(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:a855a0b74584b9c322c04891783f37e9c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a898f773c591e760fcb98e99cccff3e5c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a898f773c591e760fcb98e99cccff3e5c"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; ToString(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:a898f773c591e760fcb98e99cccff3e5c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7afec72891a36d38aba6eb2ccf8b0a9d inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7afec72891a36d38aba6eb2ccf8b0a9d"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; ToDetailString(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:a7afec72891a36d38aba6eb2ccf8b0a9d inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4c98939a72d6c48b01c8279cfe218d34 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4c98939a72d6c48b01c8279cfe218d34"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt; ToObject(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:a4c98939a72d6c48b01c8279cfe218d34 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aae926c4392edf0ad4a5383ab0d8af4b1 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aae926c4392edf0ad4a5383ab0d8af4b1"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Integer.html">Integer</a> &gt; ToInteger(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:aae926c4392edf0ad4a5383ab0d8af4b1 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1582d050951071123139095fa6696e6b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a1582d050951071123139095fa6696e6b"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Uint32.html">Uint32</a> &gt; ToUint32(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:a1582d050951071123139095fa6696e6b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abf72660ee84f81fe2fed85e39e6a3c86 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abf72660ee84f81fe2fed85e39e6a3c86"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Int32.html">Int32</a> &gt; ToInt32(<a class="el" href="classv8_1_1Isolate.html">Isolate</a> *isolate) const)</td></tr> <tr class="separator:abf72660ee84f81fe2fed85e39e6a3c86 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4c9960d9a42b62b83d70ade47d88fa52 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4c9960d9a42b62b83d70ade47d88fa52"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Boolean.html">Boolean</a> &gt; ToBoolean() const)</td></tr> <tr class="separator:a4c9960d9a42b62b83d70ade47d88fa52 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a82d85e91f204bbfcb5299f20158c27c7 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a82d85e91f204bbfcb5299f20158c27c7"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Number.html">Number</a> &gt; ToNumber() const)</td></tr> <tr class="separator:a82d85e91f204bbfcb5299f20158c27c7 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4d1fe1c6d7ba6cccef24fc3fe528d75a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4d1fe1c6d7ba6cccef24fc3fe528d75a"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; ToString() const)</td></tr> <tr class="separator:a4d1fe1c6d7ba6cccef24fc3fe528d75a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a963462b3b958c27890253a6e2b35f565 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a963462b3b958c27890253a6e2b35f565"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1String.html">String</a> &gt; ToDetailString() const)</td></tr> <tr class="separator:a963462b3b958c27890253a6e2b35f565 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a594821f24e204aa6a7b1f003a79089a5 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a594821f24e204aa6a7b1f003a79089a5"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Object.html">Object</a> &gt; ToObject() const)</td></tr> <tr class="separator:a594821f24e204aa6a7b1f003a79089a5 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaf6d45da85632495545435e44ed2eeab inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aaf6d45da85632495545435e44ed2eeab"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Integer.html">Integer</a> &gt; ToInteger() const)</td></tr> <tr class="separator:aaf6d45da85632495545435e44ed2eeab inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a266f96f746d6addf7b829a1f0c62b2af inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a266f96f746d6addf7b829a1f0c62b2af"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Uint32.html">Uint32</a> &gt; ToUint32() const)</td></tr> <tr class="separator:a266f96f746d6addf7b829a1f0c62b2af inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0431dfa7c7236d58949f649802f4a03a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0431dfa7c7236d58949f649802f4a03a"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATED</b> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Int32.html">Int32</a> &gt; ToInt32() const)</td></tr> <tr class="separator:a0431dfa7c7236d58949f649802f4a03a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adedc431c9a5f9fc875027c773cc26585 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#adedc431c9a5f9fc875027c773cc26585">V8_DEPRECATED</a> (&quot;Use maybe version&quot;, Local&lt; <a class="el" href="classv8_1_1Uint32.html">Uint32</a> &gt; ToArrayIndex() const)</td></tr> <tr class="separator:adedc431c9a5f9fc875027c773cc26585 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abac68de66288d00b3b612c20e5059515 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abac68de66288d00b3b612c20e5059515"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1MaybeLocal.html">MaybeLocal</a>&lt; <a class="el" href="classv8_1_1Uint32.html">Uint32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToArrayIndex</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:abac68de66288d00b3b612c20e5059515 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae6e855a09c4b60ec2c4674731d0d365c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae6e855a09c4b60ec2c4674731d0d365c"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>BooleanValue</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:ae6e855a09c4b60ec2c4674731d0d365c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3dcd02e3d5ee791e0c42c7f2ebfedbaf inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3dcd02e3d5ee791e0c42c7f2ebfedbaf"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; double &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>NumberValue</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a3dcd02e3d5ee791e0c42c7f2ebfedbaf inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2163c66da18cfc69b21139496cbed80a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2163c66da18cfc69b21139496cbed80a"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; int64_t &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>IntegerValue</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a2163c66da18cfc69b21139496cbed80a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a99b845757d060f581f25df433362b216 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a99b845757d060f581f25df433362b216"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; uint32_t &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Uint32Value</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a99b845757d060f581f25df433362b216 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a60321e60ce602a225f0acc096af75ee8 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a60321e60ce602a225f0acc096af75ee8"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; int32_t &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Int32Value</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context) const </td></tr> <tr class="separator:a60321e60ce602a225f0acc096af75ee8 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aff3530eeb271134bbb0b6206d736f00b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aff3530eeb271134bbb0b6206d736f00b"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, bool BooleanValue() const)</td></tr> <tr class="separator:aff3530eeb271134bbb0b6206d736f00b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2d1835968f05581123c96add5b03c41c inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2d1835968f05581123c96add5b03c41c"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, double NumberValue() const)</td></tr> <tr class="separator:a2d1835968f05581123c96add5b03c41c inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0b08feca02c1c902c094b23ca245fce5 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0b08feca02c1c902c094b23ca245fce5"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, int64_t IntegerValue() const)</td></tr> <tr class="separator:a0b08feca02c1c902c094b23ca245fce5 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a67ef6d2af84b297bb1a6d825915c7f0f inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a67ef6d2af84b297bb1a6d825915c7f0f"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, uint32_t Uint32Value() const)</td></tr> <tr class="separator:a67ef6d2af84b297bb1a6d825915c7f0f inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac091f8bdb5fc293ec803f16b9780a3b5 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac091f8bdb5fc293ec803f16b9780a3b5"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>V8_DEPRECATE_SOON</b> (&quot;Use maybe version&quot;, int32_t Int32Value() const)</td></tr> <tr class="separator:ac091f8bdb5fc293ec803f16b9780a3b5 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae3528a485935d1b19a0e007cd5a06799 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1Value.html#ae3528a485935d1b19a0e007cd5a06799">V8_DEPRECATE_SOON</a> (&quot;Use maybe version&quot;, bool Equals(<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; that) const)</td></tr> <tr class="separator:ae3528a485935d1b19a0e007cd5a06799 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad98db94739e250aec626fc443bac7947 inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad98db94739e250aec626fc443bac7947"></a> V8_WARN_UNUSED_RESULT <a class="el" href="classv8_1_1Maybe.html">Maybe</a>&lt; bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>Equals</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Context.html">Context</a> &gt; context, <a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:ad98db94739e250aec626fc443bac7947 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae5742f470be23852222b577ff1f8ad4a inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae5742f470be23852222b577ff1f8ad4a"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>StrictEquals</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:ae5742f470be23852222b577ff1f8ad4a inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab64798867e84e66d5fa79003dad9d44b inherit pub_methods_classv8_1_1Value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab64798867e84e66d5fa79003dad9d44b"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>SameValue</b> (<a class="el" href="classv8_1_1Local.html">Local</a>&lt; <a class="el" href="classv8_1_1Value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:ab64798867e84e66d5fa79003dad9d44b inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac2142bb3ec6527633c4f9133e80cdc19 inherit pub_methods_classv8_1_1Value"><td class="memTemplParams" colspan="2"><a class="anchor" id="ac2142bb3ec6527633c4f9133e80cdc19"></a> template&lt;class T &gt; </td></tr> <tr class="memitem:ac2142bb3ec6527633c4f9133e80cdc19 inherit pub_methods_classv8_1_1Value"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1Value.html">Value</a> *&#160;</td><td class="memTemplItemRight" valign="bottom"><b>Cast</b> (T *value)</td></tr> <tr class="separator:ac2142bb3ec6527633c4f9133e80cdc19 inherit pub_methods_classv8_1_1Value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_attribs_classv8_1_1ArrayBufferView"><td colspan="2" onclick="javascript:toggleInherit('pub_static_attribs_classv8_1_1ArrayBufferView')"><img src="closed.png" alt="-"/>&#160;Static Public Attributes inherited from <a class="el" href="classv8_1_1ArrayBufferView.html">v8::ArrayBufferView</a></td></tr> <tr class="memitem:a1cccb675b1a91e61411fee5918d451db inherit pub_static_attribs_classv8_1_1ArrayBufferView"><td class="memItemLeft" align="right" valign="top">static const int&#160;</td><td class="memItemRight" valign="bottom"><b>kInternalFieldCount</b></td></tr> <tr class="separator:a1cccb675b1a91e61411fee5918d451db inherit pub_static_attribs_classv8_1_1ArrayBufferView"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>An instance of <a class="el" href="classv8_1_1Uint32Array.html">Uint32Array</a> constructor (ES6 draft 15.13.6). This API is experimental and may change significantly. </p> </div><hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </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>
v8-dox/v8-dox.github.io
cd78a2b/html/classv8_1_1Uint32Array.html
HTML
mit
122,854
<div id="myModal" class="modal modal-details fade" role="dialog"> <div class="modal-dialog"> <!-- Modal content--> <section class="modal-content"> <header class="modal-header" data-dismiss="modal"> <button type="button" class="close">&times;</button> <h3 class="modal-title" *ngIf="!details.confidentiality">{{ details.name | translate }}</h3> <h3 class="modal-title" *ngIf="details.confidentiality">{{ details.confidentiality | translate }}</h3> </header> <div class="modal-body wrap-img-txt"> <figure> <span class="img img-round"> <img [src]="details.image" [alt]="details.name"> </span> <figcaption> <h4>{{ details.category }}</h4> <!-- If PROJECT --> <h4 *ngIf="type === 'project' && details.company"> <span class="content-prefix">{{ 'as' | translate }}</span> {{ details.company.role }} <span class="content-prefix">{{ 'at' | translate }}</span> <a [href]="details.company.url" target="_blank">{{ details.company.name }}</a> </h4> </figcaption> </figure> <section> <p>{{ details.desc | translate }}</p> </section> <section class="img-group" *ngIf="hasSkillsInvolved()"> <header class="header-sub"><h5>Skills involved</h5></header> <figure class="img-wrap" *ngFor="let tech of details.techs"> <img class="img" [src]="tech.logo" [alt]="tech.name"> <figcaption class="img-label">{{ tech.name }}</figcaption> </figure> </section> </div> <footer class="modal-footer btn-group--modal" *ngIf="details.url || details.github || type === 'project'"> <!-- If a project --> <a class="btn btn-primary" (click)="goTo(details)" *ngIf="type === 'project'" data-dismiss="modal"> {{ 'Learn More' | translate }} </a> <!-- If a skill --> <a class="btn btn-primary" [href]="details.url" *ngIf="hasUrl() === 'info'" target="_blank"> {{ 'Learn More' | translate }} </a> <!-- If not a skill --> <a class="btn btn-primary" [href]="details.url" *ngIf="hasUrl() === 'live'" target="_blank"> {{ 'live' | translate }} </a> <a class="btn btn-primary" [href]="details.github" *ngIf="details.github" target="_blank"> Github </a> </footer> </section> </div> </div>
kevinliozon/angular2-portfolio
app/shared/components/details-modal/details-modal.component.html
HTML
mit
2,518
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>itree: 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 / itree - 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> itree <small> 3.0.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2021-04-06 21:49:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-06 21:49:33 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 coq 8.11.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.11.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.11.1 Official release 4.11.1 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;Li-yao Xia &lt;[email protected]&gt;&quot; synopsis: &quot;A Library for Representing Recursive and Impure Programs in Coq&quot; homepage: &quot;https://github.com/DeepSpec/InteractionTrees&quot; dev-repo: &quot;git+https://github.com/DeepSpec/InteractionTrees&quot; bug-reports: &quot;https://github.com/DeepSpec/InteractionTrees/issues&quot; license: &quot;MIT&quot; build: [ make &quot;-j%{jobs}%&quot; ] install: [ make &quot;install&quot; ] run-test: [ make &quot;-j%{jobs}%&quot; &quot;all&quot; ] depends: [ &quot;coq&quot; {&gt;= &quot;8.8&quot; &amp; &lt; &quot;8.11~&quot;} &quot;coq-ext-lib&quot; {= &quot;0.10.3&quot;} &quot;coq-paco&quot; {&gt;= &quot;4.0.0&quot; &amp; &lt; &quot;4.1.0&quot;} &quot;ocamlbuild&quot; {with-test} ] authors: [ &quot;Li-yao Xia &lt;[email protected]&gt;&quot; &quot;Yannick Zakowski &lt;[email protected]&gt;&quot; &quot;Paul He &lt;[email protected]&gt;&quot; &quot;Chung-Kil Hur &lt;[email protected]&gt;&quot; &quot;Gregory Malecha &lt;[email protected]&gt;&quot; &quot;Steve Zdancewic &lt;[email protected]&gt;&quot; &quot;Benjamin C. Pierce &lt;[email protected]&gt;&quot; ] tags: &quot;org:deepspec&quot; url { http: &quot;https://github.com/DeepSpec/InteractionTrees/archive/3.0.0.tar.gz&quot; checksum: &quot;sha512=d76b5ae799a18cfef477adea6ffe7fb7c37dc19f4cb2eca4510331bae306932c4ed1aa6e782ca9ff27895a7361e8c9d878de35f3b3c37ef48cc8734f488d83a5&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-itree.3.0.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-itree -&gt; coq &lt; 8.11~ -&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-itree.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.11.1-2.0.7/released/8.11.1/itree/3.0.0.html
HTML
mit
7,011
--- layout: default --- <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> <script> $(window).load(function () { $("#menu span").click(function(){ $(this).first().parent().children("ul").children().toggle(); if($(this).html().charAt(0) == "\u25bc"){ $(this).html("&#x25b6;"); } else { $(this).html("&#x25bc;"); } return false; }); }); </script> <h2>{{ page.title }}</h2> <p class="meta">{{ page.date | date_to_string }}</p> <div class="post"> {{ content }} </div> <div id="related"> <h2>Related Posts</h2> <ul class="posts"> {% for post in site.related_posts limit:3 %} <li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li> {% endfor %} </ul> </div>
myhgew/website
_layouts/post.html
HTML
mit
797
<html> <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=""> <meta name="author" content=""> <title>Adhitya & Aneta | A Wedding Story</title> <!-- Bootstrap Core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.1/css/bootstrap.css" rel="stylesheet" media="screen"> <!-- Custom Fonts --> <link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Kaushan+Script" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700" rel="stylesheet" type="text/css"> <!-- Theme CSS --> <link href="css/agency.min.css" rel="stylesheet"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.4.0/animate.min.css"> </head> <body id="page-top" class="index"> <!-- Navigation --> <nav id="mainNav" class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span>Menu <i class="fa fa-bars"></i> </button> <a class="navbar-brand page-scroll" href="#page-top">Adhitya & Aneta</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li class="hidden"> <a href="#page-top"></a> </li> <li> <a class="page-scroll" href="#ourstory">OUR STORY</a> </li> <li> <a class="page-scroll" href="#portfolio">WHEN &amp; WHERE</a> </li> <li> <a class="page-scroll" href="#gmaps">PETA</a> </li> <li> <a class="page-scroll" href="#team">Maps</a> </li> <li> <a class="page-scroll" href="#contact">Contact</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container-fluid --> </nav> <!-- Header --> <header> <div class="container"> <div class="intro-text"> <div class="intro-lead-in" style="animation-duration:3;-webkit-animation-duration:3;">Datang Yo!</div> <div class="intro-heading text-center">Countdown till Days</div> </div> </div> </header> <!-- Services Section --> <section id="services"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Services</h2> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> </div> </div> <div class="row text-center"> <div class="col-md-4"> <span class="fa-stack fa-4x"><i class="fa fa-circle fa-stack-2x text-primary"></i><i class="fa fa-shopping-cart fa-stack-1x fa-inverse"></i></span> <h4 class="service-heading">E-Commerce</h4> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p> </div> <div class="col-md-4"> <span class="fa-stack fa-4x"><i class="fa fa-circle fa-stack-2x text-primary"></i><i class="fa fa-laptop fa-stack-1x fa-inverse"></i></span> <h4 class="service-heading">Responsive Design</h4> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p> </div> <div class="col-md-4"> <span class="fa-stack fa-4x"><i class="fa fa-circle fa-stack-2x text-primary"></i><i class="fa fa-lock fa-stack-1x fa-inverse"></i></span> <h4 class="service-heading">Web Security</h4> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.</p> </div> </div> </div> </section> <!-- Portfolio Grid Section --> <section id="portfolio" class="bg-light-gray"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Portfolio</h2> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> </div> </div> <div class="row"> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal1" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/roundicons.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Round Icons</h4> <p class="text-muted">Graphic Design</p> </div> </div> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal2" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/startup-framework.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Startup Framework</h4> <p class="text-muted">Website Design</p> </div> </div> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal3" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/treehouse.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Treehouse</h4> <p class="text-muted">Website Design</p> </div> </div> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal4" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/golden.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Golden</h4> <p class="text-muted">Website Design</p> </div> </div> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal5" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/escape.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Escape</h4> <p class="text-muted">Website Design</p> </div> </div> <div class="col-md-4 col-sm-6 portfolio-item"> <a href="#portfolioModal6" class="portfolio-link" data-toggle="modal"> <div class="portfolio-hover"> <div class="portfolio-hover-content"> <i class="fa fa-plus fa-3x"></i> </div> </div> <img src="img/portfolio/dreams.png" class="img-responsive" alt=""> </a> <div class="portfolio-caption"> <h4>Dreams</h4> <p class="text-muted">Website Design</p> </div> </div> </div> </div> </section> <!-- Our Story Section --> <section id="our story"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Our Story</h2> <h3 class="section-subheading text-muted">The Groom + The Bride</h3> </div> </div> <div class="row"> <div class="col-lg-12"> <ul class="timeline"> <li> <div class="timeline-image"> <img class="img-circle img-responsive" src="img/about/1.jpg" alt=""> </div> <div class="timeline-panel"> <div class="timeline-heading"> <h4>2009-2011</h4> <h4 class="subheading">Our Humble Beginnings</h4> </div> <div class="timeline-body"> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p> </div> </div> </li> <li class="timeline-inverted"> <div class="timeline-image"> <img class="img-circle img-responsive" src="img/about/2.jpg" alt=""> </div> <div class="timeline-panel"> <div class="timeline-heading"> <h4>March 2011</h4> <h4 class="subheading">An Agency is Born</h4> </div> <div class="timeline-body"> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p> </div> </div> </li> <li> <div class="timeline-image"> <img class="img-circle img-responsive" src="img/about/3.jpg" alt=""> </div> <div class="timeline-panel"> <div class="timeline-heading"> <h4>December 2012</h4> <h4 class="subheading">Transition to Full Service</h4> </div> <div class="timeline-body"> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p> </div> </div> </li> <li class="timeline-inverted"> <div class="timeline-image"> <img class="img-circle img-responsive" src="img/about/4.jpg" alt=""> </div> <div class="timeline-panel"> <div class="timeline-heading"> <h4>July 2014</h4> <h4 class="subheading">Phase Two Expansion</h4> </div> <div class="timeline-body"> <p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p> </div> </div> </li> <li class="timeline-inverted"> <div class="timeline-image"> <h4>Be Part<br>Of Our<br>Story!</h4> </div> </li> </ul> </div> </div> </div> </section> <!-- Team Section --> <section id="team" class="bg-light-gray"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Our Amazing Team</h2> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="team-member"> <img src="img/team/1.jpg" class="img-responsive img-circle" alt=""> <h4>Kay Garland</h4> <p class="text-muted">Lead Designer</p> <ul class="list-inline social-buttons"> <li> <a href="#"><i class="fa fa-twitter"></i></a> </li> <li> <a href="#"><i class="fa fa-facebook"></i></a> </li> <li> <a href="#"><i class="fa fa-linkedin"></i></a> </li> </ul> </div> </div> <div class="col-sm-4"> <div class="team-member"> <img src="img/team/2.jpg" class="img-responsive img-circle" alt=""> <h4>Larry Parker</h4> <p class="text-muted">Lead Marketer</p> <ul class="list-inline social-buttons"> <li> <a href="#"><i class="fa fa-twitter"></i></a> </li> <li> <a href="#"><i class="fa fa-facebook"></i></a> </li> <li> <a href="#"><i class="fa fa-linkedin"></i></a> </li> </ul> </div> </div> <div class="col-sm-4"> <div class="team-member"> <img src="img/team/3.jpg" class="img-responsive img-circle" alt=""> <h4>Diana Pertersen</h4> <p class="text-muted">Lead Developer</p> <ul class="list-inline social-buttons"> <li> <a href="#"><i class="fa fa-twitter"></i></a> </li> <li> <a href="#"><i class="fa fa-facebook"></i></a> </li> <li> <a href="#"><i class="fa fa-linkedin"></i></a> </li> </ul> </div> </div> </div> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <p class="large text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.</p> </div> </div> </div> </section> <!-- Clients Aside --> <aside class="clients"> <div class="container"> <div class="row"> <div class="col-md-3 col-sm-6"> <a href="#"> <img src="img/logos/envato.jpg" class="img-responsive img-centered" alt=""> </a> </div> <div class="col-md-3 col-sm-6"> <a href="#"> <img src="img/logos/designmodo.jpg" class="img-responsive img-centered" alt=""> </a> </div> <div class="col-md-3 col-sm-6"> <a href="#"> <img src="img/logos/themeforest.jpg" class="img-responsive img-centered" alt=""> </a> </div> <div class="col-md-3 col-sm-6"> <a href="#"> <img src="img/logos/creative-market.jpg" class="img-responsive img-centered" alt=""> </a> </div> </div> <div class="row"> </div> </div> </aside> <div class="section"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="embed-responsive embed-responsive-16by9"> <iframe class="embed-responsive-item" src="http://www.youtube.com/embed/i__1Z5a9Sak" allowfullscreen=""></iframe> </div> </div> </div> </div> </div> <!-- Contact Section --> <div class="section"> <div class="container"> <div class="row text-center"> <div class="col-xs-3 text-center"> <a><i class="fa fa-5x fa-fw fa-instagram"></i></a> </div> <div class="col-xs-3"> <a><i class="fa fa-5x fa-fw fa-twitter"></i></a> </div> <div class="col-xs-3"> <a><i class="fa fa-5x fa-fw fa-facebook"></i></a> </div> <div class="col-xs-3 text-center"> <a><i class="fa fa-5x fa-fw fa-github"></i></a> </div> </div> </div> </div> <section id="gmaps" align="center" class="section-gmaps"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">LOKASI ACARA</h2> </div> <div> <iframe allowfullscreen="" align="center" frameborder="0" width="90%" height="400" src="https://www.google.com/maps/embed/v1/place?key=AIzaSyD30IWpRU0Kup7alvbBkWw78J20b1bwOzs&amp;q=Masjid Al - Akbar, Surabaya&amp;zoom=14"></iframe> </div> </section> <section id="contact"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <h2 class="section-heading">Contact Us</h2> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> </div> </div> <div class="row"> <div class="col-lg-12"> <form name="sentMessage" id="contactForm" novalidate=""> <div class="row"> <div class="col-md-6"> <div class="form-group"> <input type="text" class="form-control" placeholder="Your Name *" id="name" required="" data-validation-required-message="Please enter your name."> <p class="help-block text-danger"></p> </div> <div class="form-group"> <input type="email" class="form-control" placeholder="Your Email *" id="email" required="" data-validation-required-message="Please enter your email address."> <p class="help-block text-danger"></p> </div> <div class="form-group"> <input type="tel" class="form-control" placeholder="Your Phone *" id="phone" required="" data-validation-required-message="Please enter your phone number."> <p class="help-block text-danger"></p> </div> </div> <div class="col-md-6"> <div class="form-group"> <textarea class="form-control" placeholder="Your Message *" id="message" required="" data-validation-required-message="Please enter a message."></textarea> <p class="help-block text-danger"></p> </div> </div> <div class="clearfix"></div> <div class="col-lg-12 text-center"> <div id="success"></div> <button type="submit" class="btn btn-xl">Send Message</button> </div> </div> </form> </div> </div> </div> </section> <footer> <div class="container"> <div class="row"> <div class="col-md-4"> <span class="copyright">Copyright © Your Website 2016</span> </div> <div class="col-md-4"> </div> <div class="col-md-4"> <ul class="list-inline quicklinks"> </ul> </div> </div> </div> </footer> <!-- Portfolio Modals --> <!-- Use the modals below to showcase details about your portfolio projects! --> <!-- Portfolio Modal 1 --> <div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <!-- Project Details Go Here --> <h2>Project Name</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/roundicons-free.png" alt=""> <p>Use this area to describe your project. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Est blanditiis dolorem culpa incidunt minus dignissimos deserunt repellat aperiam quasi sunt officia expedita beatae cupiditate, maiores repudiandae, nostrum, reiciendis facere nemo!</p> <p><strong>Want these icons in this portfolio item sample?</strong>You can download 60 of them for free, courtesy of<a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">RoundIcons.com</a>, or you can purchase the 1500 icon set<a href="https://getdpd.com/cart/hoplink/18076?referrer=bvbo4kax5k8ogc">here</a>.</p> <ul class="list-inline"> <li>Date: July 2014</li> <li>Client: Round Icons</li> <li>Category: Graphic Design</li> </ul> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- Portfolio Modal 2 --> <div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <h2>Project Heading</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/startup-framework-preview.png" alt=""> <p><a href="http://designmodo.com/startup/?u=787">Startup Framework</a>is a website builder for professionals. Startup Framework contains components and complex blocks (PSD+HTML Bootstrap themes and templates) which can easily be integrated into almost any design. All of these components are made in the same style, and can easily be integrated into projects, allowing you to create hundreds of solutions for your future projects.</p> <p>You can preview Startup Framework<a href="http://designmodo.com/startup/?u=787">here</a>.</p> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- Portfolio Modal 3 --> <div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <!-- Project Details Go Here --> <h2>Project Name</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/treehouse-preview.png" alt=""> <p>Treehouse is a free PSD web template built by<a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. This is bright and spacious design perfect for people or startup companies looking to showcase their apps or other projects.</p> <p>You can download the PSD template in this portfolio sample item at<a href="http://freebiesxpress.com/gallery/treehouse-free-psd-web-template/">FreebiesXpress.com</a>.</p> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- Portfolio Modal 4 --> <div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <!-- Project Details Go Here --> <h2>Project Name</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/golden-preview.png" alt=""> <p>Start Bootstrap's Agency theme is based on Golden, a free PSD website template built by<a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Golden is a modern and clean one page web template that was made exclusively for Best PSD Freebies. This template has a great portfolio, timeline, and meet your team sections that can be easily modified to fit your needs.</p> <p>You can download the PSD template in this portfolio sample item at<a href="http://freebiesxpress.com/gallery/golden-free-one-page-web-template/">FreebiesXpress.com</a>.</p> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- Portfolio Modal 5 --> <div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <!-- Project Details Go Here --> <h2>Project Name</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/escape-preview.png" alt=""> <p>Escape is a free PSD web template built by<a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Escape is a one page web template that was designed with agencies in mind. This template is ideal for those looking for a simple one page solution to describe your business and offer your services.</p> <p>You can download the PSD template in this portfolio sample item at<a href="http://freebiesxpress.com/gallery/escape-one-page-psd-web-template/">FreebiesXpress.com</a>.</p> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- Portfolio Modal 6 --> <div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="close-modal" data-dismiss="modal"> <div class="lr"> <div class="rl"></div> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2"> <div class="modal-body"> <!-- Project Details Go Here --> <h2>Project Name</h2> <p class="item-intro text-muted">Lorem ipsum dolor sit amet consectetur.</p> <img class="img-responsive img-centered" src="img/portfolio/dreams-preview.png" alt=""> <p>Dreams is a free PSD web template built by<a href="https://www.behance.net/MathavanJaya">Mathavan Jaya</a>. Dreams is a modern one page web template designed for almost any purpose. It’s a beautiful template that’s designed with the Bootstrap framework in mind.</p> <p>You can download the PSD template in this portfolio sample item at<a href="http://freebiesxpress.com/gallery/dreams-free-one-page-web-template/">FreebiesXpress.com</a>.</p> <button type="button" class="btn btn-primary" data-dismiss="modal"> <i class="fa fa-times"></i>Close Project </button> </div> </div> </div> </div> </div> </div> </div> <!-- jQuery --> <script src="vendor/jquery/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="vendor/bootstrap/js/bootstrap.min.js"></script> <!-- Plugin JavaScript --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script> <!-- Contact Form JavaScript --> <script src="js/jqBootstrapValidation.js"></script> <script src="js/contact_me.js"></script> <!-- Theme JavaScript --> <script src="js/agency.min.js"></script> <script type="text/javascript" src="https://cdn.rawgit.com/MhdAljuboori/6ea3a3fa48248e3a132a/raw/animator.js"></script> </body> </html>
diakbar/weeding
_pgbackup/index_1473626637.html
HTML
mit
39,968
<style> .container { width: auto; } pre { background: none; border: none; } </style> <div class="container"> <h2>{{ .Task.Name }} #{{ .TaskRun.Id }} - {{ .Type }}</h2> <pre>{{ .LogOutput }}</pre> </div>
ian-kent/websysd
assets/templates/log.html
HTML
mit
216
<!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; e1c53218-435c-4ce2-ae44-dcc7b799e2e2 </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="#Microsoft.Live">Microsoft.Live</a></strong></td> <td class="text-center">73.50 %</td> <td class="text-center">69.36 %</td> <td class="text-center">87.97 %</td> <td class="text-center">69.36 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="Microsoft.Live"><h3>Microsoft.Live</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>Microsoft.Phone.BackgroundTransfer.BackgroundTransferEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Request</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.BackgroundTransfer.BackgroundTransferRequest</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.Uri,System.Uri)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_TransferProgressChanged(System.EventHandler{Microsoft.Phone.BackgroundTransfer.BackgroundTransferEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_TransferStatusChanged(System.EventHandler{Microsoft.Phone.BackgroundTransfer.BackgroundTransferEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BytesReceived</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_BytesSent</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_DownloadLocation</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Headers</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Method</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_StatusCode</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Tag</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TotalBytesToReceive</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TotalBytesToSend</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TransferError</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_TransferStatus</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_TransferProgressChanged(System.EventHandler{Microsoft.Phone.BackgroundTransfer.BackgroundTransferEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_TransferStatusChanged(System.EventHandler{Microsoft.Phone.BackgroundTransfer.BackgroundTransferEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Method(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Tag(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_UploadLocation(System.Uri)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.BackgroundTransfer.BackgroundTransferService</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(Microsoft.Phone.BackgroundTransfer.BackgroundTransferRequest)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Requests</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(Microsoft.Phone.BackgroundTransfer.BackgroundTransferRequest)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.BackgroundTransfer.TransferStatus</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Controls.NavigatingEventArgs</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Uri</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Controls.PhoneApplicationFrame</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Controls.PhoneApplicationPage</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_BackKeyPress(System.EventHandler{System.ComponentModel.CancelEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ApplicationBar</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_BackKeyPress(System.EventHandler{System.ComponentModel.CancelEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_ApplicationBar(Microsoft.Phone.Shell.IApplicationBar)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Controls.WebBrowser</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Navigated(System.EventHandler{System.Windows.Navigation.NavigationEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">add_Navigating(System.EventHandler{Microsoft.Phone.Controls.NavigatingEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Navigate(System.Uri)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Navigated(System.EventHandler{System.Windows.Navigation.NavigationEventArgs})</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_IsScriptEnabled(System.Boolean)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Shell.IApplicationBar</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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>Microsoft.Phone.Shell.SystemTray</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_IsVisible</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.ComponentModel.BackgroundWorker</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">#ctor</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">add_DoWork(System.ComponentModel.DoWorkEventHandler)</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">add_RunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventHandler)</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">remove_DoWork(System.ComponentModel.DoWorkEventHandler)</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">remove_RunWorkerCompleted(System.ComponentModel.RunWorkerCompletedEventHandler)</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">RunWorkerAsync</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">set_WorkerReportsProgress(System.Boolean)</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">set_WorkerSupportsCancellation(System.Boolean)</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.ComponentModel.DoWorkEventArgs</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">set_Result(System.Object)</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.ComponentModel.DoWorkEventHandler</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">#ctor(System.Object,System.IntPtr)</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.ComponentModel.RunWorkerCompletedEventArgs</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_Result</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.ComponentModel.RunWorkerCompletedEventHandler</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">#ctor(System.Object,System.IntPtr)</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.Environment</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Choose action based feature availability, not OS / Platform</td> </tr> <tr> <td style="padding-left:2em">get_OSVersion</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Choose action based feature availability, not OS / Platform</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.IO.FileMode</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.IO.IsolatedStorage.IsolatedStorageException</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> <tr> <td>System.IO.IsolatedStorage.IsolatedStorageFile</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">DeleteFile(System.String)</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">GetUserStoreForApplication</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">OpenFile(System.String,System.IO.FileMode)</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> <tr> <td>System.IO.IsolatedStorage.IsolatedStorageFileStream</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> <tr> <td>System.IO.IsolatedStorage.IsolatedStorageSettings</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.String,System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Contains(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ApplicationSettings</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Values</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Save</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.IO.Stream</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Stream.ReadAsync</td> </tr> <tr> <td style="padding-left:2em">BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Stream.ReadAsync</td> </tr> <tr> <td style="padding-left:2em">BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Stream.WriteAsync</td> </tr> <tr> <td style="padding-left:2em">EndRead(System.IAsyncResult)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Stream.ReadAsync</td> </tr> <tr> <td style="padding-left:2em">EndWrite(System.IAsyncResult)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Stream.WriteAsync</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.Net.HttpUtility</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">UrlDecode(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">UrlEncode(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Net.WebHeaderCollection</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">set_Item(System.String,System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></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.OperatingSystem</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Couple behavior to feature availability, not OS version or Platform.</td> </tr> <tr> <td style="padding-left:2em">get_Version</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Do not use. Couple behavior to feature availability, not OS version or Platform.</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.Reflection.Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>typeof(CurrentType).GetTypeInfo().Assembly</td> </tr> <tr> <td style="padding-left:2em">GetExecutingAssembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>typeof(CurrentType).GetTypeInfo().Assembly</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.Threading.ThreadPool</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Change code to not depend on the size of the ThreadPool for functionality. Portable code needs to be able to run correctly on multiple different ThreadPool implementations, not all of which support this method.</td> </tr> <tr> <td style="padding-left:2em">QueueUserWorkItem(System.Threading.WaitCallback)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Change code to not depend on the size of the ThreadPool for functionality. Portable code needs to be able to run correctly on multiple different ThreadPool implementations, not all of which support this method.</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.Threading.WaitCallback</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">#ctor(System.Object,System.IntPtr)</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.Type</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().Assembly</td> </tr> <tr> <td style="padding-left:2em">get_Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().Assembly</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.Windows.Application</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">get_Current</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">get_Resources</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">get_RootVisual</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Windows.Controls.ContentControl</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">get_Content</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> <tr> <td>System.Windows.Controls.Control</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">set_Background(System.Windows.Media.Brush)</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">set_FontFamily(System.Windows.Media.FontFamily)</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">set_FontSize(System.Double)</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">set_Foreground(System.Windows.Media.Brush)</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> <tr> <td>System.Windows.Controls.Frame</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">add_Navigating(System.Windows.Navigation.NavigatingCancelEventHandler)</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">remove_Navigating(System.Windows.Navigation.NavigatingCancelEventHandler)</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> <tr> <td>System.Windows.Controls.Grid</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">#ctor</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> <tr> <td>System.Windows.Controls.Panel</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">get_Children</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">set_Background(System.Windows.Media.Brush)</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> <tr> <td>System.Windows.Controls.Primitives.Popup</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">#ctor</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">set_Child(System.Windows.UIElement)</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">set_IsOpen(System.Boolean)</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">set_VerticalOffset(System.Double)</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> <tr> <td>System.Windows.Controls.ProgressBar</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">#ctor</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">set_IsIndeterminate(System.Boolean)</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> <tr> <td>System.Windows.Controls.UIElementCollection</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> <tr> <td>System.Windows.Controls.UserControl</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">#ctor</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">set_Content(System.Windows.UIElement)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Windows.DependencyObject</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Dispatcher</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Windows.FrameworkElement</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">add_Loaded(System.Windows.RoutedEventHandler)</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">remove_Loaded(System.Windows.RoutedEventHandler)</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">set_Height(System.Double)</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">set_HorizontalAlignment(System.Windows.HorizontalAlignment)</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">set_VerticalAlignment(System.Windows.VerticalAlignment)</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">set_Width(System.Double)</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> <tr> <td>System.Windows.HorizontalAlignment</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> <tr> <td>System.Windows.Media.Brush</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> <tr> <td>System.Windows.Media.Color</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">FromArgb(System.Byte,System.Byte,System.Byte,System.Byte)</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">op_Equality(System.Windows.Media.Color,System.Windows.Media.Color)</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> <tr> <td>System.Windows.Media.FontFamily</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> <tr> <td>System.Windows.Media.SolidColorBrush</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">get_Color</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> <tr> <td>System.Windows.Navigation.NavigatingCancelEventArgs</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> <tr> <td>System.Windows.Navigation.NavigatingCancelEventHandler</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">#ctor(System.Object,System.IntPtr)</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> <tr> <td>System.Windows.Navigation.NavigationEventArgs</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> <tr> <td>System.Windows.PresentationFrameworkCollection`1</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(`0)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Windows.ResourceDictionary</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">get_Item(System.Object)</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> <tr> <td>System.Windows.RoutedEventArgs</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> <tr> <td>System.Windows.RoutedEventHandler</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">#ctor(System.Object,System.IntPtr)</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> <tr> <td>System.Windows.Size</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">get_Height</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">get_Width</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> <tr> <td>System.Windows.Threading.Dispatcher</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">BeginInvoke(System.Action)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></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.Windows.Threading.DispatcherOperation</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> <tr> <td>System.Windows.UIElement</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">get_RenderSize</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">set_Visibility(System.Windows.Visibility)</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> <tr> <td>System.Windows.VerticalAlignment</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> <tr> <td>System.Windows.Visibility</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/as/asyncliveconnectsdk.1.0.5/Microsoft.Live-sl4-wp71.html
HTML
mit
108,455
<!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="./345365b461c69a298b9bfad10de6f3b0c9b407738c2910fa51715e975005975c.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/dd4e0e7832961238531999a457df03dd0566527a56270ef62ab318961397c259.html
HTML
mit
550
<!DOCTYPE html> <html> <head> <title>Insight</title> <!-- you can insert your company image here --> <!--<link rel="icon" href="../static/logo.png">--> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> html,body,h1,h2,h3,h4,h5 {font-family: "Raleway", sans-serif} .medal { background: #dddddd; border-radius: 50px; font-size: 20px; } .t_name { width: 150px; font-size: 15px; } .wrap { width: 100%; overflow:auto; } .fleft { float:left; width: 35%; } .fleft-faq { float:left; width: 60%; } .fcenter{ float:left; width: 50%; margin-left:20%; } .fright { float: right; width: 5%; } #inner { display: table; margin: 0 auto; } </style> </head> <body class="w3-light-grey"> <!-- Top container --> <div class="w3-bar w3-top w3-black w3-large" style="z-index:4"> <button class="w3-bar-item w3-button w3-hide-large w3-hover-none w3-hover-text-light-grey" onclick="w3_open();"><i class="fa fa-bars"></i>  Menu</button> <span class="w3-bar-item w3-right"> <!-- Todo: you can put your company picture here --> <img src="" alt="Logo" style="width:35px;height:35px;"/> </span> </div> <!-- Sidebar/menu --> <nav class="w3-sidebar w3-collapse w3-white w3-animate-left" style="z-index:3;width:300px;" id="mySidebar"><br> <div class="w3-container w3-row"> <div class="w3-col s4"> <img src="/static/people/{{ my_photo_id }}" class="w3-circle w3-margin-right" style="width:46px"> </div> <div class="w3-col s8 w3-bar"> <span>Welcome, <strong>{{ my_name }}</strong></span><br> <a href="#" class="w3-bar-item w3-button"><i class="fa fa-envelope"></i></a> <a href="#" class="w3-bar-item w3-button"><i class="fa fa-user"></i></a> <a href="#" class="w3-bar-item w3-button"><i class="fa fa-cog"></i></a> </div> </div> <hr> <div class="w3-container"> <h5>Dashboard</h5> </div> <div class="w3-bar-block"> <a href="#" class="w3-bar-item w3-button w3-padding-16 w3-hide-large w3-dark-grey w3-hover-black" onclick="w3_close()" title="close menu"><i class="fa fa-remove fa-fw"></i>  Close Menu</a> <a href="../getMyPage" class="w3-bar-item w3-button w3-padding"><i class="fa fa-users fa-fw"></i>  Personal Contirbution</a> <a href="../getSearchByPerson" class="w3-bar-item w3-button w3-padding"><i class="fa fa-eye fa-fw"></i>  Search By Person</a> <a href="../getSearchByArea" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bell fa-fw"></i>  Search By Area</a> <a href="../getTopContributors" class="w3-bar-item w3-button w3-padding"><i class="fa fa-users fa-fw"></i>  Top Contributors</a> <a href="../getTopPullRequesters" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bullseye fa-fw"></i>  Top "pull requesters"</a> <a href="../getHeatmap" class="w3-bar-item w3-button w3-padding"><i class="fa fa-bank fa-fw"></i>  Code Heatmap</a> <a href="#" class="w3-bar-item w3-button w3-padding w3-blue"><i class="fa fa-diamond fa-fw"></i>  FAQ</a> </div> </nav> <!-- Overlay effect when opening sidebar on small screens --> <div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" title="close side menu" id="myOverlay"></div> <!-- !PAGE CONTENT! --> <div class="w3-main" style="margin-left:300px;margin-top:43px;"> <div class="wrap"> <div class="fleft"></div> <div class="fcenter"><img style="width:484px;height:228px;" src="../static/faq.png"></img></div> <div class="fright"></div> </br> </br> <div class="fleft-faq"> <ul> <li><p style="font-size:150%;font-weight:bold">Why?</p><p style="padding-left:5em">Short answer: i needed to know who can review my pull request, and wanted to stop having to ask the same two person i knew when i just got to my company</p></li> <li><p style="font-size:150%;font-weight:bold">How?</p><p style="padding-left:5em">Python, <p><p style="padding-left:5em">Frontend: Flask + google charts + w3c template + various scripts,</p><p style="padding-left:5em">backend: query <a href="https://developer.atlassian.com/static/rest/bitbucket-server/latest/bitbucket-rest.html">bitbucket rest api</a></p></li> <li><p style="font-size:150%;font-weight:bold">What's the top Contributors?</p><p style="padding-left:5em">It's a very simply, very naive way to rank people by the amount of tickets that the person is market as its assignee</p></li> <li><p style="font-size:150%;font-weight:bold">What's the top 'pull requester'?</p><p style="padding-left:5em">The people that get asked for pull request</p></li> <li><p style="font-size:150%;font-weight:bold">What's that weird water meter watch when i search for a person?</p><p style="padding-left:5em">Its from google charts: gauge, and again it's a very simply, very naive indicator to the responsivness of a person to approve a pull request, simply divided amount of approved ticket by the total tickets asked from that person</p></li> <li><p style="font-size:150%;font-weight:bold">When can we see the...?</p><p style="padding-left:5em">Its a work in progress</p></li> <li><p style="font-size:150%;font-weight:bold">The information is wrong</p><p style="padding-left:5em">Possibly. sorry for that, one option is that for some of the repos the user/password used does not have permission to query. But most likely, i have bugs in my code, let me know and if you can send some way to validate that, send that too.<p></li> <li><p style="font-size:150%;font-weight:bold">You should add...</p><p style="padding-left:5em">I would love to get your feedback, send it to my mail<p></li> </ul> </div> </div> <!-- Footer --> <footer class="w3-container w3-padding-16 w3-light-grey"> </footer> <!-- End page content --> </div> <script> // Get the Sidebar var mySidebar = document.getElementById("mySidebar"); // Get the DIV with overlay effect var overlayBg = document.getElementById("myOverlay"); // Toggle between showing and hiding the sidebar, and add overlay effect function w3_open() { if (mySidebar.style.display === 'block') { mySidebar.style.display = 'none'; overlayBg.style.display = 'none'; } else { mySidebar.style.display = 'block'; overlayBg.style.display = 'block'; } } // Close the sidebar with the close button function w3_close() { mySidebar.style.display = 'none'; overlayBg.style.display = 'none'; } </script> </body> </html>
ohade/bitbucket-knowledge-insight
templates/faq.html
HTML
mit
6,965
<HTML> <HEAD> <meta charset="UTF-8"> <title>DischargePermitPoint.component1 - </title> <link rel="stylesheet" href="../../style.css"> </HEAD> <BODY> <a href="../index.html">com.epimorphics.android.myrivers.data</a>&nbsp;/&nbsp;<a href="index.html">DischargePermitPoint</a>&nbsp;/&nbsp;<a href=".">component1</a><br/> <br/> <h1>component1</h1> <code><span class="identifier">@NotNull</span> <span class="keyword">fun </span><span class="identifier">component1</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">java.lang.String</span></code>permit identifier <h3>Property</h3> <p><a name="id"></a> <code>id</code> - permit identifier </BODY> </HTML>
alessio-b-zak/myRivers
android/doc/com.epimorphics.android.myrivers.data/-discharge-permit-point/component1.html
HTML
mit
718
{% extends 'base.html' %} {% load staticfiles %} {% block title %}Manage Subscriptions - StartupCrate{% endblock %} {% block style %} <style> form { text-align: center; } .custom-panel { margin: 0 -32px; border: 0; border-radius: 0; border-top: gray solid 1px; } .custom-panel .panel-heading { padding: 10px 30px; border: 0; border-radius: 0; background-color: white; } .custom-panel .panel-title { font-size: 18px; } .custom-panel .panel-body { padding: 15px 30px; } .left-aligned { text-align: left; } .left-aligned h4 { padding: 8px 0; } .section-title { padding: 0 30px; font-size: 40px; } .section-divider { margin: 8px 30px; border: gray solid 1px; } .subscription-card { margin: 16px 32px; padding: 16px 32px 0 32px; background: white; border-radius: 4px; } .collapse-icon { float: right; } .wide-button { width: 90%; } .wide-input { width: 100%; margin: 8px 0; } .crate-card { margin: 16px; padding: 16px; background: white; border-radius: 4px; } .crate-img { margin: 32px 0; } .crate-price { font-weight: bold; color: #45b1e2; } .value { font-size: 24px; margin-left: 8px; } .units { font-size: 12px; } #subscriptions-content { min-height: 100vh; padding: 96px 0 96px 0; background: lightgray; } </style> {% endblock %} {% block content %} <div id="subscriptions-content" class="row"> <div class="section-title left-aligned">Manage Subscriptions</div> <hr class="section-divider"> {% if subscriptions %} {% for subscription in subscriptions %} <div class="col-xs-12 col-sm-6"> <div class="subscription-card"> <h2> {% if subscription in personal_subs %} Startup Plan {% else %} Gift Plan {% endif %} </h2> <div class="left-aligned"> <h4><strong>Plan type:</strong> {{ subscription.customer_object.plan_type }}</h4> <div class="row"> <div class="col-xs-12 col-sm-12 col-lg-6"> <a class="wide-input green btn btn-success" href="/change/{{ subscription.id }}/"> {% if subscription.customer_object.plan_id == 'startupcrate_monthly' %} Upgrade Plan {% else %} Downgrade Plan {% endif %} </a> </div> <div class="col-xs-12 col-sm-12 col-lg-6"> <a class="wide-input btn btn-danger" href="/cancel/{{ subscription.id }}/"> Cancel Subscription </a> </div> </div> <h4><strong>Next bill date:</strong> {{ subscription.customer_object.next_bill }}</h4> <h4><strong>Sent to:</strong> {{ subscription.recipient_name }}</h4> <div class="panel-group" id="accordion{{ subscription.id }}" role="tablist" aria-multiselectable="true"> <div class="custom-panel panel"> <div class="panel-heading" role="tab" id="payment-heading{{ subscription.id }}"> <h4 class="panel-title"> <span class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion{{ subscription.id }}" href="#payment-info{{ subscription.id }}" aria-expanded="true" aria-controls="payment-info{{ subscription.id }}"> <span>Payment Information</span> <span class="collapse-icon glyphicon glyphicon-chevron-down"></span> </span> </h4> </div> <div id="payment-info{{ subscription.id }}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="payment-heading{{ subscription.id }}"> <div class="panel-body"> <h4> <strong>Credit card number:</strong> XXXX-XXXX-XXXX-{{ subscription.customer_object.credit_card }} </h4> </div> </div> </div> <div class="custom-panel panel"> <div class="panel-heading" role="tab" id="shipping-heading{{ subscription.id }}"> <h4 class="panel-title"> <span class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion{{ subscription.id }}" href="#shipping-info{{ subscription.id }}" aria-expanded="false" aria-controls="shipping-info{{ subscription.id }}"> <span>Shipping Information</span> <span class="collapse-icon glyphicon glyphicon-chevron-down"></span> </span> </h4> </div> <div id="shipping-info{{ subscription.id }}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="shipping-heading{{ subscription.id }}"> <div class="panel-body"> <h4><strong>Address:</strong> {{ subscription.ship_address }}</h4> {% if subscription in personal_subs %} <a class="wide-input blue btn btn-primary" href="/settings/"> Change Address </a> {% else %} <form method="post" action="/subscriptions/"> {% csrf_token %} <input name="subscription_id" type="hidden" value="{{ subscription.id }}"> <select name="pastaddr" class="wide-input form-control"> <option value="0">Select an address from your history</option> {% for gift_addr in gift_addrs %} <option value="{{ gift_addr.id }}">{{ gift_addr }}</option> {% endfor %} </select> <label>OR</label> <input name="newaddr" class="wide-input form-control" type="text" placeholder="New gift address" maxlength="256"> <input class="wide-input blue btn btn-primary" type="submit" value="Change Address"> </form> {% endif %} </div> </div> </div> </div> </div> </div> </div> {% endfor %} {% else %} <h3>No Subscriptions Yet</h3> <div class="col-xs-offset-0 col-xs-12 col-sm-offset-1 col-sm-5 col-lg-offset-3 col-lg-3"> <div class="crate-card"> <h1>1 Month Plan</h1> <div class="crate-price"> <span class="value">$15.95</span><span class="units">/mo + $5 S/H</span> </div> <img class="crate-img" src="{% static 'img/1month.png' %}"> <a class="wide-button blue btn btn-primary" href="/crate/1/">SELECT CRATE</a> </div> </div> <div class="col-xs-offset-0 col-xs-12 col-sm-offset-0 col-sm-5 col-lg-offset-0 col-lg-3"> <div class="crate-card"> <h1>3 Month Plan</h1> <div class="crate-price"> <span class="value" id="days">$14.25</span><span class="units">/mo + $5 S/H</span> </div> <img class="crate-img" src="{% static 'img/3month.png' %}"> <a class="wide-button blue btn btn-primary" href="/crate/3/">SELECT CRATE</a> </div> </div> {% endif %} </div> {% endblock %}
jcan37/startupcrate
app/templates/app/subscriptions.html
HTML
mit
10,758
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>FP.py</title> <meta name="description" content="An Introduction to Functional Programming in Python"> <meta name="author" content="Elliot Cameron"> <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.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> <link rel="stylesheet" href="css/reveal.css"> <link rel="stylesheet" href="css/custom.css"> <link rel="stylesheet" href="css/theme/night.css" id="theme"> <!-- Code syntax highlighting --> <link rel="stylesheet" href="lib/css/zenburn.css"> <!-- Printing and PDF exports --> <script> var link = document.createElement( 'link' ); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css'; document.getElementsByTagName( 'head' )[0].appendChild( link ); </script> <!--[if lt IE 9]> <script src="lib/js/html5shiv.js"></script> <![endif]--> </head> <body> <div class="reveal"> <!-- Any section element inside of this container is displayed as a slide --> <div class="slides customized"> <section id="intro"> <section> <h1>FP.py</h1> <h3>An Introduction to Functional Programming in Python</h3> <p> <small>by <a href="http://3noch.github.io">Elliot Cameron</a> / <a href="https://github.com/3noch">3noch</a></small> </p> <p> <small>Follow along<br><a href="http://3noch.github.io/fp.py">3noch.github.io/fp.py</a></small> </p> <p> <small><em>Note:</em> Alt+Click on an element to zoom in.</small> </p> <p> Ask questions! </p> </section> <section> <h2>Objective</h2> <div class="fragment"> <img src="img/wrong.jpg"> <a class="reference" ahref="http://www.lambdalounge.org.uk/">ref</a> </div> </section> <section> <h2>Objective</h2> <h3>Not</h3> <p> <ul> <li>to convince you to write all your Python code in FP style.</li> </ul> </p> <h3>To</h3> <p> <ul> <li>broaden your perspective on programming in general,</li> <li>increase your appreciation for alternative ways of approaching a problem,</li> <li>help you write better code.</li> </ul> </p> </section> </section> <section> <section> <h2>Who?</h2> <p class="fragment"> <img src="img/ranking.png" style="width: 40%; height: auto"> <a class="reference" href="http://www.sitepoint.com/best-programming-language-learn-2014-mid-year-update/">ref</a> <br> FP is starting to gain momentum </p> </section> <section> <h2>It's weird</h2> <h3>and scary</h3> <p> <pre> <code class="haskell" data-trim> type Seconds = Int secs :: Int -> Seconds; secs = (* 1000000) wait :: Seconds -> IO (); wait = threadDelay . secs schedule :: Seconds -> IO () -> IO ThreadId; schedule s a = forkIO $! wait s >> a (<>) :: ByteString -> ByteString -> ByteString; (<>) = B.append (//) :: a -> (a -> b) -> b; x // f = f x (|>) :: IO () -> IO () -> IO (); a |> b = forkIO a >> b infixr 0 =>>; (=>>) :: Monad m => m a -> (a -> m b) -> m a a =>> f = do r <- a; _ <- f r; return r type ErrorIO = IO att :: IO a -> IO (Maybe a); att a = tryWith (const $! return Nothing) (Just <$> a) tryRun :: IO () -> IO (); tryRun a = tryWith (\x -> do print x; wait 2) a (???) :: ErrorIO a -> [IO a] -> IO a; e ??? as = foldr (?>) e as where x ?> y = x `X.catch` (\(_ :: X.SomeException) -> y) </code> </pre> <a class="reference" href="https://github.com/corsis/PortFusion/blob/master/src/Main.hs">ref</a> </p> </section> <section> <h2>But beware the <a href="http://lmgtfy.com/?q=Blub+Paradox&l=1">Blub Paradox</a></h2> <div class="fragment"> <q>"I don't understand your way, so mine must be better."</q> <img src="img/amish.jpg"> <a class="reference" href="http://www.toledoblade.com/image/2001/05/06/800x_b1_cCM_z/Amish-in-an-English-world-4.jpg">ref</a> </div> </section> <section> <h2>Discern</h2> <h3 class="fragment">There are <em>two</em> ways to be puzzled</h3> <table class="comparison"> <tr> <td class="fragment"> \[ \begin{aligned} \nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} &amp; = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} &amp; = 4 \pi \rho \\ \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} &amp; = \vec{\mathbf{0}} \\ \nabla \cdot \vec{\mathbf{B}} &amp; = 0 \end{aligned} \] </td> <td class="fragment"> <img src="img/rube.jpg"> </td> </tr> <tr> <td class="caption fragment"> he knows something I don't </td> <td class="caption fragment"> he doesn't know what he's doing (and neither do I) </td> </tr> </table> </section> </section> <section id="myths"> <section> <h2>Myth 1<span class="fragment">: FP is Hard</span></h2> <div class="fragment"> <h3>hard to what?</h3> <table> <tr class="fragment"> <td><strong>learn</strong></td><td>probably only if you're already used to something else*</td> </tr> <tr class="fragment"> <td><strong>read</strong></td><td>same deal*</td> </tr> <tr class="fragment"> <td><strong>test</strong></td><td>to the contrary, FP tends to be much easier to test*</td> </tr> <tr class="fragment"> <td><strong>debug</strong></td><td>to the contrary, expressions are the easiest types of things to debug*</td> </tr> </table> <p style="text-align: left"><small>* courteously suspend disbelief if possible</small></p> </div> </section> <section> <h2>Myth 2<span class="fragment">: FP is Slow</span></h2> <div class="fragment"> <h4>not necessarily...</h4> <img src="img/speed.png"> <a class="reference" href="http://benchmarksgame.alioth.debian.org/u32/compare.php?lang=ghc&lang2=python3">ref</a> </div> </section> <section> <h2>Myth 3<span class="fragment">: FP is for Idealists</span></h2> <div class="fragment"> <h4>prove it</h4> <img src="img/lang-analysis.jpg" style="width: 60%; height: auto"> <blockquote> To become a competent realist you must start with ideals. <br> <small>- Anonymous</small> </blockquote> </div> </section> </section> <section id="history"> <section> <h2>How we got here</h2> <h4>We live in the imperative dynasty:<br>object-oriented and procedural are both imperative</h4> <img src="img/directions.png" style="width: 70%; height: auto"> <a class="reference" href="http://www.mapquest.com/?q2=357718324+type:mqid#e55d2ef3dd8453a2788d7198">ref</a> <br> driving directions depend on your current position </section> <section> <h2>The Father of Imperative Thinking</h2> <img src="img/alan.jpg" style="width: 30%; height: auto"> <a class="reference" href="http://en.wikipedia.org/wiki/Alan_Turing#/media/File:Alan_Turing_photo.jpg">ref</a> <p>Alan Turing: Invented the "Turing Machine" (1936)</p> </section> <section> <h2>The Father of Functional Thinking</h2> <img src="img/alonzo.jpg" style="width: 30%; height: auto"> <a class="reference" href="http://en.wikipedia.org/wiki/Alonzo_Church#/media/File:Alonzo_Church.jpg">ref</a> <p>Alonzo Church: Formulated λ-calculus (1928-1929) and Turing's Ph.D. Advisor</p> </section> <section> <h3>Next turn: Maps</h3> <img src="img/road-map.jpg" style="width: 85%; height: auto"> <a class="reference" href="http://upload.wikimedia.org/wikipedia/commons/1/16/1929_New_England_road_map.jpg">ref</a> <br> maps do not depend on your current position </section> </section> <section id="principle1"> <section> <h2>Principle 1<span class="fragment">: <span style="text-decoration: underline">Function</span></span><span class="fragment">al</span></h2> <h3 class="fragment">math and pure functions</h3> </section> <section> <h3>Math 101: Functions</h3> <table class="comparison"> <tr> <td> <img src="img/vertical-line-test.png" style="background-color: white; width: 80%; height: auto"> <a class="reference" href="http://en.wikipedia.org/wiki/Vertical_line_test#/media/File:Vertical_line_test.png">ref</a> </td> <td> For every input there is precisely one output. <td> </tr> <tr> <td class="caption"> The Vertical Line Test </td> <td></td> </tr> </table> </section> <section> <h3>a.k.a. Referential Transparency</h3> <h4>and why FP is sometimes called "value-oriented programming"</h4> <dl> <dt>referential transparency</dt> <dd> <em>ref·er·en·tial trans·par·en·cy</em> <blockquote style="font-size: 80%"> An expression is said to be <u>referentially transparent</u> if it can be replaced with its value without changing the behavior of a program (in other words, yielding a program that has the same effects and output on the same input). The opposite term is <u>referential opaqueness</u>. <br><br> While in mathematics all function applications are referentially transparent, in programming this is not always the case. The importance of referential transparency is that it allows the programmer and the compiler to reason about program behavior. <a class="reference" href="http://en.wikipedia.org/wiki/Referential_transparency_(computer_science)">ref</a> </blockquote> </dd> </dl> </section> <section> <h4>Example: Python's <code>ord</code> function</h4> <img src="img/ascii-table.png" style="width:70%; height: auto"> <p> <code>ord("P")</code> can be replaced with <code>80</code> in every case, and vice versa, without any change to a program's behavior. </p> </section> <section> <h3>Observe:</h3> <table class="comparison"> <tr> <td> <pre> <code class="python" data-trim> def double(x): return x * 2 def get_last_name(full_name): return full_name.partition(" ")[2] def get_penultimate(items): return (items[-2] if len(items) > 1 else None) </code> </pre> </td> <td> Python Functions? Yes <br> Math Functions? Yes </td> </tr> <tr> <td> <pre> <code class="python" data-trim> def get_random(): return random.randint(1, 10) global_state = 5 def get_next_state(steps): global global_state global_state += steps return global_state def save_file(contents): with open("file.txt", "w") as file_handle: file_handle.write(contents) def change_arg(arg): arg = arg + 1 def hello_world(): print("Hello world") </code> </pre> </td> <td> Python Functions? Yes <br> Math Functions? No </td> </tr> </table> </section> <section> <h3>How to Break Referential Transparency</h3> <h4>and why FP is also sometimes called "programming without assignment"</h4> <ul> <li>The arch-nemesis of referential transparency is <em>mutable state</em>.</li> <li>If you want referential transparency, you must give up <ul> <li class="fragment"><strike>assignment</strike></li> <li class="fragment">including <strike>side-effects</strike>.</li> </ul> </ul> <pre class="fragment"> <code class="python" data-trim> global_state = 5 def get_next_state(steps): global global_state global_state += steps # <-- NOPE! return global_state def save_file(contents): with open("file.txt", "w") as file_handle: file_handle.write(contents) # <-- NOPE! def change_arg(arg): arg = arg + 1 # <-- NOPE! def hello_world(): print("Hello world") # <-- NOPE! </code> </pre> </section> <section> <h3>"Impossible!"</h3> <p class="fragment"> Oh but it is. Turing and Church proved that Turing machines and λ-calculus are equivalent models of computation! </p> <h3 class="fragment">"But how?"</h3> <p class="fragment"> More on that later. </p> </section> <section> <h3>Why Bother?</h3> <h4>why referential transparency matters</h4> <ul> <li> Optimizes the programmer's abilities <ul> <li>Deterministic</li> <li>Unaffected by <em>ordering</em> or time</li> <li>Simple to understand</li> <li>Easy to refactor</li> <li>Easy to abstract / modularize</li> <li>Easy to compose (think Legos)</li> <li>Easy to isolate and test</li> <li>Easy to verify by proofs</li> </ul> </li> <li> Optimizes the machine's abilities <ul> <li>Memoization</li> <li>Common subexpression elimination</li> <li>Lazy evaluation</li> <li>Parallelization</li> <li>Easy to verify by static analysis</li> </ul> </li> </ul> </section> </section> <section id="principle2"> <section> <h2> Principle 2<span class="fragment">: <u>Function</u><span class="fragment">s of Higher Order</span> </h2> <div class="fragment"> <h3>first-class and higher-order functions</h3> <img src="img/whoa.jpg"> <a class="reference" href="https://s-media-cache-ak0.pinimg.com/originals/2e/f7/fd/2ef7fd432d5fc9ecbf86e3add52ada46.jpg">ref</a> </div> </section> <section> <h3>Higher-order Functions</h3> <h4 class="fragment">are functions that give or take functions</h4> <div class="fragment"> <p> (f &#8728; g)(x) = f(g(x)) </p> <img src="img/russian-doll.jpg" style="width: 40%; height: auto"> <a class="reference" href="http://en.wikipedia.org/wiki/Matryoshka_doll#/media/File:Russian-Matroshka2.jpg">ref</a> <p> <strong>Exercise:</strong> What are some higher-order functions in math? </p> </div> </section> <section> <h3>First-class Functions</h3> <h4 class="fragment">are boring</h4> <div class="fragment"> <p> "First-class" means you can pass it around just like anything else (numbers, strings, objects). </p> <pre> <code class="python" data-trim> # map takes another function last_names = map(lambda full_name: full_name.partition(" ")[2], names) # filter does too capitalized_names = filter(lambda name: name[0] == name[0].upper(), last_names) def compose(f, g): # takes two functions return lambda x: f(g(x)) # gives a new function </code> </pre> </div> </section> <section> <h2>That's it: 2 Principles</h2> <h3 class="fragment">What happens when we apply them?</h3> </section> </section> <section id="application1"> <section> <h2>Application 1<span class="fragment">: Immutable Data</span></h2> <div class="fragment"> <img src="img/immutable.jpg" style="width: 80%; height: auto"> <a class="reference" href="http://bodil.org/ten-minute-clojure/#/10">ref</a> </div> </section> <section> <img src="img/kay.jpg"> <a class="reference" href="https://lh6.googleusercontent.com/proxy/ywPUp7dCkdmdnAVHi-N_LUwHPeROBunJLOGSLcSjBHRzQcZElEQNPnLXxFclj4EBaAUL-YUwnzmRk1hg8wJmmyw7kWo=w506-h285-n">ref</a> </section> <section> <h3>Don't change, copy</h3> <pre> <code class="python" data-trim> # no age = 30 if date > birth_date: age += 1 # yes age = 30 corrected_age = age + 1 if date > birth_date else age </code> </pre> </section> <section> <h3>Isn't that horribly slow?</h3> <h4 class="fragment">it depends</h4> <ul> <li class="fragment"> <p> Some algorithms actually go faster with immutable structures, <br>especially ones that can run in parallel. </p> </li> <li class="fragment"> Optimizations exist to make immutable data work efficiently: <ul> <li>Sharing*</li> <li>Path copying*</li> <li>etc.</li> </ul> <p>* Available to Python through a library.</p> </li> <li class="fragment"> In many average cases, forgoing mutation is much easier than you might think. </li> </ul> </section> </section> <section id="application2"> <section> <h2>Application 2<span class="fragment">: No Loops</span></h2> <pre class="fragment"> <code class="python" data-trim> the_sum = 0 for i in range(10): the_sum += i # NOPE! </code> </pre> <div class="fragment"> <h4>Use recursion instead</h4> <pre class="fragment"> <code class="python" data-trim> def get_sum(values, start=0): if not values: return start the_rest = values[1:] # why is this ok? return get_sum(the_rest, start + values[0]) the_sum = get_sum(range(10)) # 45 # or get_sum = lambda values, start=0: get_sum(values[1:], start + values[0]) if values else start the_sum = get_sum(range(10)) # 45 # or the_sum = sum(range(10)) # 45 </code> </pre> </div> </section> <section> <h3>Recursion is Bad in Python</h3> <p> Python doesn't implement any optimizations for recursion, so recursion bloats your stack really fast, runs very slowly, and can easily hit the recursion limit. </p> <pre class="fragment"> <code class="python" data-trim> get_sum(range(1000000)) # takes forever </code> </pre> <h4 class="fragment">But not to fear, we can</h4> <ul> <li class="fragment">use a library to help, or</li> <li class="fragment">realize that...</li> </ul> </section> <section> <h3>All Loops Can Be Broken Down</h3> <div class="fragment"> <p> <code>sum</code> is an example of a particular <em>type</em> of loop: <strong>fold</strong>. </p> </div> <h4 class="fragment">All loops can be written in terms of</h4> <ul> <li class="fragment">maps</li> <li class="fragment">filters</li> <li class="fragment"> folds (also called "reduce") <br> <small class="fragment">in fact, <em>fold</em> is really all you need</small> </li> </ul> <pre class="fragment"> <code class="python" data-trim> map(lambda x: x * 2, range(10)) # [0, 2, 4, 6, 8, 10, 12, 14, 16, 18] filter(lambda x: x < 5, range(10)) # [0, 1, 2, 3, 4] reduce(lambda x, y: x + y, range(10), 0) # 45 # mixup map(lambda x: x * 2, filter(lambda x: x < 5, range(10))) # [0, 2, 4, 6, 8] # or [x * 2 for x in range(10) if x < 5] # [0, 2, 4, 6, 8] </code> </pre> <p class="fragment"> We can rely on these tools to skip the need for explicit recursion. </p> </section> </section> <section id="application3"> <section> <h2>Application 3<span class="fragment">: Partial Application and Currying</span></h2> <h4 class="fragment">and why every function really only has one argument</h4> <div class="fragment"> <img src="img/curry.jpg"> <a class="reference" href="https://wiki.haskell.org/Haskell_Brooks_Curry">ref</a> <br> Haskell Brooks Curry </div> </section> <section> <h3>Partial Application</h3> <h4>fill in the holes</h4> <h5 class="fragment">What happens when you don't provide all the arguments?</h5> <pre class="fragment"> <code class="python" data-trim> def add_them(a, b): return a + b add_them(2) # TypeError: add_them() takes exactly 2 arguments (1 given) </code> </pre> <h5 class="fragment">Why not build the result in phases?</h5> <pre class="fragment"> <code class="python" data-trim> from functools import partial partial(add_them, 2) # &lt;functools.partial at 0x322bf48&gt; partial(add_them, 2)(3) # 5 </code> </pre> </section> <section> <h3>Currying</h3> <h4>not directly supported, but don't need it</h4> <ul> <li> <p> Currying treats every function as a single-argument function. <br> Given its one input, it returns a new function that takes the next one. </p> </li> <li> <p> Currying is very nice, but not essential. <br> In Python, we can use libraries to give us some of these features. </p> </li> </ul> </section> </section> <section id="application4"> <section> <h2>Application 4<span class="fragment">: Core and Crust</span></h2> <h4 class="fragment">designing entire apps with FP</h4> <div class="fragment"> <img src="img/core-crust.jpg" style="width: 50%; height: auto"> <a class="reference" href="http://www.sciencedaily.com/releases/2013/10/131010142750.htm">ref</a> </div> </section> <section> <h3>Pure Core / Thin Effectful Crust</h3> <img src="img/wheel.jpg"> <p class="fragment"> Push as much "impure" code into the crust, including: </p> <ul> <li class="fragment">human interaction</li> <li class="fragment">file I/O</li> <li class="fragment">networking</li> <li class="fragment">time</li> </ul> </section> <section> <h3>Dependency Injection / Parametric Design</h3> <p> Avoiding mutation essentially forces you to build parametric components, <br> i.e. pieces that require their dependencies before they can be used. </p> </section> </section> <section> <section> <h2>Application 5<span class="fragment">: Verifiable Correctness</span></h2> <h4 class="fragment">testing expressions</h4> <div class="fragment"> <img src="img/wave.jpg" style="width: 60%; height: auto"> <a class="reference" href="http://commons.wikimedia.org/wiki/File:Oscilloscope_Triangle_Wave.jpg">ref</a> </div> </section> <section> <h3>Why Expressions Rock for Testing</h3> <ul> <li>Time is in your hands: start, stop, fast-forward, rewind</li> <li>Zooming: see parts working at any layer</li> <li>Property-based: you can write your tests in terms of properties instead of inputs</li> <li>Proofs: you can write formal proofs</li> </ul> </section> </section> <section id="scratch"> <h2>Lots more...</h2> <h3>we're only just getting started</h3> <ul> <li>Algebraic data types</li> <li>Pattern matching</li> <li>Lazy data structures (infinite lists, etc.)</li> <li>Functors, Monads, etc.</li> <li>Concurrency / Parallelism</li> </ul> </section> <section id="others"> <h2>Don't believe me?</h2> <h3>try asking</h3> <ul> <li>Edsger Dijkstra</li> <li>Joel Spolsky</li> <li>Uncle Bob Martin (author of Clean Code, etc.)</li> <li>of course, many others</li> </ul> </section> <section id="disclaimer"> <h2>Disclaimer</h2> <p> Don't confuse your experience of functional programming in Python with functional programming in general. </p> <p> Python's design is not intentionally supportive of FP, so the experience suffers to some degree. </p> <p> <a href="http://stackoverflow.com/a/1017937/503377">more on <em>why</em> this is the case</a> </p> </section> <section id="every-day"> <h2>Every-day life</h2> <p> <a href="https://github.com/kachayev/fn.py">fn.py</a> is a great start. </p> <p> Go forth and code. </p> </section> </div> </div> <script src="lib/js/head.min.js"></script> <script src="js/reveal.js"></script> <script> // Full list of configuration options available at: // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ controls: true, progress: true, history: true, center: true, transition: 'slide', // none/fade/slide/convex/concave/zoom math: { // mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js', config: 'TeX-AMS_HTML-full' }, // Optional reveal.js plugins dependencies: [ { src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, { src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } }, { src: 'plugin/zoom-js/zoom.js', async: true }, { src: 'plugin/notes/notes.js', async: true }, { src: 'plugin/math/math.js', async: true } ] }); </script> </body> </html>
3noch/fp.py
index.html
HTML
mit
26,204
<!DOCTYPE html> <html lang="en"> <head> {% include meta.html %} <title>Bharath's Blog</title> <link rel="alternate" type="application/rss+xml" href="/atom.xml"/> {% include css.html %} <!--[if lt IE 9]> <script type="text/javascript" src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link rel="shortcut icon" href="/images/favicon.ico"> <script type="text/javascript"> var pageType = "about"; var pageTitle = pageType; </script> </head> <body> {% include fork-on-github.html %} {% include javascripts.html %} {% include topmost-nav.html %} <div class="navbar navbar-default"> <ul class="nav navbar-nav" style="padding-left: 50px"> <li><a class="navbar-link" href="/pages/about/work.html">Work</a></li> <li><a class="navbar-link" href="/pages/about/education.html">Education</a></li> <li><a class="navbar-link" href="/pages/about/philosophy.html">Philosophy</a></li> <li><a class="navbar-link" href="/pages/about/twitter-timeline.html">Twitter Timeline</a></li> <li><a class="navbar-link" href="/pages/about/movies.html">Movies</a></li> <li><a class="navbar-link" href="/pages/about/books.html">Books</a></li> <li><a class="navbar-link" href="/pages/about/travel.html">Travel</a></li> <li><a class="navbar-link" href="/pages/about/quotes.html">Favorite Quotes</a></li> <li><a class="navbar-link" href="/pages/about/current.html">Current Affairs</a></li> <li><a class="navbar-link" href="/pages/about/slideshare.html">Slideshare</a></li> <li><a class="navbar-link" href="/pages/about/torrents.html">Torrents</a></li> <!--li><a class="navbar-link" href="/pages/about/dilbert.html">Dilbert</a></li--> <li><a class="navbar-link" href="/pages/about/resources.html">Resources</a></li> </ul> </div> <div class="container"> {{ content }} </div> {% include footer.html %} {% include google-analytics.html %} {% include gauges.html %} </body> {% include postpagescripts.html %} </html>
bharath12345/bharath12345.github.io
_layouts/about.max.html
HTML
mit
2,094
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>coquelicot: 3 m 40 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.10.2 / coquelicot - 3.2.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> coquelicot <small> 3.2.0 <span class="label label-success">3 m 40 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-15 09:37:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-15 09:37:41 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 coq 8.10.2 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 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;[email protected]&quot; homepage: &quot;http://coquelicot.saclay.inria.fr/&quot; dev-repo: &quot;git+https://gitlab.inria.fr/coquelicot/coquelicot.git&quot; bug-reports: &quot;https://gitlab.inria.fr/coquelicot/coquelicot/issues&quot; license: &quot;LGPL-3.0-or-later&quot; build: [ [&quot;autoconf&quot;] {dev} [&quot;./configure&quot;] [&quot;./remake&quot; &quot;-j%{jobs}%&quot;] ] install: [&quot;./remake&quot; &quot;install&quot;] depends: [ &quot;coq&quot; {&gt;= &quot;8.8&quot;} &quot;coq-mathcomp-ssreflect&quot; {&gt;= &quot;1.6&quot;} &quot;conf-autoconf&quot; {build &amp; dev} (&quot;conf-g++&quot; {build} | &quot;conf-clang&quot; {build}) ] tags: [ &quot;keyword:real analysis&quot; &quot;keyword:topology&quot; &quot;keyword:filters&quot; &quot;keyword:metric spaces&quot; &quot;category:Mathematics/Real Calculus and Topology&quot; &quot;logpath:Coquelicot&quot; &quot;date:2020-12-11&quot; ] authors: [ &quot;Sylvie Boldo &lt;[email protected]&gt;&quot; &quot;Catherine Lelay &lt;[email protected]&gt;&quot; &quot;Guillaume Melquiond &lt;[email protected]&gt;&quot; ] synopsis: &quot;A Coq formalization of real analysis compatible with the standard library&quot; url { src: &quot;https://coquelicot.gitlabpages.inria.fr/releases/coquelicot-3.2.0.tar.gz&quot; checksum: &quot;sha512=d7ac2dcc48499a95e73f875da0f24fec6714ad06f16c4675c764d0600034fa51c10c9eaaacef7943e1147a9412e24274228ac9d17f2c0e07eb86932bc2b264a1&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-coquelicot.3.2.0 coq.8.10.2</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-coquelicot.3.2.0 coq.8.10.2</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 m 47 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-coquelicot.3.2.0 coq.8.10.2</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 m 40 s</dd> </dl> <h2>Installation size</h2> <p>Total: 6 M</p> <ul> <li>1 M <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/RInt.vo</code></li> <li>565 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Hierarchy.vo</code></li> <li>561 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/SF_seq.vo</code></li> <li>419 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Derive.vo</code></li> <li>376 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Lim_seq.vo</code></li> <li>344 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/PSeries.vo</code></li> <li>322 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/AutoDerive.vo</code></li> <li>264 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Rcomplements.vo</code></li> <li>247 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Derive_2d.vo</code></li> <li>222 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/RInt_analysis.vo</code></li> <li>205 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Continuity.vo</code></li> <li>190 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Series.vo</code></li> <li>171 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Seq_fct.vo</code></li> <li>170 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Rbar.vo</code></li> <li>147 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/ElemFct.vo</code></li> <li>134 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Complex.vo</code></li> <li>120 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Equiv.vo</code></li> <li>119 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/KHInt.vo</code></li> <li>103 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Lub.vo</code></li> <li>93 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Compactness.vo</code></li> <li>89 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/RInt_gen.vo</code></li> <li>77 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Iter.vo</code></li> <li>63 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Markov.vo</code></li> <li>46 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/Coquelicot/Coquelicot.vo</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-coquelicot.3.2.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.06.1-2.0.5/released/8.10.2/coquelicot/3.2.0.html
HTML
mit
9,722
<!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.1.102: deps Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.1.102 </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><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> <!-- 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_94a36784afa54c0b50996002372b429e.html">deps</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">deps Directory Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="subdirs"></a> Directories</h2></td></tr> <tr class="memitem:dir_7edecdc49f3d0e5b35ff20670f3bf33e"><td class="memItemLeft" align="right" valign="top">directory &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_7edecdc49f3d0e5b35ff20670f3bf33e.html">v8</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:44:11 for V8 API Reference Guide for node.js v0.1.102 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
cb97cdb/html/dir_94a36784afa54c0b50996002372b429e.html
HTML
mit
4,300
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>ChildProcessFactory | batch-cluster</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> </head> <body> <header> <div class="tsd-page-toolbar"> <div class="container"> <div class="table-wrap"> <div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base=".."> <div class="field"> <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label> <input id="tsd-search-field" type="text" /> </div> <ul class="results"> <li class="state loading">Preparing search index...</li> <li class="state failure">The search index is not available</li> </ul> <a href="../index.html" class="title">batch-cluster</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="childprocessfactory.html">ChildProcessFactory</a> </li> </ul> <h1>Interface ChildProcessFactory</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <section class="tsd-panel tsd-comment"> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>These are required parameters for a given BatchCluster.</p> </div> </div> </section> <section class="tsd-panel tsd-hierarchy"> <h3>Hierarchy</h3> <ul class="tsd-hierarchy"> <li> <span class="target">ChildProcessFactory</span> </li> </ul> </section> <section class="tsd-panel-group tsd-index-group"> <h2>Index</h2> <section class="tsd-panel tsd-index-panel"> <div class="tsd-index-content"> <section class="tsd-index-section "> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-interface"><a href="childprocessfactory.html#processfactory" class="tsd-kind-icon">process<wbr>Factory</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface"> <a name="processfactory" class="tsd-anchor"></a> <h3>process<wbr>Factory</h3> <div class="tsd-signature tsd-kind-icon">process<wbr>Factory<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">function</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/mceachen/batch-cluster.js/blob/master/src/BatchCluster.ts#L40">BatchCluster.ts:40</a></li> </ul> </aside> <div class="tsd-comment tsd-typography"> <div class="lead"> <p>Expected to be a simple call to execFile. Platform-specific code is the responsibility of this thunk. Error handlers will be registered as appropriate.</p> </div> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-siganture"> <ul class="tsd-signatures tsd-kind-type-literal tsd-parent-kind-property tsd-is-not-exported"> <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">ChildProcess</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ChildProcess</span><span class="tsd-signature-symbol">&gt;</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">ChildProcess</span> <span class="tsd-signature-symbol"> | </span> <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><span class="tsd-signature-type">ChildProcess</span><span class="tsd-signature-symbol">&gt;</span> </h4> </li> </ul> </li> </ul> </div> </section> </section> </div> <div class="col-4 col-menu menu-sticky-wrap menu-highlight"> <nav class="tsd-navigation primary"> <ul> <li class="globals "> <a href="../globals.html"><em>Globals</em></a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> </ul> <ul class="current"> <li class="current tsd-kind-interface"> <a href="childprocessfactory.html" class="tsd-kind-icon">Child<wbr>Process<wbr>Factory</a> <ul> <li class=" tsd-kind-property tsd-parent-kind-interface"> <a href="childprocessfactory.html#processfactory" class="tsd-kind-icon">process<wbr>Factory</a> </li> </ul> </li> </ul> <ul class="after-current"> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="http://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
mceachen/batch-cluster.js
docs/interfaces/childprocessfactory.html
HTML
mit
10,859
<!doctype html> <html class="no-js" lang="en-US"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Saba Heravi | Personal Homepage</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Place favicon.ico in the root directory --> <link rel="icon" href="img/icons/favicon.png?v=2"> <!-- Fonts --> <link href='https://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Lato:400,400italic,100,300,700,900' rel='stylesheet' type='text/css'> <!-- All CSS FILES --> <link rel="stylesheet" href="css/bootstrap.min.css"> <link rel="stylesheet" href="css/font-awesome.min.css"> <link rel="stylesheet" href="css/et-line-iocn.css"> <link rel="stylesheet" href="css/elements.css"> <link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="custom.css"> <link rel="stylesheet" href="css/responsive.css"> <!-- MODERNIZE JS --> <script src="js/vendor/modernizr-2.8.3.min.js"></script> </head> <body> <!--[if lt IE 8]> <p class="browserupgrade">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 class="wrapper"> <!-- Header area --> <header class="header-area header-left" style="z-index: 3"> <div class="header-middle-area"> <div class="logo"> <h3><a href="index.html">Saba Heravi</a></h3> <p>Personal Homepage</p> </div> <nav> <ul id="sidebar-menu" class="sidebar-menu hover-style-one"> <li><a href="about-me.html">About Me</a></li> <li><a href="index.html">Portfolio</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> <ul class="social-bookmark-wrapper"> <li><a href="https://www.facebook.com/saboolix"><i class="fa fa-facebook"></i></a></li> <li><a href="https://twitter.com/saboolix"><i class="fa fa-twitter"></i></a></li> <li><a href="https://www.linkedin.com/in/saba-momahediheravi-a0950664/"><i class="fa fa-linkedin"></i></a></li> <li><a href="https://www.instagram.com/saboolix/"><i class="fa fa-instagram"></i></a></li> </ul> </div> </header> <!-- End header area --> <!-- Content area start --> <section class="content-right-side gray-bg"> <!-- <div style= "position: absolute; top: 10px; text-align: center; " class="hidden-lg hidden-md"> <h3><a href="index.html">Saba Heravi</a></h3> </div> --> <div style= "text-align:center" class="logo hidden-lg hidden-md"> <h3><a href="index.html">Saba Heravi</a></h3> </div> <div class="flay-menu-wrapper" style="z-index: 2"> <span class="flay-out-menu-btn"></span> </div> <div class="inner-content-wrapper"> <!-- Theme standard row Start for portfolio --> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="post-content"> <h2 class="blog-post-title">Ceramics, collection 2016</h2> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9140.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9143.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9145.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9147.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9149.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9151.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9152.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9154.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9156.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9160.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9162.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9164.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9166.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9168.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9169.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9170.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9173.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9176.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9177.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <div class="adam-standard-row"> <!-- Single Project area --> <div class="single-project-area-three"> <article class="single-post single-blog-post-area"> <div class="col-lg-12 col-md-12"> <div class="single-port-img"> <img src="img/portfolio/IMG_9178.JPG" alt=""> </div> </article> </div> <!-- Single Project area end --> </div> <!-- Theme standard row End for portfolio --> </div> </section> </div> <!-- ALL JS HERE --> <script src="js/vendor/jquery-1.12.0.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.isotope.js"></script> <script src="js/slick.min.js"></script> <script src="js/plugins.js"></script> <script src="js/main.js"></script> </body> </html>
afshing/sabaheravi
ceramic.html
HTML
mit
21,452
<template name="splash"> <div id="search" class="row"> <div class="small-12 medium-6 large-4 small-centered columns"> <img id="magnify" src="/mg02.svg"> <h1>Find the perfect daycare.</h1> <form> <input type="text" name="zipcode" placeholder="Enter your home address" /> <input class="button text-center" type="submit" id="submit" /> </form> </div> </div> <div id="map" class="map-container"> {{> googleMap name="splashMap" options=customMap}} </div> </template>
TheArcusProject/DayCaring
client/templates/splash.html
HTML
mit
525
<footer> {% include paginate.html %} {% include suggestion.html %} {% if page.url == "/about" or paginator.total_pages == 1 or page.url == "/404" %} <div class="container" style="text-align: center; margin-bottom: 20px"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Alireza dot one --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-3011295862920838" data-ad-slot="2798821109" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <a target="_blank" class="button" href="https://twitter.com/{{ site.twitter_username }}"> Follow me on twitter </a> </div> {% endif %} <hr /> <div class="user-footer"> <div class="copyright alignable pull-left"> {% if site.copyright %} <h2> <img src="https://alireza.one/images/AH.svg" alt="HAYATI" style="width:60px;height:60px;"> <img src="https://alireza.one/images/HF.svg" alt="HAYATI" style="width:60px;height:60px;"> </h2> {% else %} <h2> <img src="https://alireza.one/images/AH.jpg" alt="HAYATI" style="width:60px;height:60px;"> <img src="https://alireza.one/images/HF" alt="HAYATI" style="width:60px;height:60px;"> </h2> {% endif %} </div> <div class="alignable pull-right"> <a href="https://alireza.one/business" class="button"> Business </a> <a href="http://hayati.xyz" class="button"> HAYATI </a> <a href="http://hayatifoundation.ca/" class="button"> Hayati Children’s Foundation </a> <a href="https://alireza.one/say-hello" class="button"> Contact </a> <a href="https://alireza.one/privacy" class="button"> Privacy Policy </a> <a target="_blank" href="{{ site.url }}{{ site.baseurl }}/feed.xml" class="button"> rss </a> </div> </div> <div style="clear:both"></div> <hr /> <div class="theme-footer"> <p class="alignable pull-left" style="display: inline-block"> Built with <a target="_blank" href="http://jekyllrb.com/" class="different-highlight underline">Jekyll</a>. </p> </div> </footer>
alirezahytest/alirezahytest.github.io
_includes/footer.html
HTML
mit
2,630
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>LCOV - coverage.info - src/external/StringUtil</title> <link rel="stylesheet" type="text/css" href="../../../gcov.css"> </head> <body> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="title">LCOV - code coverage report</td></tr> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> <tr> <td width="100%"> <table cellpadding=1 border=0 width="100%"> <tr> <td width="10%" class="headerItem">Current view:</td> <td width="35%" class="headerValue"><a href="../../../index.html">top level</a> - src/external/StringUtil</td> <td width="5%"></td> <td width="15%"></td> <td width="10%" class="headerCovTableHead">Hit</td> <td width="10%" class="headerCovTableHead">Total</td> <td width="15%" class="headerCovTableHead">Coverage</td> </tr> <tr> <td class="headerItem">Test:</td> <td class="headerValue">coverage.info</td> <td></td> <td class="headerItem">Lines:</td> <td class="headerCovTableEntry">13</td> <td class="headerCovTableEntry">98</td> <td class="headerCovTableEntryLo">13.3 %</td> </tr> <tr> <td class="headerItem">Date:</td> <td class="headerValue">2016-06-15</td> <td></td> <td class="headerItem">Functions:</td> <td class="headerCovTableEntry">5</td> <td class="headerCovTableEntry">20</td> <td class="headerCovTableEntryLo">25.0 %</td> </tr> <tr><td><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> </table> </td> </tr> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> </table> <center> <table width="80%" cellpadding=1 cellspacing=1 border=0> <tr> <td width="50%"><br></td> <td width="10%"></td> <td width="10%"></td> <td width="10%"></td> <td width="10%"></td> <td width="10%"></td> </tr> <tr> <td class="tableHead">Filename <span class="tableHeadSort"><a href="index.html"><img src="../../../updown.png" width=10 height=14 alt="Sort by name" title="Sort by name" border=0></a></span></td> <td class="tableHead" colspan=3>Line Coverage <span class="tableHeadSort"><img src="../../../glass.png" width=10 height=14 alt="Sort by line coverage" title="Sort by line coverage" border=0></span></td> <td class="tableHead" colspan=2>Functions <span class="tableHeadSort"><a href="index-sort-f.html"><img src="../../../updown.png" width=10 height=14 alt="Sort by function coverage" title="Sort by function coverage" border=0></a></span></td> </tr> <tr> <td class="coverFile"><a href="StringUtil.cpp.gcov.html">StringUtil.cpp</a></td> <td class="coverBar" align="center"> <table border=0 cellspacing=0 cellpadding=1><tr><td class="coverBarOutline"><img src="../../../ruby.png" width=13 height=10 alt="13.3%"><img src="../../../snow.png" width=87 height=10 alt="13.3%"></td></tr></table> </td> <td class="coverPerLo">13.3&nbsp;%</td> <td class="coverNumLo">13 / 98</td> <td class="coverPerLo">25.0&nbsp;%</td> <td class="coverNumLo">5 / 20</td> </tr> </table> </center> <br> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="ruler"><img src="../../../glass.png" width=3 height=3 alt=""></td></tr> <tr><td class="versionInfo">Generated by: <a href="http://ltp.sourceforge.net/coverage/lcov.php">LCOV version 1.10</a></td></tr> </table> <br> </body> </html>
seguijoaquin/taller2-appserver
Appserver/Coverage/src/external/StringUtil/index-sort-l.html
HTML
mit
3,895
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>mirror-core: 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.0 / mirror-core - 1.0.1</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> mirror-core <small> 1.0.1 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-20 01:17:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-20 01:17:33 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base 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.8.0 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.06.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.06.1 Official 4.06.1 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;[email protected]&quot; homepage: &quot;https://github.com/gmalecha/mirror-core&quot; dev-repo: &quot;git+https://github.com/gmalecha/mirror-core.git&quot; bug-reports: &quot;https://github.com/gmalecha/mirror-core/issues&quot; authors: [&quot;Gregory Malecha&quot;] license: &quot;BSD&quot; build: [ [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] remove: [ [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/MirrorCore&quot;] [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/McExamples&quot;] ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5.0&quot; &amp; &lt; &quot;8.5.2~&quot;} &quot;coq-ext-lib&quot; {&gt;= &quot;0.9.2&quot;} &quot;coq-plugin-utils&quot; ] synopsis: &quot;A framework for computational reflection&quot; flags: light-uninstall url { src: &quot;https://github.com/gmalecha/mirror-core/archive/v1.0.1.tar.gz&quot; checksum: &quot;md5=3c61f6c8134ec6b5d3ea0af826d5156f&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-mirror-core.1.0.1 coq.8.8.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.8.0). The following dependencies couldn&#39;t be met: - coq-mirror-core -&gt; coq &lt; 8.5.2~ -&gt; ocaml &lt; 4.06.0 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-mirror-core.1.0.1</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.06.1-2.0.5/released/8.8.0/mirror-core/1.0.1.html
HTML
mit
6,733
<div align="center"> <h1><a href="../../" >SALMONSENS <br>KONVERSATIONS <br>LEKSIKON</a></h1> <p><a href="../" >Anden Udgave</a> <br>redigeret <br>af <br><a href="/authors/blangchr.html" >Chr. Blangstrup</a> <h2>Bind V: Cikorie - Demersale</h2> <p>København <br>A/S J. H. Schultz Forlagsboghandel <br>Trykt hos J. H. Schultz A/S <br>MCMXVI </div> <hr> <h2>Förord till den digitala utgåvan</h2> <p>Det här är femte bandet av tjugosex i <a href="../" >andra utgåvan</a>. Se <a href="../../" >vårt förord till <i>Salmonsens konverssationsleksikon</i></a> och <a href="../" >andra utgåvan</a>.
jengeldk/salmonsen
current/5/index.html
HTML
mit
604
<div class="container"> <h2>My todos!</h2> <form role="form" ng-submit="addTodo()"> <div class="row"> <div class="input-group"> <input type="text" ng-model="todo" placeholder="What needs to be done?" class="form-control"> <span class="input-group-btn"> <input type="submit" class="btn btn-primary" value="Add"> </span> </div> </div> </form> <!-- Todos list --> <div ui-sortable ng-model="todos"> <p class="input-group" ng-repeat="todo in todos" style="padding: 5px 10px; cursor: move; "> <input type="text" ng-model="todo" class="form-control"> <span class="input-group-btn"> <button class="btn btn-danger" ng-click="removeTodo($index)" aria-label="Remove">X</button> </span> </p> </div> </div>
macinnir/node-poc-boilerplate
app/public_html/app/views/main.html
HTML
mit
858
<section class="bg-primary" id="about"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 text-center"> <h2 class="section-heading">Will put more info here</h2> <hr class="light"> <p class="text-faded">here is where that more information will go, something quick that would introduce the site and why and what Andrew Thomas as an entity is.</p> <div class="row"> <div class="col-xs-3 col-lg-2 col-lg-offset-2 text-center"> <a href="https://twitter.com/{{ site.twitter_username }}"> <i class="fa fa-twitter fa-3x wow bounceIn" data-wow-delay=".1s"></i> <p>{{ site.twitter_username }}</p> </a> </div> <div class="col-xs-3 col-lg-2 text-center"> <a href="mailto:{{ site.email }}"> <i class="fa fa-envelope-o fa-3x wow bounceIn" data-wow-delay=".1s"></i> <p>{{ site.email }}</p> </a> </div> <div class="col-xs-3 col-lg-2 text-center"> <a href="https://github.com/{{ site.github_username }}"> <i class="fa fa-facebook fa-3x wow bounceIn" data-wow-delay=".1s"></i> <p>{{ site.facebook_username }}</p> </a> </div> <div class="col-xs-3 col-lg-2 text-center"> <a href="https://github.com/{{ site.github_username }}"> <i class="fa fa-youtube fa-3x wow bounceIn" data-wow-delay=".1s"></i> <p>{{ site.facebook_username }}</p> </a> </div> </div> </div> </div> </div> </section>
naaman10/andrew-thomas
_includes/call-to-action.html
HTML
mit
1,887
{% extends "base.html" %} {% block css %} {{super()}} {% endblock %} {% block content %} <header> <div class="p-align-center"> <img src='https://secure.gravatar.com/avatar/31282e8e0968df74a328f409e2b70cde?s=200' alt="Quem sou eu"> </div> </header> <p>Sou um desenvolvedor de São José dos Campos/Brasil. Atualmente trabalho com desenvolvimento web, mas os meus interesses vão desde eletrônica até criptografia e games.</p> <p>Este blog é a minha tentativa de registrar as experiências que faço no meu tempo livre.</p> <p>Você pode me contactar das seguintes formas:</p> <ul class="ul-inline"> <li> <a target="_blank" href="{{author.twitter}}">Twitter</a>, </li> <li> <a target="_blank" href="mailto: {{author.email}}"> Email</a>, </li> <li> <a target="_blank" href="{{author.github}}"> Github</a> </li> </ul> {% endblock %}
IuryAlves/iuryalves.github.io
templates/about.html
HTML
mit
946
<!doctype html> <html> <head> <meta charset=utf-8 /> <title>Open JQuery Components Library - suches</title> <style> body{ margin: 20px 40px; } dt { font-weight: bold; margin: 10px auto; } dd { line-height: 24px; } /*btn*/ .btn{ display:inline-block; height:30px; border:none; cursor:pointer; border-radius:3px; overflow:hidden; background:url(http://p4.qhimg.com/d/inn/5bcabb7a/img/btn.png) no-repeat #5dcb30; box-shadow:0 1px 2px #efefef; vertical-align:middle; color:#000; margin:0;} .btn:hover{ color:#000;} .btn-green,.btn-Sgreen,.btn-Mgreen,.btn-Lgreen{ border:1px solid #50ad1d; border-top:1px solid #54bf1a; border-bottom:1px solid #4c9a20;} .btn-gray,.btn-Lgray,.btn-Mgray,.btn-Sgray{ border:1px solid #d2d2d2; border-top:1px solid #dfdfdf;} .btn-Lgray,.btn-Mgray,.btn-Sgreen,.btn-Lgreen,.btn-Sgray,.btn-Mgreen{ padding:0 15px; *padding:0;} .btn-green{ width:83px; color:#fff;} .btn-green:hover,.btn-Lgreen:hover,.btn-Mgreen:hover,.btn-Sgreen:hover{ background-position:0 -33px; color:#fff;} a.btn-green,a.btn-gray{ text-align:center; width:81px; height:28px; line-height:28px;} .btn-gray{ width:83px; color:#333; background-position:0 -66px; background-color:#f1f1f1;} .btn-gray:hover{ background-position:0 -99px; color:#333333;} .btn-Lgray{ background-position:0 -66px; background-color:#f1f1f1;} .btn-Lgray:hover{ background-position:0 -99px;} a.btn-Lgray,a.btn-Lgreen{ height:28px; line-height:28px; padding:0 15px;} .btn-Mgray{ height:27px; background-position:0 -66px; background-color:#f1f1f1;} .btn-Mgray:hover{ background-position:0 -99px;} a.btn-Mgray,.btn-Mgreen{ height:25px; line-height:25px; padding:0 15px;} </style> <script src="../../../../lib.js"></script> <script src="../../../../config.js"></script> <link href='../../../../modules/JC.Panel/0.2/res/default/style.css' rel='stylesheet' /> <link href='../res/default/style.css' rel='stylesheet' /> <script> JC.debug = true; requirejs( [ 'Bizs.CustomColumn' ], function( ){ }); </script> <base target="_blank" /> </head> <body> <dl class="defdl"> <dt>Bizs.CustomColumn - 示例</dt> <dd> <button type="button" class="js_bizCustomColumn" data-query="./data/handler.php" data-data="accountColData" data-id="31" data-minCol="2" data-maxCol="20" data-name="selectedItem[]" data-saveSelector="input.js_saveSelector" data-tpl="/script.js_bccTpl" data-typeSelector="input.js_selectType" data-formDoneCallback="customFormDone" data-formAfterProcessCallback="customFormAfterProcess" >自定义列</button> <script> /* 数据列表展示条件数据 */ var accountColData = [ { groupName : '基本信息', content : [ {title : '账户名称', name : 'account_name', ison : true, isdefault : true, dftchk : true}, {title : '账户ID', name : 'account_id', ison : true, isdefault : false}, {title : '账户状态', name : 'dj_status', ison : true, isdefault : true}, {title : '对应顾问', name : 'advisorName', ison : false, isdefault : false}, {title : '网站URL', name : 'url', ison : false, isdefault : false}, {title : '公司名称', name : 'company_name', ison : true, isdefault : true}, {title : '一级行业', name : 'industry', ison : true, isdefault : true}, {title : '二级行业', name : 'sub_industry', ison : false, isdefault : false}, {title : '开户日期', name : 'create_time', ison : false, isdefault : false}, {title : '最近维护日期', name : 'update_time', ison : false, isdefault : false}, {title : '联系人', name : 'name', ison : false, isdefault : false}, {title : '所在省', name : 'province', ison : false, isdefault : false}, {title : '所在市', name : 'city', ison : false, isdefault : false}, {title : '首次生效日', name : 'first_active_time', ison : false, isdefault : false}, {title : '最近生效日', name : 'active_time', ison : false, isdefault : false}, {title : '已生效天数', name : 'active_days', ison : false, isdefault : false}, {title : '最近失效日', name : 'expired_time', ison : false, isdefault : false}, {title : '已失效天数', name : 'expired_days', ison : false, isdefault : false}, {title : '累计失效天数', name : 'total_expired_days', ison : false, isdefault : false}, {title : '累计失效次数', name : 'total_expired_times', ison : false, isdefault : false}, {title : '最近跟进日', name : 'last_record_time', ison : false, isdefault : false} ] } ]; </script> <script type="text/template" class="js_bccTpl"> <div class="UPanel bcc_Panel-Asearch"> <div class="UPContent"> <form method="POST" action="{url}" class="js_bizsFormLogic" formType="ajax" formAjaxMethod="POST" formAjaxDone="{formDoneCallback}" formAfterProcess="{formAfterProcessCallback}" formAjaxDoneAction="URL" > <div class="bcc_Diylist-hd"> <label class="pop_disp_dft"> <input name="display_type" value="default" type="radio" class="js_selectType js_defaultType" /> 默认项 </label> <label class="pop_disp_cus"> <input name="display_type" value="custom" type="radio" class="js_selectType js_customType" /> 自定义列 </label> <input type="hidden" name="pageName" value="{id}"> <input type="hidden" name="perferredRow" class="js_saveSelector" value=""> </div> <!--end Diylist-hd--> <div class="bcc_Asearch-con"> {content} </div> <!--end Txtprompt-con--> <div class="bcc_UPanel-ft"> <div class="bcc_UPanel-btn"> <em class="js_bccErrEm"></em>&nbsp;&nbsp;&nbsp;&nbsp; <button type="submit" class="btn btn-green">确定</button> <button type="button" eventtype="cancel" class="btn btn-gray">取消</button> </div> </div> <span class="close" eventtype="close"></span> </form> </div> </div> </script> </dd> </dl> </body> </html>
openjavascript/NewJC
modules/Bizs.CustomColumn/0.1/_demo/demo.html
HTML
mit
8,515
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Home | Tender Years</title> <!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]--> <link rel="stylesheet" href="assets/theme/css/main.css" /> <link rel="stylesheet" href="assets/theme/css/lightbox.css" /> <!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]--> <!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]--> </head> <body class="index"> <div id="page-wrapper"> <!-- Header --> <header id="header" class="alt"> <h1 id="logo"><a href="index.html">Tender Years</a></h1> <nav id="nav"> <ul> <li class="current"><a href="index.html">Home</a></li> <li class="submenu "> <a href="#">Book</a> <ul> <li><a href="read-a-poem.html">Read a Poem</a></li> <li><a href="book-review.html">Testimonials</a></li> <li><a href="http://www.amazon.com/Tender-Years-CHHOTI-SI-UMAR-ebook/dp/B00JGNMEBU/ref=sr_1_fkmr0_1?ie=UTF8&qid=1446762731&sr=8-1-fkmr0&keywords=the+tender+years+choti+si+umar">Buy Now</a></li> </ul> </li> <li class="submenu "> <a href="#">Author</a> <ul> <li><a href="author.html">His Story</a></li> <li><a href="journey.html">Journey</a></li> </ul> </li> <li class=""><a href="contact.html" >Contact</a></li> <li><a href="form.html">Feedback</a></li> </ul> </nav> </header> <!-- Banner --> <section id="banner"> <!-- ".inner" is set up as an inline-block so it automatically expands in both directions to fit whatever's inside it. This means it won't automatically wrap lines, so be sure to use line breaks where appropriate (<br />). --> <div class="inner"> <header> <h2 >Tender Years</h2> </header> <p>A <strong>Book of Poems</strong> <br /> by Late Master Anshuman Dubey</p> <footer> <ul class="buttons horizontal"> <li><a href="http://www.amazon.com/Tender-Years-CHHOTI-SI-UMAR-ebook/dp/B00JGNMEBU/ref=sr_1_fkmr0_1?ie=UTF8&qid=1446762731&sr=8-1-fkmr0&keywords=the+tender+years+choti+si+umar" class="button fit scrolly">Buy the Book</a></li> <li><a href="author.html" class="button fit scrolly">About Author</a></li> </ul> </footer> </div> </section> <!-- Main --> <article id="main"> <header class="special container"> <span class="icon fa-book"></span> <h2>A profound <strong>book</strong> of poems <br /> written by late master Anshuman Dubey</h2> <p>Anshuman Dubey passed away at the age of sixteen from a neuromuscular disorder known as CIDP, or Chronic Inflammatory Demyelinating Polyneuropathy. CIDP affects the peripheral nerves of the body and causes gradual weakness and loss of senses and reflexes. Although CIDP is treatable, it is very difficult and expensive to get a treatment in the rural area where Anshuman lived. However, even though Anshuman was incapacitated for a long time, he was able to express his thoughts and feelings through this book of poems. He wrote the book to inspire us to be courageous and overcome the many challenges of life. </p> </header> <!-- One --> <section class="wrapper style2 container special-alt"> <div class="row 50%"> <div class="8u 12u(narrower)"> <header> <h2>The Book <strong>“TENDER YEARS”</strong> is the English translated version of “CHHOTI SI UMAR“.</h2> </header> <p>Tender years is a part of libraries of most public schools across India. The book is a testament to how many people were touched by his story.</p> <p>Anshuman wrote this book to make us understand that we can change our life no matter what challenges we face. Tender Years is a very inspirational and motivational book that can change your life, no matter how old you are.</p> <footer> <ul class="buttons"> <li><a href="author.html" class="button">Find Out More</a></li> </ul> </footer> </div> <div class="4u 12u(narrower) important(narrower)"> <div class="image fit"> <img src="assets/images/tender-years-book.jpg" alt="book"> </div> </div> </div> </section> <!-- Two --> <section class="wrapper style1 container special"> <div class="row"> <div class="4u 12u(narrower)"> </section> </div> </div> </section> <!-- Three --> <section class="wrapper style3 container special"> <header class="major"> <h2><strong>A look Inside</strong></h2> </header> <div class="row"> <div class="6u 12u(narrower)"> <section> <a href="#" class="image featured"><img src="http://www.wpclipart.com/education/books/books_1/open_book.png" alt="" /></a> <header> <h3></h3> </header> <p></p> </section> </div> <div class="6u 12u(narrower)"> <section> <a href="#" alt="" /></a> <header> <h3>Life</h3> </header> <p>Life is the only time; That you have to spend on Earth. So commence your action now; And make it worth. Life is not always there; It is not the question of life and death- Because that rests in His hands; But take a vow today, that in each moment of life- You will feel cheer and gay!</p> </section> </div> </div> <div class="row"> <div class="6u 12u(narrower)"> <section> <a href="#" alt="" /></a> <header> <h3>Slight Age</h3> </header> <p>Under the shade of trees; In the backyard Playing with ease, Those moments of mother’s love And father’s affectionate hug, How I would run carelessly At one call of friends for fun. When the curiosity arises; The childhood unfolds yet a new leaf.</p> </section> </div> <div class="6u 12u(narrower)"> <section> <a href="#" alt="" /></a> <header> <h3>Willpower</h3> </header> <p>Make your willpower so strong; That, all difficulties shy away- Let the confidence be your companion; So that, any trouble what may come, Is left, with no option. Let your determination ripe; And courage and strength join. Fearlessly tread ahead- And climb each rung of success, With patient, grit instead.</p> </section> </div> </div> <footer class="major"> <ul class="buttons"> <li><a href="read-a-poem.html" class="button">See More</a></li> </ul> </footer> </section> </article> <!-- CTA --> <section id="cta"> <header> <h2>Interested in learning more?</h2> </header> <footer> <ul class="buttons"> <li><a href="http://www.amazon.com/Tender-Years-CHHOTI-SI-UMAR-ebook/dp/B00JGNMEBU/ref=sr_1_fkmr0_1?ie=UTF8&qid=1446762731&sr=8-1-fkmr0&keywords=the+tender+years+choti+si+umar" class="button special">Buy Tender Years</a></li> <li><a href="author.html" class="button">About Author</a></li> </ul> </footer> </section> <!-- Footer --> <footer id="footer"> <<<<<<< HEAD ======= >>>>>>> 5e0118371a81e4e0e71ef59ad1ab94f36ec910eb <ul class="copyright"> <li>&copy; <a href="http://anshumandubey.org">Anshuman Dubey Foundation</a></li><li>Design: <a href="http://ourpromises.io">Our Promises</a></li> </ul> </footer> </div> <!-- Scripts --> <script src="assets/theme/js/jquery.min.js"></script> <script src="assets/theme/js/jquery.dropotron.min.js"></script> <script src="assets/theme/js/jquery.scrolly.min.js"></script> <script src="assets/theme/js/jquery.scrollgress.min.js"></script> <script src="assets/theme/js/skel.min.js"></script> <script src="assets/theme/js/util.js"></script> <script src="assets/theme/js/lightbox.min.js"></script> <!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]--> <script src="assets/theme/js/main.js"></script> </body> </html>
OurPromises/tender-years
dist/index.html
HTML
mit
9,749
<!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.1.97: Class Members</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.1.97 </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 class="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><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 id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_c.html#index_c"><span>c</span></a></li> <li><a href="functions_d.html#index_d"><span>d</span></a></li> <li><a href="functions_e.html#index_e"><span>e</span></a></li> <li><a href="functions_f.html#index_f"><span>f</span></a></li> <li><a href="functions_g.html#index_g"><span>g</span></a></li> <li><a href="functions_h.html#index_h"><span>h</span></a></li> <li><a href="functions_i.html#index_i"><span>i</span></a></li> <li><a href="functions_k.html#index_k"><span>k</span></a></li> <li><a href="functions_l.html#index_l"><span>l</span></a></li> <li><a href="functions_m.html#index_m"><span>m</span></a></li> <li><a href="functions_n.html#index_n"><span>n</span></a></li> <li><a href="functions_o.html#index_o"><span>o</span></a></li> <li><a href="functions_p.html#index_p"><span>p</span></a></li> <li class="current"><a href="functions_r.html#index_r"><span>r</span></a></li> <li><a href="functions_s.html#index_s"><span>s</span></a></li> <li><a href="functions_t.html#index_t"><span>t</span></a></li> <li><a href="functions_u.html#index_u"><span>u</span></a></li> <li><a href="functions_w.html#index_w"><span>w</span></a></li> <li><a href="functions_~.html#index_~"><span>~</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"> <div class="textblock">Here is a list of all documented class members with links to the class documentation for each member:</div> <h3><a class="anchor" id="index_r"></a>- r -</h3><ul> <li>ReattachGlobal() : <a class="el" href="classv8_1_1_context.html#a1db9a514d7bb1c055a26359727bd2f6b">v8::Context</a> </li> <li>RemoveGCEpilogueCallback() : <a class="el" href="classv8_1_1_v8.html#a3382e4dae9865909242a8ee0b1d6bf77">v8::V8</a> </li> <li>RemoveGCPrologueCallback() : <a class="el" href="classv8_1_1_v8.html#a7cdceb9c8ea5cd0887f69fd3bd97193f">v8::V8</a> </li> <li>RemoveMessageListeners() : <a class="el" href="classv8_1_1_v8.html#a024f57744e8dfdcb2ea1417024b4805c">v8::V8</a> </li> <li>Reset() : <a class="el" href="classv8_1_1_try_catch.html#a3aae8acab4c99b374b7d782763d4c8e1">v8::TryCatch</a> </li> <li>ResumeProfiler() : <a class="el" href="classv8_1_1_v8.html#ab0557aaba62c7fb253fe838003aa60af">v8::V8</a> </li> <li>ResumeProfilerEx() : <a class="el" href="classv8_1_1_v8.html#affe7a421288278719a71928d3b9c4836">v8::V8</a> </li> <li>ReThrow() : <a class="el" href="classv8_1_1_try_catch.html#a4a7506617800bbc49c3c08bbfefb9c2d">v8::TryCatch</a> </li> <li>Run() : <a class="el" href="classv8_1_1_script.html#a5f43b29d40bd51ebad2cc275ba3898a1">v8::Script</a> </li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:44:49 for V8 API Reference Guide for node.js v0.1.97 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
31854c7/html/functions_r.html
HTML
mit
7,134
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>coqrel: 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.2 / coqrel - 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> coqrel <small> 0.1.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-09 02:26:46 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-09 02:26: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 coq 8.11.2 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 # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;[email protected]&quot; homepage: &quot;https://github.com/CertiKOS/coqrel&quot; bug-reports: &quot;https://github.com/CertiKOS/coqrel/issues&quot; dev-repo: &quot;git+https://github.com/CertiKOS/coqrel.git&quot; license: &quot;MIT&quot; authors: [&quot;Jérémie Koenig&quot;] build: [ [&quot;./configure&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/coqrel&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.4pl2&quot; &amp; &lt; &quot;8.6~&quot;} ] tags: [ &quot;keyword:relations&quot; &quot;category:Mathematics/Logic/Type theory&quot; ] synopsis: &quot;Binary logical relations library for the Coq proof assistant&quot; flags: light-uninstall url { src: &quot;https://github.com/CertiKOS/coqrel/archive/v0.1.tar.gz&quot; checksum: &quot;md5=d25871cf2dc6fec590431c642bca45b6&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-coqrel.0.1.0 coq.8.11.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.11.2). The following dependencies couldn&#39;t be met: - coq-coqrel -&gt; coq &lt; 8.6~ -&gt; ocaml &lt; 4.06.0 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-coqrel.0.1.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.08.1-2.0.5/released/8.11.2/coqrel/0.1.0.html
HTML
mit
6,514
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Crater PHP Framework - User Guide - Console</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="description" content="Crater PHP Framework console feature information."/> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <link rel="stylesheet" href="bootstrap.min.css" media="screen"> <link rel="stylesheet" href="style.css" media="screen"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> <link rel="icon" href="/favicon.ico" type="image/x-icon"> </head> <body onload="prettyPrint()"> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/ro_RO/sdk.js#xfbml=1&version=v2.3&appId=466134290138602"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div class="container-fluid"> <div class="fb-like" data-href="https://www.facebook.com/pages/Crater-PHP-Framework/1578853132386162" data-layout="standard" data-action="like" data-show-faces="false" data-share="true"></div> <a href="/" class="header-link"> <div class="header" id="top"> <h1>Crater PHP Framework</h1> <h2><i>fast, lightweight and modular</i></h2> </div> </a> <div class="row"> <div class="col-md-2"> <div class="list-group"> <p class="list-group-item active">Getting Started</p> <a href="/" class="list-group-item">Overview</a> <a href="/download" class="list-group-item">Download</a> <a href="/requirements" class="list-group-item">Requirements</a> <a href="/install" class="list-group-item">Install</a> <p class="list-group-item active">The Basics</p> <a href="/directory-structure" class="list-group-item">Directory Structure</a> <a href="/config" class="list-group-item">Config</a> <a href="/routes" class="list-group-item">Routes</a> <a href="/controllers" class="list-group-item">Controllers</a> <a href="/models" class="list-group-item">Models</a> <a href="/views" class="list-group-item">Views</a> <a href="/templates" class="list-group-item">Templates</a> <a href="/flash-messenger" class="list-group-item">Flash Messenger</a> <a href="/orm" class="list-group-item">Crater ORM</a> <a href="/cli" class="list-group-item">Crater CLI</a> <a href="/console" class="list-group-item selected">Console</a> <a href="/language" class="list-group-item">Languages</a> <a href="/errors" class="list-group-item">Errors</a> <p class="list-group-item active">Helpers</p> <a href="/sessions" class="list-group-item">Sessions</a> <a href="/validators" class="list-group-item">Validators</a> </div> </div> <div class="col-md-10"> <div class="content"> <a href="https://github.com/crater-framework" class="contribute"></a> <h1 id="overview">Console</h1> <p>Consoles are scripts that start the application in background mode (without view and template). They are very used to cron sites</p> <h3>Defining a console route</h3> <p>Similar with a normal route, console route is defined in Bootstrap file: </p> <pre class="prettyprint linenums"> namespace App; class Bootstrap extends \Core\Bootstrap { public function setConsoles() { return array( array('watch_price', '\Controllers\Hello@watchPrice'), array('update', '\Controllers\Hello@update'), ); } } </pre> <p>And in controller:</p> <pre class="prettyprint linenums"> public function watchPriceAction() { // Business logic echo "Done!\r\n"; } public function updateAction() { // Business logic echo "Updated!\r\n"; } </pre> <h3>Create the script</h3> <p>All scripts would need to stay in <b>/scripts</b> folder. <br>An example of script:</p> <pre class="prettyprint linenums"> // Autoload files using Composer autoload require_once __DIR__ . '/../vendor/autoload.php'; $app = new \Core\Crater($argv); $app->run(); </pre> <h3>Execute your script</h3> <p>Write in console:</p> <pre class="prettyprint"> $ cd /var/www/crater/scripts $ php console.php update Updated! </pre> <a href="#top" class="go-on-top">&uarr;</a> </div> </div> </div> <div class="row"> <div class="col-md-12"> <p class="footer">Crater PHP Framework 2015</p> </div> </div> </div> <script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script> </body> </html>
crater-framework/crater-framework.github.io
console.html
HTML
mit
5,219
<html> <head> <title>Test that video webkitEnterFullScreen() works without any user gesture if the requirement is removed.</title> <script src=media-controls.js></script> <script src=media-file.js></script> <script src=video-test.js></script> <script> if (window.internals) window.internals.settings.setMediaFullscreenRequiresUserGesture(false); function canplaythrough() { consoleWrite(""); consoleWrite("* No user gesture initiated"); testExpected("video.paused", true); run("video.webkitEnterFullScreen()"); waitForEvent('webkitfullscreenchange', fullscreenchange); } function fullscreenchange() { endTest(); } function start() { findMediaElement(); waitForEvent('canplaythrough', canplaythrough); video.src = findMediaFile("video", "content/test"); } </script> </head> <body onload="start()"> <p>Test that video webkitEnterFullScreen() works without any user gesture if the requirement is removed.</p> <video controls></video> </body> </html>
lordmos/blink
LayoutTests/media/video-enter-fullscreen-without-user-gesture.html
HTML
mit
1,306
<div class="commune_descr limited"> <p> Agon-Coutainville est une commune localisée dans le département de Manche en Basse-Normandie. Elle totalisait 2&nbsp;804 habitants en 2008.</p> <p> La localité est équipée en ce qui concerne la formation de un collège. S'agissant les plus petits d'entre nous, la localité est pourvue pour le bien être de sa population de une école primaire. Agon-Coutainville est équipée des installations permettant une éducation de proximité. Lors d'un projet d'acquisition immobilière à Agon-Coutainville, il est intéressant d' regarder la notoriété des écoles de la communes</p> <p>À coté de Agon-Coutainville sont situées les villes de <a href="{{VLROOT}}/immobilier/saint-malo-de-la-lande_50506/">Saint-Malo-de-la-Lande</a> à 4&nbsp;km, 409 habitants, <a href="{{VLROOT}}/immobilier/montchaton_50339/">Montchaton</a> située à 6&nbsp;km, 362 habitants, <a href="{{VLROOT}}/immobilier/blainville-sur-mer_50058/">Blainville-sur-Mer</a> localisée à 2&nbsp;km, 1&nbsp;525 habitants, <a href="{{VLROOT}}/immobilier/gouville-sur-mer_50215/">Gouville-sur-Mer</a> située à 6&nbsp;km, 1&nbsp;994 habitants, <a href="{{VLROOT}}/immobilier/bricqueville-la-blouette_50084/">Bricqueville-la-Blouette</a> à 7&nbsp;km, 530 habitants, <a href="{{VLROOT}}/immobilier/heugueville-sur-sienne_50243/">Heugueville-sur-Sienne</a> à 3&nbsp;km, 543 habitants, entre autres. De plus, Agon-Coutainville est située à seulement 22&nbsp;km de <a href="{{VLROOT}}/immobilier/granville_50218/">Granville</a>.</p> <p>À Agon-Coutainville, la valeur moyenne à l'achat d'un appartement se situe à 3&nbsp;920 &euro; du m² en vente. la valorisation moyenne d'une maison à l'achat se situe à 2&nbsp;907 &euro; du m². À la location la valorisation moyenne se situe à 8,72 &euro; du m² par mois.</p> <p>Le nombre d'habitations, à Agon-Coutainville, était réparti en 2011 en 349 appartements et 3&nbsp;088 maisons soit un marché plutôt équilibré.</p> <p>La ville compte de multiples équipements sportifs, elle propose entre autres trois terrains de tennis, deux centres d'équitation, un terrain de golf et une base nautique.</p> <p>À Agon-Coutainville le salaire moyen mensuel par personne se situe à approximativement 2&nbsp;079 &euro; net. Ceci est inférieur à la moyenne du pays.</p> </div>
donaldinou/frontend
src/Viteloge/CoreBundle/Resources/descriptions/50003.html
HTML
mit
2,352
<!DOCTYPE html> <html> <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="Sci blog jekyll theme"> <meta name="author" content="AIR RAYA Group"> <link href='/MyBlog/img/favicon.ico' type='image/icon' rel='shortcut icon'/> <title>泽民博客 | Jekyll theme</title> <link rel="stylesheet" href="/MyBlog/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <link rel="stylesheet" href="/MyBlog/css/font-awesome.min.css"> <link href="/MyBlog/css/simple-sidebar.css" rel="stylesheet"> <link href="/MyBlog/css/classic-10_7.css" rel="stylesheet" type="text/css"> <!-- Custom CSS --> <link href="/MyBlog/css/style.css" rel="stylesheet"> <link href="/MyBlog/css/pygments.css" rel="stylesheet"> <!-- Fonts --> <link href="/MyBlog/css/front.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Josefin_Slab.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Architects_Daughter.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Schoolbell.css" rel="stylesheet" type="text/css"> <link href="/MyBlog/css/Codystar.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="/MyBlog/js/jquery-1.12.0.min.js"></script> <link href="/MyBlog/css/calendar/common.css" type="text/css" rel="stylesheet"> <script type="text/javascript" src="/MyBlog/js/calendar/calendar.js"></script> <!-- share this --> <script type="text/javascript">var switchTo5x=true;</script> <script type="text/javascript" src="/MyBlog/js/buttons.js"></script> <script type="text/javascript">stLight.options({publisher: "b28464c3-d287-4257-ad18-058346dd35f7", doNotHash: false, doNotCopy: false, hashAddressBar: false});</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="/MyBlog/js/html5shiv.js"></script> <script src="/MyBlog/js/respond.min.js"></script> <![endif]--> <!--百度统计--> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?e965cab8c73512b8b23939e7051d93bd"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script async src="/MyBlog/katex/katex.js"></script> <link rel="stylesheet" href="/MyBlog/katex/katex.css"> <!--轮播图片--> <!--script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.js"></script> <script type="text/javascript" src="https://xiazemin.github.io/MyBlog/js/jquery.stripesrotator.js"></script> <script type="text/javascript"> $(document).ready(function() { alert($('#rotator_xzm')); alert($('#rotator_xzm').fn); $('#rotator_xzm').stripesRotator({ images: [ "https://xiazemin.github.io/MyBlog/img/BPlusTree.png", "https://xiazemin.github.io/MyBlog/img/linuxMMap.jpeg"] }); }); </script--> <!--水印--> <script type="text/javascript" src="/MyBlog/js/waterMark.js"></script> <script type="text/javascript"> $(document).ready(function(){ watermark({watermark_txt0:'泽民博客',watermark_txt1:'zemin',watermark_txt2:(new Date()).Format("yyyy-MM-dd hh:mm:ss.S")}); }) </script> <!--水印--> <!--adscene--> <script data-ad-client="ca-pub-6672721494777557" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> </head> <body> <div id="wrapper"> <!-- Navigation --> <!-- Sidebar --> <div id="sidebar-wrapper"> <ul class="sidebar-nav"> <li class="sidebar-brand"> <a href="/MyBlog"> Home </a> </li> <li> <a href="#">About</a> </li> <li> <a href="#">Services</a> </li> <li> <a href="#">Portfolio</a> </li> <li> <a href="#">Events</a> </li> <li> <a href="#">Blog</a> </li> <li> <a href="#">FAQ</a> </li> <li> <a href="#">Contact</a> </li> </ul> </div> <header class="intro-header"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="heading text-center"> <a href="https://xiazemin.github.io/MyBlog/" style="color: #fff; font-size: 4em; font-family: 'Schoolbell', cursive;">泽民博客</a> <a href="#menu-toggle" class="btn btn-default sciblog" id="menu-toggle" style="font-weight: bold;">&#9776; Menu</a> </div> </div> </div> </div> </header> <script async src="/MyBlog/js/busuanzi.pure.mini.js"></script> <script type="text/javascript" src="/MyBlog/js/jquery.js"></script> <script type="text/javascript" src="/MyBlog/js/jquery.stripesrotator.js"></script> <div class="container"> <div class="row"> <div class="box"> <div class="col-lg-12"> <div class="intro-text text-center"> <h1 class="post-title" itemprop="name headline">shell脚本设置环境变量不生效</h1> <p class="post-meta"> <span itemprop="author" itemscope itemtype="http://schema.org/Person"><span itemprop="name">by 夏泽民</span></span> <time datetime="2020-06-18T00:00:00+08:00" itemprop="datePublished"><i class="fa fa-calendar"></i> Jun 18, 2020</time></p> </div> <p>碰到在shell脚本设置了环境变量,如export PATH=$PATH:/usr/local/HNR_target/bin,执行了此脚本后,环境变量没有生效的问题。</p><br /> <br /> <p>原因是执行脚本用./startup.sh的方式,如果采用source startup.sh,则环境变量会生效。<br /> <!-- more --><br /> 今天在oracle linux下安装oracle软件,遇到一个问题:oracle的环境变量,配置到了~/.bash_profile文件中。在虚拟机中,echo $ORACLE_HOME能正常显示环境变量,但是,用xshell每次重新连接,环境变量就会失效,需要重复手动执行. .bash_profile.</p><br /> <br /> <p>最后在网上查找资料发现,用图形界面登录时,系统会读取~/.bash_profile中的配置信息,所以环境变量可以生效。<br /> 但是用命令行登录,例如xshell,系统加载的是~/.bashrc 中的配置信息。<br /> 所以,我们把环境变量在~/.bashrc文件中,重新配置一次,问题解决,用命令行就不用每次执行 . .bash_profile命令了。</p><br /> <br /> <p>https://www.cnblogs.com/franson-2016/p/6063226.html</p><br /> <span class='st_sharethis_large' displayText='ShareThis'></span> <span class='st_facebook_large' displayText='Facebook'></span> <span class='st_twitter_large' displayText='Tweet'></span> <span class='st_linkedin_large' displayText='LinkedIn'></span> <span class='st_pinterest_large' displayText='Pinterest'></span> <span class='st_email_large' displayText='Email'></span> </div> Category linux </div> </div> <!--赞--> <div class="row"> <div class="col-lg-6"> <img src="https://xiazemin.github.io/MyBlog/img/webwxgetmsgimg.jpeg" height="400" width="auto" /> </div> </div> <div class="row"> <div class="col-md-12"> <div id="disqus_thread"></div> <div id="gitmentContainer"></div> <link rel="stylesheet" href="/MyBlog/css/default.css"> <script src="/MyBlog/js/gitment.browser.js"></script> <script type="text/javascript" src="/MyBlog/js/json2.js"></script> <script> var gitment = new Gitment({ owner: 'xiazemin', repo: 'MyBlogComment', oauth: { client_id: '981ba8c916c262631ea0', client_secret: 'a52260ef92de69011ccd1cf355b973ef11d6da0e', }, }); var MyGitmentContainer=gitment.render('gitmentContainer'); window.setTimeout(MyGitMentBtnclick,1000); //document.ready(function(){ //window.onload=function(){} function MyGitMentBtnclick(){ //var MyGitmentContainer=document.getElementById('gitmentContainer'); var ele=[],all=MyGitmentContainer.getElementsByTagName("*"); for(var i=0;i<all.length;i++){ if(all[i].className=='gitment-comments-init-btn'){ MyGitMentBtn=all[i]; console.log(MyGitMentBtn); MyGitMentBtn.click(); } } } </script> <!--script> /** * RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS. * LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */ /* var disqus_config = function () { this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable }; */ (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//airrayagroup.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> <script id="dsq-count-scr" src="//airrayagroup.disqus.com/count.js" async></script--> </div> </div> </div> <hr> <footer> <div class="container"> <a href="/MyBlog/" style="color: green; font-size: 2em; font-family: 'Schoolbell', cursive;">首页</a> <div class="row"> <div class="col-lg-6"> <p>Copyright &copy; 2017 [email protected] <p> </div> <div class="col-lg-6"> <p style="float: right;">Jekyll theme by <a href="https://github.com/xiazemin/">夏泽民</a></p> </div> </div> </div> </footer> <!-- jQuery --> <script src="/MyBlog/js/jquery-1.12.0.min.js"></script> <script src="/MyBlog/js/jquery-migrate-1.2.1.min.js"></script> <!-- Latest compiled and minified JavaScript --> <script src="/MyBlog/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <!-- Menu Toggle Script --> <script> $("#menu-toggle").click(function(e) { e.preventDefault(); $("#wrapper").toggleClass("toggled"); }); </script> <script>window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"16"},"slide":{"type":"slide","bdImg":"6","bdPos":"right","bdTop":"100"},"image":{"viewList":["qzone","tsina","tqq","renren","weixin"],"viewText":"分享到:","viewSize":"16"}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='/MyBlog/shareapi/js/share.js?v=89860593.js?'];</script> <!-- 2d --> <script type="text/javascript" charset="utf-8" src="/MyBlog/js/L2Dwidget.0.min.js"></script> <script type="text/javascript" charset="utf-8" src="/MyBlog/js/L2Dwidget.min.js"></script> <script type="text/javascript"> setTimeout(()=> { /*L2Dwidget.init({"display": { "superSample": 2, "width": 200, "height": 400, "position": "right", "hOffset": 0, "vOffset": 0 } }); */ L2Dwidget .on('*', (name) => { console.log('%c EVENT ' + '%c -> ' + name, 'background: #222; color: yellow', 'background: #fff; color: #000') }) .init({ dialog: { // 开启对话框 enable: true, script: { // 每空闲 10 秒钟,显示一条一言 'every idle 10s': '$hitokoto$', // 当触摸到星星图案 'hover .star': '星星在天上而你在我心里 (*/ω\*)', // 当触摸到角色身体 'tap body': '哎呀!别碰我!', // 当触摸到角色头部 'tap face': '人家已经不是小孩子了!' } } }); }) </script> <!--html xmlns:wb="http://open.weibo.com/wb"> <script src="http://tjs.sjs.sinajs.cn/open/api/js/wb.js" type="text/javascript" charset="utf-8"></script> <wb:follow-button uid="2165491993" type="red_1" width="67" height="24" ></wb:follow-button--> <!--本文来自--> <script type="text/javascript"> /* 仅IE document.body.oncopy = function(){ setTimeout( function () { var text =window.clipboardData.getData("text"); if (text) { text = text + "/r/n本篇文章来源于 xiazemin 的 泽民博客|https://xiazemin.github.io/MyBlog/index.html 原文链接:"+location.href; clipboardData.setData("text", text); } }, 100 ) } */ //绑定在了body上,也可以绑定在其他可用元素行,但是不是所有元素都支持copy和past事件。 /* $(document.body).bind({ copy: function(event) {//copy事件 //var cpTxt = "复制的数据"; var clipboardData = window.clipboardData; //for IE if (!clipboardData) { // for chrome clipboardData = event.originalEvent.clipboardData; } if (event.clipboardData != null/false/undefined) { //ignore the incorrectness of the truncation clipboarddata = event.clipboardData; } else if (window.clipboardData != null/false/undefined) { clipboarddata = window.clipboardData; } else { //default to the last option even if it is null/false/undefined clipboarddata = event.originalEvent.clipboardData; } //e.clipboardData.getData('text');//可以获取用户选中复制的数据 //clipboardData.setData('Text', cpTxt); alert(clipboarddata.getData('text')); //$('#message').text('Copy Data : ' + cpTxt); return false;//否则设不生效 },paste: function(e) {//paste事件 var eve = e.originalEvent var cp = eve.clipboardData; var data = null; var clipboardData = window.clipboardData; // IE if (!clipboardData) { //chrome clipboardData = e.originalEvent.clipboardData } data = clipboardData.getData('Text'); //$('#message').html(data); } }); */ function addLink() { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection(); var pagelink = "<br /><br />本文来源:xiazemin 的 泽民博客 <a href='"+document.location.href+"'>"+document.location.href+"</a>"; //+document.location.href+当前页面链接 var copy_text = selection + pagelink; console.log(copy_text); var new_div = document.createElement('div'); new_div.style.left='-99999px'; new_div.style.position='absolute'; body_element.appendChild(new_div ); new_div.innerHTML = copy_text ; selection.selectAllChildren(new_div ); window.setTimeout(function() { body_element.removeChild(new_div ); },0); } document.oncopy = addLink; </script> <!--本文来自--> </div> </body> </html>
xiazemin/MyBlog
linux/2020/06/18/shell.html
HTML
mit
15,970
<!DOCTYPE html> <html > <head> <meta charset="UTF-8"> <title>Login | Annotation Tool</title> <link rel="stylesheet" href="../css_login/style.css"> </head> <body> <div class="wrapper"> <div class="container"> <h1>Annotation Tool</h1> <form class="form" action="login.php" method="post"> <input type="text" name="loginName" placeholder="Username"> <input type="password" name="loginPassword" placeholder="Password"> <button type="submit" id="login-button">Login</button> </form> </div> </div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script> </body> </html>
dingnigefei/vatic
public/login/login.html
HTML
mit
696
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>Life - Alvaro&#x27;s Blog</title> <meta name="description" content="" /> <meta name="HandheldFriendly" content="True" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="shortcut icon" href="https://amuhle.github.io/favicon.ico"> <link rel="stylesheet" type="text/css" href="//amuhle.github.io/themes/casper/assets/css/screen.css?v=1470839644443" /> <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" /> <link rel="canonical" href="https://amuhle.github.io/https://amuhle.github.io/tag/Life/" /> <meta name="referrer" content="origin" /> <meta property="og:site_name" content="Alvaro&#x27;s Blog" /> <meta property="og:type" content="website" /> <meta property="og:title" content="Life - Alvaro&#x27;s Blog" /> <meta property="og:url" content="https://amuhle.github.io/https://amuhle.github.io/tag/Life/" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:title" content="Life - Alvaro&#x27;s Blog" /> <meta name="twitter:url" content="https://amuhle.github.io/https://amuhle.github.io/tag/Life/" /> <script type="application/ld+json"> null </script> <meta name="generator" content="HubPress" /> <link rel="alternate" type="application/rss+xml" title="Alvaro&#x27;s Blog" href="https://amuhle.github.io/rss/" /> </head> <body class="tag-template tag-Life nav-closed"> <div class="site-wrapper"> <header class="main-header tag-head no-cover"> <nav class="main-nav overlay clearfix"> </nav> <div class="vertical"> <div class="main-header-content inner"> <h1 class="page-title">Life</h1> <h2 class="page-description"> A 1-post collection </h2> </div> </div> </header> <main class="content" role="main"> <div class="extra-pagination inner"> <nav class="pagination" role="navigation"> <span class="page-number">Page 1 of 1</span> </nav> </div> <article class="post tag-Blogging tag-Life tag-Software-Development tag-Sports tag-Cook"> <header class="post-header"> <h2 class="post-title"><a href="https://amuhle.github.io/2016/08/04/What-have-I-done-all-these-years.html">What have I done all these years?</a></h2> </header> <section class="post-excerpt"> <p>"An investment in knowledge always pays the best interest": Benjamin Franklin Many years have passed since I have the idea to start a blog, but my <a class="read-more" href="https://amuhle.github.io/2016/08/04/What-have-I-done-all-these-years.html">&raquo;</a></p> </section> <footer class="post-meta"> <img class="author-thumb" src="https://avatars.githubusercontent.com/u/852379?v&#x3D;3" alt="Alvaro Muhlethaler" nopin="nopin" /> <a href="https://amuhle.github.io/author/amuhle/">Alvaro Muhlethaler</a> on <a href="https://amuhle.github.io/tag/Blogging/">Blogging</a>, <a href="https://amuhle.github.io/tag/Life/"> Life</a>, <a href="https://amuhle.github.io/tag/Software-Development/"> Software Development</a>, <a href="https://amuhle.github.io/tag/Sports/"> Sports</a>, <a href="https://amuhle.github.io/tag/Cook/"> Cook</a> <time class="post-date" datetime="2016-08-04">04 August 2016</time> </footer> </article> <nav class="pagination" role="navigation"> <span class="page-number">Page 1 of 1</span> </nav> </main> <footer class="site-footer clearfix"> <section class="copyright"><a href="https://amuhle.github.io">Alvaro&#x27;s Blog</a> &copy; 2016</section> <section class="poweredby">Proudly published with <a href="http://hubpress.io">HubPress</a></section> </footer> </div> <script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js?v="></script> <script type="text/javascript"> jQuery( document ).ready(function() { // change date with ago jQuery('ago.ago').each(function(){ var element = jQuery(this).parent(); element.html( moment(element.text()).fromNow()); }); }); hljs.initHighlightingOnLoad(); </script> <script type="text/javascript" src="//amuhle.github.io/themes/casper/assets/js/jquery.fitvids.js?v=1470839644443"></script> <script type="text/javascript" src="//amuhle.github.io/themes/casper/assets/js/index.js?v=1470839644443"></script> </body> </html>
amuhle/amuhle.github.io
tag/Life/index.html
HTML
mit
5,070
{# templates/admin_tools/data_cleanup.html #} {% extends "template_base.html" %} {% block title %}Data Cleanup Routines{% endblock %} {% block content %} {% load template_filters %} <p><a href="{% url 'admin_tools:admin_home' %}?google_civic_election_id={{ google_civic_election_id }}">< Back to Admin Home</a></p> <h1>Data Cleanup Routines</h1> {% if election_list %} <div class="form-group"> <label for="google_civic_election_id" class="col-sm-3 control-label">Election</label> <div class="col-sm-8"> {% for election in election_list %} {% if election.google_civic_election_id|slugify == batch_description.google_civic_election_id|slugify %} {{ election.election_name }} - {{ election.google_civic_election_id }} - {{ election.election_day_text }} {% endif %} {% endfor %} </div> </div> {% endif %}{# End of if election_list #} <p> <a href="{% url 'admin_tools:data_cleanup_organization_list_analysis' %}">Organization List Analysis</a><br /> <br /> <a href="{% url 'admin_tools:data_cleanup_position_list_analysis' %}">Position List Analysis</a><br /> <br /> <a href="{% url 'admin_tools:data_cleanup_voter_list_analysis' %}">Voter List Analysis</a><br /> <br /> <a href="{% url 'admin_tools:data_voter_statistics' %}">Voter Statistics</a><br /> <br /> <a href="{% url 'admin_tools:data_cleanup_voter_hanging_data_process' %}">Voter Email Cleanup</a><br /> </p> <script> $(function() { $('#google_civic_election_id').change(function() { this.form.submit(); }); }); </script> {% endblock %}
jainanisha90/WeVoteServer
templates/admin_tools/data_cleanup.html
HTML
mit
1,671
<!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/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/favicon.ico"/> <link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/iosicon.png"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/> <link rel="stylesheet" href="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/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/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/bootstrap/bootstrap.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/modernizr.custom.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.pnotify.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/less-1.3.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/xbreadcrumbs.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/charCount.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.textareaCounter.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/elrte.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/elrte.en.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/select2.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery-picklist.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.validate.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/additional-methods.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.form.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.metadata.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.mockjax.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.uniform.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.tagsinput.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.rating.pack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/farbtastic.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.timeentry.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.dataTables.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.jstree.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/dataTables.bootstrap.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.mousewheel.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.flot.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.flot.stack.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.flot.pie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.flot.resize.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/raphael.2.1.0.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/justgage.1.0.1.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.qrcode.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.clock.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.countdown.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.jqtweet.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/jquery.cookie.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/prettify/prettify.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/bootstrapSwitch.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/js/plugins/mfupload.js"></script> <script type="text/javascript" src="http://photonui.orangehilldev.com/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/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/css/css_compiled/@%7BphotonImagePath%7Dplugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/images/photon/[email protected]" alt="Photon UI"/> </div> <h2 class="login-title">Welcome to Photon UI!</h2> <div class="login-member">Not a Member?&nbsp;<a href="bootstrapSwitch.js.html#">Sign Up &#187;</a> <a href="bootstrapSwitch.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="bootstrapSwitch.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/css/css_compiled/@{photonImagePath}plugins/elrte/js/plugins/prettify/css/css_compiled/js/bootstrap/js/plugins/bootstrapSwitch.js.html
HTML
mit
15,794
<div class="modal-header"> <h3 ng-if="newMode" class="modal-title">New User Group</h3> <h3 ng-if="!newMode && editMode" class="modal-title">Edit User Group #{{saved.id}} - {{saved.group}}</h3> <h3 ng-if="!newMode && !editMode" class="modal-title">User Group #{{saved.id}} - {{saved.group}}</h3> </div> <div class="modal-body"> <div data-rc-bootstrap-alerts="alertProxy"></div> <div ng-if="!editMode && !manageRolesMode"> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Group Name</label> <p class="form-control-static">{{saved.group}}</p> </div> </div> <div class="col-xs-12"> <div class="form-group" title="Unique identifier to be embedded within the system."> <label>Unique Reference Identifier</label> <p class="form-control-static"><code>{{saved.identifier}}</code></p> </div> </div> <div class="col-xs-12"> <div class="form-group"> <label>Description</label> <div class="form-control-static">{{saved.desc | formatParagraphsAsHtml}}</div> </div> </div> </div> <div class="meta" ng-if="!newMode && (saved.created || saved.lastUpdated)"> <hr/> <p ng-show="saved.created" class="text-muted"><strong>Created:</strong> {{saved.created | formatMySQLDate}} <span ng-show="saved.createdBy">by {{saved.createdBy}}</span></p> <p ng-show="saved.lastUpdated" class="text-muted"><strong>Updated:</strong> {{saved.lastUpdated | formatMySQLDate}} <span ng-show="saved.updatedBy">by {{saved.updatedBy}}</span></p> </div> </div> <form ng-if="editMode" name="form.modalForm" role="form" novalidate> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label>Group Name</label> <input class="form-control" name="group" ng-model="editing.group" type="text" maxlength="255" required /> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group" title="Unique identifier to be embedded within the system."> <label>Unique Reference Identifier</label> <p class="form-control-static"><code>{{editing.group | getSlugDashSeperated}}</code></p> </div> </div> </div> <div class="row"> <div class="col-xs-12"> <div class="form-group"> <label for="desc">Description</label> <textarea class="form-control" name="desc" row="2" ng-model="editing.desc" maxlength="1000" required></textarea> </div> </div> </div> </form> <div ng-if="manageRolesMode"> <table class="table table-bordered table-striped"> <thead> <tr><th>ID</th><th>Label</th><th></th></tr> </thead> <tbody> <tr ng-repeat="role in roleList"> <td>{{role.id}}</td> <td>{{role.label}}</td> <td> <button ng-if="isRoleAssignedToGroup(role.id)" type="button" ng-click="buttonRemoveRoleFromGroup(role.id)" class="btn btn-warning btn-xs pull-right">Remove</button> <button ng-if="!isRoleAssignedToGroup(role.id)" type="button" ng-click="buttonAddRoleToGroup(role.id)" class="btn btn-default btn-xs pull-right">Add</button> </td> </tr> </tbody> </table> </div> </div> <div ng-if="!editMode" class="modal-footer"> <button ng-if="!manageRolesMode" class="btn btn-default pull-left" ng-click="buttonEdit()">Edit</button> <button ng-if="!manageRolesMode" class="btn btn-default pull-left" ng-click="buttonManageRoles()">Manage Roles</button> <button class="btn btn-info" ng-click="buttonCancel()">Done</button> </div> <div ng-if="editMode" class="modal-footer"> <button class="btn btn-warning pull-left" ng-if="!newMode" ng-click="buttonDelete()">Delete</button> <button class="btn btn-info pull-left" ng-click="buttonCancel()">Cancel</button> <button class="btn btn-primary" ng-if="newMode" ng-click="buttonNew()">Add</button> <button class="btn btn-primary" ng-if="!newMode" ng-click="buttonSave()">Save</button> </div>
rachellcarbone/angular-seed
www/app/modals/admin/editGroup/editGroup.html
HTML
mit
4,680
<h1 class="page-header"> Manage Post <small>input data</small> </h1> <form method="post" class="form-horizontal"> <check if="{{ isset(@message) }}"> <div class="alert alert-danger">{{ @message | decode }}</div> </check> <div class="form-group"> <label for="title" class="col-md-3">Title</label> <div class="col-md-9"> <input type="text" id="title" class="form-control" name="title" value="{{ @POST.title }}"> </div> </div> <div class="form-group"> <label for="content" class="col-md-3">Content</label> <div class="col-md-9"> <textarea id="content" class="form-control" name="content">{{ @POST.content }}</textarea> </div> </div> <div class="form-group"> <label for="id_category" class="col-md-3">Category</label> <div class="col-md-9"> <select name="id_category" id="id_category" class="form-control"> <option value=""> ---</option> <repeat group="{{ @categoryList }}" key="{{ @id }}" value="{{ @cat }}"> <option value="{{ @id }}"{{ @[email protected]_category?' selected':'' }}>{{ @cat }}</option> </repeat> </select> </div> </div> <div class="form-group"> <div class="col-md-9 col-md-offset-3"> <button class="btn btn-primary" type="submit">Simpan</button> <a href="{{ 'manage_post' | url }}" class="btn btn-default">Batal</a> </div> </div> </form>
eghojansu/web
app/view/admin/post_input.html
HTML
mit
1,316
<html> <head> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>NVAPI Reference Documentation</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head> <table width="99%" border="0" cellspacing="1" cellpadding="1"> <tr valign="top"> <td rowspan="2" height="100" width="19%"><img src="NV_Gameworks_blk_H.png"></td> <td width="81%" height="51"> <h6 align="left" style="text-align:right"><font face="Arial, Helvetica, sans-serif" size="4">NVAPI Reference Documentation</font> <br /> <font face="Arial, Helvetica, sans-serif" size="4">NVIDIA</font></h6> </td> </tr> <tr> <td width="81%" height="30"> <h6 align="right"><font face="Arial, Helvetica, sans-serif" size="3">Release 337: May 2 </font><font face="Arial, Helvetica, sans-serif" size="+1"> <br /> </font><font size="2" face="Arial, Helvetica, sans-serif">2014 </font></h6> </td> </tr> </table> <hr> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li class="current"><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="functions.html"><span>Data&#160;Fields</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-attribs">Data Fields</a> </div> <div class="headertitle"> <div class="title">NV_DISPLAY_DRIVER_MEMORY_INFO_V2 Struct Reference<div class="ingroups"><a class="el" href="group__driverapi.html">Graphics Driver APIs</a></div></div> </div> </div><!--header--> <div class="contents"> <!-- doxytag: class="NV_DISPLAY_DRIVER_MEMORY_INFO_V2" --> <p><code>#include &lt;nvapi_lite_common.h&gt;</code></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-attribs"></a> Data Fields</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a9bf70379561c4c8085a7ec863945b593">version</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a28263ab8cf7716d820a5483589b3e673">dedicatedVideoMemory</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ae94b883a1479db994bb58088266c14e9">availableDedicatedVideoMemory</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a6aba09ebf2a45a67bb49795a51139f28">systemVideoMemory</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ae10877f33d2e4490e2c87876a34a3d2e">sharedSystemMemory</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ad9c5c4ddce482e8d4d0517b67268fa63">curAvailableDedicatedVideoMemory</a></td></tr> </table> <hr/><a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"><p>Used in <a class="el" href="group__driverapi.html#gac66aa214173169763b305ecfa77a215d">NvAPI_GPU_GetMemoryInfo()</a>. </p> </div><hr/><h2>Field Documentation</h2> <a class="anchor" id="ae94b883a1479db994bb58088266c14e9"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::availableDedicatedVideoMemory" ref="ae94b883a1479db994bb58088266c14e9" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ae94b883a1479db994bb58088266c14e9">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::availableDedicatedVideoMemory</a></td> </tr> </table> </div> <div class="memdoc"> <p>Size(in kb) of the available physical framebuffer for allocating video memory surfaces. </p> </div> </div> <a class="anchor" id="ad9c5c4ddce482e8d4d0517b67268fa63"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::curAvailableDedicatedVideoMemory" ref="ad9c5c4ddce482e8d4d0517b67268fa63" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ad9c5c4ddce482e8d4d0517b67268fa63">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::curAvailableDedicatedVideoMemory</a></td> </tr> </table> </div> <div class="memdoc"> <p>Size(in kb) of the current available physical framebuffer for allocating video memory surfaces. </p> </div> </div> <a class="anchor" id="a28263ab8cf7716d820a5483589b3e673"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::dedicatedVideoMemory" ref="a28263ab8cf7716d820a5483589b3e673" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a28263ab8cf7716d820a5483589b3e673">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::dedicatedVideoMemory</a></td> </tr> </table> </div> <div class="memdoc"> <p>Size(in kb) of the physical framebuffer. </p> </div> </div> <a class="anchor" id="ae10877f33d2e4490e2c87876a34a3d2e"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::sharedSystemMemory" ref="ae10877f33d2e4490e2c87876a34a3d2e" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#ae10877f33d2e4490e2c87876a34a3d2e">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::sharedSystemMemory</a></td> </tr> </table> </div> <div class="memdoc"> <p>Size(in kb) of shared system memory that driver is allowed to commit for surfaces across all allocations. </p> </div> </div> <a class="anchor" id="a6aba09ebf2a45a67bb49795a51139f28"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::systemVideoMemory" ref="a6aba09ebf2a45a67bb49795a51139f28" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a6aba09ebf2a45a67bb49795a51139f28">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::systemVideoMemory</a></td> </tr> </table> </div> <div class="memdoc"> <p>Size(in kb) of system memory the driver allocates at load time. </p> </div> </div> <a class="anchor" id="a9bf70379561c4c8085a7ec863945b593"></a><!-- doxytag: member="NV_DISPLAY_DRIVER_MEMORY_INFO_V2::version" ref="a9bf70379561c4c8085a7ec863945b593" args="" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="nvapi__lite__common_8h.html#aaae2f78a3deabb2a061e030085de652c">NvU32</a> <a class="el" href="structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html#a9bf70379561c4c8085a7ec863945b593">NV_DISPLAY_DRIVER_MEMORY_INFO_V2::version</a></td> </tr> </table> </div> <div class="memdoc"> <p>Version info. </p> </div> </div> <hr/>The documentation for this struct was generated from the following file:<ul> <li><a class="el" href="nvapi__lite__common_8h.html">nvapi_lite_common.h</a></li> </ul> </div><!-- contents --> <hr size="2" color="lime"> <small> <br> <div align="center"><a href="legal.html"> Copyright (c) 2007-2014 NVIDIA Corporation. All rights reserved.</a></div> <br> <a href="http://www.nvidia.com" target=_blank><div align="center"><img src="nvidia-logo.jpg" alt="NVIDIA" border="0" align="middle"></a></div> </body> </html>
helifax/OGL-3DVision-Wrapper
src/libs/NVAPI_337_old/docs/NVAPI_Reference_Developer_html/structNV__DISPLAY__DRIVER__MEMORY__INFO__V2.html
HTML
mit
9,435
<!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.5 / contrib:param-pi dev</a></li> <li class="active"><a href="">2015-02-03 17:41:16</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:param-pi <small> dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2015-02-03 17:41:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-02-03 17:41:16 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:param-pi/coq:contrib:param-pi.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</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:param-pi.dev coq.8.4.5</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.5). The following dependencies couldn&#39;t be met: - coq:contrib:param-pi -&gt; coq &gt;= 8.5beta1 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:param-pi.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>4 s</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/8.4.5/contrib:param-pi/dev/2015-02-03_17-41-16.html
HTML
mit
5,631
<head> {% assign lvl = page.url | append:'X' | split:'/' | size %} {% capture relative %}{% for i in (3..lvl) %}../{% endfor %}{% endcapture %} <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="{{ site.description }}"> <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title> <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="{{ "/css/bootstrap.min.css" | prepend: site.baseurl }}"> <!-- Custom CSS --> <link rel="stylesheet" href="{{ "/css/clean-blog.css" | prepend: site.baseurl }}"> <!-- Pygments Github CSS --> <link rel="stylesheet" href="{{ "/css/syntax.css" | prepend: site.baseurl }}"> <!-- Custom Fonts --> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href='//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="{{ relative }}js/bootstrap.min.js"></script> {% feed_meta %} </head>
PokemonGoLpgc/blog
_includes/head.html
HTML
mit
1,943