path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
templates/phone.html
andredalton/light_hunter
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Phone</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"> </script> <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"> </script> <link rel="stylesheet" type="text/css" href="/static/css/phone.css" /> <link rel="stylesheet" type="text/css" href="/static/css/phone-demo.css" /> <link rel="stylesheet" type="text/css" href="/static/css/mask.css" /> <script src="/static/js/phone.js"> </script> <script src="/static/js/phone-demo.js"> </script> <script src="/static/js/phone-io.js"> </script> <script src="/static/js/phone-ui.js"> </script> <script src="/static/js/audio.js"> </script> </head> <body> <div id="container" style="position: relative; float: left;"> <canvas id="screen" ondragstart="return false;"> Your browser does not support HTML5 canvas. </canvas> <canvas id="back-button" ondragstart="return false;"> Your browser does not support HTML5 canvas. </canvas> <canvas id="home-button" ondragstart="return false;"> Your browser does not support HTML5 canvas. </canvas> <img id="phone-frame" src="/static/img/LG_Nexus_4.png" width="1" height="1" alt="" ondragstart="return false;"/> <!-- Source: https://dribbble.com/shots/1078056-Lg-Nexus-4-Mockup --> <div id="light-hunter-interface" style="border: 1px solid black;"> <div style="text-align:center; font-weight: bold; font-size: 120%"> Light Hunter </div> <div id="tab-container"> <ul> <li> <a href="#tab-general">General</a> </li> <li> <a href="#tab-audio">Audio</a> </li> <li> <a href="#tab-mask">Mask</a> </li> </ul> <div id="tab-general"> <div style="height: 30%;"> </div> <div> <input type="checkbox" id="chk-audio" checked /> <label for="chk-audio">Enable audio</label> </div> <div> <input type="checkbox" id="chk-mask" checked /> <label for="chk-mask">Enable mask</label> </div> <div style="height: 30%;"> </div> </div> <div id="tab-audio"> <div style="height: 10%;"> </div> <div style="text-align: center;"> <div> <label for="volume">Volume</label> </div> <div> <input type="range" id="volume" min="0" max="1" step="0.05" value="0.7" /> </div> </div> <div> <div> <input type="checkbox" id="chk-aud-red" checked /> <label for="chk-aud-red">Red</label> </div> <div> <input type="file" id="aud-file-red" style="display:none"/> <button id="change-red" onclick="$('#aud-file-red').click();"> Change... </button> </div> <div class="right-aligned"> <button id="play-red">Play</button> </div> </div> <div> <div> <input type="checkbox" id="chk-aud-yellow" checked /> <label for="chk-aud-yellow">Yellow</label> </div> <div> <input type="file" id="aud-file-yellow" style="display:none"/> <button id="change-yellow" onclick="$('#aud-file-yellow').click();"> Change... </button> </div> <div class="right-aligned"> <button id="play-yellow">Play</button> </div> </div> <div> <div> <input type="checkbox" id="chk-aud-green" checked /> <label for="chk-aud-green">Green</label> </div> <div> <input type="file" id="aud-file-green" style="display:none"/> <button id="change-green" onclick="$('#aud-file-green').click();"> Change... </button> </div> <div class="right-aligned"> <button id="play-green">Play</button> </div> </div> </div> <div id="tab-mask"> <div style="height: 10%;"> </div> <div style="text-align: center;"> <div> <label for="opacity">Opacity</label> </div> <div> <input type="range" id="opacity" min="0" max="1" step="0.05" value="0.3" /> </div> </div> <div> <div> <input type="checkbox" id="chk-mask-red" checked /> <label for="chk-mask-red">Red</label> </div> <div> <select id="mask-red"> <option value="chess" selected> Chess </option> <option value="vertical"> Vertical </option> <option value="oblique"> Oblique </option> </select> </div> <div class="right-aligned"> <input type="color" id="colour-red" value="#FF0000" /> </div> </div> <div> <div> <input type="checkbox" id="chk-mask-yellow" checked /> <label for="chk-mask-yellow">Yellow</label> </div> <div> <select id="mask-yellow"> <option value="chess"> Chess </option> <option value="vertical" selected> Vertical </option> <option value="oblique"> Oblique </option> </select> </div> <div class="right-aligned"> <input type="color" id="colour-yellow" value="#FFFF00" /> </div> </div> <div> <div> <input type="checkbox" id="chk-mask-green" checked /> <label for="chk-mask-green">Green</label> </div> <div> <select id="mask-green"> <option value="chess"> Chess </option> <option value="vertical"> Vertical </option> <option value="oblique" selected> Oblique </option> </select> </div> <div class="right-aligned"> <input type="color" id="colour-green" value="#00BB00" /> </div> </div> </div> </div> <div id="button-container"> <button id="btn-start" onclick="start_lh();"> Start </button> </div> </div> </div> <div id="demo"> <fieldset> <legend>Clear</legend> <button onclick="demoClear();">Clear all</button> </fieldset> <fieldset> <legend>Chess</legend> <div class="opt"> <label for="chess-colour">Colour</label> <input id="chess-colour" type="color" value="#FF0000" /> </div> <div class="opt"> <label for="chess-opacity">Opacity</label> <input id="chess-opacity" type="range" value="0.3" min="0" max="1" step="0.01"/> </div> <div class="opt"> <label for="chess-rows">Rows</label> <input id="chess-rows" type="number" value="10" min="2" max="20"/> </div> <div> <button onclick="demoChess();">Draw</button> </div> </fieldset> <fieldset> <legend>Lines</legend> <div class="opt"> <label for="line-colour">Colour</label> <input id="line-colour" type="color" value="#FF0000" /> </div> <div class="opt"> <label for="line-opacity">Opacity</label> <input id="line-opacity" type="range" value="0.3" min="0" max="1" step="0.01"/> </div> <div class="opt"> <label for="line-angle">Angle</label> <input id="line-angle" type="number" value="0" min="-90" max="90"/> ° </div> <div class="opt"> <label for="line-number">Number</label> <input id="line-number" type="number" value="20" min="2" max="60"/> </div> <div class="opt"> <label for="line-width">Line width</label> <input id="line-width" type="range" value="5" min="1" max="15"/> </div> <div> <button onclick="demoLines();">Draw</button> </div> </fieldset> </div> <div id="status-txt"></div> </body> </html> <!-- To find out coordinates of a point $('#screen')[0].addEventListener('mousedown', function(e) {console.log([e.offsetX/screenWidth, e.offsetY/screenHeight])}); -->
team.html
aldorperez/GiftCards
<!DOCTYPE html> <html> <head> <title>GiftCards.com - Schedule - Coding Assessment - Front End Developers</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet"> <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet"> <link href="css/layout.css" rel="stylesheet"> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> </head> <body> <header> <div class="row-fluid"> <div class="span12"> <div class="container"> <div class="row" style="margin:10px auto;"> <div class="span8 navigation-container"> <ul> <li><a href="index.html">Home</a></li> <li><a href="contactus.html">Contact Us</a></li> <li><a href="sponsors.html">Sponsors</a></li> <li><a href="stats.html">Statistics</a></li> <li><a href="team.html">Team</a></li> </ul> </div> <div class="span4 social-icons"> <span class="icon-facebook icon-2x"></span> <span class="icon-twitter icon-2x"></span> <span class="icon-google-plus icon-2x"></span> </div> </div> </div> </div> </div> </header> <div class="container"> <div class="row"> <div class="span12"> <a href="/"><img src="images/logo.png" style="padding:5px;" /></a> </div> </div> </div> <div class="container main-body"> <div class="row"> <div class="span12"> <div style="padding:5px;"> <h1>2013 Roster</h1> <h2>Starting Line Up</h2> <div class="team-members clearfix"> <div class="pull-left player"> <strong><img src="images/team/Mike Schroeder.jpg" width="300" height="200" alt="Mike Schroeder"><br> Mike Schroeder</strong><br /> #13 - Forward </div> <div class="pull-left player"> <strong><img src="images/team/Andrew Roberts.jpg" width="300" height="200" alt="Andrew Roberts"> Andrew Roberts</strong><br /> #10 - Forward </div> <div class="pull-left player"> <strong><img src="images/team/Dan Gaffey.jpg" width="300" height="200" alt="Dan Gaffey">Dan Gaffey</strong><br /> #1 - Forward </div> <div class="pull-left player"> <strong><img src="images/team/Yehuda Miller.jpg" width="300" height="200" alt="Yehuda Miller">Yehuda Miller</strong><br /> #82 - Defenseman </div> <div class="pull-left player"> <strong><img src="images/team/Chad Smith.jpg" width="300" height="200" alt="Chad Smith">Chad Smith</strong><br /> #14 - Defenseman </div> <div class="pull-left player"> <strong><img src="images/team/Jack Reacher.jpg" width="300" height="200" alt="Jack Reacher">Jack Reacher</strong><br /> #35 - Goalie </div> </div> <h2>Entire Team Roster</h2> <table class="table table-striped"> <thead> <tr> <th>Number</th> <th>Name</th> <th>Position</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Dan Gaffey</td> <td>Forward</td> </tr> <tr> <td>6</td> <td>Tom Koerbel</td> <td>Goalie</td> </tr> <tr> <td>7</td> <td>Clarence Valtteri</td> <td>Forward</td> </tr> <tr> <td>10</td> <td>Andrew Roberts</td> <td>Forward</td> </tr> <tr> <td>11</td> <td>Andre Saku</td> <td>Forward</td> </tr> <tr> <td>12</td> <td>Lon Logan</td> <td>Defenseman</td> </tr> <tr> <td>13</td> <td>Mike Schroeder</td> <td>Forward</td> </tr> <tr> <td>14</td> <td>Chad Smith</td> <td>Defenseman</td> </tr> <tr> <td>22</td> <td>Anthony Martin</td> <td>Forward</td> </tr> <tr> <td>24</td> <td>Rafe Tracy</td> <td>Defenseman</td> </tr> <tr> <td>26</td> <td>Oswald Schuyler</td> <td>Defenseman</td> </tr> <tr> <td>27</td> <td>Osku Boniface</td> <td>Forward</td> </tr> <tr> <td>33</td> <td>Abner Jeremias</td> <td>Forward</td> </tr> <tr> <td>35</td> <td>Jack Reacher</td> <td>Goalie</td> </tr> <tr> <td>42</td> <td>Andrew Miarchi</td> <td>Forward</td> </tr> <tr> <td>55</td> <td>Selwyn Reed</td> <td>Forward</td> </tr> <tr> <td>72</td> <td>Negley Rodgers</td> <td>Forward</td> </tr> <tr> <td>82</td> <td>Yehuda Miller</td> <td>Defenseman</td> </tr> <tr> <td>96</td> <td>Chris Gardner</td> <td>Forward</td> </tr> <tr> <td>97</td> <td>Brandon Corwin</td> <td>Forward</td> </tr> </tbody> </table> </div> </div> </div> </div> <footer> <div class="row-fluid"> <div class="span12"> <div class="container"> <div class="row"> <div class="span9 navigation-container"> <ul> <li><a href="index.html">Home</a></li> <li><a href="contactus.html">Contact Us</a></li> <li><a href="sponsors.html">Sponsors</a></li> <li><a href="stats.html">Statistics</a></li> <li><a href="team.html">Team</a></li> </ul> </div> <div class="span3"> Pittsburgh Grizzlies<br /> Console Energy Center<br /> 1001 Fifth Avenue,<br /> Pittsburgh, PA 15219<br /> 412.642.1800<br /> info@pghgrizzlies.com<br /> </div> </div> </div> </div> </div> </footer> </body> </html>
docs/demos/jspsych-rdk-demo3.html
jodeleeuw/jsPsych
<!DOCTYPE html> <html> <head> <script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/jspsych.js"></script> <script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-html-button-response.js"></script> <script src="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/plugins/jspsych-rdk.js"></script> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jspsych/jsPsych@6.3.1/css/jspsych.css"> <style> .jspsych-btn {margin-bottom: 10px;} </style> </head> <body></body> <script> var jsPsych = initJsPsych(); var start = { type: jsPsychHtmlButtonResponse, stimulus: '', choices: ['Run demo'] }; var show_data = { type: jsPsychHtmlButtonResponse, stimulus: function() { var trial_data = jsPsych.data.getLastTrialData().values(); var trial_json = JSON.stringify(trial_data, null, 2); return `<p style="margin-bottom:0px;"><strong>Trial data:</strong></p> <pre style="margin-top:0px;text-align:left;">${trial_json}</pre>`; }, choices: ['Repeat demo'] }; var trial = { type: jsPsychRdk, number_of_apertures: 3, //This needs to be set if more than one aperture trial_duration: 10000, correct_choice: "a", RDK_type: 3, //Applied to all apertures if only one value aperture_width: 200, //Applied to all apertures if only one value number_of_dots: [50, 200, 100], //Different parameter for each aperture. Array length must equal number_of_apertures aperture_center_x: [(window.innerWidth/2)-300,window.innerWidth/2,(window.innerWidth/2)+300] //Separate the apertures on the screen (window.innerWidth/2 is the middle of the screen) }; var trial_loop = { timeline: [trial, show_data], loop_function: function() { return true; } }; if (typeof jsPsych !== "undefined") { jsPsych.run([start, trial_loop]); } else { document.body.innerHTML = '<div style="text-align:center; margin-top:50%; transform:translate(0,-50%);">You must be online to view the plugin demo.</div>'; } </script> </html>
dist/index.html
easingthemes/timeline
<!DOCTYPE html> <html class=no-js> <head> <meta charset=utf-8> <title>timeline</title> <meta name=description content=""> <meta name=viewport content="width=device-width"> <link rel="shortcut icon" href=/6df2b309.favicon.ico> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel=stylesheet href=styles/22596839.main.css> <script src=scripts/vendor/1cb556bb.modernizr.js></script> <body> <article></article> <div><a href="" class=dot-repeat>repeat</a></div> <script id=skillsTemplate type=text/template><ul id="dot-vh1"> {{#skills}} <li data-text="{{title}}">{{title}}</li> {{^last}} <li class="dot-plus"><span></span></li> {{/last}} {{/skills}} </ul></script> <script src=scripts/c0d4a8d7.vendor.js></script> <script src=scripts/24db8845.main.js></script>
clean/Linux-x86_64-4.09.0-2.0.5/extra-dev/8.10.0/paradoxes/8.7.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>paradoxes: 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.10.0 / paradoxes - 8.7.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> paradoxes <small> 8.7.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-03-09 03:40:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-03-09 03:40:58 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.10.0 Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.09.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.0 Official release 4.09.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/paradoxes&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Paradoxes&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.8~&quot;} ] tags: [ &quot;keyword: Reynolds paradox&quot; &quot;keyword: Burali-Forti paradox&quot; &quot;keyword: Diaconescu paradox&quot; &quot;keyword: set theory&quot; &quot;keyword: system U&quot; &quot;keyword: inconsistency&quot; &quot;keyword: Hurkens paradox&quot; &quot;category: Mathematics/Logic/Foundations&quot; ] authors: [ &quot;Bruno Barras&quot; &quot;Thierry Coquand&quot; &quot;Hugo Herbelin&quot; &quot;Benjamin Werner&quot; ] bug-reports: &quot;https://github.com/coq-contribs/paradoxes/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/paradoxes.git&quot; synopsis: &quot;Paradoxes in Set Theory and Type Theory&quot; description: &quot;&quot;&quot; A formalisation of Burali-Forti paradox in system U (the existence of an ordinal of ordinals is inconsistent), of Diaconescu paradox (axiom of choice implies excluded-middle), of Reynolds paradox (there is no set-theoretic model of system F) and Hurkens paradox in system U (adapted by H. Geuvers to show the inconsistency of Excluded-Middle in impredicative-Set Calculus of Inductive Constructions).&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/paradoxes/archive/v8.7.0.tar.gz&quot; checksum: &quot;md5=5579a35f7ae100a496a87b114fafd9f0&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-paradoxes.8.7.0 coq.8.10.0</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.10.0). The following dependencies couldn&#39;t be met: - coq-paradoxes -&gt; coq &lt; 8.8~ -&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-paradoxes.8.7.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <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>
html/234567150119.html
GoC-Spending/data-corporations
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Blue Star Cleaning System Ltd. - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492270006555&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=6287&V_SEARCH.docsStart=6286&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/rgstr.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=6285&amp;V_DOCUMENT.docRank=6286&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492270023584&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567154675&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=6287&amp;V_DOCUMENT.docRank=6288&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492270023584&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567142637&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Blue Star Cleaning System Ltd. </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Blue Star Cleaning System Ltd.</p> <h2 class="h5 mrgn-bttm-0">Alternate Name:</h2> <p class="mrgn-bttm-0">Blue Star Cleaning System Ltd. - Cleaning Professionals, Albertas Commercial Cleaning and Janitorial Service in Edmonton</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.bluestarcleaning.ca/" target="_blank" title="Website URL">http://www.bluestarcleaning.ca/</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> 1110 59A St SW<br/> EDMONTON, Alberta<br/> T6X 0T2 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 1110 59A St SW<br/> EDMONTON, Alberta<br/> T6X 0T2 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (780) 466-0792 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: </p> </div> <div class="col-md-3 mrgn-tp-md"> <h2 class="wb-inv">Logo</h2> <img class="img-responsive text-left" src="https://www.ic.gc.ca/app/ccc/srch/media?estblmntNo=234567150119&amp;graphFileName=logo.png&amp;applicationCode=AP&amp;lang=eng" alt="Logo" /> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> <h2 class="wb-inv">Company Profile</h2> <br> Blue Star Cleaning System provides a wide variety of professional cleaning services in Edmonton suited for your special needs.<br> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Zsolt Torocsik </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> webmaster, cleaning<br> </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Customer Service. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 466-0792 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> web@bluestarcleaning.ca </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 561722 - Janitorial Services (except Window Cleaning) </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Affordable Cleaning Services in Edmonton<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Blue Star Cleaning System provides a wide variety of a professional cleaning service in Edmonton suited for your special needs. We use the best products to achieve the results you want. Our target is to provide you with a thoroughly clean environment, with attention to your comfort and safety. <br> <br> Our commitment to excellence combined with our specialized cleaning techniques guarantee that you will have the cleanest space possible. Click on the &quot;Janitorial Services&quot; link to read in detail about our cleaning methods. <br> <br> <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <!-- Market Profile --> <!-- Sector Information --> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Zsolt Torocsik </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> webmaster, cleaning<br> </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Area of Responsibility: </strong> </div> <div class="col-md-7"> Customer Service. </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (780) 466-0792 </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Email: </strong> </div> <div class="col-md-7"> web@bluestarcleaning.ca </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 561722 - Janitorial Services (except Window Cleaning) </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Services &nbsp; </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Affordable Cleaning Services in Edmonton<br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Blue Star Cleaning System provides a wide variety of a professional cleaning service in Edmonton suited for your special needs. We use the best products to achieve the results you want. Our target is to provide you with a thoroughly clean environment, with attention to your comfort and safety. <br> <br> Our commitment to excellence combined with our specialized cleaning techniques guarantee that you will have the cleanest space possible. Click on the &quot;Janitorial Services&quot; link to read in detail about our cleaning methods. <br> <br> <br> </div> </div> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2016-03-09 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
rattler/templates/registration/password_reset_done.html
IT-PM-OpenAdaptronik/Webapp
{% extends "base.html" %} {% load static %} {% block siteTitle %}E-Mail zum Zurücksetzen abgesendet{% endblock %} {% block moreStylesheets %} {% endblock %} {% block title %}{{ title }}{% endblock %} {% block container %} <h2>E-Mail zum Passwort-Zurücksetzen abgesendet</h2> <p> Wir haben eine E-Mail zum Zurücksetzen des Passwortes an die angegebene E-Mail-Adresse gesendet, sofern ein entsprechendes Konto existiert. Sie sollte in Kürze ankommen. Falls die E-Mail nicht angekommen sein sollte, bitte die E-Mail-Adresse auf Richtigkeit und gegebenenfalls den Spam-Ordner überprüfen. </p> {% endblock %}
docs/modules/_src_config_.html
TrigenSoftware/i18n-for-browser
<!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>&quot;src/config&quot; | i18n-for-browser</title> <meta name="description" content="Documentation for i18n-for-browser"> <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.json" 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">i18n-for-browser</a> </div> <div class="table-cell" id="tsd-widgets"> <div id="tsd-filter"> <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a> <div class="tsd-filter-group"> <div class="tsd-select" id="tsd-filter-visibility"> <span class="tsd-select-label">All</span> <ul class="tsd-select-list"> <li data-value="public">Public</li> <li data-value="protected">Public/Protected</li> <li data-value="private" class="selected">All</li> </ul> </div> <input type="checkbox" id="tsd-filter-inherited" checked /> <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label> <input type="checkbox" id="tsd-filter-only-exported" /> <label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label> </div> </div> <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a> </div> </div> </div> </div> <div class="tsd-page-title"> <div class="container"> <ul class="tsd-breadcrumb"> <li> <a href="../globals.html">Globals</a> </li> <li> <a href="_src_config_.html">&quot;src/config&quot;</a> </li> </ul> <h1>Module &quot;src/config&quot;</h1> </div> </div> </header> <div class="container container-main"> <div class="row"> <div class="col-8 col-content"> <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>Classes</h3> <ul class="tsd-index-list"> <li class="tsd-kind-class tsd-parent-kind-module"><a href="../classes/_src_config_.config.html" class="tsd-kind-icon">Config</a></li> </ul> </section> <section class="tsd-index-section tsd-is-not-exported"> <h3>Variables</h3> <ul class="tsd-index-list"> <li class="tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"><a href="_src_config_.html#cookies_life_time" class="tsd-kind-icon">COOKIES_<wbr>LIFE_<wbr>TIME</a></li> <li class="tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"><a href="_src_config_.html#is_browser" class="tsd-kind-icon">IS_<wbr>BROWSER</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-not-exported"> <h2>Variables</h2> <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"> <a name="cookies_life_time" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagConst">Const</span> COOKIES_<wbr>LIFE_<wbr>TIME</h3> <div class="tsd-signature tsd-kind-icon">COOKIES_<wbr>LIFE_<wbr>TIME<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">3600</span><span class="tsd-signature-symbol"> = 3600</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/TrigenSoftware/i18n-for-browser/blob/b2facd0/src/config.ts#L13">src/config.ts:13</a></li> </ul> </aside> </section> <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"> <a name="is_browser" class="tsd-anchor"></a> <h3><span class="tsd-flag ts-flagConst">Const</span> IS_<wbr>BROWSER</h3> <div class="tsd-signature tsd-kind-icon">IS_<wbr>BROWSER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = typeof window !&#x3D;&#x3D; &#x27;undefined&#x27;</span></div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/TrigenSoftware/i18n-for-browser/blob/b2facd0/src/config.ts#L14">src/config.ts:14</a></li> </ul> </aside> </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> <li class="current tsd-kind-module"> <a href="_src_config_.html">&quot;src/config&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_core_.html">&quot;src/core&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_index_.html">&quot;src/index&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods____.html">&quot;src/methods/__&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods___m_.html">&quot;src/methods/__m&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods___mf_.html">&quot;src/methods/__mf&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods___n_.html">&quot;src/methods/__n&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods_common_.html">&quot;src/methods/common&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_methods_index_.html">&quot;src/methods/index&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_middleware_.html">&quot;src/middleware&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_processors_.html">&quot;src/processors&quot;</a> </li> <li class=" tsd-kind-module"> <a href="_src_types_.html">&quot;src/types&quot;</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-class tsd-parent-kind-module"> <a href="../classes/_src_config_.config.html" class="tsd-kind-icon">Config</a> </li> <li class=" tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"> <a href="_src_config_.html#cookies_life_time" class="tsd-kind-icon">COOKIES_<wbr>LIFE_<wbr>TIME</a> </li> <li class=" tsd-kind-variable tsd-parent-kind-module tsd-is-not-exported"> <a href="_src_config_.html#is_browser" class="tsd-kind-icon">IS_<wbr>BROWSER</a> </li> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-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-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> </body> </html>
public/app/view/presentationedit.html
Norbell/reveal-manager
<link rel="stylesheet" href="/app/lib/reveal/reveal.min.css"> <link rel="stylesheet" href="/app/lib/reveal/css/theme/default_div.css" id="theme"> <div class="presentationedit_container"> <div class="presentationedit"> <div class="cssinputbox "> <h3><small>CSS</small></h3> <textarea name="css" ng-model="presentationedit.css"></textarea> </div> <div class="htmlinputbox"> <h3><small>HTML</small></h3> <textarea name="html" ng-model="presentationedit.html" ></textarea> </div> </div> <div class="preview"> <div class="reveal"> <div class="slides" ng-bind-html="slides"> {{slides}} </div> </div> </div> <div class="presentationedit_button"> <div class="alert alert-success animate-show" ng-show="savealert">Gespeichert!!</div> <div class="alert alert-warning" ng-show="savealerterror">Error</div> <button type="button" class="btn btn-success" ng-click="saveButton()">Speichern</button> </div> </div>
animations/sliding_exits/slideOutRight.css
darielnoel/anicollection
/* *@name slideOutRight *@className slideOutRight animated *@cssCode *@editionLink codepen.io *@author Dan Eden *@source Animate.css *@sourceUrl http://daneden.github.io/animate.css/ *@issues https://github.com/daneden/animate.css/issues *@license MIT */ @keyframes slideOutRight { 0% { transform: translateX(0); } 100% { visibility: hidden; transform: translateX(100%); } } .slideOutRight { animation-name: slideOutRight; }
clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.4.5/contrib:higman-s/dev/2014-11-17_16-11-16.html
coq-bench/coq-bench.github.io-old
<!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:higman-s dev</a></li> <li class="active"><a href="">2014-11-17 16:11: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:higman-s <small> dev <span class="label label-danger">Lint error</span> </small> </h1> <p><em><script>document.write(moment("2014-11-17 16:11:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-17 16:11:16 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:higman-s/coq:contrib:higman-s.dev</code></dd> <dt>Return code</dt> <dd>256</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>You should add an homepage for your package. For example: homepage: &quot;https://github.com/user/project&quot; </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>Data not available in this bench.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
app/views/blrsequipment/page11.html
pandreyn/armiks
<h1 xmlns="http://www.w3.org/1999/html">Подогреватель сетевой воды типа ПСВ</h1> <table class="table table-striped"> <tbody> <tr> <td><img alt="" style="width: 404px; height: 427px;" src="images/dynamic/clip_image013_gif.png"></td> <td><p>Подогреватели сетевой воды типа ПСВ предназначены для подогрева воды для отопительных, производственных и бытовых нужд. ПСВ представляет собой кожухотрубный теплообменник вертикального типа, состоящий из корпуса, трубной системы с латунными трубками 19х1, верхней и нижней (плавающей) водяной камеры. </p> </td> <td> <table class="table table-striped f10"> <tbody> <tr> <td>Обозначение</td> <td>Наименование</td> </tr> <tr> <td>А</td> <td>Вход сетевой воды</td> </tr> <tr> <td>Б</td> <td>Выход сетевой воды</td> </tr> <tr> <td>В</td> <td>Вход пара</td> </tr> <tr> <td>Г</td> <td>Подвод конденсата</td> </tr> <tr> <td>Д</td> <td>Выход конденсата</td> </tr> <tr> <td>Е</td> <td>Отсос воздуха</td> </tr> <tr> <td>Ж</td> <td>Слив воды</td> </tr> <tr> <td>К</td> <td>к дифманометру</td> </tr> </tbody> </table> </td> </tr> </table> <p>Основные параметры и технические характеристики:</p> <table class="table table-striped f10"> <tbody> <tr> <td rowspan="2">Марка<br>подогревателя</td> <td rowspan="2">Пов-ть теплообмена, м<sup>2</sup></td> <td colspan="2">Рабочее избыт. давление, кгс/см<sup>2</sup></td> <td rowspan="2">Номина-льный расход сетевой воды, т/ч</td> <td rowspan="2">Кол-во ходов сетевой воды</td> <td colspan="2">Габариты</td> <td rowspan="2">Масса, кг</td> <td rowspan="2">Расчетная теплопроизводительность,<br>Гкал/ч</td> </tr> <tr> <td>пара в корпусе</td> <td>воды в трубной системе</td> <td>диаметр, Dн, мм</td> <td>высота,H, мм</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-45-7-15</td> <td>45</td> <td>7</td> <td>15</td> <td>90</td> <td>4</td> <td>720</td> <td>4840</td> <td>2273</td> <td>7,2</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-63-7-15</td> <td>63</td> <td>7</td> <td>15</td> <td>120</td> <td>4</td> <td>816</td> <td>5112</td> <td>2946</td> <td>9,6</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-90-7-15</td> <td>90</td> <td>7</td> <td>15</td> <td>175</td> <td>4</td> <td>1020</td> <td>5432</td> <td>4202</td> <td>14,0</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-125-7-15</td> <td>125</td> <td>7</td> <td>15</td> <td>250</td> <td>4</td> <td>1020</td> <td>5432</td> <td>4553</td> <td>20,0</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-200-7-15</td> <td>200</td> <td>7</td> <td>15</td> <td>400</td> <td>4</td> <td>1232</td> <td>5724</td> <td>7444</td> <td>32,5</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-315-3-23</td> <td>315</td> <td>3</td> <td>23</td> <td>725</td> <td>2</td> <td>1524</td> <td>7700</td> <td>12306</td> <td>56,5</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-315-14-23</td> <td>315</td> <td>14</td> <td>23</td> <td>1130</td> <td>2</td> <td>1544</td> <td>7524</td> <td>13650</td> <td>45,2</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-500-3-23</td> <td>500</td> <td>3</td> <td>23</td> <td>1150</td> <td>2</td> <td>1624</td> <td>7920</td> <td>14650</td> <td>52,5</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;ПСВ-500-14-23</td> <td>500</td> <td>14</td> <td>23</td> <td>1800</td> <td>2</td> <td>1624</td> <td>7920</td> <td>16032</td> <td>75,0</td> </tr> </tbody> </table>
views/importer/spreadsheet.html
luisibanez/SahanaEden
{{extend "layout.html"}} <h1>This is the importer/spreadsheet.html template</h1> {{if session.s3.security_policy==1:}} <script type="text/javascript">//<![CDATA[ $(function() { // Hide the Admin row for simple security_policy $('#importer_spreadsheet_admin__row').hide(); }); //]]></script> {{=module_name}} {{=BEAUTIFY(request)}} {{=BEAUTIFY(response._vars)}}
web/styles/css/global/components-rounded.css
JoPaRoRo/Fleet
/* Error: Import directives may not be used within control directives or mixins. on line 7 of C:/Users/nanoj/Desktop/FleetV5/web/styles/scss/global/_components.scss from line 9 of C:\Users\nanoj\Desktop\FleetV5\web\styles\scss\global\components-rounded.scss 2: @import '_variables'; 3: @import 'components/_mixins'; 4: 5: // General CSS Reset 6: @if $theme-style == "square" { 7: @import 'components/_reset-rounds'; 8: } 9: 10: @import 'components/_reset-general'; 11: 12: // Material Desing Components Backtrace: C:/Users/nanoj/Desktop/FleetV5/web/styles/scss/global/_components.scss:7 C:\Users\nanoj\Desktop\FleetV5\web\styles\scss\global\components-rounded.scss:9 C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:13:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `map' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:49:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `block in visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:67:in `visit_if' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:15:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `map' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:49:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `block in visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:57:in `visit_root' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/check_nesting.rb:15:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:24:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:325:in `block in visit_import' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:88:in `block in with_import' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:115:in `with_frame' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:88:in `with_import' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:323:in `visit_import' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:158:in `block in visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:79:in `block in with_base' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:115:in `with_frame' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/stack.rb:79:in `with_base' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:158:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `map' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:52:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:179:in `with_environment' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:166:in `visit_children' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `block in visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:186:in `visit_root' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/base.rb:36:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:157:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/visitors/perform.rb:8:in `visit' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/root_node.rb:36:in `css_tree' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/engine.rb:378:in `_render_with_sourcemap' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/engine.rb:295:in `render_with_sourcemap' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/exec/sass_scss.rb:414:in `run' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/exec/sass_scss.rb:63:in `process_result' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/exec/base.rb:52:in `parse' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/lib/sass/exec/base.rb:19:in `parse!' C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.21/bin/sass:13:in `<top (required)>' C:/Ruby22-x64/bin/sass:23:in `load' C:/Ruby22-x64/bin/sass:23:in `<main>' */ body:before { white-space: pre; font-family: monospace; content: "Error: Import directives may not be used within control directives or mixins.\A on line 7 of C:/Users/nanoj/Desktop/FleetV5/web/styles/scss/global/_components.scss\A from line 9 of C:\Users\nanoj\Desktop\FleetV5\web\styles\scss\global\components-rounded.scss\A \A 2: @import '_variables'; \A 3: @import 'components/_mixins'; \A 4: \A 5: // General CSS Reset\A 6: @if $theme-style == \"square\" { \A 7: @import 'components/_reset-rounds';\A 8: }\A 9: \A 10: @import 'components/_reset-general'; \A 11: \A 12: // Material Desing Components"; }
_includes/patterns/button-danger.html
cybord/invoicing-html-prototype
<a href="#" class="btn btn-danger">Danger color button text</a> <a href="#" class="btn btn-danger disabled">Danger color button text (disabled)</a>
docset/armacode.docset/Contents/Resources/Documents/armacode/ghuserobjects/Object_Attributes.html
theTonyHo/armacode
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Object Attributes &mdash; armacode Documentation</title> <link rel="stylesheet" href="../../_static/basic.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: 'v1.1.4 Build 118.0515', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link rel="shortcut icon" href="../../_static/ar-ma_favicon.ico"/> <link rel="top" title="armacode Documentation" href="../../index.html" /> <link rel="up" title="GH User Objects" href="../../ghuserobjects.html" /> <link rel="next" title="Object Attributes Extended" href="Object_Attributes_Extended.html" /> <link rel="prev" title="Modify Object Attributes" href="Modify_Object_Attributes.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="Object_Attributes_Extended.html" title="Object Attributes Extended" accesskey="N">next</a> |</li> <li class="right" > <a href="Modify_Object_Attributes.html" title="Modify Object Attributes" accesskey="P">previous</a> |</li> <li class="nav-item nav-item-0"><a href="../../index.html">armacode Documentation</a> &raquo;</li> <li class="nav-item nav-item-1"><a href="../../ghuserobjects.html" accesskey="U">GH User Objects</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="object-attributes-icon"> <span id="object-attributes-gh"></span><span id="index-0"></span><h1>Object Attributes <img alt="icon" src="../../_images/Object_Attributes.png" /><a class="headerlink" href="#object-attributes-icon" title="Permalink to this headline">¶</a></h1> <p>Object Attributes Read Objects Attributes in Rhino Document</p> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="Modify_Object_Attributes.html" title="previous chapter">Modify Object Attributes </a></p> <h4>Next topic</h4> <p class="topless"><a href="Object_Attributes_Extended.html" title="next chapter">Object Attributes Extended </a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../../_sources/armacode/ghuserobjects/Object_Attributes.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="Object_Attributes_Extended.html" title="Object Attributes Extended" >next</a> |</li> <li class="right" > <a href="Modify_Object_Attributes.html" title="Modify Object Attributes" >previous</a> |</li> <li class="nav-item nav-item-0"><a href="../../index.html">armacode Documentation</a> &raquo;</li> <li class="nav-item nav-item-1"><a href="../../ghuserobjects.html" >GH User Objects</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2014, Tony Ho. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.5. </div> </body> </html>
index.css
5paceManSpiff/algoart
body { background-color: #000000; } video { margin: 0; padding: 0; width: 100%; text-align: center; }
webpack-babel-eslint-assets/app/assets/Component.css
acpardal/webpack-playground
.Component-wrapper { background-color: #EEE; }
evaluate/templates/evaluate/test_run_messages.html
kartikshah1/Test
{% load evaluatetags %} <div class="accordion-group"> <div class="accordion-heading"> <a class="accordion-toggle" data-toggle="collapse" data-parent="#accordion{{ prgrm.program_result.program.id }}pro" href="#collapse{{ tst.test_case.id }}tst"> {% if tst.return_code == 0 and tst.test_passed %} {{ tst.test_case.name }} PASS {% else %} {{ tst.test_case.name }} FAIL {% endif %} <span class="pull-right">{{ tst.marks }} Marks</span> </a> </div> <div id="collapse{{ tst.test_case.id }}tst" class="accordion-body collapse"> <div style="padding-left:40px" class="accordion-inner"> {% if tst.return_code == 0 %} <div class="row"> {% if is_due or user == assignment.creater %} <div class="span4" style="word-wrap: break-word;"> Input:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.std_input|join:"<br/>" }} </div> <div class="span4" style="word-wrap: break-word;"> Expected output:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.expected_output|join:"<br/>" }} </div> <div class="span4" style="word-wrap: break-word;"> Actual output:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.actual_output|join:"<br/>" }} </div> {% else %} Output is hidden before deadline {% endif %} </div> {% else %} <div class="row"> <h5>{{ error_msg|getdictvalue:tst.return_code }}. Program exited with return code {{ tst.return_code }}.</h5> </div> <div class="row"> {% if is_due or user == assignment.creater %} <div class="span4" style="word-wrap: break-word;"> Input:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.std_input|join:"<br/>" }} </div> <div class="span4" style="word-wrap: break-word;"> Expected output:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.expected_output|join:"<br/>" }} </div> <div class="span4" style="word-wrap: break-word;"> Actual output:<hr style="margin-top: 5px; margin-bottom: 10px"> {{ tst.actual_output|join:"<br/>" }} </div> {% else %} Output is hidden before deadline {% endif %} </div> {% endif %} </div> </div> </div>
css/colours/62.css
philjackson/cv
#fixedHeader { display: none; position: fixed; left: 0px; top: 0px; background-color: #75616b; width: 100%; margin: 0px; padding: 0px; z-index: 999; text-align: center; } #fixedHeader h1 { text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); color: #eeeeee; padding: 2px; margin: 2px; } .section-header { background-color: #75616b; text-align: center; background: #9c8791; /* Old browsers */ background: -moz-radial-gradient(center, ellipse cover, #9c8791 0%, #75616b 100%); /* FF3.6+ */ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #9c8791), color-stop(100%, #75616b)); /* Chrome,Safari4+ */ background: -webkit-radial-gradient(center, ellipse cover, #9c8791 0%, #75616b 100%); /* Chrome10+,Safari5.1+ */ background: -o-radial-gradient(center, ellipse cover, #9c8791 0%, #75616b 100%); /* Opera 12+ */ background: -ms-radial-gradient(center, ellipse cover, #9c8791 0%, #75616b 100%); /* IE10+ */ background: radial-gradient(ellipse at center, #9c8791 0%, #75616b 100%); /* W3C */ padding-top: 20px; padding-bottom: 20px; } .section-header h1 { padding-top: 40px; } .section-header h2 { text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); padding-bottom: 40px; } .section-contact { background-color: #bfcff7; color: #444444; } .section-contact a { color: #444444; text-decoration: none; border-bottom: 1px dotted #444444; } .section-contact a:hover { text-decoration: none; border-bottom: 0px; } .section-contact .fa-inverse { color: #bfcff7; } .section-summary { background-color: #dce4f7; color: #444444; } .section-summary p { font-size: 1.2em; } .section-summary h2 { color: #444444; } .section-recommendations { background-color: #d34017; color: #eeeeee; } .section-recommendations img { float: left; margin-right: 10px; border: 1px solid white; border-radius: 5px; box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); } .section-work-exp { background-color: #f8f3bf; color: #444444; } .section-work-exp h2 { color: #444444; } .section-work-exp .job-logo img { width: 100px; height: 100px; -webkit-border-radius: 50%; -moz-border-radius: 50%; -ms-border-radius: 50%; -o-border-radius: 50%; border-radius: 50%; box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); } .section-work-exp .job-dates { font-size: 0.8em; } .section-work-exp .job-meta { padding-bottom: 6px; } .section-work-exp .job-body { background-color: #fdfced; color: #444444; box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); padding: 15px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -ms-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; } .center { text-align: center; }
docs/html/pages.html
mrhampson/FortNitta
<!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>ECS160Android: Related Pages</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">ECS160Android </div> <div id="projectbrief">FortNitta Android platform team</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 class="current"><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="annotated.html"><span>Classes</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><!-- 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="header"> <div class="headertitle"> <div class="title">Related Pages</div> </div> </div><!--header--> <div class="contents"> <div class="textblock">Here is a list of all related documentation pages:</div><div class="directory"> <table class="directory"> <tr id="row_0_" class="even"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><a class="el" href="md_README.html" target="_self">Fort Nitta Android</a></td><td class="desc"></td></tr> </table> </div><!-- directory --> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Sun Mar 15 2015 22:20:55 for ECS160Android 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>
_includes/section-speakers.html
womengineersday/womengineersday.github.io
<p class="border-emphasis"> Please stay tuned as we continue announcing speakers! Our speakers and moderators so far include: </p> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-jacinda.jpg" alt="Jacinda Woodward"> </div> <div class="col-lg-9"> <h3>Jacinda Woodward</h3> <h6>Senior Vice President of Resources &amp; River Management, Tennessee Valley Authority</h6> <p>Jacinda joined TVA in 1984 and has worked in various business units throughout her career. Jacinda is currently Senior Vice President of Resources &amp; River Management, which is responsible for personnel and public safety, evironmental operations and compliance, TVA building facilities maintenance, and management of the 5th largest river system in the country and stweardship of the 293,000 acres of public lands for which TVA is responsible. Prior to her current assignment, Jacinda has also served as Senior Vice President of Transmission &amp; Power Supply, as well as, the Vice President of Transmission Reliability &amp; Operations, and the Vice President of Power Control Systems within TVA. Jacinda earned a bachelor of science degree in electrical engineering from Auburn University in 1988 and is a registered professional engineer in the state of Tennessee. She is married and has two daughters, ages 20 and 13. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-hoffman.jpg" alt="Peter Hoffman"> </div> <div class="col-lg-9"> <h3>Peter Hoffman</h3> <h6>Vice President of Intellectual Property Management, The Boeing Company</h6> <p>Peter Hoffman is vice president of Intellectual Property Management for The Boeing Company, the world's largest aerospace company. Hoffman is responsible for strategies that protect and generate the highest possible value from this significant corporate asset. Hoffman specifically manages the company's patent portfolio; protection of trade secrets; and licensing of tech nical data, images, consumer products, trademarks and patents. In addition to managing Boeing intellectual property, Hoffman also serves as executive sponsor of the Diversity &amp; Inclusion Council for Engineering, Operations &amp; Technology. Hoffman earned a bachelor's of science degree in mechanical engineering technology and a master's of science degree in mechanical engineering from the University of Tennessee, a master's of manufacturing engineering from Washington University in St. Louis, and a master's of international business from St. Louis University. Hoffman is a board member of the Advanced Manufacturing Research Center Group at the University of Sheffield in the UK, an Advisory Board member at the University of Tennessee College of Engineering, and a Fellow of the Royal Aeronautical Society.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-eric.jpg" alt="Eric Zeanah"> </div> <div class="col-lg-9"> <h3>Eric Zeanah</h3> <h6>President, American Accessories International, LLC. - UTKCOE Board Chair</h6> <p>After a three month internship, Mr. Zeanah chose to join American Accessories International, a world-wide product development and manufacturing execution company. Mr. Zeanah has since developed a thirty-two year career expanding into all aspects of business management including; Program Design, Manufacturing Controls, Marketing Procurement, as well as, Administration and Finance. After assuming ownership of American Accessories International in 1995, Mr. Zeanah has led his company into core supply roles for many corporate entities such as Johnson &amp; Johnson, Unilever, Kodak and Altria. Mr. Zeanah received a bachelor's degree in industrial engineering from the University of Tennessee in 1984. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-prewitt.jpg" alt="Katherine Prewitt"> </div> <div class="col-lg-9"> <h3>Katherine Prewitt</h3> <h6>Vice President, Southern Company Transmission</h6> <p>As vice president of Southern Company Services Transmission, Katherine oversees transmission design and maintenance support (D&amp;MS) and transmission planning in support of Southern Company’s operating companies and the southeastern bulk electric system. Prior to joining Southern Company, Katherine held positions at Midcontinent Independent System Operator (MISO), Southwest Power Pool (SPP) and Entergy. She has served in various leadership roles in multiple civic and utility industry organizations. Katherine holds a bachelor’s degree in chemical engineering from the University of Texas. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-marshall.jpg" alt="Lisa Marshall"> </div> <div class="col-lg-9"> <h3>Lisa Marshall</h3> <h6>Director of Outreach, Retention &amp; Engagement, NCSU Department of Nuclear Engineering</h6> <p>Lisa Marshall is the Director of Outreach, Retention &amp; Engagement for North Carolina State University’s Department of Nuclear Engineering. She is also the educational outreach director for the National Nuclear Security Administration (NNSA)-funded Consortium for Nonproliferation Enabling Capabilities (CNEC). She is responsible for pre-college outreach; undergraduate and graduate recruitment &amp; retention; and, teaches an introductory course section in engineering &amp; problem solving. Her world revolves around engineering education, energy geography and STEM diversity.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-janet.jpg" alt="Janet S. Hayes"> </div> <div class="col-lg-9"> <h3>Janet S. Hayes</h3> <h6>Attorney, Lewis Thomason</h6> <p>Janet Hayes, a shareholder in the Knoxville Lewis Thomason office, is an advocate for employers and businesses across the state. Ms. Hayes has successfully defended employment claims including sexual harassment, retaliatory discharge, discrimination, workers' compensation, invasion of privacy and denial of benefits. With her practice, she also develops successful human resource strategies as well as litigation-avoidance tactics for clients, and she assists employers by conducting and preparing comprehensive reports for internal investigations of employee complaints. In addition to her employment law practice, Ms. Hayes is actively involved in complex litigation, including class action and collective action defense. She has written multiple appellate briefs in a variety of topics and has argued before the Tennessee Court of Appeals and Untied States Court of Appeals for the Sixth Circuit. Ms. Hayes received her B.A. from Carson-Newman College and her J.D. from the University of Tennessee.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-mims.jpg" alt="Cavanaugh Mims"> </div> <div class="col-lg-9"> <h3>Cavanaugh Mims</h3> <h6>President, Visionary Solutions &amp; VS Group</h6> <p>Over the past 30 years, Cavanaugh Mims has established himself as a leader in business and program management. After graduating from the University of Tennessee with a degree in nuclear engineering, he began his career as a station nuclear engineer for the Tennessee Valley Authority and advanced to senior program/project manager for the Department of Energy providing expertise in the environmental remediation and waste management field before creating Visionary Solutions, LLC (VS) – www.vs-llc.com. In 2000, Mr. Mims founded VS to provide transportation and logistics services for Governmental and commercial nuclear clients both nationally and internationally. Today, VS has grown into VS Group, a family of five companies that provide high quality solutions to a variety of complex technical challenges including transportation and logistics, nuclear material disposition, additive manufacturing, and material recycling. Mr. Mims is an avid supporter of higher education and currently serves on the following at the University of Tennessee: Alumni Board of Directors; College of Engineering Advisory Board, Under Graduate Admissions Advisory Board; and he is also a Chancellor’s Associate. Mr. Mims and his wife Telicia have 2 children. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-misty.jpg" alt="Misty Mayes"> </div> <div class="col-lg-9"> <h3>Misty Mayes</h3> <h6>President and Founder, Management Solutions, LLC</h6> <p>Misty Mayes, PMP, is the president and founder of Management Solutions, LLC (MSLLC), an award-winning, comprehensive project management services company based in Knoxville, Tenn. Mayes started MSLLC in 2002 and has established MSLLC’s reputation as a provider of “best value services” in the areas of project controls/project management, forensic schedule analysis and project management training. Mayes has more than 26 years of executive leadership experience and has managed programs/projects to provide project management and controls services to a variety of clients. She has worked extensively with the U.S. Department of Energy’s (DOE’s) Oak Ridge National Laboratory (ORNL) providing project management/control services, including EVMS certification, project controls, cost estimating, and risk management services. MSLLC clients and projects have included the DOE, Department of Defense (DOD), the U.S. Army Corp of Engineers (USACE), UT-Battelle, Y-12 National Security Complex, ALCOA, Oak Ridge Associated Universities (ORAU) and TeamHealth among others. Mayes supports the greater Knoxville community throughout the year and serves on several boards, including the University of Tennessee College of Engineering Board of Advisors. She earned a Bachelor of Science in Engineering from the University of Tennessee in 1988.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-cannon.jpg" alt="Angie Cannon"> </div> <div class="col-lg-9"> <h3>Angie Cannon</h3> <h6>CEO, Cannon &amp; Cannon, Inc.</h6> <p>As Principal Founder and Chief Executive Officer of Cannon &amp; Cannon, Inc., Ms. Cannon has 22 years of experience in Engineering Consulting and Industrial Plant Project Management. Before starting in 1996, she worked as a Process Engineer as well as a Research and Development Engineer at an Elemental Phosphorus Plant for a major chemical company. Ms. Cannon is also a skilled Business Manager and Administrator. She has won numerous awards including the prestigious Knoxville Chamber of Commerce’s Pinnacle Award for Woman Owned Business of the year in 2015. Ms. Cannon is a graduate of Leadership Knoxville Class of 2016. She feels it is both an honor and an obligation to give back to the community and she serves on numerous national, state, and local boards and committees including the City of Knoxville Diversity Business Advisory Committee, Knoxville Chamber of Commerce Board, the Knoxville Fellows Board, Young Life Africa National Board, the Transportation and Infrastructure Committee for the Chamber, and the Engineering Excellence Award committee. She is also a mentor in the Knoxville Chamber’s Mentor/Protege Program for another small woman owned business. In her spare time, she loves to read and travel and usually leads an annual mission trip with her church to Mozambique, Africa where she has been active for many years.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-bennett.jpeg" alt="Bennett Croswell"> </div> <div class="col-lg-9"> <h3>Bennett Croswell</h3> <h6>President, Pratt &amp; Whitney Military Engines</h6> <p>Bennett Croswell is president of Pratt &amp; Whitney’s Military Engines business, where he oversees development, production and support of the company’s military offerings including the 5th generation F119 and F135 engines for the F-22 and F-35 fighters, the F100 for the F-15/F-16, the F117 for the C-17, the PW4062 for the KC-46A, as well as the Small Military Engine and Advanced Engine Program sectors. Bennett joined Pratt &amp; Whitney in 1979 and has been part of three Collier Trophy Award winning teams since. Previous leadership roles include director, F119 program; vice president, F119 program; vice president, Military Development Programs; and vice president Advanced Programs &amp; Technology. Bennett earned a Bachelor of Science degree in mechanical engineering from the University of Tennessee, and a Master of Business Administration degree from Embry Riddle Aeronautical University. He also graduated from the Defense Systems Management College in Fort Belvoir, Va.Bennett has authored several papers published by technical societies. He is also a member of the University Of Tennessee College Of Engineering Advisory Board, the Air Force Association, the Association of the United States Army, the Army Aviation Association of America and the Navy League. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-mayes.JPG" alt="Sam Mayes"> </div> <div class="col-lg-9"> <h3>Sam Mayes, PE</h3> <h6>Vice President and Co-Founder, Management Solutions, LLC</h6> <p>Sam Mayes, PE, is the vice-president and co-founder of Management Solutions, LLC (MSLLC), an award-winning, comprehensive project management services company based in Knoxville, Tenn. For more than 30 years, Mayes has managed design and construction projects ranging from a wide variety of civil/environmental design efforts to the construction of large Department of Transportation (DOT) highway and Superfund projects. He has significant management experience within both the design and construction arenas. He has performed as both an operations manager and project manager on various groups and/or projects. Mayes also has responsibilities for the continued growth of MSLLC through the financial management and operations of MSLLC as well as many areas of human resources. Mayes supports the greater Knoxville community throughout the year and serves as the Past-President for the American Society of Civil Engineers and through the Society of American Military Engineers (SAME). He earned a Bachelor of Science in Engineering from the University of Tennessee in 1985 and a Master Degree in Environmental Engineering from the University of Tennessee in 1997.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-myles.jpg" alt="LaToya Mylesl"> </div> <div class="col-lg-9"> <h3>LaToya Myles, PhD</h3> <h6>Deputy Director, NOAA Atmospheric Turbulence and Diffusion Division</h6> <p>Dr. LaToya Myles coordinates and supports research and development programs as deputy director of the National Oceanic and Atmospheric Administration (NOAA) Atmospheric Turbulence and Diffusion Division in Oak Ridge. She also conducts scientific studies to improve understanding of the emission, transformation, transport, and fate of atmospheric pollutants known to have an impact on human health and/or the environment. The Mississippi native is a magna cum laude graduate of Alcorn State University with a B.S. in chemistry and a B.S. in biology and has a Ph.D. in environmental sciences from Florida A&amp;M University. Through numerous professional and community organizations, she advocates for STEM (science, technology, engineering, and math) education and mentors students who represent the next generation of scientists. Dr. Myles and her husband, Gerald, have two children. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-porter.jpg" alt="James Porter"> </div> <div class="col-lg-9"> <h3>James B. Porter, Jr.</h3> <h6>Founder and President of Operations Solutions, LLC</h6> <p>Jim received a BS in Chemical Engineering from the University of Tennessee in 1965. He went to work for the DuPont Company where his career spanned more than 42 years. When he retired in 2008, he was the Chief Engineer and Vice President of Engineering and Operations. Jim served as the Chair of UT’s College of Engineering Board of Advisors for several years. He was the 2015 recipient of the Nathan W. Dougherty Award and was inducted into the Chemical and Biomolecular Engineering Hall of Fame in 2017. He is a Fellow of AIChE and a member of the National Academy of Construction. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-ball.jpg" alt="Pat Ball"> </div> <div class="col-lg-9"> <h3>Pat Ball</h3> <h6>Senior Vice President, Strategic Resources Group</h6> <p>As senior vice president of the strategic resources group, Patricia “Pat” Ball leads TeamHealth’s strategic marketing and operations interface, select provider recruitment initiatives, communications support for internal departments that are related to hospital clients or industry relations and external communication efforts. With more than 30 years of senior healthcare executive experience, Pat offers expertise in marketing, communications, business development and strategic planning. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-bigelow.jpg" alt="Barbie Bigelow"> </div> <div class="col-lg-9"> <h3>Barbie Bigelow</h3> <h6>Senior Vice President and Chief Information Officer, Jacobs Engineering</h6> <p>Barbie is Senior Vice President and Chief Information Officer at Jacobs Engineering, one of the world’s largest engineering, architecture, construction, operations, and maintenance firms. As Jacobs’ CIO, Barbie drives innovation across the company and oversees all aspects of the global Information Technology organization. With more than 30 years of experience, leading business operations, driving innovation and building high performance teams, Barbie leads a global team that delivers innovative solutions and optimal IT support for global IT operations. Barbie earned her Master’s in Computer Science from the University of Tennessee and was raised in Oak Ridge, Tennessee. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-flood.jpg" alt="Jim K. Flood"> </div> <div class="col-lg-9"> <h3>Jim K. Flood</h3> <h6>Vice President, Arctic and Eastern Canada, ExxonMobil Development Company</h6> <p>Jim Flood joined ExxonMobil Development Company in 1980 following his graduation from the University of Tennessee, where he earned a Bachelor of Science Degree in Civil Engineering. He has a wide range of experience in the Upstream sector, with 20 years of work on major projects such Lena Deepwater and Mobile Bay Project in the Gulf of Mexico, Block 15 offshore Angola, Chad, Sakhalin I in Russia, Western Canada oil sands, and Hebron and Point Thomson in Canada. He also worked for 12 years in Production Operations, including assignments as Senior Field Superintendent in Louisiana, Operations Superintendent in Midland, Texas, and Operations Manager in LaBarge, Wyoming. Jim assumed his current role as Vice President of Arctic and Eastern Canada for ExxonMobil Development Company in 2010, with responsibility for the company’s projects in those regions. Jim is married with three daughters. He enjoys exercising, reading, and outdoor activities. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-shoup.jpg" alt="Shara Shoup"> </div> <div class="col-lg-9"> <h3>Shara Shoup</h3> <h6>Chief Operating Officer, Emerald Youth Foundation</h6> <p>Shara Shoup is currently the Chief Operating Officer for Emerald Youth Foundation, a faith-based non-profit in Knoxville. She started her professional career, however, as a scientist, earning her Ph.D. in Inorganic Chemistry with a specialty in Nuclear Chemistry from the University of Tennessee in 1995. She completed her doctoral research at the Oak Ridge National Laboratory and remained there for a post-doctoral position. Shara then moved to Atlanta for a research scientist position with MicroCoating Technologies, a start-up company out of Georgia Tech. During her time there, she worked on several Department of Energy projects as well as private company customer projects in the areas of thin film resistors and barrier layers for high-temperature superconductors and beverage packaging and finished there as a Business Unit Manager. During her science tenure, Shara authored several papers and received 9 patents. She returned to Knoxville in 2004 and uses her operational and data analysis skills to serve city young people and their families. She is a graduate of Leadership Knoxville and currently a member of UT’s Chancellor’s Associates. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-eker.png" alt="Jeff Eker"> </div> <div class="col-lg-9"> <h3>Jeff Eker</h3> <h6>CEO and Founder, CultureCloud</h6> <p>Jeff absolutely loves travel. He has traveled around the world in eight days, visited fifteen countries outside of the US, and looks forward to visiting many more! Jeff is heavily involved with the Institute of Electrical and Electronics Engineers (IEEE), representing Young Professionals in the mid-Atlantic region of the US on the local and international level. Meeting people from around the world is always Jeff’s favorite part of travel, and who he is today has been shaped in a huge way by the opportunities he’s had to embrace local cultures. In addition to his work as a technology consultant, Jeff is the CEO and founder of CultureCloud – initially founded for travelers, the CultureCloud platform allows any organization for form a social enviornement for their members. Jeff and his team launched CultureCloud last year at the 2016 Rio Olympics. Learn more at: Tediferous.com </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-weaver.jpg" alt="Ann Weaver"> </div> <div class="col-lg-9"> <h3>Ann Weaver</h3> <h6>Director of Facilities Management Division, Oak Ridge National Laboratory</h6> <p>Ann Weaver is Director of Facilities Management Division at the Oak Ridge National Laboratory, a multiprogram science and technology laboratory managed for the U.S Department of Energy by UT-Battelle, LLC. In her position, Ann is responsible for the safe and efficient management of 5 million square feet of laboratory and office space, and manages a staff of more than 300. She has a B.S. and M.S. in Industrial Engineering from the University of Tennessee. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-12"> <h3>Fatmata Barrie, Ph.D.</h3> <h6>Boeing Metals Additive Manufacturing On-site Lead at ORNL</h6> <p>Fatmata Barrie is the Boeing Metals Additive Manufacturing On-site Lead at ORNL. In this role she oversees Boeing Research & Technology (BR&amp;T) research programs at ORNL. She started her career with Boeing 1.5 years ago as a part of the Metals and Ceramics Group, also within BR&amp;T, in Huntsville, Alabama. Fatmata earned a B.S. and M.S. in Mechanical Engineering from Carnegie Mellon University and Texas AM University, respectively. She earned her Ph.D. from the University of Florida in Materials Science and Engineering. Aftercompleting her Ph.D. she conducted research on bamboo reinforced concrete at the Institute of Technology Bandung in Bandung, Indonesia as a Student Fulbright Research Scholar. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-sills.JPG" alt="Mary Jane Sill"> </div> <div class="col-lg-9"> <h3>Mary Jane Sill</h3> <h6>Senior Project Manager, F.M.A Management Solutions, LLC</h6> <p>Ms. Sill is an industrial engineer and senior project manager with over 25 years’ experience in manufacturing, process improvement, business development, construction and strategic planning. She is currently the Program Manager for the ORNL Modernization Project Office. Ms. Sill also performs strategic analysis for clients and leads workshops in process improvement and team building, and enjoys mentoring interns and new employees. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-ezell.jpg" alt="Dianne Ezell"> </div> <div class="col-lg-9"> <h3>Dianne Ezell</h3> <h6>R&amp;D Staff member, Electro-Mechanical Systems Group, Electrical and Electronics Systems Researrch Division, ORNL</h6> <p>N. Dianne Bull Ezell is a R&D Staff member in the Electro-Mechanical Systems Group, within the Electrical and Electronics Systems Research Division at ORNL. She recently completed a Ph.D. focusing on signal processing of EMI rejection for Johnson Noise Thermometry measurements in 2016, from the University of Tennessee. Her research interests are system architecture and integration as well as low-power mixed-signal electronic design for nuclear instrumentation. A few of her on-going projects at ORNL are systems engineer for A Large Ion Collider (ALICE) at CERN, non-destructive evaluation (NDE) with the University of Tennessee, controls for ITER sub systems, and system engineer of nuclear instruments design for advanced reactors. She received a BS in Electrical Engineering in 2007 and an MS in Electrical Engineering from the University of Tennessee with research focused on Integrated Circuit design for hybrid electric vehicles, medical sensors, and lithography. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-barnes.jpg" alt="Ashley Barnes"> </div> <div class="col-lg-9"> <h3>Ashley Barnes</h3> <h6>Transmission Line Design Engineer, Southern Company</h6> <p>Ashley Barnes is a Transmission Line Design Engineer at Southern Company. She is responsible for providing engineering support to both transmission construction and transmission maintenance centers by producing line design packages to construct new or modify existing transmission lines. Construction has always been a passion of hers. Before moving into her current position, she spent time as a Transmission Construction Engineer at Alabama Power Company, and gained experience as a project estimator, field engineer, and project manager as a co-op student working at Robins &amp; Morton. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-henson.jpg" alt="Abby Henson"> </div> <div class="col-lg-9"> <h3>Abby Henson</h3> <h6>Customer Service Engineer, TVA</h6> <p>Abby has served as a Customer Service Engineer for TVA since graduating from the University of Tennessee in 2011. In this role, she is a primary information resource for TVA to twelve of TVA’s local power companies (LPCs). She manages these long-term customer relationships by providing customer service pertaining to TVA’s rate and pricing products, regulatory requirements, and renewable energy program delivery. She is responsible for initiation, coordination, and delivery of contracts between TVA, LPCs, and large industrial customers. She works with TVA’s billing departments to ensure accuracy of metering and billing LPCs and large industrial customers. She also serves as a technical resource on power supply arrangements and NERC compliance projects. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-summersmith.jpg" alt="Summer Smith"> </div> <div class="col-lg-9"> <h3>Summer Smith</h3> <h6>Financial Advisor, Northwestern Mutual</h6> <p>After working as an Engineer and Project Manager at Southern Company for 11 years, Summer decided 4 years ago to pursue the calling on her life to serve others. As a financial advisor, Summer works with individuals and families to help them plan for their financial future and to protect the people they love most. In addition to graduating from Auburn University with a B.S in Industrial and Systems Engineering, Summer also has a Juris Doctor from Birmingham School of Law. Summer has a diverse background including power plant maintenance and construction, compliance and contracts, and now financial planning. Proof that engineers can do anything! </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-rawn.jpg" alt="Claudia Rawn"> </div> <div class="col-lg-9"> <h3>Claudia Rawn, Ph.D.</h3> <h6>Associate Professor in the Material Science and Engineering Department, University of Tennessee, Knoxville</h6> <p>Claudia Rawn is an Associate Professor in the Materials Science and Engineering Department at the University of Tennessee, Knoxville. She is also the Director of the Center for Materials Processing. Prior to joining the University of Tennessee full time she was a Senior Research Staff Member in the Diffraction and Thermophysical Properties Group at Oak Ridge National Laboratory and a Joint Faculty Member in the University of Tennessee’s Materials Science and Engineering Department. Her research interests include investigations of crystal structures, phase transitions, and thermophysical properties of materials using in-situ x-ray and neutron diffraction. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-conerty.jpg" alt="Beth Conerty"> </div> <div class="col-lg-9"> <h3>Beth Conerty</h3> <h6>Program Manager for Entrepreneurship, ORNL</h6> <p>Beth Conerty is a recent graduate from UTK’s Bredesen Center. She is currently the Program Manager for Entrepreneurship in ORNL’s office of Industrial Partnerships and Economic Development. In her role, she works to expand the entrepreneurial component within the Bredesen Center and helps run the new Innovation Crossroads program at ORNL. Additionally, she is Vice President of Business Development for the technology startup company Nano Elements Source, LLC. Nano Elements is working with an ORNL licensed technology to produce semi-conducting nanoparticles through a biological fermentation process. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-carlson.jpg" alt="Christopher Carlson"> </div> <div class="col-lg-9"> <h3>Christopher Carlson</h3> <h6>Director of Talent Acquisitions, TVA</h6> <p>Based in Chattanooga, Christopher is the Director of Talent Acquisition and Diversity for the Tennessee Valley Authority. He leads a team of professionals focused on delivering best-in-class recruitment and diversity solutions. Prior to TVA, he was Senior Manager of Talent Acquisition for Booz Allen Hamilton where for over ten years he oversaw a variety of talent acquisition programs including university, diversity, military, employee referral programs. Based in Chattanooga, Christopher is the Director of Talent Acquisition and Diversity for the Tennessee Valley Authority. He leads a team of professionals focused on delivering best-in-class recruitment and diversity solutions. Prior to TVA, he was Senior Manager of Talent Acquisition for Booz Allen Hamilton where for over ten years he oversaw a variety of talent acquisition programs including university, diversity, military, employee referral programs. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-smith.JPG" alt="Erica Greene-Smith"> </div> <div class="col-lg-9"> <h3>Erica Greene Smith</h3> <h6>Human Resource Manager, Management Solutions, LLC</h6> <p>Erica Greene Smith joined Management Solutions, LLC in 2009 and is the Human Resources Manager. She has over 13 years of experience in business and human resources roles. She has been instrumental in helping Management Solutions, LLC build a team of highly qualified professionals. Her experience includes developing HR processes and policies, compliance, employee relations, performance management, recruiting, employee engagement, benefits, compensation and training. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-benensky.jpg" alt="Kelsa Benensky"> </div> <div class="col-lg-9"> <h3>Kelsa Benensky</h3> <h6>Ph.D. Candidate</h6> <p>Kelsa Benensky is a third year graduate student pursuing a Ph.D. in Nuclear Engineering at UTK. Kelsa is a NASA Space Technology Research Fellow and her current research focuses on the testing and characterization of advanced fuel forms for space nuclear thermal propulsion which is done in collaboration with NASA, ORNL, and private industry partners. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-walker.jpg" alt="Aaron Walker"> </div> <div class="col-lg-9"> <h3>Mr. Aaron Anderson-Walker</h3> <h6>Master's Candidate</h6> <p>Mr. Aaron Anderson-Walker has been a student of the University of Tennessee since the fall of 2015, and is currently a Master’s Candidate in the department of Mechanical, Aerospace and Biomedical Engineering. Aaron earned his Bachelor of Science in Composite Materials Engineering from Winona State University in the spring of 2015, and he is originally from St. Paul, MN. Aaron is in his final semester of graduate school and is currently pursuing employment in various industries. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-turner.png" alt="Anne Turner"> </div> <div class="col-lg-9"> <h3>Anne Turner</h3> <h6>Doctoral Candidate</h6> <p>Anne Turner is a doctoral candidate at the University of Tennessee in civil engineering researching numerical methods for solving geotechnical engineering problems, expecting to graduate in August 2017. Prior to returning to graduate school, she worked for five years as a professional structural engineer at the consulting firm, Simpson, Gumpertz, &amp; Heger, in Boston, Massachusetts. Anne is pursuing a tenure-track faculty position in engineering after graduation. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-12"> <h3>Elizabeth Barker</h3> <h6>Lecturer in the Department of Mechanical, Aerospace, and Biomedical Engineering at the University of Tennessee</h6> <p>Dr. Elizabeth Barker has an adjunct appointment as an Assistant Professor in the Department of Surgery at the University of Tennessee Graduate School of Medicine. She received a B.S. in Biomedical Engineering, an M.S. in Polymer Engineering, and a PhD in Molecular Therapeutics and Cell Signaling. Her research leverages interdisciplinary scientific knowledge of device design, biomaterials engineering, and polymer characterization to develop novel polymer materials for implant devices and drug delivery with the intent to commercialize her laboratory findings for use in the clinical setting. Dr. Barker’s goal is to be a link between engineering and medicine and to contribute to the care of others as a research scientist dedicated to the development of medical devices that physicians can use to improve the lives of their patients. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-12"> <h3>Zach Mayes</h3> <h6>Industrial Engineer, Boeing Commercial Airlines</h6> <p>Zach is an Industrial Engineer for Boeing Commercial Airlines in Everett, Washington on the 777 program. As a Boeing production engineer, Zach works to create safer, more efficient wings for the Boeing 777. This includes creating work packages for mechanics, using statistical analysis to create higher quality products and data science to optimize production systems. Zach is also the Everett Lead for REACH Boeing, Boeing’s zero to five year professional development organization. He graduated from Virginia Tech with a degree in Industrial and Systems Engineering in May of 2016. </p> </div> </div> <!-- <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-wayne.jpg" alt="Wayne Davis"> </div> <div class="col-lg-9"> <h3>Wayne T. Davis</h3> <h6>Davis Endowed Dean’s Chair of Engineering</h6> <p>Dr. Wayne Davis was named Dean of the College of Engineering in March of 2009 after serving as interim dean since May of 2008. Davis received his bachelor's degree in physics from Pfeiffer College (now Pfeiffer University) in Misenheimer, NC; a master's degree in physics from Clemson University; and a master's degree in environmental engineering and Ph.D. in civil engineering from UT Knoxville. Davis joined the Department of Civil & Environmental Engineering as an instructor of environmental engineering in 1974 and became an assistant professor in 1975. He was named an associate professor in 1979, and became a full professor in the department in 1984. Davis also served as assistant dean of the Graduate School from 1985 to 1998 and as the school's associate dean from 1988 until 1991. He was the university's 2002-2003 Macebearer and was appointed the Associate Dean for Research and Technology for the College of Engineering in 2004. Davis' research areas include air quality management and pollution control. He has been the principal investigator or co-PI, on approximately 85 different research grants and contracts since 1974. He is a Qualified Environmental Professional and is a member of numerous professional and academic and honorary societies, including the Air and Waste Management Association, the American Society of Civil Engineers and the American Society of Engineering Educators. In 2013, the Wayne T. Davis Endowed Dean's Chair in Engineering was named in recognition of Davis by College of Engineering donors. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-lorraine.jpg" alt="Lorraine Martin"> </div> <div class="col-lg-9"> <h3>Lorraine Martin</h3> <h6>Executive Vice President and General Manager, F-35 Lightning II Program, Lockheed Martin Aeronautics Company</h6> <p>Lorraine M. Martin is Executive Vice President and General Manager, F-35 Lightning II Program, for Lockheed Martin Aeronautics Company. In this role, she is responsible for successful completion of the System Development and Demonstration Program, production, flight testing, global deployment and sustainment of the three F-35 variants for 13 military services in nine partner countries and three foreign military sales customers. Previously, Ms. Martin served in Lockheed Martin's F-35 Program (Vice President and Deputy), its C-130 Programs (Vice President), its C-5 Program (Vice President), its Training and Support program (Vice President, Flight Solutions, Lockheed Martin Simulation), its Integrated Systems &amp; Solutions branch (Vice President and Deputy), and its Aerospace Information Operations branch (Vice President). Prior to her Lockheed Martin career, Ms. Martin served as an officer in the United States Air Force holding various leadership positions for software intensive technology and development programs, with a focus on computer security and Expert Decision Systems. Ms. Martin has a Bachelor of Arts in Computational Mathematics from DePauw University and a Master of Science in Computer Science from Boston University. She is a Lockheed Martin Certified Program Manager. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-jacinda.jpg" alt="Jacinda Woodward"> </div> <div class="col-lg-9"> <h3>Jacinda Woodward</h3> <h6>Senior Vice President of Transmission &amp; Power Supply, Tennessee Valley Authority</h6> <p>Jacinda joined TVA in 1984 and has worked in various nuclear, information technology and power transmission divisions throughout her career. Jacinda is currently Senior Vice President of Transmission &amp; Power Supply, which is responsible for the planning, design, construction, maintenance and real-time operation of TVA’s transmission system -- one of the largest systems in the country. Prior to her current assignment, Jacinda has also served as Vice President of Transmission Reliability &amp; Operations and Vice President of Power Control Systems within TVA. She has a broad experience base with assignments including design, maintenance, program development, project management, and executive support. Jacinda earned a bachelor of science degree in electrical engineering from Auburn University in 1988 and is a registered professional engineer in the state of Tennessee. She is married and has two daughters, ages 18 and 11. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-tammy.jpg" alt="Tammy Wilson"> </div> <div class="col-lg-9"> <h3>Tammy Wilson</h3> <h6>Senior Vice President and Treasurer, Tennessee Valley Authority</h6> <p>Ms. Wilson currently serves as TVA’s Vice President and Treasurer with oversight of a $27 billion debt portfolio and $9.5 billion of investments. Wilson is a highly accomplished executive equipped with 25 years of experience in such areas as management, finance and accounting, risk management, strategy and planning, corporate development, investments, Board policy and regulatory matters. Prior to her role as Treasurer, Ms. Wilson has served in TVA’s Vice President positions for Financial Strategy &amp; Corporate Development, for Financial Planning &amp; Analysis, and for Retirement Services. Ms. Wilson currently serves on TVA’s Nuclear Decommissioning Trust Board that manages the funds for the eventual removal from service and clean-up of TVA’s nuclear facilities. She received an MS in Accounting from the University of Tennessee. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-dan.jpg" alt="Dan Hurst"> </div> <div class="col-lg-9"> <h3>Dan Hurst</h3> <h6>Founder and CEO, Strata-G, LLC</h6> <p>Dan Hurst is the Founder and CEO of Strata-G, a science and engineering firm of approximately 130 personnel devoted to stewardship of energy and the environment. Strata-G has been recognized with three small-business-of-the-year awards and was honored as a 2012 Business Excellence Finalist by the Knoxville Chamber. Dan is a former nuclear-navy officer. In 2011, the Tennessee Veterans Business Association honored Dan as the first recipient of their Bravo-Zulu award, given to a veteran for business excellence and community leadership. Business Week Magazine has recognized Dan for his successful values-based approach to leadership and management. Dan has an M.S. Degree in Environmental Engineering, received the 2007 Biosystems Engineering Distinguished Alumni Award, and serves UTK as a Chancellors Associate and member of the Civil and Environmental Engineering Board of Advisors. He also chairs the boards of the West Knox Utilities District and Knox Area Rescue Ministries.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-ralph.jpg" alt="Ralph Heath"> </div> <div class="col-lg-9"> <h3>Ralph Heath</h3> <h6></h6> <p>Ralph Heath is a recognized leader in the aerospace &amp; defense industry, concluding a 37 year career with Lockheed Martin in 2012. He held a wide range of positions in engineering, logistics, operations, business development and executive management. The last seven years he was a corporate officer and President of the Aeronautics Company, a $14 billion enterprise with 26,000 employees at nine locations, including major sites in Texas, Georgia and the Skunk Works in California. Product lines include the F-16, F-22 and F-35 fighters, the C-130 and C-5 transports, and both manned and unmanned reconnaissance aircraft. A U.S. Army veteran, Ralph served nearly four years on active duty as a combat engineer officer and was qualified as an airborne ranger. He holds a Bachelor of Science degree in Electrical Engineering and an MBA from the University of Tennessee, and holds an FAA commercial pilot’s license. Mr. Heath also serves on the advisory boards of the University of Tennessee Colleges of Engineering and Business, and the Smithsonian National Air and Space Museum. He was named the National Management Association Executive of the Year in 2007.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-bill.jpg" alt="William L. Eversole"> </div> <div class="col-lg-9"> <h3>William L. Eversole</h3> <h6>President and Chief Executive Officer, Bandspeed, Inc.</h6> <p>Bill Eversole is the President, CEO and Chairman of the Board of Directors of Bandspeed, Inc. where he is leveraging his 40 plus years of experience in the semiconductor business. He oversees all of Bandspeed operations, including product development and production, marketing, sales and business development. Before joining Bandspeed, Bill was President and COO for Quellan, Inc.; a fables semiconductor company developing high speed integrated circuits for communications equipment. He was also previously with Texas Instruments’, where he held several senior management positions including General Manager of Texas Instruments’ Digital Subscriber Line Business, General Manager of Communications &amp; Electronic Systems Business, Manager of Commercial Business Ventures within TI’s Systems Group, and Manager of the Military Computer department. Bill received his Ph.D. and MS degrees in Electrical Engineering from Southern Methodist University, received his BS degree in Electrical Engineering from the University of Tennessee. He is a member of the Board of Advisors for the University Of Tennessee College Of Engineering.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-mickey.jpg" alt="Mickey Johnson"> </div> <div class="col-lg-9"> <h3>Mickey Johnson</h3> <h6>Private Wealth Advisor, Private Banking and Investment Group at Merrill Lynch and partner, The McLaughin Group</h6> <p>Mickey Johnson is a First Vice President in the Private Banking and Investment Group at Merrill Lynch and partner in The McLaughlin Group. Along with Dugan McLaughlin, Mickey is responsible for all aspects of the client service and investment experience. Mickey heads the team's financial planning practice, where he is actively involved in developing each client's customized plan for their entire balance sheet including strategic portfolio allocation, credit facilities, and cash flows. Mickey is a dual-degree recipient from the University of Tennessee Knoxville; he earned a B.A. in Logistics and Transportation and a B.S. in Agricultural Economics and Finance. Mickey holds the CFP® certification awarded by the Certified Financial Planner Board of Standards, Inc. Mickey volunteers with a number of non-profit entities in Knoxville and is a University of Tennessee Chancellor’s Associate. He and his wife live in Knoxville with their two children.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-jay.jpg" alt="Jay Koehler"> </div> <div class="col-lg-9"> <h3>Jay Koehler</h3> <h6>Security and Trust Organization Program Project Manager, Cisco Systems</h6> <p>Jay started at Cisco Systems 14 years ago as a software engineer after receiving her Master’s in Computer Science from The University of Tennessee, and has since transitioned into management within the Advanced Security Initiatives Group. Before beginning a rotation with the Computer Security Incident Response Team, she managed a team that focused on performing evaluations across Cisco products and services. In addition to her technical contributions, Jay has built the recruiting, interviewing, and hiring program within the group as it grew from 5 to 70 engineers and is currently building a talent acquisition and work force design program for all of the Security and Trust Organization. When not at the office, she enjoys hiking and spending time with her family.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-sabrina.jpg" alt="Sabrina Hampton"> </div> <div class="col-lg-9"> <h3>Sabrina Hampton</h3> <h6>Headquarters Liaison, Consolidated Nuclear Security, LLC</h6> <p>Sabrina has been working at the Y-12 National Security Complex in various positions since 2002, most recently as a CNS Headquarters Liaison to National Nuclear Security Administration. She received a Bachelor of Science degree in Mechanical Engineering at the University of Tennessee in 2002 and a Master of Business Administration from Webster University in 2012. In her spare time, she mentors students for tnAchieves, is a member of UTK's Black Alumni Council, and is an active member of the Knoxville Alumnae Chapter of Delta Sigma Theta Sorority, Inc.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-kevin.jpg" alt="Kevin McHale"> </div> <div class="col-lg-9"> <h3>Kevin McHale</h3> <h6>Vice President, American Accessories International, LLC.</h6> <p>Kevin began his career working on strategic business initiatives including corporate restructuring and expansion for its China operations, as well as, exploring international expansion opportunities in Eastern Europe. In only six years, Kevin has been directly responsible for the development of quality assurance systems, logistical structures, regulatory compliance adherence, manufacturing process controls and supply chain transparency. Kevin received his BS in Industrial Engineering from the University of Tennessee.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-terry.jpg" alt="Terry G. Tyler"> </div> <div class="col-lg-9"> <h3>Terry G. Tyler</h3> <h6>Principal, TG Tyler Consulting</h6> <p>Mr. Tyler is the founder of TG Tyler Consulting providing strategic insight and enterprise risk management consulting to Boards and Executive teams. He also serves as an outsider Director for FireWater Fuel Corporation. Prior to this, Mr. Tyler was EVP, CTO and CIO for ENMAX Corporation and an ISEEE Industry Fellow. Prior to joining ENMAX in July 2008, Mr. Tyler held executive roles at TVA, IBM, Florida Power Corporation, and Texas Utilities. Mr. Tyler also formed and co-owned a successful consulting company, Energex and was also a principal in a start-up company, Technology for Energy Corporation, commercializing technology out of the US DOE / DOD laboratories. The early years of Mr. Tyler’s career were spent at the TVA designing, building, operating and maintaining 17 nuclear power plants of various types and designs. Mr. Tyler holds an MBA in Finance and Management and a BS in Nuclear Engineering from the University of Tennessee. He speaks regularly as a ‘Futurist or Polymath’ concentrating on technological advances and their impact on society, the economy, cultural values and global sustainability. He also serves on advisory boards for the Department of Electrical Engineering and Computer Science and the MBA Program at the University of Tennessee. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-paula.jpg" alt="Paula Coleman"> </div> <div class="col-lg-9"> <h3>Paula Coleman</h3> <h6>Project Engineer, DeRoyal</h6> <p>Paula graduated from the University of Tennessee in May of 1998 with a bachelors in Mechanical Engineering. She started her career with Lexmark Int. and worked with both the Laser Acquisitions and Ink Jet OEM groups there as a Project Engineer. While at Lexmark she was singled out as a high potential employee and received the benefit of executive mentoring. After working 7 years she decided to stay at home full time to raise her children. She has just reentered the work force as a Project Engineer for DeRoyal working closely with the Regulatory group.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-dobbs.jpg" alt="R. Joshua Dobbs"> </div> <div class="col-lg-9"> <h3>R. Joshua Dobbs</h3> <h6>Student, University of Tennessee</h6> <p>Joshua Dobbs is a junior in his second year at University of Tennessee, majoring in Aerospace Engineering and minoring in Business Administration. He is a committed student athlete who graduated from Alpharetta High School in 2013 at the top of his class. While there, he was the recipient of numerous awards including the Atlanta Journal Constitution Cup, the prestigious Franklin D. Watkins Award, and being named an Elite 11 QB Finalist. As a Tennessee Volunteer, Joshua participates in the Chancellor’s Honors Program and is the quarterback of the football team. Academically, he has been named twice to the SEC Academic Honor Roll and is a member of several honor societies. Joshua is also a 2-year starter for the football team, being only the eighth true freshman to start at the quarterback position for the Volunteers in their 118-year history. After helping to lead the Volunteers to a winning 2014 season, Joshua was also awarded the TN Scholar Athlete Award and MVP of the 2015 TaxSlayer Bowl, Tennessee’s first bowl victory since 2008. Committed to giving back to the community, Joshua volunteers with several non-profit organizations in Knoxville. He is the only child of his parents, Robert and Stephanie Dobbs, who live in Alpharetta, Georgia.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-araceli.jpg" alt="Araceli Espinoza"> </div> <div class="col-lg-9"> <h3>Araceli Espinoza</h3> <h6>COE Special Programs Coordinator, University of Tennessee</h6> <p>Araceli Espinoza, PhD, earned her B.A. in American Studies from U.C. Berkeley. Thereafter, she received a M.E. in Postsecondary Administration and Student Affairs from the University of Southern California where she also earned a Ph.D. in Urban Education. Dr. Espinoza’s research focuses on the postsecondary experiences and outcomes of racial and ethnic minority (REM) students, first-generation college students and REM students in the STEM fields. She has given multiple presentations at national conferences and has published her research in peer-reviewed journals including the Journal of College Student Development. Her work can also be found in the books The Education of the Hispanic Population: Selected Essays and Fostering Success of Ethnic andRacial Minorities in STEM: The Role of Minority Serving Institutions.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-veerle.jpg" alt="Veerle Keppens"> </div> <div class="col-lg-9"> <h3>Veerle Keppens</h3> <h6>COE Professor and Associate Dean for Faculty Affairs, University of Tennessee</h6> <p>Veerle Keppens earned her bachelor’s degree (1989) and Ph.D. (1995) in Physics from the Katholieke Universiteit Leuven (Belgium). From 1995 to 1998, Dr. Keppens was a Fulbright fellow in the novel materials group at Oak Ridge National Laboratory, where she became interested in the elastic properties of new materials. In 1999, she joined the faculty in the Physics Department at The University of Mississippi. In 2003, she moved to Tennessee and joined the faculty in the materials science and engineering department at the University of Tennessee, where she continues to study the elastic properties and lattice dynamics of novel materials. At UT, she has received multiple awards, including the chancellor’s award for professional promise in research and creative achievement, the college of engineering research fellow award, and the department of materials science faculty award for outstanding service. In 2011, she became a fellow of the Acoustical Society of America for the application of ultrasonics to condensed matter physics. She started serving as the associate dean for faculty affairs in August of 2012.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-tommy.jpg" alt="Tommy Nguyen"> </div> <div class="col-lg-9"> <h3>Tommy Nguyen</h3> <h6>Regional Vice President, Neighborhood Nerds - President, Right Click Design</h6> <p>Tommy Nguyen is an alumnus of UT’s Computer Science program, class of 2014. He is Regional Vice President and partial owner of Neighborhood Nerds, a local tech support company. He also owns and operates Right Click Design, a company that specializes in business-to-business software development. </p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-adam.jpg" alt="Adam Kimberlin"> </div> <div class="col-lg-9"> <h3>Adam Kimberlin</h3> <h6>Propulsion Engineer at NASA</h6> <p>Mr. Kimberlin is a propulsion engineer at NASA's Marshall Space Flight Center (MSFC) in Huntsville, AL. His current duties in the Liquid Engine Systems Branch include the development of the RS-25 (formerly known as Space Shuttle Main Engine, SSME) and the development of controllers for new prototype engines. Prior to joining MSFC’s Liquid Engine Systems Branch, his experiences in various groups ranged from advanced propulsion R&D to experimental launch vehicle aerothermodynamics. In 2008, he joined NASA Marshall Space Flight Center (MSFC) as a co-op student where he supported many small R&D projects in addition to the International Space Station, Space Shuttle, and Constellation programs. Mr. Kimberlin received his B.S. in Mechanical Engineering from Tennessee Technological University in May of 2011 and is currently a member of the American Society of Mechanical Engineers (ASME) and the American Institute of Aeronautics and Astronautics (AIAA).</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-denise-gosnell.png" alt="Denise Koessler Gosnell"> </div> <div class="col-lg-9"> <h3>Denise Koessler Gosnell</h3> <h6>Data Scientist, PokitDok</h6> <p>Dr. Gosnell is a go-getter who pursues life with passion and enthusiasm. During her time at the University of Tennessee, she was involved in two start-ups, founded the Systers group, and was awarded TA of the year for the department of computer science in 2013. Her PhD research has been featured at conferences from London to San Diego. She currently works for a Silicon Valley start-up called PokitDok.</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-schuman.jpg" alt="Catherine Schuman"> </div> <div class="col-lg-9"> <h3>Catherine Schuman</h3> <h6>PhD Candidate, University of Tennessee</h6> <p>Catherine (Katie) Schuman will receive her Ph.D. in computer science at the University of Tennessee (UT) in May 2015. She received her B.S. in computer science and mathematics from UT in 2010. Her research is in neuroscience-inspired dynamic architectures. Katie is a National Science Foundation Graduate Research Fellow. Katie is a member of Systers: Women in EECS @ UTK, ACM, IEEE, and the Society for Neuroscience (SfN).</p> </div> </div> <div class="row speaker-bio"> <div class="col-lg-3"> <img src="./assets/images/speaker-boles.jpg" alt="Jessica Boles"> </div> <div class="col-lg-9"> <h3>Jessica Boles</h3> <h6>Student, University of Tennessee</h6> <p>Jessica Boles is a senior in electrical engineering at the University of Tennessee. She is currently Vice President of Systers: Women in EECS @ UTK, the lead student coordinator for WomEngineers Day, and the leader of her senior design team for UT’s EcoCAR 3 Competition team. Jessica is also an undergraduate ambassador for the Center for Ultra-Wide-Area Resilient Electric Energy Transmission Networks and has conducted research in battery energy storage modeling for a hardware-implemented grid emulator. In January 2016, she will begin working towards her master's degree at UT in power electronics for photovoltaic systems.</p> </div> </div> -->
contact.html
jyothishnt/pmen_site
<html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <title>PMEN :: Pneumococcal Molecular Epidemiology Network</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css"> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,300,600' rel='stylesheet' type='text/css'> <!-- fonts, icons for bootstrap --> <link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="css/styles.css" rel="stylesheet"> </head> <body> <!-- Navigation bar starts --> <div class="navbar navbar-fixed-top bs-docs-nav top-menu" role="banner"> <div class="container"> <div class="navbar-header"> <a href="index.html" class="brand"> <img src="img/pmen-logo.png"> </a> <button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-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> <nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation"> <ul class="nav navbar-nav pull-right"> <li > <a href="index.html"> <!-- <i class="fa fa-home blue"> </i> --> Home </a> </li> <li class="dropdown "> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> About <b class="caret"></b> </a> <ul class="dropdown-menu"> <li class=""> <a href="history.html" >History</a> </li> <li class=""> <a href="members.html">Members</a> </li> </ul> </li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#">Clones <b class="caret"></b></a> <ul class="dropdown-menu"> <li class=""><a href="criteria.html">Criteria & Nomenclature</a></li> <li class=""><a href="clone-collection.html">Clone Collection</a></li> <li class=""><a href="map_view.html" >Clone Map</a></li> <li class=""><a href="molecular-typing.html">Molecular Typing</a></li> </ul> </li> <li class="active"><a href="contact.html"> Contact</a></li> </ul> </nav> </div> </div> <!-- Navigation bar ends --> <div id="content"> <section id=contact> <div class="container content"> <header> <h1>Contact</h1> </header> <div class="address"> <div class="row desc"> <div class="col-lg-6 col-md-6"> <blockquote> <address> <h2>Dr. Lesley McGee</h2> <strong>Hubert Department of Global Health </strong><br> Rollins School of Public Health <br> Emory University<br> 1518 Clifton Rd <br> Atlanta GA 30322 USA <br> Tel: +404 727 3984 <br> Fax: +404 727 4590 <br> <a href="mailto:lmcgee@cdc.gov?subject=PMEN Web Query">lmcgee@cdc.gov</a> </address> </blockquote> </div> </div> </div> </div> </section> </div> <footer> <!------------------ Social Communications ----------------> <section id="social-footer"> <div class="container"> <div class="row"> <!-- Twitter widget here --> <div class="col-lg-12 col-md-12"> <h2><i class="fa fa-sitemap lbrown"></i> Site Map</h2> <div class="copy"> <p> <ul> <li><a href="index.html">Home</a></li> <li> <a href="members.html">Members</a> / <a href="history.html" >History</a> / <a href="members.html">Members</a> </li> <li> <a href="criteria.html">Criteria & Nomenclature</a> / <a href="clone-collection.html">Clone Collection</a> / <a href="map_view.html" >Clone Map</a> / <a href="molecular-typing.html">Molecular Typing</a> </li> <li><a href="contact.html">Contact</a></li> </ul> <span class="color">PMEN </span> &copy; <a href="#">2014</a> </p> </div> </div> </div> </div> </section> <div class="clearfix"></div> </footer> <script src="js/vendor/modernizr-2.6.2.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script> <script src="http://netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="js/custom.js"></script> </body> </html>
JWar/doc/index.html
pavkam/school
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc on Fri May 19 13:55:39 EEST 2006--> <TITLE> Generated Documentation (Untitled) </TITLE> <SCRIPT type="text/javascript"> targetPage = "" + window.location.search; if (targetPage != "" && targetPage != "undefined") targetPage = targetPage.substring(1); function loadFrames() { if (targetPage != "" && targetPage != "undefined") top.classFrame.location = top.targetPage; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()"> <FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)"> <FRAME src="Utils/package-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes"> <NOFRAMES> <H2> Frame Alert</H2> <P> This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. <BR> Link to<A HREF="Utils/package-summary.html">Non-frame version.</A> </NOFRAMES> </FRAMESET> </HTML>
docs/docs/api/mil/nga/sf/wkb/package-summary.html
ngageoint/geopackage-wkb-java
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_231) on Mon Jul 13 06:03:34 MDT 2020 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>mil.nga.sf.wkb (Simple Features Well-Known Binary 2.0.3 API)</title> <meta name="date" content="2020-07-13"> <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="mil.nga.sf.wkb (Simple Features Well-Known Binary 2.0.3 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../mil/nga/sf/wkb/package-summary.html">Package</a></li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Package</li> <li>Next&nbsp;Package</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?mil/nga/sf/wkb/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;mil.nga.sf.wkb</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="../../../../mil/nga/sf/wkb/GeometryCodes.html" title="class in mil.nga.sf.wkb">GeometryCodes</a></td> <td class="colLast"> <div class="block">Geometry Code utilities to convert between geometry attributes and geometry codes</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../mil/nga/sf/wkb/GeometryReader.html" title="class in mil.nga.sf.wkb">GeometryReader</a></td> <td class="colLast"> <div class="block">Well Known Binary reader</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../mil/nga/sf/wkb/GeometryTypeInfo.html" title="class in mil.nga.sf.wkb">GeometryTypeInfo</a></td> <td class="colLast"> <div class="block">Geometry type info</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../mil/nga/sf/wkb/GeometryWriter.html" title="class in mil.nga.sf.wkb">GeometryWriter</a></td> <td class="colLast"> <div class="block">Well Known Binary writer</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../mil/nga/sf/wkb/package-summary.html">Package</a></li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Package</li> <li>Next&nbsp;Package</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?mil/nga/sf/wkb/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 ======= --> <p class="legalCopy"><small>Copyright &#169; 2020 <a href="https://www.nga.mil/">National Geospatial-Intelligence Agency</a>. All rights reserved.</small></p> </body> </html>
_includes/nav.html
bprbkk/bprbkk
<!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <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> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="{{ site.baseurl }}/">{{ site.title }}</a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a href="{{ site.baseurl }}/news">Blog</a> </li> {% assign pages = site.pages | sort:"url" %} {% for p in pages %} {% if p.in-nav == true %} <li><a {% if p.url == page.url %}class="active"{% endif %} href="{{ p.url | replace:'index.html','' }}">{{ p.title }}</a></li> {% endif %} {% endfor %} </ul> </div> </div> </nav>
index.html
timmathews/react-wind-gauge
<!DOCTYPE html> <html> <head> <title>Wind Gauge</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="node_modules/font-awesome/css/font-awesome.css"/> <style> svg text { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } html, body { height: 100%; background: #777; } </style> </head> <body> <div id='root'> </div> <script src="/static/bundle.js"></script> </body> </html>
doc/api/Buan/_BuanException.php.html
Nessworthy/buan
<?xml version="1.0" encoding="iso-8859-1"?> <!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> <title>Docs for page BuanException.php</title> <link rel="stylesheet" type="text/css" href="../media/style.css"> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <table border="0" cellspacing="0" cellpadding="0" height="48" width="100%"> <tr> <td class="header-top-left"><img src="../media/logo.png" border="0" alt="phpDocumentor " /></td> <td class="header-top-right">Buan<br /><div class="header-top-right-subpackage"></div></td> </tr> <tr><td colspan="2" class="header-line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> <tr> <td colspan="2" class="header-menu"> [ <a href="../classtrees_Buan.html" class="menu">class tree: Buan</a> ] [ <a href="../elementindex_Buan.html" class="menu">index: Buan</a> ] [ <a href="../elementindex.html" class="menu">all elements</a> ] </td> </tr> <tr><td colspan="2" class="header-line"><img src="../media/empty.png" width="1" height="1" border="0" alt="" /></td></tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="195" class="menu"> <div class="package-title">Buan</div> <div class="package"> <div id="todolist"> <p><a href="../todolist.html">Todo List</a></p> </div> </div> <b>Packages:</b><br /> <div class="package"> <a href="../li_Buan.html">Buan</a><br /> </div> <br /> <b>Files:</b><br /> <div class="package"> <span style="padding-left: 1em;"><a href="../Buan/_BuanAutoLoader.php.html">BuanAutoLoader.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanConfig.php.html">BuanConfig.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanController.php.html">BuanController.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanCore.php.html">BuanCore.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanDatabase.php.html">BuanDatabase.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanException.php.html">BuanException.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanExtension.php.html">BuanExtension.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanInflector.php.html">BuanInflector.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModel.php.html">BuanModel.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelCollection.php.html">BuanModelCollection.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelCriteria.php.html">BuanModelCriteria.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelCriteriaGroup.php.html">BuanModelCriteriaGroup.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelManager.php.html">BuanModelManager.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelRelation.php.html">BuanModelRelation.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanModelTracker.php.html">BuanModelTracker.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanObject.php.html">BuanObject.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanPdoStatementWrapper.php.html">BuanPdoStatementWrapper.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanPdoWrapper.php.html">BuanPdoWrapper.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanSystemLog.php.html">BuanSystemLog.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanSystemLogEntry.php.html">BuanSystemLogEntry.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanUrlCommand.php.html">BuanUrlCommand.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/_BuanView.php.html">BuanView.php</a></span><br /> </div> <div class="package"> <strong>ViewHelper</strong><br /> <span style="padding-left: 1em;"><a href="../Buan/ViewHelper/_view-helper---BuanViewHelperHtml.php.html">BuanViewHelperHtml.php</a></span><br /> <span style="padding-left: 1em;"><a href="../Buan/ViewHelper/_view-helper---BuanViewHelperI18n.php.html">BuanViewHelperI18n.php</a></span><br /> </div> <br /> <b>Classes:</b><br /> <div class="package"> <a href="../Buan/AutoLoader.html">AutoLoader</a> <br /> <a href="../Buan/Config.html">Config</a> <br /> <a href="../Buan/Controller.html">Controller</a> <br /> <a href="../Buan/Core.html">Core</a> <br /> <a href="../Buan/Database.html">Database</a> <br /> <a href="../Buan/Exception.html">Exception</a> <br /> <a href="../Buan/Extension.html">Extension</a> <br /> <a href="../Buan/Inflector.html">Inflector</a> <br /> <a href="../Buan/Model.html">Model</a> <br /> <a href="../Buan/ModelCollection.html">ModelCollection</a> <br /> <a href="../Buan/ModelCriteria.html">ModelCriteria</a> <br /> <a href="../Buan/ModelCriteriaGroup.html">ModelCriteriaGroup</a> <br /> <a href="../Buan/ModelManager.html">ModelManager</a> <br /> <a href="../Buan/ModelRelation.html">ModelRelation</a> <br /> <a href="../Buan/ModelTracker.html">ModelTracker</a> <br /> <a href="../Buan/Object.html">Object</a> <br /> <a href="../Buan/PdoStatementWrapper.html">PdoStatementWrapper</a> <br /> <a href="../Buan/PdoWrapper.html">PdoWrapper</a> <br /> <a href="../Buan/SystemLog.html">SystemLog</a> <br /> <a href="../Buan/SystemLogEntry.html">SystemLogEntry</a> <br /> <a href="../Buan/UrlCommand.html">UrlCommand</a> <br /> <a href="../Buan/View.html">View</a> <br /> </div> <div class="package"> ViewHelper<br /> <span style="padding-left: 1em;"> <a href="../Buan/ViewHelper/Html.html">Html</a> </span> <br /> <span style="padding-left: 1em;"> <a href="../Buan/ViewHelper/I18n.html">I18n</a> </span> <br /> </div> </td> <td> <table cellpadding="10" cellspacing="0" width="100%" border="0"><tr><td valign="top"> <h1>Procedural File: BuanException.php</h1> Source Location: /BuanException.php<br /><br /> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Page Details</div> <div class="nav-bar"> <span class="disabled">Page Details</span> | <a href="#sec-classes">Classes</a> </div> <div class="info-box-body"> <table border="0" cellspacing="0" cellpadding="0"> <tr><td><strong>Filesource:</strong>&nbsp;&nbsp;</td><td><a href="../__filesource/fsource_Buan__BuanException.php.html">Source Code for this file</a></td></tr> </table> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Page Details</a> | <span class="disabled">Classes</span> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../Buan/Exception.html">Exception</a> </td> <td> A general Exception class for the Buan environment. </td> </tr> </table> </div> </div> <div class="credit"> <hr class="separator" /> Documentation generated on Tue, 04 Aug 2009 19:58:59 +0100 by <a href="http://www.phpdoc.org">phpDocumentor 1.4.1</a> </div> </td></tr></table> </td> </tr> </table> </body> </html>
dfhack/hack/docs/docs/_auto/devel.html
ev1l0rd/yalnpv
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Development Scripts &mdash; DFHack 0.42.06- documentation</title> <link rel="stylesheet" href="../../_static/dfhack.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '0.42.06-', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="shortcut icon" href="../../_static/dfhack-icon.ico"/> <link rel="top" title="DFHack 0.42.06- documentation" href="../../index.html" /> <link rel="up" title="DFHack Scripts" href="../Scripts.html" /> <link rel="next" title="Bugfixing Scripts" href="fix.html" /> <link rel="prev" title="Basic Scripts" href="base.html" /> <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9"> </head> <body role="document"> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="development-scripts"> <span id="devel"></span><h1><a class="toc-backref" href="#id28">Development Scripts</a><a class="headerlink" href="#development-scripts" title="Permalink to this headline">¶</a></h1> <p><code class="docutils literal"><span class="pre">devel/*</span></code> scripts are intended for developer use, but many may be of interest to anyone investigating odd phenomema or just messing around. They are documented to encourage such inquiry.</p> <p>Some can PERMANENTLY DAMAGE YOUR SAVE if misused, so please be careful. The warnings are real; if in doubt make backups before running the command.</p> <div class="contents topic" id="contents"> <p class="topic-title first">Contents</p> <ul class="simple"> <li><a class="reference internal" href="#development-scripts" id="id28">Development Scripts</a><ul> <li><a class="reference internal" href="#devel-all-bob" id="id29">devel/all-bob</a></li> <li><a class="reference internal" href="#devel-annc-monitor" id="id30">devel/annc-monitor</a></li> <li><a class="reference internal" href="#devel-check-release" id="id31">devel/check-release</a></li> <li><a class="reference internal" href="#devel-clear-script-env" id="id32">devel/clear-script-env</a></li> <li><a class="reference internal" href="#devel-click-monitor" id="id33">devel/click-monitor</a></li> <li><a class="reference internal" href="#devel-cmptiles" id="id34">devel/cmptiles</a></li> <li><a class="reference internal" href="#devel-export-dt-ini" id="id35">devel/export-dt-ini</a></li> <li><a class="reference internal" href="#devel-find-offsets" id="id36">devel/find-offsets</a></li> <li><a class="reference internal" href="#devel-inject-raws" id="id37">devel/inject-raws</a></li> <li><a class="reference internal" href="#devel-inspect-screen" id="id38">devel/inspect-screen</a></li> <li><a class="reference internal" href="#devel-light" id="id39">devel/light</a></li> <li><a class="reference internal" href="#devel-list-filters" id="id40">devel/list-filters</a></li> <li><a class="reference internal" href="#devel-lsmem" id="id41">devel/lsmem</a></li> <li><a class="reference internal" href="#devel-lua-example" id="id42">devel/lua-example</a></li> <li><a class="reference internal" href="#devel-modstate-monitor" id="id43">devel/modstate-monitor</a></li> <li><a class="reference internal" href="#devel-nuke-items" id="id44">devel/nuke-items</a></li> <li><a class="reference internal" href="#devel-pop-screen" id="id45">devel/pop-screen</a></li> <li><a class="reference internal" href="#devel-prepare-save" id="id46">devel/prepare-save</a></li> <li><a class="reference internal" href="#devel-print-args" id="id47">devel/print-args</a></li> <li><a class="reference internal" href="#devel-print-args2" id="id48">devel/print-args2</a></li> <li><a class="reference internal" href="#devel-save-version" id="id49">devel/save-version</a></li> <li><a class="reference internal" href="#devel-scanitemother" id="id50">devel/scanitemother</a></li> <li><a class="reference internal" href="#devel-spawn-unit-helper" id="id51">devel/spawn-unit-helper</a></li> <li><a class="reference internal" href="#devel-test-perlin" id="id52">devel/test-perlin</a></li> <li><a class="reference internal" href="#devel-unforbidall" id="id53">devel/unforbidall</a></li> <li><a class="reference internal" href="#devel-unit-path" id="id54">devel/unit-path</a></li> <li><a class="reference internal" href="#devel-watch-minecarts" id="id55">devel/watch-minecarts</a></li> </ul> </li> </ul> </div> <div class="section" id="devel-all-bob"> <span id="id1"></span><h2><a class="toc-backref" href="#id29">devel/all-bob</a><a class="headerlink" href="#devel-all-bob" title="Permalink to this headline">¶</a></h2> <p>Changes the first name of all units to &#8220;Bob&#8221;. Useful for testing <a class="reference internal" href="modtools.html#modtools-interaction-trigger"><span>modtools/interaction-trigger</span></a> events.</p> </div> <div class="section" id="devel-annc-monitor"> <span id="id2"></span><h2><a class="toc-backref" href="#id30">devel/annc-monitor</a><a class="headerlink" href="#devel-annc-monitor" title="Permalink to this headline">¶</a></h2> <p>Displays announcements and reports in the console.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">enable|start:</th><td class="field-body">Begins monitoring</td> </tr> <tr class="field-even field"><th class="field-name">disable|stop:</th><td class="field-body">Stops monitoring</td> </tr> <tr class="field-odd field"><th class="field-name">interval X:</th><td class="field-body">Sets the delay between checks for new announcements to <code class="docutils literal"><span class="pre">X</span></code> frames</td> </tr> </tbody> </table> </div> <div class="section" id="devel-check-release"> <span id="id3"></span><h2><a class="toc-backref" href="#id31">devel/check-release</a><a class="headerlink" href="#devel-check-release" title="Permalink to this headline">¶</a></h2> <p>Basic checks for release readiness</p> </div> <div class="section" id="devel-clear-script-env"> <span id="id4"></span><h2><a class="toc-backref" href="#id32">devel/clear-script-env</a><a class="headerlink" href="#devel-clear-script-env" title="Permalink to this headline">¶</a></h2> <p>Clears the environment of the specified lua script(s).</p> </div> <div class="section" id="devel-click-monitor"> <span id="id5"></span><h2><a class="toc-backref" href="#id33">devel/click-monitor</a><a class="headerlink" href="#devel-click-monitor" title="Permalink to this headline">¶</a></h2> <p>Displays the grid coordinates of mouse clicks in the console. Useful for plugin/script development.</p> <p>Usage: <code class="docutils literal"><span class="pre">devel/click-monitor</span> <span class="pre">start|stop</span></code></p> </div> <div class="section" id="devel-cmptiles"> <span id="id6"></span><h2><a class="toc-backref" href="#id34">devel/cmptiles</a><a class="headerlink" href="#devel-cmptiles" title="Permalink to this headline">¶</a></h2> <p>Lists and/or compares two tiletype material groups.</p> <p>Usage: <code class="docutils literal"><span class="pre">devel/cmptiles</span> <span class="pre">material1</span> <span class="pre">[material2]</span></code></p> </div> <div class="section" id="devel-export-dt-ini"> <span id="id7"></span><h2><a class="toc-backref" href="#id35">devel/export-dt-ini</a><a class="headerlink" href="#devel-export-dt-ini" title="Permalink to this headline">¶</a></h2> <p>Exports an ini file containing memory addresses for Dwarf Therapist.</p> </div> <div class="section" id="devel-find-offsets"> <span id="id8"></span><h2><a class="toc-backref" href="#id36">devel/find-offsets</a><a class="headerlink" href="#devel-find-offsets" title="Permalink to this headline">¶</a></h2> <p>WARNING: THIS SCRIPT IS STRICTLY FOR DFHACK DEVELOPERS.</p> <p>Running this script on a new DF version will NOT MAKE IT RUN CORRECTLY if any data structures changed, thus possibly leading to CRASHES AND/OR PERMANENT SAVE CORRUPTION.</p> <p>Finding the first few globals requires this script to be started immediately after loading the game, WITHOUT first loading a world. The rest expect a loaded save, not a fresh embark. Finding current_weather requires a special save previously processed with <a class="reference internal" href="#devel-prepare-save"><span>devel/prepare-save</span></a> on a DF version with working dfhack.</p> <p>The script expects vanilla game configuration, without any custom tilesets or init file changes. Never unpause the game unless instructed. When done, quit the game without saving using &#8216;die&#8217;.</p> <p>Arguments:</p> <ul class="simple"> <li>global names to force finding them</li> <li><code class="docutils literal"><span class="pre">all</span></code> to force all globals</li> <li><code class="docutils literal"><span class="pre">nofeed</span></code> to block automated fake input searches</li> <li><code class="docutils literal"><span class="pre">nozoom</span></code> to disable neighboring object heuristics</li> </ul> </div> <div class="section" id="devel-inject-raws"> <span id="id9"></span><h2><a class="toc-backref" href="#id37">devel/inject-raws</a><a class="headerlink" href="#devel-inject-raws" title="Permalink to this headline">¶</a></h2> <p>WARNING: THIS SCRIPT CAN PERMANENLY DAMAGE YOUR SAVE.</p> <p>This script attempts to inject new raw objects into your world. If the injected references do not match the actual edited raws, your save will refuse to load, or load but crash.</p> <p>The savegame contains a list of the relevant definition tokens in the right order, but all details are read from raws every time. This allows just adding stub definitions, and simply saving and reloading the game.</p> <p>This is useful enough for modders and some users to justify the danger.</p> <p>Usage example:</p> <div class="highlight-python"><div class="highlight"><pre>devel/inject-raws trapcomp ITEM_TRAPCOMP_STEAM_PISTON workshop STEAM_ENGINE MAGMA_STEAM_ENGINE reaction STOKE_BOILER </pre></div> </div> </div> <div class="section" id="devel-inspect-screen"> <span id="id10"></span><h2><a class="toc-backref" href="#id38">devel/inspect-screen</a><a class="headerlink" href="#devel-inspect-screen" title="Permalink to this headline">¶</a></h2> <p>Read the tiles from the screen and display info about them.</p> </div> <div class="section" id="devel-light"> <span id="id11"></span><h2><a class="toc-backref" href="#id39">devel/light</a><a class="headerlink" href="#devel-light" title="Permalink to this headline">¶</a></h2> <p>An experimental lighting engine for DF, using the <a class="reference internal" href="../Plugins.html#rendermax"><span>rendermax</span></a> plugin.</p> <p>Call <code class="docutils literal"><span class="pre">devel/light</span> <span class="pre">static</span></code> to not recalculate lighting when in game. Press <code class="kbd docutils literal"><span class="pre">~</span></code> to recalculate lighting. Press <code class="kbd docutils literal"><span class="pre">`</span></code> to exit.</p> </div> <div class="section" id="devel-list-filters"> <span id="id12"></span><h2><a class="toc-backref" href="#id40">devel/list-filters</a><a class="headerlink" href="#devel-list-filters" title="Permalink to this headline">¶</a></h2> <p>List input items for the building currently being built. This is where the filters in lua/dfhack/buildings.lua come from.</p> </div> <div class="section" id="devel-lsmem"> <span id="id13"></span><h2><a class="toc-backref" href="#id41">devel/lsmem</a><a class="headerlink" href="#devel-lsmem" title="Permalink to this headline">¶</a></h2> <p>Prints memory ranges of the process.</p> </div> <div class="section" id="devel-lua-example"> <span id="id14"></span><h2><a class="toc-backref" href="#id42">devel/lua-example</a><a class="headerlink" href="#devel-lua-example" title="Permalink to this headline">¶</a></h2> <p>An example lua script, which reports the number of times it has been called. Useful for testing environment persistence.</p> </div> <div class="section" id="devel-modstate-monitor"> <span id="id15"></span><h2><a class="toc-backref" href="#id43">devel/modstate-monitor</a><a class="headerlink" href="#devel-modstate-monitor" title="Permalink to this headline">¶</a></h2> <p>Display changes in key modifier state, ie Ctrl/Alt/Shift.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">enable|start:</th><td class="field-body">Begin monitoring</td> </tr> <tr class="field-even field"><th class="field-name">disable|stop:</th><td class="field-body">End monitoring</td> </tr> </tbody> </table> </div> <div class="section" id="devel-nuke-items"> <span id="id16"></span><h2><a class="toc-backref" href="#id44">devel/nuke-items</a><a class="headerlink" href="#devel-nuke-items" title="Permalink to this headline">¶</a></h2> <p>Deletes ALL items not held by units, buildings or jobs. Intended solely for lag investigation.</p> </div> <div class="section" id="devel-pop-screen"> <span id="id17"></span><h2><a class="toc-backref" href="#id45">devel/pop-screen</a><a class="headerlink" href="#devel-pop-screen" title="Permalink to this headline">¶</a></h2> <p>For killing bugged out gui script screens.</p> </div> <div class="section" id="devel-prepare-save"> <span id="id18"></span><h2><a class="toc-backref" href="#id46">devel/prepare-save</a><a class="headerlink" href="#devel-prepare-save" title="Permalink to this headline">¶</a></h2> <p>WARNING: THIS SCRIPT IS STRICTLY FOR DFHACK DEVELOPERS.</p> <p>This script prepares the current savegame to be used with <a class="reference internal" href="#devel-find-offsets"><span>devel/find-offsets</span></a>. It CHANGES THE GAME STATE to predefined values, and initiates an immediate <a class="reference internal" href="base.html#quicksave"><span>quicksave</span></a>, thus PERMANENTLY MODIFYING the save.</p> </div> <div class="section" id="devel-print-args"> <span id="id19"></span><h2><a class="toc-backref" href="#id47">devel/print-args</a><a class="headerlink" href="#devel-print-args" title="Permalink to this headline">¶</a></h2> <p>Prints all the arguments you supply to the script on their own line. Useful for debugging other scripts.</p> </div> <div class="section" id="devel-print-args2"> <span id="id20"></span><h2><a class="toc-backref" href="#id48">devel/print-args2</a><a class="headerlink" href="#devel-print-args2" title="Permalink to this headline">¶</a></h2> <p>Prints all the arguments you supply to the script on their own line with quotes around them.</p> </div> <div class="section" id="devel-save-version"> <span id="id21"></span><h2><a class="toc-backref" href="#id49">devel/save-version</a><a class="headerlink" href="#devel-save-version" title="Permalink to this headline">¶</a></h2> <p>Display DF version information about the current save</p> </div> <div class="section" id="devel-scanitemother"> <span id="id22"></span><h2><a class="toc-backref" href="#id50">devel/scanitemother</a><a class="headerlink" href="#devel-scanitemother" title="Permalink to this headline">¶</a></h2> <p>List indices in <code class="docutils literal"><span class="pre">world.item.other[]</span></code> where current selected item appears.</p> </div> <div class="section" id="devel-spawn-unit-helper"> <span id="id23"></span><h2><a class="toc-backref" href="#id51">devel/spawn-unit-helper</a><a class="headerlink" href="#devel-spawn-unit-helper" title="Permalink to this headline">¶</a></h2> <p>Setup stuff to allow arena creature spawn after a mode change.</p> <p>With Arena spawn data initialized:</p> <ul class="simple"> <li>enter the <code class="kbd docutils literal"><span class="pre">k</span></code> menu and change mode using <code class="docutils literal"><span class="pre">rb_eval</span> <span class="pre">df.gametype</span> <span class="pre">=</span> <span class="pre">:DWARF_ARENA</span></code></li> <li>spawn creatures (<code class="kbd docutils literal"><span class="pre">c</span></code> ingame)</li> <li>revert to game mode using <code class="docutils literal"><span class="pre">rb_eval</span> <span class="pre">df.gametype</span> <span class="pre">=</span> <span class="pre">#{df.gametype.inspect}</span></code></li> <li>To convert spawned creatures to livestock, select each one with the <code class="kbd docutils literal"><span class="pre">v</span></code> menu, and enter <code class="docutils literal"><span class="pre">rb_eval</span> <span class="pre">df.unit_find.civ_id</span> <span class="pre">=</span> <span class="pre">df.ui.civ_id</span></code></li> </ul> </div> <div class="section" id="devel-test-perlin"> <span id="id24"></span><h2><a class="toc-backref" href="#id52">devel/test-perlin</a><a class="headerlink" href="#devel-test-perlin" title="Permalink to this headline">¶</a></h2> <p>Generates an image using multiple octaves of perlin noise.</p> </div> <div class="section" id="devel-unforbidall"> <span id="id25"></span><h2><a class="toc-backref" href="#id53">devel/unforbidall</a><a class="headerlink" href="#devel-unforbidall" title="Permalink to this headline">¶</a></h2> <p>Unforbid all items.</p> </div> <div class="section" id="devel-unit-path"> <span id="id26"></span><h2><a class="toc-backref" href="#id54">devel/unit-path</a><a class="headerlink" href="#devel-unit-path" title="Permalink to this headline">¶</a></h2> <p>Show the internal path a unit is currently following.</p> </div> <div class="section" id="devel-watch-minecarts"> <span id="id27"></span><h2><a class="toc-backref" href="#id55">devel/watch-minecarts</a><a class="headerlink" href="#devel-watch-minecarts" title="Permalink to this headline">¶</a></h2> <p>Logs minecart coordinates and speeds to console.</p> <p>Usage: <code class="docutils literal"><span class="pre">devel/watch-minecarts</span> <span class="pre">start|stop</span></code></p> </div> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h1 class="logo"><a href="../../index.html">DFHack</a></h1> <div class="relations"> <h3>Related Topics</h3> <ul> <li><a href="../../index.html">Documentation overview</a><ul> <li><a href="../Scripts.html">DFHack Scripts</a><ul> <li>Previous: <a href="base.html" title="previous chapter">Basic Scripts</a></li> <li>Next: <a href="fix.html" title="next chapter">Bugfixing Scripts</a></li> </ul></li> </ul></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> <h3><a href="../../index.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">Development Scripts</a><ul> <li><a class="reference internal" href="#devel-all-bob">devel/all-bob</a></li> <li><a class="reference internal" href="#devel-annc-monitor">devel/annc-monitor</a></li> <li><a class="reference internal" href="#devel-check-release">devel/check-release</a></li> <li><a class="reference internal" href="#devel-clear-script-env">devel/clear-script-env</a></li> <li><a class="reference internal" href="#devel-click-monitor">devel/click-monitor</a></li> <li><a class="reference internal" href="#devel-cmptiles">devel/cmptiles</a></li> <li><a class="reference internal" href="#devel-export-dt-ini">devel/export-dt-ini</a></li> <li><a class="reference internal" href="#devel-find-offsets">devel/find-offsets</a></li> <li><a class="reference internal" href="#devel-inject-raws">devel/inject-raws</a></li> <li><a class="reference internal" href="#devel-inspect-screen">devel/inspect-screen</a></li> <li><a class="reference internal" href="#devel-light">devel/light</a></li> <li><a class="reference internal" href="#devel-list-filters">devel/list-filters</a></li> <li><a class="reference internal" href="#devel-lsmem">devel/lsmem</a></li> <li><a class="reference internal" href="#devel-lua-example">devel/lua-example</a></li> <li><a class="reference internal" href="#devel-modstate-monitor">devel/modstate-monitor</a></li> <li><a class="reference internal" href="#devel-nuke-items">devel/nuke-items</a></li> <li><a class="reference internal" href="#devel-pop-screen">devel/pop-screen</a></li> <li><a class="reference internal" href="#devel-prepare-save">devel/prepare-save</a></li> <li><a class="reference internal" href="#devel-print-args">devel/print-args</a></li> <li><a class="reference internal" href="#devel-print-args2">devel/print-args2</a></li> <li><a class="reference internal" href="#devel-save-version">devel/save-version</a></li> <li><a class="reference internal" href="#devel-scanitemother">devel/scanitemother</a></li> <li><a class="reference internal" href="#devel-spawn-unit-helper">devel/spawn-unit-helper</a></li> <li><a class="reference internal" href="#devel-test-perlin">devel/test-perlin</a></li> <li><a class="reference internal" href="#devel-unforbidall">devel/unforbidall</a></li> <li><a class="reference internal" href="#devel-unit-path">devel/unit-path</a></li> <li><a class="reference internal" href="#devel-watch-minecarts">devel/watch-minecarts</a></li> </ul> </li> </ul> </div> </div> <div class="clearer"></div> </div> <div class="footer"> &copy;2015, The DFHack Team. | Powered by <a href="http://sphinx-doc.org/">Sphinx 1.3.1</a> &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.6</a> | <a href="../../_sources/docs/_auto/devel.txt" rel="nofollow">Page source</a> </div> </body> </html>
javascript/extractor/tests/html/input/empty_script.html
github/codeql
<html> <head> <script type="text/javascript" charset="utf-8"> </script> </head> </html>
Website2/index.html
Futupas/PanWebsite
<!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>Document</title> <style> body{ color: #0000ff; } </style> </head> <body> some body </body> </html>
pyconkr/templates/nav.html
pythonkr/pyconapac-2016
{% load staticfiles %} {% load i18n %} <nav class="navbar navbar-translucent" role="navigation"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1"> <span class="sr-only">{% trans "Toggle navigation" %}</span> <span class="glyphicon glyphicon-python"></span> </button> {% if not index %} <a class="navbar-logo" href="{% url "index" %}"> <img src="{% static "image/pyconkr-logo-small.png" %}" alt="PyCon Korea"> </a> {% endif %} </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="navbar-collapse-1"> <ul class="nav navbar-nav"> {% for k, v in menu.items %} {% if v.submenu %} <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <span class="glyphicon glyphicon-{{ v.icon }}"></span> {{ v.title }} <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> {% for sk, sv in v.submenu.items %} <li class="{% if sv.active %}active{% endif %}"> <a href="{% url "index" %}{{ k }}/{{ sk }}">{{ sv.title }}</a> </li> {% endfor %} </ul> </li> {% else %} <li class="{% if v.active %}active{% endif %}"> <a href="{% url "index" %}{{ k }}"><span class="glyphicon glyphicon-{{ v.icon }}"></span> {{ v.title }}</a> </li> {% endif %} {% endfor %} </ul> <!-- Right menu --> <ul class="nav navbar-nav navbar-right"> <!-- Authenticate --> {% if user.is_authenticated %} <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> {% if user.profile.image %} <img class="profile-thumb" src="/media/{{ user.profile.image }}" width="32"> {% else %} <span class="glyphicon glyphicon-user"></span> {% endif %} {{ user.username }} <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> {% if my_speaker %} <li class="dropdown-header">{% trans "Profile" %}</li> <li><a href="{{ my_speaker.get_absolute_url }}">{% trans "My Profile" %}</a></li> <li><a href="{% url "speaker_edit" my_speaker.slug %}">{% trans "Edit Profile" %}</a></li> <li class="divider"></li> {% endif %} {% if my_programs %} <li class="dropdown-header">{% trans "Programs" %}</li> {% for program in my_programs %} <li><a href="{{ program.get_absolute_url }}">{{ program.name }}</a></li> {% endfor %} <li role="presentation" class="divider"></li> {% endif %} <li><a href="{% url "profile" %}">{% trans "Profile" %}</a></li> <li><a href="{% url "logout" %}">{% trans "Logout" %}</a></li> </ul> </li> {% else %} <li class="{% if v.active %}active{% endif %}"> <a href="{% url "login" %}"><span class="glyphicon glyphicon-user"></span> {% trans "Login" %}</a> </li> {% endif %} <!-- Language --> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <span class="glyphicon glyphicon-globe"></span> {% trans "Language" %} <span class="caret"></span></a> <ul id="language-menu" class="dropdown-menu" role="menu"> {% get_language_info_list for LANGUAGES as languages %} {% for language in languages %} <li><a href="#" data-code="{{ language.code }}">{{ language.name_local }}</a></li> {% endfor %} </ul> <form id="language-form" action="{% url 'set_language' %}" method="post"> {% csrf_token %} <input name="next" type="hidden" value="{{ request.path }}" /> <input name="language" type="hidden" /> </form> </li> </ul> </div><!-- /.navbar-collapse --> </div><!-- /.container --> </nav> <script> $(function() { $("#language-menu a").click(function() { var form = $("#language-form"); form.find("input[name='language']").val($(this).data("code")); form.submit(); }); {% if not index %} var d = new Date(); $(".navbar").css("background", getSkyColorAt(d.getHours(), d.getMinutes())); {% endif %} }); </script>
_layouts/default.html
Jsonzhang/jsonzhang.github.io
<!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]--> {% include head.html %} <body> <div class="content"> <div class="container"> {{ content }} </div> </div><!-- end .content --> <!-- include footer.html --> {% include scripts.html %} </body> </html>
releases/2.1/javawsdocs/edu/sdsc/inca/util/ConfigProperties.html
IncaProject/IncaProject.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_13) on Tue Jul 31 13:21:17 PDT 2007 --> <TITLE> ConfigProperties </TITLE> <META NAME="keywords" CONTENT="edu.sdsc.inca.util.ConfigProperties class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="ConfigProperties"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../../../../edu/sdsc/inca/util/ConfigPropertiesTest.html" title="class in edu.sdsc.inca.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ConfigProperties.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.util.Properties">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> edu.sdsc.inca.util</FONT> <BR> Class ConfigProperties</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by">java.util.Dictionary <IMG SRC="../../../../resources/inherit.gif" ALT="extended by">java.util.Hashtable <IMG SRC="../../../../resources/inherit.gif" ALT="extended by">java.util.Properties <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>edu.sdsc.inca.util.ConfigProperties</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.lang.Cloneable, java.util.Map, java.io.Serializable</DD> </DL> <HR> <DL> <DT>public class <B>ConfigProperties</B><DT>extends java.util.Properties</DL> <P> This is an extension of the standard Properties class that can generate elements by command-line parsing and by stripping prefixes from the elements of Properties objects--both useful in generating configuration values. <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#edu.sdsc.inca.util.ConfigProperties">Serialized Form</A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Field Summary</B></FONT></TD> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_java.util.Properties"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Fields inherited from class java.util.Properties</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>defaults</CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#ConfigProperties()">ConfigProperties</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#loadFromFile(java.lang.String, java.lang.String)">loadFromFile</A></B>(java.lang.String&nbsp;path, java.lang.String&nbsp;prefix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reads properties from a file, retaining only those properties that have a name starting with the given prefix.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#loadFromResource(java.lang.String, java.lang.String)">loadFromResource</A></B>(java.lang.String&nbsp;res, java.lang.String&nbsp;prefix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reads properties from a resource, retaining only those properties that have a name starting with the given prefix.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#loadFromStream(java.io.InputStream, java.lang.String)">loadFromStream</A></B>(java.io.InputStream&nbsp;stream, java.lang.String&nbsp;prefix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Reads properties from an input stream, retaining only those properties that have a name starting with the given prefix.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#mergeValidOptions(java.lang.String, java.lang.String, boolean)">mergeValidOptions</A></B>(java.lang.String&nbsp;valid1, java.lang.String&nbsp;valid2, boolean&nbsp;sort)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Merges two strings of the form accepted by setPropertiesFromArgs.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#putAllTrimmed(java.util.Properties, java.lang.String)">putAllTrimmed</A></B>(java.util.Properties&nbsp;p, java.lang.String&nbsp;prefix)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Like putAll, but only copies those elements that have a name starting with the given prefix.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../edu/sdsc/inca/util/ConfigProperties.html#setPropertiesFromArgs(java.lang.String, java.lang.String[])">setPropertiesFromArgs</A></B>(java.lang.String&nbsp;valid, java.lang.String[]&nbsp;args)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Parses command-line arguments, storing each option/value pair as a property.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.util.Properties"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.util.Properties</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>getProperty, getProperty, list, list, load, propertyNames, save, setProperty, store</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.util.Hashtable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.util.Hashtable</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, toString, values</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"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>finalize, getClass, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="ConfigProperties()"><!-- --></A><H3> ConfigProperties</H3> <PRE> public <B>ConfigProperties</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="loadFromFile(java.lang.String, java.lang.String)"><!-- --></A><H3> loadFromFile</H3> <PRE> public void <B>loadFromFile</B>(java.lang.String&nbsp;path, java.lang.String&nbsp;prefix) throws java.io.IOException</PRE> <DL> <DD>Reads properties from a file, retaining only those properties that have a name starting with the given prefix. Trims the prefix from the property names. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>path</CODE> - Path to file to open and load.<DD><CODE>prefix</CODE> - Property name prefix to test and trim. <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <HR> <A NAME="loadFromResource(java.lang.String, java.lang.String)"><!-- --></A><H3> loadFromResource</H3> <PRE> public void <B>loadFromResource</B>(java.lang.String&nbsp;res, java.lang.String&nbsp;prefix) throws java.io.IOException</PRE> <DL> <DD>Reads properties from a resource, retaining only those properties that have a name starting with the given prefix. Trims the prefix from the property names. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>res</CODE> - Resource to open and load.<DD><CODE>prefix</CODE> - Property name prefix to test and trim. <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <HR> <A NAME="loadFromStream(java.io.InputStream, java.lang.String)"><!-- --></A><H3> loadFromStream</H3> <PRE> public void <B>loadFromStream</B>(java.io.InputStream&nbsp;stream, java.lang.String&nbsp;prefix) throws java.io.IOException</PRE> <DL> <DD>Reads properties from an input stream, retaining only those properties that have a name starting with the given prefix. Trims the prefix from the property names. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>stream</CODE> - Resource to open and load.<DD><CODE>prefix</CODE> - Property name prefix to test and trim. <DT><B>Throws:</B> <DD><CODE>java.io.IOException</CODE></DL> </DD> </DL> <HR> <A NAME="putAllTrimmed(java.util.Properties, java.lang.String)"><!-- --></A><H3> putAllTrimmed</H3> <PRE> public void <B>putAllTrimmed</B>(java.util.Properties&nbsp;p, java.lang.String&nbsp;prefix)</PRE> <DL> <DD>Like putAll, but only copies those elements that have a name starting with the given prefix. Trims the prefix from the property names. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>p</CODE> - Properties to copy.<DD><CODE>prefix</CODE> - Property name prefix to test and trim.</DL> </DD> </DL> <HR> <A NAME="setPropertiesFromArgs(java.lang.String, java.lang.String[])"><!-- --></A><H3> setPropertiesFromArgs</H3> <PRE> public void <B>setPropertiesFromArgs</B>(java.lang.String&nbsp;valid, java.lang.String[]&nbsp;args) throws <A HREF="../../../../edu/sdsc/inca/ConfigurationException.html" title="class in edu.sdsc.inca">ConfigurationException</A></PRE> <DL> <DD>Parses command-line arguments, storing each option/value pair as a property. Options that take no value are given the value "". <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>valid</CODE> - A newline-delimited list of descriptions about valid options. The tokens in each option description list the option name (or names, separated by "|") and option type ("null" for options that take no value). Any text after the option type is ignored, making it easy to reuse the valid option description for user help.<DD><CODE>args</CODE> - Command-line arguments from main(). <DT><B>Throws:</B> <DD><CODE><A HREF="../../../../edu/sdsc/inca/ConfigurationException.html" title="class in edu.sdsc.inca">ConfigurationException</A></CODE></DL> </DD> </DL> <HR> <A NAME="mergeValidOptions(java.lang.String, java.lang.String, boolean)"><!-- --></A><H3> mergeValidOptions</H3> <PRE> public static java.lang.String <B>mergeValidOptions</B>(java.lang.String&nbsp;valid1, java.lang.String&nbsp;valid2, boolean&nbsp;sort)</PRE> <DL> <DD>Merges two strings of the form accepted by setPropertiesFromArgs. Removes any duplicates and sorts and formats the result. <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>valid1</CODE> - the first set of options<DD><CODE>valid2</CODE> - the second set of options <DT><B>Returns:</B><DD>the combined options</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV CLASS&nbsp; &nbsp;<A HREF="../../../../edu/sdsc/inca/util/ConfigPropertiesTest.html" title="class in edu.sdsc.inca.util"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ConfigProperties.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.util.Properties">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
templates/account/email.html
SoPR/horas
{% extends "account/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %} {% trans "Dirección de correo electrónico" %} {% endblock title %} {% block content %} <div class="container"> <div class="row"> <div class="col-sm-5"> <h3>{% trans "Correo electrónico" %}</h3> {% if user.emailaddress_set.all %} <p>{% trans 'Estas direcciones de correo electrónico están asociadas a tu cuenta:' %}</p> <form action="{% url 'account_email' %}" class="email_list" method="post"> {% csrf_token %} <div class="form-group"> {% for emailaddress in user.emailaddress_set.all %} <div class="radio"> <label for="email_radio_{{forloop.counter}}"> <input id="email_radio_{{forloop.counter}}" type="radio" name="email" {% if emailaddress.primary %}checked="checked"{%endif %} value="{{emailaddress.email}}"> <span class="{% if emailaddress.primary %}primary-email{%endif%}">{{ emailaddress.email }}</span> {% if emailaddress.verified %} <small class="verified text-muted">{% trans "Verificada" %}</small> {% else %} <small class="unverified text-muted">{% trans "No-verificada" %}</small> {% endif %} {% if emailaddress.primary %} <small class="primary text-muted"> / {% trans "Primaria" %}</small> {% endif %} </label> </div> {% endfor %} </div> <hr> <!-- hr --> <div class="form-group"> <button class="btn btn-default" type="submit" name="action_primary" >{% trans 'Hacer primario' %}</button> <button class="btn btn-default" type="submit" name="action_send" >{% trans 'Re-enviar verificación' %}</button> <button class="btn btn-danger" type="submit" name="action_remove" >{% trans 'Remover' %}</button> </div> </form> {% else %} <p><strong>{% trans 'Alerta:'%}</strong> {% trans "No tienes ninguna dirección de correo electrónico registrada en la aplicación. Debes registrar por lo menos una dirección para poder reiniciar tu contraseña y para recibir notificaciones." %}</p> {% endif %} <br> <hr> <!-- hr --> <br> <h3>{% trans "Añadir direcciones de correo electrónico" %}</h3> <form method="post" action="{% url 'account_email' %}" class="add_email"> {% csrf_token %} {% bootstrap_form form %} {% buttons %} <button type="submit" name="action_add" class="btn btn-primary">{% trans "Añadir correo electrónico" %}</button> <a href="{% url 'profile_update' request.user.username %}" class="btn btn-link">{% trans "Volver a configuración" %}</a> {% endbuttons %} </form> </div> </div> </div> {% endblock %} {% block extra_body %} <script type="text/javascript"> (function() { var message = "{% trans '¿Estas seguro que quieres remover el correo electrónico seleccionado?' %}"; var actions = document.getElementsByName('action_remove'); if (actions.length) { actions[0].addEventListener("click", function(e) { if (! confirm(message)) { e.preventDefault(); } }); } })(); </script> {% endblock %}
app/app.component.tpl.html
carthage-college/aang-psilobus
<div *ngIf="courses_error">An error occurred while loading the courses...</div> <table class="table-fill"> <thead> <tr> <th style="text-align:center;">Title</th> <th style="text-align:center;">Number</th> <th style="text-align:center;">Sec.</th> <th style="text-align:center;">Sess.</th> <th style="text-align:center;">Instructor</th> </tr> </thead> <tbody class="table-hover"> <tr *ngFor="let c of courses"> <td [ngSwitch]="c.earl"> <div *ngSwitchCase="''"> {{c.crs_title}} </div> <div *ngSwitchDefault> <a href="{{c.earl}}" title="{{c.crs_title}}" target="_blank"> {{c.crs_title}} </a> </div> </td> <td> {{c.crs_no}} </td> <td style="text-align:center;"> {{c.sec_no}} </td> <td style="text-align:center;"> {{c.sess}} </td> <td> {{c.fullname}} </td> </tr> </tbody> <tfoot> <tr> <th style="text-align:center;">Title</th> <th style="text-align:center;">Number</th> <th style="text-align:center;">Sec.</th> <th style="text-align:center;">Sess.</th> <th style="text-align:center;">Instructor</th> </tr> </tfoot> </table>
archives/2017/11/index.html
evachenzehua/evachenzehua.github.io
<!DOCTYPE html> <html class="theme-next mist use-motion" 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, maximum-scale=1"/> <meta name="theme-color" content="#222"> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" /> <link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" /> <link href="/css/main.css?v=5.1.3" rel="stylesheet" type="text/css" /> <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.3"> <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.3"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.3"> <link rel="mask-icon" href="/images/logo.svg?v=5.1.3" color="#222"> <meta name="keywords" content="Hexo, NexT" /> <meta name="description" content="Gibt nichts was warmes Wasser nicht heilen könnte."> <meta property="og:type" content="website"> <meta property="og:title" content="EVA&#39;S BLOG"> <meta property="og:url" content="http://yoursite.com/archives/2017/11/index.html"> <meta property="og:site_name" content="EVA&#39;S BLOG"> <meta property="og:description" content="Gibt nichts was warmes Wasser nicht heilen könnte."> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="EVA&#39;S BLOG"> <meta name="twitter:description" content="Gibt nichts was warmes Wasser nicht heilen könnte."> <script type="text/javascript" id="hexo.configurations"> var NexT = window.NexT || {}; var CONFIG = { root: '/', scheme: 'Mist', version: '5.1.3', sidebar: {"display":"hide","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false}, fancybox: true, tabs: true, motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}, duoshuo: { userId: '0', author: 'Author' }, algolia: { applicationID: '', apiKey: '', indexName: '', hits: {"per_page":10}, labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"} } }; </script> <link rel="canonical" href="http://yoursite.com/archives/2017/11/"/> <title>Archiv | EVA'S BLOG</title> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-101651836-1', 'auto'); ga('send', 'pageview'); </script> </head> <body itemscope itemtype="http://schema.org/WebPage" lang=""> <div class="container page-archive"> <div class="headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="site-brand-wrapper"> <div class="site-meta "> <div class="custom-logo-site-title"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <span class="site-title">EVA'S BLOG</span> <span class="logo-line-after"><i></i></span> </a> </div> <p class="site-subtitle"></p> </div> <div class="site-nav-toggle"> <button> <span class="btn-bar"></span> <span class="btn-bar"></span> <span class="btn-bar"></span> </button> </div> </div> <nav class="site-nav"> <ul id="menu" class="menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"> <i class="menu-item-icon fa fa-fw fa-home"></i> <br /> Startseite </a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"> <i class="menu-item-icon fa fa-fw fa-user"></i> <br /> Über </a> </li> <li class="menu-item menu-item-tags"> <a href="/tags/" rel="section"> <i class="menu-item-icon fa fa-fw fa-tags"></i> <br /> Tags </a> </li> <li class="menu-item menu-item-categories"> <a href="/categories/" rel="section"> <i class="menu-item-icon fa fa-fw fa-th"></i> <br /> Kategorien </a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"> <i class="menu-item-icon fa fa-fw fa-archive"></i> <br /> Archiv </a> </li> </ul> </nav> </div> </header> <main id="main" class="main"> <div class="main-inner"> <div class="content-wrap"> <div id="content" class="content"> <div class="post-block archive"> <div id="posts" class="posts-collapse"> <span class="archive-move-on"></span> <span class="archive-page-counter"> Öhm..! Insgesamt 2 Artikel. Bleib dran. </span> <div class="collection-title"> <h1 class="archive-year" id="archive-year-2017">2017</h1> </div> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h2 class="post-title"> <a class="post-title-link" href="/2017/11/23/Robotik-Mathematische-Grundlagen/" itemprop="url"> <span itemprop="name">Robotik: Mathematische Grundlagen</span> </a> </h2> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2017-11-23T17:04:01+01:00" content="2017-11-23" > 11-23 </time> </div> </header> </article> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h2 class="post-title"> <a class="post-title-link" href="/2017/11/23/hello-world/" itemprop="url"> <span itemprop="name">Hello World</span> </a> </h2> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2017-11-23T10:53:27+01:00" content="2017-11-23" > 11-23 </time> </div> </header> </article> </div> </div> </div> </div> <div class="sidebar-toggle"> <div class="sidebar-toggle-line-wrap"> <span class="sidebar-toggle-line sidebar-toggle-line-first"></span> <span class="sidebar-toggle-line sidebar-toggle-line-middle"></span> <span class="sidebar-toggle-line sidebar-toggle-line-last"></span> </div> </div> <aside id="sidebar" class="sidebar"> <div class="sidebar-inner"> <section class="site-overview-wrap sidebar-panel sidebar-panel-active"> <div class="site-overview"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="/images/avatar.jpg" alt="Eva CHEN" /> <p class="site-author-name" itemprop="name">Eva CHEN</p> <p class="site-description motion-element" itemprop="description">Gibt nichts was warmes Wasser nicht heilen könnte.</p> </div> <nav class="site-state motion-element"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">2</span> <span class="site-state-item-name">Artikel</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/index.html"> <span class="site-state-item-count">1</span> <span class="site-state-item-name">Kategorien</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/index.html"> <span class="site-state-item-count">4</span> <span class="site-state-item-name">Tags</span> </a> </div> </nav> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="mailto:evachenzehua@gmail.com" target="_blank" title="E-Mail"> <i class="fa fa-fw fa-envelope"></i>E-Mail</a> </span> <span class="links-of-author-item"> <a href="https://instagram.com/evachenzehua" target="_blank" title="Instagram"> <i class="fa fa-fw fa-instagram"></i>Instagram</a> </span> </div> </div> </section> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright">&copy; <span itemprop="copyrightYear">2017</span> <span class="with-love"> <i class="fa fa-heartbeat"></i> </span> <span class="author" itemprop="copyrightHolder">Eva CHEN</span> </div> <div class="powered-by">Erstellt mit <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a></div> <span class="post-meta-divider">|</span> <div class="theme-info">Theme &mdash; <a class="theme-link" target="_blank" href="https://github.com/iissnan/hexo-theme-next">NexT.Mist</a></div> </div> </footer> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> </div> </div> <script type="text/javascript"> if (Object.prototype.toString.call(window.Promise) !== '[object Function]') { window.Promise = null; } </script> <script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.1.3"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.1.3"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.3"></script> <script id="dsq-count-scr" src="https://eva's blog.disqus.com/count.js" async></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true, skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Queue(function() { var all = MathJax.Hub.getAllJax(), i; for (i=0; i < all.length; i += 1) { all[i].SourceElement().parentNode.className += ' has-jax'; } }); </script> <script type="text/javascript" src="//cdn.bootcss.com/mathjax/2.7.1/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> </body> </html>
media/css/style.css
ryecao/a-simple-music-search-engine
body { background: #555; margin: 0; padding: 0; } form { background: #222 url(/media/images/bg.jpg) no-repeat top left; background-clip: padding-box; font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; border-radius: 3px; -moz-border-radius: 3px; -o-border-radius: 3px; -webkit-border-radius: 3px; -webkit-box-shadow: 0 1px 5px rgba(0,0,0,.53); box-shadow: 0 1px 5px rgba(0,0,0,.53); -moz-box-shadow: 0 1px 5px rgba(0,0,0,.53); -o-box-shadow: 1px 5px rgba(0,0,0,.53); height: 300px; margin-top:-250px!important; margin: 50px auto; padding: 0; width: 400px; } input { font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; background: transparent; background: rgba(163, 135, 106, 0.15); background-clip: padding-box; border: none; border-radius: 26px; -moz-border-radius: 26px; -o-border-radius: 26px; -webkit-border-radius: 26px; box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.3); -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.3); -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.3); -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.3); color: #fff; height: 26px; margin: 257px 80px 0 80px; outline: none; padding: 0 20px 0 35px; transition: all .1s linear; -moz-transition: all .1s linear; -o-transition: all .1s linear; -webkit-transition: all .1s linear; width: 185px; } .album-art{ text-decoration: none; background-color: #fff; font-size: 0; padding: 3px 3px 3px 3px; width: 100px; height: 100px; display: block; -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.4); box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.4); -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.4);; } .album-art:hover{ text-decoration: none; } .open-button{ color:#fff; margin-top:-65px; margin-left:32px; -webkit-filter: initial; filter: initial; -moz-filter:initial; -o-filter:initial; } .logo{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; color:#fff; text-shadow: 0px 1px 2px #111; margin-left: 42%; float:center; } .info{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; margin-top: -100px; margin-left: 120px; } .info-title{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; } .info-singer{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; } .tag-container{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; position: relative; text-align: right; float:right; } .tag{ text-shadow: 0px 0px 2px #222; border: 1px solid; border-color: #ccc; text-decoration: none; display: inline; color :#fff; -webkit-border-radius: 200px; -moz-border-radius: 200px; -o-border-radius: 200px; border-radius: 200px; font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; text-align: right; } .tag:hover{ background-color: #fff!important; color:#000; text-shadow:none; border:1px #fff; -webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2); -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2); box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2); transition: all .1s linear; -moz-transition: all .1s linear; -o-transition: all .1s linear; -webkit-transition: all .1s linear; } input:focus { background: transparent; background: rgba(163, 135, 106, 0.2); box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.5); -moz-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.5); -o-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.5); -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 1px 2px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.5); } label { background: transparent url(/media/images/icon-search.png) no-repeat top left; cursor: pointer; display: block; height: 17px; left: 90px; position: relative; text-indent: -99999px; top: -21px; width: 16px; } .result-view-cell{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; list-style: none; padding: 20px 20px 24px; height: 110px; min-width: 400px; background-color: #fff; position: relative; margin-left: 200px; margin-right: 200px; -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.2); box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.2); } .result-view-cell:hover{ background-color: #f5f5f5; -webkit-transform:scale(1.04); -moz-transform:scale(1.04); transform:scale(1.04); } *{text-decoration:none;} .result-head2{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; margin-left: 240px; color:#fff; text-shadow: 0px 1px 2px #111; } .suggest{ font-family: "Source Han Sans Light",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; } .suggest:hover{ } .pagination{ position: absolute; font-family: "Source Han Sans Light",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; height: 20px; width:200px; margin-left: 41%; margin-bottom: 40px; padding: 2px 2px 2px 2px; color: #ccc; text-align: center; } .step-links{ font-family: "Source Han Sans Regular",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; text-decoration: none; } .previous{ font-family: "Source Han Sans Light",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; text-shadow: 0px 1px 2px #000; padding:0px 2px 2px 2px; border:1px solid; color:#fff; border-radius:25px; -moz-border-radius:25px } .next{ font-family: "Source Han Sans Light",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; text-shadow: 0px 1px 2px #000; padding:0px 2px 2px 2px; border:1px solid; color:#fff; border-radius:25px; -moz-border-radius:25px } .previous:hover{ font-family: "Source Han Sans Light",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; background-color: #fff; color:#000; text-shadow:none; border:1px #fff; transition: all .1s linear; -moz-transition: all .1s linear; -o-transition: all .1s linear; -webkit-transition: all .1s linear; } .next:hover{ background-color: #fff; color:#000; text-shadow:none; border:1px #fff; transition: all .1s linear; -moz-transition: all .1s linear; -o-transition: all .1s linear; -webkit-transition: all .1s linear; } .play-count{ font-family: "Source Han Sans ExtraLight",Lato, sans-serif,"Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif!important; position: relative; text-align: right; float:right; }
style.css
Left-Pheild/TheTwitchFamily
.oro{ background-color:#fff; } /* Make row heights even */ .row{ display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; flex-wrap: wrap; } .row > [class*='col-']{ display: flex; flex-decoration:column; } /* CARD STYLING */ .round-logo{ width: 75px; height: 75px; border-radius: 50px; } .text-padding{ margin-left:5.5em; } .status-bar{ position: absolute; top: 0.5em; right: 0.5em; font-size: 1em; } .banner { opacity:0.5; } a.card-link:link, a.card-link:visited, a.card-link:hover{ text-decoration: none; color:#E2FCEF; } a.nav-link:link, a.nav-link:visited, a.nav-link:hover{ text-decoration: none; color:#E2FCEF; } .nav-item:active{ background-color:green; } /* OVERALL PAGE STYLING */ .hero-text{ font-family:'Fjalla One',san-serif; letter-spacing: 1px; font-size: 5em; text-transform: uppercase; color:#E2FCEF; } @media all and (max-width:599px) and (min-width:320px){ .hero-text{ font-size:3em; } } .title-section{ padding-top: 2em; padding-bottom:1.5em; background: #12100E } .nav-section { text-align:center; padding-top: 0.5em; background: #4B0082; } body{ background: #4B0082; margin-bottom:3em; } .results-section{ background: #4B0082; padding-top: 0.5em; } .card-block{ font-weight: 100; } .card{ background: #212D40; box-shadow: 0 30px 50px rgba(0,0,0,0.3); } .offline { color: #E2FCEF; } .footer-section { background: #12100E; padding-top: 1em; position: fixed; bottom:0; width:100%; } a:hover { color: #E2FCEF; text-decoration: none; } a { color: #6441A4; } /* Utility */ .shade { background:rgba(0,0,0,0.2); }
dev/modules/ActionBar/index.html
anandharshan/Web-components-DD
<!--Action Bar component code --> <div ng-controller="actionBarCtrl"> <div vmf-action-bar options="actionBarlist"></div> </div>
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/functions-in-zfc/8.9.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>functions-in-zfc: 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 / functions-in-zfc - 8.9.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> functions-in-zfc <small> 8.9.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.13 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.8.0 Formal proof management system. num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/functions-in-zfc&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/FunctionsInZFC&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} ] tags: [ &quot;keyword: Set Theory&quot; &quot;keyword: Zermelo-Fraenkel&quot; &quot;keyword: functions&quot; &quot;category: Mathematics/Logic/Set theory&quot; &quot;date: April 2001&quot; ] authors: [ &quot;Carlos Simpson &lt;carlos@math.unice.fr&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/functions-in-zfc/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/functions-in-zfc.git&quot; synopsis: &quot;Functions in classical ZFC&quot; description: &quot;&quot;&quot; This mostly repeats Guillaume Alexandre&#39;s contribution `zf&#39;, but in classical logic and with a different proof style. We start with a simple axiomatization of some flavor of ZFC (for example Werner&#39;s implementation of ZFC should provide a model). We develop some very basic things like pairs, functions, and a little bit about natural numbers, following the standard classical path.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/functions-in-zfc/archive/v8.9.0.tar.gz&quot; checksum: &quot;md5=6b065d9b2e6d203dd29f0674e1f7c87b&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-functions-in-zfc.8.9.0 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-functions-in-zfc -&gt; coq &gt;= 8.9 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-functions-in-zfc.8.9.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
doc/corejava/oopmore/class-use/RectangleTest.html
mdnu/core
<!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_92) on Thu Apr 28 09:45:32 EDT 2016 --> <title>Uses of Class corejava.oopmore.RectangleTest</title> <meta name="date" content="2016-04-28"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class corejava.oopmore.RectangleTest"; } } 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="../../../corejava/oopmore/package-summary.html">Package</a></li> <li><a href="../../../corejava/oopmore/RectangleTest.html" title="class in corejava.oopmore">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?corejava/oopmore/class-use/RectangleTest.html" target="_top">Frames</a></li> <li><a href="RectangleTest.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 corejava.oopmore.RectangleTest" class="title">Uses of Class<br>corejava.oopmore.RectangleTest</h2> </div> <div class="classUseContainer">No usage of corejava.oopmore.RectangleTest</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="../../../corejava/oopmore/package-summary.html">Package</a></li> <li><a href="../../../corejava/oopmore/RectangleTest.html" title="class in corejava.oopmore">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?corejava/oopmore/class-use/RectangleTest.html" target="_top">Frames</a></li> <li><a href="RectangleTest.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>
public/Windows 10 x64 (19041.264)/_IO_STACK_LOCATION.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (19041.264)</h4><br> <h2>_IO_STACK_LOCATION</h2> <font face="arial"> +0x000 MajorFunction : UChar<br> +0x001 MinorFunction : UChar<br> +0x002 Flags : UChar<br> +0x003 Control : UChar<br> +0x008 Parameters : <a href="./<anonymous-tag>.html"><anonymous-tag></a><br> +0x028 DeviceObject : Ptr64 <a href="./_DEVICE_OBJECT.html">_DEVICE_OBJECT</a><br> +0x030 FileObject : Ptr64 <a href="./_FILE_OBJECT.html">_FILE_OBJECT</a><br> +0x038 CompletionRoutine : Ptr64 long <br> +0x040 Context : Ptr64 Void<br> </font></body></html>
public/404.html
golang-my/golang-my.github.io-hugo
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="pinterest" content="nopin"> <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> <meta name="generator" content="Hugo 0.20-DEV" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="https://golang.my/index.xml"> <link rel="canonical" href=""> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/solarized_dark.min.css"> <title>404 Page not found - Golang Malaysia</title> <link href="https://golang.my/css/styles.css" rel="stylesheet"> </head> <body> <header class="l-header"> <nav class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="https://golang.my/">Golang Malaysia</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="/home/about">Home</a></li> <li><a href="/post/">Posts</a></li> <li><a href="/post/contrib-howto/">Contributing</a></li> </ul> </div> </div> </nav> </header> <main> <div class="container"> <header class="page-header"> <h1>404 Page not found</h1> </header> </div> </main> <footer class="l-footer"> <div class="container"> <p>Copyleft 2017 Malaysian Golang User Group</p> <aside> <p>Powered by <a href="https://gohugo.io/">Hugo</a>.</p> <p><a href="https://github.com/dim0627/hugo_theme_beg">Beg</a> designed by <a href="http://yet.unresolved.xyz/">Daisuke Tsuji</a>.</p> </aside> </div> </footer> <script src="//code.jquery.com/jquery-3.1.1.min.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js"></script> <script>hljs.initHighlightingOnLoad();</script> </body> </html>
tag/iiul.html
s-chizhik/s-chizhik.github.io
<!DOCTYPE html> <html lang="ru"> <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>s.chizhik #site - Tag июль</title> <link href="/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="s.chizhik #site Full Atom Feed" /> <!-- Bootstrap Core CSS --> <link href="/theme/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="/theme/css/clean-blog.min.css" rel="stylesheet"> <!-- Code highlight color scheme --> <link href="/theme/css/code_blocks/darkly.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='https://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]--> <meta property="og:locale" content=""> <meta property="og:site_name" content="s.chizhik #site"> </head> <body> <!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <!-- 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> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">s.chizhik #site</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><a href="/category/poezdki.html">Поездки</a></li> <li><a href="/category/pokhody.html">Походы</a></li> <li><a href="/category/stati.html">Статьи</a></li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <header class="intro-header" style="background-color: #008651"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="page-heading"> <h1>Tag июль</h1> </div> </div> </div> </div> </header> <!-- Main Content --> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="post-preview"> <a href="/laitovyi-letnii-pokhodik.html" rel="bookmark" title="Permalink to Лайтовый летний походик"> <h2 class="post-title"> Лайтовый летний походик </h2> </a> <p class="article-summary"> Лайтовый летний походик </p> <p class="post-meta">Posted by <a href="/author/sergey-chizhik.html">Sergey Chizhik</a> on Sat 06 August 2016 </p> </div> </div> </div> </div> <hr> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> <li> <a href="https://github.com/s-chizhik"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://stackoverflow.com/users/4469537/sergey-chizhik"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-stack-overflow fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://www.linkedin.com/in/sergey-chizhik-848b02141"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-linkedin fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="https://t.me/s_chizhik"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-telegram fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> <p class="copyright text-muted"> Blog powered by <a href="http://getpelican.com">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>. <br /> &copy; Sergey Chizhik </p> </div> </div> </div> </footer> <!-- jQuery --> <script src="/theme/js/jquery.min.js"></script> <!-- Bootstrap Core JavaScript --> <script src="/theme/js/bootstrap.min.js"></script> <!-- Custom Theme JavaScript --> <script src="/theme/js/clean-blog.min.js"></script> </body> </html>
css/dy-bootstrap-template.css
yusufshakeel/dy-bootstrap-template
.dybt-wrap { word-wrap: break-word; overflow-wrap: break-word; } /*=margin =padding ---------------------*/ .dybt-margin-0 { margin: 0px; } .dybt-margin-5 { margin: 5px; } .dybt-margin-10 { margin: 10px; } .dybt-margin-15 { margin: 15px; } .dybt-margin-20 { margin: 20px; } .dybt-margin-25 { margin: 25px; } .dybt-margin-30 { margin: 30px; } .dybt-margin-35 { margin: 35px; } .dybt-margin-40 { margin: 40px; } .dybt-margin-45 { margin: 45px; } .dybt-margin-50 { margin: 50px; } .dybt-margin-55 { margin: 55px; } .dybt-margin-60 { margin: 60px; } .dybt-margin-65 { margin: 65px; } .dybt-margin-70 { margin: 70px; } .dybt-margin-75 { margin: 75px; } .dybt-margin-80 { margin: 80px; } .dybt-margin-85 { margin: 85px; } .dybt-margin-90 { margin: 90px; } .dybt-margin-95 { margin: 95px; } .dybt-margin-100 { margin: 100px; } .dybt-margin-105 { margin: 105px; } .dybt-margin-110 { margin: 110px; } .dybt-margin-115 { margin: 115px; } .dybt-margin-120 { margin: 120px; } .dybt-margin-125 { margin: 125px; } .dybt-margin-130 { margin: 130px; } .dybt-margin-135 { margin: 135px; } .dybt-margin-140 { margin: 140px; } .dybt-margin-145 { margin: 145px; } .dybt-margin-150 { margin: 150px; } .dybt-margin-155 { margin: 155px; } .dybt-margin-160 { margin: 160px; } .dybt-margin-165 { margin: 165px; } .dybt-margin-170 { margin: 170px; } .dybt-margin-175 { margin: 175px; } .dybt-margin-180 { margin: 180px; } .dybt-margin-185 { margin: 185px; } .dybt-margin-190 { margin: 190px; } .dybt-margin-195 { margin: 195px; } .dybt-margin-200 { margin: 200px; } .dybt-margin-205 { margin: 205px; } .dybt-margin-210 { margin: 210px; } .dybt-margin-215 { margin: 215px; } .dybt-margin-220 { margin: 220px; } .dybt-margin-225 { margin: 225px; } .dybt-margin-230 { margin: 230px; } .dybt-margin-235 { margin: 235px; } .dybt-margin-240 { margin: 240px; } .dybt-margin-245 { margin: 245px; } .dybt-margin-250 { margin: 250px; } .dybt-margin-255 { margin: 255px; } .dybt-margin-260 { margin: 260px; } .dybt-margin-265 { margin: 265px; } .dybt-margin-270 { margin: 270px; } .dybt-margin-275 { margin: 275px; } .dybt-margin-280 { margin: 280px; } .dybt-margin-285 { margin: 285px; } .dybt-margin-290 { margin: 290px; } .dybt-margin-295 { margin: 295px; } .dybt-margin-300 { margin: 300px; } .dybt-margin-305 { margin: 305px; } .dybt-margin-310 { margin: 310px; } .dybt-margin-315 { margin: 315px; } .dybt-margin-320 { margin: 320px; } .dybt-margin-325 { margin: 325px; } .dybt-margin-330 { margin: 330px; } .dybt-margin-335 { margin: 335px; } .dybt-margin-340 { margin: 340px; } .dybt-margin-345 { margin: 345px; } .dybt-margin-350 { margin: 350px; } .dybt-margin-355 { margin: 355px; } .dybt-margin-360 { margin: 360px; } .dybt-margin-365 { margin: 365px; } .dybt-margin-370 { margin: 370px; } .dybt-margin-375 { margin: 375px; } .dybt-margin-380 { margin: 380px; } .dybt-margin-385 { margin: 385px; } .dybt-margin-390 { margin: 390px; } .dybt-margin-395 { margin: 395px; } .dybt-margin-400 { margin: 400px; } .dybt-margin-405 { margin: 405px; } .dybt-margin-410 { margin: 410px; } .dybt-margin-415 { margin: 415px; } .dybt-margin-420 { margin: 420px; } .dybt-margin-425 { margin: 425px; } .dybt-margin-430 { margin: 430px; } .dybt-margin-435 { margin: 435px; } .dybt-margin-440 { margin: 440px; } .dybt-margin-445 { margin: 445px; } .dybt-margin-450 { margin: 450px; } .dybt-margin-455 { margin: 455px; } .dybt-margin-460 { margin: 460px; } .dybt-margin-465 { margin: 465px; } .dybt-margin-470 { margin: 470px; } .dybt-margin-475 { margin: 475px; } .dybt-margin-480 { margin: 480px; } .dybt-margin-485 { margin: 485px; } .dybt-margin-490 { margin: 490px; } .dybt-margin-495 { margin: 495px; } .dybt-margin-500 { margin: 500px; } .dybt-padding-0 { padding: 0px; } .dybt-padding-5 { padding: 5px; } .dybt-padding-10 { padding: 10px; } .dybt-padding-15 { padding: 15px; } .dybt-padding-20 { padding: 20px; } .dybt-padding-25 { padding: 25px; } .dybt-padding-30 { padding: 30px; } .dybt-padding-35 { padding: 35px; } .dybt-padding-40 { padding: 40px; } .dybt-padding-45 { padding: 45px; } .dybt-padding-50 { padding: 50px; } .dybt-padding-55 { padding: 55px; } .dybt-padding-60 { padding: 60px; } .dybt-padding-65 { padding: 65px; } .dybt-padding-70 { padding: 70px; } .dybt-padding-75 { padding: 75px; } .dybt-padding-80 { padding: 80px; } .dybt-padding-85 { padding: 85px; } .dybt-padding-90 { padding: 90px; } .dybt-padding-95 { padding: 95px; } .dybt-padding-100 { padding: 100px; } .dybt-padding-105 { padding: 105px; } .dybt-padding-110 { padding: 110px; } .dybt-padding-115 { padding: 115px; } .dybt-padding-120 { padding: 120px; } .dybt-padding-125 { padding: 125px; } .dybt-padding-130 { padding: 130px; } .dybt-padding-135 { padding: 135px; } .dybt-padding-140 { padding: 140px; } .dybt-padding-145 { padding: 145px; } .dybt-padding-150 { padding: 150px; } .dybt-padding-155 { padding: 155px; } .dybt-padding-160 { padding: 160px; } .dybt-padding-165 { padding: 165px; } .dybt-padding-170 { padding: 170px; } .dybt-padding-175 { padding: 175px; } .dybt-padding-180 { padding: 180px; } .dybt-padding-185 { padding: 185px; } .dybt-padding-190 { padding: 190px; } .dybt-padding-195 { padding: 195px; } .dybt-padding-200 { padding: 200px; } .dybt-padding-205 { padding: 205px; } .dybt-padding-210 { padding: 210px; } .dybt-padding-215 { padding: 215px; } .dybt-padding-220 { padding: 220px; } .dybt-padding-225 { padding: 225px; } .dybt-padding-230 { padding: 230px; } .dybt-padding-235 { padding: 235px; } .dybt-padding-240 { padding: 240px; } .dybt-padding-245 { padding: 245px; } .dybt-padding-250 { padding: 250px; } .dybt-padding-255 { padding: 255px; } .dybt-padding-260 { padding: 260px; } .dybt-padding-265 { padding: 265px; } .dybt-padding-270 { padding: 270px; } .dybt-padding-275 { padding: 275px; } .dybt-padding-280 { padding: 280px; } .dybt-padding-285 { padding: 285px; } .dybt-padding-290 { padding: 290px; } .dybt-padding-295 { padding: 295px; } .dybt-padding-300 { padding: 300px; } .dybt-padding-305 { padding: 305px; } .dybt-padding-310 { padding: 310px; } .dybt-padding-315 { padding: 315px; } .dybt-padding-320 { padding: 320px; } .dybt-padding-325 { padding: 325px; } .dybt-padding-330 { padding: 330px; } .dybt-padding-335 { padding: 335px; } .dybt-padding-340 { padding: 340px; } .dybt-padding-345 { padding: 345px; } .dybt-padding-350 { padding: 350px; } .dybt-padding-355 { padding: 355px; } .dybt-padding-360 { padding: 360px; } .dybt-padding-365 { padding: 365px; } .dybt-padding-370 { padding: 370px; } .dybt-padding-375 { padding: 375px; } .dybt-padding-380 { padding: 380px; } .dybt-padding-385 { padding: 385px; } .dybt-padding-390 { padding: 390px; } .dybt-padding-395 { padding: 395px; } .dybt-padding-400 { padding: 400px; } .dybt-padding-405 { padding: 405px; } .dybt-padding-410 { padding: 410px; } .dybt-padding-415 { padding: 415px; } .dybt-padding-420 { padding: 420px; } .dybt-padding-425 { padding: 425px; } .dybt-padding-430 { padding: 430px; } .dybt-padding-435 { padding: 435px; } .dybt-padding-440 { padding: 440px; } .dybt-padding-445 { padding: 445px; } .dybt-padding-450 { padding: 450px; } .dybt-padding-455 { padding: 455px; } .dybt-padding-460 { padding: 460px; } .dybt-padding-465 { padding: 465px; } .dybt-padding-470 { padding: 470px; } .dybt-padding-475 { padding: 475px; } .dybt-padding-480 { padding: 480px; } .dybt-padding-485 { padding: 485px; } .dybt-padding-490 { padding: 490px; } .dybt-padding-495 { padding: 495px; } .dybt-padding-500 { padding: 500px; } .dybt-margin-top-0 { margin-top: 0px; } .dybt-margin-top-5 { margin-top: 5px; } .dybt-margin-top-10 { margin-top: 10px; } .dybt-margin-top-15 { margin-top: 15px; } .dybt-margin-top-20 { margin-top: 20px; } .dybt-margin-top-25 { margin-top: 25px; } .dybt-margin-top-30 { margin-top: 30px; } .dybt-margin-top-35 { margin-top: 35px; } .dybt-margin-top-40 { margin-top: 40px; } .dybt-margin-top-45 { margin-top: 45px; } .dybt-margin-top-50 { margin-top: 50px; } .dybt-margin-top-55 { margin-top: 55px; } .dybt-margin-top-60 { margin-top: 60px; } .dybt-margin-top-65 { margin-top: 65px; } .dybt-margin-top-70 { margin-top: 70px; } .dybt-margin-top-75 { margin-top: 75px; } .dybt-margin-top-80 { margin-top: 80px; } .dybt-margin-top-85 { margin-top: 85px; } .dybt-margin-top-90 { margin-top: 90px; } .dybt-margin-top-95 { margin-top: 95px; } .dybt-margin-top-100 { margin-top: 100px; } .dybt-margin-top-105 { margin-top: 105px; } .dybt-margin-top-110 { margin-top: 110px; } .dybt-margin-top-115 { margin-top: 115px; } .dybt-margin-top-120 { margin-top: 120px; } .dybt-margin-top-125 { margin-top: 125px; } .dybt-margin-top-130 { margin-top: 130px; } .dybt-margin-top-135 { margin-top: 135px; } .dybt-margin-top-140 { margin-top: 140px; } .dybt-margin-top-145 { margin-top: 145px; } .dybt-margin-top-150 { margin-top: 150px; } .dybt-margin-top-155 { margin-top: 155px; } .dybt-margin-top-160 { margin-top: 160px; } .dybt-margin-top-165 { margin-top: 165px; } .dybt-margin-top-170 { margin-top: 170px; } .dybt-margin-top-175 { margin-top: 175px; } .dybt-margin-top-180 { margin-top: 180px; } .dybt-margin-top-185 { margin-top: 185px; } .dybt-margin-top-190 { margin-top: 190px; } .dybt-margin-top-195 { margin-top: 195px; } .dybt-margin-top-200 { margin-top: 200px; } .dybt-margin-top-205 { margin-top: 205px; } .dybt-margin-top-210 { margin-top: 210px; } .dybt-margin-top-215 { margin-top: 215px; } .dybt-margin-top-220 { margin-top: 220px; } .dybt-margin-top-225 { margin-top: 225px; } .dybt-margin-top-230 { margin-top: 230px; } .dybt-margin-top-235 { margin-top: 235px; } .dybt-margin-top-240 { margin-top: 240px; } .dybt-margin-top-245 { margin-top: 245px; } .dybt-margin-top-250 { margin-top: 250px; } .dybt-margin-top-255 { margin-top: 255px; } .dybt-margin-top-260 { margin-top: 260px; } .dybt-margin-top-265 { margin-top: 265px; } .dybt-margin-top-270 { margin-top: 270px; } .dybt-margin-top-275 { margin-top: 275px; } .dybt-margin-top-280 { margin-top: 280px; } .dybt-margin-top-285 { margin-top: 285px; } .dybt-margin-top-290 { margin-top: 290px; } .dybt-margin-top-295 { margin-top: 295px; } .dybt-margin-top-300 { margin-top: 300px; } .dybt-margin-top-305 { margin-top: 305px; } .dybt-margin-top-310 { margin-top: 310px; } .dybt-margin-top-315 { margin-top: 315px; } .dybt-margin-top-320 { margin-top: 320px; } .dybt-margin-top-325 { margin-top: 325px; } .dybt-margin-top-330 { margin-top: 330px; } .dybt-margin-top-335 { margin-top: 335px; } .dybt-margin-top-340 { margin-top: 340px; } .dybt-margin-top-345 { margin-top: 345px; } .dybt-margin-top-350 { margin-top: 350px; } .dybt-margin-top-355 { margin-top: 355px; } .dybt-margin-top-360 { margin-top: 360px; } .dybt-margin-top-365 { margin-top: 365px; } .dybt-margin-top-370 { margin-top: 370px; } .dybt-margin-top-375 { margin-top: 375px; } .dybt-margin-top-380 { margin-top: 380px; } .dybt-margin-top-385 { margin-top: 385px; } .dybt-margin-top-390 { margin-top: 390px; } .dybt-margin-top-395 { margin-top: 395px; } .dybt-margin-top-400 { margin-top: 400px; } .dybt-margin-top-405 { margin-top: 405px; } .dybt-margin-top-410 { margin-top: 410px; } .dybt-margin-top-415 { margin-top: 415px; } .dybt-margin-top-420 { margin-top: 420px; } .dybt-margin-top-425 { margin-top: 425px; } .dybt-margin-top-430 { margin-top: 430px; } .dybt-margin-top-435 { margin-top: 435px; } .dybt-margin-top-440 { margin-top: 440px; } .dybt-margin-top-445 { margin-top: 445px; } .dybt-margin-top-450 { margin-top: 450px; } .dybt-margin-top-455 { margin-top: 455px; } .dybt-margin-top-460 { margin-top: 460px; } .dybt-margin-top-465 { margin-top: 465px; } .dybt-margin-top-470 { margin-top: 470px; } .dybt-margin-top-475 { margin-top: 475px; } .dybt-margin-top-480 { margin-top: 480px; } .dybt-margin-top-485 { margin-top: 485px; } .dybt-margin-top-490 { margin-top: 490px; } .dybt-margin-top-495 { margin-top: 495px; } .dybt-margin-top-500 { margin-top: 500px; } .dybt-margin-bottom-0 { margin-bottom: 0px; } .dybt-margin-bottom-5 { margin-bottom: 5px; } .dybt-margin-bottom-10 { margin-bottom: 10px; } .dybt-margin-bottom-15 { margin-bottom: 15px; } .dybt-margin-bottom-20 { margin-bottom: 20px; } .dybt-margin-bottom-25 { margin-bottom: 25px; } .dybt-margin-bottom-30 { margin-bottom: 30px; } .dybt-margin-bottom-35 { margin-bottom: 35px; } .dybt-margin-bottom-40 { margin-bottom: 40px; } .dybt-margin-bottom-45 { margin-bottom: 45px; } .dybt-margin-bottom-50 { margin-bottom: 50px; } .dybt-margin-bottom-55 { margin-bottom: 55px; } .dybt-margin-bottom-60 { margin-bottom: 60px; } .dybt-margin-bottom-65 { margin-bottom: 65px; } .dybt-margin-bottom-70 { margin-bottom: 70px; } .dybt-margin-bottom-75 { margin-bottom: 75px; } .dybt-margin-bottom-80 { margin-bottom: 80px; } .dybt-margin-bottom-85 { margin-bottom: 85px; } .dybt-margin-bottom-90 { margin-bottom: 90px; } .dybt-margin-bottom-95 { margin-bottom: 95px; } .dybt-margin-bottom-100 { margin-bottom: 100px; } .dybt-margin-bottom-105 { margin-bottom: 105px; } .dybt-margin-bottom-110 { margin-bottom: 110px; } .dybt-margin-bottom-115 { margin-bottom: 115px; } .dybt-margin-bottom-120 { margin-bottom: 120px; } .dybt-margin-bottom-125 { margin-bottom: 125px; } .dybt-margin-bottom-130 { margin-bottom: 130px; } .dybt-margin-bottom-135 { margin-bottom: 135px; } .dybt-margin-bottom-140 { margin-bottom: 140px; } .dybt-margin-bottom-145 { margin-bottom: 145px; } .dybt-margin-bottom-150 { margin-bottom: 150px; } .dybt-margin-bottom-155 { margin-bottom: 155px; } .dybt-margin-bottom-160 { margin-bottom: 160px; } .dybt-margin-bottom-165 { margin-bottom: 165px; } .dybt-margin-bottom-170 { margin-bottom: 170px; } .dybt-margin-bottom-175 { margin-bottom: 175px; } .dybt-margin-bottom-180 { margin-bottom: 180px; } .dybt-margin-bottom-185 { margin-bottom: 185px; } .dybt-margin-bottom-190 { margin-bottom: 190px; } .dybt-margin-bottom-195 { margin-bottom: 195px; } .dybt-margin-bottom-200 { margin-bottom: 200px; } .dybt-margin-bottom-205 { margin-bottom: 205px; } .dybt-margin-bottom-210 { margin-bottom: 210px; } .dybt-margin-bottom-215 { margin-bottom: 215px; } .dybt-margin-bottom-220 { margin-bottom: 220px; } .dybt-margin-bottom-225 { margin-bottom: 225px; } .dybt-margin-bottom-230 { margin-bottom: 230px; } .dybt-margin-bottom-235 { margin-bottom: 235px; } .dybt-margin-bottom-240 { margin-bottom: 240px; } .dybt-margin-bottom-245 { margin-bottom: 245px; } .dybt-margin-bottom-250 { margin-bottom: 250px; } .dybt-margin-bottom-255 { margin-bottom: 255px; } .dybt-margin-bottom-260 { margin-bottom: 260px; } .dybt-margin-bottom-265 { margin-bottom: 265px; } .dybt-margin-bottom-270 { margin-bottom: 270px; } .dybt-margin-bottom-275 { margin-bottom: 275px; } .dybt-margin-bottom-280 { margin-bottom: 280px; } .dybt-margin-bottom-285 { margin-bottom: 285px; } .dybt-margin-bottom-290 { margin-bottom: 290px; } .dybt-margin-bottom-295 { margin-bottom: 295px; } .dybt-margin-bottom-300 { margin-bottom: 300px; } .dybt-margin-bottom-305 { margin-bottom: 305px; } .dybt-margin-bottom-310 { margin-bottom: 310px; } .dybt-margin-bottom-315 { margin-bottom: 315px; } .dybt-margin-bottom-320 { margin-bottom: 320px; } .dybt-margin-bottom-325 { margin-bottom: 325px; } .dybt-margin-bottom-330 { margin-bottom: 330px; } .dybt-margin-bottom-335 { margin-bottom: 335px; } .dybt-margin-bottom-340 { margin-bottom: 340px; } .dybt-margin-bottom-345 { margin-bottom: 345px; } .dybt-margin-bottom-350 { margin-bottom: 350px; } .dybt-margin-bottom-355 { margin-bottom: 355px; } .dybt-margin-bottom-360 { margin-bottom: 360px; } .dybt-margin-bottom-365 { margin-bottom: 365px; } .dybt-margin-bottom-370 { margin-bottom: 370px; } .dybt-margin-bottom-375 { margin-bottom: 375px; } .dybt-margin-bottom-380 { margin-bottom: 380px; } .dybt-margin-bottom-385 { margin-bottom: 385px; } .dybt-margin-bottom-390 { margin-bottom: 390px; } .dybt-margin-bottom-395 { margin-bottom: 395px; } .dybt-margin-bottom-400 { margin-bottom: 400px; } .dybt-margin-bottom-405 { margin-bottom: 405px; } .dybt-margin-bottom-410 { margin-bottom: 410px; } .dybt-margin-bottom-415 { margin-bottom: 415px; } .dybt-margin-bottom-420 { margin-bottom: 420px; } .dybt-margin-bottom-425 { margin-bottom: 425px; } .dybt-margin-bottom-430 { margin-bottom: 430px; } .dybt-margin-bottom-435 { margin-bottom: 435px; } .dybt-margin-bottom-440 { margin-bottom: 440px; } .dybt-margin-bottom-445 { margin-bottom: 445px; } .dybt-margin-bottom-450 { margin-bottom: 450px; } .dybt-margin-bottom-455 { margin-bottom: 455px; } .dybt-margin-bottom-460 { margin-bottom: 460px; } .dybt-margin-bottom-465 { margin-bottom: 465px; } .dybt-margin-bottom-470 { margin-bottom: 470px; } .dybt-margin-bottom-475 { margin-bottom: 475px; } .dybt-margin-bottom-480 { margin-bottom: 480px; } .dybt-margin-bottom-485 { margin-bottom: 485px; } .dybt-margin-bottom-490 { margin-bottom: 490px; } .dybt-margin-bottom-495 { margin-bottom: 495px; } .dybt-margin-bottom-500 { margin-bottom: 500px; } .dybt-margin-left-0 { margin-left: 0px; } .dybt-margin-left-5 { margin-left: 5px; } .dybt-margin-left-10 { margin-left: 10px; } .dybt-margin-left-15 { margin-left: 15px; } .dybt-margin-left-20 { margin-left: 20px; } .dybt-margin-left-25 { margin-left: 25px; } .dybt-margin-left-30 { margin-left: 30px; } .dybt-margin-left-35 { margin-left: 35px; } .dybt-margin-left-40 { margin-left: 40px; } .dybt-margin-left-45 { margin-left: 45px; } .dybt-margin-left-50 { margin-left: 50px; } .dybt-margin-left-55 { margin-left: 55px; } .dybt-margin-left-60 { margin-left: 60px; } .dybt-margin-left-65 { margin-left: 65px; } .dybt-margin-left-70 { margin-left: 70px; } .dybt-margin-left-75 { margin-left: 75px; } .dybt-margin-left-80 { margin-left: 80px; } .dybt-margin-left-85 { margin-left: 85px; } .dybt-margin-left-90 { margin-left: 90px; } .dybt-margin-left-95 { margin-left: 95px; } .dybt-margin-left-100 { margin-left: 100px; } .dybt-margin-left-105 { margin-left: 105px; } .dybt-margin-left-110 { margin-left: 110px; } .dybt-margin-left-115 { margin-left: 115px; } .dybt-margin-left-120 { margin-left: 120px; } .dybt-margin-left-125 { margin-left: 125px; } .dybt-margin-left-130 { margin-left: 130px; } .dybt-margin-left-135 { margin-left: 135px; } .dybt-margin-left-140 { margin-left: 140px; } .dybt-margin-left-145 { margin-left: 145px; } .dybt-margin-left-150 { margin-left: 150px; } .dybt-margin-left-155 { margin-left: 155px; } .dybt-margin-left-160 { margin-left: 160px; } .dybt-margin-left-165 { margin-left: 165px; } .dybt-margin-left-170 { margin-left: 170px; } .dybt-margin-left-175 { margin-left: 175px; } .dybt-margin-left-180 { margin-left: 180px; } .dybt-margin-left-185 { margin-left: 185px; } .dybt-margin-left-190 { margin-left: 190px; } .dybt-margin-left-195 { margin-left: 195px; } .dybt-margin-left-200 { margin-left: 200px; } .dybt-margin-left-205 { margin-left: 205px; } .dybt-margin-left-210 { margin-left: 210px; } .dybt-margin-left-215 { margin-left: 215px; } .dybt-margin-left-220 { margin-left: 220px; } .dybt-margin-left-225 { margin-left: 225px; } .dybt-margin-left-230 { margin-left: 230px; } .dybt-margin-left-235 { margin-left: 235px; } .dybt-margin-left-240 { margin-left: 240px; } .dybt-margin-left-245 { margin-left: 245px; } .dybt-margin-left-250 { margin-left: 250px; } .dybt-margin-left-255 { margin-left: 255px; } .dybt-margin-left-260 { margin-left: 260px; } .dybt-margin-left-265 { margin-left: 265px; } .dybt-margin-left-270 { margin-left: 270px; } .dybt-margin-left-275 { margin-left: 275px; } .dybt-margin-left-280 { margin-left: 280px; } .dybt-margin-left-285 { margin-left: 285px; } .dybt-margin-left-290 { margin-left: 290px; } .dybt-margin-left-295 { margin-left: 295px; } .dybt-margin-left-300 { margin-left: 300px; } .dybt-margin-left-305 { margin-left: 305px; } .dybt-margin-left-310 { margin-left: 310px; } .dybt-margin-left-315 { margin-left: 315px; } .dybt-margin-left-320 { margin-left: 320px; } .dybt-margin-left-325 { margin-left: 325px; } .dybt-margin-left-330 { margin-left: 330px; } .dybt-margin-left-335 { margin-left: 335px; } .dybt-margin-left-340 { margin-left: 340px; } .dybt-margin-left-345 { margin-left: 345px; } .dybt-margin-left-350 { margin-left: 350px; } .dybt-margin-left-355 { margin-left: 355px; } .dybt-margin-left-360 { margin-left: 360px; } .dybt-margin-left-365 { margin-left: 365px; } .dybt-margin-left-370 { margin-left: 370px; } .dybt-margin-left-375 { margin-left: 375px; } .dybt-margin-left-380 { margin-left: 380px; } .dybt-margin-left-385 { margin-left: 385px; } .dybt-margin-left-390 { margin-left: 390px; } .dybt-margin-left-395 { margin-left: 395px; } .dybt-margin-left-400 { margin-left: 400px; } .dybt-margin-left-405 { margin-left: 405px; } .dybt-margin-left-410 { margin-left: 410px; } .dybt-margin-left-415 { margin-left: 415px; } .dybt-margin-left-420 { margin-left: 420px; } .dybt-margin-left-425 { margin-left: 425px; } .dybt-margin-left-430 { margin-left: 430px; } .dybt-margin-left-435 { margin-left: 435px; } .dybt-margin-left-440 { margin-left: 440px; } .dybt-margin-left-445 { margin-left: 445px; } .dybt-margin-left-450 { margin-left: 450px; } .dybt-margin-left-455 { margin-left: 455px; } .dybt-margin-left-460 { margin-left: 460px; } .dybt-margin-left-465 { margin-left: 465px; } .dybt-margin-left-470 { margin-left: 470px; } .dybt-margin-left-475 { margin-left: 475px; } .dybt-margin-left-480 { margin-left: 480px; } .dybt-margin-left-485 { margin-left: 485px; } .dybt-margin-left-490 { margin-left: 490px; } .dybt-margin-left-495 { margin-left: 495px; } .dybt-margin-left-500 { margin-left: 500px; } .dybt-margin-right-0 { margin-right: 0px; } .dybt-margin-right-5 { margin-right: 5px; } .dybt-margin-right-10 { margin-right: 10px; } .dybt-margin-right-15 { margin-right: 15px; } .dybt-margin-right-20 { margin-right: 20px; } .dybt-margin-right-25 { margin-right: 25px; } .dybt-margin-right-30 { margin-right: 30px; } .dybt-margin-right-35 { margin-right: 35px; } .dybt-margin-right-40 { margin-right: 40px; } .dybt-margin-right-45 { margin-right: 45px; } .dybt-margin-right-50 { margin-right: 50px; } .dybt-margin-right-55 { margin-right: 55px; } .dybt-margin-right-60 { margin-right: 60px; } .dybt-margin-right-65 { margin-right: 65px; } .dybt-margin-right-70 { margin-right: 70px; } .dybt-margin-right-75 { margin-right: 75px; } .dybt-margin-right-80 { margin-right: 80px; } .dybt-margin-right-85 { margin-right: 85px; } .dybt-margin-right-90 { margin-right: 90px; } .dybt-margin-right-95 { margin-right: 95px; } .dybt-margin-right-100 { margin-right: 100px; } .dybt-margin-right-105 { margin-right: 105px; } .dybt-margin-right-110 { margin-right: 110px; } .dybt-margin-right-115 { margin-right: 115px; } .dybt-margin-right-120 { margin-right: 120px; } .dybt-margin-right-125 { margin-right: 125px; } .dybt-margin-right-130 { margin-right: 130px; } .dybt-margin-right-135 { margin-right: 135px; } .dybt-margin-right-140 { margin-right: 140px; } .dybt-margin-right-145 { margin-right: 145px; } .dybt-margin-right-150 { margin-right: 150px; } .dybt-margin-right-155 { margin-right: 155px; } .dybt-margin-right-160 { margin-right: 160px; } .dybt-margin-right-165 { margin-right: 165px; } .dybt-margin-right-170 { margin-right: 170px; } .dybt-margin-right-175 { margin-right: 175px; } .dybt-margin-right-180 { margin-right: 180px; } .dybt-margin-right-185 { margin-right: 185px; } .dybt-margin-right-190 { margin-right: 190px; } .dybt-margin-right-195 { margin-right: 195px; } .dybt-margin-right-200 { margin-right: 200px; } .dybt-margin-right-205 { margin-right: 205px; } .dybt-margin-right-210 { margin-right: 210px; } .dybt-margin-right-215 { margin-right: 215px; } .dybt-margin-right-220 { margin-right: 220px; } .dybt-margin-right-225 { margin-right: 225px; } .dybt-margin-right-230 { margin-right: 230px; } .dybt-margin-right-235 { margin-right: 235px; } .dybt-margin-right-240 { margin-right: 240px; } .dybt-margin-right-245 { margin-right: 245px; } .dybt-margin-right-250 { margin-right: 250px; } .dybt-margin-right-255 { margin-right: 255px; } .dybt-margin-right-260 { margin-right: 260px; } .dybt-margin-right-265 { margin-right: 265px; } .dybt-margin-right-270 { margin-right: 270px; } .dybt-margin-right-275 { margin-right: 275px; } .dybt-margin-right-280 { margin-right: 280px; } .dybt-margin-right-285 { margin-right: 285px; } .dybt-margin-right-290 { margin-right: 290px; } .dybt-margin-right-295 { margin-right: 295px; } .dybt-margin-right-300 { margin-right: 300px; } .dybt-margin-right-305 { margin-right: 305px; } .dybt-margin-right-310 { margin-right: 310px; } .dybt-margin-right-315 { margin-right: 315px; } .dybt-margin-right-320 { margin-right: 320px; } .dybt-margin-right-325 { margin-right: 325px; } .dybt-margin-right-330 { margin-right: 330px; } .dybt-margin-right-335 { margin-right: 335px; } .dybt-margin-right-340 { margin-right: 340px; } .dybt-margin-right-345 { margin-right: 345px; } .dybt-margin-right-350 { margin-right: 350px; } .dybt-margin-right-355 { margin-right: 355px; } .dybt-margin-right-360 { margin-right: 360px; } .dybt-margin-right-365 { margin-right: 365px; } .dybt-margin-right-370 { margin-right: 370px; } .dybt-margin-right-375 { margin-right: 375px; } .dybt-margin-right-380 { margin-right: 380px; } .dybt-margin-right-385 { margin-right: 385px; } .dybt-margin-right-390 { margin-right: 390px; } .dybt-margin-right-395 { margin-right: 395px; } .dybt-margin-right-400 { margin-right: 400px; } .dybt-margin-right-405 { margin-right: 405px; } .dybt-margin-right-410 { margin-right: 410px; } .dybt-margin-right-415 { margin-right: 415px; } .dybt-margin-right-420 { margin-right: 420px; } .dybt-margin-right-425 { margin-right: 425px; } .dybt-margin-right-430 { margin-right: 430px; } .dybt-margin-right-435 { margin-right: 435px; } .dybt-margin-right-440 { margin-right: 440px; } .dybt-margin-right-445 { margin-right: 445px; } .dybt-margin-right-450 { margin-right: 450px; } .dybt-margin-right-455 { margin-right: 455px; } .dybt-margin-right-460 { margin-right: 460px; } .dybt-margin-right-465 { margin-right: 465px; } .dybt-margin-right-470 { margin-right: 470px; } .dybt-margin-right-475 { margin-right: 475px; } .dybt-margin-right-480 { margin-right: 480px; } .dybt-margin-right-485 { margin-right: 485px; } .dybt-margin-right-490 { margin-right: 490px; } .dybt-margin-right-495 { margin-right: 495px; } .dybt-margin-right-500 { margin-right: 500px; } .dybt-padding-top-0 { padding-top: 0px; } .dybt-padding-top-5 { padding-top: 5px; } .dybt-padding-top-10 { padding-top: 10px; } .dybt-padding-top-15 { padding-top: 15px; } .dybt-padding-top-20 { padding-top: 20px; } .dybt-padding-top-25 { padding-top: 25px; } .dybt-padding-top-30 { padding-top: 30px; } .dybt-padding-top-35 { padding-top: 35px; } .dybt-padding-top-40 { padding-top: 40px; } .dybt-padding-top-45 { padding-top: 45px; } .dybt-padding-top-50 { padding-top: 50px; } .dybt-padding-top-55 { padding-top: 55px; } .dybt-padding-top-60 { padding-top: 60px; } .dybt-padding-top-65 { padding-top: 65px; } .dybt-padding-top-70 { padding-top: 70px; } .dybt-padding-top-75 { padding-top: 75px; } .dybt-padding-top-80 { padding-top: 80px; } .dybt-padding-top-85 { padding-top: 85px; } .dybt-padding-top-90 { padding-top: 90px; } .dybt-padding-top-95 { padding-top: 95px; } .dybt-padding-top-100 { padding-top: 100px; } .dybt-padding-top-105 { padding-top: 105px; } .dybt-padding-top-110 { padding-top: 110px; } .dybt-padding-top-115 { padding-top: 115px; } .dybt-padding-top-120 { padding-top: 120px; } .dybt-padding-top-125 { padding-top: 125px; } .dybt-padding-top-130 { padding-top: 130px; } .dybt-padding-top-135 { padding-top: 135px; } .dybt-padding-top-140 { padding-top: 140px; } .dybt-padding-top-145 { padding-top: 145px; } .dybt-padding-top-150 { padding-top: 150px; } .dybt-padding-top-155 { padding-top: 155px; } .dybt-padding-top-160 { padding-top: 160px; } .dybt-padding-top-165 { padding-top: 165px; } .dybt-padding-top-170 { padding-top: 170px; } .dybt-padding-top-175 { padding-top: 175px; } .dybt-padding-top-180 { padding-top: 180px; } .dybt-padding-top-185 { padding-top: 185px; } .dybt-padding-top-190 { padding-top: 190px; } .dybt-padding-top-195 { padding-top: 195px; } .dybt-padding-top-200 { padding-top: 200px; } .dybt-padding-top-205 { padding-top: 205px; } .dybt-padding-top-210 { padding-top: 210px; } .dybt-padding-top-215 { padding-top: 215px; } .dybt-padding-top-220 { padding-top: 220px; } .dybt-padding-top-225 { padding-top: 225px; } .dybt-padding-top-230 { padding-top: 230px; } .dybt-padding-top-235 { padding-top: 235px; } .dybt-padding-top-240 { padding-top: 240px; } .dybt-padding-top-245 { padding-top: 245px; } .dybt-padding-top-250 { padding-top: 250px; } .dybt-padding-top-255 { padding-top: 255px; } .dybt-padding-top-260 { padding-top: 260px; } .dybt-padding-top-265 { padding-top: 265px; } .dybt-padding-top-270 { padding-top: 270px; } .dybt-padding-top-275 { padding-top: 275px; } .dybt-padding-top-280 { padding-top: 280px; } .dybt-padding-top-285 { padding-top: 285px; } .dybt-padding-top-290 { padding-top: 290px; } .dybt-padding-top-295 { padding-top: 295px; } .dybt-padding-top-300 { padding-top: 300px; } .dybt-padding-top-305 { padding-top: 305px; } .dybt-padding-top-310 { padding-top: 310px; } .dybt-padding-top-315 { padding-top: 315px; } .dybt-padding-top-320 { padding-top: 320px; } .dybt-padding-top-325 { padding-top: 325px; } .dybt-padding-top-330 { padding-top: 330px; } .dybt-padding-top-335 { padding-top: 335px; } .dybt-padding-top-340 { padding-top: 340px; } .dybt-padding-top-345 { padding-top: 345px; } .dybt-padding-top-350 { padding-top: 350px; } .dybt-padding-top-355 { padding-top: 355px; } .dybt-padding-top-360 { padding-top: 360px; } .dybt-padding-top-365 { padding-top: 365px; } .dybt-padding-top-370 { padding-top: 370px; } .dybt-padding-top-375 { padding-top: 375px; } .dybt-padding-top-380 { padding-top: 380px; } .dybt-padding-top-385 { padding-top: 385px; } .dybt-padding-top-390 { padding-top: 390px; } .dybt-padding-top-395 { padding-top: 395px; } .dybt-padding-top-400 { padding-top: 400px; } .dybt-padding-top-405 { padding-top: 405px; } .dybt-padding-top-410 { padding-top: 410px; } .dybt-padding-top-415 { padding-top: 415px; } .dybt-padding-top-420 { padding-top: 420px; } .dybt-padding-top-425 { padding-top: 425px; } .dybt-padding-top-430 { padding-top: 430px; } .dybt-padding-top-435 { padding-top: 435px; } .dybt-padding-top-440 { padding-top: 440px; } .dybt-padding-top-445 { padding-top: 445px; } .dybt-padding-top-450 { padding-top: 450px; } .dybt-padding-top-455 { padding-top: 455px; } .dybt-padding-top-460 { padding-top: 460px; } .dybt-padding-top-465 { padding-top: 465px; } .dybt-padding-top-470 { padding-top: 470px; } .dybt-padding-top-475 { padding-top: 475px; } .dybt-padding-top-480 { padding-top: 480px; } .dybt-padding-top-485 { padding-top: 485px; } .dybt-padding-top-490 { padding-top: 490px; } .dybt-padding-top-495 { padding-top: 495px; } .dybt-padding-top-500 { padding-top: 500px; } .dybt-padding-bottom-0 { padding-bottom: 0px; } .dybt-padding-bottom-5 { padding-bottom: 5px; } .dybt-padding-bottom-10 { padding-bottom: 10px; } .dybt-padding-bottom-15 { padding-bottom: 15px; } .dybt-padding-bottom-20 { padding-bottom: 20px; } .dybt-padding-bottom-25 { padding-bottom: 25px; } .dybt-padding-bottom-30 { padding-bottom: 30px; } .dybt-padding-bottom-35 { padding-bottom: 35px; } .dybt-padding-bottom-40 { padding-bottom: 40px; } .dybt-padding-bottom-45 { padding-bottom: 45px; } .dybt-padding-bottom-50 { padding-bottom: 50px; } .dybt-padding-bottom-55 { padding-bottom: 55px; } .dybt-padding-bottom-60 { padding-bottom: 60px; } .dybt-padding-bottom-65 { padding-bottom: 65px; } .dybt-padding-bottom-70 { padding-bottom: 70px; } .dybt-padding-bottom-75 { padding-bottom: 75px; } .dybt-padding-bottom-80 { padding-bottom: 80px; } .dybt-padding-bottom-85 { padding-bottom: 85px; } .dybt-padding-bottom-90 { padding-bottom: 90px; } .dybt-padding-bottom-95 { padding-bottom: 95px; } .dybt-padding-bottom-100 { padding-bottom: 100px; } .dybt-padding-bottom-105 { padding-bottom: 105px; } .dybt-padding-bottom-110 { padding-bottom: 110px; } .dybt-padding-bottom-115 { padding-bottom: 115px; } .dybt-padding-bottom-120 { padding-bottom: 120px; } .dybt-padding-bottom-125 { padding-bottom: 125px; } .dybt-padding-bottom-130 { padding-bottom: 130px; } .dybt-padding-bottom-135 { padding-bottom: 135px; } .dybt-padding-bottom-140 { padding-bottom: 140px; } .dybt-padding-bottom-145 { padding-bottom: 145px; } .dybt-padding-bottom-150 { padding-bottom: 150px; } .dybt-padding-bottom-155 { padding-bottom: 155px; } .dybt-padding-bottom-160 { padding-bottom: 160px; } .dybt-padding-bottom-165 { padding-bottom: 165px; } .dybt-padding-bottom-170 { padding-bottom: 170px; } .dybt-padding-bottom-175 { padding-bottom: 175px; } .dybt-padding-bottom-180 { padding-bottom: 180px; } .dybt-padding-bottom-185 { padding-bottom: 185px; } .dybt-padding-bottom-190 { padding-bottom: 190px; } .dybt-padding-bottom-195 { padding-bottom: 195px; } .dybt-padding-bottom-200 { padding-bottom: 200px; } .dybt-padding-bottom-205 { padding-bottom: 205px; } .dybt-padding-bottom-210 { padding-bottom: 210px; } .dybt-padding-bottom-215 { padding-bottom: 215px; } .dybt-padding-bottom-220 { padding-bottom: 220px; } .dybt-padding-bottom-225 { padding-bottom: 225px; } .dybt-padding-bottom-230 { padding-bottom: 230px; } .dybt-padding-bottom-235 { padding-bottom: 235px; } .dybt-padding-bottom-240 { padding-bottom: 240px; } .dybt-padding-bottom-245 { padding-bottom: 245px; } .dybt-padding-bottom-250 { padding-bottom: 250px; } .dybt-padding-bottom-255 { padding-bottom: 255px; } .dybt-padding-bottom-260 { padding-bottom: 260px; } .dybt-padding-bottom-265 { padding-bottom: 265px; } .dybt-padding-bottom-270 { padding-bottom: 270px; } .dybt-padding-bottom-275 { padding-bottom: 275px; } .dybt-padding-bottom-280 { padding-bottom: 280px; } .dybt-padding-bottom-285 { padding-bottom: 285px; } .dybt-padding-bottom-290 { padding-bottom: 290px; } .dybt-padding-bottom-295 { padding-bottom: 295px; } .dybt-padding-bottom-300 { padding-bottom: 300px; } .dybt-padding-bottom-305 { padding-bottom: 305px; } .dybt-padding-bottom-310 { padding-bottom: 310px; } .dybt-padding-bottom-315 { padding-bottom: 315px; } .dybt-padding-bottom-320 { padding-bottom: 320px; } .dybt-padding-bottom-325 { padding-bottom: 325px; } .dybt-padding-bottom-330 { padding-bottom: 330px; } .dybt-padding-bottom-335 { padding-bottom: 335px; } .dybt-padding-bottom-340 { padding-bottom: 340px; } .dybt-padding-bottom-345 { padding-bottom: 345px; } .dybt-padding-bottom-350 { padding-bottom: 350px; } .dybt-padding-bottom-355 { padding-bottom: 355px; } .dybt-padding-bottom-360 { padding-bottom: 360px; } .dybt-padding-bottom-365 { padding-bottom: 365px; } .dybt-padding-bottom-370 { padding-bottom: 370px; } .dybt-padding-bottom-375 { padding-bottom: 375px; } .dybt-padding-bottom-380 { padding-bottom: 380px; } .dybt-padding-bottom-385 { padding-bottom: 385px; } .dybt-padding-bottom-390 { padding-bottom: 390px; } .dybt-padding-bottom-395 { padding-bottom: 395px; } .dybt-padding-bottom-400 { padding-bottom: 400px; } .dybt-padding-bottom-405 { padding-bottom: 405px; } .dybt-padding-bottom-410 { padding-bottom: 410px; } .dybt-padding-bottom-415 { padding-bottom: 415px; } .dybt-padding-bottom-420 { padding-bottom: 420px; } .dybt-padding-bottom-425 { padding-bottom: 425px; } .dybt-padding-bottom-430 { padding-bottom: 430px; } .dybt-padding-bottom-435 { padding-bottom: 435px; } .dybt-padding-bottom-440 { padding-bottom: 440px; } .dybt-padding-bottom-445 { padding-bottom: 445px; } .dybt-padding-bottom-450 { padding-bottom: 450px; } .dybt-padding-bottom-455 { padding-bottom: 455px; } .dybt-padding-bottom-460 { padding-bottom: 460px; } .dybt-padding-bottom-465 { padding-bottom: 465px; } .dybt-padding-bottom-470 { padding-bottom: 470px; } .dybt-padding-bottom-475 { padding-bottom: 475px; } .dybt-padding-bottom-480 { padding-bottom: 480px; } .dybt-padding-bottom-485 { padding-bottom: 485px; } .dybt-padding-bottom-490 { padding-bottom: 490px; } .dybt-padding-bottom-495 { padding-bottom: 495px; } .dybt-padding-bottom-500 { padding-bottom: 500px; } .dybt-padding-left-0 { padding-left: 0px; } .dybt-padding-left-5 { padding-left: 5px; } .dybt-padding-left-10 { padding-left: 10px; } .dybt-padding-left-15 { padding-left: 15px; } .dybt-padding-left-20 { padding-left: 20px; } .dybt-padding-left-25 { padding-left: 25px; } .dybt-padding-left-30 { padding-left: 30px; } .dybt-padding-left-35 { padding-left: 35px; } .dybt-padding-left-40 { padding-left: 40px; } .dybt-padding-left-45 { padding-left: 45px; } .dybt-padding-left-50 { padding-left: 50px; } .dybt-padding-left-55 { padding-left: 55px; } .dybt-padding-left-60 { padding-left: 60px; } .dybt-padding-left-65 { padding-left: 65px; } .dybt-padding-left-70 { padding-left: 70px; } .dybt-padding-left-75 { padding-left: 75px; } .dybt-padding-left-80 { padding-left: 80px; } .dybt-padding-left-85 { padding-left: 85px; } .dybt-padding-left-90 { padding-left: 90px; } .dybt-padding-left-95 { padding-left: 95px; } .dybt-padding-left-100 { padding-left: 100px; } .dybt-padding-left-105 { padding-left: 105px; } .dybt-padding-left-110 { padding-left: 110px; } .dybt-padding-left-115 { padding-left: 115px; } .dybt-padding-left-120 { padding-left: 120px; } .dybt-padding-left-125 { padding-left: 125px; } .dybt-padding-left-130 { padding-left: 130px; } .dybt-padding-left-135 { padding-left: 135px; } .dybt-padding-left-140 { padding-left: 140px; } .dybt-padding-left-145 { padding-left: 145px; } .dybt-padding-left-150 { padding-left: 150px; } .dybt-padding-left-155 { padding-left: 155px; } .dybt-padding-left-160 { padding-left: 160px; } .dybt-padding-left-165 { padding-left: 165px; } .dybt-padding-left-170 { padding-left: 170px; } .dybt-padding-left-175 { padding-left: 175px; } .dybt-padding-left-180 { padding-left: 180px; } .dybt-padding-left-185 { padding-left: 185px; } .dybt-padding-left-190 { padding-left: 190px; } .dybt-padding-left-195 { padding-left: 195px; } .dybt-padding-left-200 { padding-left: 200px; } .dybt-padding-left-205 { padding-left: 205px; } .dybt-padding-left-210 { padding-left: 210px; } .dybt-padding-left-215 { padding-left: 215px; } .dybt-padding-left-220 { padding-left: 220px; } .dybt-padding-left-225 { padding-left: 225px; } .dybt-padding-left-230 { padding-left: 230px; } .dybt-padding-left-235 { padding-left: 235px; } .dybt-padding-left-240 { padding-left: 240px; } .dybt-padding-left-245 { padding-left: 245px; } .dybt-padding-left-250 { padding-left: 250px; } .dybt-padding-left-255 { padding-left: 255px; } .dybt-padding-left-260 { padding-left: 260px; } .dybt-padding-left-265 { padding-left: 265px; } .dybt-padding-left-270 { padding-left: 270px; } .dybt-padding-left-275 { padding-left: 275px; } .dybt-padding-left-280 { padding-left: 280px; } .dybt-padding-left-285 { padding-left: 285px; } .dybt-padding-left-290 { padding-left: 290px; } .dybt-padding-left-295 { padding-left: 295px; } .dybt-padding-left-300 { padding-left: 300px; } .dybt-padding-left-305 { padding-left: 305px; } .dybt-padding-left-310 { padding-left: 310px; } .dybt-padding-left-315 { padding-left: 315px; } .dybt-padding-left-320 { padding-left: 320px; } .dybt-padding-left-325 { padding-left: 325px; } .dybt-padding-left-330 { padding-left: 330px; } .dybt-padding-left-335 { padding-left: 335px; } .dybt-padding-left-340 { padding-left: 340px; } .dybt-padding-left-345 { padding-left: 345px; } .dybt-padding-left-350 { padding-left: 350px; } .dybt-padding-left-355 { padding-left: 355px; } .dybt-padding-left-360 { padding-left: 360px; } .dybt-padding-left-365 { padding-left: 365px; } .dybt-padding-left-370 { padding-left: 370px; } .dybt-padding-left-375 { padding-left: 375px; } .dybt-padding-left-380 { padding-left: 380px; } .dybt-padding-left-385 { padding-left: 385px; } .dybt-padding-left-390 { padding-left: 390px; } .dybt-padding-left-395 { padding-left: 395px; } .dybt-padding-left-400 { padding-left: 400px; } .dybt-padding-left-405 { padding-left: 405px; } .dybt-padding-left-410 { padding-left: 410px; } .dybt-padding-left-415 { padding-left: 415px; } .dybt-padding-left-420 { padding-left: 420px; } .dybt-padding-left-425 { padding-left: 425px; } .dybt-padding-left-430 { padding-left: 430px; } .dybt-padding-left-435 { padding-left: 435px; } .dybt-padding-left-440 { padding-left: 440px; } .dybt-padding-left-445 { padding-left: 445px; } .dybt-padding-left-450 { padding-left: 450px; } .dybt-padding-left-455 { padding-left: 455px; } .dybt-padding-left-460 { padding-left: 460px; } .dybt-padding-left-465 { padding-left: 465px; } .dybt-padding-left-470 { padding-left: 470px; } .dybt-padding-left-475 { padding-left: 475px; } .dybt-padding-left-480 { padding-left: 480px; } .dybt-padding-left-485 { padding-left: 485px; } .dybt-padding-left-490 { padding-left: 490px; } .dybt-padding-left-495 { padding-left: 495px; } .dybt-padding-left-500 { padding-left: 500px; } .dybt-padding-right-0 { padding-right: 0px; } .dybt-padding-right-5 { padding-right: 5px; } .dybt-padding-right-10 { padding-right: 10px; } .dybt-padding-right-15 { padding-right: 15px; } .dybt-padding-right-20 { padding-right: 20px; } .dybt-padding-right-25 { padding-right: 25px; } .dybt-padding-right-30 { padding-right: 30px; } .dybt-padding-right-35 { padding-right: 35px; } .dybt-padding-right-40 { padding-right: 40px; } .dybt-padding-right-45 { padding-right: 45px; } .dybt-padding-right-50 { padding-right: 50px; } .dybt-padding-right-55 { padding-right: 55px; } .dybt-padding-right-60 { padding-right: 60px; } .dybt-padding-right-65 { padding-right: 65px; } .dybt-padding-right-70 { padding-right: 70px; } .dybt-padding-right-75 { padding-right: 75px; } .dybt-padding-right-80 { padding-right: 80px; } .dybt-padding-right-85 { padding-right: 85px; } .dybt-padding-right-90 { padding-right: 90px; } .dybt-padding-right-95 { padding-right: 95px; } .dybt-padding-right-100 { padding-right: 100px; } .dybt-padding-right-105 { padding-right: 105px; } .dybt-padding-right-110 { padding-right: 110px; } .dybt-padding-right-115 { padding-right: 115px; } .dybt-padding-right-120 { padding-right: 120px; } .dybt-padding-right-125 { padding-right: 125px; } .dybt-padding-right-130 { padding-right: 130px; } .dybt-padding-right-135 { padding-right: 135px; } .dybt-padding-right-140 { padding-right: 140px; } .dybt-padding-right-145 { padding-right: 145px; } .dybt-padding-right-150 { padding-right: 150px; } .dybt-padding-right-155 { padding-right: 155px; } .dybt-padding-right-160 { padding-right: 160px; } .dybt-padding-right-165 { padding-right: 165px; } .dybt-padding-right-170 { padding-right: 170px; } .dybt-padding-right-175 { padding-right: 175px; } .dybt-padding-right-180 { padding-right: 180px; } .dybt-padding-right-185 { padding-right: 185px; } .dybt-padding-right-190 { padding-right: 190px; } .dybt-padding-right-195 { padding-right: 195px; } .dybt-padding-right-200 { padding-right: 200px; } .dybt-padding-right-205 { padding-right: 205px; } .dybt-padding-right-210 { padding-right: 210px; } .dybt-padding-right-215 { padding-right: 215px; } .dybt-padding-right-220 { padding-right: 220px; } .dybt-padding-right-225 { padding-right: 225px; } .dybt-padding-right-230 { padding-right: 230px; } .dybt-padding-right-235 { padding-right: 235px; } .dybt-padding-right-240 { padding-right: 240px; } .dybt-padding-right-245 { padding-right: 245px; } .dybt-padding-right-250 { padding-right: 250px; } .dybt-padding-right-255 { padding-right: 255px; } .dybt-padding-right-260 { padding-right: 260px; } .dybt-padding-right-265 { padding-right: 265px; } .dybt-padding-right-270 { padding-right: 270px; } .dybt-padding-right-275 { padding-right: 275px; } .dybt-padding-right-280 { padding-right: 280px; } .dybt-padding-right-285 { padding-right: 285px; } .dybt-padding-right-290 { padding-right: 290px; } .dybt-padding-right-295 { padding-right: 295px; } .dybt-padding-right-300 { padding-right: 300px; } .dybt-padding-right-305 { padding-right: 305px; } .dybt-padding-right-310 { padding-right: 310px; } .dybt-padding-right-315 { padding-right: 315px; } .dybt-padding-right-320 { padding-right: 320px; } .dybt-padding-right-325 { padding-right: 325px; } .dybt-padding-right-330 { padding-right: 330px; } .dybt-padding-right-335 { padding-right: 335px; } .dybt-padding-right-340 { padding-right: 340px; } .dybt-padding-right-345 { padding-right: 345px; } .dybt-padding-right-350 { padding-right: 350px; } .dybt-padding-right-355 { padding-right: 355px; } .dybt-padding-right-360 { padding-right: 360px; } .dybt-padding-right-365 { padding-right: 365px; } .dybt-padding-right-370 { padding-right: 370px; } .dybt-padding-right-375 { padding-right: 375px; } .dybt-padding-right-380 { padding-right: 380px; } .dybt-padding-right-385 { padding-right: 385px; } .dybt-padding-right-390 { padding-right: 390px; } .dybt-padding-right-395 { padding-right: 395px; } .dybt-padding-right-400 { padding-right: 400px; } .dybt-padding-right-405 { padding-right: 405px; } .dybt-padding-right-410 { padding-right: 410px; } .dybt-padding-right-415 { padding-right: 415px; } .dybt-padding-right-420 { padding-right: 420px; } .dybt-padding-right-425 { padding-right: 425px; } .dybt-padding-right-430 { padding-right: 430px; } .dybt-padding-right-435 { padding-right: 435px; } .dybt-padding-right-440 { padding-right: 440px; } .dybt-padding-right-445 { padding-right: 445px; } .dybt-padding-right-450 { padding-right: 450px; } .dybt-padding-right-455 { padding-right: 455px; } .dybt-padding-right-460 { padding-right: 460px; } .dybt-padding-right-465 { padding-right: 465px; } .dybt-padding-right-470 { padding-right: 470px; } .dybt-padding-right-475 { padding-right: 475px; } .dybt-padding-right-480 { padding-right: 480px; } .dybt-padding-right-485 { padding-right: 485px; } .dybt-padding-right-490 { padding-right: 490px; } .dybt-padding-right-495 { padding-right: 495px; } .dybt-padding-right-500 { padding-right: 500px; } /*=hr ------------*/ .dybt-hr-sm { margin-top: 20px; margin-bottom: 20px; border: 1px solid #666; width: 100px; } .dybt-hr-md { margin-top: 20px; margin-bottom: 20px; border: 1px solid #666; width: 200px; } .dybt-hr-lg { margin-top: 20px; margin-bottom: 20px; border: 1px solid #666; width: 300px; } /*=font-weight -----------------*/ .dybt-font-weight-lighter { font-weight: lighter; } .dybt-font-weight-bold { font-weight: bold; } .dybt-font-weight-bolder { font-weight: bolder; } /*=bg-color --------------*/ .dybt-color-aqua { background-color: aqua; } .dybt-color-aquamarine { background-color: aquamarine; } .dybt-color-azure { background-color: azure; } .dybt-color-beige { background-color: beige; } .dybt-color-black { background-color: black; } .dybt-color-coral { background-color: coral; } .dybt-color-cornflowerblue { background-color: cornflowerblue; } .dybt-color-floralwhite { background-color: floralwhite; } .dybt-color-ghostwhite { background-color: ghostwhite; } .dybt-color-gold { background-color: gold; } .dybt-color-honeydew { background-color: honeydew; } .dybt-color-hotpink { background-color: hotpink; } .dybt-color-lightgray { background-color: lightgray; } .dybt-color-lightsalmon { background-color: lightsalmon; } .dybt-color-lightyellow { background-color: lightyellow; } .dybt-color-white { background-color: white; } /*=bg-color --------------*/ .dybt-bgcolor-aqua { background-color: aqua; } .dybt-bgcolor-aquamarine { background-color: aquamarine; } .dybt-bgcolor-azure { background-color: azure; } .dybt-bgcolor-beige { background-color: beige; } .dybt-bgcolor-black { background-color: black; } .dybt-bgcolor-coral { background-color: coral; } .dybt-bgcolor-cornflowerblue { background-color: cornflowerblue; } .dybt-bgcolor-floralwhite { background-color: floralwhite; } .dybt-bgcolor-ghostwhite { background-color: ghostwhite; } .dybt-bgcolor-gold { background-color: gold; } .dybt-bgcolor-honeydew { background-color: honeydew; } .dybt-bgcolor-hotpink { background-color: hotpink; } .dybt-bgcolor-lightgray { background-color: lightgray; } .dybt-bgcolor-lightsalmon { background-color: lightsalmon; } .dybt-bgcolor-lightyellow { background-color: lightyellow; } .dybt-bgcolor-white { background-color: white; } /*=skin --------------*/ .dybt-skin-aqua { background-color: aqua; } .dybt-skin-aquamarine { background-color: aquamarine; } .dybt-skin-azure { background-color: azure; } .dybt-skin-beige { background-color: beige; } .dybt-skin-black { background-color: black; } .dybt-skin-coral { background-color: coral; } .dybt-skin-cornflowerblue { background-color: cornflowerblue; } .dybt-skin-floralwhite { background-color: floralwhite; } .dybt-skin-ghostwhite { background-color: ghostwhite; } .dybt-skin-gold { background-color: gold; } .dybt-skin-honeydew { background-color: honeydew; } .dybt-skin-hotpink { background-color: hotpink; } .dybt-skin-lightgray { background-color: lightgray; } .dybt-skin-lightsalmon { background-color: lightsalmon; } .dybt-skin-lightyellow { background-color: lightyellow; } .dybt-skin-white { background-color: white; } /*=blog --------------*/ .dybt-blogpost-container { display: block; margin-top: 10px; margin-bottom: 30px; } .dybt-blogpost-container .dybt-blogpost-coverimage { display: block; max-width: 100%; height: auto; max-height: 480px; } .dybt-blogpost-container .dybt-blogpost-title { font-size: 32px; } .dybt-blogpost-container .dybt-blogpost-title a { text-decoration: none; } .dybt-blogpost-container .dybt-blogpost-createdat { font-style: italic; font-size: 16px; } .dybt-blogpost-container .dybt-blogpost-excerpt { font-size: 20px; font-weight: 300; } .dybt-blogpost-container .dybt-blogpost-text-content { font-size: 20px; } /*# sourceMappingURL=dy-bootstrap-template.css.map */
v4/user-agent-detail/87/61/8761da88-f077-4dee-b78e-5dc491e35119.html
ThaDafinser/UserAgentParserComparison
<html> <head> <title>User agent detail - Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css"> <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> </head> <body> <div class="container"> <div class="section"> <h1 class="header center orange-text">User agent detail</h1> <div class="row center"> <h5 class="header light"> Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 </h5> </div> </div> <div class="section"> <table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th colspan="2"></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Parse time</th><th>Actions</th></tr><tr><th colspan="14" class="green lighten-3">Source result (test suite)</th></tr><tr><td>ua-parser/uap-core<br /><small>vendor/thadafinser/uap-core/tests/test_device.yaml</small></td><td> </td><td> </td><td> </td><td style="border-left: 1px solid #555">Samsung</td><td>GT-I9</td><td></td><td></td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-test">Detail</a> <!-- Modal Structure --> <div id="modal-test" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>Testsuite result detail</h4> <p><pre><code class="php">Array ( [user_agent_string] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 [family] => Samsung GT-I9 [brand] => Samsung [model] => GT-I9 ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><th colspan="14" class="green lighten-3">Providers</th></tr><tr><td>BrowscapPhp<br /><small>6012</small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>NeutrinoApiCom<br /><small></small></td><td>Android Browser </td><td><i class="material-icons">close</i></td><td>Android 4.2.2</td><td style="border-left: 1px solid #555">Samsung</td><td>GT-I9</td><td>mobile-browser</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.28597</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc">Detail</a> <!-- Modal Structure --> <div id="modal-9b0fa449-ec1b-40c8-8b1c-9486eb3b9cbc" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>NeutrinoApiCom result detail</h4> <p><pre><code class="php">stdClass Object ( [mobile_screen_height] => 0 [is_mobile] => 1 [type] => mobile-browser [mobile_brand] => Samsung [mobile_model] => GT-I9 [version] => [is_android] => 1 [browser_name] => Android Browser [operating_system_family] => Android [operating_system_version] => 4.2.2 [is_ios] => [producer] => Samsung [operating_system] => Android 4.2.2 [mobile_screen_width] => 0 [mobile_browser] => ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.2</small></td><td>Android Browser </td><td>WebKit </td><td>Android 4.2</td><td style="border-left: 1px solid #555">Samsung</td><td>GT-I9</td><td>smartphone</td><td>yes</td><td></td><td style="border-left: 1px solid #555"></td><td></td><td></td><td>0.005</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-21638055-738d-46ba-a1b1-f5114bc26475">Detail</a> <!-- Modal Structure --> <div id="modal-21638055-738d-46ba-a1b1-f5114bc26475" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>PiwikDeviceDetector result detail</h4> <p><pre><code class="php">Array ( [client] => Array ( [type] => browser [name] => Android Browser [short_name] => AN [version] => [engine] => WebKit ) [operatingSystem] => Array ( [name] => Android [short_name] => AND [version] => 4.2 [platform] => ) [device] => Array ( [brand] => SA [brandName] => Samsung [model] => GT-I9 [device] => 1 [deviceName] => smartphone ) [bot] => [extra] => Array ( [isBot] => [isBrowser] => 1 [isFeedReader] => [isMobileApp] => [isPIM] => [isLibrary] => [isMediaPlayer] => [isCamera] => [isCarBrowser] => [isConsole] => [isFeaturePhone] => [isPhablet] => [isPortableMediaPlayer] => [isSmartDisplay] => [isSmartphone] => 1 [isTablet] => [isTV] => [isDesktop] => [isMobile] => 1 [isTouchEnabled] => ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>SinergiBrowserDetector<br /><small>6.0.0</small></td><td>Navigator </td><td><i class="material-icons">close</i></td><td>Android 4.2.2</td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td></td><td><i class="material-icons">close</i></td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c">Detail</a> <!-- Modal Structure --> <div id="modal-5415e7f2-ef7b-434c-abe0-b71ba9f6707c" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>SinergiBrowserDetector result detail</h4> <p><pre><code class="php">Array ( [browser] => Sinergi\BrowserDetector\Browser Object ( [userAgent:Sinergi\BrowserDetector\Browser:private] => Sinergi\BrowserDetector\UserAgent Object ( [userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 ) [name:Sinergi\BrowserDetector\Browser:private] => Navigator [version:Sinergi\BrowserDetector\Browser:private] => unknown [isRobot:Sinergi\BrowserDetector\Browser:private] => [isChromeFrame:Sinergi\BrowserDetector\Browser:private] => ) [operatingSystem] => Sinergi\BrowserDetector\Os Object ( [name:Sinergi\BrowserDetector\Os:private] => Android [version:Sinergi\BrowserDetector\Os:private] => 4.2.2 [isMobile:Sinergi\BrowserDetector\Os:private] => 1 [userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object ( [userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 ) ) [device] => Sinergi\BrowserDetector\Device Object ( [name:Sinergi\BrowserDetector\Device:private] => unknown [userAgent:Sinergi\BrowserDetector\Device:private] => Sinergi\BrowserDetector\UserAgent Object ( [userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 ) ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>UAParser<br /><small>v3.4.5</small></td><td>Android 4.2.2</td><td><i class="material-icons">close</i></td><td>Android 4.2.2</td><td style="border-left: 1px solid #555">Samsung</td><td>GT-I9</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.006</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b">Detail</a> <!-- Modal Structure --> <div id="modal-346c1a98-5fd3-454f-b6c8-350f2f505d8b" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>UAParser result detail</h4> <p><pre><code class="php">UAParser\Result\Client Object ( [ua] => UAParser\Result\UserAgent Object ( [major] => 4 [minor] => 2 [patch] => 2 [family] => Android ) [os] => UAParser\Result\OperatingSystem Object ( [major] => 4 [minor] => 2 [patch] => 2 [patchMinor] => [family] => Android ) [device] => UAParser\Result\Device Object ( [brand] => Samsung [model] => GT-I9 [family] => Samsung GT-I9 ) [originalUserAgent] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>UserAgentStringCom<br /><small></small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>WhatIsMyBrowserCom<br /><small></small></td><td>Stock Android Browser </td><td> </td><td>Android 4.2.2</td><td style="border-left: 1px solid #555">Samsung</td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.41396</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-9795f66f-7271-430e-973a-a5c0e14dc35a">Detail</a> <!-- Modal Structure --> <div id="modal-9795f66f-7271-430e-973a-a5c0e14dc35a" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>WhatIsMyBrowserCom result detail</h4> <p><pre><code class="php">stdClass Object ( [operating_system_name] => Android [simple_sub_description_string] => [simple_browser_string] => Stock Android Browser on Android (Jelly Bean) [browser_version] => [extra_info] => Array ( ) [operating_platform] => [extra_info_table] => Array ( ) [layout_engine_name] => [detected_addons] => Array ( ) [operating_system_flavour_code] => [hardware_architecture] => [operating_system_flavour] => [operating_system_frameworks] => Array ( ) [browser_name_code] => stock-android-browser [operating_system_version] => Jelly Bean [simple_operating_platform_string] => Samsung GT-I9 [is_abusive] => [layout_engine_version] => [browser_capabilities] => Array ( ) [operating_platform_vendor_name] => Samsung [operating_system] => Android (Jelly Bean) [operating_system_version_full] => 4.2.2 [operating_platform_code] => GT-I9 [browser_name] => Stock Android Browser [operating_system_name_code] => android [user_agent] => Mozilla/5.0 (Linux; Android 4.2.2; de-de; SAMSUNG GT-I9 [browser_version_full] => [browser] => Stock Android Browser ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>WhichBrowser<br /><small>2.0.10</small></td><td>Android Browser </td><td> </td><td>Android 4.2.2</td><td style="border-left: 1px solid #555">Samsung</td><td>GT-I9</td><td>mobile:smart</td><td>yes</td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0.09101</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4">Detail</a> <!-- Modal Structure --> <div id="modal-342c8d32-4765-40a8-8a5c-af3a38d19ae4" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>WhichBrowser result detail</h4> <p><pre><code class="php">Array ( [browser] => Array ( [name] => Android Browser ) [os] => Array ( [name] => Android [version] => 4.2.2 ) [device] => Array ( [type] => mobile [subtype] => smart [manufacturer] => Samsung [model] => GT-I9 ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td><td> </td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>smartphone</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td style="border-left: 1px solid #555"></td><td></td><td><i class="material-icons">close</i></td><td>0</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-3f285ff5-314b-4db4-9948-54572e92e7b6">Detail</a> <!-- Modal Structure --> <div id="modal-3f285ff5-314b-4db4-9948-54572e92e7b6" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>Woothee result detail</h4> <p><pre><code class="php">Array ( [category] => smartphone [os] => Android [os_version] => 4.2.2 [name] => UNKNOWN [version] => UNKNOWN [vendor] => UNKNOWN ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>Android Webkit 4.2</td><td><i class="material-icons">close</i></td><td>Android 4.2</td><td style="border-left: 1px solid #555"></td><td></td><td>Smartphone</td><td>yes</td><td>yes</td><td style="border-left: 1px solid #555"></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td>0.047</td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-1a1aee36-7ce7-4111-a391-8e2c501f1532">Detail</a> <!-- Modal Structure --> <div id="modal-1a1aee36-7ce7-4111-a391-8e2c501f1532" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>Wurfl result detail</h4> <p><pre><code class="php">Array ( [virtual] => Array ( [is_android] => true [is_ios] => false [is_windows_phone] => false [is_app] => false [is_full_desktop] => false [is_largescreen] => false [is_mobile] => true [is_robot] => false [is_smartphone] => true [is_touchscreen] => true [is_wml_preferred] => false [is_xhtmlmp_preferred] => false [is_html_preferred] => true [advertised_device_os] => Android [advertised_device_os_version] => 4.2 [advertised_browser] => Android Webkit [advertised_browser_version] => 4.2 [complete_device_name] => Generic Android 4.2 [form_factor] => Smartphone [is_phone] => true [is_app_webview] => false ) [all] => Array ( [brand_name] => Generic [model_name] => Android 4.2 [unique] => true [ununiqueness_handler] => [is_wireless_device] => true [device_claims_web_support] => true [has_qwerty_keyboard] => true [can_skip_aligned_link_row] => true [uaprof] => [uaprof2] => [uaprof3] => [nokia_series] => 0 [nokia_edition] => 0 [device_os] => Android [mobile_browser] => Android Webkit [mobile_browser_version] => [device_os_version] => 4.2 [pointing_method] => touchscreen [release_date] => 2012_october [marketing_name] => [model_extra_info] => [nokia_feature_pack] => 0 [can_assign_phone_number] => true [is_tablet] => false [manufacturer_name] => [is_bot] => false [is_google_glass] => false [proportional_font] => false [built_in_back_button_support] => false [card_title_support] => true [softkey_support] => false [table_support] => true [numbered_menus] => false [menu_with_select_element_recommended] => false [menu_with_list_of_links_recommended] => true [icons_on_menu_items_support] => false [break_list_of_links_with_br_element_recommended] => true [access_key_support] => false [wrap_mode_support] => false [times_square_mode_support] => false [deck_prefetch_support] => false [elective_forms_recommended] => true [wizards_recommended] => false [image_as_link_support] => false [insert_br_element_after_widget_recommended] => false [wml_can_display_images_and_text_on_same_line] => false [wml_displays_image_in_center] => false [opwv_wml_extensions_support] => false [wml_make_phone_call_string] => wtai://wp/mc; [chtml_display_accesskey] => false [emoji] => false [chtml_can_display_images_and_text_on_same_line] => false [chtml_displays_image_in_center] => false [imode_region] => none [chtml_make_phone_call_string] => tel: [chtml_table_support] => false [xhtml_honors_bgcolor] => true [xhtml_supports_forms_in_table] => true [xhtml_support_wml2_namespace] => false [xhtml_autoexpand_select] => false [xhtml_select_as_dropdown] => false [xhtml_select_as_radiobutton] => false [xhtml_select_as_popup] => false [xhtml_display_accesskey] => false [xhtml_supports_invisible_text] => false [xhtml_supports_inline_input] => false [xhtml_supports_monospace_font] => false [xhtml_supports_table_for_layout] => true [xhtml_supports_css_cell_table_coloring] => true [xhtml_format_as_css_property] => false [xhtml_format_as_attribute] => false [xhtml_nowrap_mode] => false [xhtml_marquee_as_css_property] => false [xhtml_readable_background_color1] => #FFFFFF [xhtml_readable_background_color2] => #FFFFFF [xhtml_allows_disabled_form_elements] => true [xhtml_document_title_support] => true [xhtml_preferred_charset] => iso-8859-1 [opwv_xhtml_extensions_support] => false [xhtml_make_phone_call_string] => tel: [xhtmlmp_preferred_mime_type] => text/html [xhtml_table_support] => true [xhtml_send_sms_string] => sms: [xhtml_send_mms_string] => mms: [xhtml_file_upload] => supported [cookie_support] => true [accept_third_party_cookie] => true [xhtml_supports_iframe] => full [xhtml_avoid_accesskeys] => true [xhtml_can_embed_video] => none [ajax_support_javascript] => true [ajax_manipulate_css] => true [ajax_support_getelementbyid] => true [ajax_support_inner_html] => true [ajax_xhr_type] => standard [ajax_manipulate_dom] => true [ajax_support_events] => true [ajax_support_event_listener] => true [ajax_preferred_geoloc_api] => w3c_api [xhtml_support_level] => 4 [preferred_markup] => html_web_4_0 [wml_1_1] => false [wml_1_2] => false [wml_1_3] => false [html_wi_w3_xhtmlbasic] => true [html_wi_oma_xhtmlmp_1_0] => true [html_wi_imode_html_1] => false [html_wi_imode_html_2] => false [html_wi_imode_html_3] => false [html_wi_imode_html_4] => false [html_wi_imode_html_5] => false [html_wi_imode_htmlx_1] => false [html_wi_imode_htmlx_1_1] => false [html_wi_imode_compact_generic] => false [html_web_3_2] => true [html_web_4_0] => true [voicexml] => false [multipart_support] => false [total_cache_disable_support] => false [time_to_live_support] => false [resolution_width] => 320 [resolution_height] => 480 [columns] => 60 [max_image_width] => 320 [max_image_height] => 480 [rows] => 40 [physical_screen_width] => 34 [physical_screen_height] => 50 [dual_orientation] => true [density_class] => 1.0 [wbmp] => true [bmp] => false [epoc_bmp] => false [gif_animated] => false [jpg] => true [png] => true [tiff] => false [transparent_png_alpha] => true [transparent_png_index] => true [svgt_1_1] => true [svgt_1_1_plus] => false [greyscale] => false [gif] => true [colors] => 65536 [webp_lossy_support] => true [webp_lossless_support] => true [post_method_support] => true [basic_authentication_support] => true [empty_option_value_support] => true [emptyok] => false [nokia_voice_call] => false [wta_voice_call] => false [wta_phonebook] => false [wta_misc] => false [wta_pdc] => false [https_support] => true [phone_id_provided] => false [max_data_rate] => 3600 [wifi] => true [sdio] => false [vpn] => false [has_cellular_radio] => true [max_deck_size] => 2000000 [max_url_length_in_requests] => 256 [max_url_length_homepage] => 0 [max_url_length_bookmark] => 0 [max_url_length_cached_page] => 0 [max_no_of_connection_settings] => 0 [max_no_of_bookmarks] => 0 [max_length_of_username] => 0 [max_length_of_password] => 0 [max_object_size] => 0 [downloadfun_support] => false [directdownload_support] => true [inline_support] => false [oma_support] => true [ringtone] => false [ringtone_3gpp] => false [ringtone_midi_monophonic] => false [ringtone_midi_polyphonic] => false [ringtone_imelody] => false [ringtone_digiplug] => false [ringtone_compactmidi] => false [ringtone_mmf] => false [ringtone_rmf] => false [ringtone_xmf] => false [ringtone_amr] => false [ringtone_awb] => false [ringtone_aac] => false [ringtone_wav] => false [ringtone_mp3] => false [ringtone_spmidi] => false [ringtone_qcelp] => false [ringtone_voices] => 1 [ringtone_df_size_limit] => 0 [ringtone_directdownload_size_limit] => 0 [ringtone_inline_size_limit] => 0 [ringtone_oma_size_limit] => 0 [wallpaper] => false [wallpaper_max_width] => 0 [wallpaper_max_height] => 0 [wallpaper_preferred_width] => 0 [wallpaper_preferred_height] => 0 [wallpaper_resize] => none [wallpaper_wbmp] => false [wallpaper_bmp] => false [wallpaper_gif] => false [wallpaper_jpg] => false [wallpaper_png] => false [wallpaper_tiff] => false [wallpaper_greyscale] => false [wallpaper_colors] => 2 [wallpaper_df_size_limit] => 0 [wallpaper_directdownload_size_limit] => 0 [wallpaper_inline_size_limit] => 0 [wallpaper_oma_size_limit] => 0 [screensaver] => false [screensaver_max_width] => 0 [screensaver_max_height] => 0 [screensaver_preferred_width] => 0 [screensaver_preferred_height] => 0 [screensaver_resize] => none [screensaver_wbmp] => false [screensaver_bmp] => false [screensaver_gif] => false [screensaver_jpg] => false [screensaver_png] => false [screensaver_greyscale] => false [screensaver_colors] => 2 [screensaver_df_size_limit] => 0 [screensaver_directdownload_size_limit] => 0 [screensaver_inline_size_limit] => 0 [screensaver_oma_size_limit] => 0 [picture] => false [picture_max_width] => 0 [picture_max_height] => 0 [picture_preferred_width] => 0 [picture_preferred_height] => 0 [picture_resize] => none [picture_wbmp] => false [picture_bmp] => false [picture_gif] => false [picture_jpg] => false [picture_png] => false [picture_greyscale] => false [picture_colors] => 2 [picture_df_size_limit] => 0 [picture_directdownload_size_limit] => 0 [picture_inline_size_limit] => 0 [picture_oma_size_limit] => 0 [video] => false [oma_v_1_0_forwardlock] => false [oma_v_1_0_combined_delivery] => false [oma_v_1_0_separate_delivery] => false [streaming_video] => true [streaming_3gpp] => true [streaming_mp4] => true [streaming_mov] => false [streaming_video_size_limit] => 0 [streaming_real_media] => none [streaming_flv] => false [streaming_3g2] => false [streaming_vcodec_h263_0] => 10 [streaming_vcodec_h263_3] => -1 [streaming_vcodec_mpeg4_sp] => 2 [streaming_vcodec_mpeg4_asp] => -1 [streaming_vcodec_h264_bp] => 3.0 [streaming_acodec_amr] => nb [streaming_acodec_aac] => lc [streaming_wmv] => none [streaming_preferred_protocol] => rtsp [streaming_preferred_http_protocol] => apple_live_streaming [wap_push_support] => false [connectionless_service_indication] => false [connectionless_service_load] => false [connectionless_cache_operation] => false [connectionoriented_unconfirmed_service_indication] => false [connectionoriented_unconfirmed_service_load] => false [connectionoriented_unconfirmed_cache_operation] => false [connectionoriented_confirmed_service_indication] => false [connectionoriented_confirmed_service_load] => false [connectionoriented_confirmed_cache_operation] => false [utf8_support] => true [ascii_support] => false [iso8859_support] => false [expiration_date] => false [j2me_cldc_1_0] => false [j2me_cldc_1_1] => false [j2me_midp_1_0] => false [j2me_midp_2_0] => false [doja_1_0] => false [doja_1_5] => false [doja_2_0] => false [doja_2_1] => false [doja_2_2] => false [doja_3_0] => false [doja_3_5] => false [doja_4_0] => false [j2me_jtwi] => false [j2me_mmapi_1_0] => false [j2me_mmapi_1_1] => false [j2me_wmapi_1_0] => false [j2me_wmapi_1_1] => false [j2me_wmapi_2_0] => false [j2me_btapi] => false [j2me_3dapi] => false [j2me_locapi] => false [j2me_nokia_ui] => false [j2me_motorola_lwt] => false [j2me_siemens_color_game] => false [j2me_siemens_extension] => false [j2me_heap_size] => 0 [j2me_max_jar_size] => 0 [j2me_storage_size] => 0 [j2me_max_record_store_size] => 0 [j2me_screen_width] => 0 [j2me_screen_height] => 0 [j2me_canvas_width] => 0 [j2me_canvas_height] => 0 [j2me_bits_per_pixel] => 0 [j2me_audio_capture_enabled] => false [j2me_video_capture_enabled] => false [j2me_photo_capture_enabled] => false [j2me_capture_image_formats] => none [j2me_http] => false [j2me_https] => false [j2me_socket] => false [j2me_udp] => false [j2me_serial] => false [j2me_gif] => false [j2me_gif89a] => false [j2me_jpg] => false [j2me_png] => false [j2me_bmp] => false [j2me_bmp3] => false [j2me_wbmp] => false [j2me_midi] => false [j2me_wav] => false [j2me_amr] => false [j2me_mp3] => false [j2me_mp4] => false [j2me_imelody] => false [j2me_rmf] => false [j2me_au] => false [j2me_aac] => false [j2me_realaudio] => false [j2me_xmf] => false [j2me_wma] => false [j2me_3gpp] => false [j2me_h263] => false [j2me_svgt] => false [j2me_mpeg4] => false [j2me_realvideo] => false [j2me_real8] => false [j2me_realmedia] => false [j2me_left_softkey_code] => 0 [j2me_right_softkey_code] => 0 [j2me_middle_softkey_code] => 0 [j2me_select_key_code] => 0 [j2me_return_key_code] => 0 [j2me_clear_key_code] => 0 [j2me_datefield_no_accepts_null_date] => false [j2me_datefield_broken] => false [receiver] => false [sender] => false [mms_max_size] => 0 [mms_max_height] => 0 [mms_max_width] => 0 [built_in_recorder] => false [built_in_camera] => true [mms_jpeg_baseline] => false [mms_jpeg_progressive] => false [mms_gif_static] => false [mms_gif_animated] => false [mms_png] => false [mms_bmp] => false [mms_wbmp] => false [mms_amr] => false [mms_wav] => false [mms_midi_monophonic] => false [mms_midi_polyphonic] => false [mms_midi_polyphonic_voices] => 0 [mms_spmidi] => false [mms_mmf] => false [mms_mp3] => false [mms_evrc] => false [mms_qcelp] => false [mms_ota_bitmap] => false [mms_nokia_wallpaper] => false [mms_nokia_operatorlogo] => false [mms_nokia_3dscreensaver] => false [mms_nokia_ringingtone] => false [mms_rmf] => false [mms_xmf] => false [mms_symbian_install] => false [mms_jar] => false [mms_jad] => false [mms_vcard] => false [mms_vcalendar] => false [mms_wml] => false [mms_wbxml] => false [mms_wmlc] => false [mms_video] => false [mms_mp4] => false [mms_3gpp] => false [mms_3gpp2] => false [mms_max_frame_rate] => 0 [nokiaring] => false [picturemessage] => false [operatorlogo] => false [largeoperatorlogo] => false [callericon] => false [nokiavcard] => false [nokiavcal] => false [sckl_ringtone] => false [sckl_operatorlogo] => false [sckl_groupgraphic] => false [sckl_vcard] => false [sckl_vcalendar] => false [text_imelody] => false [ems] => false [ems_variablesizedpictures] => false [ems_imelody] => false [ems_odi] => false [ems_upi] => false [ems_version] => 0 [siemens_ota] => false [siemens_logo_width] => 101 [siemens_logo_height] => 29 [siemens_screensaver_width] => 101 [siemens_screensaver_height] => 50 [gprtf] => false [sagem_v1] => false [sagem_v2] => false [panasonic] => false [sms_enabled] => true [wav] => false [mmf] => false [smf] => false [mld] => false [midi_monophonic] => false [midi_polyphonic] => false [sp_midi] => false [rmf] => false [xmf] => false [compactmidi] => false [digiplug] => false [nokia_ringtone] => false [imelody] => false [au] => false [amr] => false [awb] => false [aac] => true [mp3] => true [voices] => 1 [qcelp] => false [evrc] => false [flash_lite_version] => [fl_wallpaper] => false [fl_screensaver] => false [fl_standalone] => false [fl_browser] => false [fl_sub_lcd] => false [full_flash_support] => false [css_supports_width_as_percentage] => true [css_border_image] => webkit [css_rounded_corners] => webkit [css_gradient] => none [css_spriting] => true [css_gradient_linear] => none [is_transcoder] => false [transcoder_ua_header] => user-agent [rss_support] => false [pdf_support] => true [progressive_download] => true [playback_vcodec_h263_0] => 10 [playback_vcodec_h263_3] => -1 [playback_vcodec_mpeg4_sp] => 0 [playback_vcodec_mpeg4_asp] => -1 [playback_vcodec_h264_bp] => 3.0 [playback_real_media] => none [playback_3gpp] => true [playback_3g2] => false [playback_mp4] => true [playback_mov] => false [playback_acodec_amr] => nb [playback_acodec_aac] => none [playback_df_size_limit] => 0 [playback_directdownload_size_limit] => 0 [playback_inline_size_limit] => 0 [playback_oma_size_limit] => 0 [playback_acodec_qcelp] => false [playback_wmv] => none [hinted_progressive_download] => true [html_preferred_dtd] => html4 [viewport_supported] => true [viewport_width] => device_width_token [viewport_userscalable] => no [viewport_initial_scale] => [viewport_maximum_scale] => [viewport_minimum_scale] => [mobileoptimized] => false [handheldfriendly] => false [canvas_support] => full [image_inlining] => true [is_smarttv] => false [is_console] => false [nfc_support] => false [ux_full_desktop] => false [jqm_grade] => A [is_sencha_touch_ok] => false [controlcap_is_smartphone] => default [controlcap_is_ios] => default [controlcap_is_android] => default [controlcap_is_robot] => default [controlcap_is_app] => default [controlcap_advertised_device_os] => default [controlcap_advertised_device_os_version] => default [controlcap_advertised_browser] => default [controlcap_advertised_browser_version] => default [controlcap_is_windows_phone] => default [controlcap_is_full_desktop] => default [controlcap_is_largescreen] => default [controlcap_is_mobile] => default [controlcap_is_touchscreen] => default [controlcap_is_wml_preferred] => default [controlcap_is_xhtmlmp_preferred] => default [controlcap_is_html_preferred] => default [controlcap_form_factor] => default [controlcap_complete_device_name] => default ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr></table> </div> <div class="section"> <h1 class="header center orange-text">About this comparison</h1> <div class="row center"> <h5 class="header light"> The primary goal of this project is simple<br /> I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br /> <br /> The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br /> <br /> You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br /> <br /> The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a> </h5> </div> </div> <div class="card"> <div class="card-content"> Comparison created <i>2016-02-13 13:34:45</i> | by <a href="https://github.com/ThaDafinser">ThaDafinser</a> </div> </div> </div> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script> <script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.1.1/list.min.js"></script> <script> $(document).ready(function(){ // the "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered $('.modal-trigger').leanModal(); }); </script> </body> </html>
doc/spec/serializers_spec.html
pedago/iguana
<!DOCTYPE html><html lang="en"><head><title>spec/serializers_spec</title></head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0"><meta name="groc-relative-root" content="../"><meta name="groc-document-path" content="spec/serializers_spec"><meta name="groc-project-path" content="spec/serializers_spec.js"><link rel="stylesheet" type="text/css" media="all" href="../assets/style.css"><script type="text/javascript" src="../assets/behavior.js"></script><body><div id="meta"><div class="file-path">spec/serializers_spec.js</div></div><div id="document"><div class="segment"><div class="code"><div class="wrapper"><span class="hljs-pi">'use strict'</span>; describe(<span class="hljs-string">'Iguana.Serializers'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> Iguana, Item; beforeEach(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> module(<span class="hljs-string">'Iguana'</span>); inject(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(_Iguana_)</span> {</span> Iguana = _Iguana_; Item = Iguana.subclass(); }); }); describe(<span class="hljs-string">'asJson'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span></div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="asjson">asJson</h3> <p>&#39;asJson&#39; returns an object following the rules that angular.toJson uses. This means that properties whose names start with $ or whose values are functions will be removed, and everything else will be converted to json formats.</p></div></div><div class="code"><div class="wrapper"> it(<span class="hljs-string">'should return an object'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> obj = { someString: <span class="hljs-string">'value'</span>, someNumber: <span class="hljs-number">1.4</span>, someArray: [<span class="hljs-number">1</span>,<span class="hljs-number">2</span>,<span class="hljs-number">3</span>,<span class="hljs-number">4</span>], someDate: <span class="hljs-keyword">new</span> <span class="hljs-built_in">Date</span>(<span class="hljs-number">2013</span>,<span class="hljs-number">1</span>,<span class="hljs-number">1</span>), someObject: {a: <span class="hljs-number">1</span>}, $$ignoreThisProp: <span class="hljs-string">'ignored'</span>, ignoreThisFunction: <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span>} }; <span class="hljs-keyword">var</span> item = Item.new(obj); expect(item.asJson()).toEqual({ someString: <span class="hljs-string">'value'</span>, someNumber: <span class="hljs-number">1.4</span>, someArray: [<span class="hljs-number">1</span>,<span class="hljs-number">2</span>,<span class="hljs-number">3</span>,<span class="hljs-number">4</span>], someDate: <span class="hljs-string">'2013-02-01T05:00:00.000Z'</span>, someObject: {a: <span class="hljs-number">1</span>} }); }); }) </div></div></div><div class="segment"><div class="comments "><div class="wrapper"><h3 id="tojson">toJson</h3> <p>This one is just</p> <pre><code>return angular.toJson(this);</code></pre></div></div><div class="code"><div class="wrapper"> describe(<span class="hljs-string">'toJson'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> it(<span class="hljs-string">'should return a string'</span>, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> expect(Item.new({a: <span class="hljs-number">1</span>}).toJson()).toEqual(<span class="hljs-string">'{"a":1}'</span>); }); }); });</div></div></div></div></body></html>
docs/metrics/src/br/unicamp/ic/sed/mobilemedia/album/spec/excep/UnavailablePhotoAlbumException.java.html
leotizzei/MobileMedia-Cosmos-v5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <HTML> <HEAD> <LINK REL=STYLESHEET TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style"> <META NAME="GENERATOR" CONTENT="Java2HTML Version 1.5"> <TITLE>br.unicamp.ic.sed.mobilemedia.album.spec.excep.UnavailablePhotoAlbumException (Java2HTML)</TITLE> </HEAD> <BODY><TABLE id="Header" border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td colspan="2" width="33%">&nbsp;</td> <td align="center" colspan="2" width="33%"> <font size="4">UnavailablePhotoAlbumException.java</font> </td> <td align="right" colspan="2" width="33%">&nbsp;</td> </tr> </TABLE> <pre ID="Classes"> <FONT ID="LN">1 </FONT><A NAME="1"></A><FONT ID="Package">package</FONT> br.unicamp.ic.sed.mobilemedia.album.spec.excep; <FONT ID="LN">2 </FONT><A NAME="2"></A> <FONT ID="LN">3 </FONT><A NAME="3"></A><FONT ID="Public">public</FONT> <FONT ID="Class">class</FONT> UnavailablePhotoAlbumException <FONT ID="Extends">extends</FONT> Exception { <FONT ID="LN">4 </FONT><A NAME="4"></A> <FONT ID="LN">5 </FONT><A NAME="5"></A> <FONT ID="Private">private</FONT> Throwable cause; <FONT ID="LN">6 </FONT><A NAME="6"></A> <FONT ID="LN">7 </FONT><A NAME="7"></A> <FONT ID="Public">public</FONT> UnavailablePhotoAlbumException() { <FONT ID="LN">8 </FONT><A NAME="8"></A> } <FONT ID="LN">9 </FONT><A NAME="9"></A> <FONT ID="LN">10 </FONT><A NAME="10"></A> <FONT ID="Public">public</FONT> UnavailablePhotoAlbumException(String arg0) { <FONT ID="LN">11 </FONT><A NAME="11"></A> <FONT ID="Super">super</FONT>(arg0); <FONT ID="LN">12 </FONT><A NAME="12"></A> } <FONT ID="LN">13 </FONT><A NAME="13"></A> <FONT ID="LN">14 </FONT><A NAME="14"></A> <FONT ID="Public">public</FONT> UnavailablePhotoAlbumException(Throwable arg0) { <FONT ID="LN">15 </FONT><A NAME="15"></A> cause = arg0; <FONT ID="LN">16 </FONT><A NAME="16"></A> } <FONT ID="LN">17 </FONT><A NAME="17"></A> <FONT ID="LN">18 </FONT><A NAME="18"></A> <FONT ID="Public">public</FONT> Throwable getCause(){ <FONT ID="LN">19 </FONT><A NAME="19"></A> <FONT ID="Return">return</FONT> cause; <FONT ID="LN">20 </FONT><A NAME="20"></A> } <FONT ID="LN">21 </FONT><A NAME="21"></A>} <FONT ID="LN">22 </FONT><A NAME="22"></A></pre> </BODY> </HTML>
html/220198890000.html
GoC-Spending/data-corporations
<!DOCTYPE html> <!--[if lt IE 9]><html class="no-js lt-ie9" lang="en" dir="ltr"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" dir="ltr"> <!--<![endif]--> <!-- Usage: /eic/site/ccc-rec.nsf/tpl-eng/template-1col.html?Open&id=3 (optional: ?Open&page=filename.html&id=x) --> <!-- Created: ; Product Code: 536; Server: stratnotes2.ic.gc.ca --> <head> <!-- Title begins / Début du titre --> <title> Stright-MacKay Ltd. - Complete profile - Canadian Company Capabilities - Industries and Business - Industry Canada </title> <!-- Title ends / Fin du titre --> <!-- Meta-data begins / Début des métadonnées --> <meta charset="utf-8" /> <meta name="dcterms.language" title="ISO639-2" content="eng" /> <meta name="dcterms.title" content="" /> <meta name="description" content="" /> <meta name="dcterms.description" content="" /> <meta name="dcterms.type" content="report, data set" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.subject" content="businesses, industry" /> <meta name="dcterms.issued" title="W3CDTF" content="" /> <meta name="dcterms.modified" title="W3CDTF" content="" /> <meta name="keywords" content="" /> <meta name="dcterms.creator" content="" /> <meta name="author" content="" /> <meta name="dcterms.created" title="W3CDTF" content="" /> <meta name="dcterms.publisher" content="" /> <meta name="dcterms.audience" title="icaudience" content="" /> <meta name="dcterms.spatial" title="ISO3166-1" content="" /> <meta name="dcterms.spatial" title="gcgeonames" content="" /> <meta name="dcterms.format" content="HTML" /> <meta name="dcterms.identifier" title="ICsiteProduct" content="536" /> <!-- EPI-11240 --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <!-- MCG-202 --> <meta content="width=device-width,initial-scale=1" name="viewport"> <!-- EPI-11567 --> <meta name = "format-detection" content = "telephone=no"> <!-- EPI-12603 --> <meta name="robots" content="noarchive"> <!-- EPI-11190 - Webtrends --> <script> var startTime = new Date(); startTime = startTime.getTime(); </script> <!--[if gte IE 9 | !IE ]><!--> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="icon" type="image/x-icon"> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/wet-boew.min.css"> <!--<![endif]--> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/theme.min.css"> <!--[if lt IE 9]> <link href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/favicon.ico" rel="shortcut icon" /> <link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/ie8-wet-boew.min.css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew.min.js"></script> <![endif]--> <!--[if lte IE 9]> <![endif]--> <noscript><link rel="stylesheet" href="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/css/noscript.min.css" /></noscript> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <script>dataLayer1 = [];</script> <!-- End Google Tag Manager --> <!-- EPI-11235 --> <link rel="stylesheet" href="/eic/home.nsf/css/add_WET_4-0_Canada_Apps.css"> <link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <link href="/app/ccc/srch/css/print.css" media="print" rel="stylesheet" type="text/css" /> </head> <body class="home" vocab="http://schema.org/" typeof="WebPage"> <!-- EPIC HEADER BEGIN --> <!-- Google Tag Manager DO NOT REMOVE OR MODIFY - NE PAS SUPPRIMER OU MODIFIER --> <noscript><iframe title="Google Tag Manager" src="//www.googletagmanager.com/ns.html?id=GTM-TLGQ9K" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer1'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer1','GTM-TLGQ9K');</script> <!-- End Google Tag Manager --> <!-- EPI-12801 --> <span typeof="Organization"><meta property="legalName" content="Department_of_Industry"></span> <ul id="wb-tphp"> <li class="wb-slc"> <a class="wb-sl" href="#wb-cont">Skip to main content</a> </li> <li class="wb-slc visible-sm visible-md visible-lg"> <a class="wb-sl" href="#wb-info">Skip to "About this site"</a> </li> </ul> <header role="banner"> <div id="wb-bnr" class="container"> <section id="wb-lng" class="visible-md visible-lg text-right"> <h2 class="wb-inv">Language selection</h2> <div class="row"> <div class="col-md-12"> <ul class="list-inline mrgn-bttm-0"> <li><a href="nvgt.do?V_TOKEN=1492321888725&V_SEARCH.docsCount=3&V_DOCUMENT.docRank=44334&V_SEARCH.docsStart=44333&V_SEARCH.command=navigate&V_SEARCH.resultsJSP=/prfl.do&lang=fra&redirectUrl=/app/scr/imbs/ccc/rgstrtn/updt.sec?_flId?_flxKy=e1s1&amp;estblmntNo=234567041301&amp;profileId=61&amp;_evId=bck&amp;lang=eng&amp;V_SEARCH.showStricts=false&amp;prtl=1&amp;_flId?_flId?_flxKy=e1s1" title="Français" lang="fr">Français</a></li> </ul> </div> </div> </section> <div class="row"> <div class="brand col-xs-8 col-sm-9 col-md-6"> <a href="http://www.canada.ca/en/index.html"><object type="image/svg+xml" tabindex="-1" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/sig-blk-en.svg"></object><span class="wb-inv"> Government of Canada</span></a> </div> <section class="wb-mb-links col-xs-4 col-sm-3 visible-sm visible-xs" id="wb-glb-mn"> <h2>Search and menus</h2> <ul class="list-inline text-right chvrn"> <li><a href="#mb-pnl" title="Search and menus" aria-controls="mb-pnl" class="overlay-lnk" role="button"><span class="glyphicon glyphicon-search"><span class="glyphicon glyphicon-th-list"><span class="wb-inv">Search and menus</span></span></span></a></li> </ul> <div id="mb-pnl"></div> </section> <!-- Site Search Removed --> </div> </div> <nav role="navigation" id="wb-sm" class="wb-menu visible-md visible-lg" data-trgt="mb-pnl" data-ajax-fetch="//cdn.canada.ca/gcweb-cdn-dev/sitemenu/sitemenu-en.html" typeof="SiteNavigationElement"> <h2 class="wb-inv">Topics menu</h2> <div class="container nvbar"> <div class="row"> <ul class="list-inline menu"> <li><a href="https://www.canada.ca/en/services/jobs.html">Jobs</a></li> <li><a href="http://www.cic.gc.ca/english/index.asp">Immigration</a></li> <li><a href="https://travel.gc.ca/">Travel</a></li> <li><a href="https://www.canada.ca/en/services/business.html">Business</a></li> <li><a href="https://www.canada.ca/en/services/benefits.html">Benefits</a></li> <li><a href="http://healthycanadians.gc.ca/index-eng.php">Health</a></li> <li><a href="https://www.canada.ca/en/services/taxes.html">Taxes</a></li> <li><a href="https://www.canada.ca/en/services.html">More services</a></li> </ul> </div> </div> </nav> <!-- EPIC BODY BEGIN --> <nav role="navigation" id="wb-bc" class="" property="breadcrumb"> <h2 class="wb-inv">You are here:</h2> <div class="container"> <div class="row"> <ol class="breadcrumb"> <li><a href="/eic/site/icgc.nsf/eng/home" title="Home">Home</a></li> <li><a href="/eic/site/icgc.nsf/eng/h_07063.html" title="Industries and Business">Industries and Business</a></li> <li><a href="/eic/site/ccc-rec.nsf/tpl-eng/../eng/home" >Canadian Company Capabilities</a></li> </ol> </div> </div> </nav> </header> <main id="wb-cont" role="main" property="mainContentOfPage" class="container"> <!-- End Header --> <!-- Begin Body --> <!-- Begin Body Title --> <!-- End Body Title --> <!-- Begin Body Head --> <!-- End Body Head --> <!-- Begin Body Content --> <br> <!-- Complete Profile --> <!-- Company Information above tabbed area--> <input id="showMore" type="hidden" value='more'/> <input id="showLess" type="hidden" value='less'/> <h1 id="wb-cont"> Company profile - Canadian Company Capabilities </h1> <div class="profileInfo hidden-print"> <ul class="list-inline"> <li><a href="cccSrch.do?lang=eng&profileId=&prtl=1&key.hitsPerPage=25&searchPage=%252Fapp%252Fccc%252Fsrch%252FcccBscSrch.do%253Flang%253Deng%2526amp%253Bprtl%253D1%2526amp%253Btagid%253D&V_SEARCH.scopeCategory=CCC.Root&V_SEARCH.depth=1&V_SEARCH.showStricts=false&V_SEARCH.sortSpec=title+asc&amp;rstBtn.x=" class="btn btn-link">New Search</a>&nbsp;|</li> <li><form name="searchForm" method="post" action="/app/ccc/srch/bscSrch.do"> <input type="hidden" name="lang" value="eng" /> <input type="hidden" name="profileId" value="" /> <input type="hidden" name="prtl" value="1" /> <input type="hidden" name="searchPage" value="%2Fapp%2Fccc%2Fsrch%2FcccBscSrch.do%3Flang%3Deng%26amp%3Bprtl%3D1%26amp%3Btagid%3D" /> <input type="hidden" name="V_SEARCH.scopeCategory" value="CCC.Root" /> <input type="hidden" name="V_SEARCH.depth" value="1" /> <input type="hidden" name="V_SEARCH.showStricts" value="false" /> <input id="repeatSearchBtn" class="btn btn-link" type="submit" value="Return to search results" /> </form></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=44332&amp;V_DOCUMENT.docRank=44333&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492321902180&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567010609&amp;profileId=&amp;key.newSearchLabel=">Previous Company</a></li> <li>|&nbsp;<a href="nvgt.do?V_SEARCH.docsStart=44334&amp;V_DOCUMENT.docRank=44335&amp;V_SEARCH.docsCount=3&amp;lang=eng&amp;prtl=1&amp;sbPrtl=&amp;profile=cmpltPrfl&amp;V_TOKEN=1492321902180&amp;V_SEARCH.command=navigate&amp;V_SEARCH.resultsJSP=%2fprfl.do&amp;estblmntNo=234567090959&amp;profileId=&amp;key.newSearchLabel=">Next Company</a></li> </ul> </div> <details> <summary>Third-Party Information Liability Disclaimer</summary> <p>Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements.</p> </details> <h2> Stright-MacKay Ltd. </h2> <div class="row"> <div class="col-md-5"> <h2 class="h5 mrgn-bttm-0">Legal/Operating Name:</h2> <p>Stright-MacKay Ltd.</p> <div class="mrgn-tp-md"></div> <p class="mrgn-bttm-0" ><a href="http://www.stright-mackay.com" target="_blank" title="Website URL">http://www.stright-mackay.com</a></p> <p><a href="mailto:info@stright-mackay.com" title="info@stright-mackay.com">info@stright-mackay.com</a></p> </div> <div class="col-md-4 mrgn-sm-sm"> <h2 class="h5 mrgn-bttm-0">Mailing Address:</h2> <address class="mrgn-bttm-md"> P.O. Box 97<br/> NEW GLASGOW, Nova Scotia<br/> B2H 5E1 <br/> </address> <h2 class="h5 mrgn-bttm-0">Location Address:</h2> <address class="mrgn-bttm-md"> 209 Terra Cotta Dr.<br/> NEW GLASGOW, Nova Scotia<br/> B2H 6A8 <br/> </address> <p class="mrgn-bttm-0"><abbr title="Telephone">Tel.</abbr>: (902) 928-1900 </p> <p class="mrgn-bttm-lg"><abbr title="Facsimile">Fax</abbr>: (902) 928-1905</p> </div> <div class="col-md-3 mrgn-tp-md"> </div> </div> <div class="row mrgn-tp-md mrgn-bttm-md"> <div class="col-md-12"> </div> </div> <!-- <div class="wb-tabs ignore-session update-hash wb-eqht-off print-active"> --> <div class="wb-tabs ignore-session"> <div class="tabpanels"> <details id="details-panel1"> <summary> Full profile </summary> <!-- Tab 1 --> <h2 class="wb-invisible"> Full profile </h2> <!-- Contact Information --> <h3 class="page-header"> Contact information </h3> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Lee Toole </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> Sales Manager<br> </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (902) 928-1900 </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Company Description --> <h3 class="page-header"> Company description </h3> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 441220 - Motorcycle, Boat and Other Motor Vehicle Dealers </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 417990 - All Other Machinery, Equipment and Supplies Wholesaler-Distributors<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Trading House / Wholesaler / Agent and Distributor &nbsp; </div> </div> </section> <!-- Products / Services / Licensing --> <h3 class="page-header"> Product / Service / Licensing </h3> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> BOAT PARTS AND ACCESSORIES DISTRIBUTOR <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Lines Distributed: <br> 3M, ACR, Ancor, Audiovox, Beckson, Beclawat, Bomar, Buck <br> Algonquin, Centek/Vernatone, Cobra Wire &amp; Cable, Fizwright, Foss, <br> Freeman, Garelick, Globe Rubber, Gresen, Groco, Guest, H.O. <br> Bostrom, Heart Interface, Hella, Micrologic, Morse, MP Pumps, <br> Mustang, N.A. Taylor, Newmar, Norcold, Origio, Pacer, Perko, <br> Pettit, Pitts, Tasco, Teleflex, Tempo, Todd, Uniden, United Resin <br> Corp., Valor, Vetus, Volvo AeroCo <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Chandler / Supply Store / Dock Shop <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Yacht Service Company <br> </div> </div> </section> <p class="mrgn-tp-lg text-right small hidden-print"> <a href="#wb-cont">top of page</a> </p> <!-- Technology Profile --> <!-- Market Profile --> <!-- Sector Information --> <details class="mrgn-tp-md mrgn-bttm-md"> <summary> Third-Party Information Liability Disclaimer </summary> <p> Some of the information on this Web page has been provided by external sources. The Government of Canada is not responsible for the accuracy, reliability or currency of the information supplied by external sources. Users wishing to rely upon this information should consult directly with the source of the information. Content provided by external sources is not subject to official languages, privacy and accessibility requirements. </p> </details> </details> <details id="details-panel2"> <summary> Contacts </summary> <h2 class="wb-invisible"> Contact information </h2> <!-- Contact Information --> <section class="container-fluid"> <div class="row mrgn-tp-lg"> <div class="col-md-3"> <strong> Lee Toole </strong></div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Title: </strong> </div> <div class="col-md-7"> Sales Manager<br> </div> </div> <div class="row mrgn-lft-md"> <div class="col-md-5"> <strong> Telephone: </strong> </div> <div class="col-md-7"> (902) 928-1900 </div> </div> </section> </details> <details id="details-panel3"> <summary> Description </summary> <h2 class="wb-invisible"> Company description </h2> <section class="container-fluid"> <div class="row"> <div class="col-md-5"> <strong> Country of Ownership: </strong> </div> <div class="col-md-7"> Canada &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Exporting: </strong> </div> <div class="col-md-7"> No &nbsp; </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Industry (NAICS): </strong> </div> <div class="col-md-7"> 441220 - Motorcycle, Boat and Other Motor Vehicle Dealers </div> </div> <div class="row"> <div class="col-md-5"> <strong> Alternate Industries (NAICS): </strong> </div> <div class="col-md-7"> 417990 - All Other Machinery, Equipment and Supplies Wholesaler-Distributors<br> </div> </div> <div class="row"> <div class="col-md-5"> <strong> Primary Business Activity: </strong> </div> <div class="col-md-7"> Trading House / Wholesaler / Agent and Distributor &nbsp; </div> </div> </section> </details> <details id="details-panel4"> <summary> Products, services and licensing </summary> <h2 class="wb-invisible"> Product / Service / Licensing </h2> <section class="container-fluid"> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> BOAT PARTS AND ACCESSORIES DISTRIBUTOR <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-12"> Lines Distributed: <br> 3M, ACR, Ancor, Audiovox, Beckson, Beclawat, Bomar, Buck <br> Algonquin, Centek/Vernatone, Cobra Wire &amp; Cable, Fizwright, Foss, <br> Freeman, Garelick, Globe Rubber, Gresen, Groco, Guest, H.O. <br> Bostrom, Heart Interface, Hella, Micrologic, Morse, MP Pumps, <br> Mustang, N.A. Taylor, Newmar, Norcold, Origio, Pacer, Perko, <br> Pettit, Pitts, Tasco, Teleflex, Tempo, Todd, Uniden, United Resin <br> Corp., Valor, Vetus, Volvo AeroCo <br> <br> <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Chandler / Supply Store / Dock Shop <br> </div> </div> <div class="row mrgn-bttm-md"> <div class="col-md-3"> <strong> Service Name: </strong> </div> <div class="col-md-9"> Yacht Service Company <br> </div> </div> </section> </details> </div> </div> <div class="row"> <div class="col-md-12 text-right"> Last Update Date 2015-05-15 </div> </div> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z --> <!-- End Body Content --> <!-- Begin Body Foot --> <!-- End Body Foot --> <!-- END MAIN TABLE --> <!-- End body --> <!-- Begin footer --> <div class="row pagedetails"> <div class="col-sm-5 col-xs-12 datemod"> <dl id="wb-dtmd"> <dt class=" hidden-print">Date Modified:</dt> <dd class=" hidden-print"> <span><time>2017-03-02</time></span> </dd> </dl> </div> <div class="clear visible-xs"></div> <div class="col-sm-4 col-xs-6"> </div> <div class="col-sm-3 col-xs-6 text-right"> </div> <div class="clear visible-xs"></div> </div> </main> <footer role="contentinfo" id="wb-info"> <nav role="navigation" class="container wb-navcurr"> <h2 class="wb-inv">About government</h2> <!-- EPIC FOOTER BEGIN --> <!-- EPI-11638 Contact us --> <ul class="list-unstyled colcount-sm-2 colcount-md-3"> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07026.html#pageid=E048-H00000&amp;from=Industries">Contact us</a></li> <li><a href="https://www.canada.ca/en/government/dept.html">Departments and agencies</a></li> <li><a href="https://www.canada.ca/en/government/publicservice.html">Public service and military</a></li> <li><a href="https://www.canada.ca/en/news.html">News</a></li> <li><a href="https://www.canada.ca/en/government/system/laws.html">Treaties, laws and regulations</a></li> <li><a href="https://www.canada.ca/en/transparency/reporting.html">Government-wide reporting</a></li> <li><a href="http://pm.gc.ca/eng">Prime Minister</a></li> <li><a href="https://www.canada.ca/en/government/system.html">How government works</a></li> <li><a href="http://open.canada.ca/en/">Open government</a></li> </ul> </nav> <div class="brand"> <div class="container"> <div class="row"> <nav class="col-md-10 ftr-urlt-lnk"> <h2 class="wb-inv">About this site</h2> <ul> <li><a href="https://www.canada.ca/en/social.html">Social media</a></li> <li><a href="https://www.canada.ca/en/mobile.html">Mobile applications</a></li> <li><a href="http://www1.canada.ca/en/newsite.html">About Canada.ca</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html">Terms and conditions</a></li> <li><a href="http://www.ic.gc.ca/eic/site/icgc.nsf/eng/h_07033.html#p1">Privacy</a></li> </ul> </nav> <div class="col-xs-6 visible-sm visible-xs tofpg"> <a href="#wb-cont">Top of Page <span class="glyphicon glyphicon-chevron-up"></span></a> </div> <div class="col-xs-6 col-md-2 text-right"> <object type="image/svg+xml" tabindex="-1" role="img" data="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/assets/wmms-blk.svg" aria-label="Symbol of the Government of Canada"></object> </div> </div> </div> </div> </footer> <!--[if gte IE 9 | !IE ]><!--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/wet-boew.min.js"></script> <!--<![endif]--> <!--[if lt IE 9]> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/ie8-wet-boew2.min.js"></script> <![endif]--> <script src="/utils/scripts/_WET_4-0/apps/themes-dist/gcweb/js/theme.min.js"></script> <!-- EPI-10519 --> <span class="wb-sessto" data-wb-sessto='{"inactivity": 1800000, "reactionTime": 180000, "sessionalive": 1800000, "logouturl": "/app/ccc/srch/cccSrch.do?lang=eng&prtl=1"}'></span> <script src="/eic/home.nsf/js/jQuery.externalOpensInNewWindow.js"></script> <!-- EPI-11190 - Webtrends --> <script src="/eic/home.nsf/js/webtrends.js"></script> <script>var endTime = new Date();</script> <noscript> <div><img alt="" id="DCSIMG" width="1" height="1" src="//wt-sdc.ic.gc.ca/dcs6v67hwe0ei7wsv8g9fv50d_3k6i/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=9.4.0&amp;dcssip=www.ic.gc.ca"/></div> </noscript> <!-- /Webtrends --> <!-- JS deps --> <script src="/eic/home.nsf/js/jquery.imagesloaded.js"></script> <!-- EPI-11262 - Util JS --> <script src="/eic/home.nsf/js/_WET_4-0_utils_canada.min.js"></script> <!-- EPI-11383 --> <script src="/eic/home.nsf/js/jQuery.icValidationErrors.js"></script> <span style="display:none;" id='app-info' data-project-groupid='' data-project-artifactid='' data-project-version='' data-project-build-timestamp='' data-issue-tracking='' data-scm-sha1='' data-scm-sha1-abbrev='' data-scm-branch='' data-scm-commit-date=''></span> </body></html> <!-- End Footer --> <!-- - Artifact ID: CBW - IMBS - CCC Search WAR - Group ID: ca.gc.ic.strategis.imbs.ccc.search - Version: 3.26 - Built-By: bamboo - Build Timestamp: 2017-03-02T21:29:28Z -->
html/templates/editCardName.html
NeoBrackets/Brackets-Trello
<div id="brackets-trello-edit-card-name" class="template modal"> <div class="modal-header"> <h1 class="dialog-title">{{strings.TITLE_EDIT_CARD_NAME}}</h1> </div> <div class="modal-body"> <div class="form-horizontal"> <div class="control-group"> <input type="text" class="card-name" placeholder="{{strings.LBL_CARD_NAME}}" value="{{cardName}}"> </div> </div> </div> <div class="modal-footer"> <button class="dialog-button btn primary" data-button-id="save">{{strings.BTN_DONE}}</button> <button class="dialog-button btn" data-button-id="cancel">{{strings.BTN_CANCEL}}</button> </div> </div>
app/views/NewContact.scala.html
jamestvu/digits
@(contactForm: Form[views.formdata.ContactFormData], telephoneTypeMap: Map[String, Boolean], standings: List[String]) @import helper._ @import bootstrap3._ @Main("New Contact") { <div class="container"> @form(routes.Application.postContact(), 'class -> "form-horizontal") { <input type="hidden" name="@contactForm("id").name" id="@contactForm("id").id" value="@contactForm("id").value"> <!-- Name --> @Text(contactForm("firstName"), label = "First", placeholder = "First Name", help = "") @Text(contactForm("lastName"), label = "Last", placeholder = "Last Name", help = "") @Telephone(contactForm("telephone"), label = "Phone", placeholder = "Telephone", help = "", contactForm("telephoneType"), optionMap = telephoneTypeMap, isMultiple = false) <!-- Standings --> @Radiobuttons(contactForm("standing"), label = "Standing", buttonNameList = standings, help = "") <div class="form-group"> <div class="col-sm-offset-2 col-sm-10"> <button type="submit" class="btn btn-default">Add</button> </div> </div> } </div> }
app/templates/device_lcd_list.html
thorrak/fermentrack
{% extends "sitewide/flat_ui_template.html" %} {% load custom_tags %} {% load static %} {% block title %}All Controllers{% endblock %} {% block header_scripts %} <link href="{% static "css/dashboard_revised.css" %}" rel="stylesheet"> {% endblock %} {% block content %} <h1>Devices</h1> {% if not all_devices %} No fermentation devices configured yet. To get started, add a new device: <ul> <li><a href="{% url 'device_guided_select_device' %}">Add new device (guided)</a></li> <li><a href="{% url 'device_add' %}">Add new device (advanced)</a></li> </ul> {% else %} <!-- Start vue LCD container --> <div id="lcdapp"> <!-- Start vue LCD loop div --> <div v-for="lcd in lcds"> <!-- Start row for LCD --> <div class="row"> <!-- Start LCD Display Box --> <div class="col-lg-4 col-md-12" style="text-align: center"> <div class="dashpanel dashpanel-top bg-black" style="height: 125px;"> <div style="width: 290px"> <div id="lcd.device_name" class="lcddisplay"> <span class="lcd-text"> <span class="lcd-line" id="lcd-line-0" v-html="lcd.lcd_data[0]"></span> <span class="lcd-line" id="lcd-line-1" v-html="lcd.lcd_data[1]"></span> <span class="lcd-line" id="lcd-line-2" v-html="lcd.lcd_data[2]"></span> <span class="lcd-line" id="lcd-line-3" v-html="lcd.lcd_data[3]"></span> </span> </div> </div> </div> </div> <!-- End LCD Display Box --> <!-- Start Beer Name Header --> <div class="col-lg-5 col-md-6"> <!-- TODO - Figure if I can get this to snap above the previous pane on resize --> <a v-bind:href="lcd.device_url"> <div class="dashpanel dashpanel-top bg-carrot"> <div class="dash-icon dash-icon-lg" style="right: 15; left: inherit;"><i class="fa fa-tasks fa-fw"></i></div> {# Vue.js uses the same template tags ({{ and }}) as does Django. Use verbatim to escape. #} <div class="dash-data" style="text-align: left">Device: {% verbatim %}{{ lcd.device_name }}{% endverbatim %}</div> <div class="dashpanel-divider"></div> <div class="dash-desc"> <div class="pull-left"> View Dashboard</div> <div class="pull-right"><i class="fa fa-arrow-circle-right"></i></div> <div class="clearfix"></div> </div> </div> </a> </div> <!-- End Beer Name Header --> <!-- Start Mode Control Box --> <div class="col-lg-3 col-md-6"> <a href="#" data-toggle="modal" v-bind:data-target="lcd.modal_name"> <div class="dashpanel dashpanel-top bg-concrete" style="height: 125px"> <div class="dash-icon dash-icon-lg"><i class="fa fa-bolt fa-fw"></i></div> {# <div class="dashpanel-title">Control Mode</div>#} {# TODO - Get this to show the actual temperature control mode #} {# <div class="dash-data" id="dashControlMode">Beer Profile</div>#} <div class="dash-data">Control Mode</div> <div class="dashpanel-divider"></div> <div class="dash-desc"> {# <div class="pull-left" >Change Mode</div>#} <div class="pull-left" >Set Mode</div> <div class="pull-right"><i class="fa fa-arrow-circle-right"></i></div> <div class="clearfix"></div> </div> </div> </a> </div> <!-- End Mode Control Box --> </div> <!-- End row for LCD --> </div> <!-- End vue LCD loop div --> </div> <!-- End vue application container --> {# Add all the modals for controlling temperatures #} {% for this_device in all_devices %} {% temp_control_modal this_device %} {% endfor %} {% endif %} {% endblock %} {% block scripts %} {% load static %} <script type="text/javascript" src="{% static "vendor/vue/js/vue.min.js" %}"></script> <script type="text/javascript" src="{% static "js/lcd.js" %}"></script> {% endblock %}
src/index.html
matthijsgroen/game-play
<!doctype html> <html itemscope itemtype="http://schema.org/Article"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>SpeedLazer, A 2D Space adventure!</title> <meta name="description" content="A Space shoot-em-up (SHMUP). Designed for keyboard or controller play" /> <!-- Schema.org markup for Google+ --> <meta itemprop="name" content="Play SpeedLazer!"> <meta itemprop="description" content="A Space shoot-em-up (SHMUP). Best played with keyboard or controller"> <meta name="author" content="Matthijs Groen"> <meta itemprop="author" content="Matthijs Groen"> <meta itemprop="image" content="http://speedlazer.net/images/share-speedlazer.jpg"> <meta itemprop="image.itemtype" content="image/jpeg"> <!-- Twitter Card data --> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@speedlazergame"> <meta name="twitter:title" content="Play SpeedLazer!"> <meta name="twitter:description" content="A 2D space adventure! Best played with keyboard or controller"> <meta name="twitter:creator" content="@matthijsgroen"> <meta name="twitter:image" content="http://speedlazer.net/images/share-speedlazer.jpg"> <meta name="twitter:image:src" content="http://speedlazer.net/images/share-speedlazer.jpg"> <!-- Open Graph data --> <meta property="og:title" content="Play SpeedLazer!" /> <meta property="og:type" content="article" /> <meta property="og:url" content="http://speedlazer.net/" /> <meta property="og:image" content="http://speedlazer.net/images/share-speedlazer.jpg" /> <meta property="og:image:type" content="image/jpeg" /> <meta itemprop="image" content="http://speedlazer.net/images/share-speedlazer.jpg" /> <meta itemprop="name" content="SpeedLazer"> <meta itemprop="description" content="A 2D space adventure! Best played with keyboard or controller"> <meta property="og:description" content="A 2D space adventure! Best played with keyboard or controller" /> <meta property="og:site_name" content="SpeedLazer" /> <meta property="fb:app_id" content="1772254276379174" /> <meta name="viewport" content="width=device-width"> <link href='https://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'> </head> <body> <div id="theater"> <div id="cr-stage"></div> </div> <footer> <span id="version"></span> <span class="copyright"> &copy; 1981 </span> <a class="github-button" href="https://github.com/speedlazer/speedlazer" data-icon="octicon-star" aria-label="Star speedlazer/speedlazer on GitHub">Star</a> <a href="https://twitter.com/speedlazergame" class="twitter-follow-button" data-show-count="false">Follow @speedlazergame</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script> <div class="fb-follow" data-href="https://www.facebook.com/SpeedLazerGame/" data-layout="standard" data-size="small" data-show-faces="false" data-colorscheme="dark" data-width="300" style="vertical-align:top;zoom:1;*display:inline"></div> <button type="button">Fullscreen</button> </footer> <script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script> </body> </html>
src/main/webapp/admin/views/monitor/reports.html
PendikBelediyesi/AquilaMonitor
<div class="container-fluid"> <div class="row"> <div class="col-lg-12"><h1 class="page-header">Monitor Reports</h1></div> <!-- /.col-lg-12 --> </div> <!-- /.row --> </div> <div class="row"> <div class="col-lg-12" ng-controller="monitorReportCtrl"> <div class="panel panel-primary"> <div class="panel-heading"> Monitor Report List</div> <!-- /.panel-heading --> <div class="panel-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-hover" id="at-list-table"> <thead> <tr> <th width="10%"># <th width="30%">Description <th width="20%">Method <th width="20%">Protocol <th width="10%">Status <tbody> <tr ng-repeat="el in listBean"> <td>{{el.id}} <td>{{el.desc}} <td>{{el.method}} <td>{{el.protocol}} <td>{{el.status}} </table> </div> <!-- /.table-responsive --> </div> <div class="panel-footer"> </div> <delete></delete> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-12 --></div>
12_ReactJS Fundamentals/02_components_demo/src/App.css
akkirilov/SoftUniProject
body { background-color: #222; color:white; font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif } p { line-height: 1.5; } h1 { text-align: center; } .container { width: 800px; padding: 10px; margin: auto; } .container section { margin: 10px 0; position: relative; padding: 10px; background: black; border-radius: 10px; height: 240px; display: flex; } #slider > .image-container { flex-grow: 10; height:230px; text-align: center; } img { max-height: 100%; } .padding-right { margin-right: 50px; display: inline-block; } .details { float: left; } .thumb { max-height: 100px; } .padding-left-10 { padding-left: 10px; } .roster-image-container { flex-grow: 1; text-align: center; padding: 1px; } .button { flex-grow: 1; } .button:hover { cursor: pointer; } #bio .image { flex-grow: 1; } #bio .info { flex-grow: 2; padding: 10px 30px; } #bio .info p:last-child { text-indent: 20px; }
page/11/index.html
asnaedae/asnaedae.github.io
<!DOCTYPE html> <html lang="en-us"> <head prefix="og: http://ogp.me/ns#"> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <meta property="og:title" content=" Mike&#39;s ramblings" /> <meta name="theme-color" content="#f0f0f0" /> <meta property="og:site_name" content="Mike&#39;s ramblings" /> <meta property="og:url" content="https://dubdubdub.co.uk/" /> <meta property="og:type" content="website" /> <title> Mike&#39;s ramblings </title> <link rel="stylesheet" href="https://dubdubdub.co.uk/css/bootstrap.min.css" /> <link rel="stylesheet" href="https://dubdubdub.co.uk/css/main.css" /> <link rel="stylesheet" href="https://dubdubdub.co.uk/css/font-awesome.min.css" /> <link rel="stylesheet" href="https://dubdubdub.co.uk/css/github.css" /> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400" type="text/css"> <link rel="shortcut icon" href="https://dubdubdub.co.uk/images/favicon.ico" /> <link rel="apple-touch-icon" href="https://dubdubdub.co.uk/images/apple-touch-icon.png" /> <link href="https://dubdubdub.co.uk/index.xml" rel="alternate" type="application/rss+xml" title="Mike&#39;s ramblings" /> </head> <body> <header class="global-header" style="background-image:url( /images/bg.jpg )"> <section class="header-text"> <h1><a href="https://dubdubdub.co.uk/">Mike&#39;s ramblings</a></h1> <div class="tag-line"> Random notes ... </div> <div class="sns-links hidden-print"> <a href="mike@dubdubdub.co.uk"> <i class="fa fa-envelope"></i> </a> <a href="https://github.com/asnaedae" target="_blank"> <i class="fa fa-github"></i> </a> <a href="https://reddit.com/user/gifane" target="_blank"> <i class="fa fa-reddit-alien"></i> </a> <a href="https://linkedin.com/in/mikewallis" target="_blank"> <i class="fa fa-linkedin"></i> </a> <a href="https://keybase.io/asnaedae" target="_blank"> <i class="fa fa-key"></i> </a> </div> <a href="https://dubdubdub.co.uk/index.xml" class="btn-header btn-subscribe hidden-xs"> <i class="fa fa-rss" aria-hidden="true"></i> &nbsp;Subscribe </a> </section> </header> <main class="container"> <div class="article-list"> <article> <header> <h2><a href="https://dubdubdub.co.uk/posts/2008-01-10-microsoft-buys-fast/">FAST purchase</a></h2> <div class="post-meta clearfix"> <div class="post-date pull-left"> Posted on <time datetime="2008-01-10T00:00:00Z"> Jan 10, 2008 </time> </div> </div> </header> <div> Oh interesting stuff there - I&rsquo;ve always liked the idea of FAST (not cheap as a search platform) but they&rsquo;ve certainly thought a bit about how to scale - will be interesting to see if this mean&rsquo;s a change to the supported platforms and roadmap moving forward http://go.theregister.com/feed/www.theregister.co.uk/2008/01/08/microsoft_to_acquire_fast/ Wants to mine web with Fast buy Microsoft is to acquire Norwegian business search engine company Fast Search and Transfer for 6. </div> <footer> <ul class="pager"> <li class="next"><a href="https://dubdubdub.co.uk/posts/2008-01-10-microsoft-buys-fast/">Read more <span aria-hidden="true">&raquo;</span></a></li> </ul> </footer> </article> <hr/> <article> <header> <h2><a href="https://dubdubdub.co.uk/posts/2007-12-05-piracy/">piracy in the real world</a></h2> <div class="post-meta clearfix"> <div class="post-date pull-left"> Posted on <time datetime="2007-12-05T00:00:00Z"> Dec 5, 2007 </time> </div> </div> </header> <div> well was quite strange this evening as I&rsquo;ve just finished Frederick Forsythe&rsquo;s &ldquo;The Afghan&rdquo;, which giving the game away slighly deals with some terrorists stealing a large ship or two. So I was having quite a sense of déjà-vu watching a documentary on one of the discovery channels about the same subject. Or of course it might just be that the film-makers read the same books! Though they did raise a few good points about the close of the cold war allowing for a large surge in the numbers of piracy encounters in recent years, as the drop in the numbers of regular navy vessels in the oceans fell, though I&rsquo;m also wondering if the increase in the freedom of information as well as increased availability of arms - such as the RPG7 - also has something to do with it. </div> <footer> <ul class="pager"> <li class="next"><a href="https://dubdubdub.co.uk/posts/2007-12-05-piracy/">Read more <span aria-hidden="true">&raquo;</span></a></li> </ul> </footer> </article> <hr/> <article> <header> <h2><a href="https://dubdubdub.co.uk/posts/2007-11-16-time-machine/">time machine with smbfs</a></h2> <div class="post-meta clearfix"> <div class="post-date pull-left"> Posted on <time datetime="2007-11-16T00:00:00Z"> Nov 16, 2007 </time> </div> </div> </header> <div> Well there is some undocumented methods to make time machine work on non-locally attached storage, and although it might be disabled in patches - this works pretty well: As a regular user and in a terminal $ defaults write com.apple.systempreferences TMShowUnsupportedNetworkVolumes 1 Then when you visit the time machine preferences you can choose a network share as a TM location. Now it&rsquo;s very tempting to get a little mac mini for some zfs/nfs goodness </div> </article> <hr/> <article> <header> <h2><a href="https://dubdubdub.co.uk/posts/2007-10-03-travel-tips/">Google travel tips</a></h2> <div class="post-meta clearfix"> <div class="post-date pull-left"> Posted on <time datetime="2007-10-03T00:00:00Z"> Oct 3, 2007 </time> </div> </div> </header> <div> Heh, well ok, I didn&rsquo;t know but when abroad and you need to use google, it can be slightly tricky to use if you don&rsquo;t know the local language. So if you use :- Norwegian Google Homepage It&rsquo;ll change your default language to english - this also works with changing back to anything like Russian Google Homepage To swap yourself to Russian - very helpful - previously i was also hand adding ? </div> <footer> <ul class="pager"> <li class="next"><a href="https://dubdubdub.co.uk/posts/2007-10-03-travel-tips/">Read more <span aria-hidden="true">&raquo;</span></a></li> </ul> </footer> </article> <hr/> <article> <header> <h2><a href="https://dubdubdub.co.uk/posts/2007-09-06-troubleshooting-escenic/">troubleshooting escenic</a></h2> <div class="post-meta clearfix"> <div class="post-date pull-left"> Posted on <time datetime="2007-09-06T00:00:00Z"> Sep 6, 2007 </time> </div> </div> </header> <div> Error: Internal error: There was a database error: \ java.security.AccessControlException: access denied \ (neo.xredsys.auth.UserPermission 1 create) Solution: You&rsquo;ve not followed the installation instructions and not changed the java.security settings: -Djava.security.policy=/u01/apps/escenic/engine-4.3-2/security/java.policy -Djava.security.auth.login.config=/u01/apps/escenic/engine-4.3-2/security/jaas.config </div> </article> </div> <nav class="pagination" role="navigation"> <hr /> <a class="newer-posts" href="/page/10/"><span aria-hidden="true">&laquo;</span> Newer Posts</a> <span class="page-number">Page 11 of 15</span> <a class="older-posts" href="/page/12/">Older Posts <span aria-hidden="true">&raquo;</span></a> </nav> </main> <footer class="container global-footer"> <div class="copyright-note pull-left"> &copy; Copyright notice </div> <div class="sns-links hidden-print"> <a href="mike@dubdubdub.co.uk"> <i class="fa fa-envelope"></i> </a> <a href="https://github.com/asnaedae" target="_blank"> <i class="fa fa-github"></i> </a> <a href="https://reddit.com/user/gifane" target="_blank"> <i class="fa fa-reddit-alien"></i> </a> <a href="https://linkedin.com/in/mikewallis" target="_blank"> <i class="fa fa-linkedin"></i> </a> <a href="https://keybase.io/asnaedae" target="_blank"> <i class="fa fa-key"></i> </a> </div> </footer> <script src="https://dubdubdub.co.uk/js/highlight.pack.js"></script> <script> hljs.initHighlightingOnLoad(); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-51487894-1', 'auto'); ga('send', 'pageview'); </script> </body> </html>
app/views/styleguide/dyson_sphere/block_lists.html
LaunchAcademy/dyson_sphere
<!doctype html> <html> <head> <title>a brand new styleguide: Block Lists</title> <link rel="stylesheet" href="../assets/dyson_sphere/styleguide.scss"> </head> <body> <div class="contain-to-grid full-top-bar"> <nav class="top-bar" data-topbar> <ul class="title-area"> <li class="name"> <h1><a href="#">DysonSphere Styleguide</a></h1> </li> </ul> <section class="top-bar-section"> <ul class="right"> <li><a href="https://github.com/LaunchAcademy/dyson_sphere" target="_blank">Github</a></li> </ul> </section> </nav> </div> <dl class="sub-nav mts"> <div class="row"> <dd class="active"> <a href="/styleguide/block_lists.html">Block Lists</a> </dd> <dd class=""> <a href="/styleguide/layout_and_formatting.html">Layout and Formatting</a> </dd> <dd class=""> <a href="/styleguide/buttons.html">Buttons</a> </dd> <dd class=""> <a href="/styleguide/markdown_rendering.html">Markdown Rendering</a> </dd> <dd class=""> <a href="/styleguide/index.html">Colors and Fonts</a> </dd> <dd class=""> <a href="/styleguide/headers_and_hero_images.html">Headers and Hero Images</a> </dd> <dd class=""> <a href="/styleguide/pricing_tables.html">Pricing Tables</a> </dd> </div> </dl> <div class="row"> <div class="columns"> <section class="content"> <div class="columns "> <h1 id="block_lists" class="styleguide">Block Lists</h1> <p>Block lists resemble single-column tables.</p> <div class="codeExample"> <div class="exampleOutput"> <ul class="block"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </div> <div class="codeBlock"> <div class="highlight panel"> <pre><span class="nt">&lt;ul</span> <span class="na">class=</span><span class="s">"block"</span><span class="nt">&gt;</span> <span class="nt">&lt;li&gt;</span>Item 1<span class="nt">&lt;/li&gt;</span> <span class="nt">&lt;li&gt;</span>Item 2<span class="nt">&lt;/li&gt;</span> <span class="nt">&lt;li&gt;</span>Item 3<span class="nt">&lt;/li&gt;</span> <span class="nt">&lt;/ul&gt;</span></pre> </div> </div> </div> </div> <div class="row text-center"> <div class="columns"> <footer> <p>This documentation generated using <a href="http://github.com/trulia/hologram">Hologram</a> </footer> </div> </div> </section> </div> </div> </body> </html>
zh-Hans/examples/simulate-flocking.html
mayaman26/p5js-website
<!DOCTYPE html> <html class="no-js" lang="zh-Hans"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="p5.js a JS client-side library for creating graphic and interactive experiences, based on the core principles of Processing."> <title tabindex="1">examples | p5.js</title> <link rel="stylesheet" href="/assets/css/all.css?v=4c8161"> <link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Inconsolata&display=swap" rel="stylesheet"> <link rel="shortcut icon" href="/../../assets/img/favicon.ico"> <link rel="icon" href="/../../assets/img/favicon.ico"> <script src="/../../assets/js/vendor/jquery-1.12.4.min.js"></script> <script src="/../../assets/js/vendor/ace-nc/ace.js"></script> <script src="/../../assets/js/vendor/ace-nc/mode-javascript.js"></script> <script src="/../../assets/js/vendor/prism.js"></script> <script src="/assets/js/init.js?v=97b4f7"></script> <script src="/../../assets/js/vendor/pangu.min.js"></script> </head> <body> <a href="#content" class="sr-only">跳到内容</a> <!-- p5*js language buttons --> <div id="i18n-btn"> <h2 id="i18n-settings" class="sr-only">语言设定</h2> <ul id="i18n-buttons" aria-labelledby="i18n-settings"> <li><a href='#' lang='en' data-lang='en'>English</a></li> <li><a href='#' lang='es' data-lang='es'>Español</a></li> <li><a href='#' lang='zh-Hans' data-lang='zh-Hans'>简体中文</a></li> <li><a href='#' lang='ko' data-lang='ko'>한국어</a></li> <li><a href='#' lang='hi' data-lang='hi'>हिन्दी</a></li> </ul> </div> <!-- .container --> <div class="container"> <!-- logo --> <header id="lockup"> <a href="/zh-Hans/"> <img src="/../../assets/img/p5js.svg" alt="p5 homepage" id="logo_image" class="logo" /> <div id="p5_logo"></div> </a> </header> <!-- close logo --> <div id="examples-page"> <!-- site navigation --> <div class="column-span"> <nav class="sidebar-menu-nav-element"> <h2 id="menu-title" class="sr-only">网站导航</h2> <input class="sidebar-menu-btn" type="checkbox" id="sidebar-menu-btn" /> <label class="sidebar-menu-icon" for="sidebar-menu-btn"><span class="sidebar-nav-icon"></span></label> <ul id="menu" class="sidebar-menu" aria-labelledby="menu-title"> <li><a href="/zh-Hans/">主页</a></li> <li><a href="https://editor.p5js.org">编辑器</a></li> <li><a href="/zh-Hans/download/">下载</a></li> <li><a href="/zh-Hans/download/support.html">捐赠</a></li> <li><a href="/zh-Hans/get-started/">入门</a></li> <li><a href="/zh-Hans/reference/">参考文献</a></li> <li><a href="/zh-Hans/libraries/">程式库</a></li> <li><a href="/zh-Hans/learn/">学习</a></li> <li><a href="/zh-Hans/teach/">教学</a></li> <li><a href="/zh-Hans/examples/">范例</a></li> <li><a href="/zh-Hans/books/">书籍</a></li> <li><a href="/zh-Hans/community/">社群</a></li> <li><a href="https://showcase.p5js.org">案例展示</a></li> <li><a href="https://discourse.processing.org/c/p5js" target=_blank class="other-link">论坛</a></li> <li><a href="http://github.com/processing/p5.js" target=_blank class="other-link">GitHub</a></li> <li><a href="http://twitter.com/p5xjs" target=_blank class="other-link">Twitter</a></li> <li><a href="https://www.instagram.com/p5xjs/" target=_blank class="other-link">Instagram</a></li> <li><a href="https://discord.gg/SHQ8dH25r9" target=_blank class="other-link">Discord</a></li> </ul> </nav> </div> <div class="column-span"> <main id="content" > <p id="backlink"><a href="./">&lt; 返回</a></p> <h1 id='example-name'>example name placeholder</h1> <p id='example-desc'>example description placeholder</p> <div id="exampleDisplay"> <div class="edit_space"> <button id="toggleTextOutput" class="sr-only">toggle text output</button> <button id="runButton" class="edit_button">run</button> <button id="resetButton" class="reset_button">reset</button> <button id="copyButton" class="copy_button">copy</button> </div> <div id="exampleEditor"></div> <iframe id="exampleFrame" src="../../assets/examples/example.html" aria-label="example arialabel placeholder" ></iframe> </div> <p><a style="border-bottom:none !important;" href="https://creativecommons.org/licenses/by-nc-sa/4.0/" target=_blank><img src="https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png" alt="creative commons license" style="width:88px"/></a></p> </main> <footer> <h2 class="sr-only">归功于</h2> <p> p5.js 目前由<a href='http://qianqian-ye.com/' target="_blank">Qianqian Ye</a>与<a href='http://www.outofambit.com/' target="_blank">evelyn masso</a>领导,原创者为<a href='https://lauren-mccarthy.com' target="_blank">Lauren Lee McCarthy</a>。p5.js 是在<a href="https://processingfoundation.org/" target="_blank">Processing Foundation</a>和<a href="https://itp.nyu.edu/itp/" target="_blank">NYU ITP</a>的支持下由其合作社群所开发。形象及平面设计<a href="https://jereljohnson.com/" target="_blank">Jerel Johnson</a>。<a href="/zh-Hans/copyright.html">&copy; 版权信息</a>。 </p> </footer> </div> <!-- end column-span --> <!-- outside of column for footer to go across both --> <p class="clearfix"> &nbsp; </p> <object type="image/svg+xml" data="../../assets/img/thick-asterisk-alone.svg" id="asterisk-design-element" aria-hidden="true"> </object> <!-- <script src="../../assets/js/vendor/ace-nc/ace.js"></script> <script src="../../assets/js/examples.js"></script> --> <script> window._p5jsExample = '../../assets/examples/zh-Hans/09_Simulate/02_Flocking.js'; window.addEventListener('load', function() { // examples.init('../../assets/examples/zh-Hans/09_Simulate/02_Flocking.js'); if (false) { var isMobile = window.matchMedia("only screen and (max-width: 767px)"); // isMobile is true if viewport is less than 768 pixels wide document.getElementById('exampleFrame').style.display = 'none'; if (isMobile.matches) { document.getElementById('notMobile-message').style.display = 'none'; document.getElementById('isMobile-displayButton').style.display = 'block'; } else { document.getElementById('notMobile-message').style.display = 'block'; document.getElementById('isMobile-displayButton').style.display = 'none'; document.getElementById('runButton').style.display = 'none'; document.getElementById('resetButton').style.display = 'none'; document.getElementById('copyButton').style.display = 'none'; } } }, true); </script> </div><!-- end id="get-started-page" --> <script src="/../../assets/js/examples.js"></script> </div> <!-- close class='container'--> <nav id="family" aria-labelledby="processing-sites-heading"> <h2 id="processing-sites-heading" class="sr-only">Processing Sister Sites</h2> <ul id="processing-sites" aria-labelledby="processing-sites-heading"> <li><a href="https://processing.org">Processing</a></li> <li><a class="here" href="/zh-Hans/">p5.js</a></li> <li><a href="https://py.processing.org/">Processing.py</a></li> <li><a href="https://android.processing.org/">Processing for Android</a></li> <li><a href="https://pi.processing.org/">Processing for Pi</a></li> <li><a href="https://processingfoundation.org/">Processing Foundation</a></li> </ul> <a tabindex="1" href="#content" id="skip-to-content">Skip to main content</a> </nav> <script> var langs = ["en","es","hi","ko","zh-Hans"]; (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-53383000-1', 'auto'); ga('send', 'pageview'); $(window).ready(function() { if (window.location.pathname !== '/' && window.location.pathname !== '/index.html') { $('#top').remove(); } else { $('#top').show(); } }); </script> </body> </html>
c17ff62/html/annotated.html
v8-dox/v8-dox.github.io
<!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 v8.7.0 - v8.8.1: Class 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/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 v8.7.0 - v8.8.1 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="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 class="current"><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> </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="header"> <div class="headertitle"> <div class="title">Class List</div> </div> </div><!--header--> <div class="contents"> <div class="textblock">Here are the classes, structs, unions and interfaces with brief descriptions:</div><div class="directory"> <div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span>]</div><table class="directory"> <tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespacev8.html" target="_self">v8</a></td><td class="desc"></td></tr> <tr id="row_0_0_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><b>internal</b></td><td class="desc"></td></tr> <tr id="row_0_0_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1internal_1_1CustomArguments.html" target="_self">CustomArguments</a></td><td class="desc"></td></tr> <tr id="row_0_0_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1internal_1_1Internals.html" target="_self">Internals</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1internal_1_1SmiTagging.html" target="_self">SmiTagging</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1internal_1_1SmiTagging_3_014_01_4.html" target="_self">SmiTagging&lt; 4 &gt;</a></td><td class="desc"></td></tr> <tr id="row_0_0_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1internal_1_1SmiTagging_3_018_01_4.html" target="_self">SmiTagging&lt; 8 &gt;</a></td><td class="desc"></td></tr> <tr id="row_0_1_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1AccessorSignature.html" target="_self">AccessorSignature</a></td><td class="desc"></td></tr> <tr id="row_0_2_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ActivityControl.html" target="_self">ActivityControl</a></td><td class="desc"></td></tr> <tr id="row_0_3_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1AlignOfHelper.html" target="_self">AlignOfHelper</a></td><td class="desc"></td></tr> <tr id="row_0_4_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_4_" class="arrow" onclick="toggleFolder('0_4_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1AllocationProfile.html" target="_self">AllocationProfile</a></td><td class="desc"></td></tr> <tr id="row_0_4_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1AllocationProfile_1_1Allocation.html" target="_self">Allocation</a></td><td class="desc"></td></tr> <tr id="row_0_4_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1AllocationProfile_1_1Node.html" target="_self">Node</a></td><td class="desc"></td></tr> <tr id="row_0_5_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Array.html" target="_self">Array</a></td><td class="desc"></td></tr> <tr id="row_0_6_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_6_" class="arrow" onclick="toggleFolder('0_6_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ArrayBuffer.html" target="_self">ArrayBuffer</a></td><td class="desc"></td></tr> <tr id="row_0_6_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ArrayBuffer_1_1Allocator.html" target="_self">Allocator</a></td><td class="desc"></td></tr> <tr id="row_0_6_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ArrayBuffer_1_1Contents.html" target="_self">Contents</a></td><td class="desc"></td></tr> <tr id="row_0_7_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ArrayBufferView.html" target="_self">ArrayBufferView</a></td><td class="desc"></td></tr> <tr id="row_0_8_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Boolean.html" target="_self">Boolean</a></td><td class="desc"></td></tr> <tr id="row_0_9_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1BooleanObject.html" target="_self">BooleanObject</a></td><td class="desc"></td></tr> <tr id="row_0_10_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_10_" class="arrow" onclick="toggleFolder('0_10_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Context.html" target="_self">Context</a></td><td class="desc"></td></tr> <tr id="row_0_10_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Context_1_1BackupIncumbentScope.html" target="_self">BackupIncumbentScope</a></td><td class="desc"></td></tr> <tr id="row_0_10_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Context_1_1Scope.html" target="_self">Scope</a></td><td class="desc"></td></tr> <tr id="row_0_11_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ConvertableToTraceFormat.html" target="_self">ConvertableToTraceFormat</a></td><td class="desc"></td></tr> <tr id="row_0_12_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1CopyablePersistentTraits.html" target="_self">CopyablePersistentTraits</a></td><td class="desc"></td></tr> <tr id="row_0_13_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1CpuProfile.html" target="_self">CpuProfile</a></td><td class="desc"></td></tr> <tr id="row_0_14_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1CpuProfileDeoptFrame.html" target="_self">CpuProfileDeoptFrame</a></td><td class="desc"></td></tr> <tr id="row_0_15_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1CpuProfileDeoptInfo.html" target="_self">CpuProfileDeoptInfo</a></td><td class="desc"></td></tr> <tr id="row_0_16_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_16_" class="arrow" onclick="toggleFolder('0_16_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1CpuProfileNode.html" target="_self">CpuProfileNode</a></td><td class="desc"></td></tr> <tr id="row_0_16_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1CpuProfileNode_1_1LineTick.html" target="_self">LineTick</a></td><td class="desc"></td></tr> <tr id="row_0_17_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1CpuProfiler.html" target="_self">CpuProfiler</a></td><td class="desc"></td></tr> <tr id="row_0_18_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_19_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1DataView.html" target="_self">DataView</a></td><td class="desc"></td></tr> <tr id="row_0_20_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Date.html" target="_self">Date</a></td><td class="desc"></td></tr> <tr id="row_0_21_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_21_" class="arrow" onclick="toggleFolder('0_21_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Debug.html" target="_self">Debug</a></td><td class="desc"></td></tr> <tr id="row_0_21_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Debug_1_1ClientData.html" target="_self">ClientData</a></td><td class="desc"></td></tr> <tr id="row_0_21_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Debug_1_1EventDetails.html" target="_self">EventDetails</a></td><td class="desc"></td></tr> <tr id="row_0_21_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Debug_1_1Message.html" target="_self">Message</a></td><td class="desc"></td></tr> <tr id="row_0_22_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1DefaultGlobalMapTraits.html" target="_self">DefaultGlobalMapTraits</a></td><td class="desc"></td></tr> <tr id="row_0_23_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1DefaultPersistentValueMapTraits.html" target="_self">DefaultPersistentValueMapTraits</a></td><td class="desc"></td></tr> <tr id="row_0_24_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1DefaultPersistentValueVectorTraits.html" target="_self">DefaultPersistentValueVectorTraits</a></td><td class="desc"></td></tr> <tr id="row_0_25_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1DeserializeInternalFieldsCallback.html" target="_self">DeserializeInternalFieldsCallback</a></td><td class="desc"></td></tr> <tr id="row_0_26_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_26_" class="arrow" onclick="toggleFolder('0_26_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1EmbedderHeapTracer.html" target="_self">EmbedderHeapTracer</a></td><td class="desc"></td></tr> <tr id="row_0_26_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1EmbedderHeapTracer_1_1AdvanceTracingActions.html" target="_self">AdvanceTracingActions</a></td><td class="desc"></td></tr> <tr id="row_0_27_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1EscapableHandleScope.html" target="_self">EscapableHandleScope</a></td><td class="desc"></td></tr> <tr id="row_0_28_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Eternal.html" target="_self">Eternal</a></td><td class="desc"></td></tr> <tr id="row_0_29_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Exception.html" target="_self">Exception</a></td><td class="desc"></td></tr> <tr id="row_0_30_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Extension.html" target="_self">Extension</a></td><td class="desc"></td></tr> <tr id="row_0_31_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ExtensionConfiguration.html" target="_self">ExtensionConfiguration</a></td><td class="desc"></td></tr> <tr id="row_0_32_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1External.html" target="_self">External</a></td><td class="desc"></td></tr> <tr id="row_0_33_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ExternalOneByteStringResourceImpl.html" target="_self">ExternalOneByteStringResourceImpl</a></td><td class="desc"></td></tr> <tr id="row_0_34_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ExternalResourceVisitor.html" target="_self">ExternalResourceVisitor</a></td><td class="desc"></td></tr> <tr id="row_0_35_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Float32Array.html" target="_self">Float32Array</a></td><td class="desc"></td></tr> <tr id="row_0_36_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Float64Array.html" target="_self">Float64Array</a></td><td class="desc"></td></tr> <tr id="row_0_37_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Function.html" target="_self">Function</a></td><td class="desc"></td></tr> <tr id="row_0_38_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1FunctionCallbackInfo.html" target="_self">FunctionCallbackInfo</a></td><td class="desc"></td></tr> <tr id="row_0_39_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1FunctionTemplate.html" target="_self">FunctionTemplate</a></td><td class="desc"></td></tr> <tr id="row_0_40_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Global.html" target="_self">Global</a></td><td class="desc"></td></tr> <tr id="row_0_41_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1GlobalValueMap.html" target="_self">GlobalValueMap</a></td><td class="desc"></td></tr> <tr id="row_0_42_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HandleScope.html" target="_self">HandleScope</a></td><td class="desc"></td></tr> <tr id="row_0_43_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapCodeStatistics.html" target="_self">HeapCodeStatistics</a></td><td class="desc"></td></tr> <tr id="row_0_44_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapGraphEdge.html" target="_self">HeapGraphEdge</a></td><td class="desc"></td></tr> <tr id="row_0_45_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapGraphNode.html" target="_self">HeapGraphNode</a></td><td class="desc"></td></tr> <tr id="row_0_46_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapObjectStatistics.html" target="_self">HeapObjectStatistics</a></td><td class="desc"></td></tr> <tr id="row_0_47_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_47_" class="arrow" onclick="toggleFolder('0_47_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapProfiler.html" target="_self">HeapProfiler</a></td><td class="desc"></td></tr> <tr id="row_0_47_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapProfiler_1_1ObjectNameResolver.html" target="_self">ObjectNameResolver</a></td><td class="desc"></td></tr> <tr id="row_0_47_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1HeapProfiler_1_1RetainerInfos.html" target="_self">RetainerInfos</a></td><td class="desc"></td></tr> <tr id="row_0_48_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapSnapshot.html" target="_self">HeapSnapshot</a></td><td class="desc"></td></tr> <tr id="row_0_49_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapSpaceStatistics.html" target="_self">HeapSpaceStatistics</a></td><td class="desc"></td></tr> <tr id="row_0_50_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1HeapStatistics.html" target="_self">HeapStatistics</a></td><td class="desc"></td></tr> <tr id="row_0_51_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1HeapStatsUpdate.html" target="_self">HeapStatsUpdate</a></td><td class="desc"></td></tr> <tr id="row_0_52_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1IdleTask.html" target="_self">IdleTask</a></td><td class="desc"></td></tr> <tr id="row_0_53_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1IndexedPropertyHandlerConfiguration.html" target="_self">IndexedPropertyHandlerConfiguration</a></td><td class="desc"></td></tr> <tr id="row_0_54_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Int16Array.html" target="_self">Int16Array</a></td><td class="desc"></td></tr> <tr id="row_0_55_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Int32.html" target="_self">Int32</a></td><td class="desc"></td></tr> <tr id="row_0_56_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Int32Array.html" target="_self">Int32Array</a></td><td class="desc"></td></tr> <tr id="row_0_57_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Int8Array.html" target="_self">Int8Array</a></td><td class="desc"></td></tr> <tr id="row_0_58_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Integer.html" target="_self">Integer</a></td><td class="desc"></td></tr> <tr id="row_0_59_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_59_" class="arrow" onclick="toggleFolder('0_59_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Isolate.html" target="_self">Isolate</a></td><td class="desc"></td></tr> <tr id="row_0_59_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Isolate_1_1AllowJavascriptExecutionScope.html" target="_self">AllowJavascriptExecutionScope</a></td><td class="desc"></td></tr> <tr id="row_0_59_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1Isolate_1_1CreateParams.html" target="_self">CreateParams</a></td><td class="desc"></td></tr> <tr id="row_0_59_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Isolate_1_1DisallowJavascriptExecutionScope.html" target="_self">DisallowJavascriptExecutionScope</a></td><td class="desc"></td></tr> <tr id="row_0_59_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Isolate_1_1Scope.html" target="_self">Scope</a></td><td class="desc"></td></tr> <tr id="row_0_59_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Isolate_1_1SuppressMicrotaskExecutionScope.html" target="_self">SuppressMicrotaskExecutionScope</a></td><td class="desc"></td></tr> <tr id="row_0_60_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_60_" class="arrow" onclick="toggleFolder('0_60_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1JitCodeEvent.html" target="_self">JitCodeEvent</a></td><td class="desc"></td></tr> <tr id="row_0_60_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1JitCodeEvent_1_1line__info__t.html" target="_self">line_info_t</a></td><td class="desc"></td></tr> <tr id="row_0_60_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1JitCodeEvent_1_1name__t.html" target="_self">name_t</a></td><td class="desc"></td></tr> <tr id="row_0_61_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1JSON.html" target="_self">JSON</a></td><td class="desc"></td></tr> <tr id="row_0_62_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Local.html" target="_self">Local</a></td><td class="desc"></td></tr> <tr id="row_0_63_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Location.html" target="_self">Location</a></td><td class="desc"></td></tr> <tr id="row_0_64_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Locker.html" target="_self">Locker</a></td><td class="desc"></td></tr> <tr id="row_0_65_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Map.html" target="_self">Map</a></td><td class="desc"></td></tr> <tr id="row_0_66_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Maybe.html" target="_self">Maybe</a></td><td class="desc"></td></tr> <tr id="row_0_67_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1MaybeLocal.html" target="_self">MaybeLocal</a></td><td class="desc"></td></tr> <tr id="row_0_68_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Message.html" target="_self">Message</a></td><td class="desc"></td></tr> <tr id="row_0_69_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1MicrotasksScope.html" target="_self">MicrotasksScope</a></td><td class="desc"></td></tr> <tr id="row_0_70_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Module.html" target="_self">Module</a></td><td class="desc"></td></tr> <tr id="row_0_71_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Name.html" target="_self">Name</a></td><td class="desc"></td></tr> <tr id="row_0_72_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1NamedPropertyHandlerConfiguration.html" target="_self">NamedPropertyHandlerConfiguration</a></td><td class="desc"></td></tr> <tr id="row_0_73_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1NativeWeakMap.html" target="_self">NativeWeakMap</a></td><td class="desc"></td></tr> <tr id="row_0_74_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1NonCopyablePersistentTraits.html" target="_self">NonCopyablePersistentTraits</a></td><td class="desc"></td></tr> <tr id="row_0_75_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Number.html" target="_self">Number</a></td><td class="desc"></td></tr> <tr id="row_0_76_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1NumberObject.html" target="_self">NumberObject</a></td><td class="desc"></td></tr> <tr id="row_0_77_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Object.html" target="_self">Object</a></td><td class="desc"></td></tr> <tr id="row_0_78_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ObjectTemplate.html" target="_self">ObjectTemplate</a></td><td class="desc"></td></tr> <tr id="row_0_79_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1OutputStream.html" target="_self">OutputStream</a></td><td class="desc"></td></tr> <tr id="row_0_80_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Persistent.html" target="_self">Persistent</a></td><td class="desc"></td></tr> <tr id="row_0_81_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentBase.html" target="_self">PersistentBase</a></td><td class="desc"></td></tr> <tr id="row_0_82_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentHandleVisitor.html" target="_self">PersistentHandleVisitor</a></td><td class="desc"></td></tr> <tr id="row_0_83_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentValueMap.html" target="_self">PersistentValueMap</a></td><td class="desc"></td></tr> <tr id="row_0_84_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_84_" class="arrow" onclick="toggleFolder('0_84_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentValueMapBase.html" target="_self">PersistentValueMapBase</a></td><td class="desc"></td></tr> <tr id="row_0_84_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentValueMapBase_1_1PersistentValueReference.html" target="_self">PersistentValueReference</a></td><td class="desc"></td></tr> <tr id="row_0_85_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PersistentValueVector.html" target="_self">PersistentValueVector</a></td><td class="desc"></td></tr> <tr id="row_0_86_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Platform.html" target="_self">Platform</a></td><td class="desc"></td></tr> <tr id="row_0_87_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Primitive.html" target="_self">Primitive</a></td><td class="desc"></td></tr> <tr id="row_0_88_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Private.html" target="_self">Private</a></td><td class="desc"></td></tr> <tr id="row_0_89_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_89_" class="arrow" onclick="toggleFolder('0_89_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Promise.html" target="_self">Promise</a></td><td class="desc"></td></tr> <tr id="row_0_89_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Promise_1_1Resolver.html" target="_self">Resolver</a></td><td class="desc"></td></tr> <tr id="row_0_90_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PromiseRejectMessage.html" target="_self">PromiseRejectMessage</a></td><td class="desc"></td></tr> <tr id="row_0_91_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PropertyCallbackInfo.html" target="_self">PropertyCallbackInfo</a></td><td class="desc"></td></tr> <tr id="row_0_92_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1PropertyDescriptor.html" target="_self">PropertyDescriptor</a></td><td class="desc"></td></tr> <tr id="row_0_93_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Proxy.html" target="_self">Proxy</a></td><td class="desc"></td></tr> <tr id="row_0_94_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1RegExp.html" target="_self">RegExp</a></td><td class="desc"></td></tr> <tr id="row_0_95_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1RegisterState.html" target="_self">RegisterState</a></td><td class="desc"></td></tr> <tr id="row_0_96_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ResourceConstraints.html" target="_self">ResourceConstraints</a></td><td class="desc"></td></tr> <tr id="row_0_97_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1RetainedObjectInfo.html" target="_self">RetainedObjectInfo</a></td><td class="desc"></td></tr> <tr id="row_0_98_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ReturnValue.html" target="_self">ReturnValue</a></td><td class="desc"></td></tr> <tr id="row_0_99_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1SampleInfo.html" target="_self">SampleInfo</a></td><td class="desc"></td></tr> <tr id="row_0_100_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Script.html" target="_self">Script</a></td><td class="desc"></td></tr> <tr id="row_0_101_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_101_" class="arrow" onclick="toggleFolder('0_101_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptCompiler.html" target="_self">ScriptCompiler</a></td><td class="desc"></td></tr> <tr id="row_0_101_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1ScriptCompiler_1_1CachedData.html" target="_self">CachedData</a></td><td class="desc"></td></tr> <tr id="row_0_101_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptCompiler_1_1ExternalSourceStream.html" target="_self">ExternalSourceStream</a></td><td class="desc"></td></tr> <tr id="row_0_101_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptCompiler_1_1ScriptStreamingTask.html" target="_self">ScriptStreamingTask</a></td><td class="desc"></td></tr> <tr id="row_0_101_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptCompiler_1_1Source.html" target="_self">Source</a></td><td class="desc"></td></tr> <tr id="row_0_101_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptCompiler_1_1StreamedSource.html" target="_self">StreamedSource</a></td><td class="desc"></td></tr> <tr id="row_0_102_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptOrigin.html" target="_self">ScriptOrigin</a></td><td class="desc"></td></tr> <tr id="row_0_103_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ScriptOriginOptions.html" target="_self">ScriptOriginOptions</a></td><td class="desc"></td></tr> <tr id="row_0_104_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1SealHandleScope.html" target="_self">SealHandleScope</a></td><td class="desc"></td></tr> <tr id="row_0_105_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1SerializeInternalFieldsCallback.html" target="_self">SerializeInternalFieldsCallback</a></td><td class="desc"></td></tr> <tr id="row_0_106_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Set.html" target="_self">Set</a></td><td class="desc"></td></tr> <tr id="row_0_107_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_107_" class="arrow" onclick="toggleFolder('0_107_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1SharedArrayBuffer.html" target="_self">SharedArrayBuffer</a></td><td class="desc"></td></tr> <tr id="row_0_107_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1SharedArrayBuffer_1_1Contents.html" target="_self">Contents</a></td><td class="desc"></td></tr> <tr id="row_0_108_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Signature.html" target="_self">Signature</a></td><td class="desc"></td></tr> <tr id="row_0_109_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1SnapshotCreator.html" target="_self">SnapshotCreator</a></td><td class="desc"></td></tr> <tr id="row_0_110_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StackFrame.html" target="_self">StackFrame</a></td><td class="desc"></td></tr> <tr id="row_0_111_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StackTrace.html" target="_self">StackTrace</a></td><td class="desc"></td></tr> <tr id="row_0_112_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StartupData.html" target="_self">StartupData</a></td><td class="desc"></td></tr> <tr id="row_0_113_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StdGlobalValueMap.html" target="_self">StdGlobalValueMap</a></td><td class="desc"></td></tr> <tr id="row_0_114_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StdMapTraits.html" target="_self">StdMapTraits</a></td><td class="desc"></td></tr> <tr id="row_0_115_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StdPersistentValueMap.html" target="_self">StdPersistentValueMap</a></td><td class="desc"></td></tr> <tr id="row_0_116_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_116_" class="arrow" onclick="toggleFolder('0_116_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String.html" target="_self">String</a></td><td class="desc"></td></tr> <tr id="row_0_116_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String_1_1ExternalOneByteStringResource.html" target="_self">ExternalOneByteStringResource</a></td><td class="desc"></td></tr> <tr id="row_0_116_1_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String_1_1ExternalStringResource.html" target="_self">ExternalStringResource</a></td><td class="desc"></td></tr> <tr id="row_0_116_2_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String_1_1ExternalStringResourceBase.html" target="_self">ExternalStringResourceBase</a></td><td class="desc"></td></tr> <tr id="row_0_116_3_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String_1_1Utf8Value.html" target="_self">Utf8Value</a></td><td class="desc"></td></tr> <tr id="row_0_116_4_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1String_1_1Value.html" target="_self">Value</a></td><td class="desc"></td></tr> <tr id="row_0_117_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1StringObject.html" target="_self">StringObject</a></td><td class="desc"></td></tr> <tr id="row_0_118_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Symbol.html" target="_self">Symbol</a></td><td class="desc"></td></tr> <tr id="row_0_119_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1SymbolObject.html" target="_self">SymbolObject</a></td><td class="desc"></td></tr> <tr id="row_0_120_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Task.html" target="_self">Task</a></td><td class="desc"></td></tr> <tr id="row_0_121_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Template.html" target="_self">Template</a></td><td class="desc"></td></tr> <tr id="row_0_122_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Testing.html" target="_self">Testing</a></td><td class="desc"></td></tr> <tr id="row_0_123_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="structv8_1_1TickSample.html" target="_self">TickSample</a></td><td class="desc"></td></tr> <tr id="row_0_124_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_124_" class="arrow" onclick="toggleFolder('0_124_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1TracingController.html" target="_self">TracingController</a></td><td class="desc"></td></tr> <tr id="row_0_124_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1TracingController_1_1TraceStateObserver.html" target="_self">TraceStateObserver</a></td><td class="desc"></td></tr> <tr id="row_0_125_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1TracingCpuProfiler.html" target="_self">TracingCpuProfiler</a></td><td class="desc"></td></tr> <tr id="row_0_126_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1TryCatch.html" target="_self">TryCatch</a></td><td class="desc"></td></tr> <tr id="row_0_127_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1TypedArray.html" target="_self">TypedArray</a></td><td class="desc"></td></tr> <tr id="row_0_128_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Uint16Array.html" target="_self">Uint16Array</a></td><td class="desc"></td></tr> <tr id="row_0_129_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Uint32.html" target="_self">Uint32</a></td><td class="desc"></td></tr> <tr id="row_0_130_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Uint32Array.html" target="_self">Uint32Array</a></td><td class="desc"></td></tr> <tr id="row_0_131_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Uint8Array.html" target="_self">Uint8Array</a></td><td class="desc"></td></tr> <tr id="row_0_132_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Uint8ClampedArray.html" target="_self">Uint8ClampedArray</a></td><td class="desc"></td></tr> <tr id="row_0_133_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1UnboundScript.html" target="_self">UnboundScript</a></td><td class="desc"></td></tr> <tr id="row_0_134_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Unlocker.html" target="_self">Unlocker</a></td><td class="desc"></td></tr> <tr id="row_0_135_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1V8.html" target="_self">V8</a></td><td class="desc"></td></tr> <tr id="row_0_136_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1Value.html" target="_self">Value</a></td><td class="desc"></td></tr> <tr id="row_0_137_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_137_" class="arrow" onclick="toggleFolder('0_137_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ValueDeserializer.html" target="_self">ValueDeserializer</a></td><td class="desc"></td></tr> <tr id="row_0_137_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ValueDeserializer_1_1Delegate.html" target="_self">Delegate</a></td><td class="desc"></td></tr> <tr id="row_0_138_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_138_" class="arrow" onclick="toggleFolder('0_138_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ValueSerializer.html" target="_self">ValueSerializer</a></td><td class="desc"></td></tr> <tr id="row_0_138_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1ValueSerializer_1_1Delegate.html" target="_self">Delegate</a></td><td class="desc"></td></tr> <tr id="row_0_139_" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_139_" class="arrow" onclick="toggleFolder('0_139_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1WasmCompiledModule.html" target="_self">WasmCompiledModule</a></td><td class="desc"></td></tr> <tr id="row_0_139_0_" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1WasmCompiledModule_1_1TransferrableModule.html" target="_self">TransferrableModule</a></td><td class="desc"></td></tr> <tr id="row_0_140_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1WasmModuleObjectBuilder.html" target="_self">WasmModuleObjectBuilder</a></td><td class="desc"></td></tr> <tr id="row_0_141_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1WeakCallbackInfo.html" target="_self">WeakCallbackInfo</a></td><td class="desc"></td></tr> <tr id="row_0_142_" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8_1_1WeakCallbackObject.html" target="_self">WeakCallbackObject</a></td><td class="desc"></td></tr> <tr id="row_1_"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_1_" class="arrow" onclick="toggleFolder('1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><b>v8_inspector</b></td><td class="desc"></td></tr> <tr id="row_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1StringBuffer.html" target="_self">StringBuffer</a></td><td class="desc"></td></tr> <tr id="row_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1StringView.html" target="_self">StringView</a></td><td class="desc"></td></tr> <tr id="row_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8ContextInfo.html" target="_self">V8ContextInfo</a></td><td class="desc"></td></tr> <tr id="row_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_3_" class="arrow" onclick="toggleFolder('1_3_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8Inspector.html" target="_self">V8Inspector</a></td><td class="desc"></td></tr> <tr id="row_1_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8Inspector_1_1Channel.html" target="_self">Channel</a></td><td class="desc"></td></tr> <tr id="row_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8InspectorClient.html" target="_self">V8InspectorClient</a></td><td class="desc"></td></tr> <tr id="row_1_5_" class="even" style="display:none;"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_1_5_" class="arrow" onclick="toggleFolder('1_5_')">&#9658;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8InspectorSession.html" target="_self">V8InspectorSession</a></td><td class="desc"></td></tr> <tr id="row_1_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8InspectorSession_1_1Inspectable.html" target="_self">Inspectable</a></td><td class="desc"></td></tr> <tr id="row_1_6_" class="even" style="display:none;"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">C</span></span><a class="el" href="classv8__inspector_1_1V8StackTrace.html" target="_self">V8StackTrace</a></td><td class="desc"></td></tr> </table> </div><!-- directory --> </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>
Rust/share/doc/rust/html/core/i16/constant.MAX.html
ArcherSys/ArcherSys
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `MAX` constant in crate `core`."> <meta name="keywords" content="rust, rustlang, rust-lang, MAX"> <title>core::i16::MAX - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> <link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <a href='../../core/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../index.html'>core</a>::<wbr><a href='index.html'>i16</a></p><script>window.sidebarCurrent = {name: 'MAX', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press 'S' to search, '?' for more options..." type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>core</a>::<wbr><a href='index.html'>i16</a>::<wbr><a class='constant' href=''>MAX</a><wbr><a class='stability Stable' title=''>Stable</a></span><span class='out-of-band'><span id='render-detail'> <a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a> </span><a id='src-81' href='../../src/core/num/int_macros.rs.html#32'>[src]</a></span></h1> <pre class='rust const'>pub const MAX: <a href='../primitive.i16.html'>i16</a><code> = </code><code>!MIN</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div class="shortcuts"> <h1>Keyboard shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>typedef</code> (or <code>tdef</code>). </p> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "core"; window.playgroundUrl = "http://play.rust-lang.org/"; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script src="../../playpen.js"></script> <script async src="../../search-index.js"></script> </body> </html>
app/templates/styleguide/components/frame/skin/frameStandard.css
rebornlab/generator-reborn
/*doc --- parent: frame title: Standard Frame name: frameStandard --- ```html_example <div class="frameStandard"> <img alt="" src="http://placekitten.com/640/480"> </div> ``` */ .frameStandard { padding: 8px; }
doc/edu/icom4029/cool/core/StringTable.html
currysensei/cool-compiler
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Sun Oct 19 12:45:40 AST 2014 --> <title>StringTable</title> <meta name="date" content="2014-10-19"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="StringTable"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StringTable.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="../../../../edu/icom4029/cool/core/IntTable.html" title="class in edu.icom4029.cool.core"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../edu/icom4029/cool/core/Utilities.html" title="class in edu.icom4029.cool.core"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/icom4029/cool/core/StringTable.html" target="_top">Frames</a></li> <li><a href="StringTable.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_edu.icom4029.cool.core.AbstractTable">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">edu.icom4029.cool.core</div> <h2 title="Class StringTable" class="title">Class StringTable</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../edu/icom4029/cool/core/AbstractTable.html" title="class in edu.icom4029.cool.core">edu.icom4029.cool.core.AbstractTable</a></li> <li> <ul class="inheritance"> <li>edu.icom4029.cool.core.StringTable</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">StringTable</span> extends <a href="../../../../edu/icom4029/cool/core/AbstractTable.html" title="class in edu.icom4029.cool.core">AbstractTable</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field_summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields_inherited_from_class_edu.icom4029.cool.core.AbstractTable"> <!-- --> </a> <h3>Fields inherited from class&nbsp;edu.icom4029.cool.core.<a href="../../../../edu/icom4029/cool/core/AbstractTable.html" title="class in edu.icom4029.cool.core">AbstractTable</a></h3> <code><a href="../../../../edu/icom4029/cool/core/AbstractTable.html#idtable">idtable</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#inttable">inttable</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#stringtable">stringtable</a></code></li> </ul> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../edu/icom4029/cool/core/StringTable.html#StringTable()">StringTable</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../edu/icom4029/cool/core/StringTable.html#codeStringTable(int, java.io.PrintStream)">codeStringTable</a></strong>(int&nbsp;stringclasstag, java.io.PrintStream&nbsp;s)</code> <div class="block">Generates code for all string constants in the string table.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_edu.icom4029.cool.core.AbstractTable"> <!-- --> </a> <h3>Methods inherited from class&nbsp;edu.icom4029.cool.core.<a href="../../../../edu/icom4029/cool/core/AbstractTable.html" title="class in edu.icom4029.cool.core">AbstractTable</a></h3> <code><a href="../../../../edu/icom4029/cool/core/AbstractTable.html#addInt(int)">addInt</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#addString(java.lang.String)">addString</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#addString(java.lang.String, int)">addString</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#getSymbols()">getSymbols</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#lookup(int)">lookup</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#lookup(java.lang.String)">lookup</a>, <a href="../../../../edu/icom4029/cool/core/AbstractTable.html#toString()">toString</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="StringTable()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>StringTable</h4> <pre>public&nbsp;StringTable()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="codeStringTable(int, java.io.PrintStream)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>codeStringTable</h4> <pre>public&nbsp;void&nbsp;codeStringTable(int&nbsp;stringclasstag, java.io.PrintStream&nbsp;s)</pre> <div class="block">Generates code for all string constants in the string table.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>stringclasstag</code> - the class tag for String</dd><dd><code>s</code> - the output stream</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/StringTable.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="../../../../edu/icom4029/cool/core/IntTable.html" title="class in edu.icom4029.cool.core"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../edu/icom4029/cool/core/Utilities.html" title="class in edu.icom4029.cool.core"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?edu/icom4029/cool/core/StringTable.html" target="_top">Frames</a></li> <li><a href="StringTable.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#fields_inherited_from_class_edu.icom4029.cool.core.AbstractTable">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
themes/BluestNight/layouts/shortcodes/member.html
frdnd/freiraum-hugo
{{ $name := .Get 0 }} {{ range $.Site.Data.members }} {{ if (eq $name .Name) }} <div class="row vcenter memberbox"> <div class="member-avatar" class="row-item"> <img alt="{{ .Name }} profile picture" src="{{ with .Img }}{{ . | absURL }}{{ else }}{{ "images/profile.jpg" | absURL }}{{ end }}"> </div> <div class="row-item member-bio"> <div> <span class="widget-title">{{ .Name }} | {{ .Position }}</span> </div> <p> {{ .Bio }} </p> </div> </div> {{ end }} {{ end }}
bijia3.2/WebRoot/css/main.css
HuaDianSoft/kuangxiangzhe
body { margin-left: 10px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } .STYLE { font-size: 13px; color: #3980cd; font-weight: normal; } .STYLE3 { font-size: 12px; font-weight: bold; } .STYLE4 { font-size: 12px; color:#3e3e3e; }
public/css/style.css
ojengwa/jk
/* * Globals */ /* Links */ a, a:focus, a:hover { color: #e84c3d; } /* Custom default button */ .btn-default, .btn-default:hover, .btn-default:focus { color: #333; text-shadow: none; /* Prevent inheritence from `body` */ background-color: #e84c3d; border: 1px solid #e84c3d; } /* * Base structure */ html, body { min-height: 100%; } body { color: #e84c3d; background-color:#fff; } /* Padding for spacing */ .inner { padding: 30px; } /* * Header */ .masthead { text-align: left; min-height: 50px; } .masthead-brand { margin-top: 10px; margin-bottom: 10px; line-height: 50px; } .masthead .fa-music { display: none; } @media (max-width: 767px) { .masthead-brand { display: none; } .masthead .fa-music { display: block; } } .masthead-nav > li { display: inline-block; line-height: 50px; } .masthead-nav > li + li { margin-left: 20px; } .masthead-nav > li > a { padding: 0; margin: 10px 0; font-size: 16px; font-weight: bold; color: #e84c3d; /* IE8 proofing */ color: rgba(232,76,61,.75); border-bottom: 2px solid transparent; } .masthead-nav > li > a:hover, .masthead-nav > li > a:focus { background-color: transparent; border-bottom-color: rgba(232,76,61,.25); } .masthead-nav > .active > a, .masthead-nav > .active > a:hover, .masthead-nav > .active > a:focus { color: #e84c3d; border-bottom-color: #e84c3d; } .masthead-nav > li.volume { padding: 0; margin: 10px 0; font-size: 16px; font-weight: bold; color: #e84c3d; /* IE8 proofing */ color: rgba(232,76,61,.75); border-bottom: 2px solid transparent; } .masthead-nav > li.volume > .slider { display: inline-block; margin-bottom: -5px; margin-left: 5px; } .input-group { width: 100%; } /* * Cover */ .cover { padding: 0 20px; text-align: center; } .cover a { position: relative; display: block; width: 100%; max-width: 300px; margin: auto } .cover .fa-2x { position: absolute; top: 7px; right: 10px; } .cover a:hover .fa-2x { color: #d9534f; } .cover img { width: 100%; box-shadow: 0 0 3px #222; } .cover .btn-lg { padding: 10px 20px; font-weight: bold; } .cover .progress { width: 100%; height: 4px; margin: auto; } /** * Tracklist */ .tracklist tr { cursor: pointer; } .tracklist td > a { display: block; width: 100%; height: 100%; text-decoration: none; } .tracklist tr .fa-external-link { display: none; } .tracklist tr:hover .fa-external-link { display: inline; } .tracklist input::-webkit-input-placeholder { color: #aaa; } .tracklist input:-moz-placeholder { /* Firefox 18- */ color: #aaa; } .tracklist input::-moz-placeholder { /* Firefox 19+ */ color: #aaa; } .tracklist input:-ms-input-placeholder { color: #aaa; } /* * Footer */ .mastfoot { position: relative; bottom: 0; color: #999; /* IE8 proofing */ color: rgba(232,76,61,.5); } .mastfoot .boxed { margin-right: 5px; padding: 3px; border: dashed 2px white; text-decoration: none; cursor: -moz-grab; cursor: -webkit-grab; } .slider { cursor: pointer; width: 50px; /*-webkit-transform: rotateZ(-90deg);*/ /*transform: rotateZ(-90deg);*/ } .progress { background-color: #bbb; } .input-group-addon { background-color: #d9534f; }
templates/pinion/menu/footer-menu/css/style.css
friedolinfoerder/pinion
#footer ul.footer-menu:after { content:"."; display:block; clear:both; visibility:hidden; line-height:0; height:0; } #footer ul.footer-menu > li { float:right; } #footer ul.footer-menu > li > a { color:#edf2f2; font-family:Tahoma, Arial, Helvetica, sans-serif; font-size:14px; } #footer ul.footer-menu > li > a:after { content:"|"; color:#edf2f2; font-family:Tahoma, Arial, Helvetica, sans-serif; font-size:14px; padding:0 5px; } #footer ul.footer-menu > li:first-child > a:after { content:""; padding:0; } #footer ul.footer-menu > li:hover a { color:#ffffff; }
deps/boost/doc/html/boost/proto/when_Grammar___idp69308584.html
laborautonomo/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct template when&lt;Grammar, R(A...)&gt;</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../proto/reference.html#header.boost.proto.transform.when_hpp" title="Header &lt;boost/proto/transform/when.hpp&gt;"> <link rel="prev" href="when_Grammar___idp69303576.html" title="Struct template when&lt;Grammar, Fun *&gt;"> <link rel="next" href="when_Grammar___idp69308584/impl.html" title="Struct template impl"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td> <td align="center"><a href="../../../../index.html">Home</a></td> <td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="when_Grammar___idp69303576.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.transform.when_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="when_Grammar___idp69308584/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.proto.when_Grammar,__idp69308584"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct template when&lt;Grammar, R(A...)&gt;</span></h2> <p>boost::proto::when&lt;Grammar, R(A...)&gt; &#8212; A grammar element and a <a class="link" href="../../Transform.html" title="Concept Transform">Transform</a> that associates a transform with the grammar. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../proto/reference.html#header.boost.proto.transform.when_hpp" title="Header &lt;boost/proto/transform/when.hpp&gt;">boost/proto/transform/when.hpp</a>&gt; </span><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Grammar<span class="special">,</span> <span class="keyword">typename</span> R<span class="special">,</span> <span class="keyword">typename</span><span class="special">...</span> A<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="when_Grammar___idp69308584.html" title="Struct template when&lt;Grammar, R(A...)&gt;">when</a><span class="special">&lt;</span><span class="identifier">Grammar</span><span class="special">,</span> <span class="identifier">R</span><span class="special">(</span><span class="identifier">A</span><span class="special">...</span><span class="special">)</span><span class="special">&gt;</span> <span class="special">:</span> <span class="keyword"></span> <a class="link" href="transform.html" title="Struct template transform">proto::transform</a>&lt; when&lt;Grammar, R(A...)&gt; &gt; <span class="special">{</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <span class="keyword">typename</span> <span class="identifier">Grammar</span><span class="special">::</span><span class="identifier">proto_grammar</span> <a name="boost.proto.when_Grammar,__idp69308584.proto_grammar"></a><span class="identifier">proto_grammar</span><span class="special">;</span> <span class="comment">// member classes/structs/unions</span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <a class="link" href="../../Expr.html" title="Concept Expr">Expr</a><span class="special">,</span> <span class="keyword">typename</span> State<span class="special">,</span> <span class="keyword">typename</span> Data<span class="special">&gt;</span> <span class="keyword">struct</span> <a class="link" href="when_Grammar___idp69308584/impl.html" title="Struct template impl">impl</a> <span class="special">:</span> <span class="keyword"></span> <a class="link" href="transform_impl.html" title="Struct template transform_impl">proto::transform_impl</a>&lt; Expr, State, Data &gt; <span class="special">{</span> <span class="comment">// types</span> <span class="keyword">typedef</span> <a class="link" href="call.html" title="Struct template call">proto::call</a><span class="special">&lt;</span><span class="identifier">R</span><span class="special">(</span><span class="identifier">A</span><span class="special">...</span><span class="special">)</span><span class="special">&gt;</span> <a class="link" href="when_Grammar___idp69308584/impl.html#boost.proto.when_Grammar,__idp69308584.impl.call_"><span class="identifier">call_</span></a><span class="special">;</span> <span class="comment">// For exposition only</span> <span class="keyword">typedef</span> <a class="link" href="make.html" title="Struct template make">proto::make</a><span class="special">&lt;</span><span class="identifier">R</span><span class="special">(</span><span class="identifier">A</span><span class="special">...</span><span class="special">)</span><span class="special">&gt;</span> <a class="link" href="when_Grammar___idp69308584/impl.html#boost.proto.when_Grammar,__idp69308584.impl.make_"><span class="identifier">make_</span></a><span class="special">;</span> <span class="comment">// For exposition only</span> <span class="keyword">typedef</span> <span class="keyword">typename</span> <span class="identifier">mpl</span><span class="special">::</span><span class="identifier">if_</span><span class="special">&lt;</span><a class="link" href="is_callable.html" title="Struct template is_callable">proto::is_callable</a><span class="special">&lt;</span><span class="identifier">R</span><span class="special">&gt;</span><span class="special">,</span><span class="identifier">call_</span><span class="special">,</span><span class="identifier">make_</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <a class="link" href="when_Grammar___idp69308584/impl.html#boost.proto.when_Grammar,__idp69308584.impl.which"><span class="identifier">which</span></a><span class="special">;</span> <span class="comment">// For exposition only</span> <span class="keyword">typedef</span> <span class="keyword">typename</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">result_of</span><span class="special">&lt;</span><span class="identifier">which</span><span class="special">(</span><span class="identifier">Expr</span><span class="special">,</span> <span class="identifier">State</span><span class="special">,</span> <span class="identifier">Data</span><span class="special">)</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span> <a class="link" href="when_Grammar___idp69308584/impl.html#boost.proto.when_Grammar,__idp69308584.impl.result_type"><span class="identifier">result_type</span></a><span class="special">;</span> <span class="comment">// <a class="link" href="when_Grammar___idp69308584/impl.html#idp69260360-bb">public member functions</a></span> <span class="identifier">result_type</span> <a class="link" href="when_Grammar___idp69308584/impl.html#idp69260648-bb"><span class="keyword">operator</span><span class="special">(</span><span class="special">)</span></a><span class="special">(</span><span class="keyword">typename</span> <span class="identifier">impl</span><span class="special">::</span><span class="identifier">expr_param</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">impl</span><span class="special">::</span><span class="identifier">state_param</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">impl</span><span class="special">::</span><span class="identifier">data_param</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span> <span class="special">}</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp191592136"></a><h2>Description</h2> <p> Use <code class="computeroutput">proto::when&lt;&gt;</code> to override a grammar's default transform with a custom transform. It is for use when composing larger transforms by associating smaller transforms with individual rules in your grammar. </p> <p> The <code class="computeroutput">when&lt;G, R(A...)&gt;</code> form accepts either a <a class="link" href="../../CallableTransform.html" title="Concept CallableTransform">CallableTransform</a> or an <a class="link" href="../../ObjectTransform.html" title="Concept ObjectTransform">ObjectTransform</a> as its second parameter. <code class="computeroutput">proto::when&lt;&gt;</code> uses <code class="computeroutput"><a class="link" href="is_callable.html" title="Struct template is_callable">proto::is_callable</a>&lt;R&gt;::value</code> to distinguish between the two, and uses <code class="computeroutput"><a class="link" href="call.html" title="Struct template call">proto::call&lt;&gt;</a></code> to evaluate <a class="link" href="../../CallableTransform.html" title="Concept CallableTransform">CallableTransform</a>s and <code class="computeroutput"><a class="link" href="make.html" title="Struct template make">proto::make&lt;&gt;</a></code> to evaluate <a class="link" href="../../ObjectTransform.html" title="Concept ObjectTransform">ObjectTransform</a>s. </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2008 Eric Niebler<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="when_Grammar___idp69303576.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../proto/reference.html#header.boost.proto.transform.when_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="when_Grammar___idp69308584/impl.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
app/views/digital-register/journeys/v10/account-created-caution.html
LandRegistry/property-page-html-prototypes
{{<govuk_template}} {{$pageTitle}} Create an account {{/pageTitle}} {{$head}} {{>includes/head}} <link href="/public/vendor/leaflet/leaflet.css" media="screen" rel="stylesheet" type="text/css" /> <link href="/public/stylesheets/alphagov-static.css" media="screen" rel="stylesheet" type="text/css" /> <link href="/public/stylesheets/land-registry-elements.css" media="screen" rel="stylesheet" type="text/css" /> {{/head}} {{$content}} <main id="content" role="main"> {{>digital-register/includes/banner}} <div class="grid-row"> <div class="column-quarter column-flip"> <div class="account"> <a href="search-page">Sign out</a> </div> </div> </div> <h1 class="heading-xlarge">Account created</h1> <div class="text"> <p>Thank you for registering. You will need your email address and password to sign-in in the future.</p> <p> <a href="purchase-documents-caution" class="button">Continue</a> </p> </div> </main> {{/content}} {{$footerSupportLinks}} {{>property-page/prototype-v1/includes/footer-support-links}} {{/footerSupportLinks}} {{$bodyEnd}} {{>includes/scripts}} {{/bodyEnd}} {{/govuk_template}}
clean/Linux-x86_64-4.09.1-2.0.6/released/8.10.2/mtac/1.3.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>mtac: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.10.2 / mtac - 1.3.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> mtac <small> 1.3.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-11-30 11:23:11 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-30 11:23:11 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.09.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.09.1 Official release 4.09.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;gmalecha@gmail.com&quot; homepage: &quot;https://github.com/beta-ziliani/mtac-plugin&quot; dev-repo: &quot;git+https://github.com/beta-ziliani/mtac-plugin.git&quot; bug-reports: &quot;https://github.com/beta-ziliani/mtac-plugin/issues&quot; authors: [&quot;Beta Ziliani&quot;] license: &quot;MIT&quot; build: [ [&quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Mtac&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.5&quot; &amp; &lt; &quot;8.6&quot;} ] synopsis: &quot;Typed Tactics for Coq 8.5&quot; flags: light-uninstall url { src: &quot;https://github.com/beta-ziliani/mtac-plugin/archive/v1.3.0.tar.gz&quot; checksum: &quot;md5=3e5b17dca8c533fee2a08bf6ab437f1b&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-mtac.1.3.0 coq.8.10.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.10.2). The following dependencies couldn&#39;t be met: - coq-mtac -&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-mtac.1.3.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> 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>
clean/Linux-x86_64-4.05.0-2.0.6/released/8.8.0/compcert/2.4.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>compcert: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.8.0 / compcert - 2.4.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> compcert <small> 2.4.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-09-14 18:10:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-14 18:10:41 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.13 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.8.0 Formal proof management system. num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;dev@clarus.me&quot; homepage: &quot;http://compcert.inria.fr/&quot; dev-repo: &quot;git+https://github.com/AbsInt/CompCert.git&quot; bug-reports: &quot;https://github.com/AbsInt/CompCert/issues&quot; license: &quot;INRIA Non-Commercial License Agreement&quot; build: [ [&quot;./configure&quot; &quot;ia32-linux&quot;] [make &quot;-j%{jobs}%&quot;] ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.4pl4&quot; &amp; &lt; &quot;8.5~&quot;} &quot;menhir&quot; {&gt;= &quot;20140422&quot;} ] synopsis: &quot;The CompCert C compiler&quot; authors: &quot;Xavier Leroy &lt;xavier.leroy@inria.fr&gt;&quot; extra-files: [&quot;coq-compcert.install&quot; &quot;md5=a7efe759bff32c6aac2c2ca483d5a266&quot;] url { src: &quot;http://compcert.inria.fr/release/compcert-2.4.tgz&quot; checksum: &quot;md5=26f0f55316be9e8d65568d05e8dcb89f&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-compcert.2.4.0 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-compcert -&gt; coq &lt; 8.5~ -&gt; ocaml &lt; 4.03.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-compcert.2.4.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>
轮播.html
WuZheXiao/wuzhexiao.github.com
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script src="js/jquery-1.12.4.min.js" type="text/javascript" charset="utf-8"></script> <style type="text/css"> #box{ width: 600px; height: 260px; margin: auto; overflow: hidden; position: relative; } img{ width: 600px; height: 260px; } ul{ list-style: none; /*display: none;*/ } ul>li{ float: left; } ol{ list-style: none; position:absolute; top:210px; left: 430px; } ol li{ width: 20px; height: 20px; text-align: center; margin-left: 3px; float: left; background-color: #abc; border: 1px solid red; border-radius: 50%; cursor: default; } </style> <script src="js/jquery-1.12.4.min.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div id="box"> <ul id="ul1"> <li><img src="img/04v58PICESm_1024.jpg"/></li> <li><img src="img/26eea19e66edc0b186bd574e8a3c8675.jpg"/></li> <li><img src="img/u=512206046,2695174116&fm=23&gp=0.jpg"/></li> <li><img src="img/u=1333912589,3020911558&fm=23&gp=0.jpg"/></li> <li><img src="img/u=1518531634,917906026&fm=23&gp=0.jpg"/></li> </ul> <ol id="ol"> <li class="op1">1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> </ol> </div> </body> <script type="text/javascript"> $(function(){ $("#ol li").mouseenter(function(){ $(this).addClass("op1").siblings().removeClass("op1"); $("#ul1 li").eq($(this).index()).slideDown().siblings().slideUp(); $("#ol li").eq($(this).index()).animate({ opacity:"0.4", backgroundColor:'#FF0000' },500).siblings().animate({ opacity:"1", }); }); $("#ol li").mouseleave(function(){ $(this).addClass("op1").siblings().removeClass("op1"); $("#ul1 li").eq($(this).index()).slideDown().siblings().slideUp(); $("#ol li").eq($(this).index()).animate({ opacity:"1", },500) }); var timer=null; var iNow=0; timer=setInterval(function(){ iNow++; if(iNow>$("#ol li").length-1){ iNow=0; } $("#ol li").eq(iNow).trigger("mouseenter"); },4000); }) </script> </html>
src/Viteloge/CoreBundle/Resources/descriptions/60058.html
donaldinou/frontend
<div class="commune_descr limited"> <p> Beauvoir est un village situé dans le département de l'Oise en Picardie. Elle totalisait 269 habitants en 2008.</p> <p>Si vous pensez venir habiter à Beauvoir, vous pourrez facilement trouver une maison à acheter. </p> <p>La ville propose quelques équipements, elle dispose, entre autres, de une boucle de randonnée.</p> <p>À proximité de Beauvoir sont situées les villes de <a href="{{VLROOT}}/immobilier/bonvillers_60085/">Bonvillers</a> à 2&nbsp;km, 201 habitants, <a href="{{VLROOT}}/immobilier/rouvroy-les-merles_60555/">Rouvroy-les-Merles</a> localisée à 5&nbsp;km, 72 habitants, <a href="{{VLROOT}}/immobilier/tartigny_60627/">Tartigny</a> à 4&nbsp;km, 237 habitants, <a href="{{VLROOT}}/immobilier/vendeuil-caply_60664/">Vendeuil-Caply</a> située à 2&nbsp;km, 417 habitants, <a href="{{VLROOT}}/immobilier/troussencourt_60648/">Troussencourt</a> à 5&nbsp;km, 326 habitants, <a href="{{VLROOT}}/immobilier/breteuil_60104/">Breteuil</a> à 3&nbsp;km, 4&nbsp;267 habitants, entre autres. De plus, Beauvoir est située à seulement 26&nbsp;km de <a href="{{VLROOT}}/immobilier/beauvais_60057/">Beauvais</a>.</p> <p>Le parc d'habitations, à Beauvoir, était réparti en 2011 en zero appartements et 122 maisons soit un marché relativement équilibré.</p> </div>
oa2main/Widgets/UnitTestWidget/css/widget.css
scarpazi/oa2
#waktest-waf { padding: 5px; cursor: move; } #waktest-waf-log { position: absolute; top: 40px; left: 3px; right: 2px; overflow: auto !important; z-index: -3; padding: 2px; display: block; opacity: 0; border-radius: 0 !important; } #waktest-waf-run { float: right; } #waktest-waf-run[disabled] { opacity: .25; } #waktest-waf-file { position: absolute; top: 16px; left: 40px; font-weight: bold; } #waktest-waf canvas { display: block !important; vertical-align: initial !important; } #waktest-waf .progress { background-color: transparent !important; box-shadow: none !important; } #waktest-close { position: absolute; bottom: -392px; right: -352px; display: none; cursor: pointer; opacity: .5; }
kmf/demo/tinygrid/components/timedemo-smartgrid-app-globals/timedemo-smartgrid-app-globals.html
dukeboard/dukeboard.github.io
<link rel="import" href="../polymer/polymer.html"> <polymer-element name="timedemo-smartgrid-app-globals"> <script> Polymer('timedemo-smartgrid-app-globals', { // load SmartGrid module _smartGridModule: null, _saver: null, _loader: null, _cloner: null, _compare: null, _datastore: null, factory: null, NUM_METERS: 8, NUM_TIME_WINDOWS: 10, TIME_WINDOW_SIZE: 900000, // 15 mins START_DATE: new Date(2014, 6, 2, 0, 0, 0, 0), NUM_PREDICTION_WINDOWS: 10, smartGridModel: null, timepoints: null, ready: function () { this._smartGridModule = Kotlin.modules['lu.snt.timedemo.model.js']; this._saver = new this._smartGridModule.lu.snt.timedemo.smartgrid.serializer.XMIModelSerializer(); this._loader = new this._smartGridModule.lu.snt.timedemo.smartgrid.loader.JSONModelLoader(); this._cloner = new this._smartGridModule.lu.snt.timedemo.smartgrid.cloner.DefaultModelCloner(); this._compare = new this._smartGridModule.lu.snt.timedemo.smartgrid.compare.DefaultModelCompare(); this._datastore = new this._smartGridModule.org.kevoree.modeling.api.persistence.MemoryDataStore(); this.factory = new this._smartGridModule.lu.snt.timedemo.smartgrid.impl.DefaultSmartgridFactory(); this.factory.datastore = this._datastore; this.timepoints = new Array(); this.smartGridModel = this.createSmartGridModel(); }, newVisitor: function () { return new this._smartGridModule.org.kevoree.modeling.api.util.ModelVisitor(); }, createSmartGridModel: function () { // create model var tp0 = this.factory.time(this.START_DATE.getTime() + ""); var grid = tp0.factory().createSmartGridModel(); this.factory.setRoot(grid); var concentrator = tp0.factory().createConcentrator(); concentrator.name = "concentrator"; grid.addConcentrators(concentrator); for (var i = 0; i < this.NUM_METERS; i++) { var meter = tp0.factory().createSmartMeter(); meter.name = "meter_" + i; meter.consumption = 0; meter.concentrator = concentrator; grid.addMeters(meter); } tp0.commit(); // var s = this._saver.serialize(grid); // console.log(s); // console.log('----------------------------------'); this.timepoints.push(this.START_DATE); // add consumption history for (var i = 0; i < this.NUM_METERS; i++) { var lastTime = this.START_DATE.getTime(); for (var j = 1; j < this.NUM_TIME_WINDOWS; j++) { var randomMax = (2 * this.TIME_WINDOW_SIZE); var randomMin = (this.TIME_WINDOW_SIZE); var random = Math.floor((Math.random() * randomMax) + randomMin); var newTime = random + lastTime; var d = new Date(); d.setTime(newTime); if (this.timepoints.indexOf(d) != null) { this.timepoints.push(d); } lastTime = newTime; var tp_i = this.factory.time(newTime + ""); var model_tp_i = tp_i.lookup("/"); var meter_tp_i = model_tp_i.findMetersByID("meter_" + i); var newConsumption = this.createConsumption(meter_tp_i.consumption); if (newConsumption != null) { meter_tp_i.consumption = newConsumption; } tp_i.commit(); // var s = this._saver.serialize(model_tp_i); // console.log(s); // console.log('----------------------------------'); } } return grid; }, createConsumption: function () { var random = Math.floor((Math.random() * 500) + 1); var newConsumption = random; var error = Math.floor((Math.random() * 5)) % 5 == 0; if (error) { random = null; } return newConsumption; } }) ; </script> </polymer-element>
vue/static/main.css
atanana/vue-stocks
#app { margin: 1em; } nav { margin-bottom: 2em; } .login-form { display: flex; flex-direction: column; justify-content: center; height: 100vh; }
52f0c37/html/classv8_1_1_boolean_object-members.html
v8-dox/v8-dox.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>V8 API Reference Guide for node.js v0.6.18 - v0.6.21: 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/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.6.18 - v0.6.21 </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><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_1_boolean_object.html">BooleanObject</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">v8::BooleanObject Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_boolean_object.html#acd3e4192c2206d9f7f61975fc8f08728">BooleanValue</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a156c6b33082be397626ce106369e4eba">CallAsConstructor</a>(int argc, Handle&lt; Value &gt; argv[])</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#ab6b6c44668d7a0d0b5b1056f8de4fd6b">CallAsFunction</a>(Handle&lt; Object &gt; recv, int argc, Handle&lt; Value &gt; argv[])</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Cast</b>(v8::Value *obj) (defined in <a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a>)</td><td class="entry"><a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a45a67c1b0408922403048b59a5bc22b2">Clone</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a509f00335e1e0ddfc4bcf93d9e1cb567">CreationContext</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Delete</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Delete</b>(uint32_t index) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>DeleteHiddenValue</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a643fcf5c7c6136d819b0b4927f8d1724">Equals</a>(Handle&lt; Value &gt; that) const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#aa3b8aaece354c6af98b98e0ae9abe13d">FindInstanceInPrototypeChain</a>(Handle&lt; FunctionTemplate &gt; tmpl)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ForceDelete</b>(Handle&lt; Value &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ForceSet</b>(Handle&lt; Value &gt; key, Handle&lt; Value &gt; value, PropertyAttribute attribs=None) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Get</b>(Handle&lt; Value &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Get</b>(uint32_t index) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a4851a914d3d95b5eb7238c664fb7fd16">GetConstructorName</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetHiddenValue</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a5309f7a349feb906a05ee45b6feeaab1">GetIdentityHash</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetIndexedPropertiesExternalArrayData</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>GetIndexedPropertiesExternalArrayDataLength</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetIndexedPropertiesExternalArrayDataType</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>GetIndexedPropertiesPixelData</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>GetIndexedPropertiesPixelDataLength</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#aa3324fdf652d8ac3b2f27faa0559231d">GetInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#ab407b4e8dc83c3a75197f809d1465f7e">GetOwnPropertyNames</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a8ef1f3e0d4f4cecc54d5e0248bc45694">GetPointerFromInternalField</a>(int index)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a1e0346ba95c50258a2b4dbd3dc5a6221">GetPropertyAttributes</a>(Handle&lt; Value &gt; key)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a0e28660353b6da64f9e2769260f31001">GetPropertyNames</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a171fc92c6e695d9c944f9e5d7670ed11">GetPrototype</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a353c1568c4de35ef3f3065b5a4aecc50">GetRealNamedProperty</a>(Handle&lt; String &gt; key)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#ab955e6c94dc6bf3e65e5355eb3d2d876">GetRealNamedPropertyInPrototypeChain</a>(Handle&lt; String &gt; key)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Has</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Has</b>(uint32_t index) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#afd36ea440a254335bde065a4ceafffb3">HasIndexedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasIndexedPropertiesInExternalArrayData</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>HasIndexedPropertiesInPixelData</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#ad0791109068a7816d65a06bbc9f6f870">HasNamedLookupInterceptor</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>HasOwnProperty</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasRealIndexedProperty</b>(uint32_t index) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>HasRealNamedCallbackProperty</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>HasRealNamedProperty</b>(Handle&lt; String &gt; key) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Int32Value</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>IntegerValue</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#affaee480d3f50d5ac7a640db5aa8e89d">InternalFieldCount</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a95c39ad189c09630dd90ee5c1a7e89a1">IsArray</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a6baff625780eac51413f2392250e81be">IsBoolean</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#aebb6cd7cbb34771df1973aef2e544931">IsBooleanObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a73e7f8c470da4fa3ccc2ce8d58671bed">IsCallable</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#abcdd87539238a68f8337bae7d0a9c1ac">IsDate</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a76d0c5021dd74a57239ad64d1cb1c83c">IsDirty</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a7aed90ede9bf48b10f18cdb97d50fd1e">IsExternal</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a265c208159ff3163ecda1e9f71b99115">IsFalse</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a33f329c93a9f417e2d05b438e6e5429c">IsFunction</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a70d4afaccc7903e6a01f40a46ad04188">IsInt32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a11293ed56e068b3bccdae482f2752f58">IsNativeError</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a0757712320a9bcfe5fc0a099524d986f">IsNull</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a32003b217768f535a4728bbd16ebd7d5">IsNumber</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a2b4dd15e4135823a4bb1128a60c063cf">IsNumberObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#a360f1fe4a8ee74382f571a12eb14a222">IsObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a36ba10231b5aaf6c63d8589cd53c9a73">IsRegExp</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#ab23a34b7df62806808e01b0908bf5f00">IsString</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a2ded13f1962fc1fa15eabc525fb433ee">IsStringObject</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#ae93277798682f4be9adc204a16c40591">IsTrue</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#a2674a47b2550eb456a7ecfaf09d2f97e">IsUint32</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_value.html#adeeae3576aecadc4176f94a415a70a90">IsUndefined</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>New</b>(bool value) (defined in <a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a>)</td><td class="entry"><a class="el" href="classv8_1_1_boolean_object.html">v8::BooleanObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>New</b>() (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>NumberValue</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a2dc22d2a2acf9eab4ed2965149e48af9">ObjectProtoToString</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Set</b>(Handle&lt; Value &gt; key, Handle&lt; Value &gt; value, PropertyAttribute attribs=None) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Set</b>(uint32_t index, Handle&lt; Value &gt; value) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>SetAccessor</b>(Handle&lt; String &gt; name, AccessorGetter getter, AccessorSetter setter=0, Handle&lt; Value &gt; data=Handle&lt; Value &gt;(), AccessControl settings=DEFAULT, PropertyAttribute attribute=None) (defined in <a class="el" href="classv8_1_1_object.html">v8::Object</a>)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a0040e3012d621b25f580407bacebf95f">SetHiddenValue</a>(Handle&lt; String &gt; key, Handle&lt; Value &gt; value)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a53be627cd653a5591038a4d81a908f64">SetIndexedPropertiesToExternalArrayData</a>(void *data, ExternalArrayType array_type, int number_of_elements)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a3f08aee708af5e2856e65e81b22edc61">SetIndexedPropertiesToPixelData</a>(uint8_t *data, int length)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a94e24494687ea499471d41e914eeb90d">SetInternalField</a>(int index, Handle&lt; Value &gt; value)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#a5e79966b79d69ef3a7b3b0d91414ec2c">SetPointerInInternalField</a>(int index, void *value)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_object.html#a2a1ab58bf92984255f767946eeff1199">SetPrototype</a>(Handle&lt; Value &gt; prototype)</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>StrictEquals</b>(Handle&lt; Value &gt; that) const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1_value.html#ab6b19a1e5aa5df50dfbb5d2ffa60bcdc">ToArrayIndex</a>() const </td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToBoolean</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ToDetailString</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToInt32</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ToInteger</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToNumber</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ToObject</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ToString</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ToUint32</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1_object.html#aa2299eda3240be1e76b7d5c2af7a6bbc">TurnOnAccessCheck</a>()</td><td class="entry"><a class="el" href="classv8_1_1_object.html">v8::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Uint32Value</b>() const (defined in <a class="el" href="classv8_1_1_value.html">v8::Value</a>)</td><td class="entry"><a class="el" href="classv8_1_1_value.html">v8::Value</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:47:40 for V8 API Reference Guide for node.js v0.6.18 - v0.6.21 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>
e496707/html/classv8_1_1_external.html
v8-dox/v8-dox.github.io
<!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.11.12: v8::External 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 style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.11.12 </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><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_1_external.html">External</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-static-methods">Static Public Member Functions</a> &#124; <a href="classv8_1_1_external-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::External 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::External:</div> <div class="dyncontent"> <div class="center"> <img src="classv8_1_1_external.png" usemap="#v8::External_map" alt=""/> <map id="v8::External_map" name="v8::External_map"> <area href="classv8_1_1_value.html" alt="v8::Value" shape="rect" coords="0,56,78,80"/> <area href="classv8_1_1_data.html" alt="v8::Data" shape="rect" coords="0,0,78,24"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:ac2733ee14b5b26f369e5a335c0fe3301"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac2733ee14b5b26f369e5a335c0fe3301"></a> void *&#160;</td><td class="memItemRight" valign="bottom"><b>Value</b> () const </td></tr> <tr class="separator:ac2733ee14b5b26f369e5a335c0fe3301"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classv8_1_1_value"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classv8_1_1_value')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classv8_1_1_value.html">v8::Value</a></td></tr> <tr class="memitem:aea287b745656baa8a12a2ae1d69744b6 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#aea287b745656baa8a12a2ae1d69744b6">IsUndefined</a> () const </td></tr> <tr class="separator:aea287b745656baa8a12a2ae1d69744b6 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa2c6ed8ef832223a7e2cd81e6ac61c78 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#aa2c6ed8ef832223a7e2cd81e6ac61c78">IsNull</a> () const </td></tr> <tr class="separator:aa2c6ed8ef832223a7e2cd81e6ac61c78 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8f27462322186b295195eecb3e81d6d7 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a8f27462322186b295195eecb3e81d6d7">IsTrue</a> () const </td></tr> <tr class="separator:a8f27462322186b295195eecb3e81d6d7 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a68c0296071d01ca899825d7643cf495a inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a68c0296071d01ca899825d7643cf495a">IsFalse</a> () const </td></tr> <tr class="separator:a68c0296071d01ca899825d7643cf495a inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab23a34b7df62806808e01b0908bf5f00 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">V8_INLINE bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#ab23a34b7df62806808e01b0908bf5f00">IsString</a> () const </td></tr> <tr class="separator:ab23a34b7df62806808e01b0908bf5f00 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af3e6081c22d09a7bbc0a2aff59ed60a5 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#af3e6081c22d09a7bbc0a2aff59ed60a5">IsSymbol</a> () const </td></tr> <tr class="separator:af3e6081c22d09a7bbc0a2aff59ed60a5 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a05532a34cdd215f273163830ed8b77e7 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a05532a34cdd215f273163830ed8b77e7">IsFunction</a> () const </td></tr> <tr class="separator:a05532a34cdd215f273163830ed8b77e7 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aaee0b144087d20eae02314c9393ff80f inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#aaee0b144087d20eae02314c9393ff80f">IsArray</a> () const </td></tr> <tr class="separator:aaee0b144087d20eae02314c9393ff80f inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a355b7991c5c978c0341f6f961b63c5a2 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a355b7991c5c978c0341f6f961b63c5a2">IsObject</a> () const </td></tr> <tr class="separator:a355b7991c5c978c0341f6f961b63c5a2 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0aceb7645e71b096df5cd73d1252b1b0 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a0aceb7645e71b096df5cd73d1252b1b0">IsBoolean</a> () const </td></tr> <tr class="separator:a0aceb7645e71b096df5cd73d1252b1b0 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a1bd51e3e55f67c65b9a8f587fbffb7c7 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a1bd51e3e55f67c65b9a8f587fbffb7c7">IsNumber</a> () const </td></tr> <tr class="separator:a1bd51e3e55f67c65b9a8f587fbffb7c7 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7ac61a325c18af8dcb6d7d5bf47d2503 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a7ac61a325c18af8dcb6d7d5bf47d2503">IsExternal</a> () const </td></tr> <tr class="separator:a7ac61a325c18af8dcb6d7d5bf47d2503 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a01e1db51c65b2feace248b7acbf71a2c inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a01e1db51c65b2feace248b7acbf71a2c">IsInt32</a> () const </td></tr> <tr class="separator:a01e1db51c65b2feace248b7acbf71a2c inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a783c89631bac4ef3c4b909f40cc2b8d8 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a783c89631bac4ef3c4b909f40cc2b8d8">IsUint32</a> () const </td></tr> <tr class="separator:a783c89631bac4ef3c4b909f40cc2b8d8 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a8bc11fab0aded4a805722ab6df173cae inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a8bc11fab0aded4a805722ab6df173cae">IsDate</a> () const </td></tr> <tr class="separator:a8bc11fab0aded4a805722ab6df173cae inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abe7bc06283e5e66013f2f056a943168b inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#abe7bc06283e5e66013f2f056a943168b">IsBooleanObject</a> () const </td></tr> <tr class="separator:abe7bc06283e5e66013f2f056a943168b inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5f4aa9504a6d8fc3af9489330179fe14 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a5f4aa9504a6d8fc3af9489330179fe14">IsNumberObject</a> () const </td></tr> <tr class="separator:a5f4aa9504a6d8fc3af9489330179fe14 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3e0f2727455fd01a39a60b92f77e28e0 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a3e0f2727455fd01a39a60b92f77e28e0">IsStringObject</a> () const </td></tr> <tr class="separator:a3e0f2727455fd01a39a60b92f77e28e0 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a867baa94cb8f1069452359e6cef6751e inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a867baa94cb8f1069452359e6cef6751e">IsSymbolObject</a> () const </td></tr> <tr class="separator:a867baa94cb8f1069452359e6cef6751e inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a579fb52e893cdc24f8b77e5acc77d06d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a579fb52e893cdc24f8b77e5acc77d06d">IsNativeError</a> () const </td></tr> <tr class="separator:a579fb52e893cdc24f8b77e5acc77d06d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aae41e43486937d6122c297a0d43ac0b8 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#aae41e43486937d6122c297a0d43ac0b8">IsRegExp</a> () const </td></tr> <tr class="separator:aae41e43486937d6122c297a0d43ac0b8 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a65f9dad740f2468b44dc16349611c351 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a65f9dad740f2468b44dc16349611c351">IsArrayBuffer</a> () const </td></tr> <tr class="separator:a65f9dad740f2468b44dc16349611c351 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad54475d15b7e6b6e17fc80fb4570cdf2 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#ad54475d15b7e6b6e17fc80fb4570cdf2">IsArrayBufferView</a> () const </td></tr> <tr class="separator:ad54475d15b7e6b6e17fc80fb4570cdf2 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac2f2f6c39f14a39fbb5b43577125dfe4 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#ac2f2f6c39f14a39fbb5b43577125dfe4">IsTypedArray</a> () const </td></tr> <tr class="separator:ac2f2f6c39f14a39fbb5b43577125dfe4 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acbe2cd9c9cce96ee498677ba37c8466d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#acbe2cd9c9cce96ee498677ba37c8466d">IsUint8Array</a> () const </td></tr> <tr class="separator:acbe2cd9c9cce96ee498677ba37c8466d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad3cb464ab5ef0215bd2cbdd4eb2b7e3d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#ad3cb464ab5ef0215bd2cbdd4eb2b7e3d">IsUint8ClampedArray</a> () const </td></tr> <tr class="separator:ad3cb464ab5ef0215bd2cbdd4eb2b7e3d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a10a88a2794271dfcd9c3abd565e8f28a inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a10a88a2794271dfcd9c3abd565e8f28a">IsInt8Array</a> () const </td></tr> <tr class="separator:a10a88a2794271dfcd9c3abd565e8f28a inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4a45fabf58b241f5de3086a3dd0a09ae inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a4a45fabf58b241f5de3086a3dd0a09ae">IsUint16Array</a> () const </td></tr> <tr class="separator:a4a45fabf58b241f5de3086a3dd0a09ae inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a928c586639dd75ae4efdaa66b1fc4d50 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a928c586639dd75ae4efdaa66b1fc4d50">IsInt16Array</a> () const </td></tr> <tr class="separator:a928c586639dd75ae4efdaa66b1fc4d50 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5e39229dc74d534835cf4ceba10676f4 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a5e39229dc74d534835cf4ceba10676f4">IsUint32Array</a> () const </td></tr> <tr class="separator:a5e39229dc74d534835cf4ceba10676f4 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a48eac78a49c8b42d9f8cf05c514b3750 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a48eac78a49c8b42d9f8cf05c514b3750">IsInt32Array</a> () const </td></tr> <tr class="separator:a48eac78a49c8b42d9f8cf05c514b3750 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4effc7ca1a221dd8c1e23c0f28145ef0 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a4effc7ca1a221dd8c1e23c0f28145ef0">IsFloat32Array</a> () const </td></tr> <tr class="separator:a4effc7ca1a221dd8c1e23c0f28145ef0 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a293f140b81b0219d1497e937ed948b1e inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#a293f140b81b0219d1497e937ed948b1e">IsFloat64Array</a> () const </td></tr> <tr class="separator:a293f140b81b0219d1497e937ed948b1e inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afd20ab51e79658acc405c12dad2260ab inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#afd20ab51e79658acc405c12dad2260ab">IsDataView</a> () const </td></tr> <tr class="separator:afd20ab51e79658acc405c12dad2260ab inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a73d653dc4a4999ce7258b40a4d8a1510 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a73d653dc4a4999ce7258b40a4d8a1510"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_boolean.html">Boolean</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToBoolean</b> () const </td></tr> <tr class="separator:a73d653dc4a4999ce7258b40a4d8a1510 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2706d2c0cf684a5179e76e8e404b3a5d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2706d2c0cf684a5179e76e8e404b3a5d"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_number.html">Number</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToNumber</b> () const </td></tr> <tr class="separator:a2706d2c0cf684a5179e76e8e404b3a5d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aef5739280886eb7a98ae0e98371dae39 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aef5739280886eb7a98ae0e98371dae39"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_string.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToString</b> () const </td></tr> <tr class="separator:aef5739280886eb7a98ae0e98371dae39 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acff61b07d724079dc3a90d3e3fd57cb3 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="acff61b07d724079dc3a90d3e3fd57cb3"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_string.html">String</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToDetailString</b> () const </td></tr> <tr class="separator:acff61b07d724079dc3a90d3e3fd57cb3 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af40feaf010e829f2cdb787eb975b941d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af40feaf010e829f2cdb787eb975b941d"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_object.html">Object</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToObject</b> () const </td></tr> <tr class="separator:af40feaf010e829f2cdb787eb975b941d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3941f80b54b0707c6153657cc688ac93 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3941f80b54b0707c6153657cc688ac93"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_integer.html">Integer</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToInteger</b> () const </td></tr> <tr class="separator:a3941f80b54b0707c6153657cc688ac93 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aed71590ec8bd5ef7972d7a0d844b2cd7 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aed71590ec8bd5ef7972d7a0d844b2cd7"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_uint32.html">Uint32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToUint32</b> () const </td></tr> <tr class="separator:aed71590ec8bd5ef7972d7a0d844b2cd7 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adf5d2c0c0bf58d60f2401d8437df26b0 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="adf5d2c0c0bf58d60f2401d8437df26b0"></a> <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_int32.html">Int32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>ToInt32</b> () const </td></tr> <tr class="separator:adf5d2c0c0bf58d60f2401d8437df26b0 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae810be0ae81a87f677592d0176daac48 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_uint32.html">Uint32</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#ae810be0ae81a87f677592d0176daac48">ToArrayIndex</a> () const </td></tr> <tr class="separator:ae810be0ae81a87f677592d0176daac48 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a392d60e0ab58b5b13c0ac1e5b4b9f04b inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a392d60e0ab58b5b13c0ac1e5b4b9f04b"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>BooleanValue</b> () const </td></tr> <tr class="separator:a392d60e0ab58b5b13c0ac1e5b4b9f04b inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4634d525bae654cdc50c398bfaee11aa inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4634d525bae654cdc50c398bfaee11aa"></a> double&#160;</td><td class="memItemRight" valign="bottom"><b>NumberValue</b> () const </td></tr> <tr class="separator:a4634d525bae654cdc50c398bfaee11aa inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac61c74a94dea10f48a64f5906b6dd43d inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac61c74a94dea10f48a64f5906b6dd43d"></a> int64_t&#160;</td><td class="memItemRight" valign="bottom"><b>IntegerValue</b> () const </td></tr> <tr class="separator:ac61c74a94dea10f48a64f5906b6dd43d inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af25557359e6bb79436ed60df18703d66 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af25557359e6bb79436ed60df18703d66"></a> uint32_t&#160;</td><td class="memItemRight" valign="bottom"><b>Uint32Value</b> () const </td></tr> <tr class="separator:af25557359e6bb79436ed60df18703d66 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a24daae9d99d02ff2e24b60287dcd4d95 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a24daae9d99d02ff2e24b60287dcd4d95"></a> int32_t&#160;</td><td class="memItemRight" valign="bottom"><b>Int32Value</b> () const </td></tr> <tr class="separator:a24daae9d99d02ff2e24b60287dcd4d95 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:adc2a7a92a120675bbd4c992163a20869 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classv8_1_1_value.html#adc2a7a92a120675bbd4c992163a20869">Equals</a> (<a class="el" href="classv8_1_1_handle.html">Handle</a>&lt; <a class="el" href="classv8_1_1_value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:adc2a7a92a120675bbd4c992163a20869 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abb564818715b818957adc97716a076ba inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abb564818715b818957adc97716a076ba"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>StrictEquals</b> (<a class="el" href="classv8_1_1_handle.html">Handle</a>&lt; <a class="el" href="classv8_1_1_value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:abb564818715b818957adc97716a076ba inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7e49ca617f5d1773a81bae18a8062084 inherit pub_methods_classv8_1_1_value"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7e49ca617f5d1773a81bae18a8062084"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>SameValue</b> (<a class="el" href="classv8_1_1_handle.html">Handle</a>&lt; <a class="el" href="classv8_1_1_value.html">Value</a> &gt; that) const </td></tr> <tr class="separator:a7e49ca617f5d1773a81bae18a8062084 inherit pub_methods_classv8_1_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac2142bb3ec6527633c4f9133e80cdc19 inherit pub_methods_classv8_1_1_value"><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_1_value"><td class="memTemplItemLeft" align="right" valign="top"><a class="el" href="classv8_1_1_value.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_1_value"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><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:ac870380e98927cd1e90551d7e47b8713"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac870380e98927cd1e90551d7e47b8713"></a> static <a class="el" href="classv8_1_1_local.html">Local</a>&lt; <a class="el" href="classv8_1_1_external.html">External</a> &gt;&#160;</td><td class="memItemRight" valign="bottom"><b>New</b> (void *value)</td></tr> <tr class="separator:ac870380e98927cd1e90551d7e47b8713"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4711aba26710c5dd72f11cb81808f9c2"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4711aba26710c5dd72f11cb81808f9c2"></a> static V8_INLINE <a class="el" href="classv8_1_1_external.html">External</a> *&#160;</td><td class="memItemRight" valign="bottom"><b>Cast</b> (<a class="el" href="classv8_1_1_value.html">Value</a> *obj)</td></tr> <tr class="separator:a4711aba26710c5dd72f11cb81808f9c2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_static_methods_classv8_1_1_value"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classv8_1_1_value')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="classv8_1_1_value.html">v8::Value</a></td></tr> <tr class="memitem:ae5aa9b54ebed55819c3a4b2a3eb5fe12 inherit pub_static_methods_classv8_1_1_value"><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_1_value"><td class="memTemplItemLeft" align="right" valign="top">static V8_INLINE <a class="el" href="classv8_1_1_value.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_1_value"><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>A JavaScript value that wraps a C++ void*. This type of value is mainly used to associate C++ data structures with JavaScript objects. </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 on Tue Aug 11 2015 23:45:44 for V8 API Reference Guide for node.js v0.11.12 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>
_includes/js.html
marcosvpj/marcosvpj.github.io
<script type="text/javascript" src="{{ site.url }}/js/jquery-2.1.4.min.js"></script> <script type="text/javascript" src="{{ site.url }}/js/main.js"></script> {% if site.owner.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.owner.google.analytics }}', 'auto'); ga('send', 'pageview'); </script> {% endif %} <script src="{{ site.url }}/js/lightbox.js"></script>
app/js/mockups/form.html
alnutile/tim_frontend
<div ng-model="blocks.testDetailsBlock" ng-init="blocks.testDetailsBLock=true" ng-show="blocks.testDetailsBlock" class="ng-animate-block-transitions ng-hide"> <form role="form" name="testDetails" ng-submit="addTag(steps.testDetails.tag)"> <div class="form-group"> <input id="tag-input" class="form-control" name="testDetailsTag" ng-model="steps.testDetails.tag" type="text" placeholder="choose a tag"> <br> <input id="add-details" class="form-control btn btn-success" type="submit" value="Add"> <br> </div> </form> <form role="form" name="backgrounds" ng-submit="addStep(steps.back)"> <div class="form-group"> <input class="form-control" name="backGround" ng-model="steps.back.background" type="text" value="" ng-required="true" placeholder="add a bacgkround. see help for more details"> <br> <input class="form-control btn btn-success" type="submit" value="Add"> <div class="help-block" ng-model="steps.back.final"> {{ steps.back.background }}</div> <br> <br> <div class="well"> <button type="button" class="btn btn-danger" ng-click="saveTest(test_content)">save test</button> <div class="btn-group"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> clone <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li ng-repeat="site in sites"><a ng-click="cloneTest(site)" href>{{site.title}}</a></li> </ul> </div> </div> </div> </form> </div> <div ng-model="blocks.testStepsBlock" ng-init="blocks.testStepsBlock=false" ng-show="blocks.testStepsBlock" class="ng-animate-block-transitions"> <div class="form-actions well"> <input class="form-control" name="search-steps" ng-model="search" ng-change="searchForms(search)" type="text" placeholder="search for steps"> </div> <!-- ##### Startig Points ##### --> <div ng-model="groups.starting" ng-hide="groups.starting" ng-init="groups.starting=false" class="animate-hide animate-show ng-hide"> <h5>Starting Points</h5> <form role="form" name="scenarioForm" ng-submit="addStep(steps.scenarioForm)" ng-model="form_tags.scenarioForm" ng-init="form_tags.scenarioForm='Scenario'" ng-show="showForm(form_tags.scenarioForm)" class=""> <div class="form-group"> <div ng-hide="true" ng-model="steps.scenarioForm.scenario" ng-init="steps.scenarioForm.scenario='Scenario:'"></div> <h6>Scenario:</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="scenarioFormTarget" ng-model="steps.scenarioForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.scenarioForm.arg_1='Testing the page has a link'"> <br> <input class="form-control btn btn-success" name="scenarioFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.scenarioForm.final"> {{ steps.scenarioForm.intro }} "{{ steps.scenarioForm.arg_1 }}" </div> </div> </form> <form role="form" name="givenForm" ng-submit="addStep(steps.givenForm)" ng-model="form_tags.given" ng-init="form_tags.given='URL on Visit'" ng-show="showForm(form_tags.given)" class=""> <div class="form-group"> <div ng-hide="true" ng-model="steps.givenForm.intro" ng-init="steps.givenForm.intro='Given I am on'"></div> <h6>Given I am on</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="givenFormTarget" ng-model="steps.givenForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.givenForm.arg_1='/some/relative/path'"> <br> <input class="form-control btn btn-success" name="givenFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.givenForm.final"> {{ steps.givenForm.intro }} "{{ steps.givenForm.arg_1 }}" </div> </div> </form> </div> <!-- ##### General Interactions ##### --> <div ng-model="groups.general" ng-hide="groups.general" ng-init="groups.general=false"> <h5>General Interactions</h5> <form role="form" name="hoverForm" ng-submit="addStep(steps.hoverForm)" ng-model="form_tags.hoverForm" ng-init="form_tags.hoverForm='Menu Hover'" ng-show="showForm(form_tags.hoverForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.hoverForm.intro" ng-init="steps.hoverForm.intro='And I hover over'"></div> <h6>And I hover over</h6> <select class="form-control" name="hoverFormAction" ng-model="steps.hoverForm.action" ng-required="true" ng-init="steps.hoverForm.action='the menu item named'"> <option value="a non link menu item named">a non menu link item eg list item or div</option> <option value="the menu item named">the menu item</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="hoverFormTarget" ng-model="steps.hoverForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.hoverForm.arg_1='id|name|class'"> <br> <input class="form-control btn btn-success" type="submit" name="hoverFormAdd" value="Add"> <div class="help-block" ng-model="steps.hoverForm.final"> {{ steps.hoverForm.intro }} {{ steps.hoverForm.action }} "{{ steps.hoverForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="visibleForm" ng-submit="addStep(steps.visibleForm)" ng-model="form_tags.visibleForm" ng-init="form_tags.visibleForm='Hidden See Not See'" ng-show="showForm(form_tags.visibleForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.visibleForm.intro" ng-init="steps.visibleForm.intro='Then element'"></div> <h6>Then element</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="visibleFormTarget" ng-model="steps.visibleForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.visibleForm.arg_1='id|name|class'"> <select class="form-control" name="visibleFormAction" ng-model="steps.visibleForm.action" ng-required="true" ng-init="steps.visibleForm.action='is visible'"> <option value="is visible">is visible</option> <option value="is not visible">is not visible</option> </select> <br> <input class="form-control btn btn-success" type="submit" name="visibleFormAdd" value="Add"> <div class="help-block" ng-model="steps.visibleForm.final"> {{ steps.visibleForm.intro }} "{{ steps.visibleForm.arg_1 }}" {{ steps.visibleForm.action }} </div> </div> </form> <hr> <form role="form" name="cfpForm" ng-submit="addStep(steps.cfp)" ng-model="form_tags.cfp" ng-init="form_tags.cfp='Click Press Follow Link'" ng-show="showForm(form_tags.cfp)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.cfp.intro" ng-init="steps.cfp.intro='And I'"></div> <h6>And I</h6> <select class="form-control" name="cfpAction" ng-model="steps.cfp.action" ng-required="true" ng-init="steps.cfp.action='follow'"> <option value="follow">follow</option> <option value="press">press</option> <option value="click">click</option> </select> <select class="form-control" name="cfpType" ng-model="steps.cfp.type" ng-required="true" ng-init="steps.cfp.type='the element'"> <option value="the element" selected>the element (css path)</option> <option value="">name|label|id</option> <option value="the xpath">xpath</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="cfpTarget" ng-model="steps.cfp.arg_1" type="textarea" value="" ng-required="true" ng-init="steps.cfp.arg_1='some text'" placeholder="enter the target either a css path or name|label|id"> <br> <input class="form-control btn btn-success" type="submit" name="cfpFormAdd" value="Add"> <div class="help-block" ng-model="steps.cfp.final"> {{ steps.cfp.intro }} {{ steps.cfp.action }} {{ steps.cfp.type }} "{{ steps.cfp.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="seeForm" ng-submit="addStep(steps.seeForm)" ng-model="form_tags.see" ng-init="form_tags.see='See on page'" ng-show="showForm(form_tags.see)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.seeForm.intro" ng-init="steps.seeForm.intro='Then I should'"></div> <h6>Then I should</h6> <select class="form-control" name="seeFormAction" ng-model="steps.seeForm.action" ng-required="true" ng-init="steps.seeForm.action='see'"> <option value="see">see</option> <option value="not see">not see</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="seeFormTarget" ng-model="steps.seeForm.arg_1" type="textarea" value="" ng-required="true" ng-init="steps.seeForm.arg_1='some text'" placeholder="some text on the page"> <br> <input class="form-control btn btn-success" name="seeFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.seeForm.final"> {{ steps.seeForm.intro }} {{ steps.seeForm.action }} {{ steps.seeForm.type }} "{{ steps.seeForm.arg_1 }}" </div> </div> </form> <hr> </div> <!-- ##### Form fields and Elements ##### --> <div ng-model="groups.elements" ng-hide="groups.elements" ng-init="groups.elements=false" class=""> <h5>Form fields & elements</h5> <form role="form" name="checkUncheckForm" ng-submit="addStep(steps.checkUncheckForm)" ng-model="form_tags.checkUncheckForm" ng-init="form_tags.checkUncheckForm='Check Un UnCheck'" ng-show="showForm(form_tags.checkUncheckForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.checkUncheckForm.intro" ng-init="steps.checkUncheckForm.intro='And I'"></div> <h6>And I</h6> <select class="form-control" name="checkUncheckFormAction" ng-model="steps.checkUncheckForm.action" ng-required="true" ng-init="steps.checkUncheckForm.action='check'"> <option value="check">check</option> <option value="uncheck">uncheck</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="checkUncheckFormTarget" ng-model="steps.checkUncheckForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.checkUncheckForm.arg_1='id|name|class|value'"> <br> <input class="form-control btn btn-success" type="submit" name="checkUncheckFormAdd" value="Add"> <div class="help-block" ng-model="steps.checkUncheckForm.final"> {{ steps.checkUncheckForm.intro }} {{ steps.checkUncheckForm.action }} "{{ steps.checkUncheckForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="checkedOrNotForm" ng-submit="addStep(steps.checkedOrNotForm)" ng-model="form_tags.checkedOrNotForm" ng-init="form_tags.checkedOrNotForm='Check Un UnCheck Checked Not'" ng-show="showForm(form_tags.checkedOrNotForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.checkedOrNotForm.intro" ng-init="steps.checkedOrNotForm.intro='Then the'"></div> <h6>Then the</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="checkedOrNotFormTarget" ng-model="steps.checkedOrNotForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.checkedOrNotForm.arg_1='id|name|class|value'"> <select class="form-control" name="checkedOrNotFormAction" ng-model="steps.checkedOrNotForm.action" ng-required="true" ng-init="steps.checkedOrNotForm.action='checkbox should be checked'"> <option value="checkbox should be checked">checkbox should be checked</option> <option value="checkbox should not be checked">checkbox should not be checked</option> </select> <br> <input class="form-control btn btn-success" type="submit" name="checkedOrNotFormAdd" value="Add"> <div class="help-block" ng-model="steps.checkedOrNotForm.final"> {{ steps.checkedOrNotForm.intro }} "{{ steps.checkedOrNotForm.arg_1 }}" {{ steps.checkedOrNotForm.action }} </div> </div> </form> <hr> <form role="form" name="selectForm" ng-submit="addStep(steps.selectForm)" ng-model="form_tags.select" ng-init="form_tags.select='Select'" ng-show="showForm(form_tags.select)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.selectForm.intro" ng-init="steps.selectForm.intro='And I select'"></div> <h6>And I select</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="selectFormSelected" ng-model="steps.selectForm.arg_1" type="textarea" value="" ng-required="true" ng-init="steps.selectForm.arg_1='select?'"> <div ng-hide="true" ng-model="steps.selectForm.from" ng-init="steps.selectForm.from='from'"></div> <h6>from</h6> <input class="form-control" name="selectFormTarget" ng-model="steps.selectForm.arg_2" type="textarea" value="" ng-required="true" ng-init="steps.selectForm.arg_2='from name | label or id of select list'"> <br> <input class="form-control btn btn-success" name="selectFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.selectForm.final"> {{ steps.selectForm.intro }} "{{ steps.selectForm.arg_1 }}" {{ steps.selectForm.from }} "{{ steps.selectForm.arg_2 }}" </div> </div> </form> <hr> <form role="form" name="inputForm" ng-submit="addStep(steps.inputForm)" ng-model="form_tags.inputForm" ng-init="form_tags.inputForm='Fill in Input enter'" ng-show="showForm(form_tags.inputForm)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.inputForm.intro" ng-init="steps.inputForm.intro='And I fill in'"></div> <h6>And I fill in</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="inputFormSelected" ng-model="steps.inputForm.arg_1" type="textarea" value="" ng-required="true" ng-init="steps.inputForm.arg_1='a form field name'"> <div ng-hide="true" ng-model="steps.inputForm.with" ng-init="steps.inputForm.with='with'"></div> <h6>with</h6> <input class="form-control" name="inputFormTarget" ng-model="steps.inputForm.arg_2" type="textarea" value="" ng-required="true" ng-init="steps.inputForm.arg_2='value to put into form field'"> <br> <input class="form-control btn btn-success" name="inputFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.inputForm.final"> {{ steps.inputForm.intro }} "{{ steps.inputForm.arg_1 }}" {{ steps.inputForm.with }} "{{ steps.inputForm.arg_2 }}" </div> </div> </form> <form role="form" name="shouldContain" ng-submit="addStep(steps.shouldContain)" ng-model="form_tags.shouldContain" ng-init="form_tags.shouldContain='value should input'" ng-show="showForm(form_tags.shouldContain)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.shouldContain.intro" ng-init="steps.shouldContain.intro='Then the'"></div> <h6>Then the</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="shouldContainTarget" ng-model="steps.shouldContain.arg_1" type="textarea" value="" ng-required="true" ng-init="steps.shouldContain.arg_1='name|label|id'"> <br> <select class="form-control" name="shouldContainAction" ng-model="steps.shouldContain.action" ng-required="true" ng-init="steps.shouldContain.action='field should contain'"> <option value="field should contain">field should contain</option> <option value="field should not contain">field should not contain</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="shouldContainTarget2" ng-model="steps.shouldContain.arg_2" type="textarea" value="" ng-required="true" ng-init="steps.shouldContain.arg_2='value to look for'"> <br> <input class="form-control btn btn-success" type="submit" name="shouldContainAdd" value="Add"> <div class="help-block" ng-model="steps.shouldContain.final"> {{ steps.shouldContain.intro }} "{{ steps.shouldContain.arg_1 }}" {{ steps.shouldContain.action }} "{{ steps.shouldContain.arg_2 }}"</div> </div> </form> <hr> </div> <!-- ##### CSS and DOM ##### --> <div ng-model="groups.dom" ng-hide="groups.dom" ng-init="groups.dom=false" class=""> <h5>CSS and DOM</h5> <form role="form" name="elemExistsForm" ng-submit="addStep(steps.elemExistsForm)" ng-model="form_tags.elemExistsForm" ng-init="form_tags.elemExistsForm='exists'" ng-show="showForm(form_tags.elemExistsForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.elemExistsForm.intro" ng-init="steps.elemExistsForm.intro='Then I see this element'"></div> <h6>Then I see this element</h6> <select class="form-control" name="shouldContainAction" ng-model="steps.elemExistsForm.action" ng-required="true" ng-init="steps.elemExistsForm.action='exists'"> <option value="exists">exists</option> <option value="not exists">not exists</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="elemExistsFormTarget" ng-model="steps.elemExistsForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.elemExistsForm.arg_1='css name eg a.menu would be menu'"> <br> <input class="form-control btn btn-success" name="elemExistsFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.elemExistsForm.final"> {{ steps.elemExistsForm.intro }} {{ steps.elemExistsForm.action }} "{{ steps.elemExistsForm.arg_1 }}" </div> <div class="help-block" ng-model="steps.elemExistsForm.final">Check to see if class exists eg a.menu would be "menu"</div> </div> </form> <hr> <form role="form" name="onClickForm" ng-submit="addStep(steps.onClickForm)" ng-model="form_tags.onClickForm" ng-init="form_tags.onClickForm='click Popup'" ng-show="showForm(form_tags.onClickForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.onClickForm.intro" ng-init="steps.onClickForm.intro='Given I click on element which has onclick handler located at'"></div> <h6>Given I click on element which has onclick handler located at</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="onClickFormTarget" ng-model="steps.onClickForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.onClickForm.arg_1='css path eg div.formRow:nth-child(32)'"> <br> <input class="form-control btn btn-success" name="onClickFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.onClickForm.final"> {{ steps.onClickForm.intro }} "{{ steps.onClickForm.arg_1 }}" </div> </div> </form> <hr> <hr> </div> <!-- ##### Navigation Windows Iframes and Modals ##### --> <div ng-model="groups.modals" ng-hide="groups.modals" ng-init="groups.modals=false"> <h5>Navigation Windows iFrames Modals</h5> <form role="form" name="switchPopupForm" ng-submit="addStep(steps.switchPopupForm)" ng-model="form_tags.switchPopupForm" ng-init="form_tags.switchPopupForm='Popup switch'" ng-show="showForm(form_tags.switchPopupForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.switchPopupForm.intro" ng-init="steps.switchPopupForm.intro='I switch to popup by'"></div> <h6>I switch to popup by</h6> <select class="form-control" name="shouldContainAction" ng-model="steps.switchPopupForm.action" ng-required="true" ng-init="steps.switchPopupForm.action='clicking'"> <option value="clicking">clicking</option> <option value="pressing">pressing</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="switchPopupFormTarget" ng-model="steps.switchPopupForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.switchPopupForm.arg_1='link or button to act on'"> <br> <input class="form-control btn btn-success" name="switchPopupFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.switchPopupForm.final"> {{ steps.switchPopupForm.intro }} {{ steps.switchPopupForm.action }} "{{ steps.switchPopupForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="switchBackForm" ng-submit="addStep(steps.switchBackForm)" ng-model="form_tags.switchBackForm" ng-init="form_tags.switchBackForm='Switch Back'" ng-show="showForm(form_tags.switchBackForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.switchBackForm.intro" ng-init="steps.switchBackForm.intro='Then I switch back to the original window'"></div> <h6>Then I switch back to the original window</h6> <input class="form-control btn btn-success" name="switchBackFormAdd" type="submit" value="Add"> </div> </form> <hr> <form role="form" name="iframeSetIdForm" ng-submit="addStep(steps.iframeSetIdForm)" ng-model="form_tags.iframeSetIdForm" ng-init="form_tags.iframeSetIdForm='Iframe name'" ng-show="showForm(form_tags.iframeSetIdForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.iframeSetIdForm.intro" ng-init="steps.iframeSetIdForm.intro='Given I set the name of the iframe located in element with an id of'"></div> <h6>Given I set the name of the iframe located in element with an id of</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="iframeSetIdFormTarget" ng-model="steps.iframeSetIdForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.iframeSetIdForm.arg_1='id of iframe'"> <br> <input class="form-control btn btn-success" name="iframeSetIdFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.iframeSetIdForm.final"> {{ steps.iframeSetIdForm.intro }} "{{ steps.iframeSetIdForm.arg_1 }}" </div> <div class="help-block" ng-model="steps.iframeSetIdForm.final"> Sets an iFrame ID to no_name_iframe if there is no ID so you can then add a Switch to iFrame step after it using the na_name_iframe ID. You must use an ID but do not pass the # </div> </div> </form> <hr> <form role="form" name="iframeSwitchForm" ng-submit="addStep(steps.iframeSwitchForm)" ng-model="form_tags.iframeSwitchForm" ng-init="form_tags.iframeSwitchForm='Iframe switch name'" ng-show="showForm(form_tags.iframeSwitchForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.iframeSwitchForm.intro" ng-init="steps.iframeSwitchForm.intro='Given I switch to iframe with name'"></div> <h6>Given I switch to iframe with name</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="iframeSwitchFormTarget" ng-model="steps.iframeSwitchForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.iframeSwitchForm.arg_1='id of iframe'"> <br> <input class="form-control btn btn-success" name="iframeSwitchFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.iframeSwitchForm.final"> {{ steps.iframeSwitchForm.intro }} "{{ steps.iframeSwitchForm.arg_1 }}" </div> </div> </form> <hr> </div> <!-- ##### Custom ##### --> <div ng-model="groups.custom" ng-hide="groups.custom" ng-init="groups.custom=false"> <h5>Custom</h5> <form role="form" name="checkSizeForm" ng-submit="addStep(steps.checkSizeForm)" ng-model="form_tags.checkSizeForm" ng-init="form_tags.checkSizeForm='size'" ng-show="showForm(form_tags.checkSizeForm)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.checkSizeForm.intro" ng-init="steps.checkSizeForm.intro='Then the element'"></div> <h6>Then the element</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="checkSizeFormTarget" ng-model="steps.checkSizeForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.checkSizeForm.arg_1='name|label|id'"> <br> <div ng-hide="true" ng-model="steps.checkSizeForm.second" ng-init="steps.checkSizeForm.second='should be'"></div> <h6>should be</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="checkSizeFormTarget2" ng-model="steps.checkSizeForm.arg_2" type="text" value="" ng-required="true" ng-init="steps.checkSizeForm.arg_2='% it should be'"> <br> <div ng-hide="true" ng-model="steps.checkSizeForm.third" ng-init="steps.checkSizeForm.third='percent or greater than the window'"></div> <h6>percent or greater than the window</h6> <input class="form-control btn btn-success" type="submit" name="checkSizeFormAdd" value="Add"> <div class="help-block" ng-model="steps.checkSizeForm.final"> {{ steps.checkSizeForm.intro }} "{{ steps.checkSizeForm.arg_1 }}" {{ steps.checkSizeForm.second }} "{{ steps.checkSizeForm.arg_2 }}" See if the element (name|label|id) is greater than the % of the window</div> </div> </form> <hr> </div> <!-- ##### Low Level Features ##### --> <div ng-model="groups.features" ng-hide="groups.features" ng-init="groups.features=false"> <h5>Low level features</h5> <form role="form" name="cookiesDestForm" ng-submit="addStep(steps.cookiesDestForm)" ng-model="form_tags.cookiesDestForm" ng-init="form_tags.cookiesDestForm='Cookies'" ng-show="showForm(form_tags.cookiesDestForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.cookiesDestForm.intro" ng-init="steps.cookiesDestForm.intro='Then I destroy my cookies'"></div> <h6>Then I destroy my cookies</h6> <input class="form-control btn btn-success" name="cookiesDestFormAdd" type="submit" value="Add"> </div> </form> <hr> <form role="form" name="cookiesSeeForm" ng-submit="addStep(steps.cookiesSeeForm)" ng-model="form_tags.cookiesSeeForm" ng-init="form_tags.cookiesSeeForm='Cookies'" ng-show="showForm(form_tags.cookiesSeeForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.cookiesSeeForm.intro" ng-init="steps.cookiesSeeForm.intro='Then I should'"></div> <h6>Then I should</h6> <select class="form-control" name="cookiesSeeFormAction" ng-model="steps.cookiesSeeForm.action" ng-required="true" ng-init="steps.cookiesSeeForm.action='see cookie'"> <option value="see cookie">see cookie</option> <option value="not see cookie">not see cookie</option> </select> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="cookiesSeeFormArg" ng-model="steps.cookiesSeeForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.cookiesSeeForm.arg_1='monster'"> <br> <input class="form-control btn btn-success" name="cookiesSeeFormAdd" type="submit" value="Add"> <div class="help-block" ng-model="steps.cookiesSeeForm.final"> {{ steps.cookiesSeeForm.intro }} {{ steps.cookiesSeeForm.action }} "{{ steps.cookiesSeeForm.arg_1 }}"</div> </div> </form> <hr> <form role="form" name="iWaitForm" ng-submit="addStep(steps.iWaitForm)" ng-model="form_tags.iWaitForm" ng-init="form_tags.iWaitForm='Wait'" ng-show="showForm(form_tags.iWaitForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.iWaitForm.intro" ng-init="steps.iWaitForm.intro='And I wait'"></div> <h6>And I wait</h6> <input class="form-control btn btn-success" name="iWaitFormAdd" type="submit" value="Add"> </div> </form> <hr> <form role="form" name="iWaitForSecondsForm" ng-submit="addStep(steps.iWaitForSecondsForm)" ng-model="form_tags.iWaitForSecondsForm" ng-init="form_tags.iWaitForSecondsForm='Wait'" ng-show="showForm(form_tags.iWaitForSecondsForm)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.iWaitForSecondsForm.intro" ng-init="steps.iWaitForSecondsForm.intro='And I wait for'"></div> <h6>And I wait for</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="iWaitForSecondsFormTarget" ng-model="steps.iWaitForSecondsForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.iWaitForSecondsForm.arg_1='seconds'"> <br> <div ng-hide="true" ng-model="steps.iWaitForSecondsForm.second" ng-init="steps.iWaitForSecondsForm.second='seconds'"></div> <h6>seconds</h6> <input class="form-control btn btn-success" type="submit" name="iWaitForSecondsFormAdd" value="Add"> <div class="help-block" ng-model="steps.iWaitForSecondsForm.final"> {{ steps.iWaitForSecondsForm.intro }} "{{ steps.iWaitForSecondsForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="urlMatchForm" ng-submit="addStep(steps.urlMatchForm)" ng-model="form_tags.urlMatchForm" ng-init="form_tags.urlMatchForm='url'" ng-show="showForm(form_tags.urlMatchForm)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.urlMatchForm.intro" ng-init="steps.urlMatchForm.intro='Then the url should match'"></div> <h6>Then the url should match</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="urlMatchFormTarget" ng-model="steps.urlMatchForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.urlMatchForm.arg_1='http://google.com'"> <br> <input class="form-control btn btn-success" type="submit" name="urlMatchFormAdd" value="Add"> <div class="help-block" ng-model="steps.urlMatchForm.final"> {{ steps.urlMatchForm.intro }} "{{ steps.urlMatchForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="iWaitForElementForm" ng-submit="addStep(steps.iWaitForElementForm)" ng-model="form_tags.iWaitForElementForm" ng-init="form_tags.iWaitForElementForm='Wait'" ng-show="showForm(form_tags.iWaitForElementForm)" class="ng-hide animate-hide animate-show"> <div class="form-group"> <div ng-hide="true" ng-model="steps.iWaitForElementForm.intro" ng-init="steps.iWaitForElementForm.intro='Then I wait for the element'"></div> <h6>Then I wait for the element</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="iWaitForElementFormTarget" ng-model="steps.iWaitForElementForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.iWaitForElementForm.arg_1='Use the full css tag eg #form .class etc'"> <br> <select class="form-control" name="iWaitForElementFormAction" ng-model="steps.iWaitForElementForm.action" ng-required="true" ng-init="steps.iWaitForElementForm.action='to appear'"> <option value="to appear">to appear</option> <option value="to not be there">to not be there</option> </select> <input class="form-control btn btn-success" type="submit" name="iWaitForElementFormAdd" value="Add"> <div class="help-block" ng-model="steps.iWaitForElementForm.final"> {{ steps.iWaitForElementForm.intro }} "{{ steps.iWaitForElementForm.arg_1 }}" {{ steps.iWaitForElementForm.action }}</div> </div> </form> <hr> <form role="form" name="responseCodeForm" ng-submit="addStep(steps.responseCodeForm)" ng-model="form_tags.responseCodeForm" ng-init="form_tags.responseCodeForm='Response Code'" ng-show="showForm(form_tags.responseCodeForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.responseCodeForm.intro" ng-init="steps.responseCodeForm.intro='Then the response status code should be'"></div> <h6>Then the response status code should be</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="responseCodeFormTarget" ng-model="steps.responseCodeForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.responseCodeForm.arg_1='200|404|403'"> <br> <input class="form-control btn btn-success" type="submit" name="responseCodeFormAdd" value="Add"> <div class="help-block" ng-model="steps.responseCodeForm.final"> {{ steps.responseCodeForm.intro }} "{{ steps.responseCodeForm.arg_1 }}" </div> </div> </form> <hr> <form role="form" name="clickAlertForm" ng-submit="addStep(steps.clickAlertForm)" ng-model="form_tags.clickAlertForm" ng-init="form_tags.clickAlertForm='Alert'" ng-show="showForm(form_tags.clickAlertForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.clickAlertForm.intro" ng-init="steps.clickAlertForm.intro='Then I click on the alert window'"></div> <h6>Then I click on the alert window</h6> <input class="form-control btn btn-success" name="clickAlertFormAdd" type="submit" value="Add"> <div class="help-block">Click on the Javascript Alert Window</div> </div> </form> <hr> <form role="form" name="removeElemForm" ng-submit="addStep(steps.removeElemForm)" ng-model="form_tags.removeElemForm" ng-init="form_tags.removeElemForm='Alert'" ng-show="showForm(form_tags.removeElemForm)" class="ng-hide animate-hide"> <div class="form-group"> <div ng-hide="true" ng-model="steps.removeElemForm.intro" ng-init="steps.removeElemForm.intro='Then I remove the element located at'"></div> <h6>Then I remove the element located at</h6> <!--by add arg_1 or arg_2 etc to the model item name we will add quotes around it --> <input class="form-control" name="removeElemFormTarget" ng-model="steps.removeElemForm.arg_1" type="text" value="" ng-required="true" ng-init="steps.removeElemForm.arg_1='#ID or .class or div.class etc'"> <br> <input class="form-control btn btn-success" name="removeElemFormAdd" type="submit" value="Add"> <div class="help-block">get an element out of your way</div> </div> </form> <hr> </div> </div> <div ng-model="blocks.testTokensBlock" ng-init="blocks.testTokensBlock=false" ng-show="blocks.testTokensBlock" class="ng-animate-block-transitions ng-hide"> <p>Tokens coming soon...</p> </div> <div ng-model="blocks.testResultsBlock" ng-init="blocks.testResultsBlock=false" ng-show="blocks.testResultsBlock" class="ng-animate-block-transitions ng-hide"> <div ng-include="reports_test_page.url"></div> </div> <div ng-model="blocks.testRunBlock" ng-init="blocks.testRunBlock=false" ng-show="blocks.testRunBlock" class="ng-animate-block-transitions ng-hide"> <div class="well"> <button type="button" class="btn btn-danger" data-ng-click="runTest()">run</button> </div> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title"> Test Results </h3> </div> <div class="panel-body"> <div class="test-results" ng-bind-html="test_results" class="ng-animate-block-transitions"></div> </div> </div> </div>
assets/css/clockin.css
georglind/projectpulse
body { font-family: arial, helvetica, sans-serif; font-size: 11pt; color: #222; background: #fdfdfd; } /*selections*/ ::selection { background: none; } ::-moz-selection { background: none; /* Gecko Browsers */ } input::selection, textarea::selection { background: rgba(255,255,255,.3); /* WebKit/Blink Browsers */ } input::-moz-selection, textarea::-moz-selection { background: rgba(255,255,255,.3); /* WebKit/Blink Browsers */ } /*placeholder*/ ::-webkit-input-placeholder { color: rgba(0,0,0,.4) } :-moz-placeholder { /* Firefox 18- */ color: rgba(0,0,0,.4) } ::-moz-placeholder { /* Firefox 19+ */ color: rgba(0,0,0,.4) } :-ms-input-placeholder { color: rgba(0,0,0,.4) } /* h1 */ body.dim .clockin { opacity: .6; } html body.dim .running { opacity: 1; } menu { margin: 20px 30px; padding: 0; } h1 { /*margin: 20px 30px;*/ margin: 0; padding: 0; } /*body*/ .body { margin: 20px 30px 10px; } .clockins { margin-bottom: 10px; } /* clockin */ .clockin { width: 280px; margin: 0 10px 10px 0; display: inline-block; background-color: #FFBF00; vertical-align: top; transition: opacity .15s ease-in-out; -moz-transition: opacity .15s ease-in-out; -o-transition: opacity .15s ease-in-out; -webkit-transition: opacity .15s ease-in-out; } /* colors */ body .green { background-color: #97A686; } body .amber { background-color: #F5D497; } body .blue { background-color: #7CB9D9; } body .orange { background-color: #FFA463 } body .red { background-color: #DC4539; } body .purple { background-color: #918FB3 } /* controls */ .clockin_controls { padding: 6px; } .clockin_title { width: 198px; font-size: 14pt; margin: 6px 5px 0; font-weight: bold; background: none; border: 0; } .clockin_title:focus { outline: none; background-color: gray; background-color: rgba(255,255,255,.2); } .clockin_colors { padding: 4px 2px; font-size: 12pt; display: inline-block; vertical-align: top; color: #eee; color: rgba(0,0,0,.3); cursor: pointer; } .clockin_colors:hover { color: #e5e5e5; color: rgba(0,0,0,1); background-color: #888; background-color: rgba(255,255,255,.4); border-radius: 4px } .clockin_delete { padding: 4px 2px; font-size: 12pt; display: inline-block; vertical-align: top; margin-left: 2px; color: #aaa; color: rgba(0,0,0,.3); cursor: pointer; } .clockin_delete:hover { color: black; } /* description */ .clockin_desc { width: 260px; font-size: 10pt; border: 0; margin: 0 0 0 10px; height: 28px; background: none; } .clockin_desc:focus { background-color: gray; background-color: rgba(255,255,255,.2); outline: none; } /* timers */ .clockin_timers { padding: 2px 5px; } .clockin_timers_total, .clockin_timers_week { width: 56px; font-size: 8pt; display: inline-block; text-align: center; vertical-align: middle; } .clockin_timers_total div, .clockin_timers_week div { width: 56px; font-size: 14pt; font-weight: bold } .clockin_timers_today { width: 110px; font-size: 8pt; display: inline-block; text-align: center; vertical-align: middle } .clockin_timers_today div{ width: 110px; font-size: 18pt; font-weight: bold } .clockin_timers_start { font-size: 22pt; display: inline-block; text-align: left; vertical-align: bottom; padding-bottom: 4px; cursor: pointer; color: #888; color: rgba(0,0,0,.3); } .icon-spin2:hover { color: black } .animate-spin { color: black; } /* button */ .clockin_button { cursor: pointer; background-color: #ccc; border-radius: 2px; padding: 6px 10px; display: inline-block; } .clockin_button_off { background-color: red; } /* tasks */ .clockin_tasks { width: 280px; height: 176px; overflow-y: scroll; } .clockin_add_task { color: black; color: rgba(0,0,0,.7); width: 280px; padding: 9px 0; font-size: 10pt; border-radius: 0 0 4px 4px; text-align: center; display: inline-block; cursor: pointer; background-color: #aaa; background-color: rgba(0,0,0,.06); } .clockin_add_task:hover { background-color: #888; background-color: rgba(0,0,0,.15); color: #222; } .clockin_task { width: 280px; margin-top: 10px; border-bottom: 1px solid #888; border-bottom: 1px solid rgba(0,0,0,.1); } .clockin_task input { width: 210px; font-weight: bold; margin-bottom: 4px; margin-left: 10px; font-size: 11.5pt; border: 0; background: none; } .clockin_task input:focus { background-color: gray; background-color: rgba(255,255,255,.2); outline: none; } .clockin_task_delete { width: 24px; height: 20px; font-size: 14pt; cursor: pointer; vertical-align: middle; display: inline-block; color: #888; color: rgba(0,0,0,.3); } .clockin_task_delete:hover { color: black; } .clockin_task_open .clockin_task_state, .clockin_task_closed .clockin_task_state { display: inline-block; width: 20px; height: 20px; font-size: 14pt; cursor: pointer; vertical-align: middle; text-align: center; } /* dialog */ .clockin_popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 100; text-align: center; } .clockin_blur { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-color: black; opacity: .0001; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out; -o-transition: all .2s ease-out; transition: all .2s ease-out; } .clockin_dialog { z-index: 10; width: 500px; margin: 130px auto 150px; text-align: left; background: #f0f0f0; position: relative; border-radius: 2px; box-shadow: 0 0 20px #444; opacity: 0.001; -webkit-transition: all .2s ease-out; -moz-transition: all .2s ease-out; -o-transition: all .2s ease-out; transition: all .2s ease-out; } .clockin_dialog p { line-height: 1.2em; } .clockin_dialog form { display: inline-block; } .clockin_dialog input, .clockin_dialog select { padding: 2px; font-size: 12pt; margin: 0 5px; display: inline-block; } .clockin_dialog_close { position: absolute; font-size: 14pt; top: 5px; right: 10px; padding: 5px; color: #888; cursor: pointer; } .clockin_dialog_close:hover { color: black; } .clockin_dialog_title { font-weight: 800; font-size: 14pt; background-color: #e0e0e0; padding: 10px 15px; border-radius: 2px 2px 0 0; } .clockin_dialog .clockin_dialog_content { padding: 15px 15px; } .clockin_dialog .clockin_dialog_content p:first-child { margin-top: 2px; } .clockin_dialog_content textarea { font-family: Courier; font-size: 9pt; width: 98%; height: 200px; overflow: auto; border: 4px solid #ccc; outline: none; /*white-space: nowrap; */ } .clockin_dialog .clockin_dialog_sections { list-style-type: none; margin: 0; padding: 0; } .clockin_dialog .clockin_dialog_sections li { margin: 0 -10px 0 -10px; padding: 15px; /*border-radius: 2px;*/ /*background: #ccc;*/ border-top: 1px solid #ddd; } .clockin_thanks { max-width: 500px; margin: 0 auto; border-top: 1px solid #888; margin-top: 60px; padding-top: 30px; text-align: center; } .clockin_thanks ul { list-style-type: none; } .clockin_thanks li { margin: 10px; } /* misc */ .center { text-align: center; }
examples/1.html
kevinmmcraig/kevinmmcraig.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>EXAMPLE 1</title> <!-- include base pure.css file --> <link rel="stylesheet" href="https://unpkg.com/purecss@0.6.2/build/pure-min.css" integrity="sha384-UQiGfs9ICog+LwheBSRCt1o5cbyKIHbwjWscjemyBMT9YCUMZffs6UqUTd0hObXD" crossorigin="anonymous"> <!-- include responsive grids (didn't keep the IE8 fallback) --> <!-- http://purecss.io/start/#responsive-grids --> <link rel="stylesheet" href="https://unpkg.com/purecss@0.6.2/build/grids-responsive-min.css"> <!-- note that you can also do it this way <link rel="stylesheet" href="https://cdn.jsdelivr.net/g/pure@0.6.2(base-min.css+grids-min.css+grids-responsive-min.css+buttons-min.css)"> --> <style> .pure-g { outline: 3px solid yellow; } .pure-g > div { height: 350px; text-align: center; } .pure-g > div:first-child { background-color: lightblue; } .pure-g > div:last-child { background-color: salmon; } .buttons { padding: 10px 0; outline: 2px white dotted; } </style> </head> <body> <h1>EXAMPLE 1</h1> <div class="pure-g"> <div class="pure-u-lg-4-5 pure-u-sm-1-2 pure-u-2-3"> <p>this left panel should go from 4/5 to 1/2 to 2/3</p> <br /> <div class="buttons"> <p>~ buttons ~</p> <a class="pure-button" href="#">A Pure Button</a> <a class="pure-button pure-button-active" href="#">An Active Button</a> <a class="pure-button pure-button-primary" href="#">A Primary Button</a> </div> </div> <div class="pure-u-lg-1-5 pure-u-sm-1-2 pure-u-1-3"> <p>this right panel should go from 1/5 to 1/2 to 1/3</p> </div> </div> </body> </html>
silverlight3-samples/Silverlight3Samples.Web/Silverlight3SamplesTestPage.html
indexzero/bruce-wayne
<!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> <title>Silverlight3Samples</title> <style type="text/css"> html, body { height: 100%; overflow: auto; } body { padding: 0; margin: 0; } #silverlightControlHost { height: 100%; text-align:center; } </style> <script type="text/javascript" src="Silverlight.js"></script> <script type="text/javascript"> function onSilverlightError(sender, args) { var appSource = ""; if (sender != null && sender != 0) { appSource = sender.getHost().Source; } var errorType = args.ErrorType; var iErrorCode = args.ErrorCode; if (errorType == "ImageError" || errorType == "MediaError") { return; } var errMsg = "Unhandled Error in Silverlight Application " + appSource + "\n" ; errMsg += "Code: "+ iErrorCode + " \n"; errMsg += "Category: " + errorType + " \n"; errMsg += "Message: " + args.ErrorMessage + " \n"; if (errorType == "ParserError") { errMsg += "File: " + args.xamlFile + " \n"; errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } else if (errorType == "RuntimeError") { if (args.lineNumber != 0) { errMsg += "Line: " + args.lineNumber + " \n"; errMsg += "Position: " + args.charPosition + " \n"; } errMsg += "MethodName: " + args.methodName + " \n"; } throw new Error(errMsg); } </script> </head> <body> <form id="form1" runat="server" style="height:100%"> <div id="silverlightControlHost"> <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%"> <param name="source" value="ClientBin/Silverlight3Samples.xap"/> <param name="onError" value="onSilverlightError" /> <param name="background" value="white" /> <param name="minRuntimeVersion" value="3.0.40624.0" /> <param name="autoUpgrade" value="true" /> <a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0" style="text-decoration:none"> <img src="http://go.microsoft.com/fwlink/?LinkId=108181" alt="Get Microsoft Silverlight" style="border-style:none"/> </a> </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div> </form> </body> </html>
Reports/cl/cloudcore.web.2015.5.26.1306/CloudCore.Web.Core-net45.html
kuhlenh/port-to-core
<!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; a49552e9-aa9d-4c4c-89bd-3850430ba9f7 </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="#CloudCore.Web.Core">CloudCore.Web.Core</a></strong></td> <td class="text-center">75.21 %</td> <td class="text-center">72.53 %</td> <td class="text-center">84.07 %</td> <td class="text-center">72.34 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="CloudCore.Web.Core"><h3>CloudCore.Web.Core</h3></a> <table> <tbody> <tr> <th>Target type</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> <th>Recommended changes</th> </tr> <tr> <td>System.ApplicationException</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use other exception types.</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>Use other exception types.</td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use other exception types.</td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String,System.Exception)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use other exception types.</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.Attribute</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">GetCustomAttribute(System.Reflection.MemberInfo,System.Type)</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.Collections.ArrayList</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.Collections.Generic.List`1</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">ForEach(System.Action{`0})</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.Collections.Hashtable</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.Collections.Specialized.NameValueCollection</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Add(System.String,System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_AllKeys</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Item(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.ComponentModel.Component</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</td> </tr> <tr> <td style="padding-left:2em">Dispose</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage</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.DataAnnotations.RequiredAttribute</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></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="IconSuccessEncoded"></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.DataAnnotations.UIHintAttribute</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconSuccessEncoded"></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.DescriptionAttribute</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_Description</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.ComponentModel.InvalidEnumArgumentException</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.String,System.Int32,System.Type)</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.ComponentModel.MemberDescriptor</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_Name</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.ComponentModel.PropertyDescriptor</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">GetValue(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.ComponentModel.PropertyDescriptorCollection</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">GetEnumerator</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.ComponentModel.TypeDescriptor</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">GetProperties(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.Configuration.Configuration</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use configuration appropriate for your application model. For portable Framework Components, expose API for configuration on type</td> </tr> <tr> <td style="padding-left:2em">Save</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use configuration appropriate for your application model. For portable Framework Components, expose API for configuration on type</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.Configuration.ConfigurationManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use configuration appropriate for your application model. For portable Framework Components, expose API for configuration on type</td> </tr> <tr> <td style="padding-left:2em">get_AppSettings</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage: track configuration via alternate means.</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.Configuration.ConfigurationSection</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use configuration appropriate for your application model. For portable Framework Components, expose API for configuration on type</td> </tr> <tr> <td style="padding-left:2em">get_SectionInformation</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.Configuration.SectionInformation</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_IsProtected</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">ProtectSection(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Data.DataTable</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.Data.NoNullAllowedException</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.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.DBNull</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">Value</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.Delegate</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use System.Reflection.RuntimeReflectionExtensions.GetMethodInfo</td> </tr> <tr> <td style="padding-left:2em">get_Method</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use System.Reflection.RuntimeReflectionExtensions.GetMethodInfo</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.Drawing.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.IdentityModel.Services.Configuration.FederationConfiguration</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_CookieHandler</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.IdentityModel.Services.CookieHandler</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_Name(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.IdentityModel.Services.FederatedAuthentication</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_FederationConfiguration</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_SessionAuthenticationModule</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.IdentityModel.Services.SessionAuthenticationModule</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">CreateSessionSecurityToken(System.Security.Claims.ClaimsPrincipal,System.String,System.DateTime,System.DateTime,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">DeleteSessionTokenCookie</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_CookieHandler</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">SignOut</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">WriteSessionTokenToCookie(System.IdentityModel.Tokens.SessionSecurityToken)</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.IdentityModel.Services.SessionSecurityTokenReceivedEventArgs</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_SessionToken</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_ReissueCookie(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_SessionToken(System.IdentityModel.Tokens.SessionSecurityToken)</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.IdentityModel.Tokens.SecurityToken</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_ValidFrom</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_ValidTo</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.IdentityModel.Tokens.SessionSecurityToken</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_ClaimsPrincipal</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_Context</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_IsPersistent</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.FileAccess</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.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.FileStream</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.String,System.IO.FileMode,System.IO.FileAccess)</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.Net.Http.Formatting.MediaTypeFormatter</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">CanReadType(System.Type)</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">CanWriteType(System.Type)</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_SupportedMediaTypes</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">WriteToStreamAsync(System.Type,System.Object,System.IO.Stream,System.Net.Http.HttpContent,System.Net.TransportContext)</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.Http.Formatting.MediaTypeFormatterCollection</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.Http.HttpRequestMessageExtensions</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">CreateErrorResponse(System.Net.Http.HttpRequestMessage,System.Net.HttpStatusCode,System.String,System.Exception)</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">CreateResponse``1(System.Net.Http.HttpRequestMessage,System.Net.HttpStatusCode,``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.Net.Http.ObjectContent</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.Type,System.Object,System.Net.Http.Formatting.MediaTypeFormatter,System.Net.Http.Headers.MediaTypeHeaderValue)</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.Security.RemoteCertificateValidationCallback</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Not supported for HTTP - use new Handler and ignorable server certificate errors instead</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>Not supported for HTTP - use new Handler and ignorable server certificate errors instead</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.Security.SslPolicyErrors</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Not supported for HTTP - use new Handler and ignorable server certificate errors instead</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.ServicePointManager</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use System.Net.Http.HttpClient, System.Net.Http.HttpClientHandler and System.Net.Http.WinHttpHandler types instead</td> </tr> <tr> <td style="padding-left:2em">set_ServerCertificateValidationCallback(System.Net.Security.RemoteCertificateValidationCallback)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use System.Net.Http.HttpClient, System.Net.Http.HttpClientHandler and System.Net.Http.WinHttpHandler types instead</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.WebClient</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>Use HttpClient instead</td> </tr> <tr> <td style="padding-left:2em">DownloadString(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">get_Headers</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use HttpClient instead</td> </tr> <tr> <td style="padding-left:2em">set_BaseAddress(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">UploadString(System.String,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">UploadString(System.String,System.String,System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <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.Reflection.BindingFlags</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.Runtime.Serialization.ISerializable</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.Security.Claims.Claim</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.String,System.String)</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_Type</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_Value</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Claims.ClaimsIdentity</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">#ctor(System.Collections.Generic.IEnumerable{System.Security.Claims.Claim},System.String)</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">AddClaim(System.Security.Claims.Claim)</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_Claims</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Claims.ClaimsPrincipal</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.Security.Principal.IIdentity)</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">FindFirst(System.String)</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_Identity</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Cryptography.CryptographicException</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Cryptography.X509Certificates.X509Certificate</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Security.Cryptography.X509Certificates.X509Chain</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.SerializableAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove this attribute</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>Remove this attribute</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.String</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage (does nothing)</td> </tr> <tr> <td style="padding-left:2em">ToString(System.IFormatProvider)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove usage (does nothing)</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Text.Encoding</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ASCII</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Threading.Thread</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_CurrentThread</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_CurrentCulture(System.Globalization.CultureInfo)</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_CurrentPrincipal(System.Security.Principal.IPrincipal)</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_CurrentUICulture(System.Globalization.CultureInfo)</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.Type</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsNestedPublic</td> </tr> <tr> <td style="padding-left:2em">EmptyTypes</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>new Type[0] (or create your own static property which returns a cached version of this)</td> </tr> <tr> <td style="padding-left:2em">get_IsClass</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsClass</td> </tr> <tr> <td style="padding-left:2em">get_IsEnum</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsEnum</td> </tr> <tr> <td style="padding-left:2em">get_IsGenericType</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsGenericType</td> </tr> <tr> <td style="padding-left:2em">get_IsNestedPublic</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsNestedPublic</td> </tr> <tr> <td style="padding-left:2em">get_IsPublic</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsPublic</td> </tr> <tr> <td style="padding-left:2em">get_IsValueType</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsValueType</td> </tr> <tr> <td style="padding-left:2em">GetConstructor(System.Type[])</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">GetField(System.String)</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">GetFields(System.Reflection.BindingFlags)</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">GetGenericArguments</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">GetMember(System.String)</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">GetMethod(System.String)</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">GetMethod(System.String,System.Type[])</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">GetProperties</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">GetProperties(System.Reflection.BindingFlags)</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">GetProperty(System.String)</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">IsAssignableFrom(System.Type)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Configuration.WebConfigurationManager</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">OpenWebConfiguration(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Hosting.HostingEnvironment</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">RegisterVirtualPathProvider(System.Web.Hosting.VirtualPathProvider)</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.Web.Hosting.VirtualFile</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">Open</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.Web.Hosting.VirtualFileBase</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_VirtualPath</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.Web.Hosting.VirtualPathProvider</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)</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.Web.Http.AllowAnonymousAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Http.ApiController</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">get_ControllerContext</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>System.Web.Http.Controllers.HttpActionContext</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">get_ModelState</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 style="padding-left:2em">set_ControllerContext(System.Web.Http.Controllers.HttpControllerContext)</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_Response(System.Net.Http.HttpResponseMessage)</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.Web.Http.Controllers.HttpActionDescriptor</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_ActionName</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_Configuration</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_ControllerDescriptor</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_ReturnType</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.Web.Http.Controllers.HttpControllerContext</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.Web.Http.Controllers.HttpControllerDescriptor</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_ControllerName</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_ControllerType</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.Web.Http.Controllers.HttpParameterDescriptor</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_ActionDescriptor</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_ParameterType</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.Web.Http.Controllers.ReflectedHttpActionDescriptor</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_MethodInfo</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.Web.Http.Controllers.ReflectedHttpParameterDescriptor</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_ParameterInfo</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.Web.Http.Controllers.ServicesContainer</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">Replace(System.Type,System.Object)</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.Web.Http.Description.ApiDescription</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_ActionDescriptor</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_HttpMethod</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_ParameterDescriptions</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_RelativePath</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_SupportedRequestBodyFormatters</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_SupportedResponseFormatters</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.Web.Http.Description.ApiParameterDescription</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_Name</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_ParameterDescriptor</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_Source</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.Web.Http.Description.ApiParameterSource</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.Web.Http.Description.IApiExplorer</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_ApiDescriptions</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.Web.Http.Description.IDocumentationProvider</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.Web.Http.Filters.ActionFilterAttribute</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">OnActionExecuting(System.Web.Http.Controllers.HttpActionContext)</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.Web.Http.Filters.ExceptionFilterAttribute</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">OnException(System.Web.Http.Filters.HttpActionExecutedContext)</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.Web.Http.Filters.HttpActionExecutedContext</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_Exception</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 style="padding-left:2em">set_Response(System.Net.Http.HttpResponseMessage)</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.Web.Http.FromBodyAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Http.GlobalConfiguration</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_Configuration</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.Web.Http.HttpConfiguration</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_Formatters</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_Properties</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_Services</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.Web.Http.HttpGetAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Http.HttpPostAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Http.ModelBinding.ModelError</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_ErrorMessage</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.Web.Http.ModelBinding.ModelErrorCollection</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.Web.Http.ModelBinding.ModelState</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_Errors</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.Web.Http.ModelBinding.ModelStateDictionary</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_IsValid</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">GetEnumerator</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.Web.Http.RouteCollectionExtensions</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">MapHttpRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,System.Object)</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.Web.Http.ServicesExtensions</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">GetApiExplorer(System.Web.Http.Controllers.ServicesContainer)</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.Web.HttpApplication</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">get_Request</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_Response</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_Server</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.Web.HttpCacheability</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.Web.HttpCachePolicyBase</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">SetCacheability(System.Web.HttpCacheability)</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">SetExpires(System.DateTime)</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">SetLastModified(System.DateTime)</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.Web.HttpContext</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_Request</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_Server</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_Session</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_User</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_User(System.Security.Principal.IPrincipal)</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.Web.HttpContextBase</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_Request</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_Response</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_Session</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.Web.HttpException</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">GetHttpCode</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.Web.HttpRequest</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_HttpMethod</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_IsAuthenticated</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_Path</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_RawUrl</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_RequestContext</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.Web.HttpRequestBase</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_ApplicationPath</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_Form</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_Headers</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_HttpMethod</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_IsAuthenticated</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_QueryString</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_RawUrl</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_RequestContext</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_Url</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.Web.HttpResponse</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">Clear</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">Redirect(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">set_ContentType(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">set_StatusCode(System.Int32)</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_TrySkipIisCustomErrors(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">Write(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpResponseBase</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">Clear</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">End</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_Cache</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_ContentType(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">set_StatusCode(System.Int32)</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_StatusDescription(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">Write(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpRuntime</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_AppDomainAppVirtualPath</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.Web.HttpServerUtility</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">ClearError</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">GetLastError</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">MapPath(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpSessionStateBase</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">Abandon</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_SessionID</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.Web.HttpUtility</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">HtmlAttributeEncode(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">HtmlEncode(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">ParseQueryString(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.IHtmlString</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.Web.Mvc.ActionDescriptor</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_ActionName</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_ControllerDescriptor</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.Web.Mvc.ActionExecutedContext</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.Web.Mvc.ActionExecutingContext</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_ActionDescriptor</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_Result(System.Web.Mvc.ActionResult)</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.Web.Mvc.ActionFilterAttribute</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">OnActionExecuting(System.Web.Mvc.ActionExecutingContext)</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">OnResultExecuting(System.Web.Mvc.ResultExecutingContext)</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.Web.Mvc.ActionResult</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">ExecuteResult(System.Web.Mvc.ControllerContext)</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.Web.Mvc.AjaxRequestExtensions</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">IsAjaxRequest(System.Web.HttpRequestBase)</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.Web.Mvc.AreaRegistration</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">get_AreaName</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">RegisterAllAreas</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.Web.Mvc.AreaRegistrationContext</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_AreaName</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_Routes</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">MapRoute(System.String,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">MapRoute(System.String,System.String,System.Object,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.Web.Mvc.AuthorizationContext</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_Result(System.Web.Mvc.ActionResult)</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.Web.Mvc.AuthorizeAttribute</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">AuthorizeCore(System.Web.HttpContextBase)</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">HandleUnauthorizedRequest(System.Web.Mvc.AuthorizationContext)</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.Web.Mvc.Controller</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">File(System.IO.Stream,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_ModelState</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 style="padding-left:2em">get_Response</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">Initialize(System.Web.Routing.RequestContext)</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">RedirectToActionPermanent(System.String,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">View(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">View(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.Web.Mvc.ControllerBase</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_ControllerContext</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_TempData</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_ViewBag</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_ViewData</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.Web.Mvc.ControllerContext</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_Controller</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_HttpContext</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_RequestContext</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_RouteData</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.Web.Mvc.ControllerDescriptor</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_ControllerName</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.Web.Mvc.DependencyResolver</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">SetResolver(System.Web.Mvc.IDependencyResolver)</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.Web.Mvc.FileContentResult</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.Byte[],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.Web.Mvc.FileResult</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.Web.Mvc.FileStreamResult</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.IO.Stream,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.Web.Mvc.FilterAttributeFilterProvider</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.Web.Mvc.FilterProviderCollection</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.Web.Mvc.FilterProviders</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_Providers</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.Web.Mvc.GlobalFilterCollection</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.Object)</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.Web.Mvc.GlobalFilters</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_Filters</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.Web.Mvc.HandleErrorAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.Html.DisplayTextExtensions</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">DisplayTextFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})</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.Web.Mvc.Html.EditorExtensions</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">EditorFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})</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.Web.Mvc.Html.InputExtensions</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">CheckBox(System.Web.Mvc.HtmlHelper,System.String,System.Boolean,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">CheckBoxFor``1(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}},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">HiddenFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``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">HiddenFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},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">Password(System.Web.Mvc.HtmlHelper,System.String,System.Object,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">PasswordFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},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">RadioButtonFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Object,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">TextBox(System.Web.Mvc.HtmlHelper,System.String,System.Object,System.Collections.Generic.IDictionary{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">TextBox(System.Web.Mvc.HtmlHelper,System.String,System.Object,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">TextBoxFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IDictionary{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">TextBoxFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Object)</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.Web.Mvc.Html.LabelExtensions</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.Web.Mvc.Html.PartialExtensions</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">Partial(System.Web.Mvc.HtmlHelper,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">Partial(System.Web.Mvc.HtmlHelper,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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.Html.SelectExtensions</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">DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},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">DropDownList(System.Web.Mvc.HtmlHelper,System.String,System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},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">DropDownListFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},System.Collections.Generic.IDictionary{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">DropDownListFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},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">DropDownListFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Collections.Generic.IEnumerable{System.Web.Mvc.SelectListItem},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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.Html.TextAreaExtensions</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">TextArea(System.Web.Mvc.HtmlHelper,System.String,System.String,System.Int32,System.Int32,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">TextAreaFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Int32,System.Int32,System.Object)</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.Web.Mvc.Html.ValidationExtensions</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">ValidationMessageFor``2(System.Web.Mvc.HtmlHelper{``0},System.Linq.Expressions.Expression{System.Func{``0,``1}})</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.Web.Mvc.HtmlHelper</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_RouteCollection</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_ViewContext</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_ViewData</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">Raw(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.Web.Mvc.HtmlHelper`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">get_ViewData</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.Web.Mvc.HttpGetAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.HttpPostAttribute</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.IDependencyResolver</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.Web.Mvc.IFilterProvider</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.Web.Mvc.IResultFilter</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.Web.Mvc.IView</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.Web.Mvc.IViewEngine</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.Web.Mvc.ModelError</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_ErrorMessage</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.Web.Mvc.ModelErrorCollection</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.Web.Mvc.ModelMetadata</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">FromLambdaExpression``2(System.Linq.Expressions.Expression{System.Func{``0,``1}},System.Web.Mvc.ViewDataDictionary{``0})</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_ContainerType</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_DisplayFormatString</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_DisplayName</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_IsNullableValueType</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_IsRequired</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_Model</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_ModelType</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_Properties</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_PropertyName</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_ShowForDisplay</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.Web.Mvc.ModelMetadataProvider</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">GetMetadataForProperty(System.Func{System.Object},System.Type,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">GetMetadataForType(System.Func{System.Object},System.Type)</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.Web.Mvc.ModelMetadataProviders</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_Current</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.Web.Mvc.ModelState</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_Errors</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.Web.Mvc.ModelStateDictionary</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_IsValid</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_Keys</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.Web.Mvc.MvcHtmlString</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.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">Create(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.Web.Mvc.RazorViewEngine</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.RedirectResult</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.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.Web.Mvc.RedirectToRouteResult</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.Web.Routing.RouteValueDictionary)</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.Web.Mvc.RequireHttpsAttribute</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">HandleNonHttpsRequest(System.Web.Mvc.AuthorizationContext)</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">OnAuthorization(System.Web.Mvc.AuthorizationContext)</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.Web.Mvc.ResultExecutingContext</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_Result</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.Web.Mvc.RouteCollectionExtensions</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">IgnoreRoute(System.Web.Routing.RouteCollection,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">MapRoute(System.Web.Routing.RouteCollection,System.String,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">MapRoute(System.Web.Routing.RouteCollection,System.String,System.String,System.Object,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.Web.Mvc.SelectList</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.Collections.IEnumerable)</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.Web.Mvc.SelectListItem</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">get_Selected</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_Text</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_Value</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_Selected(System.Boolean)</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_Text(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_Value(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.Web.Mvc.TagBuilder</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.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">AddCssClass(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_InnerHtml</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">MergeAttribute(System.String,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">MergeAttributes``2(System.Collections.Generic.IDictionary{``0,``1},System.Boolean)</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_InnerHtml(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">SetInnerText(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">ToString(System.Web.Mvc.TagRenderMode)</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.Web.Mvc.TagRenderMode</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.Web.Mvc.TempDataDictionary</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">set_Item(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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.UrlHelper</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.Web.Routing.RequestContext)</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.Web.Routing.RequestContext,System.Web.Routing.RouteCollection)</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">Action(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">Action(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">Action(System.String,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">Action(System.String,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">GenerateContentUrl(System.String,System.Web.HttpContextBase)</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">GenerateUrl(System.String,System.String,System.String,System.Web.Routing.RouteValueDictionary,System.Web.Routing.RouteCollection,System.Web.Routing.RequestContext,System.Boolean)</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_RequestContext</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.Web.Mvc.UrlParameter</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">Optional</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.Web.Mvc.ViewContext</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_TempData</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_ViewData</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_Writer</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.Web.Mvc.ViewDataDictionary</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">Eval(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_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_Model</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_ModelMetadata</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_Item(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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Mvc.ViewDataDictionary`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">get_Model</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.Web.Mvc.ViewEngineCollection</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">FindPartialView(System.Web.Mvc.ControllerContext,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.Web.Mvc.ViewEngineResult</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_SearchedLocations</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_View</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.Web.Mvc.ViewEngines</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_Engines</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.Web.Mvc.ViewResult</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_MasterName(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.Web.Mvc.VirtualPathProviderViewEngine</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_AreaMasterLocationFormats(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_AreaPartialViewLocationFormats(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_AreaViewLocationFormats(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_MasterLocationFormats(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_PartialViewLocationFormats(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_ViewLocationFormats(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_VirtualPathProvider(System.Web.Hosting.VirtualPathProvider)</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.Web.Mvc.WebViewPage</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">ExecutePageHierarchy</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_TempData</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_Url</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_ViewContext</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.Web.Mvc.WebViewPage`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">#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">get_Html</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_Model</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">InitHelpers</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.Web.Routing.RequestContext</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_HttpContext</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_RouteData</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.Web.Routing.Route</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_DataTokens</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_DataTokens(System.Web.Routing.RouteValueDictionary)</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.Web.Routing.RouteCollection</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.Web.Routing.RouteData</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_DataTokens</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_Values</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.Web.Routing.RouteTable</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_Routes</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.Web.Routing.RouteValueDictionary</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">#ctor(System.Collections.Generic.IDictionary{System.String,System.Object})</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)</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(System.String,System.Object)</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">ContainsKey(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">get_Item(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">set_Item(System.String,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.Web.Script.Serialization.JavaScriptSerializer</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use JSON.NET instead</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>Use JSON.NET instead</td> </tr> <tr> <td style="padding-left:2em">Serialize(System.Object)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use JSON.NET instead</td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.SessionState.HttpSessionState</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(System.String,System.Object)</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.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">set_Item(System.String,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.Web.UI.HtmlTextWriter</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.IO.TextWriter)</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.Web.VirtualPathUtility</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">ToAbsolute(System.String)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.WebPages.HelperResult</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.Action{System.IO.TextWriter})</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.Web.WebPages.SectionWriter</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.Object,System.IntPtr)</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.Web.WebPages.WebPageBase</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">DefineSection(System.String,System.Web.WebPages.SectionWriter)</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">InitializePage</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.Web.WebPages.WebPageExecutingBase</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_Context</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">Write(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">WriteLiteral(System.Object)</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.Web.WebPages.WebPageRenderingBase</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>System.Xml.XPath.XPathDocument</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.String)</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">CreateNavigator</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.Xml.XPath.XPathItem</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_Value</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.Xml.XPath.XPathNavigator</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">SelectSingleNode(System.String)</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
clean/Linux-x86_64-4.10.1-2.0.6/released/8.12.1/improper-integrals/0.1.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>improper-integrals: 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.12.1 / improper-integrals - 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> improper-integrals <small> 0.1.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2021-04-16 14:57:06 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-16 14:57:06 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.12.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.10.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.10.1 Official release 4.10.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; name: &quot;coq-improper-integrals&quot; version: &quot;0.1.0&quot; maintainer: &quot;yves.bertot@inria.fr&quot; homepage: &quot;https://github.com/ybertot/improper_integrals&quot; dev-repo: &quot;git+https://github.com/ybertot/improper_integrals.git&quot; bug-reports: &quot;yves.bertot@inria.fr&quot; license: &quot;MIT&quot; build: [[ &quot;coq_makefile&quot; &quot;-f&quot; &quot;_CoqProject&quot; &quot;-o&quot; &quot;Makefile&quot; ] [ make &quot;-j&quot; &quot;%{jobs}%&quot; ]] install: [ make &quot;install&quot; &quot;DEST=&#39;%{lib}%/coq/user_contrib/improper_integrals&#39;&quot; ] remove: [ &quot;sh&quot; &quot;-c&quot; &quot;rm -rf &#39;%{lib}%/coq/user-contrib/improper_integrals&#39;&quot; ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.9~&quot;} &quot;coq-coquelicot&quot; {&gt;= &quot;3&quot; &amp; &lt; &quot;4~&quot;} ] tags: [ &quot;keyword:real analysis&quot; &quot;category:Mathematics/Real Calculus and Topology&quot; ] authors: [ &quot;Yves Bertot &lt;yves.bertot@inria.fr&gt;&quot; ] synopsis: &quot;Additions to the coquelicot library for handling improper integrals&quot; description: &quot;&quot;&quot; This package contains a few theorems whose use case was discovered when making experiments, for instance in the pi-agm package. These theorems should probably integrated in coquelicot in the long run, but having this package makes them easily available while waiting for any necessary cleanup and discussion to happen.&quot;&quot;&quot; url { src: &quot;https://github.com/ybertot/improper_integrals/archive/v0.1.0.zip&quot; checksum: &quot;md5=7b5ac26e73f78d774302d37f840fb1a9&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-improper-integrals.0.1.0 coq.8.12.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.12.1). The following dependencies couldn&#39;t be met: - coq-improper-integrals -&gt; coq &lt; 8.9~ -&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-improper-integrals.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"> <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>
public/stylesheets/overrides.css
mngaw20/twitter-app
body { background: #fff; } h1 { color: #2e2e2e; } .embeddedtweet div.embeddedtweet-tweet { border-color: #2e2e2e; }
doc/rdoc/classes/CreateFormulas.html
NESCent/max-bodysize-evol
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Class: CreateFormulas</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" /> <script type="text/javascript"> // <![CDATA[ function popupCode( url ) { window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") } 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 codeblocks hidden by default document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) // ]]> </script> </head> <body> <div id="classHeader"> <table class="header-table"> <tr class="top-aligned-row"> <td><strong>Class</strong></td> <td class="class-name-in-header">CreateFormulas</td> </tr> <tr class="top-aligned-row"> <td><strong>In:</strong></td> <td> <a href="../files/db/migrate/006_create_formulas_rb.html"> db/migrate/006_create_formulas.rb </a> <br /> </td> </tr> <tr class="top-aligned-row"> <td><strong>Parent:</strong></td> <td> ActiveRecord::Migration </td> </tr> </table> </div> <!-- banner header --> <div id="bodyContent"> <div id="contextContent"> </div> <div id="method-list"> <h3 class="section-bar">Methods</h3> <div class="name-list"> <a href="#M000157">down</a>&nbsp;&nbsp; <a href="#M000156">up</a>&nbsp;&nbsp; </div> </div> </div> <!-- if includes --> <div id="section"> <!-- if method_list --> <div id="methods"> <h3 class="section-bar">Public Class methods</h3> <div id="method-M000157" class="method-detail"> <a name="M000157"></a> <div class="method-heading"> <a href="CreateFormulas.src/M000157.html" target="Code" class="method-signature" onclick="popupCode('CreateFormulas.src/M000157.html');return false;"> <span class="method-name">down</span><span class="method-args">()</span> </a> </div> <div class="method-description"> </div> </div> <div id="method-M000156" class="method-detail"> <a name="M000156"></a> <div class="method-heading"> <a href="CreateFormulas.src/M000156.html" target="Code" class="method-signature" onclick="popupCode('CreateFormulas.src/M000156.html');return false;"> <span class="method-name">up</span><span class="method-args">()</span> </a> </div> <div class="method-description"> </div> </div> </div> </div> <div id="validator-badges"> <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> </div> </body> </html>
clean/Linux-x86_64-4.05.0-2.0.1/released/8.7.1+1/goedel/8.12.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>goedel: 3 m 42 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.7.1+1 / goedel - 8.12.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> goedel <small> 8.12.0 <span class="label label-success">3 m 42 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-19 04:09:34 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-19 04:09:34 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 2 Virtual package relying on perl coq 8.7.1+1 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;palmskog@gmail.com&quot; homepage: &quot;https://github.com/coq-community/goedel&quot; dev-repo: &quot;git+https://github.com/coq-community/goedel.git&quot; bug-reports: &quot;https://github.com/coq-community/goedel/issues&quot; license: &quot;MIT&quot; synopsis: &quot;Coq proof of the Gödel-Rosser 1st incompleteness theorem&quot; description: &quot;&quot;&quot; A proof in Coq of the Gödel-Rosser 1st incompleteness theorem, which says that any first order theory extending NN (which is PA without induction) that is complete is inconsistent.&quot;&quot;&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] depends: [ &quot;coq&quot; {&gt;= &quot;8.7&quot; &amp; &lt; &quot;8.14~&quot;} &quot;coq-pocklington&quot; {&gt;= &quot;8.12&quot; &amp; &lt; &quot;8.13~&quot;} ] tags: [ &quot;category:Mathematics/Logic/Foundations&quot; &quot;keyword:Goedel&quot; &quot;keyword:Rosser&quot; &quot;keyword:incompleteness&quot; &quot;keyword:logic&quot; &quot;keyword:Hilbert&quot; &quot;logpath:Goedel&quot; &quot;date:2021-01-01&quot; ] authors: [ &quot;Russell O&#39;Connor&quot; ] url { src: &quot;https://github.com/coq-community/goedel/archive/v8.12.0.tar.gz&quot; checksum: &quot;sha512=778b7eacbb13574428cd6f1349d724c27b2859159a32316b19f3460d5a5495216fd24fe1ce2b6159b2d6322396cae6c27d8f3447e43bde1877e4cd2e1f523282&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-goedel.8.12.0 coq.8.7.1+1</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-goedel.8.12.0 coq.8.7.1+1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>35 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-goedel.8.12.0 coq.8.7.1+1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 m 42 s</dd> </dl> <h2>Installation size</h2> <p>Total: 12 M</p> <ul> <li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubFormula.glob</code></li> <li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PRrepresentable.glob</code></li> <li>645 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/checkPrf.glob</code></li> <li>409 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subProp.glob</code></li> <li>373 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubFormula.vo</code></li> <li>363 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSysPrf.glob</code></li> <li>331 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PRrepresentable.vo</code></li> <li>258 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/checkPrf.vo</code></li> <li>238 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subProp.vo</code></li> <li>222 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosserPA.glob</code></li> <li>222 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subAll.glob</code></li> <li>201 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubFormula.v</code></li> <li>191 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/primRec.glob</code></li> <li>189 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProp.glob</code></li> <li>188 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PRrepresentable.v</code></li> <li>183 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wellFormed.glob</code></li> <li>164 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSysPrf.vo</code></li> <li>149 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/primRec.vo</code></li> <li>142 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/chRem.glob</code></li> <li>140 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeFreeVar.glob</code></li> <li>129 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codePA.glob</code></li> <li>126 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosserPA.vo</code></li> <li>118 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subAll.vo</code></li> <li>115 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/checkPrf.v</code></li> <li>112 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic3.glob</code></li> <li>108 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic3.vo</code></li> <li>107 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/cPair.glob</code></li> <li>107 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fol.glob</code></li> <li>106 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN2LNT.vo</code></li> <li>106 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProp.vo</code></li> <li>103 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosser.glob</code></li> <li>100 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/chRem.vo</code></li> <li>98 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fixPoint.glob</code></li> <li>96 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/model.vo</code></li> <li>96 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/model.glob</code></li> <li>94 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/code.vo</code></li> <li>92 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeList.glob</code></li> <li>92 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fol.vo</code></li> <li>89 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosser.vo</code></li> <li>88 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN2LNT.glob</code></li> <li>81 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAtheory.glob</code></li> <li>81 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codePA.vo</code></li> <li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wellFormed.vo</code></li> <li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subProp.v</code></li> <li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/cPair.vo</code></li> <li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubTerm.glob</code></li> <li>73 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PA.vo</code></li> <li>65 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fixPoint.vo</code></li> <li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSysPrf.v</code></li> <li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN.vo</code></li> <li>63 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNT.vo</code></li> <li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAtheory.vo</code></li> <li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic.glob</code></li> <li>60 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeFreeVar.vo</code></li> <li>56 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/code.glob</code></li> <li>54 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic.vo</code></li> <li>53 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel1.vo</code></li> <li>50 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel2.vo</code></li> <li>50 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeList.vo</code></li> <li>49 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/primRec.v</code></li> <li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN.glob</code></li> <li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosserPA.v</code></li> <li>46 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic2.glob</code></li> <li>46 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubTerm.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNT.glob</code></li> <li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/expressible.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/subAll.v</code></li> <li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Languages.vo</code></li> <li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProof.vo</code></li> <li>43 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic2.vo</code></li> <li>41 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Deduction.vo</code></li> <li>40 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folReplace.glob</code></li> <li>39 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NNtheory.vo</code></li> <li>38 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAconsistent.vo</code></li> <li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folReplace.vo</code></li> <li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PA.glob</code></li> <li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel1.glob</code></li> <li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN2PA.vo</code></li> <li>33 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wConsistent.vo</code></li> <li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeNatToTerm.vo</code></li> <li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wellFormed.v</code></li> <li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/prLogic.vo</code></li> <li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/chRem.v</code></li> <li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProp.v</code></li> <li>27 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/extEqualNat.vo</code></li> <li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codePA.v</code></li> <li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NNtheory.glob</code></li> <li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN.glob</code></li> <li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/expressible.glob</code></li> <li>24 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel2.glob</code></li> <li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/rosser.v</code></li> <li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeFreeVar.v</code></li> <li>22 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN2LNT.v</code></li> <li>22 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/cPair.v</code></li> <li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fol.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/fixPoint.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic3.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/model.v</code></li> <li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/ListExt.vo</code></li> <li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeList.v</code></li> <li>17 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Deduction.glob</code></li> <li>16 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Languages.glob</code></li> <li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAtheory.v</code></li> <li>15 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProof.glob</code></li> <li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic.v</code></li> <li>12 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeSubTerm.v</code></li> <li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNN.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/code.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/LNT.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PA.v</code></li> <li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAconsistent.glob</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN2PA.glob</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel1.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/ListExt.glob</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN.v</code></li> <li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/goedel2.v</code></li> <li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folLogic2.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/expressible.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wConsistent.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folReplace.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NNtheory.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeNatToTerm.glob</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Languages.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/Deduction.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/extEqualNat.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/misc.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/misc.vo</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/folProof.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/PAconsistent.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/NN2PA.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/prLogic.glob</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/ListExt.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/codeNatToTerm.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/extEqualNat.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/wConsistent.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/misc.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/Goedel/prLogic.v</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-goedel.8.12.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>
app/study_notes/study_notes.html
rachelee/GroupToGoal-Client
<div ng-controller="StudyNotesCtrl" class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main"> <section> <ul class="nav nav-tabs"> <li role="presentation" ng-class="{active:tab===1}"><a href ng-click="getPosts(localUsername)">My Notes</a></li> <li role="presentation" class="dropdown" ng-class="{active:tab===2}"> <a class="dropdown-toggle" data-toggle="dropdown" href role="button" aria-haspopup="true" aria-expanded="false"> Others <span class="caret"></span> </a> <ul class="dropdown-menu"> <li ng-repeat="user in groupMembers" ng-click="getPosts(user)"><a href>{{user}}</a></li> </ul> </li> <li role="presentation" ng-class="{active:tab===3}" style=""><a href ng-click="searchTab()">Search</a></li> </ul> </section> <div id="results"> <div> <form ng-show="visible&&tab===1" class="form-group field" > <input required class="editable title form-control form-control-no-border" ng-model = "newPost.title" placeholder="Title"> <textarea required ng-model="newPost.content" ui-tinymce="tinymceOptions" class="editable form-control form-control-no-border" rows="20" placeholder="Write down your note..."> </textarea> <p ng-bind="error"></p> </form> <button id="publish_button" ng-show="tab===1&&setId===false" class="btn myButton" ng-click="publish()">Publish</button> <div class="input-group" ng-show="tab===3" id="search_bar"> <input type="text" ng-model="search_result.keyword" class="form-control" placeholder="Enter Keyword Here..."> <span class="input-group-btn"> <button ng-click="search()" class="btn btn-secondary" type="button">Go!</button> </span> </div> </div> <div id="set_up_id" class="well" ng-show="setId===true&&tab===1"> <p>Your study note has not been setup yet. Please set up!</p> <div class="input-group"> <input type="text" ng-model="blog.url" class="form-control" placeholder="Enter Url Here..."> <span class="input-group-btn"> <button ng-click="save_id()" class="btn btn-secondary" type="button">Set!</button> </span> </div> <p class="error">{{set_id_error}}</p> </div> <div ng-repeat="post in blog.posts"> <h3 ng-bind-html="post.title"></h3> <span ng-bind-html="post.author.displayname"></span> <span >{{post.published|date:'MM/dd/yyyy @ h:mma'}}</span> <p ng-bind-html="post.content"></p> <hr> </div> <p class="error">{{post_error}}</p> </div> </div>
src/materials/components/header/00-usage.html
uniplaces/uniplaces-uniq-wiki
--- notes: | ```css .header { @include header(); } ``` ---
docsets/ATG 2007.1.docset/Contents/Resources/Documents/atg/repository/search/indexing/filter/package-summary.html
Smolations/more-dash-docsets
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_05) on Fri Dec 23 12:53:05 EST 2005 --> <TITLE> atg.repository.search.indexing.filter (ATG Java API) </TITLE> <META NAME="keywords" CONTENT="atg.repository.search.indexing.filter package"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="atg.repository.search.indexing.filter (ATG Java API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../atg/repository/search/indexing/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../atg/repository/search/indexing/formatter/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package atg.repository.search.indexing.filter </H2> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Class Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../atg/repository/search/indexing/filter/ConcatFilter.html" title="class in atg.repository.search.indexing.filter">ConcatFilter</A></B></TD> <TD>Implement a filter that concatonates the values into a single value.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../../../atg/repository/search/indexing/filter/UniqueFilter.html" title="class in atg.repository.search.indexing.filter">UniqueFilter</A></B></TD> <TD>Implement a filter that removes any duplicate values.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../atg/repository/search/indexing/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../../../atg/repository/search/indexing/formatter/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
templates/index.html
mrBremba/my_mega_project
<!DOCTYPE html> <html lang="en"> <head> <style> body { background: url("/static/background.jpg") no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } </style> <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 }}</title> <!-- Bootstrap --> <link href="/static/css/bootstrap.min.css" rel="stylesheet"> <link href="/static/css/main1.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> {% include "navigation.html" %} <div class="container"> <div class="page-header"> <h1>{{ title }} </h1> </div> {% include "blocks.html" ignore missing %} </div> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="/static/js/bootstrap.min.js"></script> </body> </html>
keymaster/previous-versions/knightOfStaffsOriginal.html
tinacg/tinacg.github.io
<!DOCTYPE html> <html ng-app="pianoKeys"> <head> <style> canvas { border: 2px solid #CCCCCC; margin: 10px; } div.staff { overflow-x: scroll; white-space: nowrap; } </style> <script src="../js/angular-1.3.2.min.js"></script> <script src="pianoKnight.js"></script> <script src="staff.js"></script> <script src="keyKnightApp.js"></script> </head> <body ng-controller="songController"> <!-- RESTORE LATER --> <div id="controls" style="position: fixed; background: #99AAFF; padding: 10px;"> Transpose: <input type="button" ng-click="transpose(-1)" value="<"> <input type="button" ng-click="transpose(1)" value=">"> </div> {{chords}} <div class="staff"> <!-- style="position: fixed;"> --> Selected chord: <input type="text" ng-model="selectedChord"> {{chords[selectedChord]}} <br><br> <canvas staff width="700" height="210" selected-chord="selectedChord" chords="chords" control="focusInControl"></canvas> <br> <input type="button" ng-click="focusInControl.extendCanvas(30);" value="extend canvas"> </div> <br> <div ng-repeat="chord in chords"> <input type="button" ng-click="selectChord($index)" value="Select this chord"> <canvas piano width="815" height="145" notes="chord.notes"></canvas> <br> <input type="text" ng-model="chord.notes" value="chord.notes"> <input type="button" ng-click="chord.notes='';" value="clear"> <input type="text" ng-model="chord.id"> <input type="button" ng-click="addChord($index)" value="add chord below"> </div> </body> </html>
blog/c1-chefs-kitchen.html
mliew21396/mliew21396.github.io
<!DOCTYPE html> <head> <title>Mat's Cultural Blog</title> <meta charset="UTF-8"> <link type="text/css" rel="stylesheet" href="../css/default.css"> <link type="text/css" rel="stylesheet" href="../css/blog_post.css"> <script type="text/javascript" src="../js/default.js"></script> </head> <body> <nav class="clearfix debug"> <a href="../index.html"><img class="fl-l logo navHeader" src="../img/logo.png" alt="Logo"></a> <button onclick="menuButton()" class="menu-icon">&#9776</button> <ul class="fl-r clearfix menu"> <li class="fl-l"><a href="../index.html#about_me">Link to About Me</a></li> <li class="fl-l"><a href="https://github.com/mliew21396/">Link to Portfolio</a></li> <li class="fl-l"><a href="index.html">Link to Blog</a></li> <li class="fl-l"><a href="../QA Resume '15.pdf">Resume</a></li> </ul> </nav> <main> <h1>Mat's Cultural Blog</h1> <h2>Unit 1 Week 1</h2> <h4>June 10, 2015</h4> <section> <p> Though it has only been a few days, I'm enjoying the DBC experience. Before starting Phase 0, everything was a little clouded in what is exactly being done. But after reading through this phase and actually seeing the work involved, I'm happy with how I'm learning. </p> <p> The video introduced worries I had with DBC. Shereef mentioned two camps of people, those who feel everyone else is ahead of them and they will never catchup and the group who are ahead and are not sure if they'll learn enough. I fall in the camp between these two. I have done my own independent study but am nervous with when will I be good enough? I was glad to hear that everyone moves together as a team and the experience is what you make of it. Hearing my worries outloud was reassuring and made me feel better about the program. </p> </section> </main> <footer class="debug"> <a href="https://www.facebook.com/mliew"><img src="../img/fb.png" alt="Facebook"></a> <a href="https://twitter.com/mliew21396"><img src="../img/twitter.png" alt="Twitter"></a> <a href="https://github.com/mliew21396"><img src="../img/github.png" alt="GitHub"></a> <a href="https://www.linkedin.com/pub/mathew-liew/16/758/34"><img src="../img/linkedin.png" alt="LinkedIn"></a> </footer> </body>
_layouts/default.html
yurihenrique/yurihenrique.github.io
<!DOCTYPE html> <html> <head> <title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }} – {{ site.description }}</title> {% include meta.html %} <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/style.css" /> <link rel="alternate" type="application/rss+xml" title="{{ site.name }} - {{ site.description }}" href="{{ site.baseurl }}/feed.xml" /> <!-- Created with Jekyll Now - http://github.com/barryclark/jekyll-now --> </head> <body> <div class="wrapper-masthead"> <div class="container"> <header class="masthead clearfix"> <a href="{{ site.baseurl }}/" class="site-avatar"><img src="{{ site.avatar }}" /></a> <div class="site-info"> <h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1> <p class="site-description">{{ site.description }}</p> </div> <nav> <a href="{{ site.baseurl }}/">Blog</a> <a href="{{ site.baseurl }}/sobre">Sobre</a> </nav> </header> </div> </div> <div id="main" role="main" class="container"> {{ content }} </div> <div class="wrapper-footer"> <div class="container"> <footer class="footer"> {% include svg-icons.html %} </footer> </div> </div> {% include analytics.html %} </body> </html>
spec/html-proofer/fixtures/images/relative_with_base.html
gjtorikian/html-proofer
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <base href="/assets/"> </head> <body> <img alt="relative to base" src="gpl.png"/> <img alt="subdirectory relative to base" src="folder/assets/barrel.png"/> <img alt="back relative to base" src="../gpl.png"/> </body> </html>
api_docs/graph_class.html
arithmophile/number-functions-api
<!DOCTYPE html><html xmlns:date="http://exslt.org/dates-and-times" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>phpDocumentor</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="css/template.css" rel="stylesheet" media="all"> <script src="js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="js/bootstrap.js" type="text/javascript"></script><script src="js/template.js" type="text/javascript"></script><script src="js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="img/favicon.ico"> <link rel="apple-touch-icon" href="img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="index.html">phpDocumentor</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"></ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">0</span></a></li> <li><a href="markers.html"><i class="icon-map-marker"></i> Markers  <ul></ul></a></li> <li><a href="deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">0</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"><div class="span12"><div class="well wrapper"><div id="viewer" class="viewer"></div></div></div></div> <script src="js/jquery.iviewer.min.js" type="text/javascript"></script><script type="text/javascript"> $(window).resize(function(){ $("#viewer").height($(window).height() - 260); }); $(document).ready(function() { $("#viewer").iviewer({src: "classes.svg", zoom_animation: false}); $('#viewer img').bind('dragstart', function(event){ event.preventDefault(); }); }); </script><div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a6</a> and<br> generated on 2012-06-26T17:40:34-04:00.<br></footer></div> </div> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/abb99cb9d54f622026e042180f75aa6275c3da5a99ca98b03e8ea83e6073f4c7.html
simonmysun/praxis
<!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="./e2fc2799ecf8f3028bc41e8e38dba329c98b86605a09e2bd4e69b671b60cdd16.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>
categories/drive.html
masachi/masachi.github.io
--- title: drive layout: category section-type: category --- ## Category
app/views/lis/1/you/benefits/benefit-group2.html
nhsbsa/nhslis
{% extends 'templates/nhs_transaction_layout.html' %} {% import 'includes/form_macros.html' as form_macros %} {% block afterHeader %} {% include "includes/service-headers/low-income.html" %} {% endblock %} {% block content %} <main id="content" role="main"> <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-large"> Do you receive any of the following? </h1> <p>Tick all that apply</p> <form action="" method="get" class="form"> <div class="form-item-wrapper"> <div class="form-group"> <input type="checkbox" id="af" name="bgroup2"> <label class="form-control-checkbox" for="af"> Armed forces independence payment </label> </div> <div class="form-group"> <input type="checkbox" id="dla" name="bgroup2"> <label class="form-control-checkbox" for="dla"> Disability living allowance </label> </div> <div class="form-group"> <input type="checkbox" id="ib" name="bgroup2"> <label class="form-control-checkbox" for="ib"> Incapacity benefit </label> </div> <div class="form-group"> <input type="checkbox" id="iid" name="bgroup2"> <label class="form-control-checkbox" for="iid"> Industrial injuries disablement benefit </label> </div> <div class="form-group"> <input type="checkbox" id="pip" name="bgroup2"> <label class="form-control-checkbox" for="pip"> Personal independence payment </label> </div> <div class="form-group"> <input type="checkbox" id="sda" name="bgroup2"> <label class="form-control-checkbox" for="sda"> Severe disablement allowance </label> </div> <div class="form-group"> <input type="checkbox" id="ssp" name="bgroup2"> <label class="form-control-checkbox" for="ssp"> Statutory sick pay </label> </div> <p class="form-block">or</p> <div class="form-group"> <input type="checkbox" id="none" name="bgroup2"> <label class="form-control-checkbox" for="none"> I don't receive any of these </label> </div> {{ form_macros.button({ href: 'benefit-group3', label: 'Next' }) }} <!--<p class="navigation"><a class="cancel" href="../lis-home"> Cancel - back to my low income scheme home</a> </p> Cancel - back to my low income scheme home</a></p> --> </form> </div> </div> </main> {% endblock %}