path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
css/toggle.css
vivekmumbles/slates
.tgl { display: none; } .tgl, .tgl:after, .tgl:before, .tgl *, .tgl *:after, .tgl *:before, .tgl + .tgl-btn { box-sizing: border-box; } .tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection, .tgl *::-moz-selection, .tgl *:after::-moz-selection, .tgl *:before::-moz-selection, .tgl + .tgl-btn::-moz-selection { background: none; } .tgl::selection, .tgl:after::selection, .tgl:before::selection, .tgl *::selection, .tgl *:after::selection, .tgl *:before::selection, .tgl + .tgl-btn::selection { background: none; } .tgl + .tgl-btn { outline: 0; display: block; /*width: 4em;*/ width: 100%; /*height: 2em;*/ height: 100%; position: relative; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .tgl + .tgl-btn:after, .tgl + .tgl-btn:before { position: relative; display: block; content: ""; width: 50%; height: 100%; } .tgl + .tgl-btn:after { left: 0; } .tgl + .tgl-btn:before { display: none; } .tgl:checked + .tgl-btn:after { left: 50%; } .tgl-ios + .tgl-btn { background: #fbfbfb; border-radius: 2em; padding: 2px; -webkit-transition: all .4s ease; transition: all .4s ease; border: 1px solid #e8eae9; } .tgl-ios + .tgl-btn:after { border-radius: 2em; background: #fbfbfb; -webkit-transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease; transition: left 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.3s ease, margin 0.3s ease; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 4px 0 rgba(0, 0, 0, 0.08); } .tgl-ios + .tgl-btn:active { box-shadow: inset 0 0 0 2em #e8eae9; } .tgl-ios + .tgl-btn:active:after { padding-right: .8em; } .tgl-ios:checked + .tgl-btn { background: dodgerblue; } .tgl-ios:checked + .tgl-btn:active { box-shadow: none; } .tgl-ios:checked + .tgl-btn:active:after { margin-left: -.8em; }
2/index.html
wuct/garage-class
<html> <head> <title>Hello World</title> <link rel="stylesheet" type="text/css" href="./bootstrap.css"> </head> <body ng-app="myApp"> <div class="container" ng-controller="myCtrl"> <h1>Hello World!</h1> <p>Angular is awesome.</p> <hr> <div class="col-sm-4"> <h2>最新共乘</h2> {{ ride }} </div><!-- /.col-lg-6 --> </div> </body> <script type="text/javascript" src="./angular.min.js"></script> <script type="text/javascript" src="./angular-resource.js"></script> <script type="text/javascript"> angular.module('myApp', ['ngResource']) .controller('myCtrl', ['$scope', '$resource', function ($scope, $resource) { var Ride = $resource('/api/ride/latestPostedRides',{}, {}) $scope.ride = Ride.query(); }]) </script> </html>
clean/Linux-x86_64-4.05.0-2.0.6/released/8.11.0/ceramist/1.0.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>ceramist: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.11.0 / ceramist - 1.0.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> ceramist <small> 1.0.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-09-17 07:05:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-09-17 07:05: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 conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.11.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; synopsis: &quot;Coq library for reasoning about probabilistic algorithms&quot; description: &quot;&quot;&quot; Ceramist extends coq-infotheo to support reasoning about probabilistic algorithms, and includes a collection of lemmas on random oracle based hash functions. Provides an example implementation of a bloom filter and uses the library to prove the probability of a false positive. &quot;&quot;&quot; homepage: &quot;https://github.com/certichain/ceramist&quot; dev-repo: &quot;git+https://github.com/certichain/ceramist.git&quot; bug-reports: &quot;https://github.com/certichain/ceramist/issues&quot; maintainer: &quot;kirang@comp.nus.edu.sg&quot; authors: [ &quot;Kiran Gopinathan&quot; &quot;Ilya Sergey&quot; ] license: &quot;GPL-3.0-or-later&quot; depends: [ &quot;coq&quot; {&gt;= &quot;8.10.2&quot; &amp; &lt; &quot;8.11~&quot;} &quot;coq-mathcomp-ssreflect&quot; {&gt;= &quot;1.10&quot; &amp; &lt; &quot;1.11~&quot;} &quot;coq-mathcomp-analysis&quot; { &gt;= &quot;0.2.0&quot; &amp; &lt; &quot;0.3~&quot; } &quot;coq-infotheo&quot; { &gt;= &quot;0.0.6&quot; &amp; &lt; &quot;0.0.7~&quot; } ] build: [ [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] tags: [ &quot;category:Computer Science/Data Types and Data Structures&quot; &quot;keyword: bloomfilter&quot; &quot;keyword: probability&quot; &quot;date:2020-01-25&quot; ] url { src: &quot;https://github.com/certichain/ceramist/archive/1.0.0.tar.gz&quot; checksum: &quot;sha512=1d75e229cf3deaa654177464fee009807acb22f8f72cfb54bcf9d5ee16cc318f3ed089a1f4c94c520637b1845ba0e5fccac951cacbe6ca7e62cb9a2047b01c72&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-ceramist.1.0.0 coq.8.11.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.11.0). The following dependencies couldn&#39;t be met: - coq-ceramist -&gt; coq &lt; 8.11~ -&gt; ocaml &lt; 4.03.0 base of this switch (use `--unlock-base&#39; to force) Your request can&#39;t be satisfied: - No available version of coq satisfies the constraints No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-ceramist.1.0.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
clean/Linux-x86_64-4.05.0-2.0.1/released/8.9.1/metacoq-template/1.0~alpha1+8.9.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>metacoq-template: 2 m 13 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.9.1 / metacoq-template - 1.0~alpha1+8.9</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> metacoq-template <small> 1.0~alpha1+8.9 <span class="label label-success">2 m 13 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-30 00:15:10 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-30 00:15:10 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 1 Virtual package relying on perl coq 8.9.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.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;matthieu.sozeau@inria.fr&quot; homepage: &quot;https://metacoq.github.io/metacoq&quot; dev-repo: &quot;git+https://github.com/MetaCoq/metacoq.git#coq-8.8&quot; bug-reports: &quot;https://github.com/MetaCoq/metacoq/issues&quot; authors: [&quot;Abhishek Anand &lt;aa755@cs.cornell.edu&gt;&quot; &quot;Simon Boulier &lt;simon.boulier@inria.fr&gt;&quot; &quot;Cyril Cohen &lt;cyril.cohen@inria.fr&gt;&quot; &quot;Yannick Forster &lt;forster@ps.uni-saarland.de&gt;&quot; &quot;Fabian Kunze &lt;fkunze@fakusb.de&gt;&quot; &quot;Gregory Malecha &lt;gmalecha@gmail.com&gt;&quot; &quot;Matthieu Sozeau &lt;matthieu.sozeau@inria.fr&gt;&quot; &quot;Nicolas Tabareau &lt;nicolas.tabareau@inria.fr&gt;&quot; &quot;Théo Winterhalter &lt;theo.winterhalter@inria.fr&gt;&quot; ] license: &quot;MIT&quot; build: [ [&quot;sh&quot; &quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot; &quot;template-coq&quot;] ] install: [ [make &quot;-C&quot; &quot;template-coq&quot; &quot;install&quot;] ] depends: [ &quot;ocaml&quot; {&gt; &quot;4.02.3&quot;} &quot;coq&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} ] synopsis: &quot;A quoting and unquoting library for Coq in Coq&quot; description: &quot;&quot;&quot; MetaCoq is a meta-programming framework for Coq. Template Coq is a quoting library for Coq. It takes Coq terms and constructs a representation of their syntax tree as a Coq inductive data type. The representation is based on the kernel&#39;s term representation. In addition to a complete reification and denotation of CIC terms, Template Coq includes: - Reification of the environment structures, for constant and inductive declarations. - Denotation of terms and global declarations - A monad for manipulating global declarations, calling the type checker, and inserting them in the global environment, in the style of MetaCoq/MTac. &quot;&quot;&quot; url { src: &quot;https://github.com/MetaCoq/metacoq/archive/1.0-alpha+8.9.tar.gz&quot; checksum: &quot;sha256=899ef4ee73b1684a0f1d2e37ab9ab0f9b24424f6d8a10a10efd474c0ed93488e&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-metacoq-template.1.0~alpha1+8.9 coq.8.9.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-metacoq-template.1.0~alpha1+8.9 coq.8.9.1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>12 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-metacoq-template.1.0~alpha1+8.9 coq.8.9.1</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 m 13 s</dd> </dl> <h2>Installation size</h2> <p>Total: 6 M</p> <ul> <li>2 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/metacoq_template_plugin.cmxs</code></li> <li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/utils.vo</code></li> <li>569 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/template_coq.cmxs</code></li> <li>427 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/LiftSubst.vo</code></li> <li>337 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/utils.glob</code></li> <li>331 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/metacoq_template_plugin.cmi</code></li> <li>262 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Universes.vo</code></li> <li>206 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/AstUtils.vo</code></li> <li>169 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/LiftSubst.glob</code></li> <li>152 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/metacoq_template_plugin.cmx</code></li> <li>126 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/AstUtils.glob</code></li> <li>111 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/UnivSubst.vo</code></li> <li>102 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/template_coq.cmi</code></li> <li>85 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Induction.vo</code></li> <li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/utils.v</code></li> <li>79 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Pretty.vo</code></li> <li>74 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Ast.vo</code></li> <li>64 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Universes.glob</code></li> <li>58 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/UnivSubst.glob</code></li> <li>51 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/template_coq.cmx</code></li> <li>49 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Core.vo</code></li> <li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Extractable.vo</code></li> <li>42 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Common.vo</code></li> <li>37 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Extraction.vo</code></li> <li>36 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Pretty.glob</code></li> <li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/All.vo</code></li> <li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Loader.vo</code></li> <li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Monad.vo</code></li> <li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad.vo</code></li> <li>34 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/ExtractableLoader.vo</code></li> <li>32 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/BasicAst.vo</code></li> <li>26 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/AstUtils.v</code></li> <li>25 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Induction.glob</code></li> <li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/monad_utils.vo</code></li> <li>21 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/LiftSubst.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Universes.v</code></li> <li>19 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Ast.glob</code></li> <li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Core.glob</code></li> <li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Extractable.glob</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/UnivSubst.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/monad_utils.glob</code></li> <li>9 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Pretty.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/metacoq_template_plugin.cmxa</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/template_coq.cmxa</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Ast.v</code></li> <li>7 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/denoter.cmi</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Induction.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Common.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Core.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/common0.cmi</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/config.vo</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Extractable.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/BasicAst.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/common0.cmx</code></li> <li>3 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/monad_utils.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/denoter.cmx</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Common.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/BasicAst.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Extraction.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/config.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/config.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Extraction.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/All.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Monad.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/All.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Loader.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/Loader.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/ExtractableLoader.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad/Monad.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/ExtractableLoader.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/MetaCoq/Template/TemplateMonad.v</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-metacoq-template.1.0~alpha1+8.9</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.04.2-2.0.5/released/8.5.0~camlp4/metacoq-translations/1.0~alpha2+8.11.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>metacoq-translations: 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.5.0~camlp4 / metacoq-translations - 1.0~alpha2+8.11</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> metacoq-translations <small> 1.0~alpha2+8.11 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-01 18:21:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-01 18:21:42 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 camlp4 4.04+1 Camlp4 is a system for writing extensible parsers for programming languages conf-findutils 1 Virtual package relying on findutils coq 8.5.0~camlp4 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.04.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.04.2 Official 4.04.2 release ocaml-config 1 OCaml Switch Configuration ocamlbuild 0.14.0 OCamlbuild is a build system with builtin rules to easily build most OCaml projects. # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;matthieu.sozeau@inria.fr&quot; homepage: &quot;https://metacoq.github.io/metacoq&quot; dev-repo: &quot;git+https://github.com/MetaCoq/metacoq.git#coq-8.11&quot; bug-reports: &quot;https://github.com/MetaCoq/metacoq/issues&quot; authors: [&quot;Simon Boulier &lt;simon.boulier@inria.fr&gt;&quot; &quot;Cyril Cohen &lt;cyril.cohen@inria.fr&gt;&quot; &quot;Matthieu Sozeau &lt;matthieu.sozeau@inria.fr&gt;&quot; &quot;Nicolas Tabareau &lt;nicolas.tabareau@inria.fr&gt;&quot; &quot;Théo Winterhalter &lt;theo.winterhalter@inria.fr&gt;&quot; ] license: &quot;MIT&quot; build: [ [&quot;sh&quot; &quot;./configure.sh&quot;] [make &quot;-j%{jobs}%&quot; &quot;-C&quot; &quot;translations&quot;] ] install: [ [make &quot;-C&quot; &quot;translations&quot; &quot;install&quot;] ] depends: [ &quot;ocaml&quot; {&gt;= &quot;4.07.1&quot;} &quot;coq&quot; {&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.12~&quot;} &quot;coq-metacoq-template&quot; {= version} &quot;coq-metacoq-checker&quot; {= version} ] synopsis: &quot;Translations built on top of MetaCoq&quot; description: &quot;&quot;&quot; MetaCoq is a meta-programming framework for Coq. The Translations modules provides implementation of standard translations from type theory to type theory, e.g. parametricity and the `cross-bool` translation that invalidates functional extensionality. &quot;&quot;&quot; url { src: &quot;https://github.com/MetaCoq/metacoq/archive/v1.0-alpha2-8.11.tar.gz&quot; checksum: &quot;sha256=8f1d2b42ad97d7c8660a57aabe53ddcc7b1645ced43386a1d2bef428b20d6b42&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-metacoq-translations.1.0~alpha2+8.11 coq.8.5.0~camlp4</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.5.0~camlp4). The following dependencies couldn&#39;t be met: - coq-metacoq-translations -&gt; ocaml &gt;= 4.07.1 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-metacoq-translations.1.0~alpha2+8.11</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>
archives/2019/page/3/index.html
mengfeimu/mengfeimu.github.io
<!DOCTYPE html> <html class="has-navbar-fixed-top"> <head> <meta charset="utf-8"> <title>归档: 2019 - Mengfei</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/outdated-browser/1.1.5/outdatedbrowser.min.css"> <link rel="icon" href="/favicon.png"> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Ovo|Source+Code+Pro"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/lightgallery/1.6.8/css/lightgallery.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/justifiedGallery/3.6.5/css/justifiedGallery.min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-light.min.css"> <link rel="stylesheet" href="/css/style.css"> <script defer src="//use.fontawesome.com/releases/v5.0.8/js/all.js"></script> <script async src="https://www.googletagmanager.com/gtag/js?id=A-102161534-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'A-102161534-1'); </script> </head> <body> <nav class="navbar is-transparent is-fixed-top navbar-main" role="navigation" aria-label="main navigation"> <div class="container"> <div class="navbar-brand"> <a class="navbar-item navbar-logo" href="/"> 首页 </a> <div class="navbar-burger"> <span></span> <span></span> <span></span> </div> </div> <div class="navbar-menu navbar-start"> <a class="navbar-item " href="/archives">归档</a> <a class="navbar-item " href="/tags">标签</a> <a class="navbar-item " href="/categories">分类</a> <a class="navbar-item " href="https://mengfeimu.github.io/cv-zh/">关于</a> </div> <div class="navbar-menu navbar-end"> <a class="navbar-item search" title="搜索" href="javascript:;"> <i class="fas fa-search"></i> </a> <a class="navbar-item" title="GitHub" href="https://github.com/mengfeimu"> <i class="fab fa-github"></i> </a> </div> </div> </nav> <section class="section"> <div class="container"> <div class="archive content"> <h4 class="title is-4" id="2019">2019</h4> <div class="articles"> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:46.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/tool/2018-03-01-latex/">LaTeX 相关</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:46.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/tool/2018-03-20-shellscript/">Shell编程相关</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:46.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/tool/2018-07-28-移动硬盘加载/">macOS下无法加载移动硬盘</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:46.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/tool/2018-07-27-sublime/">Sublime Text 3</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:45.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/other/2018-05-29-四万亿的选择/">为何经济到了关键当口,总是做出较差的选择?</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:45.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/music/2018-04-01-周杰伦/">周杰伦</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:45.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/other/2018-05-19-畸形房地产楼市/">畸形房地产与楼市</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:54:45.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/music/2018-05-19-TheBeatles/">The Beatles 披头士</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:44:23.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/2017-06-20-movie/">那些年看过的电影</a></h6> </div> <div class="article content>"> <time class="is-text-small" datetime="2019-06-06T09:44:23.000Z" itemprop="datePublished"> 6月 6</time> <h6 class="title is-6"><a href="/2019/06/06/2017-12-31-markdown/">Markdown</a></h6> </div> </div> </div> <nav class="pagination is-centered is-rounded" role="navigation" aria-label="pagination"> <div class="pagination-previous"> <a href="/archives/2019/page/2/">上一页</a> </div> <div class="pagination-next"> <a href="/archives/2019/page/4/">下一页</a> </div> <ul class="pagination-list is-hidden-mobile"> <li><a class="pagination-link" href="/archives/2019/">1</a></li> <li><a class="pagination-link" href="/archives/2019/page/2/">2</a></li> <li><a class="pagination-link is-current" href="/archives/2019/page/3/">3</a></li> <li><a class="pagination-link" href="/archives/2019/page/4/">4</a></li> <li><span class="pagination-ellipsis">&hellip;</span></li> <li><a class="pagination-link" href="/archives/2019/page/7/">7</a></li> </ul> </nav> </div> </section> <footer class="footer"> <div class="container"> <div class="columns content"> <div class="column is-narrow has-text-centered"> &copy; 2019 Mengfei&nbsp; Powered by <a href="http://hexo.io/" target="_blank">Hexo</a> & <a href="http://github.com/ppoffice/hexo-theme-minos">Minos</a> </div> <div class="column is-hidden-mobile"></div> <div class="column is-narrow has-text-centered"> <div class="dropdown is-up is-right is-hoverable" style="margin-top: -0.2em;"> <div class="dropdown-trigger"> <button class="button is-small" aria-haspopup="true" aria-controls="dropdown-menu7"> <span class="icon"> <i class="fas fa-globe"></i> </span> <span>简体中文</span> <span class="icon is-small"> <i class="fas fa-angle-down" aria-hidden="true"></i> </span> </button> </div> <div class="dropdown-menu has-text-left" role="menu"> <div class="dropdown-content"> <a href="/archives/2019/page/3/index.html" class="dropdown-item"> 简体中文 </a> <a href="/en/archives/2019/page/3/index.html" class="dropdown-item"> English </a> </div> </div> </div> </div> </div> </div> </footer> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment-with-locales.min.js"></script> <!-- test if the browser is outdated --> <div id="outdated"> <h6>Your browser is out-of-date!</h6> <p>Update your browser to view this website correctly. <a id="btnUpdateBrowser" href="http://outdatedbrowser.com/">Update my browser now </a></p> <p class="last"><a href="#" id="btnCloseUpdateBrowser" title="Close">&times;</a></p> </div> <script src="//cdnjs.cloudflare.com/ajax/libs/outdated-browser/1.1.5/outdatedbrowser.min.js"></script> <script> $(document).ready(function () { // plugin function, place inside DOM ready function outdatedBrowser({ bgColor: '#f25648', color: '#ffffff', lowerThan: 'flex' }) }); </script> <script> window.FontAwesomeConfig = { searchPseudoElements: true } moment.locale("zh-CN"); </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-MML-AM_CHTML"></script> <script> MathJax.Hub.Config({ "HTML-CSS": {matchFontHeight: false}, SVG: {matchFontHeight: false}, CommonHTML: {matchFontHeight: false} }); </script> <script src="//cdnjs.cloudflare.com/ajax/libs/lightgallery/1.6.8/js/lightgallery-all.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/justifiedGallery/3.6.5/js/jquery.justifiedGallery.min.js"></script> <script> (function ($) { $(document).ready(function () { if (typeof($.fn.lightGallery) === 'function') { $('.article.gallery').lightGallery({ selector: '.gallery-item' }); } if (typeof($.fn.justifiedGallery) === 'function') { $('.justified-gallery').justifiedGallery(); } }); })(jQuery); </script> <script src="/js/script.js"></script> <div class="searchbox ins-search"> <div class="searchbox-mask"></div> <div class="searchbox-container ins-search-container"> <div class="searchbox-input-wrapper"> <input type="text" class="searchbox-input ins-search-input" placeholder="站内搜索" /> <span class="searchbox-close ins-close ins-selectable"><i class="fa fa-times-circle"></i></span> </div> <div class="searchbox-result-wrapper ins-section-wrapper"> <div class="ins-section-container"></div> </div> </div> </div> <script> (function (window) { var INSIGHT_CONFIG = { TRANSLATION: { POSTS: '文章', PAGES: '页面', CATEGORIES: '分类', TAGS: '标签', UNTITLED: '(无标题)', }, CONTENT_URL: '/content.json', }; window.INSIGHT_CONFIG = INSIGHT_CONFIG; })(window); </script> <script src="/js/insight.js"></script> </body> </html>
wasabi/libs/kryo-2.22/javadoc/com/esotericsoftware/kryo/util/class-use/ObjectMap.html
mbforbes/wasabi
<!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_02) on Mon Sep 30 01:13:36 CEST 2013 --> <title>Uses of Class com.esotericsoftware.kryo.util.ObjectMap</title> <meta name="date" content="2013-09-30"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.esotericsoftware.kryo.util.ObjectMap"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/esotericsoftware/kryo/util/\class-useObjectMap.html" target="_top">Frames</a></li> <li><a href="ObjectMap.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.esotericsoftware.kryo.util.ObjectMap" class="title">Uses of Class<br>com.esotericsoftware.kryo.util.ObjectMap</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.esotericsoftware.kryo">com.esotericsoftware.kryo</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#com.esotericsoftware.kryo.util">com.esotericsoftware.kryo.util</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.esotericsoftware.kryo"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a> in <a href="../../../../../com/esotericsoftware/kryo/package-summary.html">com.esotericsoftware.kryo</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/esotericsoftware/kryo/package-summary.html">com.esotericsoftware.kryo</a> that return <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></code></td> <td class="colLast"><span class="strong">Kryo.</span><code><strong><a href="../../../../../com/esotericsoftware/kryo/Kryo.html#getContext()">getContext</a></strong>()</code> <div class="block">Name/value pairs that are available to all serializers.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></code></td> <td class="colLast"><span class="strong">Kryo.</span><code><strong><a href="../../../../../com/esotericsoftware/kryo/Kryo.html#getGraphContext()">getGraphContext</a></strong>()</code> <div class="block">Name/value pairs that are available to all serializers and are cleared after each object graph is serialized or deserialized.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="com.esotericsoftware.kryo.util"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a> in <a href="../../../../../com/esotericsoftware/kryo/util/package-summary.html">com.esotericsoftware.kryo.util</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/esotericsoftware/kryo/util/package-summary.html">com.esotericsoftware.kryo.util</a> with parameters of type <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">ObjectMap.</span><code><strong><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html#putAll(com.esotericsoftware.kryo.util.ObjectMap)">putAll</a></strong>(<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a>&lt;<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="type parameter in ObjectMap">K</a>,<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="type parameter in ObjectMap">V</a>&gt;&nbsp;map)</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../com/esotericsoftware/kryo/util/package-summary.html">com.esotericsoftware.kryo.util</a> with parameters of type <a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Entries.html#ObjectMap.Entries(com.esotericsoftware.kryo.util.ObjectMap)">ObjectMap.Entries</a></strong>(<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a>&lt;<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Entries.html" title="type parameter in ObjectMap.Entries">K</a>,<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Entries.html" title="type parameter in ObjectMap.Entries">V</a>&gt;&nbsp;map)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colLast"><code><strong><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Keys.html#ObjectMap.Keys(com.esotericsoftware.kryo.util.ObjectMap)">ObjectMap.Keys</a></strong>(<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a>&lt;<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Keys.html" title="type parameter in ObjectMap.Keys">K</a>,?&gt;&nbsp;map)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Values.html#ObjectMap.Values(com.esotericsoftware.kryo.util.ObjectMap)">ObjectMap.Values</a></strong>(<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">ObjectMap</a>&lt;?,<a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.Values.html" title="type parameter in ObjectMap.Values">V</a>&gt;&nbsp;map)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/esotericsoftware/kryo/util/ObjectMap.html" title="class in com.esotericsoftware.kryo.util">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/esotericsoftware/kryo/util/\class-useObjectMap.html" target="_top">Frames</a></li> <li><a href="ObjectMap.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
doc/pages/cl-sphinx-search__variable__+sph-match-any+.html
thijs/cl-sphinx-search
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Variable +sph-match-any+</title><link rel="stylesheet" type="text/css" href="../index.css"><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head><body><div id="header"><table cellspacing="0" cellpadding="0" width="100%"><tr><td valign="center">    <b> Common Lisp Sphinx Search API</b></td><td valign="center" align="right"><b>API documentation</b></td></tr></table></div><div class="main"><div class="padded"><p class="noindent"> Package: <a href="cl-sphinx-search.html">cl-sphinx-search</a></p><h2 class="page-title"> Variable +sph-match-any+</h2><p style="color: red; font-weight: bold"> No documentation string. Possibly unimplemented or incomplete. </p></div></div></body></html>
index.html
eduardobona/sass-estudodecaso
<!DOCTYPE HTML> <html> <head> <title>Sass - Estudo de Caso - Brasil</title> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="css_antigo_sem_sass/normalize.css"> <link rel="stylesheet" type="text/css" href="css_antigo_sem_sass/projeto.css"> </head> <body> <div class="tudo"> <div class="cabecalho"> <div class="cabecalho-informacao"> <div class="informacao-brasil"> <img height="18" src="imagens/bandeira-brasil.png" alt="Bandeira do Brasil"> <span>Brasil</span> </div> <div class="informacao-servicos"> <ul> <li><a href="#">Serviços</a></li> </ul> </div> <div class="informacao-links"> <ul> <li><a href="#">Participe</a></li> <li><a href="#">Acesso à Informação</a></li> <li><a href="#">Legislação</a></li> <li><a href="#">Canais</a></li> </ul> </div> </div> <div class="cabecalho-destaque"> <h1 class="titulo-portal">Portal Brasil</h1> <div class="busca"> <form> <input type="text" name="busca" class="input-busca" placeholder="buscar..."> <input type="image" height="18" src="imagens/icone-busca.png"> </form> </div> </div> <div class="cabecalho-ouvidoria"> <ul> <li><a href="#">Perguntas frequentes</a></li> <li><a href="#">Fale com o Governo</a></li> <li><a href="#">Fale com o Presidente</a></li> </ul> </div> </div> <div class="corpo"> <div class="banner-principal"> <a href="#"><img src="imagens/banner1.jpg" alt="Reforma da Previdência"></a> </div> <div class="mapa-do-site"> <ul> <li>VOCÊ ESTÁ AQUI:</li> <li><a href="index.html">PÁGINA PRINCIPAL</a></li> </ul> </div> <div class="corpo-conteudo"> <div class="estrutura-lateral"> <ul class="menu-destaque"> <li><a href="#">Últimas Notícias</a></li> <li><a href="#">Portal Planalto</a></li> <li><a href="#">Navegue por Estados</a></li> </ul> <ul class="menu-estruturado"> <li class="titulo"> <h3>Assuntos</h3> <ul> <li><a href="#">Cidadania e Justiça</a></li><li><a href="assunto.php?codigo=2">Ciência e Tecnologia</a></li><li><a href="assunto.php?codigo=3">Cultura</a></li><li><a href="assunto.php?codigo=4">Defesa e Segurança</a></li><li><a href="assunto.php?codigo=5">Economia e Emprego</a></li><li><a href="assunto.php?codigo=6">Educação</a></li><li><a href="assunto.php?codigo=7">Esporte</a></li><li><a href="assunto.php?codigo=8">Governo</a></li><li><a href="assunto.php?codigo=9">Infraestrutura</a></li><li><a href="assunto.php?codigo=10">Meio Ambiente</a></li><li><a href="assunto.php?codigo=11">Saúde</a></li><li><a href="assunto.php?codigo=12">Turismo</a></li> </ul> </li> </ul> </div> <div class="conteudo"> <div class="noticia-destaque"> <h3>Cidadania e Justiça</h3> <div class="noticia-chamada"> <a href="#"><img src="imagens/noticias/destaque_bolsafamilia.jpeg" class="right"></a> <small>Políticas Públicas</small> <h4><a href="#">Governo federal zera fila de espera do Bolsa Família em janeiro</a></h4> <p><a href="#">Cerca de 460 mil pessoas que aguardavam para receber benefício foram incluídas no programa</a></p> </div> </div> <div class="noticia-lista"> <ul> <li> <a href="noticia.html"> <img width="100%" src="imagens/noticias/mini_portosantos.jpeg"> </a> <small>INVESTIMENTOS</small> <h4><a href="noticia.html">Ministério anuncia contrato de dragagem do Porto de Santos</a></h4> <p><a href="noticia.html">No aniversário de 125 anos do maior porto da América Latina, governo anunciou investimento de R$ 369 milhões</a></p> </li> <li> <a href="noticia.html"> <img width="100%" src="imagens/noticias/mini_museu.jpeg"> </a> <small>Museus</small> <h4><a href="noticia.html">Acervos dos museus estarão disponíveis pela internet</a></h4> <p><a href="noticia.html">Digitalização tem como objetivo democratizar o acesso ao vasto patrimônio preservado em museus</a></p> </li> <li> <a href="noticia.html"> <img width="100%" src="imagens/noticias/mini_medicamento.jpeg"> </a> <small>Atenção Básica</small> <h4><a href="noticia.html">Novo medicamento para artrite reumatoide é incorporado ao SUS</a></h4> <p><a href="noticia.html">Pacientes que não responderam aos tratamentos ofertados terão acesso ao citrato de tofacitinibe</a></p> </li> </ul> </div> </div> </div> </div> </div> </body> </html>
the-world-factbook/fields/2023.html
jfseb/twf-as-colored-maps
<!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]--> <!--[if gt IE 8]><!--> <!--<![endif]--> <html class="no-js" lang="en"><!-- InstanceBegin template="/Templates/wfbext_template.dwt.cfm" codeOutsideHTMLIsLocked="false" --> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <!-- InstanceBeginEditable name="doctitle" --> <title>The World Factbook</title> <!-- InstanceEndEditable --> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <link href="../css/fullscreen-external.css" rel="stylesheet" type="text/css"> <script src="../js/modernizr-latest.js"></script><!--developers version - switch to specific production http://modernizr.com/download/--> <script type="text/javascript" src="../js/jquery-1.8.3.min.js"></script> <script type="text/javascript" src="../js/jquery.main.js"></script> <link rel="stylesheet" type="text/css" href="../styles/jquery.ui.core.css"> <link rel="stylesheet" type="text/css" href="../styles/jquery.qtip.css"> <link rel="stylesheet" type="text/css" href="../styles/listnav.css"/> <link rel="stylesheet" type="text/css" href="../styles/wfb_styles.css"> <link rel="stylesheet" type="text/css" href="../styles/factbook.css"> <link rel="stylesheet" type="text/css" href="../styles/navigation.css"> <link rel="stylesheet" type="text/css" href="../scripts/galleria/themes/classic/galleria.classic.css"> <script type="text/javascript" src="../scripts/jquery.idTabs.min.js" charset="utf-8"></script> <script type="text/javascript" src="../scripts/jquery.listmenu.js"></script> <script type="text/javascript" src="../scripts/jquery.listnav.pack.2.1.js" charset="utf-8"></script> <script src="../scripts/jquery-ui-1.9.2.custom.js" type="text/javascript"></script> <script type="text/javascript" src="../scripts/jquery.qtip-2.0.js"></script> <script type="text/javascript" src="../scripts/jquery.qtip.min.js"></script> <script src="../scripts/imgscale.js"></script> <script type="text/javascript" src="../scripts/wfb_scripts.js" charset="utf-8"></script> <!--[if IE]><script type="text/javascript" src="../js/ie.js"></script><![endif]--> <!-- InstanceBeginEditable name="head" --> <!-- load Galleria --> <link rel="stylesheet" type="text/css" href="../scripts/galleria/themes/classic/galleria.classic.css"> <script src="../scripts/galleria/galleria-1.2.9.min.js"></script> <!-- InstanceEndEditable --> </head> <body> <noscript>Javascript must be enabled for the correct page display</noscript> <div id="wrapper"> <header id="header"> <div class="header-holder"> <a class="skip" accesskey="S" href="#main-content">skip to content</a> <span class="bg-globe"></span> <div class="header-panel"> <hgroup> <h1 class="logo"><a href="/"><img src="../images/logo.png" alt="Central Intelligence Agency"><span>Central Intelligence Agency</span></a></h1> <h2 class="work-text">The Work Of A Nation. The Center of Intelligence.</h2> </hgroup> <div class="search-form"> <div class="row"> <div class="add-nav"> <ul> <li><a class="active" href="/contact-cia/report-threats.html">Report Threats</a></li> <li><a href="/about-cia/iraqi-rewards-program.html">رعربيعربي</a></li> <li><a href="/contact-cia/index.html" title="A single point of contact for all CIA inquiries.">Contact</a></li> </ul> </div> </div> <div class="row"> <form id="ciaSearchForm" method="get" action="/search"> <fieldset> <legend class="visuallyhidden">Search CIA.gov</legend> <label class="visuallyhidden" for="q">Search</label> <input name="q" type="text" class="text" id="q" maxlength="2047" placeholder="Search CIA.gov..."/> <input type="hidden" name="site" value="CIA" /> <input type="hidden" name="output" value="xml_no_dtd" /> <input type="hidden" name="client" value="CIA" /> <input type="hidden" name="myAction" value="/search" /> <input type="hidden" name="proxystylesheet" value="CIA" /> <input type="hidden" name="submitMethod" value="get" /> <input type="submit" value="Search" class="submit" /> </fieldset> </form> </div> <div class="row"> <ul class="lang-list"> <li lang="ar" xml:lang="ar"><a href="/ar/index.html">عربي</a></li> <li lang="zh-cn" xml:lang="zh-cn"><a href="/zh/index.html">中文</a></li> <li lang="en" xml:lang="en"><a href="/index.html">English</a></li> <li lang="fr" xml:lang="fr"><a href="/fr/index.html">Français</a></li> <li lang="ru" xml:lang="ru"><a href="/ru/index.html">Русский</a></li> <li lang="es" xml:lang="es"><a href="/es/index.html">Español</a></li> <li lang="en" xml:lang="en"><a title="additional-info" class="more" href="/foreign-languages/index.html">More<span class="visuallyhidden"> Languages</span></a></li> </ul> </div> </div> </div> <nav id="nav"> <h3 class="visuallyhidden">Navigation</h3> <ul> <li> <a href="/">Home</a> <span class="arrow"></span> </li> <li> <a href="/about-cia/">About CIA</a> <span class="arrow"></span> <div class="drop"> <ul> <li><a href="/about-cia/todays-cia/index.html">Today's CIA</a></li> <li><a href="/about-cia/leadership/index.html">Leadership</a></li> <li><a href="/about-cia/cia-vision-mission-values/index.html">CIA Vision, Mission &amp; Values</a></li> <li><a href="/about-cia/headquarters-tour/index.html">Tour Headquarters</a></li> <li><a href="/about-cia/cia-museum/index.html">CIA Museum</a></li> <li><a href="/about-cia/history-of-the-cia/index.html">History of the CIA</a></li> <li><a href="/about-cia/faqs/index.html">FAQs</a></li> <li><a href="/about-cia/no-fear-act/index.html">NoFEAR Act</a></li> <li><a href="/about-cia/site-policies/index.html">Site Policies</a></li> </ul> <div class="info-box"> <img src="../images/navthumb-about.jpg" alt="About CIA" /> <h4>About CIA</h4> <p>Discover the CIA <a href="/about-cia/">history, mission, vision and values</a>. </p> </div> </div> </li> <li> <a href="/careers/">Careers &amp; Internships</a> <span class="arrow"></span> <div class="drop"> <ul> <li class="plain "> <a class="" href="/careers/opportunities" title="This is an overview of all career opportunities at the CIA. "> <span>Career Opportunities </span> </a> </li> <li class="plain "> <a class="" href="/careers/student-opportunities" title="This is the student profile page for candidates looking for jobs/ job listings at the CIA. Student Opportunities - Student Profiles"> <span>Student Opportunities</span> </a> </li> <li class="plain "> <a class="" href="/careers/application-process" title="How to apply to the CIA."> <span>Application Process</span> </a> </li> <li class="plain "> <a class="" href="/careers/life-at-cia" title="This is the about CIA section of the Careers Site"> <span>Life at CIA</span> </a> </li> <li class="plain "> <a class="" href="/careers/diversity" title="This is the diversity information for the Careers Site"> <span>Diversity</span> </a> </li> <li class="plain "> <a class="" href="/careers/military-transition" title="Your prior military service could qualify you to continue to serve your nation at the Central Intelligence Agency. Opportunities for qualified applicants are available in the U.S. and abroad."> <span>Military Transition</span> </a> </li> <li class="plain "> <a class="" href="/careers/games-information" title=""> <span>Diversions &amp; Information</span> </a> </li> <li class="plain "> <a class="" href="/careers/faq" title="Frequently Asked Questions/ FAQ for a Career at the CIA in the Careers Section"> <span>FAQs</span> </a> </li> </ul> <div class="info-box"> <img src="../images/navthumb-careers.jpg" alt="Careers &amp; Internships" /> <h4>Careers &amp; Internships</h4> <p>Your talent. Your diverse skills. Our mission. Learn more about <a href="/careers/">Careers Opportunities at CIA</a>.</p> </div> </div> </li> <li> <a href="/offices-of-cia/">Offices of CIA</a> <span class="arrow"></span> <div class="drop"> <ul> <li class="plain "> <a class="" href="/offices-of-cia/intelligence-analysis" title=""> <span>Intelligence &amp; Analysis</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/clandestine-service" title=""> <span>Clandestine Service</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/science-technology" title=""> <span>Science &amp; Technology</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/mission-support" title=""> <span>Support to Mission</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/human-resources" title=""> <span>Human Resources</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/public-affairs" title="Public Affairs"> <span>Public Affairs</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/general-counsel" title=""> <span>General Counsel</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/equal-employment-opportunity" title=""> <span>Equal Employment Opportunity</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/congressional-affairs" title="Office of Congressional Affairs"> <span>Congressional Affairs</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/inspector-general" title="Inspector General"> <span>Inspector General</span> </a> </li> <li class="plain "> <a class="" href="/offices-of-cia/military-affairs" title="Military Affairs"> <span>Military Affairs</span> </a> </li> </ul> <div class="info-box"> <img src="../images/navthumb-offices.jpg" alt="Offices of CIA" /> <h4>Offices of CIA</h4> <p><a href="/offices-of-cia/">Learn how the CIA is organized</a> into directorates and key offices, responsible for securing our nation.</p> </div> </div> </li> <li> <a href="/news-information/">News &amp; Information</a> <span class="arrow"></span> <div class="drop"> <ul> <li class="plain "> <a class="" href="/news-information/press-releases-statements" title=""> <span>Press Releases &amp; Statements</span> </a> </li> <li class="plain "> <a class="" href="/news-information/speeches-testimony" title=""> <span>Speeches &amp; Testimony</span> </a> </li> <li class="plain "> <a class="" href="/news-information/cia-the-war-on-terrorism" title=""> <span>CIA &amp; the War on Terrorism</span> </a> </li> <li class="plain "> <a class="" href="/news-information/featured-story-archive" title="index for featured story"> <span>Featured Story Archive</span> </a> </li> <li class="plain "> <a class="" href="/news-information/Whats-New-on-CIAgov" title=""> <span>What&#8217;s New Archive</span> </a> </li> <li class="plain "> <a class="" href="/news-information/your-news" title=""> <span>Your News</span> </a> </li> </ul> <div class="info-box"> <img src="../images/navthumb-news.jpg" alt="News &amp; Information" /> <h4>News & Information</h4> <p>The most up-to-date CIA <a href="/news-information/">news, press releases, information and more</a>.</p> </div> </div> </li> <li class="active"> <a href="/library/">Library</a> <span class="arrow"></span> <div class="drop right"> <ul> <li class="plain "> <a class="" href="/library/publications" title=""> <span>Publications</span> </a> </li> <li class="plain "> <a class="" href="/library/center-for-the-study-of-intelligence" title="CSI section"> <span>Center for the Study of Intelligence</span> </a> </li> <li class="plain "> <a class="" href="/library/foia" title=""> <span>Freedom of Information Act Electronic Reading Room</span> </a> </li> <li class="plain "> <a class="" href="/library/kent-center-occasional-papers" title=""> <span>Kent Center Occasional Papers</span> </a> </li> <li class="plain "> <a class="" href="/library/intelligence-literature" title=""> <span>Intelligence Literature</span> </a> </li> <li class="plain "> <a class="" href="/library/reports" title="Reports"> <span>Reports</span> </a> </li> <li class="plain "> <a class="" href="/library/related-links.html" title="Related Links"> <span>Related Links</span> </a> </li> <li class="plain "> <a class="" href="/library/video-center" title="Repository of CIA videos"> <span>Video Center</span> </a> </li> </ul> <div class="info-box"> <img src="../images/navthumb-library.jpg" alt="Library" /> <h4>Library</h4> <p>Our <a href="/library/">open-source library</a> houses the thousands of documents, periodicals, maps and reports released to the public.</p> </div> </div> </li> <li class="last"> <a href="/kids-page/">Kids' Zone</a> <span class="arrow"></span> <div class="drop right"> <ul> <li class="plain "> <a class="" href="/kids-page/k-5th-grade" title="K-5th Grade"> <span>K-5th Grade</span> </a> </li> <li class="plain "> <a class="" href="/kids-page/6-12th-grade" title=""> <span>6-12th Grade</span> </a> </li> <li class="plain "> <a class="" href="/kids-page/parents-teachers" title=""> <span>Parents &amp; Teachers</span> </a> </li> <li class="plain "> <a class="" href="/kids-page/games" title=""> <span>Games</span> </a> </li> <li class="plain "> <a class="" href="/kids-page/related-links" title=""> <span>Related Links</span> </a> </li> <li class="plain "> <a class="" href="/kids-page/privacy-statement" title=""> <span>Privacy Statement</span> </a> </li> </ul> <div class="info-box"> <img src="../images/navthumb-kids.jpg" alt="Kids' Zone" /> <h4>Kids' Zone</h4> <p><a href="/kids-page/">Learn more about the Agency</a> – and find some top secret things you won't see anywhere else.</p> </div> </div> </li> </ul> </nav> </div> </header> <div class="main-block"> <section id="main"> <div class="heading-panel"> <h1>Library</h1> </div> <div class="main-holder"> <div id="sidebar"> <nav class="sidebar-nav"> <h2 class="visuallyhidden">Secondary Navigation</h2> <ul> <li><a class="active" href="/library/">Library</a></li> <li> <a href="/library/publications/">Publications</a> <ul> <li class="mark"><a class="active" href="/library/publications/the-world-factbook/">The World Factbook</a></li> <li><a href="/library/publications/world-leaders-1/">World Leaders</a></li> <li><a href="/library/publications/cia-maps-publications/">CIA Maps</a></li> <li><a href="/library/publications/historical-collection-publications/">Historical Collection Publications</a></li> <li><a href="/library/publications/additional-publications/">Additional Publications</a></li> </ul> </li> <li><a href="/library/center-for-the-study-of-intelligence/">Center for the Study of Intelligence</a></li> <li><a href="http://www.foia.cia.gov/">Freedom of Information Act Electronic Reading Room</a></li> <li><a href="/library/kent-center-occasional-papers/">Kent Center Occasional Papers</a></li> <li><a href="/library/intelligence-literature/">Intelligence Literature: Suggested Reading List</a></li> <li><a href="/library/reports/">Reports</a></li> <li><a href="/library/video-center/">Video Center</a></li> <li><a href="/library/related-links.html">Related Links</a></li> </ul> </nav> </div> <div id="content"> <ul class="breadcrumbs"> <li><a href="/">Home</a></li> <li><a href="/library/">Library </a></li> <li><a href="/library/publications/">Publications</a></li> <li>The World Factbook</li> </ul> <article class="description-box"> <a id="main-content" tabindex="-1">&nbsp;</a> <div class="text-holder-full"> <a name="wfbtop"></a> <div id="fbHeader"> <div id="fbLogo"> <img title="World Factbook Title" src="../graphics/banner_ext2.png" /> </div> <div id="cntrySelect"> <script> $(document).ready(function() { // $(".selecter_links").selecter({ // defaultLabel: "Please Select a Country to View", // links: true // }); $( ".selecter_links" ).change(function(e) { if (this.form.selecter_links.selectedIndex > 0) { window.location = this.form.selecter_links.options[this.form.selecter_links.selectedIndex].value; } }); }); </script> <form action="#" method="GET"> <select name="selecter_links" class="selecter_links" onchange="document.location.href= this.value;"> <option value="">Please select a country to view</option> <option value="/library/publications/the-world-factbook/geos/xx.html"> World </option> <option value="/library/publications/the-world-factbook/geos/af.html"> Afghanistan </option> <option value="/library/publications/the-world-factbook/geos/ax.html"> Akrotiri </option> <option value="/library/publications/the-world-factbook/geos/al.html"> Albania </option> <option value="/library/publications/the-world-factbook/geos/ag.html"> Algeria </option> <option value="/library/publications/the-world-factbook/geos/aq.html"> American Samoa </option> <option value="/library/publications/the-world-factbook/geos/an.html"> Andorra </option> <option value="/library/publications/the-world-factbook/geos/ao.html"> Angola </option> <option value="/library/publications/the-world-factbook/geos/av.html"> Anguilla </option> <option value="/library/publications/the-world-factbook/geos/ay.html"> Antarctica </option> <option value="/library/publications/the-world-factbook/geos/ac.html"> Antigua and Barbuda </option> <option value="/library/publications/the-world-factbook/geos/xq.html"> Arctic Ocean </option> <option value="/library/publications/the-world-factbook/south-america/ar.html"> Argentina </option> <option value="/library/publications/the-world-factbook/geos/am.html"> Armenia </option> <option value="/library/publications/the-world-factbook/geos/aa.html"> Aruba </option> <option value="/library/publications/the-world-factbook/geos/at.html"> Ashmore and Cartier Islands </option> <option value="/library/publications/the-world-factbook/geos/zh.html"> Atlantic Ocean </option> <option value="/library/publications/the-world-factbook/geos/as.html"> Australia </option> <option value="/library/publications/the-world-factbook/geos/au.html"> Austria </option> <option value="/library/publications/the-world-factbook/geos/aj.html"> Azerbaijan </option> <option value="/library/publications/the-world-factbook/geos/bf.html"> Bahamas, The </option> <option value="/library/publications/the-world-factbook/geos/ba.html"> Bahrain </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Baker Island </option> <option value="/library/publications/the-world-factbook/geos/bg.html"> Bangladesh </option> <option value="/library/publications/the-world-factbook/geos/bb.html"> Barbados </option> <option value="/library/publications/the-world-factbook/geos/bo.html"> Belarus </option> <option value="/library/publications/the-world-factbook/geos/be.html"> Belgium </option> <option value="/library/publications/the-world-factbook/geos/bh.html"> Belize </option> <option value="/library/publications/the-world-factbook/geos/bn.html"> Benin </option> <option value="/library/publications/the-world-factbook/geos/bd.html"> Bermuda </option> <option value="/library/publications/the-world-factbook/geos/bt.html"> Bhutan </option> <option value="/library/publications/the-world-factbook/south-america/bl.html"> Bolivia </option> <option value="/library/publications/the-world-factbook/geos/bk.html"> Bosnia and Herzegovina </option> <option value="/library/publications/the-world-factbook/geos/bc.html"> Botswana </option> <option value="/library/publications/the-world-factbook/geos/bv.html"> Bouvet Island </option> <option value="/library/publications/the-world-factbook/south-america/br.html"> Brazil </option> <option value="/library/publications/the-world-factbook/geos/io.html"> British Indian Ocean Territory </option> <option value="/library/publications/the-world-factbook/geos/vi.html"> British Virgin Islands </option> <option value="/library/publications/the-world-factbook/geos/bx.html"> Brunei </option> <option value="/library/publications/the-world-factbook/geos/bu.html"> Bulgaria </option> <option value="/library/publications/the-world-factbook/geos/uv.html"> Burkina Faso </option> <option value="/library/publications/the-world-factbook/geos/bm.html"> Burma </option> <option value="/library/publications/the-world-factbook/geos/by.html"> Burundi </option> <option value="/library/publications/the-world-factbook/geos/cv.html"> Cabo Verde </option> <option value="/library/publications/the-world-factbook/geos/cb.html"> Cambodia </option> <option value="/library/publications/the-world-factbook/geos/cm.html"> Cameroon </option> <option value="/library/publications/the-world-factbook/geos/ca.html"> Canada </option> <option value="/library/publications/the-world-factbook/geos/cj.html"> Cayman Islands </option> <option value="/library/publications/the-world-factbook/geos/ct.html"> Central African Republic </option> <option value="/library/publications/the-world-factbook/geos/cd.html"> Chad </option> <option value="/library/publications/the-world-factbook/south-america/ci.html"> Chile </option> <option value="/library/publications/the-world-factbook/geos/ch.html"> China </option> <option value="/library/publications/the-world-factbook/geos/kt.html"> Christmas Island </option> <option value="/library/publications/the-world-factbook/geos/ip.html"> Clipperton Island </option> <option value="/library/publications/the-world-factbook/geos/ck.html"> Cocos (Keeling) Islands </option> <option value="/library/publications/the-world-factbook/south-america/co.html"> Colombia </option> <option value="/library/publications/the-world-factbook/geos/cn.html"> Comoros </option> <option value="/library/publications/the-world-factbook/geos/cg.html"> Congo, Democratic Republic of the </option> <option value="/library/publications/the-world-factbook/geos/cf.html"> Congo, Republic of the </option> <option value="/library/publications/the-world-factbook/geos/cw.html"> Cook Islands </option> <option value="/library/publications/the-world-factbook/geos/cr.html"> Coral Sea Islands </option> <option value="/library/publications/the-world-factbook/geos/cs.html"> Costa Rica </option> <option value="/library/publications/the-world-factbook/geos/iv.html"> Cote d'Ivoire </option> <option value="/library/publications/the-world-factbook/geos/hr.html"> Croatia </option> <option value="/library/publications/the-world-factbook/geos/cu.html"> Cuba </option> <option value="/library/publications/the-world-factbook/geos/cc.html"> Curacao </option> <option value="/library/publications/the-world-factbook/geos/cy.html"> Cyprus </option> <option value="/library/publications/the-world-factbook/geos/ez.html"> Czech Republic </option> <option value="/library/publications/the-world-factbook/geos/da.html"> Denmark </option> <option value="/library/publications/the-world-factbook/geos/dx.html"> Dhekelia </option> <option value="/library/publications/the-world-factbook/geos/dj.html"> Djibouti </option> <option value="/library/publications/the-world-factbook/geos/do.html"> Dominica </option> <option value="/library/publications/the-world-factbook/geos/dr.html"> Dominican Republic </option> <option value="/library/publications/the-world-factbook/south-america/ec.html"> Ecuador </option> <option value="/library/publications/the-world-factbook/geos/eg.html"> Egypt </option> <option value="/library/publications/the-world-factbook/geos/es.html"> El Salvador </option> <option value="/library/publications/the-world-factbook/geos/ek.html"> Equatorial Guinea </option> <option value="/library/publications/the-world-factbook/geos/er.html"> Eritrea </option> <option value="/library/publications/the-world-factbook/geos/en.html"> Estonia </option> <option value="/library/publications/the-world-factbook/geos/et.html"> Ethiopia </option> <option value="/library/publications/the-world-factbook/south-america/fk.html"> Falkland Islands (Islas Malvinas) </option> <option value="/library/publications/the-world-factbook/geos/fo.html"> Faroe Islands </option> <option value="/library/publications/the-world-factbook/geos/fj.html"> Fiji </option> <option value="/library/publications/the-world-factbook/geos/fi.html"> Finland </option> <option value="/library/publications/the-world-factbook/geos/fr.html"> France </option> <option value="/library/publications/the-world-factbook/geos/fp.html"> French Polynesia </option> <option value="/library/publications/the-world-factbook/geos/fs.html"> French Southern and Antarctic Lands </option> <option value="/library/publications/the-world-factbook/geos/gb.html"> Gabon </option> <option value="/library/publications/the-world-factbook/geos/ga.html"> Gambia, The </option> <option value="/library/publications/the-world-factbook/geos/gz.html"> Gaza Strip </option> <option value="/library/publications/the-world-factbook/geos/gg.html"> Georgia </option> <option value="/library/publications/the-world-factbook/geos/gm.html"> Germany </option> <option value="/library/publications/the-world-factbook/geos/gh.html"> Ghana </option> <option value="/library/publications/the-world-factbook/geos/gi.html"> Gibraltar </option> <option value="/library/publications/the-world-factbook/geos/gr.html"> Greece </option> <option value="/library/publications/the-world-factbook/geos/gl.html"> Greenland </option> <option value="/library/publications/the-world-factbook/geos/gj.html"> Grenada </option> <option value="/library/publications/the-world-factbook/geos/gq.html"> Guam </option> <option value="/library/publications/the-world-factbook/geos/gt.html"> Guatemala </option> <option value="/library/publications/the-world-factbook/geos/gk.html"> Guernsey </option> <option value="/library/publications/the-world-factbook/geos/gv.html"> Guinea </option> <option value="/library/publications/the-world-factbook/geos/pu.html"> Guinea-Bissau </option> <option value="/library/publications/the-world-factbook/south-america/gy.html"> Guyana </option> <option value="/library/publications/the-world-factbook/geos/ha.html"> Haiti </option> <option value="/library/publications/the-world-factbook/geos/hm.html"> Heard Island and McDonald Islands </option> <option value="/library/publications/the-world-factbook/geos/vt.html"> Holy See (Vatican City) </option> <option value="/library/publications/the-world-factbook/geos/ho.html"> Honduras </option> <option value="/library/publications/the-world-factbook/geos/hk.html"> Hong Kong </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Howland Island </option> <option value="/library/publications/the-world-factbook/geos/hu.html"> Hungary </option> <option value="/library/publications/the-world-factbook/geos/ic.html"> Iceland </option> <option value="/library/publications/the-world-factbook/geos/in.html"> India </option> <option value="/library/publications/the-world-factbook/geos/xo.html"> Indian Ocean </option> <option value="/library/publications/the-world-factbook/geos/id.html"> Indonesia </option> <option value="/library/publications/the-world-factbook/geos/ir.html"> Iran </option> <option value="/library/publications/the-world-factbook/geos/iz.html"> Iraq </option> <option value="/library/publications/the-world-factbook/geos/ei.html"> Ireland </option> <option value="/library/publications/the-world-factbook/geos/im.html"> Isle of Man </option> <option value="/library/publications/the-world-factbook/geos/is.html"> Israel </option> <option value="/library/publications/the-world-factbook/geos/it.html"> Italy </option> <option value="/library/publications/the-world-factbook/geos/jm.html"> Jamaica </option> <option value="/library/publications/the-world-factbook/geos/jn.html"> Jan Mayen </option> <option value="/library/publications/the-world-factbook/geos/ja.html"> Japan </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Jarvis Island </option> <option value="/library/publications/the-world-factbook/geos/je.html"> Jersey </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Johnston Atoll </option> <option value="/library/publications/the-world-factbook/geos/jo.html"> Jordan </option> <option value="/library/publications/the-world-factbook/geos/kz.html"> Kazakhstan </option> <option value="/library/publications/the-world-factbook/geos/ke.html"> Kenya </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Kingman Reef </option> <option value="/library/publications/the-world-factbook/geos/kr.html"> Kiribati </option> <option value="/library/publications/the-world-factbook/geos/kn.html"> Korea, North </option> <option value="/library/publications/the-world-factbook/geos/ks.html"> Korea, South </option> <option value="/library/publications/the-world-factbook/geos/kv.html"> Kosovo </option> <option value="/library/publications/the-world-factbook/geos/ku.html"> Kuwait </option> <option value="/library/publications/the-world-factbook/geos/kg.html"> Kyrgyzstan </option> <option value="/library/publications/the-world-factbook/geos/la.html"> Laos </option> <option value="/library/publications/the-world-factbook/geos/lg.html"> Latvia </option> <option value="/library/publications/the-world-factbook/geos/le.html"> Lebanon </option> <option value="/library/publications/the-world-factbook/geos/lt.html"> Lesotho </option> <option value="/library/publications/the-world-factbook/geos/li.html"> Liberia </option> <option value="/library/publications/the-world-factbook/geos/ly.html"> Libya </option> <option value="/library/publications/the-world-factbook/geos/ls.html"> Liechtenstein </option> <option value="/library/publications/the-world-factbook/geos/lh.html"> Lithuania </option> <option value="/library/publications/the-world-factbook/geos/lu.html"> Luxembourg </option> <option value="/library/publications/the-world-factbook/geos/mc.html"> Macau </option> <option value="/library/publications/the-world-factbook/geos/mk.html"> Macedonia </option> <option value="/library/publications/the-world-factbook/geos/ma.html"> Madagascar </option> <option value="/library/publications/the-world-factbook/geos/mi.html"> Malawi </option> <option value="/library/publications/the-world-factbook/geos/my.html"> Malaysia </option> <option value="/library/publications/the-world-factbook/geos/mv.html"> Maldives </option> <option value="/library/publications/the-world-factbook/geos/ml.html"> Mali </option> <option value="/library/publications/the-world-factbook/geos/mt.html"> Malta </option> <option value="/library/publications/the-world-factbook/geos/rm.html"> Marshall Islands </option> <option value="/library/publications/the-world-factbook/geos/mr.html"> Mauritania </option> <option value="/library/publications/the-world-factbook/geos/mp.html"> Mauritius </option> <option value="/library/publications/the-world-factbook/geos/mx.html"> Mexico </option> <option value="/library/publications/the-world-factbook/geos/fm.html"> Micronesia, Federated States of </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Midway Islands </option> <option value="/library/publications/the-world-factbook/geos/md.html"> Moldova </option> <option value="/library/publications/the-world-factbook/geos/mn.html"> Monaco </option> <option value="/library/publications/the-world-factbook/geos/mg.html"> Mongolia </option> <option value="/library/publications/the-world-factbook/geos/mj.html"> Montenegro </option> <option value="/library/publications/the-world-factbook/geos/mh.html"> Montserrat </option> <option value="/library/publications/the-world-factbook/geos/mo.html"> Morocco </option> <option value="/library/publications/the-world-factbook/geos/mz.html"> Mozambique </option> <option value="/library/publications/the-world-factbook/geos/wa.html"> Namibia </option> <option value="/library/publications/the-world-factbook/geos/nr.html"> Nauru </option> <option value="/library/publications/the-world-factbook/geos/bq.html"> Navassa Island </option> <option value="/library/publications/the-world-factbook/geos/np.html"> Nepal </option> <option value="/library/publications/the-world-factbook/geos/nl.html"> Netherlands </option> <option value="/library/publications/the-world-factbook/geos/nc.html"> New Caledonia </option> <option value="/library/publications/the-world-factbook/geos/nz.html"> New Zealand </option> <option value="/library/publications/the-world-factbook/geos/nu.html"> Nicaragua </option> <option value="/library/publications/the-world-factbook/geos/ng.html"> Niger </option> <option value="/library/publications/the-world-factbook/geos/ni.html"> Nigeria </option> <option value="/library/publications/the-world-factbook/geos/ne.html"> Niue </option> <option value="/library/publications/the-world-factbook/geos/nf.html"> Norfolk Island </option> <option value="/library/publications/the-world-factbook/geos/cq.html"> Northern Mariana Islands </option> <option value="/library/publications/the-world-factbook/geos/no.html"> Norway </option> <option value="/library/publications/the-world-factbook/geos/mu.html"> Oman </option> <option value="/library/publications/the-world-factbook/geos/zn.html"> Pacific Ocean </option> <option value="/library/publications/the-world-factbook/geos/pk.html"> Pakistan </option> <option value="/library/publications/the-world-factbook/geos/ps.html"> Palau </option> <option value="/library/publications/the-world-factbook/geos/um.html"> Palmyra Atoll </option> <option value="/library/publications/the-world-factbook/geos/pm.html"> Panama </option> <option value="/library/publications/the-world-factbook/geos/pp.html"> Papua New Guinea </option> <option value="/library/publications/the-world-factbook/geos/pf.html"> Paracel Islands </option> <option value="/library/publications/the-world-factbook/south-america/pa.html"> Paraguay </option> <option value="/library/publications/the-world-factbook/south-america/pe.html"> Peru </option> <option value="/library/publications/the-world-factbook/geos/rp.html"> Philippines </option> <option value="/library/publications/the-world-factbook/geos/pc.html"> Pitcairn Islands </option> <option value="/library/publications/the-world-factbook/geos/pl.html"> Poland </option> <option value="/library/publications/the-world-factbook/geos/po.html"> Portugal </option> <option value="/library/publications/the-world-factbook/geos/rq.html"> Puerto Rico </option> <option value="/library/publications/the-world-factbook/geos/qa.html"> Qatar </option> <option value="/library/publications/the-world-factbook/geos/ro.html"> Romania </option> <option value="/library/publications/the-world-factbook/geos/rs.html"> Russia </option> <option value="/library/publications/the-world-factbook/geos/rw.html"> Rwanda </option> <option value="/library/publications/the-world-factbook/geos/tb.html"> Saint Barthelemy </option> <option value="/library/publications/the-world-factbook/geos/sh.html"> Saint Helena, Ascension, and Tristan da Cunha </option> <option value="/library/publications/the-world-factbook/geos/sc.html"> Saint Kitts and Nevis </option> <option value="/library/publications/the-world-factbook/geos/st.html"> Saint Lucia </option> <option value="/library/publications/the-world-factbook/geos/rn.html"> Saint Martin </option> <option value="/library/publications/the-world-factbook/geos/sb.html"> Saint Pierre and Miquelon </option> <option value="/library/publications/the-world-factbook/geos/vc.html"> Saint Vincent and the Grenadines </option> <option value="/library/publications/the-world-factbook/geos/ws.html"> Samoa </option> <option value="/library/publications/the-world-factbook/geos/sm.html"> San Marino </option> <option value="/library/publications/the-world-factbook/geos/tp.html"> Sao Tome and Principe </option> <option value="/library/publications/the-world-factbook/geos/sa.html"> Saudi Arabia </option> <option value="/library/publications/the-world-factbook/geos/sg.html"> Senegal </option> <option value="/library/publications/the-world-factbook/geos/ri.html"> Serbia </option> <option value="/library/publications/the-world-factbook/geos/se.html"> Seychelles </option> <option value="/library/publications/the-world-factbook/geos/sl.html"> Sierra Leone </option> <option value="/library/publications/the-world-factbook/geos/sn.html"> Singapore </option> <option value="/library/publications/the-world-factbook/geos/sk.html"> Sint Maarten </option> <option value="/library/publications/the-world-factbook/geos/lo.html"> Slovakia </option> <option value="/library/publications/the-world-factbook/geos/si.html"> Slovenia </option> <option value="/library/publications/the-world-factbook/geos/bp.html"> Solomon Islands </option> <option value="/library/publications/the-world-factbook/geos/so.html"> Somalia </option> <option value="/library/publications/the-world-factbook/geos/sf.html"> South Africa </option> <option value="/library/publications/the-world-factbook/geos/oo.html"> Southern Ocean </option> <option value="/library/publications/the-world-factbook/south-america/sx.html"> South Georgia and South Sandwich Islands </option> <option value="/library/publications/the-world-factbook/geos/od.html"> South Sudan </option> <option value="/library/publications/the-world-factbook/geos/sp.html"> Spain </option> <option value="/library/publications/the-world-factbook/geos/pg.html"> Spratly Islands </option> <option value="/library/publications/the-world-factbook/geos/ce.html"> Sri Lanka </option> <option value="/library/publications/the-world-factbook/geos/su.html"> Sudan </option> <option value="/library/publications/the-world-factbook/south-america/ns.html"> Suriname </option> <option value="/library/publications/the-world-factbook/geos/sv.html"> Svalbard </option> <option value="/library/publications/the-world-factbook/geos/wz.html"> Swaziland </option> <option value="/library/publications/the-world-factbook/geos/sw.html"> Sweden </option> <option value="/library/publications/the-world-factbook/geos/sz.html"> Switzerland </option> <option value="/library/publications/the-world-factbook/geos/sy.html"> Syria </option> <option value="/library/publications/the-world-factbook/geos/tw.html"> Taiwan </option> <option value="/library/publications/the-world-factbook/geos/ti.html"> Tajikistan </option> <option value="/library/publications/the-world-factbook/geos/tz.html"> Tanzania </option> <option value="/library/publications/the-world-factbook/geos/th.html"> Thailand </option> <option value="/library/publications/the-world-factbook/geos/tt.html"> Timor-Leste </option> <option value="/library/publications/the-world-factbook/geos/to.html"> Togo </option> <option value="/library/publications/the-world-factbook/geos/tl.html"> Tokelau </option> <option value="/library/publications/the-world-factbook/geos/tn.html"> Tonga </option> <option value="/library/publications/the-world-factbook/geos/td.html"> Trinidad and Tobago </option> <option value="/library/publications/the-world-factbook/geos/ts.html"> Tunisia </option> <option value="/library/publications/the-world-factbook/geos/tu.html"> Turkey </option> <option value="/library/publications/the-world-factbook/geos/tx.html"> Turkmenistan </option> <option value="/library/publications/the-world-factbook/geos/tk.html"> Turks and Caicos Islands </option> <option value="/library/publications/the-world-factbook/geos/tv.html"> Tuvalu </option> <option value="/library/publications/the-world-factbook/geos/ug.html"> Uganda </option> <option value="/library/publications/the-world-factbook/geos/up.html"> Ukraine </option> <option value="/library/publications/the-world-factbook/geos/ae.html"> United Arab Emirates </option> <option value="/library/publications/the-world-factbook/geos/uk.html"> United Kingdom </option> <option value="/library/publications/the-world-factbook/geos/us.html"> United States </option> <option value="/library/publications/the-world-factbook/geos/um.html"> United States Pacific Island Wildlife Refuges </option> <option value="/library/publications/the-world-factbook/south-america/uy.html"> Uruguay </option> <option value="/library/publications/the-world-factbook/geos/uz.html"> Uzbekistan </option> <option value="/library/publications/the-world-factbook/geos/nh.html"> Vanuatu </option> <option value="/library/publications/the-world-factbook/south-america/ve.html"> Venezuela </option> <option value="/library/publications/the-world-factbook/geos/vm.html"> Vietnam </option> <option value="/library/publications/the-world-factbook/geos/vq.html"> Virgin Islands </option> <option value="/library/publications/the-world-factbook/geos/wq.html"> Wake Island </option> <option value="/library/publications/the-world-factbook/geos/wf.html"> Wallis and Futuna </option> <option value="/library/publications/the-world-factbook/geos/we.html"> West Bank </option> <option value="/library/publications/the-world-factbook/geos/wi.html"> Western Sahara </option> <option value="/library/publications/the-world-factbook/geos/ym.html"> Yemen </option> <option value="/library/publications/the-world-factbook/geos/za.html"> Zambia </option> <option value="/library/publications/the-world-factbook/geos/zi.html"> Zimbabwe </option> <option value="/library/publications/the-world-factbook/geos/ee.html"> European Union </option> </select> </form> </div> <!-- cntrySelect --> <div id="fbnav"> <div id="fbNavBox"> <script type="text/javascript"> var timeout = 500; var closetimer = 0; var ddmenuitem = 0; function wfbNav_open() { wfbNav_canceltimer(); wfbNav_close(); ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');} function wfbNav_close() { if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');} function wfbNav_timer() { closetimer = window.setTimeout(wfbNav_close, timeout);} function wfbNav_canceltimer() { if(closetimer) { window.clearTimeout(closetimer); closetimer = null;}} $(document).ready(function() { $('#wfbNav > li').bind('mouseover', wfbNav_open); $('#wfbNav > li').bind('mouseout', wfbNav_timer);}); document.onclick = wfbNav_close; </script> <ul id="wfbNav" style="z-index: 9999;"> <li style="border-bottom: 2px solid #CCCCCC; "><a href="/library/publications/the-world-factbook/" style="width:20px; height: 12px;" title="The World Factbook Home"><img src="../graphics/home_on.png" border="0" /></a></li> <li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" style="width:65px;" title="About">ABOUT</a> <ul class="sub_menu"> <li><a href="/library/publications/the-world-factbook/docs/history.html">History</a></li> <li><a href="/library/publications/the-world-factbook/docs/contributor_copyright.html">Copyright and Contributors</a></li> <li><a href="/library/publications/the-world-factbook/docs/purchase_info.html">Purchasing</a></li> <li><a href="/library/publications/the-world-factbook/docs/didyouknow.html">Did You Know?</a></li> </ul> </li> <li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" style="width:95px;" title="References">REFERENCES</a> <ul class="sub_menu"> <li><a href="/library/publications/the-world-factbook/docs/refmaps.html">Regional and World Maps</a></li> <li><a href="/library/publications/the-world-factbook/docs/flagsoftheworld.html">Flags of the World</a></li> <li><a href="/library/publications/the-world-factbook/docs/gallery.html">Gallery of Covers</a></li> <li><a href="/library/publications/the-world-factbook/docs/notesanddefs.html">Definitions and Notes</a></li> <li><a href="/library/publications/the-world-factbook/docs/profileguide.html">Guide to Country Profiles</a></li> <li><a href="/library/publications/the-world-factbook/rankorder/rankorderguide.html">Guide to Country Comparisons</a></li> <li><a href="/library/publications/the-world-factbook/docs/guidetowfbook.html">The World Factbook Users Guide</a></li> </ul> </li> <li style="border-bottom: 2px solid #CCCCCC; "><a href="javascript:void(0);" title="Appendices">APPENDICES</a> <ul class="sub_menu"> <li><a href="/library/publications/the-world-factbook/appendix/appendix-a.html">A: abbreviations</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-b.html">B: international organizations and groups</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-c.html">C: selected international environmental agreements</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-d.html">D: cross-reference list of country data codes</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-e.html">E: cross-reference list of hydrographic data codes</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-f.html">F: cross-reference list of geographic names</a></li> <li><a href="/library/publications/the-world-factbook/appendix/appendix-g.html">G: weights and measures</a></li> </ul> </li> <li id="faqs" style="border-bottom: 2px solid #CCCCCC; "><a href="/library/publications/the-world-factbook/docs/faqs.html" style="cursor:pointer;width:50px;">FAQ<span style="text-transform:lowercase;">s</span></a></li> <li id="contact" style="border-bottom: 2px solid #CCCCCC; "> <a href="/contact-cia/index.html" title="Contact" style="cursor:pointer;width:73px;"> CONTACT </a> </li> </ul> </div> <!-- fbnavbox --> <!-- <div class="smalltext_nav"> --> <div class="fbsmalltext_nav"> <ul> <li class="low-band"><a href="#LowBand"><img src="../graphics/bandwidth_btn_off.gif" /></a></li> <li class="fb-download"><a href="#download"><img src="../graphics/download_btn_off.gif" /></a></li> </ul> </div> </div> <!-- fbNav --> </div><!-- fbHeader --> <div class=fbTitleRankOrder>FIELD LISTING :: <strong>AREA - COMPARATIVE</strong> <span id=fieldPrint> <a target=_blank href=print_2023.html> <img width=25 border=0 height=18 style=color:#999999 title=Print Page alt=Print Page src=../graphics/print.gif> </a></span> </div> <div class=rankOrderDesc>This entry provides an area comparison based on total area equivalents. Most entities are compared with the entire US or one of the 50 states based on area measurements (1990 revised) provided by the US Bureau of the Census. The smaller entities are compared with Washington, DC (178 sq km, 69 sq mi) or The Mall in Washington, DC (0.59 sq km, 0.23 sq mi, 146 acres). <p class=comparison><br /><a alt=Country comparison to the world href=../rankorder/2023rank.html title=Country comparison to the world ><strong>Country Comparison to the World</strong></a></p></div> <table id=fieldListing> <tbody> <tr class=fieldHeading valign=middle bgcolor=#F8f8e7 height=25><th width=200px>Country</th><th>AREA - COMPARATIVE(SQ KM)</th></tr> <tr id=af><td class=country><a href=../geos/af.html>Afghanistan</td><td class=fieldData> almost six time the size of Virginia; slightly smaller than Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="ax"><td class=country><a href=../geos/ax.html>Akrotiri</td><td class=fieldData> about 0.7 times the size of Washington, DC<br /> </td></tr> <tr id=al><td class=country><a href=../geos/al.html>Albania</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="ag"><td class=country><a href=../geos/ag.html>Algeria</td><td class=fieldData> slightly less than 3.5 times the size of Texas<br /> </td></tr> <tr id=aq><td class=country><a href=../geos/aq.html>American Samoa</td><td class=fieldData> slightly larger than Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="an"><td class=country><a href=../geos/an.html>Andorra</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr id=ao><td class=country><a href=../geos/ao.html>Angola</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="av"><td class=country><a href=../geos/av.html>Anguilla</td><td class=fieldData> about one-half the size of Washington, DC<br /> </td></tr> <tr id=ay><td class=country><a href=../geos/ay.html>Antarctica</td><td class=fieldData> slightly less than 1.5 times the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="ac"><td class=country><a href=../geos/ac.html>Antigua and Barbuda</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr id=xq><td class=country><a href=../geos/xq.html>Arctic Ocean</td><td class=fieldData> slightly less than 1.5 times the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="ar"><td class=country><a href=../geos/ar.html>Argentina</td><td class=fieldData> slightly less than three-tenths the size of the US<br /> </td></tr> <tr id=am><td class=country><a href=../geos/am.html>Armenia</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="aa"><td class=country><a href=../geos/aa.html>Aruba</td><td class=fieldData> slightly larger than Washington, DC<br /> </td></tr> <tr id=at><td class=country><a href=../geos/at.html>Ashmore and Cartier Islands</td><td class=fieldData> about eight times the size of The Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="zh"><td class=country><a href=../geos/zh.html>Atlantic Ocean</td><td class=fieldData> slightly less than 6.5 times the size of the US<br /> </td></tr> <tr id=as><td class=country><a href=../geos/as.html>Australia</td><td class=fieldData> slightly smaller than the US contiguous 48 states<br /> </td></tr> <tr style="background: #EEEEEE" id="au"><td class=country><a href=../geos/au.html>Austria</td><td class=fieldData> slightly smaller than Maine<br /> </td></tr> <tr id=aj><td class=country><a href=../geos/aj.html>Azerbaijan</td><td class=fieldData> slightly smaller than Maine<br /> </td></tr> <tr style="background: #EEEEEE" id="bf"><td class=country><a href=../geos/bf.html>Bahamas, The</td><td class=fieldData> slightly smaller than Connecticut<br /> </td></tr> <tr id=ba><td class=country><a href=../geos/ba.html>Bahrain</td><td class=fieldData> 3.5 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="bg"><td class=country><a href=../geos/bg.html>Bangladesh</td><td class=fieldData> slightly smaller than Iowa<br /> </td></tr> <tr id=bb><td class=country><a href=../geos/bb.html>Barbados</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="bo"><td class=country><a href=../geos/bo.html>Belarus</td><td class=fieldData> slightly smaller than Kansas<br /> </td></tr> <tr id=be><td class=country><a href=../geos/be.html>Belgium</td><td class=fieldData> about the size of Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="bh"><td class=country><a href=../geos/bh.html>Belize</td><td class=fieldData> slightly smaller than Massachusetts<br /> </td></tr> <tr id=bn><td class=country><a href=../geos/bn.html>Benin</td><td class=fieldData> slightly smaller than Pennsylvania<br /> </td></tr> <tr style="background: #EEEEEE" id="bd"><td class=country><a href=../geos/bd.html>Bermuda</td><td class=fieldData> about one-third the size of Washington, DC<br /> </td></tr> <tr id=bt><td class=country><a href=../geos/bt.html>Bhutan</td><td class=fieldData> about one-half the size of Indiana<br /> </td></tr> <tr style="background: #EEEEEE" id="bl"><td class=country><a href=../geos/bl.html>Bolivia</td><td class=fieldData> slightly less than three times the size of Montana<br /> </td></tr> <tr id=bk><td class=country><a href=../geos/bk.html>Bosnia and Herzegovina</td><td class=fieldData> slightly smaller than West Virginia<br /> </td></tr> <tr style="background: #EEEEEE" id="bc"><td class=country><a href=../geos/bc.html>Botswana</td><td class=fieldData> slightly smaller than Texas<br /> </td></tr> <tr id=bv><td class=country><a href=../geos/bv.html>Bouvet Island</td><td class=fieldData> about 0.3 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="br"><td class=country><a href=../geos/br.html>Brazil</td><td class=fieldData> slightly smaller than the US<br /> </td></tr> <tr id=io><td class=country><a href=../geos/io.html>British Indian Ocean Territory</td><td class=fieldData> land area is about 0.3 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="vi"><td class=country><a href=../geos/vi.html>British Virgin Islands</td><td class=fieldData> about 0.9 times the size of Washington, DC<br /> </td></tr> <tr id=bx><td class=country><a href=../geos/bx.html>Brunei</td><td class=fieldData> slightly smaller than Delaware<br /> </td></tr> <tr style="background: #EEEEEE" id="bu"><td class=country><a href=../geos/bu.html>Bulgaria</td><td class=fieldData> slightly larger than Tennessee<br /> </td></tr> <tr id=uv><td class=country><a href=../geos/uv.html>Burkina Faso</td><td class=fieldData> slightly larger than Colorado<br /> </td></tr> <tr style="background: #EEEEEE" id="bm"><td class=country><a href=../geos/bm.html>Burma</td><td class=fieldData> slightly smaller than Texas<br /> </td></tr> <tr id=by><td class=country><a href=../geos/by.html>Burundi</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="cv"><td class=country><a href=../geos/cv.html>Cabo Verde</td><td class=fieldData> slightly larger than Rhode Island<br /> </td></tr> <tr id=cb><td class=country><a href=../geos/cb.html>Cambodia</td><td class=fieldData> slightly smaller than Oklahoma<br /> </td></tr> <tr style="background: #EEEEEE" id="cm"><td class=country><a href=../geos/cm.html>Cameroon</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr id=ca><td class=country><a href=../geos/ca.html>Canada</td><td class=fieldData> slightly larger than the US<br /> </td></tr> <tr style="background: #EEEEEE" id="cj"><td class=country><a href=../geos/cj.html>Cayman Islands</td><td class=fieldData> 1.5 times the size of Washington, DC<br /> </td></tr> <tr id=ct><td class=country><a href=../geos/ct.html>Central African Republic</td><td class=fieldData> slightly smaller than Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="cd"><td class=country><a href=../geos/cd.html>Chad</td><td class=fieldData> slightly more than three times the size of California<br /> </td></tr> <tr id=ci><td class=country><a href=../geos/ci.html>Chile</td><td class=fieldData> slightly smaller than twice the size of Montana<br /> </td></tr> <tr style="background: #EEEEEE" id="ch"><td class=country><a href=../geos/ch.html>China</td><td class=fieldData> slightly smaller than the US<br /> </td></tr> <tr id=kt><td class=country><a href=../geos/kt.html>Christmas Island</td><td class=fieldData> about three-quarters the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="ip"><td class=country><a href=../geos/ip.html>Clipperton Island</td><td class=fieldData> about 12 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=ck><td class=country><a href=../geos/ck.html>Cocos (Keeling) Islands</td><td class=fieldData> about 24 times the size of The Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="co"><td class=country><a href=../geos/co.html>Colombia</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr id=cn><td class=country><a href=../geos/cn.html>Comoros</td><td class=fieldData> slightly more than 12 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="cg"><td class=country><a href=../geos/cg.html>Congo, Democratic Republic of the</td><td class=fieldData> slightly less than one-fourth the size of the US<br /> </td></tr> <tr id=cf><td class=country><a href=../geos/cf.html>Congo, Republic of the</td><td class=fieldData> slightly smaller than Montana<br /> </td></tr> <tr style="background: #EEEEEE" id="cw"><td class=country><a href=../geos/cw.html>Cook Islands</td><td class=fieldData> 1.3 times the size of Washington, DC<br /> </td></tr> <tr id=cr><td class=country><a href=../geos/cr.html>Coral Sea Islands</td><td class=fieldData> NA<br /> </td></tr> <tr style="background: #EEEEEE" id="cs"><td class=country><a href=../geos/cs.html>Costa Rica</td><td class=fieldData> slightly smaller than West Virginia<br /> </td></tr> <tr id=iv><td class=country><a href=../geos/iv.html>Cote d'Ivoire</td><td class=fieldData> slightly larger than New Mexico<br /> </td></tr> <tr style="background: #EEEEEE" id="hr"><td class=country><a href=../geos/hr.html>Croatia</td><td class=fieldData> slightly smaller than West Virginia<br /> </td></tr> <tr id=cu><td class=country><a href=../geos/cu.html>Cuba</td><td class=fieldData> slightly smaller than Pennsylvania<br /> </td></tr> <tr style="background: #EEEEEE" id="cc"><td class=country><a href=../geos/cc.html>Curacao</td><td class=fieldData> more than twice the size of Washington, DC<br /> </td></tr> <tr id=cy><td class=country><a href=../geos/cy.html>Cyprus</td><td class=fieldData> about 0.6 times the size of Connecticut<br /> </td></tr> <tr style="background: #EEEEEE" id="ez"><td class=country><a href=../geos/ez.html>Czech Republic</td><td class=fieldData> slightly smaller than South Carolina<br /> </td></tr> <tr id=da><td class=country><a href=../geos/da.html>Denmark</td><td class=fieldData> slightly less than twice the size of Massachusetts<br /> </td></tr> <tr style="background: #EEEEEE" id="dx"><td class=country><a href=../geos/dx.html>Dhekelia</td><td class=fieldData> about three-quarters the size of Washington, DC<br /> </td></tr> <tr id=dj><td class=country><a href=../geos/dj.html>Djibouti</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr style="background: #EEEEEE" id="do"><td class=country><a href=../geos/do.html>Dominica</td><td class=fieldData> slightly more than four times the size of Washington, DC<br /> </td></tr> <tr id=dr><td class=country><a href=../geos/dr.html>Dominican Republic</td><td class=fieldData> slightly more than twice the size of New Hampshire<br /> </td></tr> <tr style="background: #EEEEEE" id="ec"><td class=country><a href=../geos/ec.html>Ecuador</td><td class=fieldData> slightly smaller than Nevada<br /> </td></tr> <tr id=eg><td class=country><a href=../geos/eg.html>Egypt</td><td class=fieldData> more than eight times the size of Ohio; slightly more than three times the size of New Mexico<br /> </td></tr> <tr style="background: #EEEEEE" id="es"><td class=country><a href=../geos/es.html>El Salvador</td><td class=fieldData> slightly smaller than Massachusetts<br /> </td></tr> <tr id=ek><td class=country><a href=../geos/ek.html>Equatorial Guinea</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="er"><td class=country><a href=../geos/er.html>Eritrea</td><td class=fieldData> slightly larger than Pennsylvania<br /> </td></tr> <tr id=en><td class=country><a href=../geos/en.html>Estonia</td><td class=fieldData> slightly smaller than New Hampshire and Vermont combined<br /> </td></tr> <tr style="background: #EEEEEE" id="et"><td class=country><a href=../geos/et.html>Ethiopia</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr id=ee><td class=country><a href=../geos/ee.html>European Union</td><td class=fieldData> less than one-half the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="fk"><td class=country><a href=../geos/fk.html>Falkland Islands (Islas Malvinas)</td><td class=fieldData> slightly smaller than Connecticut<br /> </td></tr> <tr id=fo><td class=country><a href=../geos/fo.html>Faroe Islands</td><td class=fieldData> eight times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="fj"><td class=country><a href=../geos/fj.html>Fiji</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr id=fi><td class=country><a href=../geos/fi.html>Finland</td><td class=fieldData> slightly smaller than Montana<br /> </td></tr> <tr style="background: #EEEEEE" id="fr"><td class=country><a href=../geos/fr.html>France</td><td class=fieldData> slightly more than four times the size of Georgia; slightly less than the size of Texas<br /> </td></tr> <tr id=fp><td class=country><a href=../geos/fp.html>French Polynesia</td><td class=fieldData> slightly less than one-third the size of Connecticut<br /> </td></tr> <tr style="background: #EEEEEE" id="fs"><td class=country><a href=../geos/fs.html>French Southern and Antarctic Lands</td><td class=fieldData> <strong>Ile Amsterdam (Ile Amsterdam et Ile Saint-Paul): </strong>less than one-half the size of Washington, DC<br /> <strong>Ile Saint-Paul (Ile Amsterdam et Ile Saint-Paul): </strong>more than 10 times the size of The Mall in Washington, DC<br /> <strong>Iles Crozet: </strong>about twice the size of Washington, DC<br /> <strong>Iles Kerguelen: </strong>slightly larger than Delaware<br /> <strong>Bassas da India (Iles Eparses): </strong>land area about one-third the size of The Mall in Washington, DC<br /> <strong>Europa Island (Iles Eparses): </strong>about one-sixth the size of Washington, DC<br /> <strong>Glorioso Islands (Iles Eparses): </strong>about eight times the size of The Mall in Washington, DC<br /> <strong>Juan de Nova Island (Iles Eparses): </strong>about seven times the size of The Mall in Washington, DC<br /> <strong>Tromelin Island (Iles Eparses): </strong>about 1.7 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=gb><td class=country><a href=../geos/gb.html>Gabon</td><td class=fieldData> slightly smaller than Colorado<br /> </td></tr> <tr style="background: #EEEEEE" id="ga"><td class=country><a href=../geos/ga.html>Gambia, The</td><td class=fieldData> slightly less than twice the size of Delaware<br /> </td></tr> <tr id=gz><td class=country><a href=../geos/gz.html>Gaza Strip</td><td class=fieldData> slightly more than twice the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="gg"><td class=country><a href=../geos/gg.html>Georgia</td><td class=fieldData> slightly smaller than South Carolina<br /> </td></tr> <tr id=gm><td class=country><a href=../geos/gm.html>Germany</td><td class=fieldData> three times the size of Pennsylvania; slightly smaller than Montana<br /> </td></tr> <tr style="background: #EEEEEE" id="gh"><td class=country><a href=../geos/gh.html>Ghana</td><td class=fieldData> slightly smaller than Oregon<br /> </td></tr> <tr id=gi><td class=country><a href=../geos/gi.html>Gibraltar</td><td class=fieldData> more than 10 times the size of The National Mall in Washington, D.C.<br /> </td></tr> <tr style="background: #EEEEEE" id="gr"><td class=country><a href=../geos/gr.html>Greece</td><td class=fieldData> slightly smaller than Alabama<br /> </td></tr> <tr id=gl><td class=country><a href=../geos/gl.html>Greenland</td><td class=fieldData> slightly more than three times the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="gj"><td class=country><a href=../geos/gj.html>Grenada</td><td class=fieldData> twice the size of Washington, DC<br /> </td></tr> <tr id=gq><td class=country><a href=../geos/gq.html>Guam</td><td class=fieldData> three times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="gt"><td class=country><a href=../geos/gt.html>Guatemala</td><td class=fieldData> slightly smaller than Pennsylvania<br /> </td></tr> <tr id=gk><td class=country><a href=../geos/gk.html>Guernsey</td><td class=fieldData> about one-half the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="pu"><td class=country><a href=../geos/pu.html>Guinea-Bissau</td><td class=fieldData> slightly less than three times the size of Connecticut<br /> </td></tr> <tr id=gv><td class=country><a href=../geos/gv.html>Guinea</td><td class=fieldData> slightly smaller than Oregon<br /> </td></tr> <tr style="background: #EEEEEE" id="gy"><td class=country><a href=../geos/gy.html>Guyana</td><td class=fieldData> slightly smaller than Idaho<br /> </td></tr> <tr id=ha><td class=country><a href=../geos/ha.html>Haiti</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="hm"><td class=country><a href=../geos/hm.html>Heard Island and McDonald Islands</td><td class=fieldData> slightly more than two times the size of Washington, DC<br /> </td></tr> <tr id=vt><td class=country><a href=../geos/vt.html>Holy See (Vatican City)</td><td class=fieldData> about 0.7 times the size of The National Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="ho"><td class=country><a href=../geos/ho.html>Honduras</td><td class=fieldData> slightly larger than Tennessee<br /> </td></tr> <tr id=hk><td class=country><a href=../geos/hk.html>Hong Kong</td><td class=fieldData> six times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="hq"><td class=country><a href=../geos/hq.html>Howland Island</td><td class=fieldData> about three times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=hu><td class=country><a href=../geos/hu.html>Hungary</td><td class=fieldData> slightly smaller than Indiana<br /> </td></tr> <tr style="background: #EEEEEE" id="ic"><td class=country><a href=../geos/ic.html>Iceland</td><td class=fieldData> slightly smaller than Kentucky<br /> </td></tr> <tr id=in><td class=country><a href=../geos/in.html>India</td><td class=fieldData> slightly more than one-third the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="xo"><td class=country><a href=../geos/xo.html>Indian Ocean</td><td class=fieldData> about 5.5 times the size of the US<br /> </td></tr> <tr id=id><td class=country><a href=../geos/id.html>Indonesia</td><td class=fieldData> slightly less than three times the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="ir"><td class=country><a href=../geos/ir.html>Iran</td><td class=fieldData> almost two and a half times the size of Teas; slightly smaller than Alaska<br /> </td></tr> <tr id=iz><td class=country><a href=../geos/iz.html>Iraq</td><td class=fieldData> slightly more than three times the size of New York state<br /> </td></tr> <tr style="background: #EEEEEE" id="ei"><td class=country><a href=../geos/ei.html>Ireland</td><td class=fieldData> slightly larger than West Virginia<br /> </td></tr> <tr id=im><td class=country><a href=../geos/im.html>Isle of Man</td><td class=fieldData> slightly more than three times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="is"><td class=country><a href=../geos/is.html>Israel</td><td class=fieldData> slightly larger than New Jersey<br /> </td></tr> <tr id=it><td class=country><a href=../geos/it.html>Italy</td><td class=fieldData> almost twice the size of Georgia; slightly larger than Arizona<br /> </td></tr> <tr style="background: #EEEEEE" id="jm"><td class=country><a href=../geos/jm.html>Jamaica</td><td class=fieldData> slightly smaller than Connecticut<br /> </td></tr> <tr id=jn><td class=country><a href=../geos/jn.html>Jan Mayen</td><td class=fieldData> slightly more than twice the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="ja"><td class=country><a href=../geos/ja.html>Japan</td><td class=fieldData> slightly smaller than California<br /> </td></tr> <tr id=dq><td class=country><a href=../geos/dq.html>Jarvis Island</td><td class=fieldData> about eight times the size of The Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="je"><td class=country><a href=../geos/je.html>Jersey</td><td class=fieldData> about two-thirds the size of Washington, DC<br /> </td></tr> <tr id=jq><td class=country><a href=../geos/jq.html>Johnston Atoll</td><td class=fieldData> about 4.7 times the size of The Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="jo"><td class=country><a href=../geos/jo.html>Jordan</td><td class=fieldData> slightly smaller than Indiana<br /> </td></tr> <tr id=kz><td class=country><a href=../geos/kz.html>Kazakhstan</td><td class=fieldData> slightly less than four times the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="ke"><td class=country><a href=../geos/ke.html>Kenya</td><td class=fieldData> five times the size of Ohio; slightly more than twice the size of Nevada<br /> </td></tr> <tr id=kq><td class=country><a href=../geos/kq.html>Kingman Reef</td><td class=fieldData> about 1.7 times the size of The Mall in Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="kr"><td class=country><a href=../geos/kr.html>Kiribati</td><td class=fieldData> four times the size of Washington, DC<br /> </td></tr> <tr id=kn><td class=country><a href=../geos/kn.html>Korea, North</td><td class=fieldData> slightly larger than Virginia; slightly smaller than Mississippi<br /> </td></tr> <tr style="background: #EEEEEE" id="ks"><td class=country><a href=../geos/ks.html>Korea, South</td><td class=fieldData> slightly smaller than Pennsylvania; slightly larger than Indiana<br /> </td></tr> <tr id=kv><td class=country><a href=../geos/kv.html>Kosovo</td><td class=fieldData> slightly larger than Delaware<br /> </td></tr> <tr style="background: #EEEEEE" id="ku"><td class=country><a href=../geos/ku.html>Kuwait</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr id=kg><td class=country><a href=../geos/kg.html>Kyrgyzstan</td><td class=fieldData> slightly smaller than South Dakota<br /> </td></tr> <tr style="background: #EEEEEE" id="la"><td class=country><a href=../geos/la.html>Laos</td><td class=fieldData> slightly larger than Utah<br /> </td></tr> <tr id=lg><td class=country><a href=../geos/lg.html>Latvia</td><td class=fieldData> slightly larger than West Virginia<br /> </td></tr> <tr style="background: #EEEEEE" id="le"><td class=country><a href=../geos/le.html>Lebanon</td><td class=fieldData> about one-third the size of Maryland<br /> </td></tr> <tr id=lt><td class=country><a href=../geos/lt.html>Lesotho</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="li"><td class=country><a href=../geos/li.html>Liberia</td><td class=fieldData> slightly larger than Tennessee<br /> </td></tr> <tr id=ly><td class=country><a href=../geos/ly.html>Libya</td><td class=fieldData> about 2.5 times the size of Texas; slightly larger than Alaska<br /> </td></tr> <tr style="background: #EEEEEE" id="ls"><td class=country><a href=../geos/ls.html>Liechtenstein</td><td class=fieldData> about 0.9 times the size of Washington, DC<br /> </td></tr> <tr id=lh><td class=country><a href=../geos/lh.html>Lithuania</td><td class=fieldData> slightly larger than West Virginia<br /> </td></tr> <tr style="background: #EEEEEE" id="lu"><td class=country><a href=../geos/lu.html>Luxembourg</td><td class=fieldData> slightly smaller than Rhode Island<br /> </td></tr> <tr id=mc><td class=country><a href=../geos/mc.html>Macau</td><td class=fieldData> less than one-sixth the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="mk"><td class=country><a href=../geos/mk.html>Macedonia</td><td class=fieldData> slightly larger than Vermont<br /> </td></tr> <tr id=ma><td class=country><a href=../geos/ma.html>Madagascar</td><td class=fieldData> slightly less than twice the size of Arizona<br /> </td></tr> <tr style="background: #EEEEEE" id="mi"><td class=country><a href=../geos/mi.html>Malawi</td><td class=fieldData> slightly smaller than Pennsylvania<br /> </td></tr> <tr id=my><td class=country><a href=../geos/my.html>Malaysia</td><td class=fieldData> slightly larger than New Mexico<br /> </td></tr> <tr style="background: #EEEEEE" id="mv"><td class=country><a href=../geos/mv.html>Maldives</td><td class=fieldData> about 1.7 times the size of Washington, DC<br /> </td></tr> <tr id=ml><td class=country><a href=../geos/ml.html>Mali</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="mt"><td class=country><a href=../geos/mt.html>Malta</td><td class=fieldData> slightly less than twice the size of Washington, DC<br /> </td></tr> <tr id=rm><td class=country><a href=../geos/rm.html>Marshall Islands</td><td class=fieldData> about the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="mr"><td class=country><a href=../geos/mr.html>Mauritania</td><td class=fieldData> slightly larger than three times the size of New Mexico<br /> </td></tr> <tr id=mp><td class=country><a href=../geos/mp.html>Mauritius</td><td class=fieldData> almost 11 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="mx"><td class=country><a href=../geos/mx.html>Mexico</td><td class=fieldData> slightly less than three times the size of Texas<br /> </td></tr> <tr id=fm><td class=country><a href=../geos/fm.html>Micronesia, Federated States of</td><td class=fieldData> four times the size of Washington, DC (land area only)<br /> </td></tr> <tr style="background: #EEEEEE" id="mq"><td class=country><a href=../geos/mq.html>Midway Islands</td><td class=fieldData> about nine times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=md><td class=country><a href=../geos/md.html>Moldova</td><td class=fieldData> slightly larger than Maryland<br /> </td></tr> <tr style="background: #EEEEEE" id="mn"><td class=country><a href=../geos/mn.html>Monaco</td><td class=fieldData> about three times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=mg><td class=country><a href=../geos/mg.html>Mongolia</td><td class=fieldData> slightly smaller than Alaska<br /> </td></tr> <tr style="background: #EEEEEE" id="mj"><td class=country><a href=../geos/mj.html>Montenegro</td><td class=fieldData> slightly smaller than Connecticut<br /> </td></tr> <tr id=mh><td class=country><a href=../geos/mh.html>Montserrat</td><td class=fieldData> about 0.6 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="mo"><td class=country><a href=../geos/mo.html>Morocco</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr id=mz><td class=country><a href=../geos/mz.html>Mozambique</td><td class=fieldData> slightly less than twice the size of California<br /> </td></tr> <tr style="background: #EEEEEE" id="wa"><td class=country><a href=../geos/wa.html>Namibia</td><td class=fieldData> slightly more than half the size of Alaska<br /> </td></tr> <tr id=nr><td class=country><a href=../geos/nr.html>Nauru</td><td class=fieldData> about 0.1 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="bq"><td class=country><a href=../geos/bq.html>Navassa Island</td><td class=fieldData> about nine times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=np><td class=country><a href=../geos/np.html>Nepal</td><td class=fieldData> slightly larger than Arkansas<br /> </td></tr> <tr style="background: #EEEEEE" id="nl"><td class=country><a href=../geos/nl.html>Netherlands</td><td class=fieldData> slightly less than twice the size of New Jersey<br /> </td></tr> <tr id=nc><td class=country><a href=../geos/nc.html>New Caledonia</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr style="background: #EEEEEE" id="nz"><td class=country><a href=../geos/nz.html>New Zealand</td><td class=fieldData> almost twice the size of North Carolina; about the size of Colorado<br /> </td></tr> <tr id=nu><td class=country><a href=../geos/nu.html>Nicaragua</td><td class=fieldData> slightly larger than Pennsylvania; slightly smaller than New York state<br /> </td></tr> <tr style="background: #EEEEEE" id="ni"><td class=country><a href=../geos/ni.html>Nigeria</td><td class=fieldData> slightly more than twice the size of California<br /> </td></tr> <tr id=ng><td class=country><a href=../geos/ng.html>Niger</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="ne"><td class=country><a href=../geos/ne.html>Niue</td><td class=fieldData> 1.5 times the size of Washington, DC<br /> </td></tr> <tr id=nf><td class=country><a href=../geos/nf.html>Norfolk Island</td><td class=fieldData> about 0.2 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="cq"><td class=country><a href=../geos/cq.html>Northern Mariana Islands</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr id=no><td class=country><a href=../geos/no.html>Norway</td><td class=fieldData> slightly larger than New Mexico<br /> </td></tr> <tr style="background: #EEEEEE" id="mu"><td class=country><a href=../geos/mu.html>Oman</td><td class=fieldData> slightly smaller than Kansas<br /> </td></tr> <tr id=zn><td class=country><a href=../geos/zn.html>Pacific Ocean</td><td class=fieldData> about 15 times the size of the US; covers about 28% of the global surface; almost equal to the total land area of the world<br /> </td></tr> <tr style="background: #EEEEEE" id="pk"><td class=country><a href=../geos/pk.html>Pakistan</td><td class=fieldData> slightly more than five times the size of Georgia; slightly less than twice the size of California<br /> </td></tr> <tr id=ps><td class=country><a href=../geos/ps.html>Palau</td><td class=fieldData> slightly more than 2.5 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="lq"><td class=country><a href=../geos/lq.html>Palmyra Atoll</td><td class=fieldData> about 20 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=pm><td class=country><a href=../geos/pm.html>Panama</td><td class=fieldData> slightly smaller than South Carolina<br /> </td></tr> <tr style="background: #EEEEEE" id="pp"><td class=country><a href=../geos/pp.html>Papua New Guinea</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr id=pf><td class=country><a href=../geos/pf.html>Paracel Islands</td><td class=fieldData> NA<br /> </td></tr> <tr style="background: #EEEEEE" id="pa"><td class=country><a href=../geos/pa.html>Paraguay</td><td class=fieldData> slightly smaller than California<br /> </td></tr> <tr id=pe><td class=country><a href=../geos/pe.html>Peru</td><td class=fieldData> slightly smaller than Alaska<br /> </td></tr> <tr style="background: #EEEEEE" id="rp"><td class=country><a href=../geos/rp.html>Philippines</td><td class=fieldData> slightly less than twice the size of Georgia; slightly larger than Arizona<br /> </td></tr> <tr id=pc><td class=country><a href=../geos/pc.html>Pitcairn Islands</td><td class=fieldData> about three tenths the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="pl"><td class=country><a href=../geos/pl.html>Poland</td><td class=fieldData> slightly smaller than New Mexico<br /> </td></tr> <tr id=po><td class=country><a href=../geos/po.html>Portugal</td><td class=fieldData> slightly smaller than Indiana<br /> </td></tr> <tr style="background: #EEEEEE" id="rq"><td class=country><a href=../geos/rq.html>Puerto Rico</td><td class=fieldData> slightly less than three times the size of Rhode Island<br /> </td></tr> <tr id=qa><td class=country><a href=../geos/qa.html>Qatar</td><td class=fieldData> slightly smaller than Connecticut<br /> </td></tr> <tr style="background: #EEEEEE" id="ro"><td class=country><a href=../geos/ro.html>Romania</td><td class=fieldData> slightly smaller than Oregon<br /> </td></tr> <tr id=rs><td class=country><a href=../geos/rs.html>Russia</td><td class=fieldData> approximately 1.8 times the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="rw"><td class=country><a href=../geos/rw.html>Rwanda</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr id=tb><td class=country><a href=../geos/tb.html>Saint Barthelemy</td><td class=fieldData> less than an eighth of the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="sh"><td class=country><a href=../geos/sh.html>Saint Helena, Ascension, and Tristan da Cunha</td><td class=fieldData> slightly more than twice the size of Washington, DC<br /> </td></tr> <tr id=sc><td class=country><a href=../geos/sc.html>Saint Kitts and Nevis</td><td class=fieldData> one and a half times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="st"><td class=country><a href=../geos/st.html>Saint Lucia</td><td class=fieldData> three and a half times the size of Washington, DC<br /> </td></tr> <tr id=rn><td class=country><a href=../geos/rn.html>Saint Martin</td><td class=fieldData> more than one-third the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="sb"><td class=country><a href=../geos/sb.html>Saint Pierre and Miquelon</td><td class=fieldData> one and half times the size of Washington, DC<br /> </td></tr> <tr id=vc><td class=country><a href=../geos/vc.html>Saint Vincent and the Grenadines</td><td class=fieldData> twice the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="ws"><td class=country><a href=../geos/ws.html>Samoa</td><td class=fieldData> slightly smaller than Rhode Island<br /> </td></tr> <tr id=sm><td class=country><a href=../geos/sm.html>San Marino</td><td class=fieldData> about one third times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="tp"><td class=country><a href=../geos/tp.html>Sao Tome and Principe</td><td class=fieldData> more than five times the size of Washington, DC<br /> </td></tr> <tr id=sa><td class=country><a href=../geos/sa.html>Saudi Arabia</td><td class=fieldData> slightly more than one-fifth the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="sg"><td class=country><a href=../geos/sg.html>Senegal</td><td class=fieldData> slightly smaller than South Dakota<br /> </td></tr> <tr id=ri><td class=country><a href=../geos/ri.html>Serbia</td><td class=fieldData> slightly smaller than South Carolina<br /> </td></tr> <tr style="background: #EEEEEE" id="se"><td class=country><a href=../geos/se.html>Seychelles</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr id=sl><td class=country><a href=../geos/sl.html>Sierra Leone</td><td class=fieldData> slightly smaller than South Carolina<br /> </td></tr> <tr style="background: #EEEEEE" id="sn"><td class=country><a href=../geos/sn.html>Singapore</td><td class=fieldData> slightly more than 3.5 times the size of Washington, DC<br /> </td></tr> <tr id=sk><td class=country><a href=../geos/sk.html>Sint Maarten</td><td class=fieldData> one-fifth the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="lo"><td class=country><a href=../geos/lo.html>Slovakia</td><td class=fieldData> about twice the size of New Hampshire<br /> </td></tr> <tr id=si><td class=country><a href=../geos/si.html>Slovenia</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr style="background: #EEEEEE" id="bp"><td class=country><a href=../geos/bp.html>Solomon Islands</td><td class=fieldData> slightly smaller than Maryland<br /> </td></tr> <tr id=so><td class=country><a href=../geos/so.html>Somalia</td><td class=fieldData> almost five times the size of Alabama; slightly smaller than Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="sf"><td class=country><a href=../geos/sf.html>South Africa</td><td class=fieldData> slightly less than twice the size of Texas<br /> </td></tr> <tr id=oo><td class=country><a href=../geos/oo.html>Southern Ocean</td><td class=fieldData> slightly more than twice the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="sx"><td class=country><a href=../geos/sx.html>South Georgia and South Sandwich Islands</td><td class=fieldData> slightly larger than Rhode Island<br /> </td></tr> <tr id=od><td class=country><a href=../geos/od.html>South Sudan</td><td class=fieldData> slightly smaller than Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="sp"><td class=country><a href=../geos/sp.html>Spain</td><td class=fieldData> almost five times the size of Kentucky; slightly more than twice the size of Oregon<br /> </td></tr> <tr id=pg><td class=country><a href=../geos/pg.html>Spratly Islands</td><td class=fieldData> NA<br /> </td></tr> <tr style="background: #EEEEEE" id="ce"><td class=country><a href=../geos/ce.html>Sri Lanka</td><td class=fieldData> slightly larger than West Virginia<br /> </td></tr> <tr id=su><td class=country><a href=../geos/su.html>Sudan</td><td class=fieldData> slightly less than one-fifth the size of the US<br /> </td></tr> <tr style="background: #EEEEEE" id="ns"><td class=country><a href=../geos/ns.html>Suriname</td><td class=fieldData> slightly larger than Georgia<br /> </td></tr> <tr id=sv><td class=country><a href=../geos/sv.html>Svalbard</td><td class=fieldData> slightly smaller than West Virginia<br /> </td></tr> <tr style="background: #EEEEEE" id="wz"><td class=country><a href=../geos/wz.html>Swaziland</td><td class=fieldData> slightly smaller than New Jersey<br /> </td></tr> <tr id=sw><td class=country><a href=../geos/sw.html>Sweden</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr style="background: #EEEEEE" id="sz"><td class=country><a href=../geos/sz.html>Switzerland</td><td class=fieldData> slightly less than twice the size of New Jersey<br /> </td></tr> <tr id=sy><td class=country><a href=../geos/sy.html>Syria</td><td class=fieldData> slightly more than 1.5 times the size of Pennsylvania<br /> </td></tr> <tr style="background: #EEEEEE" id="tw"><td class=country><a href=../geos/tw.html>Taiwan</td><td class=fieldData> slightly smaller than Maryland and Delaware combined<br /> </td></tr> <tr id=ti><td class=country><a href=../geos/ti.html>Tajikistan</td><td class=fieldData> slightly smaller than Wisconsin<br /> </td></tr> <tr style="background: #EEEEEE" id="tz"><td class=country><a href=../geos/tz.html>Tanzania</td><td class=fieldData> slightly larger than twice the size of California<br /> </td></tr> <tr id=th><td class=country><a href=../geos/th.html>Thailand</td><td class=fieldData> slightly more than twice the size of Wyoming<br /> </td></tr> <tr style="background: #EEEEEE" id="tt"><td class=country><a href=../geos/tt.html>Timor-Leste</td><td class=fieldData> slightly larger than Connecticut<br /> </td></tr> <tr id=to><td class=country><a href=../geos/to.html>Togo</td><td class=fieldData> slightly smaller than West Virginia<br /> </td></tr> <tr style="background: #EEEEEE" id="tl"><td class=country><a href=../geos/tl.html>Tokelau</td><td class=fieldData> about 17 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=tn><td class=country><a href=../geos/tn.html>Tonga</td><td class=fieldData> four times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="td"><td class=country><a href=../geos/td.html>Trinidad and Tobago</td><td class=fieldData> slightly smaller than Delaware<br /> </td></tr> <tr id=ts><td class=country><a href=../geos/ts.html>Tunisia</td><td class=fieldData> slightly larger than Georgia<br /> </td></tr> <tr style="background: #EEEEEE" id="tu"><td class=country><a href=../geos/tu.html>Turkey</td><td class=fieldData> slightly larger than Texas<br /> </td></tr> <tr id=tx><td class=country><a href=../geos/tx.html>Turkmenistan</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr style="background: #EEEEEE" id="tk"><td class=country><a href=../geos/tk.html>Turks and Caicos Islands</td><td class=fieldData> 2.5 times the size of Washington, DC<br /> </td></tr> <tr id=tv><td class=country><a href=../geos/tv.html>Tuvalu</td><td class=fieldData> 0.1 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="ug"><td class=country><a href=../geos/ug.html>Uganda</td><td class=fieldData> slightly smaller than Oregon<br /> </td></tr> <tr id=up><td class=country><a href=../geos/up.html>Ukraine</td><td class=fieldData> almost four times the size of Georgia; slightly smaller than Texas<br /> </td></tr> <tr style="background: #EEEEEE" id="ae"><td class=country><a href=../geos/ae.html>United Arab Emirates</td><td class=fieldData> slightly smaller than Maine<br /> </td></tr> <tr id=uk><td class=country><a href=../geos/uk.html>United Kingdom</td><td class=fieldData> twice the size of Pennsylvania; slightly smaller than Oregon<br /> </td></tr> <tr style="background: #EEEEEE" id="um"><td class=country><a href=../geos/um.html>United States Pacific Island Wildlife Refuges</td><td class=fieldData> <strong>Baker Island: </strong>about two and a half times the size of The Mall in Washington, DC<br /> <strong>Howland Island: </strong>about three times the size of The Mall in Washington, DC<br /> <strong>Jarvis Island: </strong>about eight times the size of The Mall in Washington, DC<br /> <strong>Johnston Atoll: </strong>about four and a half times the size of The Mall in Washington, DC<br /> <strong>Kingman Reef: </strong>a little more than one and a half times the size of The Mall in Washington, DC<br /> <strong>Midway Islands: </strong>about nine times the size of The Mall in Washington, DC<br /> <strong>Palmyra Atoll: </strong>about 20 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=us><td class=country><a href=../geos/us.html>United States</td><td class=fieldData> about half the size of Russia; about three-tenths the size of Africa; about half the size of South America (or slightly larger than Brazil); slightly larger than China; more than twice the size of the European Union<br /> </td></tr> <tr style="background: #EEEEEE" id="uy"><td class=country><a href=../geos/uy.html>Uruguay</td><td class=fieldData> slightly smaller than the state of Washington<br /> </td></tr> <tr id=uz><td class=country><a href=../geos/uz.html>Uzbekistan</td><td class=fieldData> slightly larger than California<br /> </td></tr> <tr style="background: #EEEEEE" id="nh"><td class=country><a href=../geos/nh.html>Vanuatu</td><td class=fieldData> slightly larger than Connecticut<br /> </td></tr> <tr id=ve><td class=country><a href=../geos/ve.html>Venezuela</td><td class=fieldData> almost six times the size of Georgia; slightly more than twice the size of California<br /> </td></tr> <tr style="background: #EEEEEE" id="vm"><td class=country><a href=../geos/vm.html>Vietnam</td><td class=fieldData> slightly larger than New Mexico<br /> </td></tr> <tr id=vq><td class=country><a href=../geos/vq.html>Virgin Islands</td><td class=fieldData> twice the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="wq"><td class=country><a href=../geos/wq.html>Wake Island</td><td class=fieldData> about 11 times the size of The Mall in Washington, DC<br /> </td></tr> <tr id=wf><td class=country><a href=../geos/wf.html>Wallis and Futuna</td><td class=fieldData> 1.5 times the size of Washington, DC<br /> </td></tr> <tr style="background: #EEEEEE" id="we"><td class=country><a href=../geos/we.html>West Bank</td><td class=fieldData> slightly smaller than Delaware<br /> </td></tr> <tr id=wi><td class=country><a href=../geos/wi.html>Western Sahara</td><td class=fieldData> about the size of Colorado<br /> </td></tr> <tr style="background: #EEEEEE" id="xx"><td class=country><a href=../geos/xx.html>World</td><td class=fieldData> land area about 16 times the size of the US<br /> <strong>top fifteen World Factbook entities ranked by size: </strong>Pacific Ocean 155.557 million sq km; Atlantic Ocean 76.762 million sq km; Indian Ocean 68.556 million sq km; Southern Ocean 20.327 million sq km; Russia 17,098,242 sq km; Arctic Ocean 14.056 million sq km; Antarctica 14 million sq km; Canada 9,984,670 sq km; United States 9,826,675 sq km; China 9,596,961 sq km; Brazil 8,514,877 sq km; Australia 7,741,220 sq km; European Union 4,324,782 sq km; India 3,287,263 sq km; Argentina 2,780,400 sq km<br /> <strong>top ten largest water bodies: </strong>Pacific Ocean 155.557 million sq km; Atlantic Ocean 76.762 million sq km; Indian Ocean 68.556 million sq km; Southern Ocean 20.327 million sq km; Arctic Ocean 14.056 million sq km; Coral Sea 4,184,100 sq km; South China Sea 3,595,900 sq km; Caribbean Sea 2.834 million sq km; Bering Sea 2.52 million sq km; Mediterranean Sea 2.469 million sq km<br /> <strong>top ten largest landmasses: </strong>Asia 44,568,500 sq km; Africa 30.065 million sq km; North America 24.473 million sq km; South America 17.819 million sq km; Antarctica 14 million sq km; Europe 9.948 million sq km; Australia 7,741,220 sq km; Greenland 2,166,086 sq km; New Guinea 785,753 sq km; Borneo 751,929 sq km<br /> <strong>top ten largest islands: </strong>Greenland 2,166,086 sq km; New Guinea (Indonesia, Papua New Guinea) 785,753 sq km; Borneo (Brunei, Indonesia, Malaysia) 751,929 sq km; Madagascar 587,713 sq km; Baffin Island (Canada) 507,451 sq km; Sumatra (Indonesia) 472,784 sq km; Honshu (Japan) 227,963 sq km; Victoria Island (Canada) 217,291 sq km; Great Britain (United Kingdom) 209,331 sq km; Ellesmere Island (Canada) 196,236 sq km<br /> </td></tr> <tr id=ym><td class=country><a href=../geos/ym.html>Yemen</td><td class=fieldData> almost four times the size of Alabama; slightly larger than twice the size of Wyoming<br /> </td></tr> <tr style="background: #EEEEEE" id="za"><td class=country><a href=../geos/za.html>Zambia</td><td class=fieldData> slightly larger than Texas<br /> </td></tr> <tr id=zi><td class=country><a href=../geos/zi.html>Zimbabwe</td><td class=fieldData> slightly larger than Montana<br /> </td></tr> </tbody> </table> </div> </article> </div> </div> </section> <footer id="footer"><span class="divider"></span> <a href="#" class="logo-2"><img src="../images/logo-2.png" alt="Central Intelligence Agency"></a> <div class="footer-holder"> <div class="footer-frame"> <nav class="footer-nav"><div class="info-block"> <h3><a href="/about-cia">About CIA</a></h3> <ul><li> <a href="/about-cia/todays-cia">Today's CIA</a> </li> <li> <a href="/about-cia/leadership">Leadership</a> </li> <li> <a href="/about-cia/cia-vision-mission-values">CIA Vision, Mission &amp; Values</a> </li> <li> <a href="/about-cia/headquarters-tour">Headquarters Tour</a> </li> <li> <a href="/about-cia/cia-museum">CIA Museum</a> </li> <li> <a href="/about-cia/history-of-the-cia">History of the CIA</a> </li> <li> <a href="/about-cia/faqs">FAQs</a> </li> <li> <a href="/about-cia/no-fear-act">NoFEAR Act</a> </li> <li> <a href="/about-cia/site-policies">Site Policies</a> </li> </ul></div> <div class="info-block"> <h3><a href="/careers">Careers &amp; Internships</a></h3> <ul><li> <a href="/careers/opportunities">Career Opportunities </a> </li> <li> <a href="/careers/student-opportunities">Student Opportunities</a> </li> <li> <a href="/careers/application-process">Application Process</a> </li> <li> <a href="/careers/life-at-cia">Life at CIA</a> </li> <li> <a href="/careers/diversity">Diversity</a> </li> <li> <a href="/careers/military-transition">Military Transition</a> </li> <li> <a href="/careers/games-information">Diversions &amp; Information</a> </li> <li> <a href="/careers/faq">FAQs</a> </li> </ul><h3><a href="/offices-of-cia">Offices of CIA</a></h3> <ul><li> <a href="/offices-of-cia/intelligence-analysis">Intelligence &amp; Analysis</a> </li> <li> <a href="/offices-of-cia/clandestine-service">Clandestine Service</a> </li> <li> <a href="/offices-of-cia/science-technology">Science &amp; Technology</a> </li> <li> <a href="/offices-of-cia/mission-support">Support to Mission</a> </li> <li> <a href="/offices-of-cia/human-resources">Human Resources</a> </li> <li> <a href="/offices-of-cia/public-affairs">Public Affairs</a> </li> <li> <a href="/offices-of-cia/general-counsel">General Counsel</a> </li> <li> <a href="/offices-of-cia/equal-employment-opportunity">Equal Employment Opportunity</a> </li> <li> <a href="/offices-of-cia/congressional-affairs">Congressional Affairs</a> </li> <li> <a href="/offices-of-cia/inspector-general">Inspector General</a> </li> <li> <a href="/offices-of-cia/military-affairs">Military Affairs</a> </li> </ul></div> <div class="info-block"> <h3><a href="/news-information">News &amp; Information</a></h3> <ul><li> <a href="/news-information/press-releases-statements">Press Releases &amp; Statements</a> </li> <li> <a href="/news-information/speeches-testimony">Speeches &amp; Testimony</a> </li> <li> <a href="/news-information/cia-the-war-on-terrorism">CIA &amp; the War on Terrorism</a> </li> <li> <a href="/news-information/featured-story-archive">Featured Story Archive</a> </li> <li> <a href="/news-information/Whats-New-on-CIAgov">What&#8217;s New Archive</a> </li> <li> <a href="/news-information/your-news">Your News</a> </li> </ul><h3><a href="/library">Library</a></h3> <ul><li> <a href="/library/publications">Publications</a> </li> <li> <a href="/library/center-for-the-study-of-intelligence">Center for the Study of Intelligence</a> </li> <li> <a href="/library/foia">Freedom of Information Act Electronic Reading Room</a> </li> <li> <a href="/library/kent-center-occasional-papers">Kent Center Occasional Papers</a> </li> <li> <a href="/library/intelligence-literature">Intelligence Literature</a> </li> <li> <a href="/library/reports">Reports</a> </li> <li> <a href="/library/related-links.html">Related Links</a> </li> <li> <a href="/library/video-center">Video Center</a> </li> </ul></div> <div class="info-block add"> <h3><a href="/kids-page">Kids' Zone</a></h3> <ul><li> <a href="/kids-page/k-5th-grade">K-5th Grade</a> </li> <li> <a href="/kids-page/6-12th-grade">6-12th Grade</a> </li> <li> <a href="/kids-page/parents-teachers">Parents &amp; Teachers</a> </li> <li> <a href="/kids-page/games">Games</a> </li> <li> <a href="/kids-page/related-links">Related Links</a> </li> <li> <a href="/kids-page/privacy-statement">Privacy Statement</a> </li> </ul><h3><a href="/contact-cia">Connect with CIA</a></h3> <ul class="socials-list"><li><a href="http://www.youtube.com/user/ciagov">CIA YouTube</a></li> <li><a class="social-2" href="http://www.flickr.com/photos/ciagov">CIA Flickr PhotoStream</a></li> <li><a class="social-3" href="/news-information/your-news">RSS</a></li> <li><a class="social-4" href="/contact-cia">Contact Us</a></li> </ul></div> </nav><div id="plugins" class="info-panel"> <h4>* Required plugins</h4> <ul><li data-plugin="swf"><a href="http://get.adobe.com/flashplayer/">Adobe&#174; Flash Player</a></li> <li data-plugin="pdf"><a href="http://get.adobe.com/reader/">Adobe&#174; Reader&#174;</a></li> <li data-plugin="doc"><a href="http://www.microsoft.com/en-us/download/details.aspx?id=4">MS Word Viewer</a></li> </ul></div> </div> </div> </footer> </div> <div class="footer-panel" style="width: 990px;" align="center"> <nav class="sub-nav" style="width: 100%; text-align: center;" > <h3 class="visuallyhidden">Footer Navigation</h3> <ul> <li><a href="/about-cia/site-policies/#privacy-notice" title="Site Policies">Privacy</a></li> <li><a href="/about-cia/site-policies/#copy" title="Site Policies">Copyright</a></li> <li><a href="/about-cia/site-policies/" title="Site Policies">Site Policies</a></li> <li><a href="http://www.usa.gov/">USA.gov</a></li> <li><a href="http://www.foia.cia.gov/">FOIA</a></li> <li><a href="http://www.dni.gov/">DNI.gov</a></li> <li><a href="/about-cia/no-fear-act/" title="No FEAR Act">NoFEAR Act</a></li> <li><a href="/offices-of-cia/inspector-general/">Inspector General</a></li> <li><a href="/mobile/">Mobile Site</a></li> <li><a href="/contact-cia/">Contact CIA</a></li> <li><a href="/sitemap.html">Site Map</a></li> </ul> <div style="width: 100%;" align="center"><a href="/open/" ><img src="../images/ico-06.png" width="101" height="24" alt="open gov"></a></div> </nav> </div> <a href="#" class="go-top">GO TOP</a> <script> $(document).ready(function() { // Show or hide the sticky footer button $(window).scroll(function() { if ($(this).scrollTop() > 350) { $('.go-top').fadeIn(100); } else { $('.go-top').fadeOut(100); } }); // Animate the scroll to top $('.go-top').click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop: 350}, 300); }) }); </script> </body> <!-- InstanceEnd --></html>
example/index.html
evangilo/light-datepicker
<!DOCTYPE html> <html> <head> <title>DatePicker</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="/datepicker.min.css"> </head> <body> <div class="container"> <div class="jumbotron"> <h1>DatePicker</h1> <div class="container"> <div class="row"> <div class="form-group"> <label>DatePicker</label> <div class="input-group col-sm-2"> <input class="form-control" type="text" id="datepicker"> <span class="input-group-addon"> <span class="glyphicon glyphicon-calendar"></span> </span> </div> </div> </div> <div class="row"> <div class="form-group"> <label>DatePickerRange</label> <div class="form-inline"> <div class="input-group col-sm-2"> <input class="form-control" type="text" id="left-datepicker"> <span class="input-group-addon"> <span class="glyphicon glyphicon-calendar"></span> </span> </div> <div class="input-group col-sm-2"> <input class="form-control" type="text" id="right-datepicker"> <span class="input-group-addon"> <span class="glyphicon glyphicon-calendar"></span> </span> </div> </div> </div> </div> </div> </div> </div> <script src="/datepicker.min.js"></script> <script src="index.js"></script> </body> </html>
spec/values/maps/set-nth/expected_output.css
xzyfer/sass-spec
a { b: aaa 100, ddd 220, ccc 300; b: bbb 200; b: 2; b: list; b: bbb; b: 200; c: aaa 100, ddd 240, ccc 300; c: bbb 200; c: 2; c: list; c: bbb; c: 200; d: aaa 100, ddd, 260, ccc 300; d: bbb 200; d: 2; d: list; d: bbb; d: 200; }
SignalX.SignalXUI/ui/css/styles.css
signalx/dev
.navbar-static-top { margin-bottom: 20px; } i { font-size: 18px; } footer { background-color: #efefef; margin-top: 20px; padding-bottom: 20px; padding-top: 20px; } .nav > li .count { -moz-border-radius: 10px; -ms-border-radius: 10px; -o-border-radius: 10px; -webkit-border-radius: 10px; background: rgba(41, 200, 41, 0.75); border-radius: 10px; color: rgb(255, 255, 255); font-size: 10px; font-weight: normal; line-height: 1em; padding: 2px 4px; position: absolute; right: 25%; top: 10%; }
_site/articles/index.html
srussell123/srussell123.github.io
<meta charset="utf-8"> <title>Articles &#8211; Balzac</title> <meta name="description" content=""> <meta name="keywords" content="blog, graphic design"> <meta property="og:locale" content="en_US"> <meta property="og:title" content="Articles &#8211; Balzac"> <meta property="og:description" content=""> <meta property="og:url" content="http://jekyll.gtat.me/articles/index.html"> <meta property="og:site_name" content="Balzac"> <link href="http://jekyll.gtat.me/feed.xml" type="application/atom+xml" rel="alternate" title="Balzac Feed"> <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Type --> <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Crimson+Text:400,400italic,700,700italic" rel='stylesheet' type='text/css' /> <link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel='stylesheet' type='text/css'> <link rel="stylesheet" href="http://jekyll.gtat.me/assets/css/entypo.css" media="all"> <!-- In order to use Calendas Plus, you must first purchase it. Then, create a font-face package using FontSquirrel. <link rel='stylesheet' href='http://jekyll.gtat.me/assets/cal.css' media='all' /> --> <!-- For all browsers --> <link rel="stylesheet" href="http://jekyll.gtat.me/assets/css/i.css"> <!-- Fresh Squeezed jQuery --> <script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <meta http-equiv="cleartype" content="on"> <!-- Load Modernizr --> <script src="http://jekyll.gtat.me/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script> <!-- Icons --> <!-- 16x16 --> <link rel="shortcut icon" href="http://jekyll.gtat.me/favicon.ico"> <div id="bump"> <body class=""> <header class="site-header darken"> <div class="wrap"> <hgroup> <h1><a href="/">Balzac</a></h1> </hgroup> <a href="#nav" class="menu"><span class='icons'>☰</span></a> <nav role="navigation"> <ul> <li> <a href="/" title="Balzac">Home</a> </li> <li><a href="http://jekyll.gtat.me/about" >About</a></li> <li><a href="https://github.com/ColeTownsend/Balzac-for-Jekyll" target="_blank">Github</a></li> <li><a href="http://coletownsend.com" target="_blank">Cole Who?</a></li> </ul> </nav> </div> </header> <div id='bump'> <section class="article archive"> <article class="archive-wrap"> <ol class="post-list"> <lh><h2><span class="bb">Articles</span></h2></lh> <li> <div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> <h1><a href="http://jekyll.gtat.me/articles/test-post">Test Post</a></h1> <p class="date"><time datetime="2013-08-17T00:00:00-04:00" itemprop="datePublished">August 17, 2013</time></p> <p class="">Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schli...</p> </div> </li> <li> <div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> <h1><a href="http://jekyll.gtat.me/articles/the-little-prince">Image in Post</a></h1> <p class="date"><time datetime="2013-08-05T00:00:00-04:00" itemprop="datePublished">August 05, 2013</time></p> <p class="">Once when I was six years old I saw a magnificent picture in a book, called True Stories from Nature, about the primev...</p> </div> </li> <li> <div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> <h1><a href="http://jekyll.gtat.me/articles/post-with-figure">Post with Figure</a></h1> <p class="date"><time datetime="2013-08-05T00:00:00-04:00" itemprop="datePublished">August 05, 2013</time></p> <p class="">Examples and code for displaying images in posts.</p> </div> </li> <li> <div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> <h1><a href="http://jekyll.gtat.me/articles/post-with-feature">Post and Feature Image</a></h1> <p class="date"><time datetime="2013-08-05T00:00:00-04:00" itemprop="datePublished">August 05, 2013</time></p> <p class="">In my younger and more vulnerable years my father gave me some advice that I’ve been turning over in my mind ever since.</p> </div> </li> <li> <div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost"> <h1><a href="http://jekyll.gtat.me/articles/longform-post">A Longform Post to Cogitate</a></h1> <p class="date"><time datetime="2013-08-05T00:00:00-04:00" itemprop="datePublished">August 05, 2013</time></p> <p class="">Portland in shoreditch Vice, labore typewriter pariatur hoodie fap sartorial Austin. Pinterest literally occupy Schli...</p> </div> </li> </ol> </article> </section> </div> <div class="push"></div> <footer> <aside class="wrap"> <ol class="prev-posts"> <p class="list-title">Recent Posts</p> <!-- for1 --> <li> <span class="recent-title"><a href="http://jekyll.gtat.me/articles/test-post" title="Test Post">Test Post </a></span> <span class="date">Aug 17, 2013</span> </li> <!-- for1 --> <li> <span class="recent-title"><a href="http://jekyll.gtat.me/articles/the-little-prince" title="Image in Post">Image in Post </a></span> <span class="date">Aug 05, 2013</span> </li> <!-- for1 --> <li> <span class="recent-title"><a href="http://jekyll.gtat.me/articles/post-with-figure" title="Post with Figure">Post with Figure </a></span> <span class="date">Aug 05, 2013</span> </li> </ol> <div class="social"> <ul> <li><a id="mail" href="mailto:cole@coletownsend.com"><span class="foot-link">Contact Me</span></a></li> <li><a id="twit" href="http://twitter.com/twnsndco" target="_blank"><span class="foot-link">@twnsndco</span></a></li> <li><a id="drib" href="http://dribbble.com/coletownsend" target="_blank"><span class="foot-link">Dribbble</span></a></li> </ul> </div> </aside> <small>&copy; 2014 Cole Townsend. Powered by <a href="http://jekyllrb.com">Jekyll</a> using the <a href="http://jekyll.gtat.me/about">Balzac</a> theme.</small> </footer> <!-- If they're out, get some from the cellar --> <script>window.jQuery || document.write('<script src="http://jekyll.gtat.me/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script> <script src="http://jekyll.gtat.me/assets/js/retina.min.js"></script> <!-- Custom JS --> <script src="http://jekyll.gtat.me/assets/js/scripts.js"></script> </body> </html>
Figure4/Tox21_PCIDs/PCID_31296.html
andrewdefries/ToxCast
https://pubchem.ncbi.nlm.nih.gov/summary/summary.cgi?cid=31296
views/layout.html
Sandboxed-Forks/gistfy
<!DOCTYPE html> <html lang="en" ng-app="App"> <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>{% block title %}Gistfy{% endblock %}</title> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/site.css" rel="stylesheet"> {% block og %} <meta property="og:title" content="Gistfy"/> <meta property="og:description" content="Gistfy is an easy way to create embeddable code snippets from your GitHub and Bitbucket repositories or your GitHub Gist."/> <meta property="og:url" content="http://www.gistfy.com"/> {% endblock %} <meta property="og:site_name" content="Gistfy"/> <meta property="og:type" content="website"/> <meta property="og:locale" content="en_US"/> <meta property="og:image" content="http://www.gistfy.com/img/gistfy.png"> <meta property="og:image:height" content="400" /> <meta property="og:image:width" content="400" /> <meta property="og:image:url" content="http://www.gistfy.com/img/gistfy.png"> <!-- 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 ng-controller="MainController"> <nav class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <a href="/" class="navbar-brand"><strong>Gistfy</strong></a> <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <div class="navbar-collapse collapse" id="navbar-main"> <ul class="nav navbar-nav"> <li ng-class="{ active: isActive(['/', '/index.html'])}"> <a href="/index.html">Home</a> </li> <li ng-class="{ active: isActive('/api.html')}"> <a href="/api.html">API</a> </li> <li ng-class="{ active: isActive('/usage.html')}"> <a href="/usage.html">Usage</a> </li> <li ng-class="{ active: isActive('/examples.html')}"> <a href="/examples.html">Examples</a> </li> <li ng-class="{ active: isActive('/about.html')}"> <a href="/about.html">About</a> </li> </ul> </div> </div> <a href="https://github.com/alexandrevicenzi/gistfy" target="_blank"> <img style="position: absolute; top: 0; right: 0; border: 0; z-index: -1;" src="/img/forkme.png" alt="Fork me on GitHub"/> </a> </nav> <section class="ng-cloak container main"> <div class="tab-content"> {% block content %}{% endblock %} </div> </section> <footer class="footer text-center"> <div>Copyright © Gistfy {% thisyear %}2015{% endthisyear %}. Theme created by <a href="http://bootswatch.com/yeti/" target="_blank">Bootswatch</a>.</div> </footer> <script type="text/javascript" src="js/jquery.min.js"></script> <script type="text/javascript" src="js/bootstrap.min.js"></script> <script type="text/javascript" src="js/angular.min.js"></script> <script type="text/javascript" src="js/app.js"></script> {% if ga %} <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', '{{ ga }}', 'auto'); ga('send', 'pageview'); </script> {% endif %} </body> </html>
signInForm.css
Letshelpthestudents/letshelpthestudents.github.io
body { font-size: 100%; font-family: Arial, sans-serif; } #wrapper { width: 600px; } h2 { background-color: #dedede; border-bottom: 1px solid #d4d4d4; border-top: 1px solid #d4d4d4; border-radius: 5px; box-shadow: 3px 3px 3px #ccc; color: #fff; font-size: 1.1em; margin: 12px; padding: 0.3em 1em; text-shadow: #9FBEB9 1px 1px 1px; text-transform: uppercase; } h2.account { background-color: #0B5586; } h2.address { background-color: #4494C9; } h2.public-profile { background-color: #377D87; } h2.emails { background-color: #717F88; } legend { background-color: #dedede; border-top: 1px solid #d4d4d4; border-bottom: 1px solid #d4d4d4; -moz-box-shadow: 3px 3px 3px #ccc; -webkit-box-shadow: 3px 3px 3px #ccc; box-shadow: 3px 3px 3px #ccc; font-size: 1.1em; text-transform: uppercase; padding: 0.3em 1em; } fieldset { background-color: #f1f1f1; border: none; border-radius: 2px; margin-bottom: 12px; overflow: hidden; padding: 0 10px; } ul { background-color: #fff; border: 1px solid #eaeaea; list-style: none; margin: 12px; padding: 12px; } li { margin: 0.5em 0; } label { display: inline-block; padding: 3px 6px; text-align: right; width: 150px; vertical-align: top; } input, select, button { font: inherit; } .small { width: 75px; } .medium { width: 150px; } .large { width: 250px; } .reqd { background-color: #FFFF99; border-color: #FF0033 } textarea { font: inherit; width: 250px; } .instructions { font-size: 75%; padding-left: 167px; font-style: italic; } .create_profile { background-color: #DA820A; border: none; border-radius: 4px; box-shadow: 2px 2px 2px #333; cursor: pointer; color: #fff; margin: 12px; padding: 8px; text-shadow: 1px 1px 0px #CCC; } .radios { background: none; display: inline; margin: 0; padding: 0; } .radios ul { border: none; display: inline-block; list-style: none; margin: 0; padding: 0; } .radios li { margin: 0; display: inline-block; } .radios label { margin-right: 25px; width: auto; } .radios input { margin-top: 3px; } .checkboxes label { text-align: left; width: 475px; } button * { vertical-align: middle; }
docs/reference/select.html
seqcloud/seqcloudR
<!-- Generated by pkgdown: do not edit by hand --> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Select multiple columns — select • basejump</title> <!-- jquery --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script> <!-- Bootstrap --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha256-bZLfwXAP04zRMK2BjiO8iu9pf4FbLqX6zitd+tIvLhE=" crossorigin="anonymous" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha256-nuL8/2cJ5NDSSwnKD8VqreErSWHtnEP9E7AySL+1ev4=" crossorigin="anonymous"></script> <!-- bootstrap-toc --> <link rel="stylesheet" href="../bootstrap-toc.css"> <script src="../bootstrap-toc.js"></script> <!-- Font Awesome icons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" integrity="sha256-mmgLkCYLUQbXn0B1SRqzHar6dCnv9oZFPEC1g1cwlkk=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/v4-shims.min.css" integrity="sha256-wZjR52fzng1pJHwx4aV2AO3yyTOXrcDW7jBpJtTwVxw=" crossorigin="anonymous" /> <!-- clipboard.js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.6/clipboard.min.js" integrity="sha256-inc5kl9MA1hkeYUt+EC3BhlIgyp/2jDIyBLS6k3UxPI=" crossorigin="anonymous"></script> <!-- headroom.js --> <script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.11.0/headroom.min.js" integrity="sha256-AsUX4SJE1+yuDu5+mAVzJbuYNPHj/WroHuZ8Ir/CkE0=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/headroom/0.11.0/jQuery.headroom.min.js" integrity="sha256-ZX/yNShbjqsohH1k95liqY9Gd8uOiE1S4vZc+9KQ1K4=" crossorigin="anonymous"></script> <!-- pkgdown --> <link href="../pkgdown.css" rel="stylesheet"> <script src="../pkgdown.js"></script> <link href="../extra.css" rel="stylesheet"> <meta property="og:title" content="Select multiple columns — select" /> <meta property="og:description" content="Select multiple columns" /> <!-- mathjax --> <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js" integrity="sha256-nvJJv9wWKEm88qvoQl9ekL2J+k/RWIsaSScxxlsrv8k=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/config/TeX-AMS-MML_HTMLorMML.js" integrity="sha256-84DKXVJXs0/F8OTMzX4UR909+jtl4G7SPypPavF+GfA=" crossorigin="anonymous"></script> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body data-spy="scroll" data-target="#toc"> <div class="container template-reference-topic"> <header> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <span class="navbar-brand"> <a class="navbar-link" href="../index.html">basejump</a> <span class="version label label-default" data-toggle="tooltip" data-placement="bottom" title="Released version">0.12.6</span> </span> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li> <a href="../index.html"> <span class="fas fa fas fa-home fa-lg"></span> </a> </li> <li> <a href="../articles/basejump.html">Get started</a> </li> <li> <a href="../reference/index.html">Reference</a> </li> <li> <a href="../news/index.html">Changelog</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li> <a href="https://github.com/acidgenomics/basejump/"> <span class="fab fa fab fa-github fa-lg"></span> </a> </li> </ul> </div><!--/.nav-collapse --> </div><!--/.container --> </div><!--/.navbar --> </header> <div class="row"> <div class="col-md-9 contents"> <div class="page-header"> <h1>Select multiple columns</h1> <small class="dont-index">Source: <a href='https://github.com/acidgenomics/basejump/blob/master/R/select-methods.R'><code>R/select-methods.R</code></a></small> <div class="hidden name"><code>select.Rd</code></div> </div> <div class="ref-description"> <p>Select multiple columns</p> </div> <pre class="usage"><span class='fu'>selectIf</span>(<span class='no'>object</span>, <span class='no'>predicate</span>, <span class='no'>...</span>) <span class='co'># S4 method for DataFrame,`function`</span> <span class='fu'>selectIf</span>(<span class='no'>object</span>, <span class='no'>predicate</span>)</pre> <h2 class="hasAnchor" id="arguments"><a class="anchor" href="#arguments"></a>Arguments</h2> <table class="ref-arguments"> <colgroup><col class="name" /><col class="desc" /></colgroup> <tr> <th>object</th> <td><p>Object.</p></td> </tr> <tr> <th>predicate</th> <td><p><code>function</code>. A predicate function to be applied to the columns. For example, <code><a href='https://rdrr.io/r/base/is.recursive.html'>is.atomic()</a></code>.</p></td> </tr> <tr> <th>...</th> <td><p>Additional arguments.</p></td> </tr> </table> <h2 class="hasAnchor" id="value"><a class="anchor" href="#value"></a>Value</h2> <p>Modified object.</p> <h2 class="hasAnchor" id="note"><a class="anchor" href="#note"></a>Note</h2> <p>Updated 2019-08-26.</p> <h2 class="hasAnchor" id="see-also"><a class="anchor" href="#see-also"></a>See also</h2> <div class='dont-index'><p>These functions are inspired by dplyr. However, they are designed to only work on <code>DataFrame</code> class, and use base R code internally.<div class="r"></p><pre><span class='no'>`help(topic = "select_all", package = "dplyr")`</span></pre><p></div></p></div> <h2 class="hasAnchor" id="examples"><a class="anchor" href="#examples"></a>Examples</h2> <pre class="examples"><div class='input'><span class='fu'><a href='https://rdrr.io/r/utils/data.html'>data</a></span>(<span class='no'>iris</span>, <span class='kw'>package</span> <span class='kw'>=</span> <span class='st'>"datasets"</span>) <span class='co'>## DataFrame ====</span> <span class='no'>x</span> <span class='kw'>&lt;-</span> <span class='fu'>as</span>(<span class='no'>iris</span>, <span class='st'>"DataFrame"</span>) <span class='fu'>selectIf</span>(<span class='no'>x</span>, <span class='kw'>predicate</span> <span class='kw'>=</span> <span class='no'>is.factor</span>)</div><div class='output co'>#&gt; DataFrame with 150 rows and 1 column #&gt; Species #&gt; &lt;factor&gt; #&gt; 1 setosa #&gt; 2 setosa #&gt; 3 setosa #&gt; 4 setosa #&gt; 5 setosa #&gt; ... ... #&gt; 146 virginica #&gt; 147 virginica #&gt; 148 virginica #&gt; 149 virginica #&gt; 150 virginica</div></pre> </div> <div class="col-md-3 hidden-xs hidden-sm" id="pkgdown-sidebar"> <nav id="toc" data-toggle="toc" class="sticky-top"> <h2 data-toc-skip>Contents</h2> </nav> </div> </div> <footer> <div class="copyright"> <p>Developed by <a href='https://steinbaugh.com/'>Michael Steinbaugh</a>, <a href='https://acidgenomics.com/'>Acid Genomics</a>.</p> </div> <div class="pkgdown"> <p>Site built with <a href="https://pkgdown.r-lib.org/">pkgdown</a> 1.5.1.</p> </div> </footer> </div> </body> </html>
clean/Linux-x86_64-4.08.1-2.0.5/released/8.7.1+1/abp/8.10.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>abp: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.7.1+1 / abp - 8.10.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> abp <small> 8.10.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-11 17:12:35 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-11 17:12:35 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 2 Virtual package relying on perl coq 8.7.1+1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 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/abp&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/ABP&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} ] tags: [ &quot;keyword: alternating bit protocol&quot; &quot;keyword: process calculi&quot; &quot;keyword: reactive systems&quot; &quot;keyword: co-inductive types&quot; &quot;keyword: co-induction&quot; &quot;category: Computer Science/Concurrent Systems and Protocols/Correctness of specific protocols&quot; ] authors: [ &quot;Eduardo Giménez&quot; ] bug-reports: &quot;https://github.com/coq-contribs/abp/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/abp.git&quot; synopsis: &quot;A verification of the alternating bit protocol expressed in CBS&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/abp/archive/v8.10.0.tar.gz&quot; checksum: &quot;md5=275beb3c0f79d6ba2adc6a61a19bbbb1&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-abp.8.10.0 coq.8.7.1+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.7.1+1). The following dependencies couldn&#39;t be met: - coq-abp -&gt; coq &gt;= 8.10 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-abp.8.10.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>
third-party/css/nprogress.css
socialc0de/germany-says-welcome-website
/* Make clicks pass-through */ #nprogress { pointer-events: none; } #nprogress .bar { background: #FFDC00; position: fixed; z-index: 1031; top: 0; left: 0; width: 100%; height: 2px; } /* Fancy blur effect */ #nprogress .peg { display: block; position: absolute; right: 0px; width: 100px; height: 100%; box-shadow: 0 0 10px #FFDC00, 0 0 5px #FFDC00; opacity: 1.0; -webkit-transform: rotate(3deg) translate(0px, -4px); -ms-transform: rotate(3deg) translate(0px, -4px); transform: rotate(3deg) translate(0px, -4px); } /* Remove these to get rid of the spinner */ #nprogress .spinner { display: block; position: fixed; z-index: 1031; top: 15px; right: 15px; } #nprogress .spinner-icon { width: 18px; height: 18px; box-sizing: border-box; border: solid 2px transparent; border-top-color: #FFDC00; border-left-color: #FFDC00; border-radius: 50%; -webkit-animation: nprogress-spinner 400ms linear infinite; animation: nprogress-spinner 400ms linear infinite; } .nprogress-custom-parent { overflow: hidden; position: relative; } .nprogress-custom-parent #nprogress .spinner, .nprogress-custom-parent #nprogress .bar { position: absolute; } @-webkit-keyframes nprogress-spinner { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes nprogress-spinner { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
JSUIDOM/Demos/JQuery/index.html
SHAMMY1/Telerik-Academy-2016
<!DOCTYPE html> <html lang="en"> <head> <title></title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="style.css" rel="stylesheet"> <script src="bower_components\jQuery\dist\jquery.min.js"> </script> </head> <body> <button href="#" class="btn">Click</button> <div id="root"> <h1>It works</h1> </div> <script src="app.js"></script> </body> </html>
components/SitePost/style.css
islas27/islas27.github.io
.blog-post { margin-bottom: 30px; } .blog-post:last-child { margin-bottom: 10px; } .blog-post h2 { margin-top: 10px; line-height: 30px; margin-bottom: 20px; } .blog-post h2 a { color: #222; } .blog-post h2 a:hover, .blog-post h2 a:focus { border-bottom: 1px solid; } .blog-post p { font-size: 16px; line-height: 26px; margin-bottom: 26px; } .blog-post time { font-size: 14px; color: #222; font-weight: 500; text-transform: uppercase; } .blog-post .blog-category { font-size: 14px; color: #49A010; font-weight: 500; text-transform: uppercase; } .blog-post .readmore { font-size: 16px; color: #5d93ff; } .blog-post .readmore:hover { border-bottom: 1px solid; } .blog-single { max-width: 945px; margin-left: auto; margin-right: auto; } .blog-single h1 { text-align: center; margin-top: 30px; } .blog-single .text { line-height: 31px; margin-bottom: 31px; } .blog-single h1, .blog-single .date-published, .blog-single .text *:not(div) { max-width: 630px; margin-left: auto; margin-right: auto; } .blog-single .text img { max-width: 100%; height: auto; } .blog-single .footer { max-width: 630px; margin-left: auto; margin-right: auto; line-height: 31px; margin-bottom: 31px; } .gohome { position: fixed; left: 20px; font-size: 16px; text-align: center; padding: 8px 16px; color: #999; background: #f4f4f4; font-weight: 400; border-radius: 3px; } .gohome:focus { color: #444; background: #f4f4f4; border: 0; } .gohome:hover { color: #444; background: #f4f4f4; border: 0; } @media (max-width:900px) { .blog-single h1 { margin-top: 15px; } .blog-single .text, .blog-single .footer { padding: 0 15px; line-height: 26px; margin-bottom: 26px; } .gohome { position: static; margin: 20px auto 0; text-align: center; width: 85px; display: block; } }
speaker/arne/index.html
okfde/datensummit
--- layout: default footerlogos: yes title: "Rednerinnen" --- <!-- Hero --> <div class="jumbotron fond__grey-brigth"> <div class="container text__black"> <div class="col-lg-8 col-lg-offset-2"> <img class="img-circle speaker-big" alt="Dorothee Bär" src="/img/avatars_board/arne_gross.jpg"> <div class="speaker-bio"> <h1>Arne Semsrott</h1> <p> Arne ist bei der Open Knowledge Foundation Projektleiter des Portals FragDenStaat.de und beschäftigt sich mit Informationsfreiheit. Er ist Politikwissenschaftler, arbeitet nebenbei als freier Journalist und engagiert sich in weiteren NGOs zu Themen wie Transparenz und Lobbyismus, unter anderem bei Transparency International als Leiter für die AG Wissenschaft, für Hochschulwatch.de und im Beirat des Whistleblower-Netzwerks.<br> <p> <strong> Arne hält am 28.04.2017 zusammen mit <a class="text__red" href="/speaker/fiona">Fiona Krakenbürger</a> und <a class="text__red" href="/speaker/maxi">Maxi Richt</a> einen Votrag mit dem Titel »Die Zivilgesellschaft als Treiber für offene Daten«.<br><br> Am 29.04.2017 macht er einen Workshop mit dem Titel »Informationsfreiheit politisch nutzen«. </strong><br><br> <a href="/tag_eins"><span class="highlight-blue">Zum Programm Tag 1</span></a><br> <a href="/tag_zwei"><span class="highlight-red">Zum Programm Tag 2</span></a> </p> </div> </div> </div> <div class="jumbotron fond__grey-brigth"> <div class="container text__black"> <div class="col-lg-8 col-lg-offset-2"> <h2> Und hier das Video</h2> <iframe width="740" height="415" src="https://www.youtube.com/embed/n59SXn3jrms" frameborder="0" allowfullscreen></iframe> </div> </div> </div> </div>
_posts/2011-02-21-dont-make-me-type.html
ramonsuarez/ramonsuarez.github.io
--- layout: post title: Don't make me type! date: 2011-02-21 11:59:01.000000000 +01:00 type: post published: true status: publish categories: [] tags: [] meta: _original_post_id: '' _original_import_author: 'Ramon Suarez: Internet Entrepreneurship and Marketing' author: login: ramonsuarez email: ramon@betacowork.com display_name: ramonsuarez first_name: Ramon last_name: Suarez excerpt: Taken with picplz at BetaGroup Coworking Brussels in Etterbeek, Belgium. --- <div class="p_embed p_image_embed"><img alt="Media_https1i1picplzt_epocc" height="640" src="{{ site.baseurl }}/assets/media_https1i1picplzt_epocc-scaled500.jpg?w=195" width="416" /></div> <p>Taken with <a href="http://picplz.com">picplz</a> at <a href="http://picplz.com/pics/betagroup-coworking-brussels-etterbek-belgium/">BetaGroup Coworking Brussels</a> in <a href="http://picplz.com/city/etterbeek-be/">Etterbeek, Belgium</a>.</p>
Rust/share/doc/rust/html/rustc_typeck/lint/enum.LintSource.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 `LintSource` enum in crate `rustc_typeck`."> <meta name="keywords" content="rust, rustlang, rust-lang, LintSource"> <title>rustc_typeck::lint::LintSource - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> <link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <a href='../../rustc_typeck/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../index.html'>rustc_typeck</a>::<wbr><a href='index.html'>lint</a></p><script>window.sidebarCurrent = {name: 'LintSource', ty: 'enum', 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 enum"> <h1 class='fqn'><span class='in-band'>Enum <a href='../index.html'>rustc_typeck</a>::<wbr><a href='index.html'>lint</a>::<wbr><a class='enum' href=''>LintSource</a><wbr><a class='stability Unstable' title=''>Unstable</a></span><span class='out-of-band'><span id='render-detail'> <a id="collapse-all" href="#">[-]</a>&nbsp;<a id="expand-all" href="#">[+]</a> </span><a id='src-302690' href='../../rustc/lint/enum.LintSource.html?gotosrc=302690'>[src]</a></span></h1> <pre class='rust enum'>pub enum LintSource { Default, Node(<a class='struct' href='http://doc.rust-lang.org/nightly/syntax/codemap/struct.Span.html' title='syntax::codemap::Span'>Span</a>), CommandLine, ReleaseChannel, }</pre><div class='docblock'><p>How a lint level was set.</p> </div><h2 class='variants'>Variants</h2> <table><tr><td id='variant.Default'><a class='stability Unstable' title='Unstable'></a><code>Default</code></td><td><div class='docblock'><p>Lint is at the default level as declared in rustc or a plugin.</p> </div></td></tr><tr><td id='variant.Node'><a class='stability Unstable' title='Unstable'></a><code>Node</code></td><td><div class='docblock'><p>Lint level was set by an attribute.</p> </div></td></tr><tr><td id='variant.CommandLine'><a class='stability Unstable' title='Unstable'></a><code>CommandLine</code></td><td><div class='docblock'><p>Lint level was set by a command-line flag.</p> </div></td></tr><tr><td id='variant.ReleaseChannel'><a class='stability Unstable' title='Unstable'></a><code>ReleaseChannel</code></td><td><div class='docblock'><p>Lint level was set by the release channel.</p> </div></td></tr></table><h2 id='implementations'>Trait Implementations</h2><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><a class='stability Stable' title='Stable'></a><code>impl <a class='trait' href='../../core/cmp/trait.Eq.html' title='core::cmp::Eq'>Eq</a> for <a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a></code></h3><div class='impl-items'><h4 id='method.assert_receiver_is_total_eq' class='tymethod'><a class='stability Stable' title='Stable'></a><code>fn <a href='#tymethod.assert_receiver_is_total_eq' class='fnname'>assert_receiver_is_total_eq</a>(&amp;self)</code></h4> </div><h3 class='impl'><a class='stability Stable' title='Stable'></a><code>impl <a class='trait' href='../../core/cmp/trait.PartialEq.html' title='core::cmp::PartialEq'>PartialEq</a>&lt;<a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a>&gt; for <a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a></code></h3><div class='impl-items'><h4 id='method.eq' class='method'><a class='stability Stable' title='Stable'></a><code>fn <a href='#method.eq' class='fnname'>eq</a>(&amp;self, __arg_0: &amp;<a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a>) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.ne' class='method'><a class='stability Stable' title='Stable'></a><code>fn <a href='#method.ne' class='fnname'>ne</a>(&amp;self, __arg_0: &amp;<a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a>) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> </div><h3 class='impl'><a class='stability Stable' title='Stable'></a><code>impl <a class='trait' href='../../core/marker/trait.Copy.html' title='core::marker::Copy'>Copy</a> for <a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a></code></h3><div class='impl-items'></div><h3 class='impl'><a class='stability Stable' title='Stable'></a><code>impl <a class='trait' href='../../core/clone/trait.Clone.html' title='core::clone::Clone'>Clone</a> for <a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a></code></h3><div class='impl-items'><h4 id='method.clone' class='method'><a class='stability Stable' title='Stable'></a><code>fn <a href='#method.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class='enum' href='../../rustc_typeck/lint/enum.LintSource.html' title='rustc_typeck::lint::LintSource'>LintSource</a></code></h4> <h4 id='method.clone_from' class='tymethod'><a class='stability Unstable' title='Unstable: this function is rarely used'></a><code>fn <a href='#tymethod.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: &amp;Self)</code></h4> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div class="shortcuts"> <h1>Keyboard shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>typedef</code> (or <code>tdef</code>). </p> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "rustc_typeck"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
workshops.html
joehalliwell/joehalliwell.github.io
<html><head><title>Workshops</title></head> <body> <a href="https://github.com/joehalliwell/ml-workshop/raw/master/ml-intro.ipynb">Data science with Python notebook</a> </body> </html>
libs/boost_1_50_0/doc/html/boost/units/base_unit_info_i_id1807224.html
djsedulous/namecoind
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Struct base_unit_info&lt;imperial::inch_base_unit&gt;</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../boost_units/Reference.html#header.boost.units.base_units.imperial.inch_hpp" title="Header &lt;boost/units/base_units/imperial/inch.hpp&gt;"> <link rel="prev" href="base_unit_info_i_id1807171.html" title="Struct base_unit_info&lt;imperial::hundredweight_base_unit&gt;"> <link rel="next" href="base_unit_info_i_id1807276.html" title="Struct base_unit_info&lt;imperial::league_base_unit&gt;"> </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="base_unit_info_i_id1807171.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.base_units.imperial.inch_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="base_unit_info_i_id1807276.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.units.base_unit_info_i_id1807224"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Struct base_unit_info&lt;imperial::inch_base_unit&gt;</span></h2> <p>boost::units::base_unit_info&lt;imperial::inch_base_unit&gt;</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="../../boost_units/Reference.html#header.boost.units.base_units.imperial.inch_hpp" title="Header &lt;boost/units/base_units/imperial/inch.hpp&gt;">boost/units/base_units/imperial/inch.hpp</a>&gt; </span> <span class="keyword">struct</span> <a class="link" href="base_unit_info_i_id1807224.html" title="Struct base_unit_info&lt;imperial::inch_base_unit&gt;">base_unit_info</a><span class="special">&lt;</span><span class="identifier">imperial</span><span class="special">::</span><span class="identifier">inch_base_unit</span><span class="special">&gt;</span> <span class="special">{</span> <span class="comment">// <a class="link" href="base_unit_info_i_id1807224.html#id1807233-bb">public static functions</a></span> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a class="link" href="base_unit_info_i_id1807224.html#id1807237-bb"><span class="identifier">name</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span> <span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a class="link" href="base_unit_info_i_id1807224.html#id1807245-bb"><span class="identifier">symbol</span></a><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="id3669210"></a><h2>Description</h2> <div class="refsect2"> <a name="id3669214"></a><h3> <a name="id1807233-bb"></a><code class="computeroutput">base_unit_info</code> public static functions</h3> <div class="orderedlist"><ol class="orderedlist" type="1"> <li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a name="id1807237-bb"></a><span class="identifier">name</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li> <li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="keyword">const</span> <span class="keyword">char</span> <span class="special">*</span> <a name="id1807245-bb"></a><span class="identifier">symbol</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li> </ol></div> </div> </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; 2003-2008 Matthias Christian Schabel<br>Copyright &#169; 2007-2010 Steven Watanabe<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="base_unit_info_i_id1807171.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.base_units.imperial.inch_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="base_unit_info_i_id1807276.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
Reports/nu/nui.0.3.2/NLite.Web-net35.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; 0b813661-525f-470c-9afb-f4120cc81ec9 </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="#NLite.Web">NLite.Web</a></strong></td> <td class="text-center">36.99 %</td> <td class="text-center">35.00 %</td> <td class="text-center">100.00 %</td> <td class="text-center">35.00 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="NLite.Web"><h3>NLite.Web</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(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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.CodeDom.CodeCompileUnit</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.CodeDom.CodeMemberMethod</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.CodeDom.CodeTypeDeclaration</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_BaseTypes</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.CodeDom.CodeTypeReference</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.CodeDom.CodeTypeReferenceCollection</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.Int32,System.CodeDom.CodeTypeReference)</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.Hashtable</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">get_Item(System.Object)</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_Item(System.Object,System.Object)</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">Synchronized(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.NameObjectCollectionBase</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_Count</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_Keys</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">GetEnumerator</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">GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)</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">OnDeserialization(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.Collections.Specialized.NameObjectCollectionBase.KeysCollection</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">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.Reflection.Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Assembly.DefinedTypes</td> </tr> <tr> <td style="padding-left:2em">GetTypes</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Use Assembly.DefinedTypes</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.SerializationInfo</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>Remove serialization constructors on custom 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.Security.Principal.WindowsIdentity</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_CurrentPrincipal</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="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></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_Assembly</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().Assembly</td> </tr> <tr> <td style="padding-left:2em">get_IsAbstract</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsAbstract</td> </tr> <tr> <td style="padding-left:2em">get_IsInterface</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td>.GetTypeInfo().IsInterface</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">GetMethods</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">GetMethods(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">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.Caching.Cache</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.Caching.CacheDependency</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.Compilation.BuildManager</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">GetCompiledType(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">GetReferencedAssemblies</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.Configuration.HttpCapabilitiesBase</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">AddBrowser(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">CreateHtmlTextWriter(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 style="padding-left:2em">DisableOptimizedCacheKey</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_ActiveXControls</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_Adapters</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_AOL</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_BackgroundSounds</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_Beta</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_Browser</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_Browsers</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_CanCombineFormsInDeck</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_CanInitiateVoiceCall</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_CanRenderAfterInputOrSelectElement</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_CanRenderEmptySelects</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_CanRenderInputAndSelectElementsTogether</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_CanRenderMixedSelects</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_CanRenderOneventAndPrevElementsTogether</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_CanRenderPostBackCards</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_CanRenderSetvarZeroWithMultiSelectionList</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_CanSendMail</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_Capabilities</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_CDF</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_ClrVersion</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_Cookies</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_Crawler</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_DefaultSubmitButtonLimit</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_EcmaScriptVersion</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_Frames</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_GatewayMajorVersion</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_GatewayMinorVersion</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_GatewayVersion</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_HasBackButton</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_HidesRightAlignedMultiselectScrollbars</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_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">get_Id</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_InputType</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_IsColor</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_IsMobileDevice</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">get_JavaApplets</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_JScriptVersion</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_MajorVersion</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_MaximumHrefLength</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_MaximumRenderedPageSize</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_MaximumSoftkeyLabelLength</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_MinorVersion</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_MinorVersionString</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_MobileDeviceManufacturer</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_MobileDeviceModel</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_MSDomVersion</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_NumberOfSoftkeys</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_Platform</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_PreferredImageMime</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_PreferredRenderingMime</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_PreferredRenderingType</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_PreferredRequestEncoding</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_PreferredResponseEncoding</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_RendersBreakBeforeWmlSelectAndInput</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_RendersBreaksAfterHtmlLists</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_RendersBreaksAfterWmlAnchor</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_RendersBreaksAfterWmlInput</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_RendersWmlDoAcceptsInline</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_RendersWmlSelectsAsMenuCards</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_RequiredMetaTagNameValue</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_RequiresAttributeColonSubstitution</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_RequiresContentTypeMetaTag</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_RequiresControlStateInSession</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_RequiresDBCSCharacter</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_RequiresHtmlAdaptiveErrorReporting</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_RequiresLeadingPageBreak</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_RequiresNoBreakInFormatting</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_RequiresOutputOptimization</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_RequiresPhoneNumbersAsPlainText</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_RequiresSpecialViewStateEncoding</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_RequiresUniqueFilePathSuffix</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_RequiresUniqueHtmlCheckboxNames</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_RequiresUniqueHtmlInputNames</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_RequiresUrlEncodedPostfieldValues</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_ScreenBitDepth</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_ScreenCharactersHeight</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_ScreenCharactersWidth</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_ScreenPixelsHeight</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_ScreenPixelsWidth</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_SupportsAccesskeyAttribute</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_SupportsBodyColor</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_SupportsBold</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_SupportsCacheControlMetaTag</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_SupportsCallback</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_SupportsCss</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_SupportsDivAlign</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_SupportsDivNoWrap</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_SupportsEmptyStringInCookieValue</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_SupportsFontColor</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_SupportsFontName</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_SupportsFontSize</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_SupportsImageSubmit</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_SupportsIModeSymbols</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_SupportsInputIStyle</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_SupportsInputMode</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_SupportsItalic</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_SupportsJPhoneMultiMediaAttributes</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_SupportsJPhoneSymbols</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_SupportsQueryStringInFormAction</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_SupportsRedirectWithCookie</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_SupportsSelectMultiple</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_SupportsUncheck</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_SupportsXmlHttp</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_Tables</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_TagWriter</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_Type</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_UseOptimizedCacheKey</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_VBScript</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_Version</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_W3CDomVersion</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_Win16</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_Win32</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">GetClrVersions</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">IsBrowser(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_Capabilities(System.Collections.IDictionary)</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_HtmlTextWriter(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.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">add_AcquireRequestState(System.EventHandler)</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_AuthenticateRequest(System.EventHandler)</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_AuthorizeRequest(System.EventHandler)</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_BeginRequest(System.EventHandler)</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_Disposed(System.EventHandler)</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_EndRequest(System.EventHandler)</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_Error(System.EventHandler)</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_LogRequest(System.EventHandler)</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_MapRequestHandler(System.EventHandler)</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_PostAcquireRequestState(System.EventHandler)</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_PostAuthenticateRequest(System.EventHandler)</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_PostAuthorizeRequest(System.EventHandler)</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_PostLogRequest(System.EventHandler)</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_PostMapRequestHandler(System.EventHandler)</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_PostReleaseRequestState(System.EventHandler)</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_PostRequestHandlerExecute(System.EventHandler)</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_PostResolveRequestCache(System.EventHandler)</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_PostUpdateRequestCache(System.EventHandler)</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_PreRequestHandlerExecute(System.EventHandler)</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_PreSendRequestContent(System.EventHandler)</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_PreSendRequestHeaders(System.EventHandler)</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_ReleaseRequestState(System.EventHandler)</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_ResolveRequestCache(System.EventHandler)</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_UpdateRequestCache(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_AcquireRequestState(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_AuthenticateRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_AuthorizeRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_BeginRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Disposed(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_EndRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Error(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_LogRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_MapRequestHandler(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostAcquireRequestState(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostAuthenticateRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostAuthorizeRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostLogRequest(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostMapRequestHandler(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostReleaseRequestState(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostRequestHandlerExecute(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostResolveRequestCache(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PostUpdateRequestCache(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PreRequestHandlerExecute(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PreSendRequestContent(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_PreSendRequestHeaders(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_ReleaseRequestState(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_ResolveRequestCache(System.EventHandler)</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_UpdateRequestCache(System.EventHandler)</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.HttpApplicationState</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">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">Get(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">Get(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_AllKeys</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.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">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">get_StaticObjects</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">GetKey(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">Lock</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">Remove(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">RemoveAll</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">RemoveAt(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(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">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 style="padding-left:2em">UnLock</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.HttpApplicationStateBase</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_StaticObjects</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.HttpBrowserCapabilities</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.HttpBrowserCapabilitiesBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.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.HttpCachePolicy</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">AddValidationCallback(System.Web.HttpCacheValidateHandler,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">AppendCacheExtension(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_VaryByContentEncodings</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_VaryByHeaders</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_VaryByParams</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">SetAllowResponseInBrowserHistory(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">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">SetCacheability(System.Web.HttpCacheability,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">SetETag(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">SetETagFromFileDependencies</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 style="padding-left:2em">SetLastModifiedFromFileDependencies</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">SetMaxAge(System.TimeSpan)</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">SetNoServerCaching</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">SetNoStore</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">SetNoTransforms</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">SetOmitVaryStar(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">SetProxyMaxAge(System.TimeSpan)</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">SetRevalidation(System.Web.HttpCacheRevalidation)</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">SetSlidingExpiration(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">SetValidUntilExpires(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">SetVaryByCustom(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.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">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpCacheRevalidation</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.HttpCacheValidateHandler</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.HttpCacheVaryByContentEncodings</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.HttpCacheVaryByHeaders</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.HttpCacheVaryByParams</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.HttpClientCertificate</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">AddError(System.Exception)</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">get_AllErrors</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_Application</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_ApplicationInstance</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">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_CurrentHandler</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_CurrentNotification</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_Error</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_Handler</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_IsCustomErrorEnabled</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_IsDebuggingEnabled</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_Items</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_PreviousHandler</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_Profile</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 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_SkipAuthorization</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_Timestamp</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_Trace</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">GetGlobalResourceObject(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">GetGlobalResourceObject(System.String,System.String,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">GetLocalResourceObject(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">GetLocalResourceObject(System.String,System.String,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">GetSection(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">RewritePath(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">RewritePath(System.String,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">RewritePath(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 style="padding-left:2em">RewritePath(System.String,System.String,System.String,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_ApplicationInstance(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">set_Handler(System.Web.IHttpHandler)</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_SkipAuthorization(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_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">#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_Application</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_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 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.HttpCookie</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.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_Domain</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_Expires</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_HasKeys</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_HttpOnly</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">get_Name</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_Secure</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_Value</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 style="padding-left:2em">set_Domain(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_Expires(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">set_HttpOnly(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_Item(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">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 style="padding-left:2em">set_Path(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_Secure(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_Value(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.HttpCookieCollection</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.Web.HttpCookie)</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">Get(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_AllKeys</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">Remove(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(System.Web.HttpCookie)</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.HttpCookieMode</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.HttpFileCollection</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">CopyTo(System.Array,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">Get(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">Get(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_AllKeys</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.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">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">GetKey(System.Int32)</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.HttpFileCollectionBase</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(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">Get(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.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">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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.HttpPostedFile</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_ContentLength</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_ContentType</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_FileName</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_InputStream</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">SaveAs(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.HttpPostedFileBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.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">BinaryRead(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">get_AcceptTypes</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_AnonymousID</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_AppRelativeCurrentExecutionFilePath</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_Browser</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_ClientCertificate</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_ContentEncoding</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_ContentLength</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_ContentType</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_Cookies</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_CurrentExecutionFilePath</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_FilePath</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_Files</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_Filter</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_InputStream</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_IsLocal</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_IsSecureConnection</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">get_LogonUserIdentity</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_Params</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_PathInfo</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_PhysicalApplicationPath</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_PhysicalPath</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_RequestType</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_ServerVariables</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_TotalBytes</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 style="padding-left:2em">get_UrlReferrer</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_UserAgent</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_UserHostAddress</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_UserHostName</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_UserLanguages</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">MapImageCoordinates(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">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 style="padding-left:2em">MapPath(System.String,System.String,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">SaveAs(System.String,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_ContentEncoding(System.Text.Encoding)</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_Filter(System.IO.Stream)</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_RequestType(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">ValidateInput</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">#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_Browser</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_Cookies</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_Files</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">AddCacheDependency(System.Web.Caching.CacheDependency[])</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">AddCacheItemDependencies(System.Collections.ArrayList)</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">AddCacheItemDependencies(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">AddCacheItemDependency(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">AddFileDependencies(System.Collections.ArrayList)</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">AddFileDependencies(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">AddFileDependency(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">AddHeader(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">AppendCookie(System.Web.HttpCookie)</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">AppendHeader(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">AppendToLog(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">ApplyAppPathModifier(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">BinaryWrite(System.Byte[])</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">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">ClearContent</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">ClearHeaders</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">Close</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">DisableKernelCache</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">Flush</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_Buffer</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_BufferOutput</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">get_CacheControl</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_Charset</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_ContentEncoding</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_ContentType</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_Cookies</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_Expires</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_ExpiresAbsolute</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_Filter</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_HeaderEncoding</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_IsClientConnected</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_IsRequestBeingRedirected</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_Output</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_OutputStream</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_RedirectLocation</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_Status</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_StatusCode</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_StatusDescription</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_SubStatusCode</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_SuppressContent</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_TrySkipIisCustomErrors</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">Pics(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">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">Redirect(System.String,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">RemoveOutputCacheItem(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_Buffer(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_BufferOutput(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_CacheControl(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_Charset(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_ContentEncoding(System.Text.Encoding)</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_Expires(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_ExpiresAbsolute(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">set_Filter(System.IO.Stream)</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_HeaderEncoding(System.Text.Encoding)</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_RedirectLocation(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_Status(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">set_SubStatusCode(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_SuppressContent(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_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">SetCookie(System.Web.HttpCookie)</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">TransmitFile(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">TransmitFile(System.String,System.Int64,System.Int64)</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.Char)</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.Char[],System.Int32,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">Write(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">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 style="padding-left:2em">WriteFile(System.IntPtr,System.Int64,System.Int64)</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">WriteFile(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">WriteFile(System.String,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">WriteFile(System.String,System.Int64,System.Int64)</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">WriteSubstitution(System.Web.HttpResponseSubstitutionCallback)</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">#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_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">get_Cookies</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.HttpResponseSubstitutionCallback</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">CreateObject(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">CreateObject(System.Type)</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">CreateObjectFromClsid(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">Execute(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">Execute(System.String,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">Execute(System.String,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 style="padding-left:2em">Execute(System.String,System.IO.TextWriter,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">Execute(System.Web.IHttpHandler,System.IO.TextWriter,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">get_MachineName</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_ScriptTimeout</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">HtmlDecode(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">HtmlDecode(System.String,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 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">HtmlEncode(System.String,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 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 style="padding-left:2em">set_ScriptTimeout(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">Transfer(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">Transfer(System.String,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">Transfer(System.Web.IHttpHandler,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">TransferRequest(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">TransferRequest(System.String,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">TransferRequest(System.String,System.Boolean,System.String,System.Collections.Specialized.NameValueCollection)</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">UrlDecode(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">UrlDecode(System.String,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 style="padding-left:2em">UrlEncode(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">UrlEncode(System.String,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 style="padding-left:2em">UrlPathEncode(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">UrlTokenDecode(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">UrlTokenEncode(System.Byte[])</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.HttpServerUtilityBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.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">#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_Keys</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.HttpStaticObjectsCollection</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">CopyTo(System.Array,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">get_Count</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_IsReadOnly</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_IsSynchronized</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">get_NeverAccessed</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_SyncRoot</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 style="padding-left:2em">GetObject(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">Serialize(System.IO.BinaryWriter)</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.HttpStaticObjectsCollectionBase</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.IHttpHandler</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.IHttpModule</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">Dispose</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">Init(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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Profile.ProfileBase</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.RequestNotification</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.IRouteHandler</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">GetHttpHandler(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>&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>&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">#ctor(System.String,System.Web.Routing.IRouteHandler)</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_Constraints(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">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 style="padding-left:2em">set_Defaults(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.RouteBase</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 style="padding-left:2em">Add(System.String,System.Web.Routing.RouteBase)</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">GetRouteData(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>&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_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_RouteHandler</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(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">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 style="padding-left:2em">TryGetValue(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.Routing.StopRoutingHandler</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Routing.VirtualPathData</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">DeserializeObject(System.String)</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.Security.FormsAuthentication</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">Decrypt(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">Encrypt(System.Web.Security.FormsAuthenticationTicket)</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_CookieDomain</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_FormsCookieName</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_FormsCookiePath</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_RequireSSL</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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.Security.FormsAuthenticationTicket</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.Int32,System.String,System.DateTime,System.DateTime,System.Boolean,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_UserData</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.Security.FormsIdentity</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.Web.Security.FormsAuthenticationTicket)</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.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">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">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">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">CopyTo(System.Array,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">get_CodePage</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_CookieMode</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_Count</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_IsCookieless</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_IsNewSession</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_IsReadOnly</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_IsSynchronized</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.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">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">get_Keys</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_LCID</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_Mode</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 style="padding-left:2em">get_StaticObjects</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_SyncRoot</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_Timeout</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 style="padding-left:2em">Remove(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">RemoveAll</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">RemoveAt(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_CodePage(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_Item(System.Int32,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">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 style="padding-left:2em">set_LCID(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_Timeout(System.Int32)</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.SessionState.IReadOnlySessionState</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.SessionState.IRequiresSessionState</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.SessionState.SessionStateMode</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.TraceContext</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.Adapters.ControlAdapter</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_Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">get_Page</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">OnLoad(System.EventArgs)</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.Adapters.PageAdapter</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.CodeConstructType</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.Control</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#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">add_Load(System.EventHandler)</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_Controls</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_Page</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">remove_Load(System.EventHandler)</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.ControlBuilder</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">Init(System.Web.UI.TemplateParser,System.Web.UI.ControlBuilder,System.Type,System.String,System.String,System.Collections.IDictionary)</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.ControlBuilderAttribute</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.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.Web.UI.ControlCollection</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.Web.UI.FileLevelControlBuilderAttribute</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.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.Web.UI.FileLevelPageControlBuilder</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.FileLevelUserControlBuilder</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.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>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.IFilterResolutionService</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">CompareFilters(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">EvaluateFilter(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.UI.MasterPage</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.NonVisualControlAttribute</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.Page</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.PageHandlerFactory</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.PageParserFilter</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">AddControl(System.Type,System.Collections.IDictionary)</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">ParseComplete(System.Web.UI.ControlBuilder)</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">PreprocessDirective(System.String,System.Collections.IDictionary)</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">ProcessCodeConstruct(System.Web.UI.CodeConstructType,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.UI.TemplateParser</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.UserControl</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">#ctor</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> <tr> <td>System.Web.UI.VirtualReferenceType</td> <td class="IconErrorEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
projects/sdr_transceiver_ft8/app/index.html
fbalakirev/red-pitaya-notes
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Multiband FT8 transceiver</title> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/pygments.css"> </head> <body> <div id="header"> <div id="logo"> <a href="/">Back to all apps</a> </div> <div id="menu"> <a href="https://github.com/pavel-demin/red-pitaya-notes" target="_blank">Source</a> <a href="https://github.com/pavel-demin/red-pitaya-notes/issues" target="_blank">Issues</a> </div> </div> <div id="content"> <h1>Multiband FT8 transceiver</h1> <p>The Red Pitaya multiband FT8 transceiver is ready.</p> <p>More details about this application can be found at <a href="http://pavel-demin.github.io/red-pitaya-notes/sdr-transceiver-ft8/" target="_blank">this link</a>.</p> </div> </body> </html>
_includes/footer.html
vilaitororo/vilaitororo.github.io
<footer class="site-footer"> <div class="wrapper"> <p>Este áudioguia é dedicado à memória de Dênis Rodrigo de Almeida Bispo (1979-2016)</p> <div class="partner-logos"> <!-- replace logos here! --> <a href="http://vilaitororo.org.br/" target="_blank"> <img class="logo" src="{{ site.baseurl }}/assets/img/logo/logo_vilaitororocanteiroaberto_v_fff_t.png"/> </a> </div> <p><a href="/creditos/">Créditos</a></p> </div> </footer>
src/app/components/comp-2679/comp-2679.component.html
angular/angular-cli-stress-test
<p> comp-2679 works! </p>
public/Windows 10 x64 (18363.778)/_ARBITER_INTERFACE.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.778)</h4><br> <h2>_ARBITER_INTERFACE</h2> <font face="arial"> +0x000 Size : Uint2B<br> +0x002 Version : Uint2B<br> +0x008 Context : Ptr64 Void<br> +0x010 InterfaceReference : Ptr64 void <br> +0x018 InterfaceDereference : Ptr64 void <br> +0x020 ArbiterHandler : Ptr64 long <br> +0x028 Flags : Uint4B<br> </font></body></html>
archives.html
beordle/beordle.github.com
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Kinton</title> <link rel="stylesheet" href="/theme/css/main.css" /> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body id="index" class="home"> <header id="banner" class="body"> <h1><a href="/">Kinton </a></h1> <nav><ul> <li><a href="/category/review.html">Review</a></li> </ul></nav> </header><!-- /#banner --> <section id="content" class="body"> <h1>Archives for Kinton</h1> <dl> <dt>日 02 九月 2012</dt> <dd><a href="/huo-de-tian-jin-shi-nan-kai-qu-suo-you-xue-sheng-de-tou-xiang.html">获得天津市南开区所有学生的头像</a></dd> <dt>五 03 十二月 2010</dt> <dd><a href="/my-first-review.html">My First Review</a></dd> </dl> </section> <section id="extras" class="body"> <div class="blogroll"> <h2>blogroll</h2> <ul> <li><a href="http://getpelican.com/">Pelican</a></li> <li><a href="http://python.org/">Python.org</a></li> <li><a href="http://jinja.pocoo.org/">Jinja2</a></li> <li><a href="#">You can modify those links in your config file</a></li> </ul> </div><!-- /.blogroll --> <div class="social"> <h2>social</h2> <ul> <li><a href="#">You can add links in your config file</a></li> <li><a href="#">Another social link</a></li> </ul> </div><!-- /.social --> </section><!-- /#extras --> <footer id="contentinfo" class="body"> <address id="about" class="vcard body"> Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>. </address><!-- /#about --> <p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p> </footer><!-- /#contentinfo --> </body> </html>
templates/index.html
KnightHawk3/SteamAvg
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Steam Average</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="/static/css/bootstrap.css" rel="stylesheet"> <style type="text/css"> body { padding-top: 60px; padding-bottom: 40px; } #urlWarning { display: none; } </style> <link href="/static/css/bootstrap-responsive.css" rel="stylesheet"> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="navbar navbar-inverse 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="/">Steam Average</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="active"><a href="/">Home</a></li> <li><a href="https://github.com/KnightHawk3/SteamAvg">Source</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> </div> <div class="container"> <div class="hero-unit"> <h1>Enter a STEAMID</h1> <p>Input a STEAMID to find out the metacritic average of the game library.</p> <div class="input-append"> <form action="/queue" method="POST" id="urlForm"> <input class="input-xxlarge" id="idInput" name="id" type="id" value="76561198019392997"> <button class="btn" type="button" id="urlButton">Fetch</button> </form> </div> <p id="idWarning">Please enter the ID for the feed you wish to fetch.</p> <h3>Sample ID's</h3> <ul> <li><code>76561198045250473</code> 66 Games.</li> <li><code>76561198019392997</code> 43 Games.</li> <li><code>76561198025500278</code> 137 Games.</li> </ul> </div> </div> <!-- /container --> <script src="/static/js/jquery.min.js"></script> <script src="/static/js/bootstrap.min.js"></script> <script> $(document).ready(function(){ $("#urlButton").click(function() { $("#urlForm").submit(); }); $("#urlForm").submit(function() { if ($("#urlInput").val() == "") { $("#urlWarning").show(); return false; } return true; }); $(".sample-feed").click(function(e) { e.preventDefault(); $("#urlInput").val($(this).attr('href')); $("#urlForm").submit(); }); }); </script> </body> </html>
result/M.1419181701.A.334.html
iultimatez/PTTScraper
<!DOCTYPE html><html><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>[問卦] 遊戲王最經典的決鬥是? - 看板 Gossiping - 批踢踢實業坊</title> <meta name="robots" content="all"> <meta name="keywords" content="Ptt BBS 批踢踢"> <meta name="description" content=" 童年經過多次遊戲王重播的洗禮 儘管年代已久 "> <meta property="og:site_name" content="Ptt 批踢踢實業坊"> <meta property="og:title" content="[問卦] 遊戲王最經典的決鬥是?"> <meta property="og:description" content=" 童年經過多次遊戲王重播的洗禮 儘管年代已久 "> <link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs-common.css"> <link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs.css" media="screen"> <link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/pushstream.css" media="screen"> <link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs-print.css" media="print"> <script type="text/javascript" async="" src="https://apis.google.com/js/plusone.js"></script><script id="facebook-jssdk" src="//connect.facebook.net/en_US/all.js#xfbml=1"></script><script type="text/javascript" async="" src="https://ssl.google-analytics.com/ga.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="//images.ptt.cc/v2.10/bbs.js"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-32365737-1']); _gaq.push(['_setDomainName', 'ptt.cc']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script> <div id="topbar-container"> <div id="topbar" class="bbs-content"> <a id="logo" href="/">批踢踢實業坊</a> <span>›</span> <a class="board" href="/bbs/Gossiping/index.html"><span class="board-label">看板 </span>Gossiping</a> <a class="right small" href="/about.html">關於我們</a> <a class="right small" href="/contact.html">聯絡資訊</a> </div> </div> <div id="navigation-container"> <div id="navigation" class="bbs-content"> <a class="board" href="/bbs/Gossiping/index.html">返回看板</a> <div class="bar"></div> <div class="share"> <span>分享</span> <div class="fb-like" data-send="false" data-layout="button_count" data-width="90" data-show-faces="false" data-href="http://www.ptt.cc/bbs/Gossiping/M.1419181701.A.334.html"></div> <div class="g-plusone" data-size="medium"></div> <script type="text/javascript"> window.___gcfg = {lang: 'zh-TW'}; (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> </div> </div> </div> <div id="main-container"> <div id="main-content" class="bbs-screen bbs-content"><div class="article-metaline"><span class="article-meta-tag">作者</span><span class="article-meta-value">AssetDebt (廢文 永無止境)</span></div><div class="article-metaline-right"><span class="article-meta-tag">看板</span><span class="article-meta-value">Gossiping</span></div><div class="article-metaline"><span class="article-meta-tag">標題</span><span class="article-meta-value">[問卦] 遊戲王最經典的決鬥是?</span></div><div class="article-metaline"><span class="article-meta-tag">時間</span><span class="article-meta-value">Mon Dec 22 01:08:18 2014</span></div> 童年經過多次遊戲王重播的洗禮 儘管年代已久 其中的場場神抽卻是歷歷在目 個人最喜愛歐西里斯的天空龍+復活軟泥那場 不曉得大家公認的遊戲王經典決鬥是? ? ? -- <span class="f2">※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 125.227.8.43 </span><span class="f2">※ 文章網址: <a href="http://www.ptt.cc/bbs/Gossiping/M.1419181701.A.334.html" target="_blank" rel="nofollow">http://www.ptt.cc/bbs/Gossiping/M.1419181701.A.334.html</a> </span><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">sugizo0</span><span class="f3 push-content">: 初音那場</span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">BlueBird5566</span><span class="f3 push-content">: 神豬vs肥豬</span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">O10lOl01O</span><span class="f3 push-content">: 孔雀舞被幹那場</span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">index4567</span><span class="f3 push-content">: 當然是夜曲跟馬利克</span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Ho1liday</span><span class="f3 push-content">: 燃燒吧!火鳥!</span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">sx4152</span><span class="f3 push-content">: <a href="https://www.youtube.com/watch?v=cNE6FUFfCKA" target="_blank" rel="nofollow">https://www.youtube.com/watch?v=cNE6FUFfCKA</a></span><span class="push-ipdatetime"> 12/22 01:08 </span></div><div class="richcontent"><iframe class="youtube-player" type="text/html" width="640" height="385" src="//www.youtube.com/embed/cNE6FUFfCKA" frameborder="0"></iframe></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">ntust661</span><span class="f3 push-content">: 個人喜愛魔物貨車跟炎帝</span><span class="push-ipdatetime"> 12/22 01:09 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Serenede</span><span class="f3 push-content">: 最後一場 打爆三神</span><span class="push-ipdatetime"> 12/22 01:09 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">zx97009</span><span class="f3 push-content">: 黑暗大法師幹掉青眼究極龍那場</span><span class="push-ipdatetime"> 12/22 01:09 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">heavensun</span><span class="f3 push-content">: 小精靈打敗三隻青眼白龍, 打敗只會靠王牌的海馬</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">shine32025</span><span class="f3 push-content">: 相信牌組</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">BirthdayBoy</span><span class="f3 push-content">: 巴薩卡嗽魯!!!!!!!!!</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Chikarable</span><span class="f3 push-content">: 左左右右Aaabbbbbxyzzzzzzzzz上上下下</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">StarTouching</span><span class="f3 push-content">: 黑魔導女孩被幹那場</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">TED781120</span><span class="f3 push-content">: 漫畫:決鬥都市 遊戲vs海馬 5D's:遊星vs傑克</span><span class="push-ipdatetime"> 12/22 01:10 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">sigmaaldrich</span><span class="f3 push-content">: 城之內vs羽蛾</span><span class="push-ipdatetime"> 12/22 01:11 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">urilin840302</span><span class="f3 push-content">: 戰鬥城市準決賽 遊戲vs海馬</span><span class="push-ipdatetime"> 12/22 01:11 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">taipeiliu</span><span class="f3 push-content">: 犧牲成之內</span><span class="push-ipdatetime"> 12/22 01:11 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">qwqwaas</span><span class="f3 push-content">: 覺得跟海馬弟弟鬥獸棋最好看</span><span class="push-ipdatetime"> 12/22 01:11 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">woaifafewen</span><span class="f3 push-content">: Sipaloy vs wangfan3</span><span class="push-ipdatetime"> 12/22 01:12 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">akira00150</span><span class="f3 push-content">: 怪獸控制器那段</span><span class="push-ipdatetime"> 12/22 01:12 </span></div><div class="push"><span class="f1 hl push-tag">噓 </span><span class="f3 hl push-userid">tensinya</span><span class="f3 push-content">: 對貝卡斯啊 那陣子叫人都叫xxboy</span><span class="push-ipdatetime"> 12/22 01:12 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">theeeht</span><span class="f3 push-content">: 城堡掉下來那場</span><span class="push-ipdatetime"> 12/22 01:13 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">sa6211</span><span class="f3 push-content">: 決鬥吧!海馬boy</span><span class="push-ipdatetime"> 12/22 01:13 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">holymoon99</span><span class="f3 push-content">: AIBO vs 王樣+社長+凡骨+顏藝</span><span class="push-ipdatetime"> 12/22 01:13 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">dulinove</span><span class="f3 push-content">: 一個勇者同時挑戰 遊戲 十代 遊星那一集</span><span class="push-ipdatetime"> 12/22 01:13 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Karter</span><span class="f3 push-content">: 再戦!遊戯・獏良vs社長・凡骨 雖然永遠看不到結局了</span><span class="push-ipdatetime"> 12/22 01:14 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">fumigation</span><span class="f3 push-content">: 遊星對無限地獄三叉戟</span><span class="push-ipdatetime"> 12/22 01:15 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">james226000</span><span class="f3 push-content">: 居然沒人推抽牌吧 遊戲boy</span><span class="push-ipdatetime"> 12/22 01:16 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">same60710</span><span class="f3 push-content">: 青眼究極龍被長毛象墳場融合的那場 看到差點笑出來</span><span class="push-ipdatetime"> 12/22 01:17 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">same60710</span><span class="f3 push-content">: 還可以這樣搞的喔?</span><span class="push-ipdatetime"> 12/22 01:17 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">BorisDiaw3</span><span class="f3 push-content">: 遊戲Boy~~~~ 超經典的</span><span class="push-ipdatetime"> 12/22 01:18 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">fastmonster</span><span class="f3 push-content">: 孔雀舞 黑魔導女孩 磨豆腐那場</span><span class="push-ipdatetime"> 12/22 01:19 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">arakikawa</span><span class="f3 push-content">: 奧雷卡爾克斯的結界</span><span class="push-ipdatetime"> 12/22 01:19 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">NBLullaby</span><span class="f3 push-content">: 有黑魔導女孩的決鬥</span><span class="push-ipdatetime"> 12/22 01:19 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">fluffyradish</span><span class="f3 push-content">: HA☆NA☆SE</span><span class="push-ipdatetime"> 12/22 01:19 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">DarthVader</span><span class="f3 push-content">: 貝卡斯跟馬利克</span><span class="push-ipdatetime"> 12/22 01:20 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Karter</span><span class="f3 push-content">: 原作根本比不上二創啊 二創真的太強 二創才是本體</span><span class="push-ipdatetime"> 12/22 01:21 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">yshii</span><span class="f3 push-content">: 遊戲對海馬 戰鬥城市</span><span class="push-ipdatetime"> 12/22 01:24 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">lastphil</span><span class="f3 push-content">: 類天流星龍那集</span><span class="push-ipdatetime"> 12/22 01:26 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">ldeathkiller</span><span class="f3 push-content">: 圭平瀨人被幹那場</span><span class="push-ipdatetime"> 12/22 01:27 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">bckkt</span><span class="f3 push-content">: 馬利克跟貘涼了</span><span class="push-ipdatetime"> 12/22 01:43 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">theurgy</span><span class="f3 push-content">: 杏子對遊戲那場</span><span class="push-ipdatetime"> 12/22 02:00 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">rinsoukan</span><span class="f3 push-content">: 黑暗大法師 VS 青眼究極龍</span><span class="push-ipdatetime"> 12/22 02:01 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">cz999888</span><span class="f3 push-content">: 速攻魔法発動 バーサーカーソウル!!!</span><span class="push-ipdatetime"> 12/22 02:06 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">j20006640</span><span class="f3 push-content">: 城之內VS馬利克</span><span class="push-ipdatetime"> 12/22 02:11 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">ahaw99</span><span class="f3 push-content">: 魯夫對沙鱷魚那場</span><span class="push-ipdatetime"> 12/22 02:11 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">ppp2026034</span><span class="f3 push-content">: 孔雀舞對馬利克</span><span class="push-ipdatetime"> 12/22 02:13 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">whyhsu</span><span class="f3 push-content">: 遊戲vs遊戲</span><span class="push-ipdatetime"> 12/22 02:19 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">puppy8321</span><span class="f3 push-content">: 小精靈增值超有印像! 還有童話世界那場</span><span class="push-ipdatetime"> 12/22 02:36 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">wchwc</span><span class="f3 push-content">: game boy</span><span class="push-ipdatetime"> 12/22 02:37 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">puppy8321</span><span class="f3 push-content">: 還有個人覺得龍門骰那集很有趣 但一堆同學不記得QQ</span><span class="push-ipdatetime"> 12/22 02:38 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">jason72830</span><span class="f3 push-content">: 羽蛾被爆殺那集 抽牌攻擊*7</span><span class="push-ipdatetime"> 12/22 03:07 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">dakkk</span><span class="f3 push-content">: 馬利克用循環牌組加天空龍vs遊戲 結果一回合牌就抽光了</span><span class="push-ipdatetime"> 12/22 03:18 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">angel3632005</span><span class="f3 push-content">: 抽卡吧!遊戲boy</span><span class="push-ipdatetime"> 12/22 03:36 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">zamus43</span><span class="f3 push-content">: 孔雀舞被a到失神那邊</span><span class="push-ipdatetime"> 12/22 04:56 </span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">momo504131</span><span class="f3 push-content">: 跟我打的那一場</span><span class="push-ipdatetime"> 12/22 05:50 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">devil0915</span><span class="f3 push-content">: 外傳裡遊戲與海馬對決杜馬那集</span><span class="push-ipdatetime"> 12/22 08:54 </span></div><div class="push"><span class="f1 hl push-tag">噓 </span><span class="f3 hl push-userid">frank60116</span><span class="f3 push-content">: 都馬是聽武藤遊戲在那邊唬爛</span><span class="push-ipdatetime"> 12/22 09:12 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">G41271</span><span class="f3 push-content">: 遊戲vs闇之馬力克</span><span class="push-ipdatetime"> 12/22 09:28 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Fantasyhisai</span><span class="f3 push-content">: 劇場版三代一起打王,主角群超扯XD</span><span class="push-ipdatetime"> 12/22 09:49 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">KD007</span><span class="f3 push-content">: 埃及時期與貘良了那幾場吧</span><span class="push-ipdatetime"> 12/22 10:25 </span></div><div class="push"><span class="f1 hl push-tag">噓 </span><span class="f3 hl push-userid">rockqq0240</span><span class="f3 push-content">: 好臭</span><span class="push-ipdatetime"> 12/22 10:42 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">chirssu</span><span class="f3 push-content">: 洗腦城之內VS遊戲</span><span class="push-ipdatetime"> 12/22 12:27 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">SkY86888</span><span class="f3 push-content">: ATM vs Also</span><span class="push-ipdatetime"> 12/22 13:52 </span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">e90635</span><span class="f3 push-content">: 黑暗大法師被羽蛾丟海裡那集 是我一定叫他賠錢</span><span class="push-ipdatetime"> 12/22 13:55 </span></div></div> <div id="article-polling" data-pollurl="/poll/Gossiping/M.1419181701.A.334.html?cacheKey=2052-1308721178&amp;offset=7128&amp;offset-sig=cd4394441ddbc564f335b5824b1cda2ba4013f13" data-longpollurl="/v1/longpoll?id=a3b91f641417d0a5c702af9cb4385489172fd8f9" data-offset="7128">推文自動更新已關閉</div> <div class="bbs-screen bbs-footer-message">本網站已依台灣網站內容分級規定處理。此區域為限制級,未滿十八歲者不得瀏覽。</div> </div> </body></html>
assets/materialize/form-elements.html
MiftahulxHuda/rekon
<!DOCTYPE html> <html lang="en"> <!--================================================================================ Item Name: Materialize - Material Design Admin Template Version: 2.2 Author: GeeksLabs Author URL: http://www.themeforest.net/user/geekslabs ================================================================================ --> <!-- Mirrored from demo.geekslabs.com/materialize/v2.2/layout01/form-elements.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 11 Oct 2015 05:24:01 GMT --> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="msapplication-tap-highlight" content="no"> <meta name="description" content="Materialize is a Material Design Admin Template,It's modern, responsive and based on Material Design by Google. "> <meta name="keywords" content="materialize, admin template, dashboard template, flat admin template, responsive admin template,"> <title>Materialize - Material Design Admin Template</title> <!-- Favicons--> <link rel="icon" href="images/favicon/favicon-32x32.png" sizes="32x32"> <!-- Favicons--> <link rel="apple-touch-icon-precomposed" href="images/favicon/apple-touch-icon-152x152.png"> <!-- For iPhone --> <meta name="msapplication-TileColor" content="#00bcd4"> <meta name="msapplication-TileImage" content="images/favicon/mstile-144x144.png"> <!-- For Windows Phone --> <!-- CORE CSS--> <link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"> <link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"> <!-- Custome CSS--> <link href="css/custom-style.css" type="text/css" rel="stylesheet" media="screen,projection"> <!-- INCLUDED PLUGIN CSS ON THIS PAGE --> <link href="css/prism.css" type="text/css" rel="stylesheet" media="screen,projection"> <link href="js/plugins/perfect-scrollbar/perfect-scrollbar.css" type="text/css" rel="stylesheet" media="screen,projection"> <link href="js/plugins/chartist-js/chartist.min.css" type="text/css" rel="stylesheet" media="screen,projection"> </head> <body> <!-- Start Page Loading --> <div id="loader-wrapper"> <div id="loader"></div> <div class="loader-section section-left"></div> <div class="loader-section section-right"></div> </div> <!-- End Page Loading --> <!-- //////////////////////////////////////////////////////////////////////////// --> <!-- START HEADER --> <header id="header" class="page-topbar"> <!-- start header nav--> <div class="navbar-fixed"> <nav class="cyan"> <div class="nav-wrapper"> <ul class="left"> <li><h1 class="logo-wrapper"><a href="index-2.html" class="brand-logo darken-1"><img src="images/materialize-logo.png" alt="materialize logo"></a> <span class="logo-text">Materialize</span></h1></li> </ul> <div class="header-search-wrapper hide-on-med-and-down"> <i class="mdi-action-search"></i> <input type="text" name="Search" class="header-search-input z-depth-2" placeholder="Explore Materialize"/> </div> <ul class="right hide-on-med-and-down"> <li><a href="javascript:void(0);" class="waves-effect waves-block waves-light toggle-fullscreen"><i class="mdi-action-settings-overscan"></i></a> </li> <li><a href="javascript:void(0);" class="waves-effect waves-block waves-light"><i class="mdi-navigation-apps"></i></a> </li> <li><a href="javascript:void(0);" class="waves-effect waves-block waves-light"><i class="mdi-social-notifications"></i></a> </li> <li><a href="#" data-activates="chat-out" class="waves-effect waves-block waves-light chat-collapse"><i class="mdi-communication-chat"></i></a> </li> </ul> </div> </nav> </div> <!-- end header nav--> </header> <!-- END HEADER --> <!-- //////////////////////////////////////////////////////////////////////////// --> <!-- START MAIN --> <div id="main"> <!-- START WRAPPER --> <div class="wrapper"> <!-- START LEFT SIDEBAR NAV--> <aside id="left-sidebar-nav"> <ul id="slide-out" class="side-nav fixed leftside-navigation"> <li class="user-details cyan darken-2"> <div class="row"> <div class="col col s4 m4 l4"> <img src="images/avatar.jpg" alt="" class="circle responsive-img valign profile-image"> </div> <div class="col col s8 m8 l8"> <ul id="profile-dropdown" class="dropdown-content"> <li><a href="#"><i class="mdi-action-face-unlock"></i> Profile</a> </li> <li><a href="#"><i class="mdi-action-settings"></i> Settings</a> </li> <li><a href="#"><i class="mdi-communication-live-help"></i> Help</a> </li> <li class="divider"></li> <li><a href="#"><i class="mdi-action-lock-outline"></i> Lock</a> </li> <li><a href="#"><i class="mdi-hardware-keyboard-tab"></i> Logout</a> </li> </ul> <a class="btn-flat dropdown-button waves-effect waves-light white-text profile-btn" href="#" data-activates="profile-dropdown">John Doe<i class="mdi-navigation-arrow-drop-down right"></i></a> <p class="user-roal">Administrator</p> </div> </div> </li> <li class="bold"><a href="index-2.html" class="waves-effect waves-cyan"><i class="mdi-action-dashboard"></i> Dashboard</a> </li> <li class="bold"><a href="app-email.html" class="waves-effect waves-cyan"><i class="mdi-communication-email"></i> Mailbox <span class="new badge">4</span></a> </li> <li class="bold"><a href="app-calendar.html" class="waves-effect waves-cyan"><i class="mdi-editor-insert-invitation"></i> Calender</a> </li> <li class="no-padding"> <ul class="collapsible collapsible-accordion"> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-action-invert-colors"></i> CSS</a> <div class="collapsible-body"> <ul> <li><a href="css-typography.html">Typography</a> </li> <li><a href="css-icons.html">Icons</a> </li> <li><a href="css-shadow.html">Shadow</a> </li> <li><a href="css-media.html">Media</a> </li> <li><a href="css-sass.html">Sass</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-image-palette"></i> UI Elements</a> <div class="collapsible-body"> <ul> <li><a href="ui-buttons.html">Buttons</a> </li> <li><a href="ui-badges.html">Badges</a> </li> <li><a href="ui-cards.html">Cards</a> </li> <li><a href="ui-collections.html">Collections</a> </li> <li><a href="ui-accordions.html">Accordian</a> </li> <li><a href="ui-tabs.html">Tabs</a> </li> <li><a href="ui-navbar.html">Navbar</a> </li> <li><a href="ui-pagination.html">Pagination</a> </li> <li><a href="ui-preloader.html">Preloader</a> </li> <li><a href="ui-modals.html">Modals</a> </li> <li><a href="ui-media.html">Media</a> </li> <li><a href="ui-toasts.html">Toasts</a> </li> <li><a href="ui-tooltip.html">Tooltip</a> </li> <li><a href="ui-waves.html">Waves</a> </li> </ul> </div> </li> <li class="bold"><a href="app-widget.html" class="waves-effect waves-cyan"><i class="mdi-device-now-widgets"></i> Widgets <span class="new badge"></span></a> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-editor-border-all"></i> Tables</a> <div class="collapsible-body"> <ul> <li><a href="table-basic.html">Basic Tables</a> </li> <li><a href="table-data.html">Data Tables</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-editor-insert-comment active"></i> Forms</a> <div class="collapsible-body"> <ul> <li class="active"><a href="form-elements.html">Form Elements</a> </li> <li><a href="form-layouts.html">Form Layouts</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-social-pages"></i> Pages</a> <div class="collapsible-body"> <ul> <li><a href="page-contact.html">Contact Page</a> </li> <li><a href="page-todo.html">ToDos</a> </li> <li><a href="page-blog-1.html">Blog Type 1</a> </li> <li><a href="page-blog-2.html">Blog Type 2</a> </li> <li><a href="page-404.html">404</a> </li> <li><a href="page-500.html">500</a> </li> <li><a href="page-blank.html">Blank</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-action-shopping-cart"></i> eCommers</a> <div class="collapsible-body"> <ul> <li><a href="eCommerce-products-page.html">Products Page</a> </li> <li><a href="eCommerce-pricing.html">Pricing Table</a> </li> <li><a href="eCommerce-invoice.html">Invoice</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-image-image"></i> Medias</a> <div class="collapsible-body"> <ul> <li><a href="media-gallary-page.html">Gallery Page</a> </li> <li><a href="media-hover-effects.html">Image Hover Effects</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-action-account-circle"></i> User</a> <div class="collapsible-body"> <ul> <li><a href="user-profile-page.html">User Profile</a> </li> <li><a href="user-login.html">Login</a> </li> <li><a href="user-register.html">Register</a> </li> <li><a href="user-forgot-password.html">Forgot Password</a> </li> <li><a href="user-lock-screen.html">Lock Screen</a> </li> <li><a href="user-session-timeout.html">Session Timeout</a> </li> </ul> </div> </li> <li class="bold"><a class="collapsible-header waves-effect waves-cyan"><i class="mdi-editor-insert-chart"></i> Charts</a> <div class="collapsible-body"> <ul> <li><a href="charts-chartjs.html">Chart JS</a> </li> <li><a href="charts-chartist.html">Chartist</a> </li> <li><a href="charts-morris.html">Morris Charts</a> </li> <li><a href="charts-xcharts.html">xCharts</a> </li> <li><a href="charts-flotcharts.html">Flot Charts</a> </li> <li><a href="charts-sparklines.html">Sparkline Charts</a> </li> </ul> </div> </li> </ul> </li> <li class="li-hover"><div class="divider"></div></li> <li class="li-hover"><p class="ultra-small margin more-text">MORE</p></li> <li><a href="css-grid.html"><i class="mdi-image-grid-on"></i> Grid</a> </li> <li><a href="css-color.html"><i class="mdi-editor-format-color-fill"></i> Color</a> </li> <li><a href="css-helpers.html"><i class="mdi-communication-live-help"></i> Helpers</a> </li> <li><a href="changelogs.html"><i class="mdi-action-swap-vert-circle"></i> Changelogs</a> </li> <li class="li-hover"><div class="divider"></div></li> <li class="li-hover"><p class="ultra-small margin more-text">Daily Sales</p></li> <li class="li-hover"> <div class="row"> <div class="col s12 m12 l12"> <div class="sample-chart-wrapper"> <div class="ct-chart ct-golden-section" id="ct2-chart"></div> </div> </div> </div> </li> </ul> <a href="#" data-activates="slide-out" class="sidebar-collapse btn-floating btn-medium waves-effect waves-light hide-on-large-only cyan"><i class="mdi-navigation-menu"></i></a> </aside> <!-- END LEFT SIDEBAR NAV--> <!-- //////////////////////////////////////////////////////////////////////////// --> <!-- START CONTENT --> <section id="content"> <!--breadcrumbs start--> <div id="breadcrumbs-wrapper" class=" grey lighten-3"> <!-- Search for small screen --> <div class="header-search-wrapper grey hide-on-large-only"> <i class="mdi-action-search active"></i> <input type="text" name="Search" class="header-search-input z-depth-2" placeholder="Explore Materialize"> </div> <div class="container"> <div class="row"> <div class="col s12 m12 l12"> <h5 class="breadcrumbs-title">Forms</h5> <ol class="breadcrumb"> <li><a href="index-2.html">Dashboard</a> </li> <li><a href="#">Forms</a> </li> <li class="active">Forms Elements</li> </ol> </div> </div> </div> </div> <!--breadcrumbs end--> <!--start container--> <div class="container"> <div class="section"> <p class="caption">Forms are the standard way to receive user inputted data. The transitions and smoothness of these elements are very important because of the inherent user interaction associated with forms.</p> <div class="divider"></div> <!--Input fields--> <div id="input-fields"> <h4 class="header">Input fields</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Text fields allow user input. The border should light up simply and clearly indicating which field the user is currently editing. You must have a <code class=" language-markup">.input-field</code> div wrapping your input and label. This helps our jQuery animate the label. This is only used in our Input and Textarea form elements.</p> <p>If you don't want the Green and Red validation states, just remove the <code class=" language-markup">validate</code> class from your inputs.</p> </div> <div class="col s12 m8 l9"> <div class="row"> <form class="col s12"> <div class="row"> <div class="input-field col s6"> <input placeholder="Placeholder" id="first_name" type="text" class="validate"> <label for="first_name">First Name</label> </div> <div class="input-field col s6"> <input id="last_name" type="text" class="validate"> <label for="last_name">Last Name</label> </div> </div> <div class="row"> <div class="input-field col s12"> <input disabled value="I am not editable" id="disabled" type="text" class="validate"> <label for="disabled">Disabled</label> </div> </div> <div class="row"> <div class="input-field col s12"> <input id="password" type="password" class="validate"> <label for="password">Password</label> </div> </div> <div class="row"> <div class="input-field col s12"> <input id="email" type="email" class="validate"> <label for="email">Email</label> </div> </div> </form> </div> </div> </div> </div> <div class="divider"></div> <!--Prefilling Text Inputs--> <div id="prefilling-text" class="section"> <h4 class="header">Prefilling Text Inputs</h4> <div class="row"> <div class="col s12 m4 l3"> <p>If you are having trouble with the labels overlapping prefilled content, Try adding <code class=" language-markup">class="active"</code> to the label</p> </div> <div class="col s12 m8 l9"> <div class="row"> <div class="input-field col s6"> <input value="Dr." id="first_name2" type="text" class="validate"> <label class="active" for="first_name2">First Name</label> </div> </div> </div> </div> </div> <div class="divider"></div> <!--Icon Prefixes--> <div id="icon-prefixes" class="section"> <h4 class="header">Icon Prefixes</h4> <div class="row"> <div class="col s12 m4 l3"> <p>You can add an icon prefix to make the form input label even more clear. Just add an icon with the class <code class=" language-markup">prefix</code> before the input and label.</p> </div> <div class="col s12 m8 l9"> <div class="row"> <form class="col s12"> <div class="row"> <div class="input-field col s6"> <i class="mdi-action-account-circle prefix"></i> <input id="icon_prefix3" type="text" class="validate"> <label for="icon_prefix3">First Name</label> </div> <div class="input-field col s6"> <i class="mdi-communication-phone prefix"></i> <input id="icon_telephone" type="tel" class="validate"> <label for="icon_telephone">Telephone</label> </div> </div> </form> </div> </div> </div> </div> <div class="divider"></div> <!--Input Textarea--> <div id="input-textarea" class="section"> <h4 class="header">Textarea</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Textareas allow larger expandable user input. The border should light up simply and clearly indicating which field the user is currently editing. You must have a <code class=" language-markup">.input-field</code> div wrapping your input and label. This helps our jQuery animate the label. This is only used in our Input and Textarea form elements.</p> <p><strong>Textareas will auto resize to the text inside.</strong> </p> </div> <div class="col s12 m8 l9"> <div class="row"> <form class="col s12"> <div class="row"> <div class="input-field col s12"> <textarea id="textarea1" class="materialize-textarea"></textarea> <label for="textarea1">Textarea</label> </div> </div> </form> </div> </div> </div> <div class="row"> <div class="col s12 m4 l3"> <p>You can add an icon prefix to make the form input label even more clear. Just add an icon with the class <code class=" language-markup">prefix</code> before the input and label.</p> </div> <div class="col s12 m8 l9"> <div class="row"> <div class="input-field col s12"> <i class="mdi-editor-mode-edit prefix"></i> <textarea id="icon_prefix2" class="materialize-textarea"></textarea> <label for="icon_prefix2" class="">Message</label> </div> </div> </div> </div> </div> <div class="divider"></div> <!--Input Select--> <div id="input-select" class="section"> <h4 class="header">Input Select</h4> <div class="row"> <div class="col s12 m4 l3"> <p> Select allows user input through specified options. Make sure you wrap it in a <code class=" language-markup">.input-field </code> for proper alignment with other text fields. </p> </div> <div class="col s12 m8 l9"> <div class="input-field col s12"> <label>Materialize Select</label> <select> <option value="" disabled selected>Choose your option</option> <option value="1">Option 1</option> <option value="2">Option 2</option> <option value="3">Option 3</option> </select> </div> </div> </div> <div class="row"> <div class="col s12 m4 l3"> <p>You can add the class <code class=" language-markup">browser-default</code> to get the browser default.</p> </div> <div class="col s12 m8 l9"> <label>Browser Select</label> <select class="browser-default"> <option value="" disabled selected>Choose your option</option> <option value="1">Option 1</option> <option value="2">Option 2</option> <option value="3">Option 3</option> </select> </div> </div> <div class="row"> <div class="col s12 m4 l3"> <p>You can also add <code class=" language-markup">disabled</code> to the select element to make the whole thing disabled. Or if you add <code class=" language-markup">disabled</code> to the options, the individual options will be unselectable. </p> </div> <div class="col s12 m8 l9"> <label>Materialize Disabled</label> <select disabled> <option value="" disabled selected>Choose your option</option> <option value="1">Option 1</option> <option value="2">Option 2</option> <option value="3">Option 3</option> </select> <label>Browser Disabled</label> <select class="browser-default" disabled> <option value="" disabled selected>Choose your option</option> <option value="1">Option 1</option> <option value="2">Option 2</option> <option value="3">Option 3</option> </select> </div> </div> </div> <div class="divider"></div> <!--Radio Buttons--> <div id="input-radio-buttons" class="section"> <h4 class="header">Radio Buttons</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Radio Buttons are used when the user must make only one selection out of a group of items.</p> <p>Add radio buttons to a group by adding the name attribute along with the same corresponding value for each of the radio buttons in the group. Create disabled radio buttons by adding the disabled attribute as shown below.</p> </div> <div class="col s12 m8 l9"> <form action="#"> <p> <input name="group1" type="radio" id="test1" /> <label for="test1">Red</label> </p> <p> <input name="group1" type="radio" id="test2" /> <label for="test2">Yellow</label> </p> <p> <input class="with-gap" name="group1" type="radio" id="test3" /> <label for="test3">Green</label> </p> <p> <input name="group1" type="radio" id="test4" disabled="disabled" /> <label for="test4">Brown</label> </p> </form> </div> </div> </div> <div class="divider"></div> <!--Input Checkboxes--> <div id="input-checkboxes" class="section"> <h4 class="header">Checkboxes</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Checkboxes are used when the user want to make selection out of a group of items.</p> </div> <div class="col s12 m8 l9"> <form action="#"> <p> <input type="checkbox" id="test6" /> <label for="test5">Red</label> </p> <p> <input type="checkbox" id="test9" checked="checked" /> <label for="test6">Yellow</label> </p> <p> <input type="checkbox" class="filled-in" id="filled-in-box" checked="checked" /> <label for="filled-in-box">Filled in</label> </p> <p> <input type="checkbox" id="test7" checked="checked" disabled="disabled" /> <label for="test7">Green</label> </p> <p> <input type="checkbox" id="test8" disabled="disabled" /> <label for="test8">Brown</label> </p> </form> </div> </div> </div> <div class="divider"></div> <!--Input Switches--> <div id="input-switches" class="section"> <h4 class="header">Switches</h4> <div class="row"> <div class="col s12 m4 l3"> <p></p> </div> <div class="col s12 m8 l9"> <!-- Switch --> <div class="switch"> Enabled : <label> Off <input type="checkbox"> <span class="lever"></span> On </label> </div> <br> <!-- Disabled Switch --> <div class="switch"> Diabled : <label> Off <input disabled type="checkbox"> <span class="lever"></span> On </label> </div> </div> </div> </div> <div class="divider"></div> <!--Input File Input--> <div id="input-file-input" class="section"> <h4 class="header">File Input</h4> <div class="row"> <div class="col s12 m4 l3"> <p>If you want to style an input button with a path input we provide this structure.</p> </div> <div class="col s12 m8 l9"> <form action="#"> <div class="file-field input-field"> <input class="file-path validate" type="text" /> <div class="btn"> <span>File</span> <input type="file" /> </div> </div> </form> </div> </div> </div> <div class="divider"></div> <!--Input Range--> <div id="input-range" class="section"> <h4 class="header">Range Selector</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Add a range slider for values with a wide range. This one is set to be a number between 0 and 100.</p> </div> <div class="col s12 m8 l9"> <form action="#"> <p class="range-field"> <input type="range" id="test5" min="0" max="100" /> </p> </form> </div> </div> </div> <div class="divider"></div> <!--Input Date Picker--> <div id="input-date-picker" class="section"> <h4 class="header">Date Picker</h4> <div class="row"> <div class="col s12 m4 l3"> <p>We use a modified version of pickadate.js to create a materialized date picker. Test it out below!</p> </div> <div class="col s12 m8 l9"> <input type="date" class="datepicker"> </div> </div> </div> <div class="divider"></div> <!--Input Character Counter--> <div id="input-character-counter" class="section"> <h4 class="header">Character Counter</h4> <div class="row"> <div class="col s12 m4 l3"> <p>Use a character counter in fields where a character restriction is in place.</p> </div> <div class="col s12 m8 l9"> <div class="row"> <form class="col s12"> <div class="row"> <div class="input-field col s6"> <input id="input_text" type="text" length="10"> <label for="input_text">Input text</label> </div> </div> <div class="row"> <div class="input-field col s12"> <textarea id="textarea2" class="materialize-textarea" length="120"></textarea> <label for="textarea1">Textarea</label> </div> </div> </form> </div> </div> </div> </div> </div> <!-- Floating Action Button --> <div class="fixed-action-btn" style="bottom: 45px; right: 24px;"> <a class="btn-floating btn-large red"> <i class="large mdi-editor-mode-edit"></i> </a> <ul> <li><a href="css-helpers.html" class="btn-floating red"><i class="large mdi-communication-live-help"></i></a></li> <li><a href="app-widget.html" class="btn-floating yellow darken-1"><i class="large mdi-device-now-widgets"></i></a></li> <li><a href="app-calendar.html" class="btn-floating green"><i class="large mdi-editor-insert-invitation"></i></a></li> <li><a href="app-email.html" class="btn-floating blue"><i class="large mdi-communication-email"></i></a></li> </ul> </div> <!-- Floating Action Button --> </div> <!--end container--> </section> <!-- END CONTENT --> <!-- //////////////////////////////////////////////////////////////////////////// --> <!-- START RIGHT SIDEBAR NAV--> <aside id="right-sidebar-nav"> <ul id="chat-out" class="side-nav rightside-navigation"> <li class="li-hover"> <a href="#" data-activates="chat-out" class="chat-close-collapse right"><i class="mdi-navigation-close"></i></a> <div id="right-search" class="row"> <form class="col s12"> <div class="input-field"> <i class="mdi-action-search prefix"></i> <input id="icon_prefix" type="text" class="validate"> <label for="icon_prefix">Search</label> </div> </form> </div> </li> <li class="li-hover"> <ul class="chat-collapsible" data-collapsible="expandable"> <li> <div class="collapsible-header teal white-text active"><i class="mdi-social-whatshot"></i>Recent Activity</div> <div class="collapsible-body recent-activity"> <div class="recent-activity-list chat-out-list row"> <div class="col s3 recent-activity-list-icon"><i class="mdi-action-add-shopping-cart"></i> </div> <div class="col s9 recent-activity-list-text"> <a href="#">just now</a> <p>Jim Doe Purchased new equipments for zonal office.</p> </div> </div> <div class="recent-activity-list chat-out-list row"> <div class="col s3 recent-activity-list-icon"><i class="mdi-device-airplanemode-on"></i> </div> <div class="col s9 recent-activity-list-text"> <a href="#">Yesterday</a> <p>Your Next flight for USA will be on 15th August 2015.</p> </div> </div> <div class="recent-activity-list chat-out-list row"> <div class="col s3 recent-activity-list-icon"><i class="mdi-action-settings-voice"></i> </div> <div class="col s9 recent-activity-list-text"> <a href="#">5 Days Ago</a> <p>Natalya Parker Send you a voice mail for next conference.</p> </div> </div> <div class="recent-activity-list chat-out-list row"> <div class="col s3 recent-activity-list-icon"><i class="mdi-action-store"></i> </div> <div class="col s9 recent-activity-list-text"> <a href="#">Last Week</a> <p>Jessy Jay open a new store at S.G Road.</p> </div> </div> <div class="recent-activity-list chat-out-list row"> <div class="col s3 recent-activity-list-icon"><i class="mdi-action-settings-voice"></i> </div> <div class="col s9 recent-activity-list-text"> <a href="#">5 Days Ago</a> <p>Natalya Parker Send you a voice mail for next conference.</p> </div> </div> </div> </li> <li> <div class="collapsible-header light-blue white-text active"><i class="mdi-editor-attach-money"></i>Sales Repoart</div> <div class="collapsible-body sales-repoart"> <div class="sales-repoart-list chat-out-list row"> <div class="col s8">Target Salse</div> <div class="col s4"><span id="sales-line-1"></span> </div> </div> <div class="sales-repoart-list chat-out-list row"> <div class="col s8">Payment Due</div> <div class="col s4"><span id="sales-bar-1"></span> </div> </div> <div class="sales-repoart-list chat-out-list row"> <div class="col s8">Total Delivery</div> <div class="col s4"><span id="sales-line-2"></span> </div> </div> <div class="sales-repoart-list chat-out-list row"> <div class="col s8">Total Progress</div> <div class="col s4"><span id="sales-bar-2"></span> </div> </div> </div> </li> <li> <div class="collapsible-header red white-text"><i class="mdi-action-stars"></i>Favorite Associates</div> <div class="collapsible-body favorite-associates"> <div class="favorite-associate-list chat-out-list row"> <div class="col s4"><img src="images/avatar.jpg" alt="" class="circle responsive-img online-user valign profile-image"> </div> <div class="col s8"> <p>Eileen Sideways</p> <p class="place">Los Angeles, CA</p> </div> </div> <div class="favorite-associate-list chat-out-list row"> <div class="col s4"><img src="images/avatar.jpg" alt="" class="circle responsive-img online-user valign profile-image"> </div> <div class="col s8"> <p>Zaham Sindil</p> <p class="place">San Francisco, CA</p> </div> </div> <div class="favorite-associate-list chat-out-list row"> <div class="col s4"><img src="images/avatar.jpg" alt="" class="circle responsive-img offline-user valign profile-image"> </div> <div class="col s8"> <p>Renov Leongal</p> <p class="place">Cebu City, Philippines</p> </div> </div> <div class="favorite-associate-list chat-out-list row"> <div class="col s4"><img src="images/avatar.jpg" alt="" class="circle responsive-img online-user valign profile-image"> </div> <div class="col s8"> <p>Weno Carasbong</p> <p>Tokyo, Japan</p> </div> </div> <div class="favorite-associate-list chat-out-list row"> <div class="col s4"><img src="images/avatar.jpg" alt="" class="circle responsive-img offline-user valign profile-image"> </div> <div class="col s8"> <p>Nusja Nawancali</p> <p class="place">Bangkok, Thailand</p> </div> </div> </div> </li> </ul> </li> </ul> </aside> <!-- LEFT RIGHT SIDEBAR NAV--> </div> <!-- END WRAPPER --> </div> <!-- END MAIN --> <!-- //////////////////////////////////////////////////////////////////////////// --> <!-- START FOOTER --> <footer class="page-footer"> <div class="footer-copyright"> <div class="container"> <span>Copyright © 2015 <a class="grey-text text-lighten-4" href="http://themeforest.net/user/geekslabs/portfolio?ref=geekslabs" target="_blank">GeeksLabs</a> All rights reserved.</span> <span class="right"> Design and Developed by <a class="grey-text text-lighten-4" href="http://geekslabs.com/">GeeksLabs</a></span> </div> </div> </footer> <!-- END FOOTER --> <!-- ================================================ Scripts ================================================ --> <!-- jQuery Library --> <script type="text/javascript" src="js/jquery-1.11.2.min.js"></script> <!--materialize js--> <script type="text/javascript" src="js/materialize.js"></script> <!--prism--> <script type="text/javascript" src="js/prism.js"></script> <!--scrollbar--> <script type="text/javascript" src="js/plugins/perfect-scrollbar/perfect-scrollbar.min.js"></script> <!-- chartist --> <script type="text/javascript" src="js/plugins/chartist-js/chartist.min.js"></script> <!--plugins.js - Some Specific JS codes for Plugin Settings--> <script type="text/javascript" src="js/plugins.js"></script> </body> <!-- Mirrored from demo.geekslabs.com/materialize/v2.2/layout01/form-elements.html by HTTrack Website Copier/3.x [XR&CO'2014], Sun, 11 Oct 2015 05:24:01 GMT --> </html>
clean/Linux-x86_64-4.08.1-2.0.5/released/8.11.1/coq-in-coq/8.6.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>coq-in-coq: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.11.1 / coq-in-coq - 8.6.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> coq-in-coq <small> 8.6.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-02-19 08:01:03 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-19 08:01:03 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils coq 8.11.1 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.08.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.08.1 Official release 4.08.1 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 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/coq-in-coq&quot; license: &quot;LGPL 2.1&quot; build: [make] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/CoqInCoq&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.7~&quot;} ] tags: [ &quot;keyword: calculus of constructions&quot; &quot;category: Mathematics/Logic/Type theory&quot; &quot;category: Miscellaneous/Extracted Programs/Type checking unification and normalization&quot; ] authors: [ &quot;Bruno Barras&quot; ] bug-reports: &quot;https://github.com/coq-contribs/coq-in-coq/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/coq-in-coq.git&quot; synopsis: &quot;A formalisation of the Calculus of Construction&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/coq-in-coq/archive/v8.6.0.tar.gz&quot; checksum: &quot;md5=37b1cef052325be11dcff80f35424f58&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-coq-in-coq.8.6.0 coq.8.11.1</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1). The following dependencies couldn&#39;t be met: - coq-coq-in-coq -&gt; coq &lt; 8.7~ -&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-coq-in-coq.8.6.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
index.html
blackwing415/final
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Francis Rivera Winter 2017</title> <meta name="description" content="HTML 5 Template"> <meta name="author" content="Francis Rivera"> <link rel="stylesheet" type="text/css" href="css/reset.css" /> <link rel="stylesheet" type="text/css" href="css/style.css" /> <script type="text/javascript" src="js/modernizr.js"></script> <link href="https://fonts.googleapis.com/css?family=Baloo+Bhaina|Fjalla+One|Rubik+Mono+One" rel="stylesheet"> <!--[if lt IE 9]> <script src="bower_components/html5shiv/dist/html5shiv.js"></script> <![endif]--> </head> <body> <header> <nav> <a href="index.html">Home</a> | <a href="pages/about.html">About</a> </nav> </header> <div id="wrapper"> <div id="outer"> <div id="inner"> <div id="snow"> </div> <div class="begin"> <h1>How far<br/>is the Earth<br/>from the Moon?</h1> </div> <div class="l_cloud_01"> <img src="images/light_cloud.png" alt="Light Cloud"> </div> <div class="float diameter"> <p>The earth has a diameter of 7,917.5mi</p> </div> <div class="earth"> <img src="images/earth.png" alt="Earth"> </div> <div class="rocket"> <img src="images/rocket-02.png" alt="Rocket"> </div> <div class="d_cloud_01"> <img src="images/dark_cloud.png" alt="Dark Cloud"> </div> <div class="float satellite"> <p>The are ~4,256 satellites orbiting the earth</p> </div> <div class="ast_01"> <img src="images/ast_01.png" alt="Big Asteroid"> </div> <div class="ast_02"> <img src="images/ast_02.png" alt="Small Asteroid"> </div> <div class="station"> <div class="iss"> <img src="images/iss.png" alt="ISS"> </div> <div class="float iss2"> <p>The iss space station is 249 mi from the earth</p> </div> </div> <div class="mars"> <div class="d_cloud_02"> <img src="images/dark_cloud.png" alt="Dark Cloud"> </div> <div class="float distance"> <p>The earth is 238,900 miles from the moon</p> </div> <div class="planet"> <img src="images/planet.png" alt="Planet"> </div> </div> <div class="moonfo"> <div class="float days"> <p>It takes 3 days to reach the moon,<br/>but a probe has passed by the moon in 8 hours and 35 minutes</p> </div> <div class="float scroll"> <p>But this long scoll won't take that long....</p> </div> <div class="float evil"> <p>Or will it? (Insert Evil Laugh)</p> </div> </div> <div class="moonthings"> <div class="float arrive"> <p>Oh...here we are.<br/><br/>Welcome to the rock. (Alcatraz refrence)</p> </div> <div class="l_cloud_02"> <img src="images/light_cloud.png" alt="Light Cloud"> </div> <div class="moon"> <img src="images/moon.png" alt="Moon"> </div> <div class="l_cloud_03"> <img src="images/light_cloud.png" alt="Light Cloud"> </div> <div class="ast_05"> <img src="images/ast_01.png" alt="Big Asteroid"> </div> </div> <div class="last"> <div class="float where"> <p>Where are you going? The moon is up there...</p> </div> <div class="end"> <h1>Whelp this is<br/><b class="ender"><u>The End</u></b><br/>Thanks for scrolling!</h1> </div> </div> <div class="galaxy"> <p>A long time ago, in a galaxy far,<br/>far away....</p> </div> <div class="starkiller"> <div class="star"> <img src="images/deathstar.png" alt="Death Star"> </div> </div> <div class="oh"> <h1>uuhhhh.... Nevermind<br/>copyright issues and usage rights lol</h1> </div> </div> </div> </div> <script src="js/final.js"></script> </body> </html>
_includes/_head.html
rudvfaden/rudvfaden.github.io
<meta charset="utf-8"> <title>{% if page.title %}{{ page.title }} &#8211; {% endif %}{{ site.title }}</title> {% if page.excerpt %}<meta name="description" content="{{ page.excerpt | strip_html }}">{% endif %} <meta name="keywords" content="{{ page.tags | join: ', ' }}"> {% if page.author %} {% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %} {% endif %} {% include _open-graph.html %} {% if site.owner.google.verify %}<!-- Webmaster Tools verfication --> <meta name="google-site-verification" content="{{ site.owner.google.verify }}">{% endif %} {% if site.owner.bing-verify %}<meta name="msvalidate.01" content="{{ site.owner.bing-verify }}">{% endif %} {% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %} <link rel="canonical" href="{{ canonical }}"> <link href="{{ site.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed"> <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- For all browsers --> <link rel="stylesheet" href="{{ site.url }}/assets/css/main.css"> <meta http-equiv="cleartype" content="on"> <!-- HTML5 Shiv and Media Query Support --> <!--[if lt IE 9]> <script src="{{ site.url }}/assets/js/vendor/html5shiv.min.js"></script> <script src="{{ site.url }}/assets/js/vendor/respond.min.js"></script> <![endif]--> <!-- Modernizr --> <script src="{{ site.url }}/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script> <link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'> <!-- Icons --> <!-- 16x16 --> <link rel="shortcut icon" href="{{ site.url }}/favicon.ico"> <!-- 32x32 --> <link rel="shortcut icon" href="{{ site.url }}/favicon.png"> <!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices --> <link rel="apple-touch-icon-precomposed" href="{{ site.url }}/images/apple-touch-icon-precomposed.png"> <!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini --> <link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.url }}/images/apple-touch-icon-72x72-precomposed.png"> <!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch --> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.url }}/images/apple-touch-icon-114x114-precomposed.png"> <!-- 144x144 (precomposed) for iPad 3rd and 4th generation --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.url }}/images/apple-touch-icon-144x144-precomposed.png"> <!-- Mathjax --> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ], processEscapes: true }, "HTML-CSS": { availableFonts: ["TeX"] } }); </script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
clean/Linux-x86_64-4.09.1-2.0.6/released/8.7.1+2/coqprime/1.0.2.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>coqprime: 3 m 23 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+2 / coqprime - 1.0.2</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> coqprime <small> 1.0.2 <span class="label label-success">3 m 23 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-11-14 19:55:30 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-14 19:55:30 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 1 Virtual package relying on perl coq 8.7.1+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;thery@sophia.inria.fr&quot; homepage: &quot;https://github.com/thery/coqprime&quot; bug-reports: &quot;https://github.com/thery/coqprime/issues&quot; dev-repo: &quot;git+https://github.com/thery/coqprime.git&quot; license: &quot;LGPL&quot; authors: [&quot;Laurent Théry&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/Coqprime&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.7~&quot; &amp; &lt; &quot;8.8~&quot;} &quot;coq-bignums&quot; ] synopsis: &quot;Certifying prime numbers in Coq&quot; flags: light-uninstall url { src: &quot;https://github.com/thery/coqprime/archive/v8.7.2.zip&quot; checksum: &quot;md5=0a868ef76d67d7c76fd64c2bfb481bbc&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-coqprime.1.0.2 coq.8.7.1+2</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-coqprime.1.0.2 coq.8.7.1+2</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 m 40 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-coqprime.1.0.2 coq.8.7.1+2</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 m 23 s</dd> </dl> <h2>Installation size</h2> <p>Total: 26 M</p> <ul> <li>15 M <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/BasePrimes.glob</code></li> <li>2 M <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/BasePrimes.vo</code></li> <li>1 M <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/BasePrimes.v</code></li> <li>650 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/SMain.vo</code></li> <li>511 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/montgomery.vo</code></li> <li>453 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Mod_op.vo</code></li> <li>355 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/ZEll.vo</code></li> <li>303 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/montgomery.glob</code></li> <li>261 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Pock.vo</code></li> <li>255 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Mod_op.glob</code></li> <li>241 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/NEll.vo</code></li> <li>238 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/SMain.glob</code></li> <li>197 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/ZEll.glob</code></li> <li>192 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PocklingtonCertificat.vo</code></li> <li>172 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Pmod.vo</code></li> <li>167 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/NEll.glob</code></li> <li>153 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/EGroup.vo</code></li> <li>146 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Pock.glob</code></li> <li>143 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/EGroup.glob</code></li> <li>141 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Permutation.vo</code></li> <li>133 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pocklington.vo</code></li> <li>121 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/LucasLehmer.glob</code></li> <li>116 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PocklingtonCertificat.glob</code></li> <li>112 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/GZnZ.vo</code></li> <li>106 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/LucasLehmer.vo</code></li> <li>106 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Lucas.vo</code></li> <li>98 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZSum.vo</code></li> <li>96 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PGroup.vo</code></li> <li>93 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Cyclic.vo</code></li> <li>92 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCAux.vo</code></li> <li>89 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Pmod.glob</code></li> <li>85 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/W.vo</code></li> <li>85 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Lucas.glob</code></li> <li>81 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Zp.vo</code></li> <li>76 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Root.glob</code></li> <li>74 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZSum.glob</code></li> <li>72 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/UList.vo</code></li> <li>72 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCmisc.vo</code></li> <li>67 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ListAux.vo</code></li> <li>63 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pocklington.glob</code></li> <li>63 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/IGroup.vo</code></li> <li>63 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Root.vo</code></li> <li>62 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/SMain.v</code></li> <li>60 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PGroup.glob</code></li> <li>58 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Cyclic.glob</code></li> <li>56 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Zp.glob</code></li> <li>55 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Proth.vo</code></li> <li>54 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Permutation.glob</code></li> <li>47 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pepin.vo</code></li> <li>46 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Bits.vo</code></li> <li>46 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/montgomery.v</code></li> <li>46 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Iterator.vo</code></li> <li>46 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/ZEll.v</code></li> <li>45 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/FGroup.vo</code></li> <li>45 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Euler.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCAux.glob</code></li> <li>44 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ZProgression.vo</code></li> <li>42 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Lagrange.vo</code></li> <li>42 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Mod_op.v</code></li> <li>39 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/IGroup.glob</code></li> <li>37 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/PocklingtonRefl.vo</code></li> <li>37 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/MEll.vo</code></li> <li>36 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/MEll.v</code></li> <li>35 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Zmod.vo</code></li> <li>33 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Pock.v</code></li> <li>32 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/UList.glob</code></li> <li>32 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/GZnZ.glob</code></li> <li>31 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Ppow.vo</code></li> <li>30 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/NEll.v</code></li> <li>29 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/N/NatAux.vo</code></li> <li>29 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Lagrange.glob</code></li> <li>29 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ListAux.glob</code></li> <li>25 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Iterator.glob</code></li> <li>24 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/EGroup.v</code></li> <li>22 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PocklingtonCertificat.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/LucasLehmer.v</code></li> <li>20 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Pmod.v</code></li> <li>19 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/FGroup.glob</code></li> <li>19 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/W.glob</code></li> <li>19 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pepin.glob</code></li> <li>18 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Proth.glob</code></li> <li>17 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Permutation.v</code></li> <li>16 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCmisc.glob</code></li> <li>15 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Lucas.v</code></li> <li>13 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Bits.glob</code></li> <li>13 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ZProgression.glob</code></li> <li>13 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Zp.v</code></li> <li>12 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZSum.v</code></li> <li>12 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/PGroup.v</code></li> <li>12 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Euler.glob</code></li> <li>12 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCAux.v</code></li> <li>11 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pocklington.v</code></li> <li>11 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Zmod.glob</code></li> <li>10 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Cyclic.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/UList.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Root.v</code></li> <li>9 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/IGroup.v</code></li> <li>9 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Tactic/Tactic.vo</code></li> <li>9 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ListAux.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/elliptic/GZnZ.v</code></li> <li>7 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Ppow.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Lagrange.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/W.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/Iterator.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/N/NatAux.glob</code></li> <li>5 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/ZCmisc.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Pepin.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/FGroup.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Proth.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/List/ZProgression.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/MEll.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/PrimalityTest/Euler.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Tactic/Tactic.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/num/Bits.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/N/NatAux.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Zmod.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Tactic/Tactic.glob</code></li> <li>2 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/Z/Ppow.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/PocklingtonRefl.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.09.1/lib/coq/user-contrib/Coqprime/examples/PocklingtonRefl.glob</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-coqprime.1.0.2</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>
general/org/schema/game/client/view/buildhelper/class-use/BuildHelperVar.html
Megacrafter127/SMDoc
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (version 1.7.0_65) on Fri Dec 12 20:26:08 CET 2014 --> <title>Uses of Class org.schema.game.client.view.buildhelper.BuildHelperVar</title> <meta name="date" content="2014-12-12"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.schema.game.client.view.buildhelper.BuildHelperVar"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/schema/game/client/view/buildhelper/BuildHelperVar.html" title="annotation in org.schema.game.client.view.buildhelper">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?org/schema/game/client/view/buildhelper/class-use/BuildHelperVar.html" target="_top">Frames</a></li> <li><a href="BuildHelperVar.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.schema.game.client.view.buildhelper.BuildHelperVar" class="title">Uses of Class<br>org.schema.game.client.view.buildhelper.BuildHelperVar</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../org/schema/game/client/view/buildhelper/BuildHelperVar.html" title="annotation in org.schema.game.client.view.buildhelper">BuildHelperVar</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.schema.game.client.view.buildhelper">org.schema.game.client.view.buildhelper</a></td> <td class="colLast"> <div class="block">This package contains every class related to BuildHelpers.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.schema.game.client.view.buildhelper"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../org/schema/game/client/view/buildhelper/BuildHelperVar.html" title="annotation in org.schema.game.client.view.buildhelper">BuildHelperVar</a> in <a href="../../../../../../../org/schema/game/client/view/buildhelper/package-summary.html">org.schema.game.client.view.buildhelper</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../../org/schema/game/client/view/buildhelper/package-summary.html">org.schema.game.client.view.buildhelper</a> with annotations of type <a href="../../../../../../../org/schema/game/client/view/buildhelper/BuildHelperVar.html" title="annotation in org.schema.game.client.view.buildhelper">BuildHelperVar</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">TorusBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/TorusBuildHelper.html#r">r</a></strong></code> <div class="block">The outer radius of the torus</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">TorusBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/TorusBuildHelper.html#R">R</a></strong></code> <div class="block">The inner radius of the torus</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">CircleBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/CircleBuildHelper.html#R">R</a></strong></code> <div class="block">The radius of the circle</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">EllipsoidBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/EllipsoidBuildHelper.html#xRadius">xRadius</a></strong></code> <div class="block">The radius of this ellipsoid in x-direction</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">TorusBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/TorusBuildHelper.html#xRot">xRot</a></strong></code> <div class="block">The x-rotation of the torus</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">CircleBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/CircleBuildHelper.html#xRot">xRot</a></strong></code> <div class="block">The x-rotation of the circle</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">EllipsoidBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/EllipsoidBuildHelper.html#yRadius">yRadius</a></strong></code> <div class="block">The radius of this ellipsoid in y-direction</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">TorusBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/TorusBuildHelper.html#yRot">yRot</a></strong></code> <div class="block">The y rotation of the torus</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">CircleBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/CircleBuildHelper.html#yRot">yRot</a></strong></code> <div class="block">the y-rotation of the circle</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">EllipsoidBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/EllipsoidBuildHelper.html#zRadius">zRadius</a></strong></code> <div class="block">The radius of this ellipsoid in z-direction</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">TorusBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/TorusBuildHelper.html#zRot">zRot</a></strong></code> <div class="block">The z-rotation of the torus</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>float</code></td> <td class="colLast"><span class="strong">CircleBuildHelper.</span><code><strong><a href="../../../../../../../org/schema/game/client/view/buildhelper/CircleBuildHelper.html#zRot">zRot</a></strong></code> <div class="block">the z-rotation of the circle</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/schema/game/client/view/buildhelper/BuildHelperVar.html" title="annotation in org.schema.game.client.view.buildhelper">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?org/schema/game/client/view/buildhelper/class-use/BuildHelperVar.html" target="_top">Frames</a></li> <li><a href="BuildHelperVar.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
docs/doc/nom/nom/fn.print.html
sbeckeriv/warc_nom_parser
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=../../nom/fn.print.html"> </head> <body> <p>Redirecting to <a href="../../nom/fn.print.html">../../nom/fn.print.html</a>...</p> <script>location.replace("../../nom/fn.print.html" + location.search + location.hash);</script> </body> </html>
project/src/html/proj2/index-tab2.html
huysh3/Web2.0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no"> <meta name="full-screen" content="yes"> <title>Wilson.Hu</title> <link rel="shortcut icon" href="http://courses.cs.washington.edu/courses/cse190m/09sp/homework/1/pie_icon.gif" type="image/x-icon"/> <link rel="stylesheet" href="../../css/style-index.css" media="screen" title="no title"> </head> <body> <div class="container"> <nav class="left-nav center"> <img src="../../img/avatar.jpg" alt="" /> <div class="desc"> <h3>About us</h3> <p> 数字媒体<br>技术基础网页 </p> </div> <div id="nav-list" class="list"> <ul> <li id="basic-skills">主题</li> <li id="defects" class="on">总体介绍</li> <li id="experience">数字视频</li> <li id="coffee">数字音频的简单介绍</li> <li id="contact-me">文本与文本处理的简单介绍</li> </ul> </div> </nav> <div class="detail-content main-content"> <div class="tab2-content"> <header class="title">总体介绍</header> <section class="text"> 什么是数字媒体: 数字媒体是指以二进制数的形式记录、处理、传播、获取过程的信息载体,这些载体包括数字化的文字、图形、图像、声音、视频影像和动画等感觉媒体,和表示这些感觉媒体的表示媒体(编码)等,通称为逻辑媒体,以及存储、传输、显示逻辑媒体的实物媒体。 数字媒体的发展: 中国数字媒体于1995年随着互联网出现开始兴起。 互联网(特别是垂直互联网领域和Web2.0/Web3.0门户),业务成熟。 手机载体(包括2.5G/3G/4G),业务成熟,需要整合资源,如手机杂志,结合了移动互联网与数字媒体的优势,从而使得数字媒体的形式更加新颖丰富。 IPTV互动电视网(今后深入中国家庭信息获取与娱乐生活) 移动数字广播电视网(可用廉价数字广播方法,使得多数有屏幕的电子设备成为电视,基于新的移动数字广播电视制式标准) 2010-2012年,数字媒体在中国会成为中国媒体主流。 数字媒体率先影响中国的80后、90后的年青人群。 数字媒体成为媒体主流后,会与传统传媒交相辉映,共存很长的时间,覆盖不同需求人群。 </section> <footer> <span class="prev"><a href="./index-tab1.html">上一页</a></span> <span class="next"><a href="./index-tab3.html">下一页</a></span> </footer> </div> </div> </div> <script src="http://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script> <script type="text/javascript"> $('#nav-list li').click(function() { $('#nav-list li').removeClass('on') $(this).addClass('on') }) </script> </body> </html>
cookBook/index.html
leyamcir/cookBook
<!DOCTYPE html> <html lang="en"> <head> <!-- Indicate page from which Single Page Application is build --> <base href="/"> <meta charset="UTF-8"> <title>CookBook - Recetas de cocina</title> <!-- Styles --> <link rel="stylesheet" href="node_modules/skeleton-css/css/normalize.css"> <link rel="stylesheet" href="node_modules/skeleton-css/css/skeleton.css"> <link rel="stylesheet" href="styles/cookbook.css"> <!-- Angular --> <script src="node_modules/angular/angular.min.js"></script> <script src="node_modules/@angular/router/angular1/angular_1_router.js"></script> <script src="node_modules/ng-image-picker/ng-image-picker.min.js"></script> <!-- Module configuration script --> <script src="scripts/app.js"></script> <!-- Components --> <script src="scripts/components/my-recipes.js"></script> <script src="scripts/components/new-recipe.js"></script> <script src="scripts/components/ingredients.js"></script> <script src="scripts/components/root.js"></script> <!-- Controllers --> <!--script src="scripts/controllers/recipes-list.js"></script--> <!-- Services --> <script src="scripts/services/recipes-service.js"></script> <!-- Directives --> <script src="scripts/directives/new-element-form.js"></script> <!-- Filters --> <script src="scripts/filters/ingredients-resume.js"></script> <!-- Values --> <script src="scripts/values/properties.js"></script> </head> <body ng-app="cookbook"> <!-- Root component --> <root></root> </body> </html>
public/html5/video_api/video_api.html
chrisweb/chris.lu
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>html5 video API</title> <script> </script> </head> <body> <video preload="auto" width="640" height="360"> <source src="../video_track/bunny.webm" type="video/webm" /> <source src="../video_track/bunny.mp4" type="video/mp4" /> </object> </video> <div> <button onclick="document.getElementById('example').play()">Play the Audio</button> <button onclick="document.getElementById('example').pause()">Pause the Audio</button> <button onclick="document.getElementById('example').volume+=0.1">Increase Volume</button> <button onclick="document.getElementById('example').volume-=0.1">Decrease Volume</button> </div> </body> </html>
src/DateTimePicker.css
juakoloyu/mesas
/* ----------------------------------------------------------------------------- jQuery DateTimePicker - Responsive flat design jQuery DateTime Picker plugin for Web & Mobile Version 0.1.28 Copyright (c)2016 Curious Solutions LLP and Neha Kadam http://curioussolutions.github.io/DateTimePicker https://github.com/CuriousSolutions/DateTimePicker ----------------------------------------------------------------------------- */ .disabled.disabled-date.day { color: #d40800; } .dtpicker-overlay { z-index: 2000; display:none; min-width: 300px; background: rgba(0, 0, 0, 0.2); font-size: 12px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .dtpicker-mobile { position: fixed; top: 0; left: 0; width: 100%; height: 100%; } .dtpicker-overlay * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -ms-box-sizing: border-box; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .dtpicker-bg { width: 100%; height: 100%; font-family: Arial; } .dtpicker-cont { border: 1px solid #ECF0F1; } .dtpicker-mobile .dtpicker-cont { position: relative; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); -o-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); border: none; } .dtpicker-content { margin: 0 auto; padding: 1em 0; max-width: 500px; background: #fff; } .dtpicker-mobile .dtpicker-content { width: 97%; } .dtpicker-subcontent { position: relative; } .dtpicker-header { margin: 0.2em 1em; } .dtpicker-header .dtpicker-title { color: #2980B9; text-align: center; font-size: 1.1em; } .dtpicker-header .dtpicker-close { position: absolute; top: -0.7em; right: 0.3em; padding: 0.5em 0.5em 1em 1em; color: #4b7c9c; font-size: 1.5em; cursor: pointer; } .dtpicker-header .dtpicker-close:hover { color: #4b7c9c; } .dtpicker-header .dtpicker-value { padding: 0.8em 0.2em 0.2em 0.2em; color: #4b7c9c; text-align: center; font-size: 1.4em; } .dtpicker-components { overflow: hidden; margin: 1em 1em; font-size: 1.3em; } .dtpicker-components * { margin: 0; padding: 0; } .dtpicker-components .dtpicker-compOutline { display: inline-block; float: left; } .dtpicker-comp2 { width: 50%; } .dtpicker-comp3 { width: 33.3%; } .dtpicker-comp4 { width: 25%; } .dtpicker-comp5 { width: 20%; } .dtpicker-comp6 { width: 16.66%; } .dtpicker-comp7 { width: 14.285%; } .dtpicker-components .dtpicker-comp { margin: 2%; text-align: center; } .dtpicker-components .dtpicker-comp > * { display: block; height: 30px; color: #2980B9; text-align: center; line-height: 30px; } .dtpicker-components .dtpicker-comp > *:hover { color: #2980B9; } .dtpicker-components .dtpicker-compButtonEnable { opacity: 1; } .dtpicker-components .dtpicker-compButtonDisable { opacity: 0.5; } .dtpicker-components .dtpicker-compButton { background: #FFFFFF; font-size: 140%; cursor: pointer; } .dtpicker-components .dtpicker-compValue { margin: 0.4em 0; width: 100%; border: none; background: #FFFFFF; font-size: 100%; -webkit-appearance: none; -moz-appearance: none; } .dtpicker-overlay .dtpicker-compValue:focus { outline: none; background: #F2FCFF; } .dtpicker-buttonCont { overflow: hidden; margin: 0.2em 1em; } .dtpicker-buttonCont .dtpicker-button { display: block; padding: 0.6em 0; width: 47%; background: #4b7c9c; color: #FFFFFF; text-align: center; font-size: 1.3em; cursor: pointer; } .dtpicker-buttonCont .dtpicker-button:hover { color: #FFFFFF; } .dtpicker-singleButton .dtpicker-button { margin: 0.2em auto; } .dtpicker-twoButtons .dtpicker-buttonSet { float: left; } .dtpicker-twoButtons .dtpicker-buttonClear { float: right; }
physicsEngine/game.css
GMTChan/GMTChan.github.io
#canvas { position: absolute; top: 0; left: 0; z-index: 0; opacity: 0; transition: opacity 1s; } #canvas.fade { opacity: 1; } .introWrap { width: 100vw; height: 100vh; position: absolute; top: 53%; left: 50%; transform: translate(-50%, -50%); cursor: pointer; } .intro { z-index: 2; } .startSVGSize { width: 80%; display: flex; margin: auto; margin-top: 100px; max-width: 1200px; } .stationaryHeroWrapper { width: 100vw; height: 100vh; position: absolute; top: 0px; display: block; } .showMobile { display: none; } .fadeInUp { opacity: 0; animation: 400ms ease-out 0s 1 fadeInUp; -webkit-animation: 400ms ease-out 0s 1 fadeInUp; } .animatedFadeInUp { opacity: 0; } .animated { animation-duration: 400ms; animation-fill-mode: both; -webkit-animation-duration: 400ms; -webkit-animation-fill-mode: both; } .animateDelayTarget { opacity: 0; } @keyframes fadeInUp { from { top: 53%; opacity: 0; } to { top: 50%; opacity: 1; } } @-webkit-keyframes fadeInUp { from { padding-top: 30px; } to { padding-top: 0px; opacity: 1; } } /* MODAL FOR WHEN PLAYER STEPS ON CASE STUDIES */ .modal-wrapper { position: absolute; z-index: -1; top: 0; opacity: 0; width: 100%; height: 100vh; transition: all 0.2s ease-in-out; background-color: transparent; overflow: hidden; } .modal-wrapper.is-open { z-index: 1; opacity: 1; background-color: rgba(0, 0, 0, 0.5); overflow: hidden; animation: pop 0.2s ease; display: block !important; } .close { position: absolute; top: 10px; right: 10px; color: white !important; } .close:focus { outline: 0; } @keyframes pop { 0% { opacity: 0; transform: scale(1.1); } 100% { opacity: 1; transform: scale(1); } } header { position: relative; } /* -- CSS from here on is not needed -- */ .modal-body { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #202124; border-radius: 5px; box-shadow: 10px 10px 40px 0px rgba(0, 0, 0, 1); width: 40%; } .modal-main { padding: 10px; } .modal-contents { display: flex; flex-direction: column; padding: 40px; align-items: center; } #modal-img { margin: 20px; width: 100%; border-radius: 2px; opacity: 0.85; } #modal-text { color: #cfcfcf; font-size: 1.1em; margin: 20px; width: 100%; } #modal-title { color: white; } #modal-cta { border-color: white; border-style: solid; transition: opacity 0.3s ease; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; display: block; width: 200px; text-align: center; margin: 20px auto; opacity: 0.5; } #modal-cta:hover { opacity: 0.8; color: white !important; } @media screen and (max-width: 414px) { .stationaryHeroWrapper { display: none; } .showMobile { display: block; } } @media screen and (max-width: 1100px) { .modal-body { width: 60%; } .startSVGSize { width: 90%; } } @media screen and (max-width: 600px) { .modal-body { width: 80%; } .startSVGSize { width: 100%; } }
src/html-blocks/pages--external/maket.html
MrBrooks/europe
<!-- <div class="mbr-maket"> <img src="img/images/therapy.jpg" alt=""> </div> -->
ja/steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html
bitrise-io/devcenter
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="x-ua-compatible" content="IE=edge" /> <meta name="format-detection" content="telephone=no" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="search" content="algolia" /> <meta name="use.ic" content="no" /> <meta name="tocstandalone" content="no" /> <link rel="canonical" href="https://devcenter.bitrise.io/ja/steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html" /><meta property="og:url" content="https://devcenter.bitrise.io/ja/steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html" /> <meta name="theme" content="2" /> <meta name="search.placeholder" content="" /> <meta name="search.results" content="" /> <meta name="no.search.results" content="" /> <title>Turn on Gradle build profiling - Bitrise Docs</title><meta property="og:title" content="Turn on Gradle build profiling" /><meta property="og:locale" content="ja_JP" /><meta property="og:site_name" content="Bitrise Docs" /><meta property="og:image" content="https://devcenter.bitrise.io/favicon.ico" /><meta property="og:description" content="Bitrise is a Continuous Integration and Delivery (CI/CD) Platform as a Service (PaaS) with a main focus on mobile app development (iOS, Android, React Native, Flutter, and so on). It is a collection of tools and services to help you with the development and automation of your software projects." /> <link rel="stylesheet" type="text/css" href="../../../css/docbook.css" /> <link rel="stylesheet" type="text/css" href="../../../css/font-awesome.css" /> <link rel="stylesheet" type="text/css" href="../../../css/roboto.font.css" /> <link rel="stylesheet" type="text/css" href="../../../css/theme2.css?version=20220308" /> <link rel="stylesheet" type="text/css" href="../../../css/theme2-colors.css?version=20220308" /> <link rel="stylesheet" type="text/css" href="../../../css/content-theme2.css?version=20220308" /> <link rel="stylesheet" type="text/css" href="../../../css/sm-core-css.css" /> <link rel="stylesheet" type="text/css" href="../../../css/sm-simple.css" /> <link rel="stylesheet" type="text/css" href="../../../css/style-print.css" /> <link rel="stylesheet" type="text/css" href="../../../css/style-common.css" /> <link rel="stylesheet" type="text/css" href="../../../css/html5.algoliasearch.css?version=20220308" /> <link rel="stylesheet" type="text/css" href="../../../css/style-modern-tables.css" /> <link rel="stylesheet" type="text/css" href="../../../css/graphical-lists.css" /> <link rel="stylesheet" type="text/css" href="../../../css/layout-custom-style.css?version=20220308" /> <meta name="generator" content="Paligo" /> <link rel="prev" href="-android--run-lint.html" title="(Android) Run Lint" /> <link rel="next" href="-android--run-unit-tests.html" title="(Android) Run unit tests" /> <link rel="icon" href="/favicon.ico" type="image/x-icon" /> </head> <body class="theme2 fixed-toolbar colored-top page-toc current-toc-section-focus" data-spy="scroll" data-target=".section-nav-container" data-offset="100" data-link-prefix="../../"> <header class="site-header"> <nav class="site-header-navbar navbar navbar-fixed-top"> <div class="navbar-container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".site-sidebar" 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> <div id="logotype-container" class="pull-left"> <a class="navbar-brand" href="https://www.bitrise.io" target="_blank" rel="noopener"><img id="logotype-pageheader" src="../../../css/image/corporate-logo.svg" alt="Corporate logotype" data-role="logotype" class="logo" /></a> </div> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="top-nav-menu sm sm-simple"> <li> <a href="https://support.bitrise.io/hc/en-us?utm_source=devcenter&amp;utm_medium=top_cta" class="external-top-nav-link" target="_blank">Go to Support</a> </li> <li> <a href="https://www.bitrise.io/contact?utm_source=website&amp;utm_medium=devcenter&amp;utm_campaign=contact" class="external-top-nav-link" target="_blank">Book a demo</a> </li> </ul> </div> </div> </nav> </header> <div class="site-body"> <div class="site-body-container"> <div class="site-body-row"> <aside class="site-sidebar"> <div class="site-sidebar-header"> <button type="button" class="navbar-toggle" aria-controls="nav-site-sidebar"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><a href="https://www.bitrise.io" target="_blank" rel="noopener"><img id="logotype-pageheader" src= "../../../css/image/corporate-logo.svg" alt="Corporate logotype" data-role="logotype" class="logo" /></a> </div> <ul class="toc nav nav-site-sidebar"> <li> <a href="../../getting-started.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-9a2b4c43-179d-565a-f83c-6c5be7ea8e03" data-legacy-id="UUID-ba2dbb72-ce4f-b763-6e32-f60fc46f54e7" data-permalink="getting-started.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class= "glyphicon"></span> 入門</a> <ul> <li> <a href="../../getting-started/migrating-to-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-84d717b2-29a0-3c37-bc73-674022db721b" data-legacy-id="UUID-9b9067bc-f8b8-279c-d25a-099cb3c7f3e6" data-permalink="getting-started/migrating-to-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> Bitriseへの移行</a> <ul> <li> <a href="../../getting-started/migrating-to-bitrise/migrating-from-jenkins-to-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-a94d0cf8-018a-53cb-6206-1da2bcc4fdf1" data-legacy-id="UUID-f1a2a395-0ecd-ca76-444d-367b22c8ad91" data-permalink= "getting-started/migrating-to-bitrise/migrating-from-jenkins-to-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">JenkinsからBitriseへの移行</a> </li> </ul> </li> <li> <a href="../../getting-started/signing-up-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-545a2ebf-0220-d38a-26d6-a1627636e966" data-legacy-id="UUID-a1e20f66-0c9c-79b7-7936-9585028ae73c" data-permalink="getting-started/signing-up-for-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseにサインアップする</a> <ul></ul> </li> <li> <a href="../../getting-started/creating-your-first-workspace.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-workspaces-rel" data-origin-id="UUID-eba05717-4fe7-5ebc-64f9-e689bffff030" data-legacy-id="UUID-c54d4fa8-5398-1969-3724-e3d697d0b18e" data-permalink="getting-started/creating-your-first-workspace.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">最初のワークスペースの作成</a> </li> <li> <a href="../../getting-started/adding-your-first-app.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d0079852-0403-15f4-3828-c0205f0d21ce" data-legacy-id="UUID-c9904774-960e-0e41-1dcc-e17ebb7a9cc6" data-permalink="getting-started/adding-your-first-app.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">最初のアプリを追加する</a> </li> <li> <a href="../../getting-started/getting-started-with-ios-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-ios taxonomy-related-links-taxonomies-ios-rel" data-origin-id="UUID-f71aa52b-0097-a692-60ed-94b0e399d2a1" data-legacy-id= "UUID-19c1635c-1558-c3e1-f52a-720832ae2aa6" data-permalink="getting-started/getting-started-with-ios-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">iOSアプリ入門</a> <ul></ul> </li> <li> <a href="../../getting-started/getting-started-with-android-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-android taxonomy-related-links-taxonomies-android-rel original-topic original-topic" data-origin-id= "UUID-9ecfeed4-c9ce-dbec-45f0-6d7af933d514" data-legacy-id="UUID-1ee05462-efa0-7c7f-5923-a209af66031c" data-permalink="getting-started/getting-started-with-android-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Androidアプリ入門</a> <ul></ul> </li> <li> <a href="../../getting-started/getting-started-with-react-native-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-68434c3f-aff3-9666-7817-728bf714b1c4" data-legacy-id= "UUID-890c4302-c957-2869-6808-da5e3e2ecdcb" data-permalink="getting-started/getting-started-with-react-native-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ReactNativeアプリの使用を開始する</a> <ul></ul> </li> <li> <a href="../../getting-started/getting-started-with-flutter-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-6eb0b59c-d6d1-1c2f-93ab-3f9141b6213b" data-legacy-id= "UUID-9e965542-1915-7820-0f4f-540a23bcac5a" data-permalink="getting-started/getting-started-with-flutter-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Flutterアプリの使用を開始する</a> <ul></ul> </li> <li> <a href="../../getting-started/getting-started-with-ionic-cordova-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-356bce7f-381d-aa65-4e51-f2d26a4ca4c2" data-legacy-id= "UUID-4db75d05-2100-84bd-8ee8-896ca1bbb34e" data-permalink="getting-started/getting-started-with-ionic-cordova-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Ionic / Cordovaアプリの使用を開始する</a> <ul></ul> </li> <li> <a href="../../getting-started/getting-started-with-expo-apps.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-f603ea52-367d-eea0-68c2-5d565c27a16b" data-legacy-id= "UUID-42ae15b5-fdbc-6ab8-4059-b53ebeaea46f" data-permalink="getting-started/getting-started-with-expo-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Expoアプリの使用を開始する</a> <ul></ul> </li> </ul> </li> <li> <a href="../../infrastructure.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3eab4c5e-529d-6c7d-833c-cb9969befbad" data-legacy-id="UUID-7f30c26d-f7df-1258-bbe9-78d286211d53" data-permalink="infrastructure.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class= "glyphicon"></span> インフラストラクチャー</a> <ul> <li> <a href="../../infrastructure/build-machines.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-03e06c05-1450-1415-7613-b6ed7c04c079" data-legacy-id="UUID-7b37817f-7731-d1d2-5169-d877b622bdd2" data-permalink="infrastructure/build-machines.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> マシンを構築する</a> <ul> <li> <a href="../../infrastructure/build-machines/configuring-your-network-to-access-our-build-machines.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-983fde2f-6b1c-3599-20b7-156fe731f12b" data-legacy-id="UUID-f4d6a932-da74-3244-29bb-6b70afaf7f63" data-permalink= "infrastructure/build-machines/configuring-your-network-to-access-our-build-machines.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドマシンにアクセスするためのネットワークの構成</a> </li> <li> <a href="../../infrastructure/build-machines/storage-space-on-build-machines.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-53d69784-75b6-1df5-a99a-1a0cb43788b5" data-legacy-id="UUID-8d7834d2-e1a6-1aa6-ae09-7cdce19a8478" data-permalink="infrastructure/build-machines/storage-space-on-build-machines.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドマシンのストレージスペース</a> </li> <li> <a href="../../infrastructure/build-machines/freeing-up-storage-space-on-build-machines.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-b07bf5c3-5e94-94ae-07f4-bd4872287215" data-legacy-id="UUID-92a05784-4888-ecb2-b314-19215667d699" data-permalink= "infrastructure/build-machines/freeing-up-storage-space-on-build-machines.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドマシンのストレージスペースを解放する</a> </li> <li> <a href="../../infrastructure/build-machines/customizing-build-machines.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-0877efd2-d139-ee0a-b0bf-3d0ba1f8900a" data-legacy-id="UUID-7617f8b9-2f2a-1f21-27b8-20cdfb1e6bc6" data-permalink="infrastructure/build-machines/customizing-build-machines.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドマシンのカスタマイズ</a> </li> </ul> </li> <li> <a href="../../infrastructure/build-stacks.html" hreflang="ja" class="topic-link section taxonomy-configuration-stacks taxonomy-related-links-taxonomies-stacks-rel original-topic original-topic" data-origin-id="UUID-d6a228ed-8c03-64f9-dd96-993adf80523b" data-legacy-id="UUID-312e1cf7-c9ba-7bc4-57f0-f6018e688116" data-permalink= "infrastructure/build-stacks.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> スタックを構築する</a> <ul> <li> <a href="../../infrastructure/build-stacks/stack-update-policy.html" hreflang="ja" class="topic-link section taxonomy-configuration-stacks original-topic original-topic" data-origin-id="UUID-295ee35e-1f63-7adc-a05e-35490453f71b" data-legacy-id="UUID-4770071c-3ad4-304a-6dbc-0a1b408bc0e2" data-permalink= "infrastructure/build-stacks/stack-update-policy.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">スタック更新ポリシー</a> </li> <li> <a href="../../infrastructure/build-stacks/stack-deprecation-and-removal-policy.html" hreflang="ja" class="topic-link section taxonomy-configuration-stacks" data-origin-id="UUID-5bac20c1-ade5-dca6-25f5-f54fc5ce7425" data-legacy-id="UUID-60ac6b6d-5fe5-d9d2-c650-c00f533da10d" data-permalink= "infrastructure/build-stacks/stack-deprecation-and-removal-policy.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">スタックの非推奨と削除のポリシー</a> </li> <li> <a href="../../infrastructure/build-stacks/preinstalled-tools-on-bitrise-stacks.html" hreflang="ja" class="topic-link section taxonomy-configuration-stacks" data-origin-id="UUID-47c3c221-c9f4-7940-ef48-5ede8f6c626d" data-legacy-id="UUID-5abcfa09-d076-60c8-0a8a-e03c23f8fb55" data-permalink= "infrastructure/build-stacks/preinstalled-tools-on-bitrise-stacks.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitriseスタックにプレインストールされたツール</a> </li> <li> <a href="../../infrastructure/build-stacks/the-android-linux-docker-environment.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-1a40baf9-7721-2b86-6115-0d13327bd3a4" data-legacy-id="UUID-98f81b04-a8ab-2e2e-75ef-7ae6bf17fe40" data-permalink= "infrastructure/build-stacks/the-android-linux-docker-environment.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Android / Linux / Docker環境</a> </li> <li> <a href="../../infrastructure/build-stacks/managing-java-versions.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-0272d2fc-5d56-7f2c-e4c3-9da55fb22c8d" data-legacy-id="UUID-4cd528eb-a885-784f-bfa4-75a6fcbe97b3" data-permalink="infrastructure/build-stacks/managing-java-versions.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Javaバージョンの管理</a> </li> </ul> </li> <li> <a href="../../infrastructure/code-security.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-7abef58e-ec4c-809d-54ac-61a591df4c51" data-legacy-id="UUID-b82b650e-e53e-1e8a-c588-dc37b67ae3e1" data-permalink="infrastructure/code-security.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">コードセキュリティ</a> <ul></ul> </li> <li> <a href="../../infrastructure/customizable-enterprise-build-platforms.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d3272c36-f9e9-0749-c1d9-7e40fe0b24bc" data-legacy-id="UUID-08878848-cb84-9df1-2d19-df312fdd6d04" data-permalink="infrastructure/customizable-enterprise-build-platforms.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">カスタマイズ可能なエンタープライズビルドプラットフォーム</a> <ul></ul> </li> <li> <a href="../../infrastructure/using-your-own-docker-image.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-0ca8f98b-c25f-4ae9-7d48-1778af3ab9db" data-legacy-id="UUID-e4717876-4224-3632-f360-ebf17d8e5e90" data-permalink="infrastructure/using-your-own-docker-image.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">独自のDockerイメージを使用する</a> <ul></ul> </li> <li> <a href="../../infrastructure/running-your-build-locally-in-docker.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-1c50574c-3c92-c29c-d531-19008eecca68" data-legacy-id="UUID-34a13218-f4c4-9696-b69a-3810d89bf8ef" data-permalink="infrastructure/running-your-build-locally-in-docker.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Dockerでローカルにビルドを実行する</a> <ul></ul> </li> </ul> </li> <li> <a href="../../accounts.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-28ffb8a6-05b5-ddc0-a390-1d3e2d8f26b2" data-legacy-id="UUID-10060414-1163-d2be-0434-5350e8d697a1" data-permalink="accounts.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class= "glyphicon"></span> アカウント</a> <ul> <li> <a href="../../accounts/connecting-to-services.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-6e5ba70c-bdc9-4aaa-1b01-bd4a75f03a83" data-legacy-id="UUID-7b30fea4-0c65-ea17-9f13-310017dd36f8" data-permalink="accounts/connecting-to-services.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> サービスへの接続</a> <ul> <li> <a href="../../accounts/connecting-to-services/connecting-your-github-gitlab-bitbucket-account-to-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-90a9b34b-1136-b823-ee94-99af39405c36" data-legacy-id="UUID-73acbb2a-384d-a9ec-d15d-6c0bb5a25970" data-permalink= "accounts/connecting-to-services/connecting-your-github-gitlab-bitbucket-account-to-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GitHub / GitLab / BitbucketアカウントをBitriseに接続する</a> </li> <li> <a href="../../accounts/connecting-to-services/connecting-self-hosted-gitlab-instances.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-c6504603-1afb-860b-ec65-37071bb15cd6" data-legacy-id="UUID-42b0f670-dea3-836a-4a05-a6cf37ca7b55" data-permalink= "accounts/connecting-to-services/connecting-self-hosted-gitlab-instances.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">セルフホストのGitLabインスタンスを接続する</a> </li> <li> <a href="../../accounts/connecting-to-services/apple-services-connection.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-00110e6f-af8c-b0e8-156e-9ef423e3dab3" data-legacy-id="UUID-33b7a6d8-d765-56a8-6c46-87e5fba96f83" data-permalink= "accounts/connecting-to-services/apple-services-connection.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Appleサービス接続</a> </li> <li> <a href="../../accounts/connecting-to-services/connecting-to-an-apple-service-with-api-key.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-9efbac46-99cc-7c73-250b-75a37c32783e" data-legacy-id="UUID-ec02efab-b151-f158-4120-ded409a0704f" data-permalink= "accounts/connecting-to-services/connecting-to-an-apple-service-with-api-key.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">APIキーを使用してAppleサービスに接続する</a> </li> <li> <a href="../../accounts/connecting-to-services/connecting-to-an-apple-service-with-apple-id.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-26bcdf25-8daa-9c14-014d-f08ef9bac83f" data-legacy-id="UUID-9d7746cf-117c-c0e5-3e83-fb7f753c78fd" data-permalink= "accounts/connecting-to-services/connecting-to-an-apple-service-with-apple-id.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">AppleIDを使用してAppleサービスに接続する</a> </li> <li> <a href="../../accounts/connecting-to-services/connecting-to-an-apple-service-with-step-inputs.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-0a53901c-7750-76e6-d4b6-c37b5b35ed17" data-legacy-id="UUID-50c5709a-dc82-305e-1806-83f446075516" data-permalink= "accounts/connecting-to-services/connecting-to-an-apple-service-with-step-inputs.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップ入力でAppleサービスに接続する</a> </li> <li> <a href="../../accounts/connecting-to-services/steps-requiring-apple-authentication.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-55861ef6-a689-7493-a090-16ee69f73ae5" data-legacy-id="UUID-1cb6ad34-6723-9215-cd4a-428eb2267d28" data-permalink= "accounts/connecting-to-services/steps-requiring-apple-authentication.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Apple認証が必要な手順</a> </li> </ul> </li> <li> <a href="../../accounts/saml-sso-in-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-bca7875d-ba86-a5f9-a246-738204f83644" data-legacy-id="UUID-0c735250-ae6c-84a1-e00e-30ec068493f4" data-permalink="accounts/saml-sso-in-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> BitriseでのSAMLSSO</a> <ul> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-google-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-c4d5bf0b-e976-489a-8186-cfa441aae510" data-legacy-id="UUID-e952706d-347d-7d67-30fc-4f8b41121a73" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-google-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のGoogleSSOの設定</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-ad-fs-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-557b0daa-88db-9538-918b-611d6434d59d" data-legacy-id="UUID-e9924931-8dfa-3c50-5d35-b289dd34612f" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-ad-fs-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のADFSSSOの設定</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-azure-ad-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-216ae74a-9185-9547-8ca7-f77c3006b873" data-legacy-id="UUID-ee747bce-dc35-dffc-fe50-3b7253f19419" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-azure-ad-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のAzureADSSOのセットアップ</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-auth0-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-4b441cb7-8dd2-3589-705b-e23a800fd5e0" data-legacy-id="UUID-073f5008-8717-f256-e1b9-9ca79cf9dc39" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-auth0-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のAuth0SSOの設定</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-idaptive-saml-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-267a6d28-abf3-d722-b848-52ebc983c83a" data-legacy-id="UUID-3b0ca8cc-8749-2cdc-7c43-b314cffc9b7f" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-idaptive-saml-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のIdaptiveSAMLSSOのセットアップ</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-okta-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-e773a082-c1cf-dd22-4d98-0fe6ffd63c5f" data-legacy-id="UUID-646a304b-0651-c197-425e-b4d3c0a04c8f" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-okta-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のOktaSSOのセットアップ</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-ping-identity-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3ff033de-eab6-30d7-cf01-6016fb4e0c87" data-legacy-id="UUID-d87403ae-48a8-e2a1-3d07-e8427a5fa9ee" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-ping-identity-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のPingIdentitySSOの設定</a> </li> <li> <a href="../../accounts/saml-sso-in-bitrise/setting-up-onelogin-sso-for-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-92d5aa9a-09f2-05a4-c093-c7b0939b81ec" data-legacy-id="UUID-2147b512-8605-c973-ba55-170b30ac9515" data-permalink= "accounts/saml-sso-in-bitrise/setting-up-onelogin-sso-for-bitrise.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Bitrise用のOneLoginSSOのセットアップ</a> </li> </ul> </li> <li> <a href="../../accounts/editing-your-profile-settings.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-5e0f29c7-1f97-6817-4b49-3d35767db39f" data-legacy-id="UUID-a0ea8cf6-db90-250c-a35e-f7e9a3c9adaf" data-permalink="accounts/editing-your-profile-settings.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">プロファイル設定の編集</a> <ul></ul> </li> <li> <a href="../../accounts/resetting-your-password.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d192d1df-da9e-ff21-8a58-4c2b4e55fa7d" data-legacy-id="UUID-d1170f5a-86b9-8d46-a5f8-b362671e62c7" data-permalink="accounts/resetting-your-password.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">パスワードのリセット</a> </li> <li> <a href="../../accounts/two-factor-authentication.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-866a4f96-4583-8512-7fe7-f30e35d773bb" data-legacy-id="UUID-e0140fbf-cbf6-e155-d169-62eb247dfc19" data-permalink="accounts/two-factor-authentication.html" data-topic-level="2" data-relative-prefix="../" data-publication-date= "">二要素認証</a> <ul></ul> </li> <li> <a href="../../accounts/personal-access-tokens.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-700aac93-033a-c35c-aa92-50c6508c19fa" data-legacy-id="UUID-1d13cbe0-9c39-4588-1cd2-e80d2e61350c" data-permalink="accounts/personal-access-tokens.html" data-topic-level="2" data-relative-prefix="../" data-publication-date= "">パーソナルアクセストークン</a> <ul></ul> </li> <li> <a href="../../accounts/deleting-your-bitrise-account.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-7fc688db-e815-db86-5b75-3db0b85f3555" data-legacy-id="UUID-f9d14256-bdcd-cb82-ca20-ad2d8db79c2f" data-permalink="accounts/deleting-your-bitrise-account.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseアカウントを削除する</a> </li> </ul> </li> <li> <a href="../../workspaces.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-workspaces-rel original-topic original-topic" data-origin-id="UUID-45bb61c5-c7f2-5871-ec0a-71f12394ef81" data-legacy-id="UUID-da6dd792-28d3-355b-3e62-d14e1df88f1c" data-permalink="workspaces.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> ワークスペース</a> <ul> <li> <a href="../../workspaces/creating-workspaces.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-94274f32-1936-7a28-bd8d-ed56c00189c3" data-legacy-id="UUID-5f1d5b2e-dba6-e4a2-b021-0c606bf79d62" data-permalink="workspaces/creating-workspaces.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ワークスペースの作成</a> </li> <li> <a href="../../workspaces/workspace-billing-and-invoicing.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-afa1dd04-2a80-3357-82ae-618a85e2f235" data-legacy-id="UUID-ad9fce4e-e747-f6fc-adb7-217042969efe" data-permalink="workspaces/workspace-billing-and-invoicing.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ワークスペースの請求と請求</a> <ul></ul> </li> <li> <a href="../../workspaces/adding-other-users-to-workspaces.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-accounts-rel original-topic original-topic" data-origin-id="UUID-7a68f566-8e93-124c-439b-3f5c996d5fa7" data-legacy-id="UUID-d7d490da-a69a-d0f6-cb9f-9d71fa87e2bb" data-permalink= "workspaces/adding-other-users-to-workspaces.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">他のユーザーをワークスペースに追加する</a> <ul></ul> </li> <li> <a href="../../workspaces/changing-the-owners-of-a-workspace.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-accounts-rel original-topic original-topic" data-origin-id="UUID-8ba812cb-8961-904d-7213-e05edffa575b" data-legacy-id="UUID-add07d66-0583-d53c-25be-81ffb9c2a371" data-permalink= "workspaces/changing-the-owners-of-a-workspace.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ワークスペースの所有者を変更する</a> </li> <li> <a href="../../workspaces/workspace-faq.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-df9b3cdd-9336-287d-9030-6923df408c72" data-legacy-id="UUID-10223b8c-d323-c763-6e7e-8194e0c33a98" data-permalink="workspaces/workspace-faq.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ワークスペースに関するFAQ</a> </li> </ul> </li> <li> <a href="../../apps.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-675eafcc-4ca9-1439-43d8-fa2abbec5513" data-legacy-id="UUID-dd2a8f8b-309e-2c28-d24e-b0a3eba4089f" data-permalink="apps.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> アプリ</a> <ul> <li> <a href="../../apps/webhooks.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps taxonomy-related-links-taxonomies-trigger-rel original-topic original-topic" data-origin-id="UUID-5331ef8b-5840-9105-7763-81ca7b8525ac" data-legacy-id="UUID-248f4202-aeaa-df85-ea3b-6e942113291b" data-permalink="apps/webhooks.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> Webhook</a> <ul> <li> <a href="../../apps/webhooks/adding-incoming-webhooks.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-a6eaea8e-c52c-28b3-540a-fd7678810798" data-legacy-id="UUID-4fcb3d20-c59c-b103-66f6-0189ab4ea872" data-permalink="apps/webhooks/adding-incoming-webhooks.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">着信Webhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-github-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-f5f767f9-79c8-facf-eba8-4af37624924d" data-legacy-id="UUID-8d70d7b3-5483-8c27-0d17-214fd2a5696d" data-permalink="apps/webhooks/adding-a-github-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GitHubWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-gitlab-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-c10c83c9-4b2b-3772-e6bb-bbe94f3e80e2" data-legacy-id="UUID-02a75d6a-cdcb-a29e-a764-8b1de80841a1" data-permalink="apps/webhooks/adding-a-gitlab-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GitlabWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-bitbucket-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-8412e45f-b884-53e6-1c00-92650404a3c3" data-legacy-id="UUID-ede112b6-8609-4889-c265-bd35706e6011" data-permalink="apps/webhooks/adding-a-bitbucket-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">BitbucketWebhookを追加する</a> </li> <li> <a href="../../apps/webhooks/adding-a-gogs-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-cb59d5d0-c554-e4ae-715c-14c9ff93b6b7" data-legacy-id="UUID-39497431-d7b5-d416-ede2-0a2418458bed" data-permalink="apps/webhooks/adding-a-gogs-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GogsWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-slack-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5001d127-3897-d7d0-f03a-a7a6bd5423a9" data-legacy-id="UUID-d16b5a8f-6e37-f47b-6c8d-4501aa896602" data-permalink="apps/webhooks/adding-a-slack-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">SlackWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-visual-studio-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3837c77e-8098-a2a2-1872-e3dd8155642b" data-legacy-id="UUID-5c117d09-df29-55f7-3e2f-e21103f53fdb" data-permalink="apps/webhooks/adding-a-visual-studio-webhook.html" data-topic-level= "3" data-relative-prefix="../../" data-publication-date="">Visual StudioWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-an-assembla-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-965b0228-485f-608b-de15-e68b9e7b5faf" data-legacy-id="UUID-22b5e7bb-233d-a3e8-783d-2936e28d0035" data-permalink="apps/webhooks/adding-an-assembla-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">AssemblaWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-a-deveo-webhook.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-f2850b49-0240-fa76-ac7c-c7126b940dd1" data-legacy-id="UUID-7b978561-02a0-78e3-7a48-05c16220c28d" data-permalink="apps/webhooks/adding-a-deveo-webhook.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">DeveoWebhookの追加</a> </li> <li> <a href="../../apps/webhooks/adding-outgoing-webhooks.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5c2b9338-918a-6e37-0bcf-c810acc60be6" data-legacy-id="UUID-b1f23513-7cba-b20b-550d-277ca13ac32d" data-permalink="apps/webhooks/adding-outgoing-webhooks.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">発信Webhookの追加</a> </li> </ul> </li> <li> <a href="../../apps/configuring-the-repository-url-and-the-default-branch.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-b5902706-bb7c-f6d0-fee4-eff975bfccdc" data-legacy-id="UUID-a20822cb-314c-4407-6ff5-870e3b70a62c" data-permalink="apps/configuring-the-repository-url-and-the-default-branch.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">リポジトリのURLとデフォルトのブランチを設定する</a> <ul></ul> </li> <li> <a href="../../apps/configuring-ssh-keys.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps" data-origin-id="UUID-579f7434-bcb0-3877-212f-df8bbec96b7c" data-legacy-id="UUID-477b75d3-5728-36e4-e48e-5484b40f8c40" data-permalink="apps/configuring-ssh-keys.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">SSHキーの構成</a> </li> <li> <a href="../../apps/adding-team-members-to-an-app.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-d8d1b16d-0e6a-e08a-9949-af3b762614e4" data-legacy-id="UUID-2d67867f-e120-bacb-7c79-f1db292af049" data-permalink="apps/adding-team-members-to-an-app.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">アプリへのチームメンバーの追加</a> <ul></ul> </li> <li> <a href="../../apps/user-roles-on-app-teams.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-f2d36e34-20b0-22b7-8214-d75ca87322f6" data-legacy-id="UUID-1bd1363c-b921-320c-a34f-601147be01cd" data-permalink="apps/user-roles-on-app-teams.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">アプリチームでのユーザーの役割</a> <ul></ul> </li> <li> <a href="../../apps/changing-the-owner-of-an-app.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-423552f8-7b5f-370e-2deb-03438f0c0303" data-legacy-id="UUID-c1830836-6a1b-d502-fe66-b1ce689bdc57" data-permalink="apps/changing-the-owner-of-an-app.html" data-topic-level= "2" data-relative-prefix="../" data-publication-date="">アプリの所有者を変更する</a> <ul></ul> </li> <li> <a href="../../apps/enabling-the-bitrise-support-user-for-your-app.html" hreflang="ja" class="topic-link section taxonomy-actions-troubleshooting taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-9f206309-7bea-860b-558c-97e4d7bb6c09" data-legacy-id="UUID-602ef5c8-641b-1c7d-7c6c-99934fddd540" data-permalink= "apps/enabling-the-bitrise-support-user-for-your-app.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">アプリのBitriseSupportユーザーを有効にする</a> </li> <li> <a href="../../apps/apps-with-submodules-or-private-repo-dependencies.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-e9d90a45-3743-5c70-5890-451857d008cf" data-legacy-id="UUID-31d4342c-27d2-74b5-3132-b7f0b4e2eaac" data-permalink= "apps/apps-with-submodules-or-private-repo-dependencies.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">サブモジュールまたはプライベートリポジトリの依存関係を持つアプリ</a> <ul></ul> </li> <li> <a href="../../apps/public-apps.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-d8ff76d0-d66b-4191-ef1e-fcf0b4f14e5e" data-legacy-id="UUID-d0c5e88d-9b78-113a-cd21-47ff87c98792" data-permalink="apps/public-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">公開アプリ</a> </li> <li> <a href="../../apps/creating-white-label-app-versions.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-906f96f4-8f0d-4716-43a5-6c1a10d1ed85" data-legacy-id="UUID-56ee7172-ef31-676b-9dfa-20a9a01b5d65" data-permalink="apps/creating-white-label-app-versions.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ホワイトラベルアプリバージョンの作成</a> <ul></ul> </li> </ul> </li> <li> <a href="../../steps-and-workflows.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml original-topic original-topic" data-origin-id="UUID-45f92eab-49aa-a0d2-6472-a2da060aee88" data-legacy-id="UUID-d4babe74-0174-93d4-3247-194da5073883" data-permalink="steps-and-workflows.html" data-topic-level="1" data-relative-prefix= "" data-publication-date=""><span class="glyphicon"></span> 手順とワークフロー</a> <ul> <li> <a href="../../steps-and-workflows/introduction-to-steps.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-4e72c2ab-b8a3-ad41-b32d-5e0c08db7a88" data-legacy-id="UUID-e49ab216-b55d-0243-0ea1-6da610e8fd08" data-permalink= "steps-and-workflows/introduction-to-steps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> ステップ</a> <ul> <li> <a href="../../steps-and-workflows/introduction-to-steps/adding-steps-to-a-workflow.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-520f8b46-3247-b5e0-3138-b3033ab69d92" data-legacy-id="UUID-6c4bcc2e-683a-2a4f-8e80-25f7430aac2f" data-permalink= "steps-and-workflows/introduction-to-steps/adding-steps-to-a-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ワークフローへのステップの追加</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-steps/step-versions.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-f59797e7-f966-7727-3853-82bb40bba77f" data-legacy-id="UUID-8eb3d8a8-6d72-e2d8-1950-1908e6475656" data-permalink= "steps-and-workflows/introduction-to-steps/step-versions.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップバージョン管理</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-steps/step-inputs.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps" data-origin-id="UUID-b0690127-a271-a392-b3e5-7e71daf207ba" data-legacy-id="UUID-402031a2-c547-0cfd-6f4f-ad509a09b313" data-permalink="steps-and-workflows/introduction-to-steps/step-inputs.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップ入力</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-steps/skipping-steps.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-4f3c1c76-3d54-7e79-f543-525de22e6941" data-legacy-id="UUID-780cdf64-e416-ac4b-d589-71c9f628a958" data-permalink= "steps-and-workflows/introduction-to-steps/skipping-steps.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">手順をスキップする</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-steps/enabling-or-disabling-a-step-conditionally.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-2984dd3d-3e7e-7e53-2987-32fbfc5f0050" data-legacy-id="UUID-efb905e5-7a4d-9c19-80d9-213bd0d3a80a" data-permalink= "steps-and-workflows/introduction-to-steps/enabling-or-disabling-a-step-conditionally.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップを条件付きで有効または無効にする</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-steps/setting-a-time-limit-for-steps.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-72c8d204-5d1c-6039-fb7f-2151c6e65c69" data-legacy-id="UUID-1008a236-83ae-9740-685b-535db113cb60" data-permalink= "steps-and-workflows/introduction-to-steps/setting-a-time-limit-for-steps.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップの制限時間を設定する</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/developing-your-own-bitrise-step.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-431581d4-f756-3167-7a10-13f70cd4dba4" data-legacy-id="UUID-19e4390c-ae3c-5d2c-2cce-80aed6acd7bf" data-permalink="steps-and-workflows/developing-your-own-bitrise-step.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> 独自のビットライズステップの開発</a> <ul> <li> <a href="../../steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-e67f6a64-56f0-20f4-4150-02ff566db8b7" data-legacy-id="UUID-bde734ed-ab81-6d56-4099-03e2f1f0aeac" data-permalink= "steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">新しいステップの開発</a> </li> <li> <a href="../../steps-and-workflows/developing-your-own-bitrise-step/sharing-steps-with-all-bitrise-users.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-68dd8146-6228-fa08-2f24-906f7c849313" data-legacy-id="UUID-3a777ba0-793b-f54c-9d76-1b8b2ab9e526" data-permalink="steps-and-workflows/developing-your-own-bitrise-step/sharing-steps-with-all-bitrise-users.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">すべてのBitriseユーザーとステップを共有する</a> </li> <li> <a href="../../steps-and-workflows/developing-your-own-bitrise-step/verified-steps.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-c66d6d34-8fb3-b9cb-38fb-aec1b0c97479" data-legacy-id="UUID-1f0b23cc-0e72-bde6-6f4e-587e83cba4a8" data-permalink= "steps-and-workflows/developing-your-own-bitrise-step/verified-steps.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">確認済みの手順</a> </li> <li> <a href="../../steps-and-workflows/developing-your-own-bitrise-step/creating-your-own-bitrise-project-scanner.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-a34926b3-4944-74d2-3cd3-46a8df5881d8" data-legacy-id="UUID-ea834094-5aae-cc21-684e-6dfeffcb787d" data-permalink= "steps-and-workflows/developing-your-own-bitrise-step/creating-your-own-bitrise-project-scanner.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">独自のBitriseプロジェクトスキャナーの作成</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/introduction-to-workflows.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml original-topic original-topic" data-origin-id="UUID-31bf6c77-1059-252e-fb0b-32941af36dd0" data-legacy-id="UUID-bc1fab84-f407-68e5-fa17-a784831d7007" data-permalink= "steps-and-workflows/introduction-to-workflows.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> ワークフロー</a> <ul> <li> <a href="../../steps-and-workflows/introduction-to-workflows/default-workflows.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-ecad7fc7-429f-3659-a7fe-6eaeb453ac51" data-legacy-id="UUID-910f4654-1330-39c9-fa21-79b41cb2fbda" data-permalink= "steps-and-workflows/introduction-to-workflows/default-workflows.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">デフォルトのワークフロー</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-workflows/creating-a-workflow.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-65dc1d06-fcfe-b8f0-a78a-53b92d6f4a00" data-legacy-id="UUID-12da8fa4-1230-9623-8e3f-3e363e5e727a" data-permalink= "steps-and-workflows/introduction-to-workflows/creating-a-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ワークフローの作成</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-workflows/managing-workflows.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-b7677a8d-d8a3-a494-924c-2296184f7023" data-legacy-id="UUID-d0a02dbb-4a34-5ff2-5292-ac0f55bb66c7" data-permalink= "steps-and-workflows/introduction-to-workflows/managing-workflows.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ワークフローの管理</a> </li> <li> <a href="../../steps-and-workflows/introduction-to-workflows/copying-workflows-from-one-app-to-another.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3a2d360d-92eb-add6-2cae-e6f3c0298d2b" data-legacy-id="UUID-64c2cf60-ef2c-7a32-6cf0-188c4c9a04ee" data-permalink= "steps-and-workflows/introduction-to-workflows/copying-workflows-from-one-app-to-another.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">あるアプリから別のアプリへのワークフローのコピー</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-27c020f9-d798-5865-6ed8-2ee30ee4fcc8" data-legacy-id="UUID-44e4634f-d103-fc7a-121a-d5181c5c8343" data-permalink="steps-and-workflows/workflow-recipes-for-android-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> Androidアプリのワークフローレシピ</a> <ul> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-visual-studio-app-center.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-883079d0-f3f4-3f6e-6455-00d2d2f2f4eb" data-legacy-id="UUID-0a3744bb-21f9-fcaa-8da3-248ba9a2f617" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-visual-studio-app-center.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Deploy to Visual Studio App Center</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-firebase-app-distribution.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-fcb0a2fa-917f-5fd3-7935-8b4f30ac75b6" data-legacy-id="UUID-959bcf6f-c379-a406-ca42-f5b68d641e66" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-firebase-app-distribution.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Deploy to Firebase App Distribution</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-google-play--internal,-alpha,-beta,-production-.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-d69b4448-289e-2ec5-002d-b3b613a4039a" data-legacy-id="UUID-9d49b2fc-9efc-3a1a-7b8a-fa64d7bbf457" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-google-play--internal,-alpha,-beta,-production-.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Deploy to Google Play (Internal, Alpha, Beta, Production)</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-bitrise-io.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-7adddc5d-d948-3100-436d-eda84c34e1ca" data-legacy-id="UUID-4b8497f5-c208-b068-cba6-8a58e1f24bc8" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--deploy-to-bitrise-io.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Deploy to Bitrise.io</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--example-ci-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-f5c5ffd2-f978-8b6f-478f-15c52c6583f7" data-legacy-id="UUID-7e23f3d6-0cbc-adcb-0386-d1888fecc77e" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--example-ci-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Example CI Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--example-nightly-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-9b4c2d3e-7686-2764-2303-6152472a5c16" data-legacy-id="UUID-9170d511-436b-31fd-2b51-2aad2c885209" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--example-nightly-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Example nightly Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--example-pull-request-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-1f77aec6-24f0-1d21-ca93-164af078c2f8" data-legacy-id="UUID-4b6a4e13-f574-12a0-cb55-c80d71ad15fa" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--example-pull-request-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Example pull request Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--run-instrumentation-tests-on-virtual-devices.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-46fda509-d40f-3f0e-d36f-01df4956564f" data-legacy-id="UUID-fdc51957-b261-27e1-81fe-fb143779458f" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--run-instrumentation-tests-on-virtual-devices.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Run instrumentation tests on virtual devices</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--example-release-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-4d8164cb-e18d-cf23-7a0a-29b2dada6726" data-legacy-id="UUID-3ed4a3e0-c485-ffb5-e823-9f2e64f99280" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--example-release-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Example release Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--run-lint.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-a1ec8025-b9e3-5c06-0733-73b8a2a41952" data-legacy-id="UUID-06762519-5778-7272-8b6c-f78846b61ca4" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--run-lint.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Run Lint</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-dcdf1008-3782-4b10-a562-4b5904de7707" data-legacy-id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Turn on Gradle build profiling</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--run-unit-tests.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-4b6f0e68-d994-d1c2-eab1-ed3d03d47471" data-legacy-id="UUID-3c579a2c-91a0-7efa-c83b-09b56c542082" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--run-unit-tests.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Run unit tests</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-android-apps/-android--run-tests-using-the-emulator.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-b9726bc6-ffb8-937a-83b4-a54e23c670ff" data-legacy-id="UUID-c05dd4df-4709-1022-bc30-a421bb6357b7" data-permalink= "steps-and-workflows/workflow-recipes-for-android-apps/-android--run-tests-using-the-emulator.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Android) Run tests using the emulator</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-095c2977-2548-824e-c84f-7ad9f6314704" data-legacy-id="UUID-ec5faa90-23eb-8899-b36a-f2af2a22bd54" data-permalink="steps-and-workflows/workflow-recipes-for-ios-apps.html" data-topic-level="2" data-relative-prefix= "../" data-publication-date=""><span class="glyphicon"></span> iOSアプリのワークフローレシピ</a> <ul> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-visual-studio-app-center.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-849db348-c6d4-9727-bd80-5b8f52987986" data-legacy-id="UUID-b413e321-d24e-56b5-0b49-9cedba975126" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-visual-studio-app-center.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Deploy to Visual Studio App Center</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--cache-cocoapods-dependencies.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-8c6c9c3f-95c1-0b70-256e-506edb1747f9" data-legacy-id="UUID-05b58448-d712-2e61-71ff-bcfa9741b73e" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--cache-cocoapods-dependencies.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Cache CocoaPods dependencies</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-app-store-connect---testflight.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-cfe6088b-c76d-28c8-d2b0-ef0dc9490265" data-legacy-id="UUID-f7ea2c6d-1189-2da4-511b-b9c801510656" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-app-store-connect---testflight.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Deploy to App Store Connect / TestFlight</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-ci-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-9830623e-bcb5-ef43-b930-bad41bf386e2" data-legacy-id="UUID-e1ff45fc-964e-a6c1-4e24-53eb0380d386" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-ci-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Example CI Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-bitrise-io.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-11ee0331-b9cb-c4c1-802a-e5a07a52188a" data-legacy-id="UUID-62ef8753-58c8-61de-92dd-4a7984aea81c" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-bitrise-io.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Deploy to bitrise.io</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-pull-request-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-64059077-f4a0-04f9-e61a-05a4a1452639" data-legacy-id="UUID-331c082e-8e00-7b8a-3fe9-85dc2e591568" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-pull-request-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Example pull request Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-firebase-app-distribution.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-e16efd58-2da0-11d8-3b87-77783e890018" data-legacy-id="UUID-8797f754-510c-e2d9-6264-8ff3ac71755e" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--deploy-to-firebase-app-distribution.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Deploy to Firebase App Distribution</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-nightly-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-67a95acd-479c-4963-f735-171278a6661d" data-legacy-id="UUID-fd5efbea-bd27-0c65-c6e0-587ccf7ec010" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-nightly-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Example nightly Workflow</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--run-tests-on-a-physical-device.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-f6c7f2b2-fd7e-6151-b499-9a675b7640cf" data-legacy-id="UUID-5d1a0796-2f6c-cce0-da34-4c1b8b0c56e8" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--run-tests-on-a-physical-device.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Run tests on a physical device</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--run-tests-on-a-simulator.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-244f401e-8aca-53f4-10da-104e1c016e48" data-legacy-id="UUID-0da81ecf-bd0e-a8b5-459d-978bfba50fc7" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--run-tests-on-a-simulator.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Run tests on a simulator</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--install-cocoapods-dependencies.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-96bff69d-7454-e504-5495-f09358ad5c6c" data-legacy-id="UUID-4ff5663b-43a9-8a10-45b0-606c865973f1" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--install-cocoapods-dependencies.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Install CocoaPods dependencies</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--install-carthage-dependencies.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-098a0349-83bf-4c3b-65af-0066202208da" data-legacy-id="UUID-3f80e917-f8f6-a75e-21e7-d7b3d6e45514" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--install-carthage-dependencies.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Install Carthage dependencies</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-release-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-9a3fd7b3-f005-e28e-2bd3-04a1cdca291b" data-legacy-id="UUID-80bc1d46-44cc-c14f-d353-e26ad9d04db1" data-permalink= "steps-and-workflows/workflow-recipes-for-ios-apps/-ios--example-release-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS) Example release Workflow</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-f4ed0e7e-27f7-4eb8-c2f5-81133289dd74" data-legacy-id="UUID-bd816f59-9a0a-0a0a-7b38-9a38ca866ccc" data-permalink="steps-and-workflows/workflow-recipes-for-cross-platform-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> クロスプラットフォームアプリのワークフローレシピ</a> <ul> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--cache-dependencies--node_modules-.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-839de6c8-8bb2-1f2e-2462-3ed5a0429131" data-legacy-id="UUID-52459b20-f020-59cc-582d-47addabe15f4" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--cache-dependencies--node_modules-.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(React Native) Cache dependencies (node_modules)</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--expo--build-using-turtle-cli.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-b7cb73aa-01c7-a15c-b821-d3bd9461c203" data-legacy-id="UUID-c8b65940-6499-3a90-f941-77051fb90ae9" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--expo--build-using-turtle-cli.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(React Native) Expo: Build using Turtle CLI</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--run-tests.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-c7c24cd9-fb88-6ae2-68cc-207c7836d90f" data-legacy-id="UUID-25bdd052-97a6-f48d-76ac-e69518f18300" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--run-tests.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(React Native) Run tests</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--install-dependencies.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-666f2fdc-82af-24f4-c30a-b1ecefa9123c" data-legacy-id="UUID-9ab45570-f84c-31ad-520e-ed18a617555e" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-react-native--install-dependencies.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(React Native) Install dependencies</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--run-tests.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-79e5d24a-2395-cedd-0ae7-4cf87e937abb" data-legacy-id="UUID-4da65bc1-a943-df91-563f-80ea3611df2f" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--run-tests.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Flutter) Run tests</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--install-flutter-sdk.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-3620f76a-bd7a-c9c4-a5d0-eb2df497aa8d" data-legacy-id="UUID-f7fbeeed-0beb-b862-69b6-1561d77e0d35" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--install-flutter-sdk.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Flutter) Install Flutter SDK</a> </li> <li> <a href="../../steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--run-dart-analyzer.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-1308579a-034d-c7e5-088c-fc5521ff93cb" data-legacy-id="UUID-16aa2345-0f32-95db-1948-25242e5b39ad" data-permalink= "steps-and-workflows/workflow-recipes-for-cross-platform-apps/-flutter--run-dart-analyzer.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(Flutter) Run Dart Analyzer</a> </li> </ul> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-d56a5129-1646-2ed7-42db-09794018edd5" data-legacy-id="UUID-7a564da7-e804-140e-de7e-353c9a047054" data-permalink="steps-and-workflows/generic-workflow-recipes.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> 一般的なワークフローレシピ</a> <ul> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/-ios-android--send-build-status-to-slack.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-31b2afbb-35f8-65ac-c20c-f06ee06daf07" data-legacy-id="UUID-f2377e6e-08a7-27c0-6a9d-6925180f1a39" data-permalink= "steps-and-workflows/generic-workflow-recipes/-ios-android--send-build-status-to-slack.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS/Android) Send build status to Slack</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/cloning-a-git-repository.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-4468473d-9be4-fae2-493c-102000ad652b" data-legacy-id="UUID-e3d0f8ae-377e-e704-a565-cc6a87bc7391" data-permalink="steps-and-workflows/generic-workflow-recipes/cloning-a-git-repository.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Cloning a Git repository</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/shallow-clone-a-git-repository.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-873d8d4d-ea32-62b8-e273-b498f80af700" data-legacy-id="UUID-ae580d09-b83a-4ac3-cdbd-6a646263c20e" data-permalink= "steps-and-workflows/generic-workflow-recipes/shallow-clone-a-git-repository.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Shallow clone a Git repository</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/example-workflow--create-gitflow-release-branch.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-1fd25694-6391-f4ad-ecde-4fec65b34f4c" data-legacy-id="UUID-99b2327a-cce8-367b-d019-235af3191398" data-permalink= "steps-and-workflows/generic-workflow-recipes/example-workflow--create-gitflow-release-branch.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Example Gitflow release branch Workflow</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/-ios-android--send-qr-code-to-slack.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-616b377c-852b-e6ef-fb76-d527c331fc9d" data-legacy-id="UUID-646265c4-1d5f-10c5-2348-6951427624df" data-permalink= "steps-and-workflows/generic-workflow-recipes/-ios-android--send-qr-code-to-slack.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">(iOS/Android) Send QR code to Slack</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/start--parallel--builds-from-the-workflow.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-374e7111-7853-4108-94a1-d0697d303d56" data-legacy-id="UUID-d1428e58-7488-2ead-3f36-fc786f7319a5" data-permalink= "steps-and-workflows/generic-workflow-recipes/start--parallel--builds-from-the-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Start builds from a parent Workflow</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/make-caching-efficient-for-pull-request-builds.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-d76e8a50-f26c-478c-423b-a593ce642d73" data-legacy-id="UUID-c7691539-1145-9472-ef9d-4f9eac518768" data-permalink= "steps-and-workflows/generic-workflow-recipes/make-caching-efficient-for-pull-request-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Optimizing cache efficiency for pull request builds</a> </li> <li> <a href="../../steps-and-workflows/generic-workflow-recipes/github-pull-request--send-the-build-qr-code.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-c70cffa4-0c74-182d-11fd-bff1a2fd5040" data-legacy-id="UUID-7ba9aa48-1123-0f1b-26e6-3046e3d21c38" data-permalink= "steps-and-workflows/generic-workflow-recipes/github-pull-request--send-the-build-qr-code.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GitHub pull request: send the build QR code</a> </li> </ul> </li> </ul> </li> <li> <a href="../../builds.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d1227f29-9b5f-0237-ec0d-cf81c662d61e" data-legacy-id="UUID-0f130c27-ad82-ff42-a001-6b38d922476f" data-permalink="builds.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> ビルド</a> <ul> <li> <a href="../../builds/configuring-build-settings.html" hreflang="ja" class="topic-link section taxonomy-actions-builds" data-origin-id="UUID-9664acae-1c6a-b44e-2fb6-8d2815834003" data-legacy-id="UUID-3b2060df-1350-eb76-98ca-d54288272689" data-permalink="builds/configuring-build-settings.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> ビルド設定の構成</a> <ul> <li> <a href="../../builds/configuring-build-settings/setting-the-stack-for-your-builds.html" hreflang="ja" class="topic-link section taxonomy-configuration-stacks taxonomy-related-links-taxonomies-stacks-rel" data-origin-id="UUID-8c7a43db-c7da-ed14-f6d3-5f5f28685b31" data-legacy-id="UUID-8add719e-be31-79a0-c38c-83f3f80e553b" data-permalink= "builds/configuring-build-settings/setting-the-stack-for-your-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドのスタックを設定する</a> </li> <li> <a href="../../builds/configuring-build-settings/managing-an-app-s-bitrise-yml-file.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-bitrise-yml taxonomy-related-links-taxonomies-bitrise-yml-rel original-topic original-topic" data-origin-id="UUID-fa61c122-0d5b-a9c2-1894-19c46053c2d3" data-legacy-id="UUID-162a6e44-340e-720b-f934-9066f2d049bb" data-permalink="builds/configuring-build-settings/managing-an-app-s-bitrise-yml-file.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">アプリのbitrise.ymlファイルの管理</a> </li> <li> <a href="../../builds/configuring-build-settings/editing-an-app-s-bitrise-yml-file.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml" data-origin-id="UUID-27994b5b-7eef-8e27-211c-3b8d5944ec64" data-legacy-id="UUID-b143bd44-8dd2-5150-9b34-b0f7c425cf50" data-permalink= "builds/configuring-build-settings/editing-an-app-s-bitrise-yml-file.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">アプリのbitrise.ymlファイルを編集する</a> </li> <li> <a href="../../builds/configuring-build-settings/accessing-a-build-s-bitrise-yml-file.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-bitrise-yml" data-origin-id="UUID-ef139639-ec20-2648-6864-745661a48f54" data-legacy-id="UUID-0d36ae47-0c69-ae38-580e-0be4270615d9" data-permalink= "builds/configuring-build-settings/accessing-a-build-s-bitrise-yml-file.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドのbitrise.ymlファイルへのアクセス</a> </li> <li> <a href="../../builds/configuring-build-settings/selective-builds.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-7ea21aeb-894c-2fbf-740c-855f7c44468f" data-legacy-id="UUID-463dbb1f-ea7d-6cb2-39ea-5cef8f1cc551" data-permalink= "builds/configuring-build-settings/selective-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">選択的ビルド</a> </li> <li> <a href="../../builds/configuring-build-settings/rolling-builds.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-b37ee7d4-5345-d0eb-8a90-28a14a7147a0" data-legacy-id="UUID-053831d5-e75f-f2b3-ff34-64415e4496c4" data-permalink= "builds/configuring-build-settings/rolling-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ローリングビルド</a> </li> <li> <a href="../../builds/configuring-build-settings/configuring-email-notifications.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-a99f035b-3782-57a3-f1cd-6b5fa90a7119" data-legacy-id="UUID-9c6bb39b-7420-fc75-be92-a74a73380c06" data-permalink= "builds/configuring-build-settings/configuring-email-notifications.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">電子メール通知の構成</a> </li> <li> <a href="../../builds/configuring-build-settings/configuring-slack-integration.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-0b9ffab0-7e83-f821-f700-05800f3e04f4" data-legacy-id="UUID-1fc52417-ef2b-591d-4483-fe5737d1fc2e" data-permalink="builds/configuring-build-settings/configuring-slack-integration.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Slack統合の構成</a> </li> <li> <a href="../../builds/configuring-build-settings/setting-your-git-credentials-on-build-machines.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-24466c62-468b-f760-5cba-57f411ef244b" data-legacy-id="UUID-13df7c4f-514b-bc57-5dfd-0aabcf524f17" data-permalink= "builds/configuring-build-settings/setting-your-git-credentials-on-build-machines.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドマシンでのGitクレデンシャルの設定</a> </li> <li> <a href="../../builds/configuring-build-settings/reporting-the-build-status-to-your-git-hosting-provider.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-89a809e8-c5a5-931a-0cd0-2fad85a2e3d3" data-legacy-id="UUID-a8940fc6-f44f-3e23-7143-6e867f401e2b" data-permalink= "builds/configuring-build-settings/reporting-the-build-status-to-your-git-hosting-provider.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドステータスをGitホスティングプロバイダーに報告する</a> </li> </ul> </li> <li> <a href="../../builds/starting-builds.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-bitrise-yml original-topic original-topic" data-origin-id="UUID-8e0ac4ce-7b16-a294-9ab2-4a313fbb1beb" data-legacy-id="UUID-7a5babee-e4ce-3cd1-a9d3-d6a584076e28" data-permalink="builds/starting-builds.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> ビルドの開始</a> <ul> <li> <a href="../../builds/starting-builds/starting-builds-manually.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-related-links-taxonomies-trigger-rel original-topic original-topic" data-origin-id="UUID-15b65886-09d5-4911-92c5-737b131485e4" data-legacy-id="UUID-14db9d3c-937f-3575-9881-32c68b4b5c65" data-permalink="builds/starting-builds/starting-builds-manually.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">手動でビルドを開始する</a> </li> <li> <a href="../../builds/starting-builds/triggering-builds-automatically.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-trigger-rel" data-origin-id="UUID-552bb6f5-13fb-66cc-3fd9-fcb9e55f08ad" data-legacy-id="UUID-06923acf-f63d-2a1f-f6fb-5f1fd1a050a4" data-permalink= "builds/starting-builds/triggering-builds-automatically.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドを自動的にトリガーする</a> </li> <li> <a href="../../builds/starting-builds/scheduling-builds.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-befcf35c-25d4-5439-7bb3-f259ab4e9c8e" data-legacy-id="UUID-6418e051-49d4-e466-88a7-dd1cdfa081ca" data-permalink="builds/starting-builds/scheduling-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドのスケジューリング</a> </li> <li> <a href="../../builds/starting-builds/approving-pull-request-builds.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-f6704323-3520-bed6-b9d7-76e2941c8339" data-legacy-id="UUID-e60a6674-7b2c-1472-ebbe-69cd6acb09f6" data-permalink="builds/starting-builds/approving-pull-request-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">プルリクエストビルドの承認</a> </li> <li> <a href="../../builds/starting-builds/using-the-trigger-map-to-trigger-builds.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5132c5a7-c6f6-02f2-9e2c-352a6f85cf5e" data-legacy-id="UUID-bfc6dff0-5cba-ce7e-9d78-86bf4789e430" data-permalink= "builds/starting-builds/using-the-trigger-map-to-trigger-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">トリガーマップを使用してビルドをトリガーする</a> </li> <li> <a href="../../builds/starting-builds/starting-parallel-builds-with-a-single-trigger.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-bitrise-yml taxonomy-related-links-taxonomies-trigger-rel original-topic original-topic" data-origin-id="UUID-0471dd25-5a86-78e4-ba04-30b3a15d213a" data-legacy-id= "UUID-0b1c49ab-c0a0-d9ee-aefb-753f6eb64877" data-permalink="builds/starting-builds/starting-parallel-builds-with-a-single-trigger.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">単一のトリガーで並列ビルドを開始する</a> </li> <li> <a href="../../builds/starting-builds/skipping-a-given-commit-or-pull-request.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-1e25a28b-a398-ac68-258b-d551610aceff" data-legacy-id="UUID-11454234-4d3d-9d4e-c3e3-7b152ba41bc6" data-permalink= "builds/starting-builds/skipping-a-given-commit-or-pull-request.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">特定のコミットまたはプルリクエストをスキップする</a> </li> </ul> </li> <li> <a href="../../builds/caching.html" hreflang="ja" class="topic-link section taxonomy-actions-builds original-topic original-topic" data-origin-id="UUID-d6b033d3-46c5-ccdb-ad09-0e32eecc58d1" data-legacy-id="UUID-cb391959-16f9-34a6-f25e-c212ab029a22" data-permalink="builds/caching.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> キャッシング</a> <ul> <li> <a href="../../builds/caching/using-caching-in-your-builds.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-bd7ea83f-5029-5c9d-a1b8-49e0fee1ae58" data-legacy-id="UUID-159ec88a-cca1-9be6-b62d-9c7aae08008b" data-permalink="builds/caching/using-caching-in-your-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドでのキャッシュの使用</a> </li> <li> <a href="../../builds/caching/caching-cocoapods.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-e63c69a5-3212-850e-e163-75d79a4b428c" data-legacy-id="UUID-deb6ce8a-8332-93e7-2667-fbd1f33f2511" data-permalink="builds/caching/caching-cocoapods.html" data-topic-level="3" data-relative-prefix= "../../" data-publication-date="">Cocoapodsのキャッシング</a> </li> <li> <a href="../../builds/caching/caching-gradle.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-02d4b8d8-d505-fa9d-3894-f9c987bc5f65" data-legacy-id="UUID-bb248b31-7a4f-cd75-656e-6b0b1a277e71" data-permalink="builds/caching/caching-gradle.html" data-topic-level="3" data-relative-prefix= "../../" data-publication-date="">キャッシングGradle</a> </li> <li> <a href="../../builds/caching/caching-maven.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3a7cc027-74dc-7275-40a7-183b14b1a933" data-legacy-id="UUID-22b3d079-610a-beca-3be1-a3a202a6e1d2" data-permalink="builds/caching/caching-maven.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Mavenのキャッシュ</a> </li> <li> <a href="../../builds/caching/caching-ruby-gems.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-8b9f4f15-0700-166a-bb13-74c14a2fd862" data-legacy-id="UUID-485cce15-2bee-a3a7-1990-b09fd4cfc03c" data-permalink="builds/caching/caching-ruby-gems.html" data-topic-level="3" data-relative-prefix= "../../" data-publication-date="">RubyGemsのキャッシュ</a> </li> <li> <a href="../../builds/caching/caching-homebrew-installers.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-67134aea-b72d-eb67-6268-b71ae501455f" data-legacy-id="UUID-8b77b885-77d9-7c06-21d1-acf3fe60a206" data-permalink="builds/caching/caching-homebrew-installers.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">自作インストーラーのキャッシュ</a> </li> </ul> </li> <li> <a href="../../builds/managing-build-files.html" hreflang="ja" class="topic-link section taxonomy-actions-builds original-topic original-topic" data-origin-id="UUID-349c1927-26cf-9a2f-bf23-21a934aa45c2" data-legacy-id="UUID-f2bd6af3-988a-4a09-1aea-232482fdd9ca" data-permalink="builds/managing-build-files.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> ビルドファイルの管理</a> <ul> <li> <a href="../../builds/managing-build-files/uploading-files-for-your-builds.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-6b0e6ac6-9657-fd31-16cc-7ae85af61551" data-legacy-id="UUID-58c978da-5697-54b2-6656-bf8c92f19199" data-permalink="builds/managing-build-files/uploading-files-for-your-builds.html" data-topic-level= "3" data-relative-prefix="../../" data-publication-date="">ビルド用のファイルのアップロード</a> </li> <li> <a href="../../builds/managing-build-files/using-files-in-your-builds.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-aa7247c0-e9ba-c44f-8e9a-2a9a2df6df86" data-legacy-id="UUID-e980fbbb-9dfa-bfa9-525b-ecded2eddc46" data-permalink="builds/managing-build-files/using-files-in-your-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドでのファイルの使用</a> </li> <li> <a href="../../builds/managing-build-files/using-encrypted-files-in-your-builds.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-946a4987-2a3c-9576-2acb-50f457ff0703" data-legacy-id="UUID-29f2a9e8-90cb-e1b0-2c0e-83385a0f9e30" data-permalink="builds/managing-build-files/using-encrypted-files-in-your-builds.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドで暗号化されたファイルを使用する</a> </li> <li> <a href="../../builds/managing-build-files/build-artifacts-online.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-9acbfd32-8157-4ce9-2fe4-67bdf8ef3507" data-legacy-id="UUID-943d6cfb-c906-d834-8046-3246b2bab582" data-permalink="builds/managing-build-files/build-artifacts-online.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">オンラインでアーティファクトを作成する</a> </li> </ul> </li> <li> <a href="../../builds/environment-variables.html" hreflang="ja" class="topic-link section taxonomy-configuration-env-vars original-topic original-topic" data-origin-id="UUID-9ff79df6-9953-1bf5-76a5-852420b21ed4" data-legacy-id="UUID-9e1b5aee-d60f-441c-d75c-fc15814c2988" data-permalink="builds/environment-variables.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">環境変数</a> <ul></ul> </li> <li> <a href="../../builds/secrets.html" hreflang="ja" class="topic-link section taxonomy-configuration-env-vars taxonomy-related-links-taxonomies-bitrise-yml-rel" data-origin-id="UUID-e6946697-1571-f957-a619-8973cd5cf399" data-legacy-id="UUID-61932413-6328-dfe6-b5f5-610ab2556ce2" data-permalink="builds/secrets.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">秘密</a> <ul></ul> </li> <li> <a href="../../builds/build-statuses.html" hreflang="ja" class="topic-link section taxonomy-actions-builds" data-origin-id="UUID-1c01835f-ecc2-1079-16e8-7660fe017a91" data-legacy-id="UUID-071a5c49-837a-d7ed-e0bf-5989c6d309e3" data-permalink="builds/build-statuses.html" data-topic-level="2" data-relative-prefix="../" data-publication-date= "">ビルドステータス</a> </li> <li> <a href="../../builds/installing-tools-during-a-build.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-stacks original-topic original-topic" data-origin-id="UUID-aec439b6-736b-333f-6dc0-4cdc46b621e2" data-legacy-id="UUID-b0a55b5f-81b0-8ae7-8900-aea4c94ccb54" data-permalink= "builds/installing-tools-during-a-build.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ビルド中のツールのインストール</a> <ul></ul> </li> <li> <a href="../../builds/connecting-to-a-vpn-during-a-build.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-builds-rel original-topic original-topic" data-origin-id="UUID-21a2136d-0e93-1e81-6bd8-c39085d5a543" data-legacy-id="UUID-22f77fd6-d80c-b9b5-049d-128651fc6ac4" data-permalink= "builds/connecting-to-a-vpn-during-a-build.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ビルド中にVPNに接続する</a> <ul></ul> </li> <li> <a href="../../builds/finding-a-specific-build.html" hreflang="ja" class="topic-link section taxonomy-actions-builds" data-origin-id="UUID-95336313-9e6d-d72e-1a4a-7fe9076f0948" data-legacy-id="UUID-2ca76374-67ac-f310-9efc-916708670a91" data-permalink="builds/finding-a-specific-build.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">特定のビルドを見つける</a> </li> <li> <a href="../../builds/build-numbering-and-app-versioning.html" hreflang="ja" class="topic-link section taxonomy-actions-builds original-topic original-topic" data-origin-id="UUID-a7dc4565-2965-aae9-c388-af8889ffe1a3" data-legacy-id="UUID-9dab82c8-74b8-8912-944a-014aa4a2d58c" data-permalink="builds/build-numbering-and-app-versioning.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ビルドのナンバリングとアプリのバージョン管理</a> <ul></ul> </li> <li> <a href="../../builds/build-data-and-troubleshooting.html" hreflang="ja" class="topic-link section taxonomy-actions-builds" data-origin-id="UUID-66c5bce9-ccd5-ebc0-2716-f22a20df3dc0" data-legacy-id="UUID-873efeb4-c257-e462-2dee-5673fb302fbf" data-permalink="builds/build-data-and-troubleshooting.html" data-topic-level="2" data-relative-prefix= "../" data-publication-date=""><span class="glyphicon"></span> ビルドデータとトラブルシューティング</a> <ul> <li> <a href="../../builds/build-data-and-troubleshooting/build-logs.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-actions-troubleshooting original-topic original-topic" data-origin-id="UUID-8e2ac26a-22c2-ce48-bc28-c9188fcbef7b" data-legacy-id="UUID-ef0d34e9-df1b-58fa-a19c-51a608ed9eec" data-permalink= "builds/build-data-and-troubleshooting/build-logs.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ビルドログ</a> </li> <li> <a href="../../builds/build-data-and-troubleshooting/remote-access.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-actions-troubleshooting original-topic original-topic" data-origin-id="UUID-c330b88b-5906-b45d-74fb-2e68d19e9d0b" data-legacy-id="UUID-ef4aab78-d42f-effa-116b-a2c3878abd27" data-permalink= "builds/build-data-and-troubleshooting/remote-access.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">リモートアクセス</a> </li> <li> <a href="../../builds/build-data-and-troubleshooting/debugging-your-build-on-your-own-machine.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-96d78e2c-40c2-1d53-05ae-658018113300" data-legacy-id="UUID-92eaad46-609a-a5a5-dae2-c290ad6ebd16" data-permalink= "builds/build-data-and-troubleshooting/debugging-your-build-on-your-own-machine.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">自分のマシンでビルドをデバッグする</a> </li> <li> <a href="../../builds/build-data-and-troubleshooting/bitrise-checks-on-github.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-actions-troubleshooting original-topic original-topic" data-origin-id="UUID-c2aca2c7-4d07-1b83-aacf-697303551f2d" data-legacy-id="UUID-34ed9662-c93a-cdfe-fdfb-d7ef82da6bc4" data-permalink="builds/build-data-and-troubleshooting/bitrise-checks-on-github.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GitHubでのビットライズチェック</a> </li> <li> <a href="../../builds/build-data-and-troubleshooting/monitoring-your-builds-with-meercode.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5066f347-fd45-5f13-7a8c-ddf058ac7922" data-legacy-id="UUID-5f3c4cd9-71f1-e46b-deb3-1311862a5837" data-permalink= "builds/build-data-and-troubleshooting/monitoring-your-builds-with-meercode.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Meercodeを使用してビルドを監視する</a> </li> </ul> </li> </ul> </li> <li> <a href="../../code-signing.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-related-links-taxonomies-code-signing-rel original-topic original-topic" data-origin-id="UUID-258c2c25-158e-51b1-0b6e-f739cbd5eb0f" data-legacy-id="UUID-f726801e-3495-e587-a213-7294d85e39cb" data-permalink="code-signing.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> コード署名</a> <ul> <li> <a href="../../code-signing/android-code-signing.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-platform-android taxonomy-related-links-taxonomies-android-rel original-topic original-topic" data-origin-id="UUID-0ea7b738-1527-6a4d-687a-b3552b3fa0e2" data-legacy-id="UUID-474baabc-711f-55f8-3b37-837bdac01c8f" data-permalink="code-signing/android-code-signing.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> Androidコード署名</a> <ul> <li> <a href="../../code-signing/android-code-signing/android-code-signing-using-the-android-sign-step.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-platform-android" data-origin-id="UUID-d00c628e-d72b-57d8-f8e6-c0b25e0053bb" data-legacy-id="UUID-52707ea4-64ad-aa87-e0d4-c8569bd519a5" data-permalink= "code-signing/android-code-signing/android-code-signing-using-the-android-sign-step.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Androidサインステップを使用したAndroidコード署名</a> </li> <li> <a href="../../code-signing/android-code-signing/android-code-signing-with-android-studio.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-platform-android original-topic original-topic" data-origin-id="UUID-97a3dc89-365c-a4cc-ceb2-a33701d413ad" data-legacy-id="UUID-8c590be8-41ad-129e-86fd-259cc2ef3e53" data-permalink="code-signing/android-code-signing/android-code-signing-with-android-studio.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">AndroidStudioを使用したAndroidコード署名</a> </li> <li> <a href="../../code-signing/android-code-signing/android-code-signing-in-gradle.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-platform-android original-topic original-topic" data-origin-id="UUID-a26fc278-b856-fd5b-b678-feee463f248e" data-legacy-id="UUID-c69ca0db-02d0-a770-e3be-9c6a471b2248" data-permalink="code-signing/android-code-signing/android-code-signing-in-gradle.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">GradleでのAndroidコード署名</a> </li> <li> <a href="../../code-signing/android-code-signing/downloading-a-keystore-file.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing original-topic original-topic" data-origin-id="UUID-441b0774-edef-b033-7a01-c7f77b043c58" data-legacy-id="UUID-29c4cd7d-a8dd-e271-09e2-105b47d4f646" data-permalink= "code-signing/android-code-signing/downloading-a-keystore-file.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">キーストアファイルのダウンロード</a> </li> </ul> </li> <li> <a href="../../code-signing/ios-code-signing.html" hreflang="ja" class="topic-link section taxonomy-platform-ios taxonomy-related-links-taxonomies-ios-rel original-topic original-topic" data-origin-id="UUID-95beece4-a703-8f4d-5793-ee34f765cb76" data-legacy-id="UUID-d36ce185-2cd0-000d-06d0-724ff68af5fb" data-permalink= "code-signing/ios-code-signing.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> iOSコード署名</a> <ul> <li> <a href="../../code-signing/ios-code-signing/collecting-and-exporting-code-signing-files-with-codesigndoc.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-972cfe0e-c096-da27-7f07-e2b8bf426847" data-legacy-id="UUID-b0bb1c8c-5ed9-0d4c-a812-4521e1e5e365" data-permalink= "code-signing/ios-code-signing/collecting-and-exporting-code-signing-files-with-codesigndoc.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">codesigndocを使用したコード署名ファイルの収集とエクスポート</a> </li> <li> <a href="../../code-signing/ios-code-signing/managing-ios-code-signing-files---automatic-provisioning.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-5b2a76ce-6ef6-8e63-fba1-3dbb51a06921" data-legacy-id= "UUID-b3ccb26c-e693-c87d-3bbb-c80ed6e9620d" data-permalink="code-signing/ios-code-signing/managing-ios-code-signing-files---automatic-provisioning.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSコード署名ファイルの管理-自動プロビジョニング</a> </li> <li> <a href="../../code-signing/ios-code-signing/managing-ios-code-signing-files---manual-provisioning.html" hreflang="ja" class="topic-link section taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-3c74d4ea-423e-cb76-1c1a-aa2f44737a94" data-legacy-id="UUID-f285233a-ceb7-e79b-cf49-a4633a2bac26" data-permalink= "code-signing/ios-code-signing/managing-ios-code-signing-files---manual-provisioning.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSコード署名ファイルの管理-手動プロビジョニング</a> </li> <li> <a href="../../code-signing/ios-code-signing/creating-a-signed-ipa-for-xcode-projects.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-39fbc767-f894-36b9-67c4-77255dcf2fed" data-legacy-id= "UUID-75a05aff-7687-7e6e-23c4-d7b867798f5b" data-permalink="code-signing/ios-code-signing/creating-a-signed-ipa-for-xcode-projects.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Xcodeプロジェクト用に署名されたIPAを作成する</a> </li> <li> <a href="../../code-signing/ios-code-signing/signing-an-ipa-with-multiple-code-signing-identities.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying original-topic original-topic" data-origin-id="UUID-d3c66ba4-3ae2-a1e2-3a05-15adce30e2fc" data-legacy-id= "UUID-1d4f851c-156c-c625-0b70-8ea6c73aba5a" data-permalink="code-signing/ios-code-signing/signing-an-ipa-with-multiple-code-signing-identities.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">複数のコード署名IDを使用してIPAに署名する</a> </li> <li> <a href="../../code-signing/ios-code-signing/ios-code-signing-for-ionic-and-cordova-projects.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-6ae15f90-c4f1-e899-dcf5-f25bf374bfa5" data-legacy-id= "UUID-6bd3c0a4-be9f-524e-a527-0d901ba2fee9" data-permalink="code-signing/ios-code-signing/ios-code-signing-for-ionic-and-cordova-projects.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">IonicおよびCordovaプロジェクトのiOSコード署名</a> </li> <li> <a href="../../code-signing/ios-code-signing/protecting-your-code-signing-files.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-04c7cf5c-55ff-8552-6009-a76c5af7d334" data-legacy-id="UUID-7938a135-a086-dc7b-213a-fc2a082b3c60" data-permalink= "code-signing/ios-code-signing/protecting-your-code-signing-files.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">コード署名ファイルの保護</a> </li> <li> <a href="../../code-signing/ios-code-signing/generating-ios-code-signing-files.html" hreflang="ja" class="topic-link section taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-5da9aa01-42ef-7197-5586-68cac312c5ec" data-legacy-id="UUID-e1a1bf3c-3b1b-ce04-a8ad-81aba1b06904" data-permalink= "code-signing/ios-code-signing/generating-ios-code-signing-files.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSコード署名ファイルの生成</a> </li> <li> <a href="../../code-signing/ios-code-signing/exporting-ios-code-signing-files-without-codesigndoc.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-04ee983e-4340-c63d-ed02-43de23cae41d" data-legacy-id="UUID-d94478a6-0e45-37b0-35ef-e1e5e4e6dbeb" data-permalink= "code-signing/ios-code-signing/exporting-ios-code-signing-files-without-codesigndoc.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">codesigndocを使用せずにiOSコード署名ファイルをエクスポートする</a> </li> <li> <a href="../../code-signing/ios-code-signing/troubleshooting-ios-code-signing.html" hreflang="ja" class="topic-link section taxonomy-actions-code-signing taxonomy-actions-deploying taxonomy-actions-troubleshooting original-topic original-topic" data-origin-id="UUID-03a0d092-2594-d8cf-c2f2-1dc5fab0d47b" data-legacy-id= "UUID-5170a6a2-46af-4767-84bf-fb7bd3f0cdbc" data-permalink="code-signing/ios-code-signing/troubleshooting-ios-code-signing.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSコード署名のトラブルシューティング</a> </li> </ul> </li> </ul> </li> <li> <a href="../../testing.html" hreflang="ja" class="topic-link section taxonomy-actions-testing original-topic original-topic" data-origin-id="UUID-16c1dbdf-cbd3-6f01-1d2b-91d812c8ab4f" data-legacy-id="UUID-1050ded8-6ea2-c69c-2f86-fe19a1f32df6" data-permalink="testing.html" data-topic-level="1" data-relative-prefix="" data-publication-date= ""><span class="glyphicon"></span> テスト</a> <ul> <li> <a href="../../testing/test-reports.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-actions-troubleshooting taxonomy-platform-android taxonomy-platform-cross-platform taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-42d03dc2-a21c-1daf-e851-a6c46adcde01" data-legacy-id= "UUID-23e122bc-41cd-fee5-7a24-e72b59503484" data-permalink="testing/test-reports.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">テストレポート</a> <ul></ul> </li> <li> <a href="../../testing/exporting-to-test-reports-from-any-step.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-19746872-1371-1bf6-acf1-12d7663fae86" data-legacy-id="UUID-6a29fea7-ab01-01f6-252b-22bd962a8aa7" data-permalink= "testing/exporting-to-test-reports-from-any-step.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">任意のステップからのテストレポートへのエクスポート</a> <ul></ul> </li> <li> <a href="../../testing/running-xcode-tests.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-43229fb9-7af4-8829-c020-91c6fcdb768f" data-legacy-id="UUID-7e25ef4d-c72e-c389-acaa-88677328e973" data-permalink="testing/running-xcode-tests.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Xcodeテストの実行</a> <ul></ul> </li> <li> <a href="../../testing/installing-an-ipa-file-from-the-public-install-page.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-03a475d5-58a6-b62f-5d0f-8f92454f5491" data-legacy-id="UUID-b97e4c19-2e6a-79c3-618d-ebf4c5ab2b14" data-permalink= "testing/installing-an-ipa-file-from-the-public-install-page.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">パブリックインストールページからのipaファイルのインストール</a> <ul></ul> </li> <li> <a href="../../testing/registering-a-test-device.html" hreflang="ja" class="topic-link section taxonomy-actions-testing original-topic original-topic" data-origin-id="UUID-4048bab6-2101-fc89-888f-14aefee6e7ef" data-legacy-id="UUID-d09298de-9395-6bce-d417-89bbc96290fa" data-permalink="testing/registering-a-test-device.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">テストデバイスの登録</a> <ul></ul> </li> <li> <a href="../../testing/device-testing-for-ios.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-ios original-topic original-topic" data-origin-id="UUID-a7dd930d-ded0-fb68-9c16-6556dad515c4" data-legacy-id="UUID-f4179a26-1ed4-717b-bd7a-cd897450b377" data-permalink="testing/device-testing-for-ios.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">iOSのデバイステスト</a> <ul></ul> </li> <li> <a href="../../testing/android-unit-tests.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-android original-topic original-topic" data-origin-id="UUID-766b3bd1-5c47-4d03-91e7-d30eac2eae8a" data-legacy-id="UUID-74a1e9d8-8e12-2ef0-c035-88033afb4d89" data-permalink="testing/android-unit-tests.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Androidユニットテスト</a> <ul></ul> </li> <li> <a href="../../testing/device-testing-for-android.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-android original-topic original-topic" data-origin-id="UUID-0900864b-58e4-f571-50a0-377a2624b836" data-legacy-id="UUID-48173269-ac2f-a467-640b-99fb997e5c6a" data-permalink= "testing/device-testing-for-android.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Androidのデバイステスト</a> <ul></ul> </li> <li> <a href="../../testing/running-tests-in-the-visual-studio-app-center.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-294acb61-4f0c-baf1-9cb6-9a1c93dd9b27" data-legacy-id="UUID-7ee7bd8d-b5cb-8545-5e67-55237820e9f6" data-permalink="testing/running-tests-in-the-visual-studio-app-center.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Visual Studio AppCenterでのテストの実行</a> </li> <li> <a href="../../testing/running-detox-tests-on-bitrise.html" hreflang="ja" class="topic-link section taxonomy-actions-testing taxonomy-platform-cross-platform original-topic original-topic" data-origin-id="UUID-aa43cb68-94fb-86be-470b-93c9eae82bc1" data-legacy-id="UUID-75f389f7-4f06-e719-1539-e1fa20f6a5b0" data-permalink= "testing/running-detox-tests-on-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseでのデトックステストの実行</a> <ul></ul> </li> </ul> </li> <li> <a href="../../deploying.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5b1d4326-81f8-90a8-18bc-83bef25a8536" data-legacy-id="UUID-c37e7e5a-ec91-7264-8654-db4643771ba4" data-permalink="deploying.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class= "glyphicon"></span> 展開</a> <ul> <li> <a href="../../deploying/android-deployment.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-android-rel original-topic original-topic" data-origin-id="UUID-ae57c4fd-3338-1749-3423-301d5554584f" data-legacy-id="UUID-23ceae1b-1528-ab36-db0a-f8496a2806eb" data-permalink="deploying/android-deployment.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> Androidの展開</a> <ul> <li> <a href="../../deploying/android-deployment/deploying-android-apps-to-bitrise-and-google-play.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-5fce7c55-2d78-10fa-6980-7c8fbcdf1248" data-legacy-id="UUID-d5217e49-ec62-ca98-64b9-6ca7fa283799" data-permalink= "deploying/android-deployment/deploying-android-apps-to-bitrise-and-google-play.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">BitriseとGooglePlayへのAndroidアプリのデプロイ</a> </li> <li> <a href="../../deploying/android-deployment/deploying-apps-to-huawei-appgallery.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-c4522aa2-80a6-36ca-f716-bf398931d09f" data-legacy-id="UUID-595ed037-9b50-9676-c4bd-8f42200619e2" data-permalink= "deploying/android-deployment/deploying-apps-to-huawei-appgallery.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">HuaweiAppGalleryへのアプリのデプロイ</a> </li> <li> <a href="../../deploying/android-deployment/generate-and-deploy-multiple-flavor-apks-in-a-single-workflow.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d856df0e-2c91-4328-af8d-c4cef99def94" data-legacy-id="UUID-30d567ce-12a8-87db-271a-b2823624f13c" data-permalink= "deploying/android-deployment/generate-and-deploy-multiple-flavor-apks-in-a-single-workflow.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">単一のワークフローで複数のフレーバーAPKを生成してデプロイする</a> </li> <li> <a href="../../deploying/android-deployment/generating-and-deploying-android-app-bundles.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-bba05c8f-bc65-1e68-6d73-8d701a3ef7dc" data-legacy-id="UUID-daaf2f46-a4dd-2895-2f23-b1da44cce183" data-permalink= "deploying/android-deployment/generating-and-deploying-android-app-bundles.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Androidアプリバンドルの生成と展開</a> </li> <li> <a href="../../deploying/android-deployment/exporting-a-universal-apk-from-an-aab.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-b2a83029-ee24-4016-f978-5b4531ce186a" data-legacy-id="UUID-f2fde620-ebaa-bb38-039a-adc8916818fa" data-permalink= "deploying/android-deployment/exporting-a-universal-apk-from-an-aab.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">AABからユニバーサルAPKをエクスポートする</a> </li> </ul> </li> <li> <a href="../../deploying/ios-deployment.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-ios-rel original-topic original-topic" data-origin-id="UUID-f34cbdba-ea23-f773-be03-cf7e28638977" data-legacy-id="UUID-4b35ec31-4574-caad-19d1-42bc625d5e78" data-permalink="deploying/ios-deployment.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> iOSの展開</a> <ul> <li> <a href="../../deploying/ios-deployment/deploying-an-ios-app-to-bitrise-io.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-b1b5b411-2188-cc3e-5857-6749bc2e12f7" data-legacy-id="UUID-390316a2-5029-5007-f081-eff288c0c0f6" data-permalink= "deploying/ios-deployment/deploying-an-ios-app-to-bitrise-io.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSアプリをBitrise.ioにデプロイする</a> </li> <li> <a href="../../deploying/ios-deployment/deploying-an-ios-app-for-external-testing.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-ios-rel original-topic original-topic" data-origin-id="UUID-0c413c05-b60a-9eb0-9e06-8fbcdd6c9cc3" data-legacy-id="UUID-db34e0a9-53cd-0fba-7c0f-316715eb8086" data-permalink= "deploying/ios-deployment/deploying-an-ios-app-for-external-testing.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">外部テスト用のiOSアプリのデプロイ</a> </li> <li> <a href="../../deploying/ios-deployment/deploying-an-ios-app-to-app-store-connect.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-code-signing-rel taxonomy-related-links-taxonomies-ios-rel original-topic original-topic" data-origin-id="UUID-da669359-c4bb-5049-ab4a-ad56926dab44" data-legacy-id= "UUID-302df510-d0ea-c62b-5069-02eebd5c9272" data-permalink="deploying/ios-deployment/deploying-an-ios-app-to-app-store-connect.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">iOSアプリをiTunesConnectにデプロイする</a> </li> <li> <a href="../../deploying/ios-deployment/deploying-an-ios-app-for-simulators.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-b8b67f37-232b-a487-cd68-9401862fdb2e" data-legacy-id="UUID-1bfef8bc-f675-2ea8-9b7b-865afbc61f80" data-permalink= "deploying/ios-deployment/deploying-an-ios-app-for-simulators.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">シミュレーター用のiOSアプリのデプロイ</a> </li> </ul> </li> <li> <a href="../../deploying/deploying-with-ship.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-3c9287e4-770b-f853-30dd-a1cd1849416c" data-legacy-id="UUID-3fd86123-186c-7ff6-66ba-3ac9199b542f" data-permalink="deploying/deploying-with-ship.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> 船での展開</a> <ul> <li> <a href="../../deploying/deploying-with-ship/getting-started-with-ship.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-22775316-af19-31b1-bf64-2a4ad579bed5" data-legacy-id="UUID-41ce3912-3860-89de-c3d9-c93f3893e76c" data-permalink="deploying/deploying-with-ship/getting-started-with-ship.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Shipの使用を開始する</a> </li> <li> <a href="../../deploying/deploying-with-ship/configuring-an-app-for-publishing-with-ship.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-9d206adc-1e0c-f2b7-76d8-d53636d99b8f" data-legacy-id="UUID-3b6a3b93-7b6d-b1b4-500c-ee336e649036" data-permalink= "deploying/deploying-with-ship/configuring-an-app-for-publishing-with-ship.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Shipで公開するためのアプリの構成</a> </li> <li> <a href="../../deploying/deploying-with-ship/installing-an-app-on-a-test-device-with-ship.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-f8f70801-5a37-b1ba-f3c4-a57e7b7357de" data-legacy-id="UUID-d90d264d-2df6-a7e8-84c1-9ebcb7fc776c" data-permalink= "deploying/deploying-with-ship/installing-an-app-on-a-test-device-with-ship.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Shipを使用してテストデバイスにアプリをインストールする</a> </li> <li> <a href="../../deploying/deploying-with-ship/publishing-an-app-to-a-store-with-ship.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-f6c01f12-dcb7-5a3a-e005-ff893d474de9" data-legacy-id="UUID-32002270-02dd-7f53-3d46-cb809b624327" data-permalink="deploying/deploying-with-ship/publishing-an-app-to-a-store-with-ship.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">Shipを使用してストアにアプリを公開する</a> </li> <li> <a href="../../deploying/deploying-with-ship/using-ship-for-apps-built-with-cross-platform-frameworks.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-75d18344-1afc-0efa-1e3c-8463345c0c9d" data-legacy-id="UUID-2d66c61d-d927-38d8-c5a0-75b00998764e" data-permalink= "deploying/deploying-with-ship/using-ship-for-apps-built-with-cross-platform-frameworks.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">クロスプラットフォームフレームワークで構築されたアプリにShipを使用する</a> </li> <li> <a href="../../deploying/deploying-with-ship/app-details-in-ship.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-5f83d763-3d84-0626-3ffe-b72ae661208b" data-legacy-id="UUID-958b2b3e-0d5a-3368-c0c3-4d46071696eb" data-permalink="deploying/deploying-with-ship/app-details-in-ship.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">船内のアプリの詳細</a> </li> <li> <a href="../../deploying/deploying-with-ship/ship-notifications.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-42427c87-4755-3022-2521-3dd00c0b3dc5" data-legacy-id="UUID-6aff0063-fc6e-4330-d1d5-5ddb1c529585" data-permalink="deploying/deploying-with-ship/ship-notifications.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">出荷通知</a> </li> </ul> </li> <li> <a href="../../deploying/deploying-apps-to-applivery.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-1adbe843-e24b-907d-480c-cf2cf5f17fba" data-legacy-id="UUID-5dd58ac5-f4fe-4e17-4a05-6363f26bc0ae" data-permalink="deploying/deploying-apps-to-applivery.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Appliveryへのアプリのデプロイ</a> <ul></ul> </li> <li> <a href="../../deploying/deploying-apps-to-deploygate-from-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-066787b9-e3c2-8826-acde-b0a0d5d794b9" data-legacy-id="UUID-632764fb-7d84-992f-d4e2-b53a55fb8c12" data-permalink="deploying/deploying-apps-to-deploygate-from-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">BitriseからDeployGateへのアプリのデプロイ</a> </li> <li> <a href="../../deploying/deploying-your-app-to-appaloosa.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-fc974e4a-6215-4464-82b9-e499900c5791" data-legacy-id="UUID-db10f62a-8b57-0b1e-665c-1a9d1879fdfc" data-permalink="deploying/deploying-your-app-to-appaloosa.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">アプリをAppaloosaにデプロイする</a> </li> <li> <a href="../../deploying/deploying-to-testfairy-with-bitrise.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-7f8d8f2a-0c96-b2a2-d22a-848d2f58488a" data-legacy-id="UUID-a28a90a4-c515-24d4-d322-673814515a30" data-permalink="deploying/deploying-to-testfairy-with-bitrise.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseを使用したTestFairyへのデプロイ</a> </li> </ul> </li> <li> <a href="../../build-insights.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-actions-troubleshooting original-topic original-topic" data-origin-id="UUID-e0616761-9cb7-7321-e585-c89c5747026d" data-legacy-id="UUID-9bd3a8e4-236f-f47c-95dd-bc27a511a16f" data-permalink="build-insights.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> インサイトを構築する</a> <ul> <li> <a href="../../build-insights/getting-started-with-insights.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-b08cc96c-32cb-f704-788c-bbfd1fe854b9" data-legacy-id="UUID-e3ff43e7-45e2-03e0-cf75-47a506baa5e2" data-permalink="build-insights/getting-started-with-insights.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">インサイトの使用を開始する</a> <ul></ul> </li> <li> <a href="../../build-insights/available-metrics-in-insights.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-882de749-0081-e73f-b327-a8aa4f7dca44" data-legacy-id="UUID-8c83a6e5-986c-3c57-7b56-65ed069996c6" data-permalink="build-insights/available-metrics-in-insights.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Insightsで利用可能なメトリック</a> <ul></ul> </li> <li> <a href="../../build-insights/test-stats-in-build-insights.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-1a12ee14-e155-58fb-9808-99d117a5e7de" data-legacy-id="UUID-d6b6eb3a-a842-bb5c-e12f-e31ddc113ea7" data-permalink="build-insights/test-stats-in-build-insights.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">BuildInsightsで統計をテストします</a> <ul></ul> </li> </ul> </li> <li> <a href="../../bitrise-cli.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-27017f65-ad72-12cd-02b8-7d543d112a63" data-legacy-id="UUID-e9345ec7-292e-a6e2-e70e-2d876908aec8" data-permalink="bitrise-cli.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class= "glyphicon"></span> Bitrise CLI</a> <ul> <li> <a href="../../bitrise-cli/installing-and-updating-the-bitrise-cli.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-d610eedd-c45f-e1a2-8071-2968f86a4af8" data-legacy-id="UUID-7646c9ae-7085-91b7-723d-34f7442c0aaa" data-permalink="bitrise-cli/installing-and-updating-the-bitrise-cli.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">BitriseCLIのインストールと更新</a> <ul></ul> </li> <li> <a href="../../bitrise-cli/adding-a-new-app-from-a-cli.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-f900869d-cbec-8aa0-6f35-25fec828d88f" data-legacy-id="UUID-1079bc04-ec61-f882-c3a8-faca2105b38f" data-permalink="bitrise-cli/adding-a-new-app-from-a-cli.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">CLIからの新しいアプリの追加</a> </li> <li> <a href="../../bitrise-cli/initializing-a-bitrise-project-locally.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml original-topic original-topic" data-origin-id="UUID-13ec887e-137f-b3eb-2dc4-f22944dd1d01" data-legacy-id="UUID-151fcbbc-c9fb-6803-e4a0-34df36e6301a" data-permalink= "bitrise-cli/initializing-a-bitrise-project-locally.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseプロジェクトをローカルで初期化する</a> </li> <li> <a href="../../bitrise-cli/installing-and-upgrading-the-offline-workflow-editor.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-0fc16f0c-c014-d02a-e3cf-8c660d7c542b" data-legacy-id="UUID-048848eb-eb79-a5a9-a5d8-22f4b5766e1a" data-permalink= "bitrise-cli/installing-and-upgrading-the-offline-workflow-editor.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">オフラインワークフローエディターのインストールとアップグレード</a> <ul></ul> </li> <li> <a href="../../bitrise-cli/running-your-first-local-build-with-the-cli.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-bitrise-yml original-topic original-topic" data-origin-id="UUID-c4e3dad2-d242-d8c7-fdce-e87b02b0339b" data-legacy-id="UUID-70b77658-138c-afa4-5e97-c33dc8122ae3" data-permalink= "bitrise-cli/running-your-first-local-build-with-the-cli.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">CLIを使用して最初のローカルビルドを実行する</a> </li> <li> <a href="../../bitrise-cli/managing-secrets-locally.html" hreflang="ja" class="topic-link section taxonomy-configuration-env-vars original-topic original-topic" data-origin-id="UUID-ac254cae-50e4-fbb0-9dd0-7a4e66a780e3" data-legacy-id="UUID-2d28d165-eb76-78a8-2290-adab1fc4ae69" data-permalink="bitrise-cli/managing-secrets-locally.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">シークレットをローカルで管理する</a> </li> </ul> </li> <li> <a href="../../api.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-cb55b806-0981-0f42-eeff-5e2683d7829a" data-legacy-id="UUID-e907f989-b825-9411-9398-e10036885ddb" data-permalink="api.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> API</a> <ul> <li> <a href="../../api/authenticating-with-the-bitrise-api.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-accounts-rel original-topic original-topic" data-origin-id="UUID-b33dbf25-c5e4-11c8-f20c-a619a4616911" data-legacy-id="UUID-37d98545-a334-a3e0-ea1d-676c05cf4f9b" data-permalink= "api/authenticating-with-the-bitrise-api.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">BitriseAPIを使用した認証</a> </li> <li> <a href="../../api/pagination-of-api-calls.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-4d7629da-3db4-6b4d-3ce7-053eb3cb7a46" data-legacy-id="UUID-bacb6520-d6a4-c7fc-51bd-b2f985824545" data-permalink="api/pagination-of-api-calls.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">API呼び出しのページ付け</a> </li> <li> <a href="../../api/adding-and-managing-apps.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-f589566f-87a7-bde7-d6b0-676cd3bbf33f" data-legacy-id="UUID-7f6e234a-f7d5-04b9-ebd9-3b4bbafedd05" data-permalink="api/adding-and-managing-apps.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">アプリの追加と管理</a> <ul></ul> </li> <li> <a href="../../api/triggering-and-aborting-builds.html" hreflang="ja" class="topic-link section taxonomy-actions-builds original-topic original-topic" data-origin-id="UUID-7f0fe70c-83aa-8955-4153-192fa5308866" data-legacy-id="UUID-8101784e-bfc1-88ac-7fe1-f90ecaa3c339" data-permalink="api/triggering-and-aborting-builds.html" data-topic-level= "2" data-relative-prefix="../" data-publication-date="">ビルドのトリガーと中止</a> <ul></ul> </li> <li> <a href="../../api/incoming-and-outgoing-webhooks.html" hreflang="ja" class="topic-link section taxonomy-configuration-apps original-topic original-topic" data-origin-id="UUID-40445e57-5661-4a26-710b-bfafeb921453" data-legacy-id="UUID-062ec1ad-a9f9-0a19-f4d0-50b01fb6468e" data-permalink="api/incoming-and-outgoing-webhooks.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">着信および発信Webhook</a> <ul></ul> </li> <li> <a href="../../api/managing-ios-code-signing-files.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-code-signing-rel taxonomy-related-links-taxonomies-ios-rel original-topic original-topic" data-origin-id="UUID-dce4d841-fb55-0714-cb04-a4b91884b4d1" data-legacy-id="UUID-9ceef8b2-5917-b9d8-5fe2-510b0c8c49ec" data-permalink="api/managing-ios-code-signing-files.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">iOSコード署名ファイルの管理</a> <ul></ul> </li> <li> <a href="../../api/managing-files-in-generic-file-storage.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-configuration-env-vars original-topic original-topic" data-origin-id="UUID-555289d2-cdf2-0a32-114d-626663437bd1" data-legacy-id="UUID-1dcd8575-d195-377d-0e4f-157443b0e93c" data-permalink= "api/managing-files-in-generic-file-storage.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">汎用ファイルストレージ内のファイルの管理</a> <ul></ul> </li> <li> <a href="../../api/managing-build-artifacts.html" hreflang="ja" class="topic-link section taxonomy-actions-builds taxonomy-related-links-taxonomies-builds-rel original-topic original-topic" data-origin-id="UUID-80a5c036-577b-12c1-1929-9f32be653983" data-legacy-id="UUID-301c547a-e269-1494-43be-cc6e326c3636" data-permalink= "api/managing-build-artifacts.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ビルドアーティファクトの管理</a> <ul></ul> </li> <li> <a href="../../api/api-reference.html" hreflang="ja" class="topic-link section swagger-topic swagger-topic" data-origin-id="UUID-3208c6b4-0ebf-fb66-853b-34dc4f4590e1" data-legacy-id="UUID-6651274d-fb0d-cd13-6eae-1aa5b64e3cba" data-permalink="api/api-reference.html" data-topic-level="2" data-relative-prefix="../" data-publication-date= "">APIリファレンス</a> </li> </ul> </li> <li> <a href="../../references.html" hreflang="ja" class="topic-link section" data-origin-id="UUID-e512a445-f4b3-b030-d8ea-4ac0e2b045f6" data-legacy-id="UUID-65ffd971-f2df-01e9-40b3-fe591c681b49" data-permalink="references.html" data-topic-level="1" data-relative-prefix="" data-publication-date=""><span class="glyphicon"></span> 参考文献</a> <ul> <li> <a href="../../references/basics-of-bitrise-yml.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml taxonomy-related-links-taxonomies-bitrise-yml-rel original-topic original-topic" data-origin-id="UUID-e2b5d350-3596-52e2-e43b-bbbc8c13e4d7" data-legacy-id="UUID-2cda69d1-a002-7b51-e372-0f9fdfb56702" data-permalink= "references/basics-of-bitrise-yml.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">bitrise.ymlの基本</a> </li> <li> <a href="../../references/customizing-bitrise-yml.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml taxonomy-related-links-taxonomies-bitrise-yml-rel original-topic original-topic" data-origin-id="UUID-2e4ed86d-f923-7a38-1158-b021f4c1c44d" data-legacy-id="UUID-b66dcf4e-390d-6e39-435d-7aa3b63057bb" data-permalink= "references/customizing-bitrise-yml.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">bitrise.yml設定のカスタマイズ</a> </li> <li> <a href="../../references/workflows-reference.html" hreflang="ja" class="topic-link section taxonomy-related-links-taxonomies-bitrise-yml-rel original-topic original-topic" data-origin-id="UUID-4c05eb0d-ec75-1f61-34b2-71e39a7d7c97" data-legacy-id="UUID-a6fcc659-cdca-a8ab-99b7-72c2f55ee624" data-permalink="references/workflows-reference.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">ワークフローリファレンス</a> </li> <li> <a href="../../references/steps-reference.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-0ec53551-c5ec-c23a-0bfc-06d3402e2b9e" data-legacy-id="UUID-c5229546-0af7-44b6-f3b4-828065b04f57" data-permalink="references/steps-reference.html" data-topic-level="2" data-relative-prefix="../" data-publication-date=""><span class="glyphicon"></span> 手順リファレンス</a> <ul> <li> <a href="../../references/steps-reference/step-reference-id-format.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml taxonomy-configuration-steps" data-origin-id="UUID-5145156c-cbf0-fea5-bc5f-74b144587a22" data-legacy-id="UUID-bbc2f5b5-1077-ec64-2006-8a60990df870" data-permalink= "references/steps-reference/step-reference-id-format.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップリファレンス/ IDフォーマット</a> </li> <li> <a href="../../references/steps-reference/step-data-in-the-bitrise-yml-file.html" hreflang="ja" class="topic-link section taxonomy-configuration-bitrise-yml taxonomy-configuration-steps" data-origin-id="UUID-f403d515-c887-5c34-6fbc-5ec2d34c84c1" data-legacy-id="UUID-79e8efe7-af2a-be81-ac18-4f7e5bb904d9" data-permalink= "references/steps-reference/step-data-in-the-bitrise-yml-file.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">bitrise.ymlファイルのステップデータ</a> </li> <li> <a href="../../references/steps-reference/step-properties-reference.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-b47c2d93-6f1c-2883-2f4c-3f7b74e67870" data-legacy-id="UUID-2dd3fba3-31bf-e1c2-b5a7-366837170082" data-permalink= "references/steps-reference/step-properties-reference.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステッププロパティ</a> </li> <li> <a href="../../references/steps-reference/step-inputs-reference.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-adadfd2d-d409-915c-2a14-a23845d8f930" data-legacy-id="UUID-4e634a4d-3415-960e-a65c-3fe481664149" data-permalink= "references/steps-reference/step-inputs-reference.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップ入力リファレンス</a> </li> <li> <a href="../../references/steps-reference/step-outputs-reference.html" hreflang="ja" class="topic-link section taxonomy-configuration-steps original-topic original-topic" data-origin-id="UUID-60e62e69-617d-3d17-40cb-7db191191c11" data-legacy-id="UUID-a5d0555f-842b-f43b-6aff-e4368b57d933" data-permalink= "references/steps-reference/step-outputs-reference.html" data-topic-level="3" data-relative-prefix="../../" data-publication-date="">ステップ出力リファレンス</a> </li> </ul> </li> <li> <a href="../../references/available-environment-variables.html" hreflang="ja" class="topic-link section taxonomy-configuration-env-vars original-topic original-topic" data-origin-id="UUID-06a76a7c-35cb-ddb5-1c8f-b5eacfcea5ae" data-legacy-id="UUID-61fec685-5924-fa38-d35f-72b7c421738a" data-permalink= "references/available-environment-variables.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">利用可能な環境変数</a> </li> <li> <a href="../../references/bitrise-tools.html" hreflang="ja" class="topic-link section original-topic original-topic" data-origin-id="UUID-dbe33c5c-925b-fbc2-2a2b-e917954c4f4a" data-legacy-id="UUID-61452e0b-d5a1-25e0-9ea8-8e71d494219a" data-permalink="references/bitrise-tools.html" data-topic-level="2" data-relative-prefix="../" data-publication-date="">Bitriseツール</a> </li> </ul> </li> </ul> </aside> <div class="site-content"> <div class="toolbar top-nav-on"> <div class="toolbar-tools"> <div id="navbar" class="navbar-collapse collapse"> <ul class="top-nav-menu sm sm-simple"> <li> <a href="https://support.bitrise.io/hc/en-us?utm_source=devcenter&amp;utm_medium=top_cta" class="external-top-nav-link" target="_blank">Go to Support</a> </li> <li> <a href="https://www.bitrise.io/contact?utm_source=website&amp;utm_medium=devcenter&amp;utm_campaign=contact" class="external-top-nav-link" target="_blank">Book a demo</a> </li> </ul> </div> <div class="tool-print"> <i class="fa fa-print" aria-hidden="true">print</i> </div> <div class="tool-search"> <i class="fa fa-search" aria-hidden="true"></i> <form class="tool-search-form" autocomplete="off"> <input type="text" class="form-control search-field" placeholder="" id="aa-search-input" /> </form> </div><button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".site-sidebar" 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> </div> </div> <main> <div id="top-pager"> <ul class="pager"> <li class="previous"> <a accesskey="p" id="header-navigation-prev" class="pull-left prev visible-lg visible-md" href="-android--run-lint.html">戻る</a> </li> <li class="next"> <a accesskey="n" id="header-navigation-next" class="pull-right next visible-lg visible-md" href="-android--run-unit-tests.html">次へ</a> </li> </ul> </div> <article class="topic content-container" id="content-wrapper"> <div id="topic-content" class="topic-content"> <div class="breadcrumb-container"> <ul class="breadcrumb"> <li class="breadcrumb-link"> <a href="../../index-ja.html">Bitriseドキュメントへようこそ!</a> </li> <li class="breadcrumb-link"> <a href="../../steps-and-workflows.html">手順とワークフロー</a> </li> <li class="breadcrumb-link"> <a href="../workflow-recipes-for-android-apps.html">Androidアプリのワークフローレシピ</a> </li> <li class="breadcrumb-node"><span xml:lang="en" dir="ltr" lang="en">Turn on Gradle build profiling</span></li> </ul> </div> <section xml:lang="ja" lang="ja" dir="ltr" class="section" data-origin-id="UUID-dcdf1008-3782-4b10-a562-4b5904de7707" data-legacy-id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf" data-permalink="steps-and-workflows/workflow-recipes-for-android-apps/turn-on-gradle-build-profiling.html" data-topic-level="3" data-relative-prefix= "../../" data-publication-date="" id="-en--turn-on-gradle-build-profiling"> <div class="titlepage"> <div> <div class="title"> <h1 class="title" style="clear: both"><span xml:lang="en" dir="ltr" lang="en">Turn on Gradle build profiling</span></h1> </div> </div> </div> <section dir="ltr" class="section" data-origin-id="" data-legacy-id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf_section-idm4650920501724832884782906866" data-publication-date="" id="-en--description-72380"> <div class="titlepage"> <div> <div class="title"> <h2 class="title" style="clear: both"><span xml:lang="en" dir="ltr" lang="en">Description</span></h2> </div> </div> </div> <p><span xml:lang="en" dir="ltr" lang="en">Generate and store a performance report of every Gradle build to spot build speed issues or compare different builds.</span></p> </section> <section dir="ltr" class="section" data-origin-id="" data-legacy-id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf_section-idm4580884296948832884783033383" data-publication-date="" id="-en--instructions-72380"> <div class="titlepage"> <div> <div class="title"> <h2 class="title" style="clear: both"><span xml:lang="en" dir="ltr" lang="en">Instructions</span></h2> </div> </div> </div> <p><span xml:lang="en" dir="ltr" lang="en">No matter what Android or Gradle Step you use in your Bitrise Workflow, there is an option to define additional command line arguments for Gradle. Add&nbsp;<strong class="userinput"><code>--profile</code></strong>&nbsp;to the relevant input variable to generate a performance report of the Gradle tasks. In the example below, we are adding the argument to the <span class="bold bold"><strong><a class="link" href="https://www.bitrise.io/integrations/steps/android-unit-test" target="_blank" rel="noopener">Android Unit Test</a></strong></span> Step.</span></p> <div class="procedure" id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf_procedure-idm4560573025041632888442117993"> <ol class="procedure" type="1"> <li class="step"> <p><span xml:lang="en" dir="ltr" lang="en">Add the <a class="link" href="https://www.bitrise.io/integrations/steps/android-unit-test" target="_blank" rel="noopener"><span class="bold bold"><strong>Android Unit Test</strong></span></a> Step to your Workflow and set the necessary input variables:</span></p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc;"> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en"><span class="guilabel">Project location</span>: <code class="envar">$PROJECT_LOCATION</code>.</span></p> </li> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en"><span class="guilabel">Module</span>: <code class="envar">$MODULE</code>.</span></p> </li> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en"><span class="guilabel">Variant</span>: <code class="envar">$VARIANT</code>.</span></p> </li> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en"><span class="guilabel">Arguments</span>: <strong class="userinput"><code>--profile2</code></strong>.</span></p> </li> </ul> </div> </li> <li class="step"> <p><span xml:lang="en" dir="ltr" lang="en">Add a <span class="bold bold"><strong><a class="link" href="https://www.bitrise.io/integrations/steps/script" target="_blank" rel="noopener">Script</a></strong></span> Step to the end of the Workflow to compress the report files and copy the ZIP file to the deploy directory:</span></p> <pre class="programlisting">#!/usr/bin/env bash # fail if any commands fails set -e # debug log set -x zip -r $BITRISE_DEPLOY_DIR/gradle-profile.zip $PROJECT_LOCATION/build/reports/profile</pre> <p><span xml:lang="en" dir="ltr" lang="en">Gradle creates the HTML report in <code class="filename">build/reports/profile/</code>, so we need to take all files in that folder (HTML, CSS and JS files), compress them, and move the ZIP archive to <code class="envar">$BITRISE_DEPLOY_DIR</code>. Files in this folder can be accessed on the build page’s <span class="guilabel">Artifacts</span> tab.</span></p> </li> <li class="step"> <p><span xml:lang="en" dir="ltr" lang="en">Trigger a manual build of your app.</span></p> </li> <li class="step"> <p><span xml:lang="en" dir="ltr" lang="en">Download and unarchive the <code class="filename">gradle-profile.zip</code> file, then open the HTML report in your browser.</span></p> </li> <li class="step"> <p><span xml:lang="en" dir="ltr" lang="en">Go to the <span class="guilabel">Artifacts</span> tab and check the various aspects of the build in the report:</span></p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc;"> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en">The&nbsp;<span class="guilabel">Summary</span>&nbsp;tab shows time spent on things other than task execution.</span></p> </li> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en">The&nbsp;<span class="guilabel">Task execution</span>&nbsp;tab lists all tasks sorted by execution time.</span></p> </li> <li class="listitem"> <p><span xml:lang="en" dir="ltr" lang="en">Cached tasks are marked as&nbsp;<span class="guilabel">UP-TO-DATE</span>. This helps to fine-tune the&nbsp;<a class="link" href="../../builds/caching.html" title="キャッシング">Bitrise Cache Steps</a>&nbsp;by comparing the reports of multiple builds.</span></p> </li> </ul> </div> <p><span xml:lang="en" dir="ltr" lang="en">For Gradle optimization ideas, <a class="link" href="https://developer.android.com/studio/build/profile-your-build#using-the-gradle---profile-option" target="_blank" rel="noopener">check out&nbsp;this article by Google</a>.</span></p> <p><span xml:lang="en" dir="ltr" lang="en">If you only want to display task execution times only in the build log, you can use the&nbsp;<a class="link" href="https://github.com/asarkar/build-time-tracker" target="_blank" rel="noopener">build-time-tracker</a>&nbsp;plugin.</span></p> </li> </ol> </div> </section> <section dir="ltr" class="section" data-origin-id="" data-legacy-id="UUID-7ab4118b-fe11-d555-ea8f-4959c2836fcf_section-idm4553677308113632884783162416" data-publication-date="" id="-en--bitrise-yml-72380"> <div class="titlepage"> <div> <div class="title"> <h2 class="title" style="clear: both"><span xml:lang="en" dir="ltr" lang="en">bitrise.yml</span></h2> </div> </div> </div> <pre class="programlisting">- android-unit-test@1: inputs: - project_location: $PROJECT_LOCATION - module: $MODULE - arguments: "--profile" - variant: $VARIANT - script@1: title: Collect Gradle profile report inputs: - content: |- #!/usr/bin/env bash # fail if any commands fails set -e # debug log set -x zip -r $BITRISE_DEPLOY_DIR/gradle-profile.zip $PROJECT_LOCATION/build/reports/profile - deploy-to-bitrise-io@1: {}</pre> </section> </section> <div class="footer-content"> <div class="section-toc section-toc-after"> <div class="section-toc-title"> <span class="section-toc-title-delimiter">:</span> </div> </div> <div class="glossary-definitions"></div> </div> <footer></footer> </div> </article> <aside class="section-nav-container"> <ul class="section-nav nav"> <li> <a href="#-en--turn-on-gradle-build-profiling">Turn on Gradle build profiling</a> </li> <li> <a href="#-en--description-72380">Description</a> </li> <li> <a href="#-en--instructions-72380">Instructions</a> </li> <li> <a href="#-en--bitrise-yml-72380">bitrise.yml</a> </li> </ul> </aside> <article id="search-result-wrapper"> <div class="search-container" style="display: none;"> <h2></h2> <ul class="searchresults"></ul> <p class="noresults"></p> </div> </article> <div class="feedback-panel"> <div class="voting-title"> Was this helpful? </div> <div class="btn-group btn-group-toggle" data-toggle="buttons"> <button id="feedback-yes-btn" class="btn toggle-yes">Yes</button><button id="feedback-no-btn" class="btn">No</button> </div> <div id="email-feedback" class="toggle-feedback"> <p><a href= "mailto:letsconnect@bitrise.io?subject=Feedback%20for%20help%20topic%20%22%20Turn%20on%20Gradle%20build%20profiling%22&amp;body=%0A%09%09%09%09%0A%09%09%09%09%0A%09%09%09%09_______________________%0A%09%09%09%09%0A%09%09%09Please%20add%20your%20feedback%20above%20for%20topic%20%22%20Turn%20on%20Gradle%20build%20profiling%22%20in%20the%20publication%20%22Bitrise%E3%83%89%E3%82%AD%E3%83%A5%E3%83%A1%E3%83%B3%E3%83%88%E3%81%B8%E3%82%88%E3%81%86%E3%81%93%E3%81%9D%EF%BC%81%22."> <i aria-hidden="true" class="fa fa-pencil-square-o feedbackicon voting-feedbackicon"></i>Would you like to provide feedback? Just click here to suggest edits.</a></p> </div> </div> </main> <div id="bottom-pager"> <ul class="pager"> <li class="previous"> <a accesskey="p" id="header-navigation-prev" class="pull-left prev visible-lg visible-md" href="-android--run-lint.html">戻る</a> </li> <li class="next"> <a accesskey="n" id="header-navigation-next" class="pull-right next visible-lg visible-md" href="-android--run-unit-tests.html">次へ</a> </li> </ul> </div> <footer class="site-footer"> <div class="inner"> <div class="copyright"> © 2022 </div> <div class="publication-date"> <span class="publication-date-text">発行日</span><span class="pubdate-delimiter">:</span> <span class="formatted-date"></span> </div> </div> </footer> </div> </div> </div> </div> <script type="text/javascript"> //<![CDATA[ var theme = '2'; var versionsfile = ''; var indexDict = new Array(); var store = {}; var portalLanguage = 'ja'; var enterKey = 'select'; var fuse_threshold = 0.3; var local_csh = false; var anchoroption = false; var instantsearch_minlength = 1; var useanchorlinks = false; useanchorlinks = true; var clicktocopy = 'Click to copy link'; var linkcopied = 'Link copied!'; //]]> </script> <script src="../../../js/jquery-3/jquery-3.4.1.min.js" type="text/javascript"></script> <script src="../../../js/jquery-migrate-3.0.1.min.js" type="text/javascript"></script> <script src="../../../js/materialize.min.js" type="text/javascript"></script> <script src="../../../js/bootstrap.min.js" type="text/javascript"></script> <script src="../../../js/purl.js" type="text/javascript"></script> <script src="../../../js/jquery.smartmenus.js" type="text/javascript"></script> <script src="../../../js/html5-2-mp-common.js?version=20220308" type="text/javascript"></script> <script src="../../../js/html5-2.js?version=20220308" type="text/javascript"></script> <script src="../../../js/checklist.js" type="text/javascript"></script> <script src="../../../js/clipboard.min.js" type="text/javascript"></script> <script src="../../../js/anchorlinks.js" type="text/javascript"></script> <script src="../../../js/updateurl.js" type="text/javascript"></script> <script src="../../../js/html5.algoliasearch.js?version=20220308" type="text/javascript"></script> <script src="../../../js/csh.js" type="text/javascript"></script> <script src="../../../js/layout-custom-script.js?version=20220308" type="text/javascript"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML" async="async"></script> <script async="async" src="https://www.googletagmanager.com/gtag/js?id=UA-53276411-1"></script> <script type="text/javascript"> //<![CDATA[ var propertyid = 'UA-53276411-1'; window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments)}; gtag('js', new Date()); gtag('config', propertyid); //]]> </script> <script type="text/javascript"> //<![CDATA[ $(document).ready(function () { $(".mediaobject img").addClass('materialboxed'); //Exclude images with links $(".mediaobject a img").removeClass('materialboxed'); if (!document.documentMode) { $('.materialboxed').materialbox(); }}); //]]> </script> <script type="text/javascript"> //<![CDATA[ var publication_id = 'ja-UUID-7395f1f7-ccf0-589c-1269-55efc35b445b'; var algolia_application_id = 'HI1538U2K4'; var algolia_search_only_api_key = 'e1a727481ac4f75db3e93c7763f02c8a'; //]]> </script> <script src="https://cdn.jsdelivr.net/algoliasearch/3/algoliasearch.min.js"></script> <script src="https://cdn.jsdelivr.net/autocomplete.js/0/autocomplete.jquery.min.js"></script> </body> </html>
frontend/controller.html
MichalBryxi/why-not
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Controller</title> <meta name="viewport" content="width=device-width,user-scalable=yes" /> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css" integrity="sha384-aUGj/X2zp5rLCbBxumKTCw2Z50WgIr1vs/PFN4praOTvYXWlVyh2UtNUU0KAUhAX" crossorigin="anonymous"> <script src="https://cdn.socket.io/socket.io-1.2.0.js"></script> <script src="http://code.jquery.com/jquery-1.11.1.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.10.1/lodash.min.js"></script> <style type="text/css"> td, th { text-align: right; } </style> </head> <body class="container"> <div class="row"> <div class="col-xs-12"> <div class="page-header"> <h1>Controller <small>for unrealistic rowing simulator</small></h1> </div> <div class="btn-toolbar" role="toolbar"> <div class="btn-group" id="controller-id-selector" role="group"> <button type="button" class="btn btn-primary">1</button> <button type="button" class="btn btn-default">2</button> <button type="button" class="btn btn-default">3</button> <button type="button" class="btn btn-default">4</button> </div> </div> <table class="table table-hover"> <thead> <tr> <th>Name</th> <th>Value</th> </tr> </thead> <tbody> <tr><th>acceleration x:</th><td id="accelerationX"></td></tr> <tr><th>acceleration y:</th><td id="accelerationY"></td></tr> <tr><th>acceleration z:</th><td id="accelerationZ"></td></tr> <tr><th>rotation alpha:</th><td id="rotationAlpha"></td></tr> <tr><th>rotation beta:</th><td id="rotationBeta"></td></tr> <tr><th>rotation gamma:</th><td id="rotationGamma"></td></tr> </tbody> </table> <hr /> <button id="demoOn" type="button" class="btn btn-primary btn-lg btn-block">Demo mode</button> </div> </div> <script src="./lib/controller.js"></script> </body> </html>
pug/mobile/mobile_content.html
AkkiParekh/Cool-Framework
<div class="container"> <div class="row"> <div class="col s12 m9 l10"> <!-- Sidenav --> <div id="right" class="section scrollspy"> <h2 class="header">Navbar</h2> <p class="caption">The navbar is fully contained by an HTML5 Nav tag. Inside a recommended container div, there are 2 main parts of the navbar. A logo or brand link, and the navigations links. You can align these links to the left or right. </p> <h4>Drag Out Menu</h4> <p>This plugin includes several options for customizing the menu. See <a href="side-nav.html#options">Plugin Options</a> for details.</p> <img class="mobile-image" src="images/menu.gif"> </div> <!-- Toast --> <div id="toast-mobile" class="section scrollspy"> <h2 class="header">Toast</h2> <h4>Swipe to Dismiss</h4> <p>On all devices, you can swipe to dismiss toasts.</p> <img class="mobile-image" src="images/toast.gif"> </div> </div> <div class="col hide-on-small-only m3 l2"> <div class="toc-wrapper"> <div class="buysellads hide-on-small-only"> <!-- CarbonAds Zone Code --> <script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?zoneid=1673&serve=C6AILKT&placement=materializecss" id="_carbonads_js"></script> </div> <div style="height: 1px;"> <ul class="section table-of-contents"> <li> <a href="#right">Sidebar</a> </li> <li> <a href="#toast-mobile">Toast</a> </li> </ul> </div> </div> </div> </div> <!-- End Container -->
docs/css/main.css
feministy/princess.io
#wrapper { width: 100%; } #container { max-width: 1200px; margin: 0 auto; } .box { width: 25px; height: 25px; display: inline-block; } nav { width: 300px; float: left; } section { margin-left: 300px; } .script { font-family: 'swingdancer', 'Helvetica', sans-serif; } h1.script { font-size: 6em; text-align: center; margin: 40px 0px; }
mathdisplaylib/doc/com.agog.mathdisplay.render/-m-t-font-math-table/get-glyph-name.html
gregcockroft/AndroidMath
<HTML> <HEAD> <meta charset="UTF-8"> <title>MTFontMathTable.getGlyphName - </title> <link rel="stylesheet" href="../../style.css"> </HEAD> <BODY> <a href="../index.html">com.agog.mathdisplay.render</a>&nbsp;/&nbsp;<a href="index.html">MTFontMathTable</a>&nbsp;/&nbsp;<a href=".">getGlyphName</a><br/> <br/> <h1>getGlyphName</h1> <a name="com.agog.mathdisplay.render.MTFontMathTable$getGlyphName(kotlin.Int)"></a> <code><span class="keyword">fun </span><span class="identifier">getGlyphName</span><span class="symbol">(</span><span class="identifier" id="com.agog.mathdisplay.render.MTFontMathTable$getGlyphName(kotlin.Int)/gid">gid</span><span class="symbol">:</span>&nbsp;<span class="identifier">Int</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">String</span></code> </BODY> </HTML>
html/anonymous.html
stt/vkthread
<table style="text-align:justify;"> <tr><td> <div class="h6">Anonymous Function</div> <p>Anonymous function also can be run in a thread, why not?</p> <input type="button" value="Run in Page" onclick="run_anonim()" /> <span class="span_demo_result" id="demo_result"></span> <input value="clear" type="button" onclick="document.getElementById('demo_result').innerHTML =''"/> <pre><code data-language="javascript">var foo = (function(ar1,ar2){ return _.union(ar1,ar2); })([1,2,3],[3,4,5]); console.log(foo); </code></pre> <input type="button" value="Run in Thread" onclick="run_anonim_in_thread()" /> <span class="span_demo_result" id="demo_result_thread"></span> <input value="clear" type="button" onclick="document.getElementById('demo_result_thread').innerHTML =''"/> <pre><code data-language="javascript">/* Callback style */ vkthread.exec(function(ar1,ar2){return _.union(ar1,ar2)}, //anonymous function [[1,2,3],[3,4,5]], //list of arguments function(data){ // callback function var foo = data; console.log(foo); }, ['../js/underscore-min.js'] ); /* Promise style */ vkthread.run(function(ar1,ar2){return _.union(ar1,ar2)}, //anonymous function [[1,2,3],[3,4,5]], //list of arguments ['../js/underscore-min.js'] ).then(function(data){ var foo = data; console.log(foo); }); </code></pre> <p> </td></tr></table>
examples/dropdown/DropDown.Base.selectedField.sample.html
atatanasov/gijgo
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example</title> <script src="../../dist/modular/js/core.js" type="text/javascript"></script> <link href="../../dist/modular/css/core.css" rel="stylesheet" type="text/css"> <link href="../../dist/modular/css/dropdown.css" rel="stylesheet" type="text/css"> <script src="../../dist/modular/js/dropdown.js"></script> </head> <body style="padding: 8px;"> <select id="dropdown" width="200"></select> <script> $('#dropdown').dropdown({ selectedField: 'newSelectedField', dataSource: [ { value: 1, text: 'One' }, { value: 2, text: 'Two', newSelectedField: true }, { value: 3, text: 'Three' } ] }); </script> </body> </html>
lib/components/ButtonBase/ButtonBase.css
globalmouth/glomo-boxes
.root { display: inline-flex; align-items: center; justify-content: center; position: relative; /* Remove grey highlight */ -webkit-tap-highlight-color: transparent; background-color: transparent; /* Reset default value */ outline: none; border: 0; border-radius: 0; cursor: pointer; user-select: none; appearance: none; text-decoration: none; /* So we take precedent over the style of a native <a /> element. */ color: inherit; &::-moz-focus-inner { border-style: none; /* Remove Firefox dotted outline. */ } } .disabled { pointer-events: none; /* Disable link interactions */ cursor: default; } .spinner { position: relative; flex: 1; }
v3/user-agent-detail/31/e1/31e1e483-f39c-4c1e-8c04-a31f972c6684.html
ThaDafinser/UserAgentParserComparison
<html> <head> <title>Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1</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"> Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1 <p> Detected by 7 of 8 providers<br /> As bot detected by 0 of 7 </p> </div> </div> <div class="section"> <table class="striped"><tr><th></th><th colspan="3">General</th><th colspan="5">Device</th><th colspan="3">Bot</th><th></th></tr><tr><th>Provider</th><th>Browser</th><th>Engine</th><th>OS</th><th>Brand</th><th>Model</th><th>Type</th><th>Is mobile</th><th>Is touch</th><th>Is bot</th><th>Name</th><th>Type</th><th>Actions</th></tr><tr><td>BrowscapPhp<br /><small>6011</small></td><td>Nokia </td><td> </td><td> </td><td>Nokia</td><td></td><td>Mobile Phone</td><td>yes</td><td></td><td></td><td></td><td></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9">Detail</a> <!-- Modal Structure --> <div id="modal-cbfe2df3-330b-4abd-b5df-0ca181549ca9" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>BrowscapPhp result detail</h4> <p><pre><code class="php">stdClass Object ( [browser_name_regex] => /^.*nokia.*$/ [browser_name_pattern] => *nokia* [parent] => Nokia [comment] => Nokia [browser] => Nokia [browser_type] => Browser [browser_bits] => 0 [browser_maker] => Nokia [browser_modus] => unknown [version] => 0.0 [majorver] => 0 [minorver] => 0 [platform] => unknown [platform_version] => unknown [platform_description] => unknown [platform_bits] => 0 [platform_maker] => unknown [alpha] => [beta] => [win16] => [win32] => [win64] => [frames] => 1 [iframes] => 1 [tables] => 1 [cookies] => 1 [backgroundsounds] => [javascript] => 1 [vbscript] => [javaapplets] => [activexcontrols] => [ismobiledevice] => 1 [istablet] => [issyndicationreader] => [crawler] => [cssversion] => 0 [aolversion] => 0 [device_name] => general Mobile Device [device_maker] => Nokia [device_type] => Mobile Phone [device_pointing_method] => unknown [device_code_name] => general Mobile Device [device_brand_name] => Nokia [renderingengine_name] => unknown [renderingengine_version] => unknown [renderingengine_description] => unknown [renderingengine_maker] => unknown ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>DonatjUAParser<br /><small>v0.5.0</small></td><td>Nokia6500s 2.0</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-6fae891b-b0d5-4415-b07d-355015c3af67">Detail</a> <!-- Modal Structure --> <div id="modal-6fae891b-b0d5-4415-b07d-355015c3af67" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>DonatjUAParser result detail</h4> <p><pre><code class="php">Array ( [platform] => [browser] => Nokia6500s [version] => 2.0 ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>PiwikDeviceDetector<br /><small>3.5.1</small></td><td>Nokia Browser </td><td> </td><td>Symbian </td><td>Nokia</td><td>6500s</td><td>smartphone</td><td>yes</td><td></td><td></td><td></td><td></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf">Detail</a> <!-- Modal Structure --> <div id="modal-fc0f1b55-50d8-49c2-bb12-4cc1d8144ebf" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>PiwikDeviceDetector result detail</h4> <p><pre><code class="php">Array ( [client] => Array ( [type] => browser [name] => Nokia Browser [short_name] => NB [version] => [engine] => ) [operatingSystem] => Array ( [name] => Symbian [short_name] => SYM [version] => [platform] => ) [device] => Array ( [brand] => NK [brandName] => Nokia [model] => 6500s [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>Nokia Browser 2.0</td><td><i class="material-icons">close</i></td><td>Nokia </td><td><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></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-8c08f104-4e61-421b-9405-291b09c383dc">Detail</a> <!-- Modal Structure --> <div id="modal-8c08f104-4e61-421b-9405-291b09c383dc" 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] => Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1 ) [name:Sinergi\BrowserDetector\Browser:private] => Nokia Browser [version:Sinergi\BrowserDetector\Browser:private] => 2.0 [isRobot:Sinergi\BrowserDetector\Browser:private] => [isChromeFrame:Sinergi\BrowserDetector\Browser:private] => ) [operatingSystem] => Sinergi\BrowserDetector\Os Object ( [name:Sinergi\BrowserDetector\Os:private] => Nokia [version:Sinergi\BrowserDetector\Os:private] => unknown [isMobile:Sinergi\BrowserDetector\Os:private] => 1 [userAgent:Sinergi\BrowserDetector\Os:private] => Sinergi\BrowserDetector\UserAgent Object ( [userAgentString:Sinergi\BrowserDetector\UserAgent:private] => Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1 ) ) [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] => Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1 ) ) ) </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>Nokia Services (WAP) Browser </td><td><i class="material-icons">close</i></td><td> </td><td>Nokia</td><td>6500s</td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-8f4c86c5-433e-4536-b799-ad26d77264e0">Detail</a> <!-- Modal Structure --> <div id="modal-8f4c86c5-433e-4536-b799-ad26d77264e0" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>UAParser result detail</h4> <p><pre><code class="php">UAParser\Result\Client Object ( [ua] => UAParser\Result\UserAgent Object ( [major] => [minor] => [patch] => [family] => Nokia Services (WAP) Browser ) [os] => UAParser\Result\OperatingSystem Object ( [major] => [minor] => [patch] => [patchMinor] => [family] => Other ) [device] => UAParser\Result\Device Object ( [brand] => Nokia [model] => 6500s [family] => Nokia 6500s ) [originalUserAgent] => Nokia6500s/2.0 (10.00) Profile/MIDP-2.1 Configuration/CLDC-1.1 ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>WhichBrowser<br /><small>2.0.9</small></td><td> </td><td> </td><td>Series40 </td><td>Nokia</td><td>6500 slide</td><td>mobile:feature</td><td>yes</td><td><i class="material-icons">close</i></td><td></td><td></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b">Detail</a> <!-- Modal Structure --> <div id="modal-62f1f3a3-0c44-4ecb-9ee2-48145e35736b" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>WhichBrowser result detail</h4> <p><pre><code class="php">Array ( [os] => Array ( [name] => Series40 ) [device] => Array ( [type] => mobile [subtype] => feature [manufacturer] => Nokia [model] => 6500 slide ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr><tr><td>Woothee<br /><small>v1.2.0</small></td> <td colspan="12" class="center-align red lighten-1"> <strong>No result found</strong> </td> </tr><tr><td>Wurfl<br /><small>1.6.4</small></td><td>Java Applet </td><td><i class="material-icons">close</i></td><td> </td><td>Nokia</td><td>6500s</td><td>Feature Phone</td><td>yes</td><td></td><td></td><td><i class="material-icons">close</i></td><td><i class="material-icons">close</i></td><td> <!-- Modal Trigger --> <a class="modal-trigger btn waves-effect waves-light" href="#modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027">Detail</a> <!-- Modal Structure --> <div id="modal-3a72b31e-c3c1-4317-a357-7a6d5e3c7027" class="modal modal-fixed-footer"> <div class="modal-content"> <h4>Wurfl result detail</h4> <p><pre><code class="php">Array ( [virtual] => Array ( [is_android] => false [is_ios] => false [is_windows_phone] => false [is_app] => false [is_full_desktop] => false [is_largescreen] => false [is_mobile] => true [is_robot] => false [is_smartphone] => false [is_touchscreen] => false [is_wml_preferred] => false [is_xhtmlmp_preferred] => true [is_html_preferred] => false [advertised_device_os] => [advertised_device_os_version] => [advertised_browser] => Java Applet [advertised_browser_version] => [complete_device_name] => Nokia 6500s (Slide) [form_factor] => Feature Phone [is_phone] => true [is_app_webview] => false ) [all] => Array ( [brand_name] => Nokia [model_name] => 6500s [unique] => true [ununiqueness_handler] => [is_wireless_device] => true [device_claims_web_support] => false [has_qwerty_keyboard] => false [can_skip_aligned_link_row] => true [uaprof] => http://nds1.nds.nokia.com/uaprof/N6500sr100.xml [uaprof2] => [uaprof3] => [nokia_series] => 40 [nokia_edition] => 5 [device_os] => [mobile_browser] => Nokia [mobile_browser_version] => [device_os_version] => [pointing_method] => [release_date] => 2007_june [marketing_name] => Slide [model_extra_info] => [nokia_feature_pack] => 1 [can_assign_phone_number] => true [is_tablet] => false [manufacturer_name] => [is_bot] => false [is_google_glass] => false [proportional_font] => true [built_in_back_button_support] => false [card_title_support] => true [softkey_support] => true [table_support] => true [numbered_menus] => false [menu_with_select_element_recommended] => false [menu_with_list_of_links_recommended] => true [icons_on_menu_items_support] => true [break_list_of_links_with_br_element_recommended] => false [access_key_support] => false [wrap_mode_support] => true [times_square_mode_support] => false [deck_prefetch_support] => false [elective_forms_recommended] => true [wizards_recommended] => false [image_as_link_support] => true [insert_br_element_after_widget_recommended] => false [wml_can_display_images_and_text_on_same_line] => false [wml_displays_image_in_center] => false [opwv_wml_extensions_support] => false [wml_make_phone_call_string] => wtai://wp/mc; [chtml_display_accesskey] => false [emoji] => false [chtml_can_display_images_and_text_on_same_line] => false [chtml_displays_image_in_center] => false [imode_region] => none [chtml_make_phone_call_string] => tel: [chtml_table_support] => false [xhtml_honors_bgcolor] => false [xhtml_supports_forms_in_table] => false [xhtml_support_wml2_namespace] => false [xhtml_autoexpand_select] => false [xhtml_select_as_dropdown] => false [xhtml_select_as_radiobutton] => false [xhtml_select_as_popup] => false [xhtml_display_accesskey] => true [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] => true [xhtml_format_as_attribute] => false [xhtml_nowrap_mode] => false [xhtml_marquee_as_css_property] => false [xhtml_readable_background_color1] => #D9EFFF [xhtml_readable_background_color2] => #FFFFFF [xhtml_allows_disabled_form_elements] => false [xhtml_document_title_support] => true [xhtml_preferred_charset] => utf8 [opwv_xhtml_extensions_support] => false [xhtml_make_phone_call_string] => wtai://wp/mc; [xhtmlmp_preferred_mime_type] => application/xhtml+xml [xhtml_table_support] => true [xhtml_send_sms_string] => none [xhtml_send_mms_string] => none [xhtml_file_upload] => supported [cookie_support] => true [accept_third_party_cookie] => true [xhtml_supports_iframe] => full [xhtml_avoid_accesskeys] => false [xhtml_can_embed_video] => none [ajax_support_javascript] => true [ajax_manipulate_css] => false [ajax_support_getelementbyid] => true [ajax_support_inner_html] => false [ajax_xhr_type] => none [ajax_manipulate_dom] => false [ajax_support_events] => false [ajax_support_event_listener] => false [ajax_preferred_geoloc_api] => none [xhtml_support_level] => 2 [preferred_markup] => html_wi_oma_xhtmlmp_1_0 [wml_1_1] => true [wml_1_2] => true [wml_1_3] => true [html_wi_w3_xhtmlbasic] => true [html_wi_oma_xhtmlmp_1_0] => true [html_wi_imode_html_1] => false [html_wi_imode_html_2] => false [html_wi_imode_html_3] => false [html_wi_imode_html_4] => false [html_wi_imode_html_5] => false [html_wi_imode_htmlx_1] => false [html_wi_imode_htmlx_1_1] => false [html_wi_imode_compact_generic] => false [html_web_3_2] => true [html_web_4_0] => true [voicexml] => false [multipart_support] => true [total_cache_disable_support] => false [time_to_live_support] => false [resolution_width] => 240 [resolution_height] => 320 [columns] => 15 [max_image_width] => 224 [max_image_height] => 300 [rows] => 16 [physical_screen_width] => 34 [physical_screen_height] => 45 [dual_orientation] => false [density_class] => 1.0 [wbmp] => true [bmp] => true [epoc_bmp] => false [gif_animated] => true [jpg] => true [png] => true [tiff] => false [transparent_png_alpha] => true [transparent_png_index] => false [svgt_1_1] => false [svgt_1_1_plus] => false [greyscale] => false [gif] => true [colors] => 16777216 [webp_lossy_support] => false [webp_lossless_support] => false [post_method_support] => true [basic_authentication_support] => true [empty_option_value_support] => true [emptyok] => false [nokia_voice_call] => true [wta_voice_call] => false [wta_phonebook] => true [wta_misc] => false [wta_pdc] => false [https_support] => true [phone_id_provided] => false [max_data_rate] => 384 [wifi] => false [sdio] => false [vpn] => false [has_cellular_radio] => true [max_deck_size] => 50000 [max_url_length_in_requests] => 255 [max_url_length_homepage] => 100 [max_url_length_bookmark] => 255 [max_url_length_cached_page] => 128 [max_no_of_connection_settings] => 5 [max_no_of_bookmarks] => 25 [max_length_of_username] => 32 [max_length_of_password] => 20 [max_object_size] => 0 [downloadfun_support] => false [directdownload_support] => true [inline_support] => true [oma_support] => true [ringtone] => true [ringtone_3gpp] => false [ringtone_midi_monophonic] => true [ringtone_midi_polyphonic] => true [ringtone_imelody] => false [ringtone_digiplug] => false [ringtone_compactmidi] => false [ringtone_mmf] => false [ringtone_rmf] => false [ringtone_xmf] => true [ringtone_amr] => true [ringtone_awb] => true [ringtone_aac] => true [ringtone_wav] => true [ringtone_mp3] => true [ringtone_spmidi] => true [ringtone_qcelp] => false [ringtone_voices] => 4 [ringtone_df_size_limit] => 0 [ringtone_directdownload_size_limit] => 0 [ringtone_inline_size_limit] => 0 [ringtone_oma_size_limit] => 0 [wallpaper] => true [wallpaper_max_width] => 128 [wallpaper_max_height] => 128 [wallpaper_preferred_width] => 240 [wallpaper_preferred_height] => 320 [wallpaper_resize] => none [wallpaper_wbmp] => true [wallpaper_bmp] => false [wallpaper_gif] => true [wallpaper_jpg] => true [wallpaper_png] => true [wallpaper_tiff] => false [wallpaper_greyscale] => false [wallpaper_colors] => 12 [wallpaper_df_size_limit] => 0 [wallpaper_directdownload_size_limit] => 0 [wallpaper_inline_size_limit] => 0 [wallpaper_oma_size_limit] => 0 [screensaver] => true [screensaver_max_width] => 128 [screensaver_max_height] => 128 [screensaver_preferred_width] => 128 [screensaver_preferred_height] => 128 [screensaver_resize] => none [screensaver_wbmp] => true [screensaver_bmp] => false [screensaver_gif] => true [screensaver_jpg] => true [screensaver_png] => true [screensaver_greyscale] => false [screensaver_colors] => 12 [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] => 126 [picture_max_height] => 94 [picture_preferred_width] => 126 [picture_preferred_height] => 94 [picture_resize] => none [picture_wbmp] => true [picture_bmp] => false [picture_gif] => true [picture_jpg] => true [picture_png] => true [picture_greyscale] => false [picture_colors] => 12 [picture_df_size_limit] => 0 [picture_directdownload_size_limit] => 4194304 [picture_inline_size_limit] => 0 [picture_oma_size_limit] => 0 [video] => true [oma_v_1_0_forwardlock] => true [oma_v_1_0_combined_delivery] => true [oma_v_1_0_separate_delivery] => true [streaming_video] => 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] => 30 [streaming_vcodec_h263_3] => -1 [streaming_vcodec_mpeg4_sp] => 3 [streaming_vcodec_mpeg4_asp] => -1 [streaming_vcodec_h264_bp] => 1.3 [streaming_acodec_amr] => nb [streaming_acodec_aac] => lc [streaming_wmv] => none [streaming_preferred_protocol] => rtsp [streaming_preferred_http_protocol] => none [wap_push_support] => true [connectionless_service_indication] => true [connectionless_service_load] => true [connectionless_cache_operation] => true [connectionoriented_unconfirmed_service_indication] => true [connectionoriented_unconfirmed_service_load] => true [connectionoriented_unconfirmed_cache_operation] => true [connectionoriented_confirmed_service_indication] => true [connectionoriented_confirmed_service_load] => true [connectionoriented_confirmed_cache_operation] => true [utf8_support] => false [ascii_support] => true [iso8859_support] => false [expiration_date] => false [j2me_cldc_1_0] => true [j2me_cldc_1_1] => true [j2me_midp_1_0] => true [j2me_midp_2_0] => true [doja_1_0] => false [doja_1_5] => false [doja_2_0] => false [doja_2_1] => false [doja_2_2] => false [doja_3_0] => false [doja_3_5] => false [doja_4_0] => false [j2me_jtwi] => false [j2me_mmapi_1_0] => true [j2me_mmapi_1_1] => false [j2me_wmapi_1_0] => true [j2me_wmapi_1_1] => false [j2me_wmapi_2_0] => false [j2me_btapi] => false [j2me_3dapi] => false [j2me_locapi] => false [j2me_nokia_ui] => true [j2me_motorola_lwt] => false [j2me_siemens_color_game] => false [j2me_siemens_extension] => false [j2me_heap_size] => 524288 [j2me_max_jar_size] => 131072 [j2me_storage_size] => 0 [j2me_max_record_store_size] => 0 [j2me_screen_width] => 240 [j2me_screen_height] => 320 [j2me_canvas_width] => 0 [j2me_canvas_height] => 0 [j2me_bits_per_pixel] => 16 [j2me_audio_capture_enabled] => false [j2me_video_capture_enabled] => false [j2me_photo_capture_enabled] => false [j2me_capture_image_formats] => none [j2me_http] => 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] => true [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] => true [j2me_h263] => false [j2me_svgt] => false [j2me_mpeg4] => false [j2me_realvideo] => false [j2me_real8] => false [j2me_realmedia] => false [j2me_left_softkey_code] => -6 [j2me_right_softkey_code] => -7 [j2me_middle_softkey_code] => -5 [j2me_select_key_code] => 0 [j2me_return_key_code] => 0 [j2me_clear_key_code] => -8 [j2me_datefield_no_accepts_null_date] => false [j2me_datefield_broken] => false [receiver] => true [sender] => true [mms_max_size] => 307200 [mms_max_height] => 480 [mms_max_width] => 640 [built_in_recorder] => false [built_in_camera] => false [mms_jpeg_baseline] => true [mms_jpeg_progressive] => false [mms_gif_static] => true [mms_gif_animated] => true [mms_png] => true [mms_bmp] => true [mms_wbmp] => true [mms_amr] => true [mms_wav] => false [mms_midi_monophonic] => true [mms_midi_polyphonic] => true [mms_midi_polyphonic_voices] => 0 [mms_spmidi] => true [mms_mmf] => false [mms_mp3] => true [mms_evrc] => false [mms_qcelp] => false [mms_ota_bitmap] => false [mms_nokia_wallpaper] => true [mms_nokia_operatorlogo] => true [mms_nokia_3dscreensaver] => false [mms_nokia_ringingtone] => true [mms_rmf] => false [mms_xmf] => false [mms_symbian_install] => false [mms_jar] => true [mms_jad] => true [mms_vcard] => true [mms_vcalendar] => true [mms_wml] => true [mms_wbxml] => true [mms_wmlc] => true [mms_video] => true [mms_mp4] => false [mms_3gpp] => true [mms_3gpp2] => false [mms_max_frame_rate] => 0 [nokiaring] => true [picturemessage] => true [operatorlogo] => true [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] => true [mmf] => false [smf] => false [mld] => false [midi_monophonic] => true [midi_polyphonic] => true [sp_midi] => true [rmf] => false [xmf] => true [compactmidi] => false [digiplug] => false [nokia_ringtone] => true [imelody] => false [au] => false [amr] => true [awb] => true [aac] => true [mp3] => true [voices] => 4 [qcelp] => false [evrc] => false [flash_lite_version] => 2_1 [fl_wallpaper] => false [fl_screensaver] => false [fl_standalone] => false [fl_browser] => false [fl_sub_lcd] => false [full_flash_support] => false [css_supports_width_as_percentage] => true [css_border_image] => none [css_rounded_corners] => none [css_gradient] => none [css_spriting] => false [css_gradient_linear] => none [is_transcoder] => false [transcoder_ua_header] => user-agent [rss_support] => false [pdf_support] => false [progressive_download] => true [playback_vcodec_h263_0] => 30 [playback_vcodec_h263_3] => -1 [playback_vcodec_mpeg4_sp] => 3 [playback_vcodec_mpeg4_asp] => -1 [playback_vcodec_h264_bp] => 1.3 [playback_real_media] => none [playback_3gpp] => true [playback_3g2] => true [playback_mp4] => true [playback_mov] => false [playback_acodec_amr] => nb [playback_acodec_aac] => lc [playback_df_size_limit] => 0 [playback_directdownload_size_limit] => 0 [playback_inline_size_limit] => 0 [playback_oma_size_limit] => 0 [playback_acodec_qcelp] => false [playback_wmv] => none [hinted_progressive_download] => false [html_preferred_dtd] => xhtml_mp1 [viewport_supported] => false [viewport_width] => [viewport_userscalable] => [viewport_initial_scale] => [viewport_maximum_scale] => [viewport_minimum_scale] => [mobileoptimized] => false [handheldfriendly] => false [canvas_support] => none [image_inlining] => false [is_smarttv] => false [is_console] => false [nfc_support] => false [ux_full_desktop] => false [jqm_grade] => none [is_sencha_touch_ok] => false [controlcap_is_smartphone] => default [controlcap_is_ios] => default [controlcap_is_android] => default [controlcap_is_robot] => default [controlcap_is_app] => default [controlcap_advertised_device_os] => default [controlcap_advertised_device_os_version] => default [controlcap_advertised_browser] => default [controlcap_advertised_browser_version] => default [controlcap_is_windows_phone] => default [controlcap_is_full_desktop] => default [controlcap_is_largescreen] => default [controlcap_is_mobile] => default [controlcap_is_touchscreen] => default [controlcap_is_wml_preferred] => default [controlcap_is_xhtmlmp_preferred] => default [controlcap_is_html_preferred] => default [controlcap_form_factor] => default [controlcap_complete_device_name] => default ) ) </code></pre></p> </div> <div class="modal-footer"> <a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">close</a> </div> </div> </td></tr></table> </div> <div class="section"> <h1 class="header center orange-text">About this comparison</h1> <div class="row center"> <h5 class="header light"> The primary goal of this project is simple<br /> I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br /> <br /> The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br /> <br /> You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br /> <br /> The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a> </h5> </div> </div> <div class="card"> <div class="card-content"> Comparison created <i>2016-01-26 16:42:27</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>
Assignment3/doc/index-files/index-14.html
Glavin001/CSCI3465-Assignment3
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Wed Apr 02 02:41:45 ADT 2014 --> <TITLE> U-Index </TITLE> <META NAME="date" CONTENT="2014-04-02"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="U-Index"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../assignment3/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../assignment3/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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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="index-13.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-14.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 ========= --> <A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">K</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">O</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <A HREF="index-13.html">T</A> <A HREF="index-14.html">U</A> <A HREF="index-15.html">X</A> <A HREF="index-16.html">Y</A> <HR> <A NAME="_U_"><!-- --></A><H2> <B>U</B></H2> <DL> <DT><A HREF="../assignment3/FridgeMagnet.html#updatePosition(int, int)"><B>updatePosition(int, int)</B></A> - Method in class assignment3.<A HREF="../assignment3/FridgeMagnet.html" title="class in assignment3">FridgeMagnet</A> <DD>Update position of Magnet. <DT><A HREF="../assignment3/MagnetObject.html#updatePosition(int, int)"><B>updatePosition(int, int)</B></A> - Method in class assignment3.<A HREF="../assignment3/MagnetObject.html" title="class in assignment3">MagnetObject</A> <DD>Move to a new position. </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../assignment3/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../assignment3/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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT>&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="index-13.html"><B>PREV LETTER</B></A>&nbsp; &nbsp;<A HREF="index-15.html"><B>NEXT LETTER</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../index.html?index-filesindex-14.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="index-14.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 ======= --> <A HREF="index-1.html">A</A> <A HREF="index-2.html">C</A> <A HREF="index-3.html">D</A> <A HREF="index-4.html">F</A> <A HREF="index-5.html">G</A> <A HREF="index-6.html">I</A> <A HREF="index-7.html">K</A> <A HREF="index-8.html">L</A> <A HREF="index-9.html">M</A> <A HREF="index-10.html">O</A> <A HREF="index-11.html">R</A> <A HREF="index-12.html">S</A> <A HREF="index-13.html">T</A> <A HREF="index-14.html">U</A> <A HREF="index-15.html">X</A> <A HREF="index-16.html">Y</A> <HR> </BODY> </HTML>
public/adminlte/css/AdminLTE.css
rockdragon/spider.web
/*! * AdminLTE v1.2 * Author: AlmsaeedStudio.com * License: Open source - MIT * Please visit http://opensource.org/licenses/MIT for more information !*/ /* Core: General style ---------------------------- */ html, body { overflow-x: hidden!important; font-family: 'Source Sans Pro', sans-serif; -webkit-font-smoothing: antialiased; min-height: 100%; background: #f9f9f9; } a { color: #3c8dbc; } a:hover, a:active, a:focus { outline: none; text-decoration: none; color: #72afd2; } /* Layouts */ .wrapper { min-height: 100%; } .wrapper:before, .wrapper:after { display: table; content: " "; } .wrapper:after { clear: both; } /* Header */ body > .header { position: absolute; top: 0; left: 0; right: 0; z-index: 1030; } /* Define 2 column template */ .right-side, .left-side { min-height: 100%; display: block; } /*right side - contins main content*/ .right-side { background-color: #f9f9f9; margin-left: 220px; } /*left side - contains sidebar*/ .left-side { position: absolute; width: 220px; top: 0; } @media screen and (min-width: 992px) { .left-side { top: 50px; } /*Right side strech mode*/ .right-side.strech { margin-left: 0; } .right-side.strech > .content-header { margin-top: 0px; } /* Left side collapse */ .left-side.collapse-left { left: -220px; } } /*Give content full width on xs screens*/ @media screen and (max-width: 992px) { .right-side { margin-left: 0; } } /* By default the layout is not fixed but if you add the class .fixed to the body element the sidebar and the navbar will automatically become poisitioned fixed */ body.fixed > .header, body.fixed .left-side, body.fixed .navbar { position: fixed; } body.fixed > .header { top: 0; right: 0; left: 0; } body.fixed .navbar { left: 0; right: 0; } body.fixed .wrapper { margin-top: 50px; } /* Content */ .content { padding: 20px 15px; background: #f9f9f9; overflow: auto; } /* Utility */ /* H1 - H6 font */ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: 'Source Sans Pro', sans-serif; } /* Page Header */ .page-header { margin: 10px 0 20px 0; font-size: 22px; } .page-header > small { color: #666; display: block; margin-top: 5px; } /* All images should be responsive */ img { max-width: 100%important; } .sort-highlight { background: #f4f4f4; border: 1px dashed #ddd; margin-bottom: 10px; } /* 10px padding and margins */ .pad { padding: 10px; } .margin { margin: 10px; } /* Display inline */ .inline { display: inline; width: auto; } /* Background colors */ .bg-red, .bg-yellow, .bg-aqua, .bg-blue, .bg-light-blue, .bg-green, .bg-navy, .bg-teal, .bg-olive, .bg-lime, .bg-orange, .bg-fuchsia, .bg-purple, .bg-maroon, .bg-black { color: #f9f9f9 !important; } .bg-gray { background-color: #eaeaec !important; } .bg-black { background-color: #222222 !important; } .bg-red { background-color: #f56954 !important; } .bg-yellow { background-color: #f39c12 !important; } .bg-aqua { background-color: #00c0ef !important; } .bg-blue { background-color: #0073b7 !important; } .bg-light-blue { background-color: #3c8dbc !important; } .bg-green { background-color: #00a65a !important; } .bg-navy { background-color: #001f3f !important; } .bg-teal { background-color: #39cccc !important; } .bg-olive { background-color: #3d9970 !important; } .bg-lime { background-color: #01ff70 !important; } .bg-orange { background-color: #ff851b !important; } .bg-fuchsia { background-color: #f012be !important; } .bg-purple { background-color: #932ab6 !important; } .bg-maroon { background-color: #85144b !important; } /* Text colors */ .text-red { color: #f56954 !important; } .text-yellow { color: #f39c12 !important; } .text-aqua { color: #00c0ef !important; } .text-blue { color: #0073b7 !important; } .text-light-blue { color: #3c8dbc !important; } .text-green { color: #00a65a !important; } .text-navy { color: #001f3f !important; } .text-teal { color: #39cccc !important; } .text-olive { color: #3d9970 !important; } .text-lime { color: #01ff70 !important; } .text-orange { color: #ff851b !important; } .text-fuchsia { color: #f012be !important; } .text-purple { color: #932ab6 !important; } .text-maroon { color: #85144b !important; } /*Hide elements by display none only*/ .hide { display: none !important; } /* Remove borders */ .no-border { border: 0px !important; } /* Remove padding */ .no-padding { padding: 0px !important; } /* Remove margins */ .no-margin { margin: 0px !important; } /* Remove box shadow */ .no-shadow { box-shadow: none!important; } /* Don't display when printing */ @media print { .no-print { display: none; } .left-side, .header, .content-header { display: none; } .right-side { margin: 0; } } /* Remove border radius */ .flat { -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } /* Change the color of the striped tables */ .table-striped > tbody > tr:nth-child(odd) > td, .table-striped > tbody > tr:nth-child(odd) > th { background-color: #f3f4f5; } /* .text-center in tables */ table.text-center td, table.text-center th { text-align: center; } /* _fix for sparkline tooltip */ .jqstooltip { padding: 5px!important; width: auto!important; height: auto!important; } /* Components: navbar, logo and content header ------------------------------------------------- */ body > .header { position: relative; max-height: 100px; z-index: 1030; } body > .header .navbar { height: 50px; margin-bottom: 0; margin-left: 220px; } body > .header .navbar .sidebar-toggle { float: left; padding: 9px 5px; margin-top: 8px; margin-right: 0; margin-bottom: 8px; margin-left: 5px; background-color: transparent; background-image: none; border: 1px solid transparent; -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } body > .header .navbar .sidebar-toggle:hover .icon-bar { background: #f6f6f6; } body > .header .navbar .sidebar-toggle .icon-bar { display: block; width: 22px; height: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar { margin-top: 4px; } body > .header .navbar .nav > li.user > a { font-weight: bold; } body > .header .navbar .nav > li.user > a > .fa, body > .header .navbar .nav > li.user > a > .glyphicon, body > .header .navbar .nav > li.user > a > .ion { margin-right: 5px; } body > .header .navbar .nav > li > a > .label { -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; position: absolute; top: 7px; right: 2px; font-size: 10px; font-weight: normal; width: 15px; height: 15px; line-height: 1.0em; text-align: center; padding: 2px; } body > .header .navbar .nav > li > a:hover > .label { top: 3px; } body > .header .logo { float: left; font-size: 20px; line-height: 50px; text-align: center; padding: 0 10px; width: 220px; font-family: 'Kaushan Script', cursive; font-weight: 500; height: 50px; display: block; } body > .header .logo .icon { margin-right: 10px; } .right-side > .content-header { position: relative; padding: 15px 15px 10px 20px; } .right-side > .content-header > h1 { margin: 0; font-size: 24px; } .right-side > .content-header > h1 > small { font-size: 15px; display: inline-block; padding-left: 4px; font-weight: 300; } .right-side > .content-header > .breadcrumb { float: right; background: transparent; margin-top: 0px; margin-bottom: 0; font-size: 12px; padding: 7px 5px; position: absolute; top: 15px; right: 10px; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .right-side > .content-header > .breadcrumb > li > a { color: #444; text-decoration: none; } .right-side > .content-header > .breadcrumb > li > a > .fa, .right-side > .content-header > .breadcrumb > li > a > .glyphicon, .right-side > .content-header > .breadcrumb > li > a > .ion { margin-right: 5px; } .right-side > .content-header > .breadcrumb > li + li:before { content: '>\00a0'; } @media screen and (max-width: 767px) { .right-side > .content-header > .breadcrumb { position: relative; margin-top: 5px; top: 0; right: 0; float: none; background: #efefef; } } @media (max-width: 767px) { .navbar .navbar-nav > li { float: left; } .navbar-nav { margin: 0; float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; line-height: 20px; } .navbar .navbar-right { float: right; } } @media screen and (max-width: 560px) { body > .header { position: relative; } body > .header .logo, body > .header .navbar { width: 100%; float: none; position: relative!important; } body > .header .navbar { margin: 0; } body.fixed > .header { position: fixed; } body.fixed > .wrapper, body.fixed .sidebar-offcanvas { margin-top: 100px!important; } } /* Component: Sidebar -------------------------- */ .sidebar { margin-bottom: 5px; } .sidebar .sidebar-form input:focus { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-color: transparent!important; } .sidebar .sidebar-menu { list-style: none; margin: 0; padding: 0; } .sidebar .sidebar-menu > li { margin: 0; padding: 0; } .sidebar .sidebar-menu > li > a { padding: 12px 5px 12px 15px; display: block; } .sidebar .sidebar-menu > li > a > .fa, .sidebar .sidebar-menu > li > a > .glyphicon, .sidebar .sidebar-menu > li > a > .ion { width: 20px; } .sidebar .sidebar-menu .treeview-menu { display: none; list-style: none; padding: 0; margin: 0; } .sidebar .sidebar-menu .treeview-menu > li { margin: 0; } .sidebar .sidebar-menu .treeview-menu > li > a { padding: 5px 5px 5px 15px; display: block; font-size: 14px; margin: 0px 0px; } .sidebar .sidebar-menu .treeview-menu > li > a > .fa, .sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon, .sidebar .sidebar-menu .treeview-menu > li > a > .ion { width: 20px; } .user-panel { padding: 10px; } .user-panel:before, .user-panel:after { display: table; content: " "; } .user-panel:after { clear: both; } .user-panel > .image > img { width: 45px; height: 45px; } .user-panel > .info { font-weight: 600; padding: 5px 5px 5px 15px; font-size: 14px; line-height: 1; } .user-panel > .info > p { margin-bottom: 9px; } .user-panel > .info > a { text-decoration: none; padding-right: 5px; margin-top: 3px; font-size: 11px; font-weight: normal; } .user-panel > .info > a > .fa, .user-panel > .info > a > .ion, .user-panel > .info > a > .glyphicon { margin-right: 3px; } /* * Off Canvas * -------------------------------------------------- * Gives us the push menu effect */ @media screen and (max-width: 992px) { .relative { position: relative; } .row-offcanvas-right .sidebar-offcanvas { right: -220px; } .row-offcanvas-left .sidebar-offcanvas { left: -220px; } .row-offcanvas-right.active { right: 220px; } .row-offcanvas-left.active { left: 220px; } .sidebar-offcanvas { left: 0; } body.fixed .sidebar-offcanvas { margin-top: 50px; left: -220px; } body.fixed .row-offcanvas-left.active .navbar { left: 220px !important; right: 0; } body.fixed .row-offcanvas-left.active .sidebar-offcanvas { left: 0px; } } /* Dropdown menus ---------------------------- */ /*Dropdowns in general*/ .dropdown-menu { -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); z-index: 2300; } .dropdown-menu > li > a > .glyphicon, .dropdown-menu > li > a > .fa, .dropdown-menu > li > a > .ion { margin-right: 10px; } .dropdown-menu > li > a:hover { background-color: #3c8dbc; color: #f9f9f9; } /*Drodown in navbars*/ .skin-blue .navbar .dropdown-menu > li > a { color: #444444; } /* Navbar custom dropdown menu ------------------------------------ */ .navbar-nav > .notifications-menu > .dropdown-menu, .navbar-nav > .messages-menu > .dropdown-menu, .navbar-nav > .tasks-menu > .dropdown-menu { width: 280px; padding: 0 0 0 0!important; margin: 0!important; top: 100%; border: 1px solid #dfdfdf; -webkit-border-radius: 4px !important; -moz-border-radius: 4px !important; border-radius: 4px !important; } .navbar-nav > .notifications-menu > .dropdown-menu > li.header, .navbar-nav > .messages-menu > .dropdown-menu > li.header, .navbar-nav > .tasks-menu > .dropdown-menu > li.header { -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 0; -webkit-border-bottom-left-radius: 0; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 0; -moz-border-radius-bottomleft: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; background-color: #ffffff; padding: 7px 10px; border-bottom: 1px solid #f4f4f4; color: #444444; font-size: 14px; } .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after, .navbar-nav > .messages-menu > .dropdown-menu > li.header:after, .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after { bottom: 100%; left: 92%; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; border-width: 7px; margin-left: -7px; } .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a, .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a, .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a { -webkit-border-top-left-radius: 0px; -webkit-border-top-right-radius: 0px; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 0px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 0px; border-top-right-radius: 0px; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; font-size: 12px; background-color: #f4f4f4; padding: 7px 10px; border-bottom: 1px solid #eeeeee; color: #444444; text-align: center; } .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover, .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover, .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover { background: #f4f4f4; text-decoration: none; font-weight: normal; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu, .navbar-nav > .messages-menu > .dropdown-menu > li .menu, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu { margin: 0; padding: 0; list-style: none; overflow-x: hidden; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { display: block; white-space: nowrap; /* Prevent text from breaking */ border-bottom: 1px solid #f4f4f4; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover, .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover { background: #f6f6f6; text-decoration: none; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a { font-size: 12px; color: #444444; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion { font-size: 20px; width: 50px; text-align: center; padding: 15px 0px; margin-right: 5px; /* Default background and font colors */ background: #00c0ef; color: #f9f9f9; /* Fallback for browsers that doesn't support rgba */ color: rgba(255, 255, 255, 0.7); } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger { background: #f56954; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning { background: #f39c12; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success { background: #00a65a; } .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info, .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info { background: #00c0ef; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a { margin: 0px; line-height: 20px; padding: 10px 5px 10px 5px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img { margin: auto 10px auto auto; width: 40px; height: 40px; border: 1px solid #dddddd; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 { padding: 0; margin: 0 0 0 45px; color: #444444; font-size: 15px; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small { color: #999999; font-size: 10px; float: right; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p { margin: 0 0 0 45px; font-size: 12px; color: #888888; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { display: table; content: " "; } .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after { clear: both; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a { padding: 10px; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 { font-size: 14px; padding: 0; margin: 0 0 10px 0; color: #666666; } .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress { padding: 0; margin: 0; } .navbar-nav > .user-menu > .dropdown-menu { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; padding: 1px 0 0 0; border-top-width: 0; width: 280px; } .navbar-nav > .user-menu > .dropdown-menu:after { bottom: 100%; right: 10px; border: solid transparent; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border-color: rgba(255, 255, 255, 0); border-bottom-color: #ffffff; border-width: 10px; margin-left: -10px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header { height: 175px; padding: 10px; background: #3c8dbc; text-align: center; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img { z-index: 5; height: 90px; width: 90px; border: 8px solid; border-color: transparent; border-color: rgba(255, 255, 255, 0.2); } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p { z-index: 5; color: #f9f9f9; color: rgba(255, 255, 255, 0.8); font-size: 17px; text-shadow: 2px 2px 3px #333333; margin-top: 10px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small { display: block; font-size: 12px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-body { padding: 15px; border-bottom: 1px solid #f4f4f4; border-top: 1px solid #dddddd; } .navbar-nav > .user-menu > .dropdown-menu > li.user-body:before, .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { display: table; content: " "; } .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a { color: #0073b7; } .navbar-nav > .user-menu > .dropdown-menu > li.user-footer { background-color: #f9f9f9; padding: 10px; } .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before, .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { display: table; content: " "; } .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after { clear: both; } .navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default { color: #666666; } /* Add fade animation to dropdown menus */ .open > .dropdown-menu { animation-name: fadeAnimation; animation-duration: .7s; animation-iteration-count: 1; animation-timing-function: ease; animation-fill-mode: forwards; -webkit-animation-name: fadeAnimation; -webkit-animation-duration: .7s; -webkit-animation-iteration-count: 1; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: forwards; -moz-animation-name: fadeAnimation; -moz-animation-duration: .7s; -moz-animation-iteration-count: 1; -moz-animation-timing-function: ease; -moz-animation-fill-mode: forwards; } @keyframes fadeAnimation { from { opacity: 0; top: 120%; } to { opacity: 1; top: 100%; } } @-webkit-keyframes fadeAnimation { from { opacity: 0; top: 120%; } to { opacity: 1; top: 100%; } } /* Fix dropdown menu for small screens to display correctly on small screens */ @media screen and (max-width: 767px) { .navbar-nav > .notifications-menu > .dropdown-menu, .navbar-nav > .user-menu > .dropdown-menu, .navbar-nav > .tasks-menu > .dropdown-menu, .navbar-nav > .messages-menu > .dropdown-menu { position: absolute; top: 100%; right: 0; left: auto; border-right: 1px solid #dddddd; border-bottom: 1px solid #dddddd; border-left: 1px solid #dddddd; background: #ffffff; } } /* Fix menu positions on xs screens to appear correctly and fully */ @media screen and (max-width: 480px) { .navbar-nav > .notifications-menu > .dropdown-menu > li.header, .navbar-nav > .tasks-menu > .dropdown-menu > li.header, .navbar-nav > .messages-menu > .dropdown-menu > li.header { /* Remove arrow from the top */ } .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after, .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after, .navbar-nav > .messages-menu > .dropdown-menu > li.header:after { border-width: 0px!important; } .navbar-nav > .tasks-menu > .dropdown-menu { position: absolute; right: -120px; left: auto; } .navbar-nav > .notifications-menu > .dropdown-menu { position: absolute; right: -170px; left: auto; } .navbar-nav > .messages-menu > .dropdown-menu { position: absolute; right: -210px; left: auto; } } /* All form elements including input, select, textarea etc. ----------------------------------------------------------------- */ .form-control { -webkit-border-radius: 0px !important; -moz-border-radius: 0px !important; border-radius: 0px !important; box-shadow: none; } .form-control:focus { border-color: #3c8dbc !important; box-shadow: none; } .form-group.has-success label { color: #00a65a; } .form-group.has-success .form-control { border-color: #00a65a !important; box-shadow: none; } .form-group.has-warning label { color: #f39c12; } .form-group.has-warning .form-control { border-color: #f39c12 !important; box-shadow: none; } .form-group.has-error label { color: #f56954; } .form-group.has-error .form-control { border-color: #f56954 !important; box-shadow: none; } /* Input group */ .input-group .input-group-addon { border-radius: 0; background-color: #f4f4f4; } /* button groups */ .btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type { border-radius: 0; } /* Checkbox and radio inputs */ .checkbox, .radio { padding-left: 0; } /* Compenent: Progress bars -------------------------------- */ /* size variation */ .progress.sm { height: 10px; } .progress.xs { height: 7px; } /* Vertical bars */ .progress.vertical { position: relative; width: 30px; height: 200px; display: inline-block; margin-right: 10px; } .progress.vertical > .progress-bar { width: 100%!important; position: absolute; bottom: 0; } .progress.vertical.sm { width: 20px; } .progress.vertical.xs { width: 10px; } /* Remove margins from progress bars when put in a table */ .table tr > td .progress { margin: 0; } .progress-bar-light-blue, .progress-bar-primary { background-color: #3c8dbc; } .progress-striped .progress-bar-light-blue, .progress-striped .progress-bar-primary { background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-green, .progress-bar-success { background-color: #00a65a; } .progress-striped .progress-bar-green, .progress-striped .progress-bar-success { background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-aqua, .progress-bar-info { background-color: #00c0ef; } .progress-striped .progress-bar-aqua, .progress-striped .progress-bar-info { background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-yellow, .progress-bar-warning { background-color: #f39c12; } .progress-striped .progress-bar-yellow, .progress-striped .progress-bar-warning { background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-red, .progress-bar-danger { background-color: #f56954; } .progress-striped .progress-bar-red, .progress-striped .progress-bar-danger { background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } /* Component: Small boxes */ .small-box { position: relative; display: block; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; margin-bottom: 15px; } .small-box > .inner { padding: 10px; } .small-box > .small-box-footer { position: relative; text-align: center; padding: 3px 0; color: #fff; color: rgba(255, 255, 255, 0.8); display: block; z-index: 10; background: rgba(0, 0, 0, 0.1); text-decoration: none; } .small-box > .small-box-footer:hover { color: #fff; background: rgba(0, 0, 0, 0.15); } .small-box h3 { font-size: 38px; font-weight: bold; margin: 0 0 10px 0; white-space: nowrap; padding: 0; } .small-box p { font-size: 15px; } .small-box p > small { display: block; color: #f9f9f9; font-size: 13px; margin-top: 5px; } .small-box h3, .small-box p { z-index: 5px; } .small-box .icon { position: absolute; top: auto; bottom: 5px; right: 5px; z-index: 0; font-size: 90px; color: rgba(0, 0, 0, 0.15); } .small-box:hover { text-decoration: none; color: #f9f9f9; } .small-box:hover .icon { animation-name: tansformAnimation; animation-duration: .5s; animation-iteration-count: 1; animation-timing-function: ease; animation-fill-mode: forwards; -webkit-animation-name: tansformAnimation; -webkit-animation-duration: .5s; -webkit-animation-iteration-count: 1; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: forwards; -moz-animation-name: tansformAnimation; -moz-animation-duration: .5s; -moz-animation-iteration-count: 1; -moz-animation-timing-function: ease; -moz-animation-fill-mode: forwards; } @keyframes tansformAnimation { from { font-size: 90px; } to { font-size: 100px; } } @-webkit-keyframes tansformAnimation { from { font-size: 90px; } to { font-size: 100px; } } @media screen and (max-width: 480px) { .small-box { text-align: center; } .small-box .icon { display: none; } .small-box p { font-size: 12px; } } /* component: Boxes ------------------------- */ .box { position: relative; background: #ffffff; border-top: 2px solid #c1c1c1; margin-bottom: 20px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; width: 100%; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); } .box.box-primary { border-top-color: #3c8dbc; } .box.box-info { border-top-color: #00c0ef; } .box.box-danger { border-top-color: #f56954; } .box.box-warning { border-top-color: #f39c12; } .box.box-success { border-top-color: #00a65a; } .box.height-control .box-body { max-height: 300px; overflow: auto; } .box .box-header { position: relative; -webkit-border-top-left-radius: 3px; -webkit-border-top-right-radius: 3px; -webkit-border-bottom-right-radius: 0; -webkit-border-bottom-left-radius: 0; -moz-border-radius-topleft: 3px; -moz-border-radius-topright: 3px; -moz-border-radius-bottomright: 0; -moz-border-radius-bottomleft: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; border-bottom: 0px solid #f4f4f4; color: #444; padding-bottom: 10px; } .box .box-header:before, .box .box-header:after { display: table; content: " "; } .box .box-header:after { clear: both; } .box .box-header > .fa, .box .box-header > .glyphicon, .box .box-header > .ion, .box .box-header .box-title { display: inline-block; padding: 10px 0px 10px 10px; margin: 0; font-size: 20px; font-weight: 400; float: left; cursor: default; } .box .box-header a:not(.btn) { color: #444; } .box .box-header > .box-tools { padding: 5px 10px 5px 5px; } .box .box-body { padding: 10px; -webkit-border-top-left-radius: 0; -webkit-border-top-right-radius: 0; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-topleft: 0; -moz-border-radius-topright: 0; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .box .box-body > table, .box .box-body > .table { margin-bottom: 0; } .box .box-body.chart-responsive { width: 100%; overflow: hidden; } .box .box-body > .chart { position: relative; overflow: hidden; width: 100%; } .box .box-body > .chart svg, .box .box-body > .chart canvas { width: 100%!important; } .box .box-body .fc { margin-top: 5px; } .box .box-body .fc-header-title h2 { font-size: 15px; line-height: 1.6em; color: #666; margin-left: 10px; } .box .box-body .fc-header-right { padding-right: 10px; } .box .box-body .fc-header-left { padding-left: 10px; } .box .box-body .fc-widget-header { background: #fafafa; box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02); } .box .box-body .fc-grid { width: 100%; border: 0; } .box .box-body .fc-widget-header:first-of-type, .box .box-body .fc-widget-content:first-of-type { border-left: 0; border-right: 0; } .box .box-body .fc-widget-header:last-of-type, .box .box-body .fc-widget-content:last-of-type { border-right: 0; } .box .box-body .table { margin-bottom: 0; } .box .box-body .full-width-chart { margin: -19px; } .box .box-body.no-padding .full-width-chart { margin: -9px; } .box .box-footer { border-top: 1px solid #f4f4f4; -webkit-border-top-left-radius: 0; -webkit-border-top-right-radius: 0; -webkit-border-bottom-right-radius: 3px; -webkit-border-bottom-left-radius: 3px; -moz-border-radius-topleft: 0; -moz-border-radius-topright: 0; -moz-border-radius-bottomright: 3px; -moz-border-radius-bottomleft: 3px; border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; padding: 10px; background-color: #ffffff; } .box.box-solid { border-top: 0px; } .box.box-solid > .box-header { padding-bottom: 0px!important; } .box.box-solid > .box-header .btn.btn-default { background: transparent; } .box.box-solid.box-primary > .box-header { color: #fff; background: #3c8dbc; background-color: #3c8dbc; } .box.box-solid.box-primary > .box-header a { color: #444; } .box.box-solid.box-info > .box-header { color: #fff; background: #00c0ef; background-color: #00c0ef; } .box.box-solid.box-info > .box-header a { color: #444; } .box.box-solid.box-danger > .box-header { color: #fff; background: #f56954; background-color: #f56954; } .box.box-solid.box-danger > .box-header a { color: #444; } .box.box-solid.box-warning > .box-header { color: #fff; background: #f39c12; background-color: #f39c12; } .box.box-solid.box-warning > .box-header a { color: #444; } .box.box-solid.box-success > .box-header { color: #fff; background: #00a65a; background-color: #00a65a; } .box.box-solid.box-success > .box-header a { color: #444; } .box.box-solid > .box-header > .box-tools > .btn { border: 0; box-shadow: none; } .box.box-solid.collapsed-box .box-header { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .box.box-solid[class*='bg'] > .box-header { color: #fff; } .box .box-group > .box { margin-bottom: 5px; } .box .knob-label { text-align: center; color: #333; font-weight: 100; font-size: 12px; margin-bottom: 0.3em; } .box .todo-list { margin: 0; padding: 0px 0px; list-style: none; } .box .todo-list > li { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; padding: 10px; background: #f3f4f5; margin-bottom: 2px; border-left: 2px solid #e6e7e8; color: #444; } .box .todo-list > li:last-of-type { margin-bottom: 0; } .box .todo-list > li.danger { border-left-color: #f56954; } .box .todo-list > li.warning { border-left-color: #f39c12; } .box .todo-list > li.info { border-left-color: #00c0ef; } .box .todo-list > li.success { border-left-color: #00a65a; } .box .todo-list > li.primary { border-left-color: #3c8dbc; } .box .todo-list > li > input[type='checkbox'] { margin: 0 10px 0 5px; } .box .todo-list > li .text { display: inline-block; margin-left: 5px; font-weight: 600; } .box .todo-list > li .label { margin-left: 10px; font-size: 9px; } .box .todo-list > li .tools { display: none; float: right; color: #f56954; } .box .todo-list > li .tools > .fa, .box .todo-list > li .tools > .glyphicon, .box .todo-list > li .tools > .ion { margin-right: 5px; cursor: pointer; } .box .todo-list > li:hover .tools { display: inline-block; } .box .todo-list > li.done { color: #999; } .box .todo-list > li.done .text { text-decoration: line-through; font-weight: 500; } .box .todo-list > li.done .label { background: #eaeaec !important; } .box .todo-list .handle { display: inline-block; cursor: move; margin: 0 5px; } .box .chat { padding: 5px 20px 5px 10px; } .box .chat .item { margin-bottom: 10px; } .box .chat .item:before, .box .chat .item:after { display: table; content: " "; } .box .chat .item:after { clear: both; } .box .chat .item > img { width: 40px; height: 40px; border: 2px solid transparent; -webkit-border-radius: 50% !important; -moz-border-radius: 50% !important; border-radius: 50% !important; } .box .chat .item > img.online { border: 2px solid #00a65a; } .box .chat .item > img.offline { border: 2px solid #f56954; } .box .chat .item > .message { margin-left: 55px; margin-top: -40px; } .box .chat .item > .message > .name { display: block; font-weight: 600; } .box .chat .item > .attachment { -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; background: #f0f0f0; margin-left: 65px; margin-right: 15px; padding: 10px; } .box .chat .item > .attachment > h4 { margin: 0 0 5px 0; font-weight: 600; font-size: 14px; } .box .chat .item > .attachment > p, .box .chat .item > .attachment > .filename { font-weight: 600; font-size: 13px; font-style: italic; margin: 0; } .box .chat .item > .attachment:before, .box .chat .item > .attachment:after { display: table; content: " "; } .box .chat .item > .attachment:after { clear: both; } .box > .overlay, .box > .loading-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .box > .overlay { z-index: 1010; background: rgba(255, 255, 255, 0.7); } .box > .overlay.dark { background: rgba(0, 0, 0, 0.5); } .box > .loading-img { z-index: 1020; background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat; } /* Component: timeline -------------------- */ .timeline { margin: 0 0 30px 0; padding: 0; list-style: none; } .timeline:before { content: ''; position: absolute; top: 0px; bottom: 0; width: 5px; background: #ddd; left: 45px; border: 1px solid #eee; margin: 0; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .timeline > li { position: relative; margin-right: 10px; margin-bottom: 15px; } .timeline > li:before, .timeline > li:after { display: table; content: " "; } .timeline > li:after { clear: both; } .timeline > li > .timeline-item { margin-top: 10px; border: 0px solid #dfdfdf; background: #fff; color: #555; margin-left: 60px; margin-right: 15px; padding: 5px; position: relative; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); } .timeline > li > .timeline-item > .time { color: #999; float: right; margin: 2px 0 0 0; } .timeline > li > .timeline-item > .timeline-header { margin: 0; color: #555; border-bottom: 1px solid #f4f4f4; padding: 5px; font-size: 16px; line-height: 1.1; } .timeline > li > .timeline-item > .timeline-header > a { font-weight: 600; } .timeline > li > .timeline-item > .timeline-body, .timeline > li > .timeline-item > .timeline-footer { padding: 10px; } .timeline > li.time-label > span { font-weight: 600; padding: 5px; display: inline-block; background-color: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .timeline > li > .fa, .timeline > li > .glyphicon, .timeline > li > .ion { box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); width: 30px; height: 30px; font-size: 15px; line-height: 30px; position: absolute; color: #666; background: #eee; border-radius: 50%; text-align: center; left: 18px; top: 0; } /* Component: Buttons ------------------------- */ .btn { font-weight: 500; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; border: 1px solid transparent; -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09); } .btn.btn-default { background-color: #fafafa; color: #666; border-color: #ddd; border-bottom-color: #ddd; } .btn.btn-default:hover, .btn.btn-default:active, .btn.btn-default.hover { background-color: #f4f4f4!important; } .btn.btn-default.btn-flat { border-bottom-color: #d9dadc; } .btn.btn-primary { background-color: #3c8dbc; border-color: #367fa9; } .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary.hover { background-color: #367fa9; } .btn.btn-success { background-color: #00a65a; border-color: #008d4c; } .btn.btn-success:hover, .btn.btn-success:active, .btn.btn-success.hover { background-color: #008d4c; } .btn.btn-info { background-color: #00c0ef; border-color: #00acd6; } .btn.btn-info:hover, .btn.btn-info:active, .btn.btn-info.hover { background-color: #00acd6; } .btn.btn-danger { background-color: #f56954; border-color: #f4543c; } .btn.btn-danger:hover, .btn.btn-danger:active, .btn.btn-danger.hover { background-color: #f4543c; } .btn.btn-warning { background-color: #f39c12; border-color: #e08e0b; } .btn.btn-warning:hover, .btn.btn-warning:active, .btn.btn-warning.hover { background-color: #e08e0b; } .btn.btn-flat { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; border-width: 1px; } .btn:active { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn:focus { outline: none; } .btn.btn-file { position: relative; width: 120px; height: 35px; overflow: hidden; } .btn.btn-file > input[type='file'] { display: block !important; width: 100% !important; height: 35px !important; opacity: 0 !important; position: absolute; top: -10px; cursor: pointer; } .btn.btn-app { position: relative; padding: 15px 5px; margin: 0 0 10px 10px; min-width: 80px; height: 60px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; text-align: center; color: #666; border: 1px solid #ddd; background-color: #fafafa; font-size: 12px; } .btn.btn-app > .fa, .btn.btn-app > .glyphicon, .btn.btn-app > .ion { font-size: 20px; display: block; } .btn.btn-app:hover { background: #f4f4f4; color: #444; border-color: #aaa; } .btn.btn-app:active, .btn.btn-app:focus { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.btn-app > .badge { position: absolute; top: -3px; right: -10px; font-size: 10px; font-weight: 400; } .btn.btn-social-old { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; opacity: 0.9; padding: 0; } .btn.btn-social-old > .fa { padding: 10px 0; width: 40px; } .btn.btn-social-old > .fa + span { border-left: 1px solid rgba(255, 255, 255, 0.3); } .btn.btn-social-old span { padding: 10px; } .btn.btn-social-old:hover { opacity: 1; } .btn.btn-circle { width: 30px; height: 30px; line-height: 30px; padding: 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; } /* Component: callout ------------------------ */ .callout { margin: 0 0 20px 0; padding: 15px 30px 15px 15px; border-left: 5px solid #eee; } .callout h4 { margin-top: 0; } .callout p:last-child { margin-bottom: 0; } .callout code, .callout .highlight { background-color: #fff; } .callout.callout-danger { background-color: #fcf2f2; border-color: #dFb5b4; } .callout.callout-warning { background-color: #fefbed; border-color: #f1e7bc; } .callout.callout-info { background-color: #f0f7fd; border-color: #d0e3f0; } .callout.callout-danger h4 { color: #B94A48; } .callout.callout-warning h4 { color: #C09853; } .callout.callout-info h4 { color: #3A87AD; } /* Component: alert ------------------------ */ .alert { padding-left: 30px; margin-left: 15px; position: relative; } .alert > .fa, .alert > .glyphicon { position: absolute; left: -15px; top: -15px; width: 35px; height: 35px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; line-height: 35px; text-align: center; background: inherit; border: inherit; } /* Component: Navs */ /* NAV PILLS */ .nav.nav-pills > li > a { border-top: 3px solid transparent; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; color: #444; } .nav.nav-pills > li > a > .fa, .nav.nav-pills > li > a > .glyphicon, .nav.nav-pills > li > a > .ion { margin-right: 5px; } .nav.nav-pills > li.active > a, .nav.nav-pills > li.active > a:hover { background-color: #f6f6f6; border-top-color: #3c8dbc; color: #444; } .nav.nav-pills > li.active > a { font-weight: 600; } .nav.nav-pills > li > a:hover { background-color: #f6f6f6; } .nav.nav-pills.nav-stacked > li > a { border-top: 0; border-left: 3px solid transparent; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; color: #444; } .nav.nav-pills.nav-stacked > li.active > a, .nav.nav-pills.nav-stacked > li.active > a:hover { background-color: #f6f6f6; border-left-color: #3c8dbc; color: #444; } .nav.nav-pills.nav-stacked > li.header { border-bottom: 1px solid #ddd; color: #777; margin-bottom: 10px; padding: 5px 10px; text-transform: uppercase; } /* NAV TABS */ .nav-tabs-custom { margin-bottom: 20px; background: #fff; box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); } .nav-tabs-custom > .nav-tabs { margin: 0; border-bottom-color: #f4f4f4; } .nav-tabs-custom > .nav-tabs > li { border-top: 3px solid transparent; margin-bottom: -2px; margin-right: 5px; } .nav-tabs-custom > .nav-tabs > li > a { -webkit-border-radius: 0 !important; -moz-border-radius: 0 !important; border-radius: 0 !important; } .nav-tabs-custom > .nav-tabs > li > a, .nav-tabs-custom > .nav-tabs > li > a:hover { background: transparent; margin: 0; } .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover, .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus, .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active { border-color: transparent; } .nav-tabs-custom > .nav-tabs > li.active { border-top-color: #3c8dbc; } .nav-tabs-custom > .nav-tabs > li.active > a, .nav-tabs-custom > .nav-tabs > li.active:hover > a { background-color: #fff; } .nav-tabs-custom > .nav-tabs > li.active > a { border-top: 0; border-left-color: #f4f4f4; border-right-color: #f4f4f4; } .nav-tabs-custom > .nav-tabs > li:first-of-type { margin-left: 0px; } .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a { border-left-width: 0; } .nav-tabs-custom > .nav-tabs.pull-right { float: none!important; } .nav-tabs-custom > .nav-tabs.pull-right > li { float: right; } .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type { margin-right: 0px; } .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a { border-left-width: 1px; border-right-width: 0px; } .nav-tabs-custom > .nav-tabs > li.header { font-weight: 400; line-height: 35px; padding: 0 10px; font-size: 20px; color: #444; cursor: default; } .nav-tabs-custom > .nav-tabs > li.header > .fa, .nav-tabs-custom > .nav-tabs > li.header > .glyphicon, .nav-tabs-custom > .nav-tabs > li.header > .ion { margin-right: 10px; } .nav-tabs-custom > .tab-content { background: #fff; padding: 10px; } /* PAGINATION */ .pagination > li > a { background: #fafafa; color: #666; -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09); box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09); } .pagination > li:first-of-type a, .pagination > li:last-of-type a { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } /* Component: Mailbox */ .mailbox .table-mailbox { border-left: 1px solid #ddd; border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; } .mailbox .table-mailbox tr.unread > td { background-color: rgba(0, 0, 0, 0.05); color: #000; font-weight: 600; } .mailbox .table-mailbox tr > td > .fa.fa-star, .mailbox .table-mailbox tr > td > .fa.fa-star-o, .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star, .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty { color: #f39c12; cursor: pointer; } .mailbox .table-mailbox tr > td.small-col { width: 30px; } .mailbox .table-mailbox tr > td.name { width: 150px; font-weight: 600; } .mailbox .table-mailbox tr > td.time { text-align: right; width: 100px; } .mailbox .table-mailbox tr > td { white-space: nowrap; } .mailbox .table-mailbox tr > td > a { color: #444; } @media screen and (max-width: 767px) { .mailbox .nav-stacked > li:not(.header) { float: left; width: 50%; } .mailbox .nav-stacked > li:not(.header).header { border: 0!important; } .mailbox .search-form { margin-top: 10px; } } /* Page: locked screen */ /* ADD THIS CLASS TO THE <HTML> TAG */ .lockscreen { background: url(../img/blur-background09.jpg) repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } /* Remove the background from the body element */ .lockscreen > body { background: transparent; } /* We will put the dynamically generated digital clock here */ .lockscreen .headline { color: #fff; text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5); font-weight: 300; -webkit-font-smoothing: antialiased !important; opacity: 0.8; margin: 10px 0 30px 0; font-size: 90px; } @media screen and (max-width: 480px) { .lockscreen .headline { font-size: 60px; margin-bottom: 40px; } } /* User name [optional] */ .lockscreen .lockscreen-name { text-align: center; font-weight: 600; font-size: 16px; } /* Will contain the image and the sign in form */ .lockscreen-item { padding: 0; background: #fff; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; margin: 10px auto; width: 290px; } .lockscreen-item:before, .lockscreen-item:after { display: table; content: " "; } .lockscreen-item:after { clear: both; } /* User image */ .lockscreen-item > .lockscreen-image { position: absolute; left: -10px; top: -30px; background: #fff; padding: 10px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; z-index: 10; } .lockscreen-item > .lockscreen-image > img { width: 70px; height: 70px; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; } /* Contains the password input and the login button */ .lockscreen-item > .lockscreen-credentials { margin-left: 80px; } .lockscreen-item > .lockscreen-credentials input { border: 0 !important; } .lockscreen-item > .lockscreen-credentials .btn { background-color: #fff; border: 0; } /* Extra to give the user an option to navigate the website [optional]*/ .lockscreen-link { margin-top: 30px; text-align: center; } /* Page: register and login */ .form-box { width: 360px; margin: 90px auto 0 auto; } .form-box .header { -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 0; -webkit-border-bottom-left-radius: 0; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 0; -moz-border-radius-bottomleft: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; background: #3d9970; box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.2); padding: 20px 10px; text-align: center; font-size: 26px; font-weight: 300; color: #fff; } .form-box .body, .form-box .footer { padding: 10px 20px; background: #fff; color: #444; } .form-box .body > .form-group, .form-box .footer > .form-group { margin-top: 20px; } .form-box .body > .form-group > input, .form-box .footer > .form-group > input { border: #fff; } .form-box .body > .btn, .form-box .footer > .btn { margin-bottom: 10px; } .form-box .footer { -webkit-border-top-left-radius: 0; -webkit-border-top-right-radius: 0; -webkit-border-bottom-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 0; -moz-border-radius-topright: 0; -moz-border-radius-bottomright: 4px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } @media (max-width: 767px) { .form-box { width: 90%; } } /* Page: 404 and 500 error pages ------------------------------------ */ .error-page { width: 600px; margin: 20px auto 0 auto; } @media screen and (max-width: 767px) { .error-page { width: 100%; } } .error-page > .headline { float: left; font-size: 100px; font-weight: 300; } @media screen and (max-width: 767px) { .error-page > .headline { float: none; text-align: center; } } .error-page > .error-content { margin-left: 190px; display: block; } @media screen and (max-width: 767px) { .error-page > .error-content { margin-left: 0; } } .error-page > .error-content > h3 { font-weight: 300; font-size: 25px; } @media screen and (max-width: 767px) { .error-page > .error-content > h3 { text-align: center; } } .error-page:before, .error-page:after { display: table; content: " "; } .error-page:after { clear: both; } /* Page: Invoice */ .invoice { position: relative; width: 90%; margin: 10px auto; background: #fff; border: 1px solid #f4f4f4; } .invoice-title { margin-top: 0; } /* Enhancement for printing */ @media print { .invoice { width: 100%; border: 0; margin: 0; padding: 0; } .invoice-col { float: left; width: 33.3333333%; } .table-responsive { overflow: auto; } .table-responsive > .table tr th, .table-responsive > .table tr td { white-space: normal!important; } } /* Skins ----- */ /* Skin Blue --------- */ /* skin-blue navbar */ .skin-blue .navbar { background-color: #3c8dbc; } .skin-blue .navbar .nav a { color: rgba(255, 255, 255, 0.8); } .skin-blue .navbar .nav > li > a:hover, .skin-blue .navbar .nav > li > a:active, .skin-blue .navbar .nav > li > a:focus, .skin-blue .navbar .nav .open > a, .skin-blue .navbar .nav .open > a:hover, .skin-blue .navbar .nav .open > a:focus { background: rgba(0, 0, 0, 0.1); color: #f6f6f6; } .skin-blue .navbar .navbar-right > .nav { margin-right: 10px; } .skin-blue .navbar .sidebar-toggle .icon-bar { background: rgba(255, 255, 255, 0.8); } .skin-blue .navbar .sidebar-toggle:hover .icon-bar { background: #f6f6f6 !important; } /* skin-blue logo */ .skin-blue .logo { background-color: #367fa9; color: #f9f9f9; } .skin-blue .logo > a { color: #f9f9f9; } .skin-blue .logo:hover { background: #357ca5; } /* skin-blue content header */ .skin-blue .right-side > .content-header { background: #fbfbfb; box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); } /* Skin-blue user panel */ .skin-blue .user-panel > .image > img { border: 1px solid #dfdfdf; } .skin-blue .user-panel > .info, .skin-blue .user-panel > .info > a { color: #555555; } /* skin-blue sidebar */ .skin-blue .sidebar { border-bottom: 1px solid #fff; } .skin-blue .sidebar > .sidebar-menu > li { border-top: 1px solid #fff; border-bottom: 1px solid #dbdbdb; } .skin-blue .sidebar > .sidebar-menu > li:first-of-type { border-top: 1px solid #dbdbdb; } .skin-blue .sidebar > .sidebar-menu > li:first-of-type > a { border-top: 1px solid #fff; } .skin-blue .sidebar > .sidebar-menu > li > a { margin-right: 1px; } .skin-blue .sidebar > .sidebar-menu > li > a:hover, .skin-blue .sidebar > .sidebar-menu > li.active > a { color: #222; background: #f9f9f9; } .skin-blue .sidebar > .sidebar-menu > li > .treeview-menu { margin: 0 1px; background: #f9f9f9; } .skin-blue .left-side { background: #f4f4f4; -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1); box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07); } .skin-blue .sidebar a { color: #555555; } .skin-blue .sidebar a:hover { text-decoration: none; } .skin-blue .treeview-menu > li > a { color: #777; } .skin-blue .treeview-menu > li.active > a, .skin-blue .treeview-menu > li > a:hover { color: #111; } .skin-blue .sidebar-form { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; border: 1px solid #dbdbdb; margin: 10px 10px; } .skin-blue .sidebar-form input[type="text"], .skin-blue .sidebar-form .btn { box-shadow: none; background-color: #fafafa; border: 1px solid #fafafa; height: 35px; } .skin-blue .sidebar-form input[type="text"] { color: #666; -webkit-border-top-left-radius: 2px !important; -webkit-border-top-right-radius: 0 !important; -webkit-border-bottom-right-radius: 0 !important; -webkit-border-bottom-left-radius: 2px !important; -moz-border-radius-topleft: 2px !important; -moz-border-radius-topright: 0 !important; -moz-border-radius-bottomright: 0 !important; -moz-border-radius-bottomleft: 2px !important; border-top-left-radius: 2px !important; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; border-bottom-left-radius: 2px !important; } .skin-blue .sidebar-form input[type="text"]:focus, .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn { background-color: #fff; color: #666; } .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn { border-left-color: #fff; } .skin-blue .sidebar-form .btn { color: #999; -webkit-border-top-left-radius: 0 !important; -webkit-border-top-right-radius: 2px !important; -webkit-border-bottom-right-radius: 2px !important; -webkit-border-bottom-left-radius: 0 !important; -moz-border-radius-topleft: 0 !important; -moz-border-radius-topright: 2px !important; -moz-border-radius-bottomright: 2px !important; -moz-border-radius-bottomleft: 0 !important; border-top-left-radius: 0 !important; border-top-right-radius: 2px !important; border-bottom-right-radius: 2px !important; border-bottom-left-radius: 0 !important; } /* Skin Black -------- */ /* skin-black navbar */ .skin-black .navbar { background-color: #ffffff; border-bottom: 1px solid #eee; } .skin-black .navbar .nav a { color: #333333; } .skin-black .navbar .nav > li > a:hover, .skin-black .navbar .nav > li > a:active, .skin-black .navbar .nav > li > a:focus, .skin-black .navbar .nav .open > a, .skin-black .navbar .nav .open > a:hover, .skin-black .navbar .nav .open > a:focus { background: #ffffff; color: #999999; } .skin-black .navbar .navbar-right > .nav { margin-right: 10px; } .skin-black .navbar .sidebar-toggle .icon-bar { background: #333333; } .skin-black .navbar .sidebar-toggle:hover .icon-bar { background: #999999 !important; } /* skin-black logo */ .skin-black .logo { background-color: #333333; color: #f9f9f9; } .skin-black .logo > a { color: #f9f9f9; } .skin-black .logo:hover { background: #303030; } /* skin-black content header */ .skin-black .right-side > .content-header { background: transparent; box-shadow: none; } /* Skin-red user panel */ .skin-black .user-panel > .image > img { border: 1px solid #444; } .skin-black .user-panel > .info, .skin-black .user-panel > .info > a { color: #eee; } /* skin-black sidebar */ .skin-black .sidebar { border-bottom: 1px solid #333; } .skin-black .sidebar > .sidebar-menu > li { border-top: 1px solid #333; border-bottom: 0px solid #444; } .skin-black .sidebar > .sidebar-menu > li:first-of-type { border-top: 1px solid #444; } .skin-black .sidebar > .sidebar-menu > li:first-of-type > a { border-top: 0px solid #333; } .skin-black .sidebar > .sidebar-menu > li > a { margin-right: 1px; } .skin-black .sidebar > .sidebar-menu > li > a:hover, .skin-black .sidebar > .sidebar-menu > li.active > a { color: #f6f6f6; background: #444; } .skin-black .sidebar > .sidebar-menu > li > .treeview-menu { margin: 0 1px; background: #444; } .skin-black .left-side { background: #333; } .skin-black .sidebar a { color: #eee; } .skin-black .sidebar a:hover { text-decoration: none; } .skin-black .treeview-menu > li > a { color: #ccc; } .skin-black .treeview-menu > li.active > a, .skin-black .treeview-menu > li > a:hover { color: #fff; } .skin-black .sidebar-form { -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; border: 0px solid #555; margin: 10px 10px; } .skin-black .sidebar-form input[type="text"], .skin-black .sidebar-form .btn { box-shadow: none; background-color: rgba(255, 255, 255, 0.1); border: 0 solid rgba(255, 255, 255, 0.1); height: 35px; outline: none; } .skin-black .sidebar-form input[type="text"] { color: #666; -webkit-border-top-left-radius: 2px !important; -webkit-border-top-right-radius: 0 !important; -webkit-border-bottom-right-radius: 0 !important; -webkit-border-bottom-left-radius: 2px !important; -moz-border-radius-topleft: 2px !important; -moz-border-radius-topright: 0 !important; -moz-border-radius-bottomright: 0 !important; -moz-border-radius-bottomleft: 2px !important; border-top-left-radius: 2px !important; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; border-bottom-left-radius: 2px !important; } .skin-black .sidebar-form input[type="text"]:focus, .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn { background-color: #444; border: 0; } .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn { border-left: 0; } .skin-black .sidebar-form .btn { color: #999; -webkit-border-top-left-radius: 0 !important; -webkit-border-top-right-radius: 2px !important; -webkit-border-bottom-right-radius: 2px !important; -webkit-border-bottom-left-radius: 0 !important; -moz-border-radius-topleft: 0 !important; -moz-border-radius-topright: 2px !important; -moz-border-radius-bottomright: 2px !important; -moz-border-radius-bottomleft: 0 !important; border-top-left-radius: 0 !important; border-top-right-radius: 2px !important; border-bottom-right-radius: 2px !important; border-bottom-left-radius: 0 !important; border-left: 0; } /*! * iCheck v1.0.1, http://git.io/arlzeA * ================================= * Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization * * (c) 2013 Damir Sultanov, http://fronteed.com * MIT Licensed */ /* iCheck plugin Minimal skin, black ----------------------------------- */ .icheckbox_minimal, .iradio_minimal { display: inline-block; *display: inline; vertical-align: middle; margin: 0; padding: 0; width: 18px; height: 18px; background: rgba(255, 255, 255, 0.7) url(iCheck/minimal/minimal.png) no-repeat; border: none; cursor: pointer; } .icheckbox_minimal { background-position: 0 0; } .icheckbox_minimal.hover { background-position: -20px 0; } .icheckbox_minimal.checked { background-position: -40px 0; } .icheckbox_minimal.disabled { background-position: -60px 0; cursor: default; } .icheckbox_minimal.checked.disabled { background-position: -80px 0; } .iradio_minimal { background-position: -100px 0; } .iradio_minimal.hover { background-position: -120px 0; } .iradio_minimal.checked { background-position: -140px 0; } .iradio_minimal.disabled { background-position: -160px 0; cursor: default; } .iradio_minimal.checked.disabled { background-position: -180px 0; } /* Retina support */ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) { .icheckbox_minimal, .iradio_minimal { background-image: url('iCheck/minimal/minimal@2x.png'); -webkit-background-size: 200px 20px; background-size: 200px 20px; } } .pace .pace-progress { background: #00c0ef; position: fixed; z-index: 2000; top: 0; left: 0; height: 2px; -webkit-transition: width 1s; -moz-transition: width 1s; -o-transition: width 1s; transition: width 1s; } .pace-inactive { display: none; } /* * Social Buttons for Bootstrap * * Copyright 2013-2014 Panayiotis Lipiridis * Licensed under the MIT License * * https://github.com/lipis/bootstrap-social * * Note: this file has been altered to work correctly with AdminLTE */ .btn-social { position: relative; padding-left: 44px !important; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .btn-social :first-child { position: absolute; left: 0; top: 0; bottom: 0; width: 32px !important; line-height: 34px !important; font-size: 1.6em!important; text-align: center; border-right: 1px solid rgba(0, 0, 0, 0.2); } .btn-social.btn-lg { padding-left: 60px !important; } .btn-social.btn-lg :first-child { line-height: 45px; width: 45px; font-size: 1.8em; } .btn-social.btn-sm { padding-left: 38px !important; } .btn-social.btn-sm :first-child { line-height: 28px; width: 28px; font-size: 1.4em; } .btn-social.btn-xs { padding-left: 30px !important; } .btn-social.btn-xs :first-child { line-height: 20px; width: 20px; font-size: 1.2em; } .btn-social-icon { position: relative; padding-left: 44px !important; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; height: 34px; width: 34px; padding: 0; } .btn-social-icon :first-child { position: absolute; left: 0; top: 0; bottom: 0; width: 32px !important; line-height: 34px !important; font-size: 1.6em!important; text-align: center; border-right: 1px solid rgba(0, 0, 0, 0.2); } .btn-social-icon.btn-lg { padding-left: 60px !important; } .btn-social-icon.btn-lg :first-child { line-height: 45px; width: 45px; font-size: 1.8em; } .btn-social-icon.btn-sm { padding-left: 38px !important; } .btn-social-icon.btn-sm :first-child { line-height: 28px; width: 28px; font-size: 1.4em; } .btn-social-icon.btn-xs { padding-left: 30px !important; } .btn-social-icon.btn-xs :first-child { line-height: 20px; width: 20px; font-size: 1.2em; } .btn-social-icon :first-child { border: none; text-align: center; width: 100%!important; } .btn-social-icon.btn-lg { height: 45px; width: 45px; padding-left: 0; padding-right: 0; } .btn-social-icon.btn-sm { height: 30px; width: 30px; padding-left: 0; padding-right: 0; } .btn-social-icon.btn-xs { height: 22px; width: 22px; padding-left: 0; padding-right: 0; } .btn-bitbucket { color: #ffffff; background-color: #205081; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:hover, .btn-bitbucket:focus, .btn-bitbucket:active, .btn-bitbucket.active, .open .dropdown-toggle.btn-bitbucket { color: #ffffff; background-color: #183c60; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket:active, .btn-bitbucket.active, .open .dropdown-toggle.btn-bitbucket { background-image: none; } .btn-bitbucket.disabled, .btn-bitbucket[disabled], fieldset[disabled] .btn-bitbucket, .btn-bitbucket.disabled:hover, .btn-bitbucket[disabled]:hover, fieldset[disabled] .btn-bitbucket:hover, .btn-bitbucket.disabled:focus, .btn-bitbucket[disabled]:focus, fieldset[disabled] .btn-bitbucket:focus, .btn-bitbucket.disabled:active, .btn-bitbucket[disabled]:active, fieldset[disabled] .btn-bitbucket:active, .btn-bitbucket.disabled.active, .btn-bitbucket[disabled].active, fieldset[disabled] .btn-bitbucket.active { background-color: #205081; border-color: rgba(0, 0, 0, 0.2); } .btn-bitbucket .badge { color: #205081; background-color: #ffffff; } .btn-dropbox { color: #ffffff; background-color: #1087dd; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:hover, .btn-dropbox:focus, .btn-dropbox:active, .btn-dropbox.active, .open .dropdown-toggle.btn-dropbox { color: #ffffff; background-color: #0d70b7; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox:active, .btn-dropbox.active, .open .dropdown-toggle.btn-dropbox { background-image: none; } .btn-dropbox.disabled, .btn-dropbox[disabled], fieldset[disabled] .btn-dropbox, .btn-dropbox.disabled:hover, .btn-dropbox[disabled]:hover, fieldset[disabled] .btn-dropbox:hover, .btn-dropbox.disabled:focus, .btn-dropbox[disabled]:focus, fieldset[disabled] .btn-dropbox:focus, .btn-dropbox.disabled:active, .btn-dropbox[disabled]:active, fieldset[disabled] .btn-dropbox:active, .btn-dropbox.disabled.active, .btn-dropbox[disabled].active, fieldset[disabled] .btn-dropbox.active { background-color: #1087dd; border-color: rgba(0, 0, 0, 0.2); } .btn-dropbox .badge { color: #1087dd; background-color: #ffffff; } .btn-facebook { color: #ffffff; background-color: #3b5998; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook { color: #ffffff; background-color: #30487b; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook:active, .btn-facebook.active, .open .dropdown-toggle.btn-facebook { background-image: none; } .btn-facebook.disabled, .btn-facebook[disabled], fieldset[disabled] .btn-facebook, .btn-facebook.disabled:hover, .btn-facebook[disabled]:hover, fieldset[disabled] .btn-facebook:hover, .btn-facebook.disabled:focus, .btn-facebook[disabled]:focus, fieldset[disabled] .btn-facebook:focus, .btn-facebook.disabled:active, .btn-facebook[disabled]:active, fieldset[disabled] .btn-facebook:active, .btn-facebook.disabled.active, .btn-facebook[disabled].active, fieldset[disabled] .btn-facebook.active { background-color: #3b5998; border-color: rgba(0, 0, 0, 0.2); } .btn-facebook .badge { color: #3b5998; background-color: #ffffff; } .btn-flickr { color: #ffffff; background-color: #ff0084; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:hover, .btn-flickr:focus, .btn-flickr:active, .btn-flickr.active, .open .dropdown-toggle.btn-flickr { color: #ffffff; background-color: #d6006f; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr:active, .btn-flickr.active, .open .dropdown-toggle.btn-flickr { background-image: none; } .btn-flickr.disabled, .btn-flickr[disabled], fieldset[disabled] .btn-flickr, .btn-flickr.disabled:hover, .btn-flickr[disabled]:hover, fieldset[disabled] .btn-flickr:hover, .btn-flickr.disabled:focus, .btn-flickr[disabled]:focus, fieldset[disabled] .btn-flickr:focus, .btn-flickr.disabled:active, .btn-flickr[disabled]:active, fieldset[disabled] .btn-flickr:active, .btn-flickr.disabled.active, .btn-flickr[disabled].active, fieldset[disabled] .btn-flickr.active { background-color: #ff0084; border-color: rgba(0, 0, 0, 0.2); } .btn-flickr .badge { color: #ff0084; background-color: #ffffff; } .btn-foursquare { color: #ffffff; background-color: #0072b1; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:hover, .btn-foursquare:focus, .btn-foursquare:active, .btn-foursquare.active, .open .dropdown-toggle.btn-foursquare { color: #ffffff; background-color: #005888; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare:active, .btn-foursquare.active, .open .dropdown-toggle.btn-foursquare { background-image: none; } .btn-foursquare.disabled, .btn-foursquare[disabled], fieldset[disabled] .btn-foursquare, .btn-foursquare.disabled:hover, .btn-foursquare[disabled]:hover, fieldset[disabled] .btn-foursquare:hover, .btn-foursquare.disabled:focus, .btn-foursquare[disabled]:focus, fieldset[disabled] .btn-foursquare:focus, .btn-foursquare.disabled:active, .btn-foursquare[disabled]:active, fieldset[disabled] .btn-foursquare:active, .btn-foursquare.disabled.active, .btn-foursquare[disabled].active, fieldset[disabled] .btn-foursquare.active { background-color: #0072b1; border-color: rgba(0, 0, 0, 0.2); } .btn-foursquare .badge { color: #0072b1; background-color: #ffffff; } .btn-github { color: #ffffff; background-color: #444444; border-color: rgba(0, 0, 0, 0.2); } .btn-github:hover, .btn-github:focus, .btn-github:active, .btn-github.active, .open .dropdown-toggle.btn-github { color: #ffffff; background-color: #303030; border-color: rgba(0, 0, 0, 0.2); } .btn-github:active, .btn-github.active, .open .dropdown-toggle.btn-github { background-image: none; } .btn-github.disabled, .btn-github[disabled], fieldset[disabled] .btn-github, .btn-github.disabled:hover, .btn-github[disabled]:hover, fieldset[disabled] .btn-github:hover, .btn-github.disabled:focus, .btn-github[disabled]:focus, fieldset[disabled] .btn-github:focus, .btn-github.disabled:active, .btn-github[disabled]:active, fieldset[disabled] .btn-github:active, .btn-github.disabled.active, .btn-github[disabled].active, fieldset[disabled] .btn-github.active { background-color: #444444; border-color: rgba(0, 0, 0, 0.2); } .btn-github .badge { color: #444444; background-color: #ffffff; } .btn-google-plus { color: #ffffff; background-color: #dd4b39; border-color: rgba(0, 0, 0, 0.2); } .btn-google-plus:hover, .btn-google-plus:focus, .btn-google-plus:active, .btn-google-plus.active, .open .dropdown-toggle.btn-google-plus { color: #ffffff; background-color: #ca3523; border-color: rgba(0, 0, 0, 0.2); } .btn-google-plus:active, .btn-google-plus.active, .open .dropdown-toggle.btn-google-plus { background-image: none; } .btn-google-plus.disabled, .btn-google-plus[disabled], fieldset[disabled] .btn-google-plus, .btn-google-plus.disabled:hover, .btn-google-plus[disabled]:hover, fieldset[disabled] .btn-google-plus:hover, .btn-google-plus.disabled:focus, .btn-google-plus[disabled]:focus, fieldset[disabled] .btn-google-plus:focus, .btn-google-plus.disabled:active, .btn-google-plus[disabled]:active, fieldset[disabled] .btn-google-plus:active, .btn-google-plus.disabled.active, .btn-google-plus[disabled].active, fieldset[disabled] .btn-google-plus.active { background-color: #dd4b39; border-color: rgba(0, 0, 0, 0.2); } .btn-google-plus .badge { color: #dd4b39; background-color: #ffffff; } .btn-instagram { color: #ffffff; background-color: #3f729b; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:hover, .btn-instagram:focus, .btn-instagram:active, .btn-instagram.active, .open .dropdown-toggle.btn-instagram { color: #ffffff; background-color: #335d7e; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram:active, .btn-instagram.active, .open .dropdown-toggle.btn-instagram { background-image: none; } .btn-instagram.disabled, .btn-instagram[disabled], fieldset[disabled] .btn-instagram, .btn-instagram.disabled:hover, .btn-instagram[disabled]:hover, fieldset[disabled] .btn-instagram:hover, .btn-instagram.disabled:focus, .btn-instagram[disabled]:focus, fieldset[disabled] .btn-instagram:focus, .btn-instagram.disabled:active, .btn-instagram[disabled]:active, fieldset[disabled] .btn-instagram:active, .btn-instagram.disabled.active, .btn-instagram[disabled].active, fieldset[disabled] .btn-instagram.active { background-color: #3f729b; border-color: rgba(0, 0, 0, 0.2); } .btn-instagram .badge { color: #3f729b; background-color: #ffffff; } .btn-linkedin { color: #ffffff; background-color: #007bb6; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:hover, .btn-linkedin:focus, .btn-linkedin:active, .btn-linkedin.active, .open .dropdown-toggle.btn-linkedin { color: #ffffff; background-color: #005f8d; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin:active, .btn-linkedin.active, .open .dropdown-toggle.btn-linkedin { background-image: none; } .btn-linkedin.disabled, .btn-linkedin[disabled], fieldset[disabled] .btn-linkedin, .btn-linkedin.disabled:hover, .btn-linkedin[disabled]:hover, fieldset[disabled] .btn-linkedin:hover, .btn-linkedin.disabled:focus, .btn-linkedin[disabled]:focus, fieldset[disabled] .btn-linkedin:focus, .btn-linkedin.disabled:active, .btn-linkedin[disabled]:active, fieldset[disabled] .btn-linkedin:active, .btn-linkedin.disabled.active, .btn-linkedin[disabled].active, fieldset[disabled] .btn-linkedin.active { background-color: #007bb6; border-color: rgba(0, 0, 0, 0.2); } .btn-linkedin .badge { color: #007bb6; background-color: #ffffff; } .btn-tumblr { color: #ffffff; background-color: #2c4762; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:hover, .btn-tumblr:focus, .btn-tumblr:active, .btn-tumblr.active, .open .dropdown-toggle.btn-tumblr { color: #ffffff; background-color: #1f3346; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr:active, .btn-tumblr.active, .open .dropdown-toggle.btn-tumblr { background-image: none; } .btn-tumblr.disabled, .btn-tumblr[disabled], fieldset[disabled] .btn-tumblr, .btn-tumblr.disabled:hover, .btn-tumblr[disabled]:hover, fieldset[disabled] .btn-tumblr:hover, .btn-tumblr.disabled:focus, .btn-tumblr[disabled]:focus, fieldset[disabled] .btn-tumblr:focus, .btn-tumblr.disabled:active, .btn-tumblr[disabled]:active, fieldset[disabled] .btn-tumblr:active, .btn-tumblr.disabled.active, .btn-tumblr[disabled].active, fieldset[disabled] .btn-tumblr.active { background-color: #2c4762; border-color: rgba(0, 0, 0, 0.2); } .btn-tumblr .badge { color: #2c4762; background-color: #ffffff; } .btn-twitter { color: #ffffff; background-color: #55acee; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter { color: #ffffff; background-color: #309aea; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter { background-image: none; } .btn-twitter.disabled, .btn-twitter[disabled], fieldset[disabled] .btn-twitter, .btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled:active, .btn-twitter[disabled]:active, fieldset[disabled] .btn-twitter:active, .btn-twitter.disabled.active, .btn-twitter[disabled].active, fieldset[disabled] .btn-twitter.active { background-color: #55acee; border-color: rgba(0, 0, 0, 0.2); } .btn-twitter .badge { color: #55acee; background-color: #ffffff; } .btn-vk { color: #ffffff; background-color: #587ea3; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:hover, .btn-vk:focus, .btn-vk:active, .btn-vk.active, .open .dropdown-toggle.btn-vk { color: #ffffff; background-color: #4a6a89; border-color: rgba(0, 0, 0, 0.2); } .btn-vk:active, .btn-vk.active, .open .dropdown-toggle.btn-vk { background-image: none; } .btn-vk.disabled, .btn-vk[disabled], fieldset[disabled] .btn-vk, .btn-vk.disabled:hover, .btn-vk[disabled]:hover, fieldset[disabled] .btn-vk:hover, .btn-vk.disabled:focus, .btn-vk[disabled]:focus, fieldset[disabled] .btn-vk:focus, .btn-vk.disabled:active, .btn-vk[disabled]:active, fieldset[disabled] .btn-vk:active, .btn-vk.disabled.active, .btn-vk[disabled].active, fieldset[disabled] .btn-vk.active { background-color: #587ea3; border-color: rgba(0, 0, 0, 0.2); } .btn-vk .badge { color: #587ea3; background-color: #ffffff; }
styles/main_windowed.css
GeekiD-Software/webNovel
body { background: #000; font-family: "Lucida Sans Unicode", "Lucida Grande", "sans-serif"; overflow: hidden; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor:default; } #container { position:absolute; width:640px; height:480px; top:0; left:0; } #gameCanvas > div { position:absolute; top: 0; bottom: 0; left: 0; right: 0; overflow:hidden; } #background { position:absolute; background: #fff url(../res/images/bg.jpg); background-size:100% auto; top: 0; bottom: 0; left: 0; right: 0; } #foreground { position:absolute; left:0; bottom:0; } #foreground img { position:absolute; bottom:0; } #gameCanvas #content.adv{ position:absolute; color:#fff; height:35%; top:65%; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; cursor:default; } #nameBox{ background:rgba(0,0,0,.5); display: inline-block; padding:4px; font-weight: bold; } #textBox{ background:rgba(0,0,0,.5); padding:4px; height:100%; } #menu { position:absolute; bottom:3px; right:10px; display:inline-block; font-weight:bold; } #menu a{ text-decoration:none; font-size:25px; color:#fff; } #menu a :hover { font-size:20px; color:rgb(50,50,50); } #foreground.char > div { position:absolute; display:inline; }
pags/Galerias/Italia/Napoles_I.html
castillosmedievales/castillosmedievales.github.io
<!DOCTYPE html> <html class="full" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <style type="text/css"> #custom_carousel .item .top { overflow:hidden; max-height:1920px; margin-bottom:15px; } #custom_carousel .item { color:#000; background-color:#fff; padding:50px 0; overflow:hidden } #custom_carousel .item img{ width:80%; height:auto } #custom_carousel .izq { position:absolute; left: -5px; top:40%; background-image: none; background: none repeat scroll 0 0 #222222; border: 4px solid #FFFFFF; border-radius: 23px; height: 40px; width : 40px; margin-top: 30px; } /* Next button */ #custom_carousel .der { position:absolute; right: -5px !important; top:40%; left:inherit; background-image: none; background: none repeat scroll 0 0 #222222; border: 4px solid #FFFFFF; border-radius: 23px; height: 40px; width : 40px; margin-top: 30px; } #custom_carousel .controls{ overflow:hidden; padding:0; margin:0; white-space: nowrap; text-align: center; position: relative; background:#fff; border:0; } #custom_carousel .controls .nav{ padding:10px; margin:0; white-space: nowrap; text-align: left; position: relative; background:#fff; width: auto; border: 0; } #custom_carousel .controls li { transition: all .5s ease; display: inline-block; max-width: 100px; height: 90px; opacity:.5; } #custom_carousel .controls li a{ padding:0; } #custom_carousel .controls li img{ width:100%; height:auto } #custom_carousel .controls li.active { background-color:#fff; opacity:1; } #custom_carousel .controls a small { overflow:hidden; display:block; font-size:10px; margin-top:5px; font-weight:bold } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: 2em; } </style> <title>Castillos</title> <!-- Bootstrap Core CSS --> <link href="../../../css/bootstrap.css" rel="stylesheet"> <!-- Custom CSS --> <link href="../../../css/Styles/the-big-picture.css" rel="stylesheet"> <link href="../../../css/Styles/GaleriasStyle.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet"> </head> <body> <header> <img src="../../../back/navb.png"> </header> <!-- Navigation --> <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../index.html"><img src="../../../back/Logo.png" width="360" height="61" class="img-responsive"></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="../../../index.html"><span id="maxInicio">Inicio</span><br><span id="miniInicio">Home</span></a> </li> <li><a href="../../castillos.html"><span id="maxInicio">Castillos</span><br><span id="miniInicio">Castles</span></a> </li> <li><a href="../../libros.html"><span id="maxInicio">Libros</span><br><span id="miniInicio">Books</span></a> </li> <li><a href="../../vinculos.html"><span id="maxInicio">Vinculos</span><br><span id="miniInicio">Links</span></a> </li> <li><a href="../../contacto.html"><span id="maxInicio">Contacto</span><br><span id="miniInicio">Contact</span></a> </li> </ul> </div> </div> </nav> <body> <div class="container-fluid"> <div id="custom_carousel" class="carousel slide" data-ride="carousel" data-interval="4000"> <!-- Wrapper for slides --> <div class="carousel-inner"> <div class="item active"> <div class="container-fluid"> <div class="row"> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"><img src= "../../../Castillos/Italia/Napoles_I/1.jpg" class="img-responsive"></div> <div class="top col-md-2 col-xs-0"></div> <div class="content col-md-8 col-xs-12"> <p><b>Nápoles ▪ Naples I:</b><br> <em>Castel dell’Ovo</em><br> S.XII - XV</p> </div> </div> </div> </div> <div class="item"> <div class="container-fluid"> <div class="row"> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"><img src= "../../../Castillos/Italia/Napoles_I/2.jpg" class="img-responsive"></div> <div class="top col-md-2 col-xs-0"></div> <div class="content col-md-8 col-xs-12"> <p><b>Nápoles ▪ Naples I:</b><br> <em>Castel dell’Ovo</em><br> S.XII - XV</p> </div> </div> </div> </div> <div class="item"> <div class="container-fluid"> <div class="row"> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"><img src= "../../../Castillos/Italia/Napoles_I/3.jpg" class="img-responsive"></div> <div class="top col-md-2 col-xs-0"></div> <div class="content col-md-8 col-xs-12"> <p><b>Nápoles ▪ Naples I:</b><br> <em>Castel dell’Ovo</em><br> S.XII - XV</p> </div> </div> </div> </div> <div class="item"> <div class="container-fluid"> <div class="row"> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"><img src= "../../../Castillos/Italia/Napoles_I/4.jpg" class="img-responsive"></div> <div class="top col-md-2 col-xs-0"></div> <div class="content col-md-8 col-xs-12"> <p><b>Nápoles ▪ Naples I:</b><br> <em>Castel dell’Ovo</em><br> S.XII - XV</p> </div> </div> </div> </div> <div class="item"> <div class="container-fluid"> <div class="row"> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"><img src= "../../../Castillos/Italia/Napoles_I/5.jpg" class="img-responsive"></div> <div class="top col-md-2 col-xs-0"></div> <div class="content col-md-8 col-xs-12"> <p><b>Nápoles ▪ Naples I:</b><br> <em>Castel dell’Ovo</em><br> S.XII - XV</p> </div> </div> </div> </div> <!-- End Item --> </div> <!--<a data-slide="prev" href="#custom_carousel" class="izq carousel-control">‹</a>--> <!--<a data-slide="next" href="#custom_carousel" class="der carousel-control">›</a>--> <!-- End Carousel Inner --> <div class="top col-md-2 col-xs-0"></div> <div class="controls draggable ui-widget-content col-md-6 col-xs-12"> <ul class="nav ui-widget-header"> <li data-target="#custom_carousel" data-slide-to="0" class="active"><a href="#"><img src="../../../Castillos/Italia/Napoles_I/1.jpg"><small></small></a></li> <li data-target="#custom_carousel" data-slide-to="1"><a href="#"><img src="../../../Castillos/Italia/Napoles_I/2.jpg"><small></small></a></li> <li data-target="#custom_carousel" data-slide-to="2"><a href="#"><img src="../../../Castillos/Italia/Napoles_I/3.jpg"><small></small></a></li> <li data-target="#custom_carousel" data-slide-to="3"><a href="#"><img src="../../../Castillos/Italia/Napoles_I/4.jpg"><small></small></a></li> <li data-target="#custom_carousel" data-slide-to="4"><a href="#"><img src="../../../Castillos/Italia/Napoles_I/5.jpg"><small></small></a></li> </ul> </div> </div> <!-- End Carousel --> </div> <!-- <script type="text/javascript">S $(document).ready(function(ev){ var items = $(".nav li").length; var leftRight=0; if(items>5){ leftRight=(items-5)*50*-1; } $('#custom_carousel').on('slide.bs.carousel', function (evt) { $('#custom_carousel .controls li.active').removeClass('active'); $('#custom_carousel .controls li:eq('+$(evt.relatedTarget).index()+')').addClass('active'); }) $('.nav').draggable({ axis: "x", stop: function() { var ml = parseInt($(this).css('left')); if(ml>0) $(this).animate({left:"0px"}); if(ml<leftRight) $(this).animate({left:leftRight+"px"}); } }); }); </script> --> <div class="top col-md-2 col-xs-0"></div> <div class="top col-md-10 col-xs-12"> <a href = "../../paises/italia.html"><span id="atrasg">atrás </span><span id="atrasp">back</span></a> </div> </body> <!-- /.container --> <!-- jQuery --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script><script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script><script src="../../../js/slider.js"></script> <!-- Bootstrap Core JavaScript --> <script src="../../../js/bootstrap.min.js"></script> </body> </html>
feedshare/templates/account/email_confirm.html
holzenburg/feedshare
{% extends "base.html" %} {% load url from future %} {% load i18n %} {% load account %} {% block title %}{% trans "Confirm E-mail Address" %}{% endblock %} {% block content %} <h1>{% trans "Confirm E-mail Address" %}</h1> {% if confirmation %} {% user_display confirmation.email_address.user as user_display %} <p>{% blocktrans with confirmation.email_address.email as email %}Please confirm that <a href="mailto:{{email}}">{{ email }}</a> is an e-mail address for user {{ user_display }}.{% endblocktrans %}</p> <form method="post" action="{% url 'account_confirm_email' confirmation.key %}"> {% csrf_token %} <button class="btn btn-primary" type="submit">{% trans 'Confirm' %}</button> </form> {% else %} {% url 'account_email' as email_url %} <p>{% blocktrans %}This e-mail confirmation link expired or is invalid. Please <a href="{{ email_url}}">issue a new e-mail confirmation request</a>.{% endblocktrans %}</p> {% endif %} {% endblock %}
doc/classes/MuskepeerClient.html
casatt/muskepeer-client
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>MuskepeerClient - muskepeer-client</title> <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css"> <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="../assets/css/main.css" id="site_styles"> <link rel="shortcut icon" type="image/png" href="../assets/favicon.png"> <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script> </head> <body class="yui3-skin-sam"> <div id="doc"> <div id="hd" class="yui3-g header"> <div class="yui3-u-3-4"> <h1><img src="../assets/css/logo.png" title="muskepeer-client"></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: 0.0.1</em> </div> </div> <div id="bd" class="yui3-g"> <div class="yui3-u-1-4"> <div id="docs-sidebar" class="sidebar apidocs"> <div id="api-list"> <h2 class="off-left">APIs</h2> <div id="api-tabview" class="tabview"> <ul class="tabs"> <li><a href="#api-classes">Classes</a></li> <li><a href="#api-modules">Modules</a></li> </ul> <div id="api-tabview-filter"> <input type="search" id="api-filter" placeholder="Type to filter APIs"> </div> <div id="api-tabview-panel"> <ul id="api-classes" class="apis classes"> <li><a href="../classes/Computation.html">Computation</a></li> <li><a href="../classes/Crypto.html">Crypto</a></li> <li><a href="../classes/Database.html">Database</a></li> <li><a href="../classes/FileSystem.html">FileSystem</a></li> <li><a href="../classes/GeoLocation.html">GeoLocation</a></li> <li><a href="../classes/Job.html">Job</a></li> <li><a href="../classes/Jobs.html">Jobs</a></li> <li><a href="../classes/Logger.html">Logger</a></li> <li><a href="../classes/Mediator.html">Mediator</a></li> <li><a href="../classes/MuskepeerClient.html">MuskepeerClient</a></li> <li><a href="../classes/MuskepeerModule.html">MuskepeerModule</a></li> <li><a href="../classes/Network.html">Network</a></li> <li><a href="../classes/Node.html">Node</a></li> <li><a href="../classes/Nodes.html">Nodes</a></li> <li><a href="../classes/Peer.html">Peer</a></li> <li><a href="../classes/Peers.html">Peers</a></li> <li><a href="../classes/Pool.html">Pool</a></li> <li><a href="../classes/Project.html">Project</a></li> <li><a href="../classes/Result.html">Result</a></li> <li><a href="../classes/Results.html">Results</a></li> <li><a href="../classes/Service.html">Service</a></li> <li><a href="../classes/Settings.html">Settings</a></li> <li><a href="../classes/Storage.html">Storage</a></li> <li><a href="../classes/Uuid.html">Uuid</a></li> <li><a href="../classes/Worker.html">Worker</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="../modules/Computation.html">Computation</a></li> <li><a href="../modules/Crypto.html">Crypto</a></li> <li><a href="../modules/Database.html">Database</a></li> <li><a href="../modules/FileSystem.html">FileSystem</a></li> <li><a href="../modules/GeoLocation.html">GeoLocation</a></li> <li><a href="../modules/Jobs.html">Jobs</a></li> <li><a href="../modules/Logger.html">Logger</a></li> <li><a href="../modules/Mediator.html">Mediator</a></li> <li><a href="../modules/MuskepeerClient.html">MuskepeerClient</a></li> <li><a href="../modules/Network.html">Network</a></li> <li><a href="../modules/Pool.html">Pool</a></li> <li><a href="../modules/Project.html">Project</a></li> <li><a href="../modules/Results.html">Results</a></li> <li><a href="../modules/Settings.html">Settings</a></li> <li><a href="../modules/Storage.html">Storage</a></li> <li><a href="../modules/Uuid.html">Uuid</a></li> </ul> </div> </div> </div> </div> </div> <div class="yui3-u-3-4"> <div id="api-options"> Show: <label for="api-show-inherited"> <input type="checkbox" id="api-show-inherited" checked> Inherited </label> <label for="api-show-protected"> <input type="checkbox" id="api-show-protected"> Protected </label> <label for="api-show-private"> <input type="checkbox" id="api-show-private"> Private </label> <label for="api-show-deprecated"> <input type="checkbox" id="api-show-deprecated"> Deprecated </label> </div> <div class="apidocs"> <div id="docs-main"> <div class="content"> <h1>MuskepeerClient Class</h1> <div class="box meta"> <div class="foundat"> Defined in: <a href="../files/src_muskepeer-client.js.html#l1"><code>src\muskepeer-client.js:1</code></a> </div> Module: <a href="../modules/MuskepeerClient.html">MuskepeerClient</a> </div> <div class="box intro"> </div> <div id="classdocs" class="tabview"> <ul class="api-class-tabs"> <li class="api-class-tab index"><a href="#index">Index</a></li> <li class="api-class-tab methods"><a href="#methods">Methods</a></li> </ul> <div> <div id="index" class="api-class-tabpanel index"> <h2 class="off-left">Item Index</h2> <div class="index-section methods"> <h3>Methods</h3> <ul class="index-list methods"> <li class="index-item method private"> <a href="#method_getDeviceCapabilities">getDeviceCapabilities</a> </li> <li class="index-item method"> <a href="#method_init">init</a> </li> <li class="index-item method"> <a href="#method_start">start</a> </li> <li class="index-item method"> <a href="#method_stop">stop</a> </li> </ul> </div> </div> <div id="methods" class="api-class-tabpanel"> <h2 class="off-left">Methods</h2> <div id="method_getDeviceCapabilities" class="method item private"> <h3 class="name"><code>getDeviceCapabilities</code></h3> <span class="paren">()</span> <span class="returns-inline"> <span class="type">Object</span> </span> <span class="flag private">private</span> <div class="meta"> <p> Defined in <a href="../files/src_muskepeer-client.js.html#l22"><code>src\muskepeer-client.js:22</code></a> </p> </div> <div class="description"> <p>Simple feature testing of the application requirements as a lot of the used technologies are still working drafts and for from standard</p> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Object</span>: </div> </div> </div> <div id="method_init" class="method item"> <h3 class="name"><code>init</code></h3> <span class="paren">()</span> <span class="returns-inline"> <span class="type">Object</span> </span> <span class="flag chainable">chainable</span> <div class="meta"> <p> Defined in <a href="../files/src_muskepeer-client.js.html#l78"><code>src\muskepeer-client.js:78</code></a> </p> </div> <div class="description"> <p>Initiate muskepeer</p> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Object</span>: </div> </div> </div> <div id="method_start" class="method item"> <h3 class="name"><code>start</code></h3> <div class="args"> <span class="paren">(</span><ul class="args-list inline commas"> <li class="arg"> <code>config</code> </li> </ul><span class="paren">)</span> </div> <span class="returns-inline"> <span class="type">Object</span> </span> <span class="flag chainable">chainable</span> <div class="meta"> <p> Defined in <a href="../files/src_muskepeer-client.js.html#l105"><code>src\muskepeer-client.js:105</code></a> </p> </div> <div class="description"> <p>Start muskepeer</p> </div> <div class="params"> <h4>Parameters:</h4> <ul class="params-list"> <li class="param"> <code class="param-name">config</code> <span class="type">Object</span> <div class="param-description"> <p>Configuration-Object</p> </div> </li> </ul> </div> <div class="returns"> <h4>Returns:</h4> <div class="returns-description"> <span class="type">Object</span>: </div> </div> </div> <div id="method_stop" class="method item"> <h3 class="name"><code>stop</code></h3> <span class="paren">()</span> <span class="flag chainable">chainable</span> <div class="meta"> <p> Defined in <a href="../files/src_muskepeer-client.js.html#l170"><code>src\muskepeer-client.js:170</code></a> </p> </div> <div class="description"> <p>Stop muskepeer</p> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <script src="../assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="../assets/js/yui-prettify.js"></script> <script src="../assets/../api.js"></script> <script src="../assets/js/api-filter.js"></script> <script src="../assets/js/api-list.js"></script> <script src="../assets/js/api-search.js"></script> <script src="../assets/js/apidocs.js"></script> </body> </html>
docs/index-files/index-17.html
WElRD/StreamDeckCore
<!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 (10.0.2) on Sun Dec 30 00:11:58 CET 2018 --> <title>R-Index</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="date" content="2018-12-30"> <link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style"> <link rel="stylesheet" type="text/css" href="../jquery/jquery-ui.css" title="Style"> <script type="text/javascript" src="../script.js"></script> <script type="text/javascript" src="../jquery/jszip/dist/jszip.min.js"></script> <script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils.min.js"></script> <!--[if IE]> <script type="text/javascript" src="../jquery/jszip-utils/dist/jszip-utils-ie.min.js"></script> <![endif]--> <script type="text/javascript" src="../jquery/jquery-1.10.2.js"></script> <script type="text/javascript" src="../jquery/jquery-ui.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="R-Index"; } } catch(err) { } //--> var pathtoroot = "../";loadScripts(document, 'script');</script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <div class="fixedNav"> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-16.html">Prev Letter</a></li> <li><a href="index-18.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-17.html" target="_top">Frames</a></li> <li><a href="index-17.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> <ul class="navListSearch"> <li><label for="search">SEARCH:</label> <input type="text" id="search" value="search" disabled="disabled"> <input type="reset" id="reset" value="reset" disabled="disabled"> </li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> </div> <div class="navPadding">&nbsp;</div> <script type="text/javascript"><!-- $('.navPadding').css('padding-top', $('.fixedNav').css("height")); //--> </script> <div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">K</a>&nbsp;<a href="index-11.html">L</a>&nbsp;<a href="index-12.html">M</a>&nbsp;<a href="index-13.html">N</a>&nbsp;<a href="index-14.html">O</a>&nbsp;<a href="index-15.html">P</a>&nbsp;<a href="index-16.html">Q</a>&nbsp;<a href="index-17.html">R</a>&nbsp;<a href="index-18.html">S</a>&nbsp;<a href="index-19.html">T</a>&nbsp;<a href="index-20.html">U</a>&nbsp;<a href="index-21.html">V</a>&nbsp;<a href="index-22.html">W</a>&nbsp;<a href="index-23.html">_</a>&nbsp;<a name="I:R"> <!-- --> </a> <h2 class="title">R</h2> <dl> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html#rawFrames">rawFrames</a></span> - Variable in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html" title="class in de.rcblum.stream.deck.items.animation">AnimationStack</a></dt> <dd> <div class="block">Original frame data</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/AbstractStreamItem.html#rawImg">rawImg</a></span> - Variable in class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/AbstractStreamItem.html" title="class in de.rcblum.stream.deck.items">AbstractStreamItem</a></dt> <dd> <div class="block">Raw image of the folder</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html#recievePool">recievePool</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck</a></dt> <dd> <div class="block">Queue for <a href="../de/rcblum/stream/deck/event/KeyEvent.html" title="class in de.rcblum.stream.deck.event"><code>KeyEvent</code></a>s that are triggered by the ESD</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#recievePool">recievePool</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd> <div class="block">Queue for <a href="../de/rcblum/stream/deck/event/KeyEvent.html" title="class in de.rcblum.stream.deck.event"><code>KeyEvent</code></a>s that are triggered by the ESD</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/StreamDeckController.html#releaseButton-int-">releaseButton(int)</a></span> - Method in class de.rcblum.stream.deck.<a href="../de/rcblum/stream/deck/StreamDeckController.html" title="class in de.rcblum.stream.deck">StreamDeckController</a></dt> <dd> <div class="block">Manually releases a button at the given id.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/event/KeyEvent.Type.html#RELEASED_CLICKED">RELEASED_CLICKED</a></span> - de.rcblum.stream.deck.event.<a href="../de/rcblum/stream/deck/event/KeyEvent.Type.html" title="enum in de.rcblum.stream.deck.event">KeyEvent.Type</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/Animator.html#removeAnimationListener-de.rcblum.stream.deck.items.listeners.AnimationListener-">removeAnimationListener(AnimationListener)</a></span> - Method in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/Animator.html" title="class in de.rcblum.stream.deck.items.animation">Animator</a></dt> <dd> <div class="block">Remvoes an animation listener</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/StreamDeckController.html#removeIconListener--">removeIconListener()</a></span> - Method in class de.rcblum.stream.deck.<a href="../de/rcblum/stream/deck/StreamDeckController.html" title="class in de.rcblum.stream.deck">StreamDeckController</a></dt> <dd> <div class="block">Removes the <a href="../de/rcblum/stream/deck/StreamDeckController.html" title="class in de.rcblum.stream.deck"><code>StreamDeckController</code></a> from all cildren of the current directory.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/AbstractStreamItem.html#removeIconUpdateListener-de.rcblum.stream.deck.items.listeners.IconUpdateListener-">removeIconUpdateListener(IconUpdateListener)</a></span> - Method in class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/AbstractStreamItem.html" title="class in de.rcblum.stream.deck.items">AbstractStreamItem</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/StreamItem.html#removeIconUpdateListener-de.rcblum.stream.deck.items.listeners.IconUpdateListener-">removeIconUpdateListener(IconUpdateListener)</a></span> - Method in interface de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/StreamItem.html" title="interface in de.rcblum.stream.deck.items">StreamItem</a></dt> <dd> <div class="block">Removes the given listener.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/IStreamDeck.html#removeKey-int-">removeKey(int)</a></span> - Method in interface de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/IStreamDeck.html" title="interface in de.rcblum.stream.deck.device">IStreamDeck</a></dt> <dd> <div class="block">Removes a registered Key.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html#removeKey-int-">removeKey(int)</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#removeKey-int-">removeKey(int)</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/IStreamDeck.html#removeKeyListener-de.rcblum.stream.deck.event.StreamKeyListener-">removeKeyListener(StreamKeyListener)</a></span> - Method in interface de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/IStreamDeck.html" title="interface in de.rcblum.stream.deck.device">IStreamDeck</a></dt> <dd> <div class="block">Removes an StreamKeyListener from the ESD.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html#removeKeyListener-de.rcblum.stream.deck.event.StreamKeyListener-">removeKeyListener(StreamKeyListener)</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#removeKeyListener-de.rcblum.stream.deck.event.StreamKeyListener-">removeKeyListener(StreamKeyListener)</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html#REPEAT_LOOPING">REPEAT_LOOPING</a></span> - Static variable in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html" title="class in de.rcblum.stream.deck.items.animation">AnimationStack</a></dt> <dd> <div class="block">Animation should be looped when reaching the last frame</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html#REPEAT_ONCE">REPEAT_ONCE</a></span> - Static variable in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html" title="class in de.rcblum.stream.deck.items.animation">AnimationStack</a></dt> <dd> <div class="block">Animation should stop when reaching the last frame.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html#REPEAT_PING_PONG">REPEAT_PING_PONG</a></span> - Static variable in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html" title="class in de.rcblum.stream.deck.items.animation">AnimationStack</a></dt> <dd> <div class="block">Animation should be played in reverse when reaching on end of the frames.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html#repeatType">repeatType</a></span> - Variable in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/AnimationStack.html" title="class in de.rcblum.stream.deck.items.animation">AnimationStack</a></dt> <dd> <div class="block">If and how the animation should be repeated</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/IStreamDeck.html#reset--">reset()</a></span> - Method in interface de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/IStreamDeck.html" title="interface in de.rcblum.stream.deck.device">IStreamDeck</a></dt> <dd> <div class="block">Queues a task to reset the stream deck.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html#reset--">reset()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#reset--">reset()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#RESET_DATA">RESET_DATA</a></span> - Static variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd> <div class="block">Reset command</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/StreamDeckController.html#resetStreamDeck--">resetStreamDeck()</a></span> - Method in class de.rcblum.stream.deck.<a href="../de/rcblum/stream/deck/StreamDeckController.html" title="class in de.rcblum.stream.deck">StreamDeckController</a></dt> <dd> <div class="block">Resets stream deck and updates display of keys</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.Resetter.html#Resetter--">Resetter()</a></span> - Constructor for class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.Resetter.html" title="class in de.rcblum.stream.deck.device">StreamDeck.Resetter</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/util/IconHelper.html#ROLLING_TEXT_PADDING">ROLLING_TEXT_PADDING</a></span> - Static variable in class de.rcblum.stream.deck.util.<a href="../de/rcblum/stream/deck/util/IconHelper.html" title="class in de.rcblum.stream.deck.util">IconHelper</a></dt> <dd> <div class="block">Sets the padding for the rolling text.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/StreamDeckController.html#root">root</a></span> - Variable in class de.rcblum.stream.deck.<a href="../de/rcblum/stream/deck/StreamDeckController.html" title="class in de.rcblum.stream.deck">StreamDeckController</a></dt> <dd> <div class="block">Root folder with the initial items to be dispalyed</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/util/IconHelper.html#rotate180-java.awt.image.BufferedImage-">rotate180(BufferedImage)</a></span> - Static method in class de.rcblum.stream.deck.util.<a href="../de/rcblum/stream/deck/util/IconHelper.html" title="class in de.rcblum.stream.deck.util">IconHelper</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.KeyListener.html#rowEnd">rowEnd</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.KeyListener.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck.KeyListener</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.KeyListener.html#rowStart">rowStart</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.KeyListener.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck.KeyListener</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.EventDispatcher.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.EventDispatcher.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck.EventDispatcher</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.WriteDaemon.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.WriteDaemon.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck.WriteDaemon</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.BrightnessUpdater.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.BrightnessUpdater.html" title="class in de.rcblum.stream.deck.device">StreamDeck.BrightnessUpdater</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.DeckWorker.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.DeckWorker.html" title="class in de.rcblum.stream.deck.device">StreamDeck.DeckWorker</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.EventDispatcher.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.EventDispatcher.html" title="class in de.rcblum.stream.deck.device">StreamDeck.EventDispatcher</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.IconUpdater.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.IconUpdater.html" title="class in de.rcblum.stream.deck.device">StreamDeck.IconUpdater</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.Resetter.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.Resetter.html" title="class in de.rcblum.stream.deck.device">StreamDeck.Resetter</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/animation/Animator.html#run--">run()</a></span> - Method in class de.rcblum.stream.deck.items.animation.<a href="../de/rcblum/stream/deck/items/animation/Animator.html" title="class in de.rcblum.stream.deck.items.animation">Animator</a></dt> <dd> <div class="block">Displays one frame of the animation</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/RunnableItem.html#runnable">runnable</a></span> - Variable in class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/RunnableItem.html" title="class in de.rcblum.stream.deck.items">RunnableItem</a></dt> <dd>&nbsp;</dd> <dt><a href="../de/rcblum/stream/deck/items/RunnableItem.html" title="class in de.rcblum.stream.deck.items"><span class="typeNameLink">RunnableItem</span></a> - Class in <a href="../de/rcblum/stream/deck/items/package-summary.html">de.rcblum.stream.deck.items</a></dt> <dd> <div class="block">This handle can be registered with the <a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device"><code>StreamDeck</code></a> and will execute the given <code>Runnable</code> task when the stream deck button is pressed on release.</div> </dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/RunnableItem.html#RunnableItem-de.rcblum.stream.deck.util.IconPackage-java.lang.Runnable-">RunnableItem(IconPackage, Runnable)</a></span> - Constructor for class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/RunnableItem.html" title="class in de.rcblum.stream.deck.items">RunnableItem</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/RunnableItem.html#RunnableItem-de.rcblum.stream.deck.util.SDImage-java.lang.Runnable-">RunnableItem(SDImage, Runnable)</a></span> - Constructor for class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/RunnableItem.html" title="class in de.rcblum.stream.deck.items">RunnableItem</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/items/RunnableItem.html#RunnableItem-de.rcblum.stream.deck.util.SDImage-java.lang.Runnable-java.lang.String-">RunnableItem(SDImage, Runnable, String)</a></span> - Constructor for class de.rcblum.stream.deck.items.<a href="../de/rcblum/stream/deck/items/RunnableItem.html" title="class in de.rcblum.stream.deck.items">RunnableItem</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html#running">running</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/SoftStreamDeck.html" title="class in de.rcblum.stream.deck.device">SoftStreamDeck</a></dt> <dd>&nbsp;</dd> <dt><span class="memberNameLink"><a href="../de/rcblum/stream/deck/device/StreamDeck.html#running">running</a></span> - Variable in class de.rcblum.stream.deck.device.<a href="../de/rcblum/stream/deck/device/StreamDeck.html" title="class in de.rcblum.stream.deck.device">StreamDeck</a></dt> <dd> <div class="block">Intended state of the daemons</div> </dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">H</a>&nbsp;<a href="index-9.html">I</a>&nbsp;<a href="index-10.html">K</a>&nbsp;<a href="index-11.html">L</a>&nbsp;<a href="index-12.html">M</a>&nbsp;<a href="index-13.html">N</a>&nbsp;<a href="index-14.html">O</a>&nbsp;<a href="index-15.html">P</a>&nbsp;<a href="index-16.html">Q</a>&nbsp;<a href="index-17.html">R</a>&nbsp;<a href="index-18.html">S</a>&nbsp;<a href="index-19.html">T</a>&nbsp;<a href="index-20.html">U</a>&nbsp;<a href="index-21.html">V</a>&nbsp;<a href="index-22.html">W</a>&nbsp;<a href="index-23.html">_</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../overview-summary.html">Overview</a></li> <li>Package</li> <li>Class</li> <li>Use</li> <li><a href="../overview-tree.html">Tree</a></li> <li><a href="../deprecated-list.html">Deprecated</a></li> <li class="navBarCell1Rev">Index</li> <li><a href="../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-16.html">Prev Letter</a></li> <li><a href="index-18.html">Next Letter</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-files/index-17.html" target="_top">Frames</a></li> <li><a href="index-17.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> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
views/reports/daySales.html
jdeugarte/bonsaiPOS
<html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <title>BonsaiPOS</title> <script> window.$ = window.jQuery = require('../../libs/jquery.min.js'); </script> <script src="../../models/nameoffice.js" type="text/javascript"></script> <script src="../../models/database/database.js" type="text/javascript"></script> <script src = "../../models/reports/daySales.js" type="text/javascript"></script> <script src="../../models/cashier/cashier.js" type="text/javascript"></script> <script src="../../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <link href="../../node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <script type="text/javascript"> function verify_cashier(){ if(exist_active_cashier('\\views\\reports',2)){ document.getElementById("cash_close").style.display = "block" document.getElementById("cash_open").style.display = "none" }else{ document.getElementById("cash_close").style.display = "none" document.getElementById("cash_open").style.display = "block" } } </script> </head> <body onload="verify_cashier()"> <nav class="navbar navbar-default"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../index.html">BonsaiPOS</a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> Productos <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="../products/stock.html">Stock</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> Venta <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="../sales/index.html">Todas Las Ventas</a></li> <li><a href="../sales/newSale.html">Nueva Venta</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> Reportes <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="daySales.html">Ventas del dia</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" id="cash_open" data-toggle="dropdown" role="button" aria-expanded="false">Caja<span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="../cashier/opencashier.html">Abrir Caja</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" id="cash_close" data-toggle="dropdown" role="button" aria-expanded="false">Caja<span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="../cashier/closecashier.html">Cerrar Caja</a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> Sicronizar <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="#" id="update">Sincronizar Productos </a></li> <li><a href="#" id="download"></a></li> </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"> Cliente <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> <li><a href="../users/newUser.html">Nuevo cliente</a></li> <li><a href="../users/listusers.html">Lista clientes</a></li> </ul> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="#"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> Usuario</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../connectionERP/new.html"><span class="glyphicon glyphicon-user" aria-hidden="true"></span> <script>document.write(get_data_nameoffice('\\views\\reports',2));</script></a></li> </ul> </div> </div> </nav> <div class="container"> <div id="progressbardiv" class="progress progress-striped active" hidden="true"> <div id="progressbar-2" class="progress-bar" style="transition-duration: 1s; -webkit-transition-duration: 1s; width: 45%">Cargando...</div> </div> <div class="alert alert-dismissible alert-success" id="alertMessage" hidden="true"> <button type="button" class="close" data-dismiss="alert">×</button> </div> </div> <div class="container"> <h5> <div align="right"> <script type="text/javascript"> function makeArray() { for (i = 0; i<makeArray.arguments.length; i++) this[i + 1] = makeArray.arguments[i];} var months = new makeArray('Enero','Febrero','Marzo','Abril','Mayo', 'Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'); var date = new Date(); var day = date.getDate(); var month = date.getMonth() + 1; var yy = date.getYear(); var year = (yy < 1000) ? yy + 1900 : yy; document.write(day + " de " + months[month] + " del " + year); </script> <script type="text/javascript"> function startTime(){ today=new Date(); h=today.getHours(); m=today.getMinutes(); s=today.getSeconds(); m=checkTime(m); s=checkTime(s); document.getElementById('reloj').innerHTML=h+":"+m+":"+s; t=setTimeout('startTime()',500);} function checkTime(i) {if (i<10) {i="0" + i;}return i;} window.onload=function(){startTime();} </script> </div> </h5> <h6> <div align="right" id="reloj" style="font-size:20px;"></div> </h6> <h1 align="center">Ventas del día</h1><br/> <center> <p id="labeldate"><script> var data_table = $("#labeldate"); data_table.append('Fecha: '+ getactualdate(new Date())); </script></p> </center><br> <table class="table table-striped table-hover" id="tblDatos"> <tr> <th style="text-align: center;">Hora</th> <th style="text-align: center;">Numero de Venta</th> <th style="text-align: center;">Cliente</th> <th style="text-align: center;">Total Venta</th> </tr> <script> var list_of_sales = returnlistofsalesofdate(new Date()); list_of_sales = orderlistbyhour(list_of_sales); var data_table = $("#tblDatos"); for (var cont = 0; cont < list_of_sales.length; cont++) { var aux = convertdatetoformatofso(list_of_sales[cont].date); data_table.append('<tr> <td style="text-align: center;">' + getactualtime(aux) + '</td> <td style="text-align: center;">' + list_of_sales[cont].id + '</td> <td style="text-align: center;">' + list_of_sales[cont].client + '</td> <td style="text-align: center;">' + list_of_sales[cont].total + '</td> </tr>'); } data_table.append('<tr><td></td><td style="text-align: right;"><strong>Total acomulado:</strong></td><td style="text-align: center;">'+gettotalofsales(list_of_sales)+'</td>'); </script> </table> </div> </body> </html>
client/views/page/test/async/async.css
hubcarl/weg-blog
body{ background-color: #1aaef3; }
assets/js/templates/snippet/endstep.html
denst/form_builder_bootstrap
</fieldset> ------------End Step-------------- <!-- End Step -->
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/4a7fd66a993b5b55d59aa9b01056e70d5eb4b9152996bcf135abed33a07e5a27.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="./e4d5f624413067749620a50fbbc41b09410c7e161f72615752eb47d6bdecfa02.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>
tag/說不懂/json/index.html
sunnyKiwi/JustCopy
{ "posts": [ { "url": "/chat/gossiping/2018/01/03/GossipingM.1514979125.A.305.html", "title": "網路熱門話題:「各位上班後才學會的單字」,你怎麼看?", "image": "http://pics.ctitv.com/wpimg/2017/02/74.jpg", "push": "34", "boo": "6", "date": "2018-01-03 19:32:02 +0800", "boardName": "八卦", "boardLink": "/category/gossiping" } ] }
clean/Linux-x86_64-4.05.0-2.0.1/extra-dev/dev/switch/1.0.3.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>switch: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">dev / switch - 1.0.3</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> switch <small> 1.0.3 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-16 03:29:46 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-16 03:29:46 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler ocamlfind 1.9.1 A library manager for OCaml ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;vzaliva@cmu.edu&quot; homepage: &quot;https://github.com/vzaliva/coq-switch&quot; dev-repo: &quot;git://git@github.com:vzaliva/coq-switch.git&quot; bug-reports: &quot;https://github.com/vzaliva/coq-switch/issues&quot; authors: [&quot;Vadim Zaliva &lt;vzaliva@cmu.edu&gt;&quot;] license: &quot;MIT&quot; build: [ [make &quot;-j%{jobs}%&quot;] ] install: [ [make &quot;install&quot;] ] depends: [ &quot;coq&quot; {&gt;= &quot;8.11.2&quot; &amp; &lt; &quot;8.12~&quot;} &quot;coq-metacoq-template&quot; {&gt;= &quot;1.0~beta1+8.11&quot;} ] tags: [ &quot;category:Miscellaneous/Coq Extensions&quot; &quot;date:2020-09-22&quot; &quot;logpath:Switch&quot; ] synopsis: &quot;A plugin to implement functionality similar to `switch` statement in C language.&quot; description: &quot;&quot;&quot;It allows easier dispatch on several constant values of a type with decidable equality. Given a type, boolean equality predicate, and list of choices, it will generate (using TemplateCoq) an inductive type with constructors, one for each of the choices, and a function mapping values to this type.&quot;&quot;&quot; url { src: &quot;https://github.com/vzaliva/coq-switch/archive/v1.0.3.tar.gz&quot; checksum: &quot;d36f28009151751e89883bd288a89981&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-switch.1.0.3 coq.dev</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is dev). The following dependencies couldn&#39;t be met: - coq-switch -&gt; coq-metacoq-template &gt;= 1.0~beta1+8.11 -&gt; ocaml &gt;= 4.07.1 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-switch.1.0.3</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>
pastprojects.html
advanceddigitalanimation/advanceddigitalanimation.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <title>CNM 190: Past Projects</title> <!-- Bootstrap Core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link href="css/modern-business.css" rel="stylesheet"> <!-- Custom Fonts --> <link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous"> <!-- 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]--> </head> <body> <!-- Navigation --> <nav class="navbar navbar-inverse navbar-fixed-top" role="navigation" style="border: hidden;"> <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="#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="http://cnm190.com/" style="background-image: linear-gradient(144deg, rgba(186,10,185,1) 0%, rgba(37,65,149,1) 100%); color: white;">CNM 190</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="http://cnm190.com/pastprojects">Past Projects</a> </li> <li> <a href="http://cnm190.com/calendar">Calendar</a> </li> <!-- <li> <a href="https://docs.google.com/forms/d/e/1FAIpQLSe8-jBAiAnC_oi8yvJb1ynrJeBLHnuJUMH5Pr9CUURuxgDt1g/viewform" style="background-color:skyblue; color:black;">Apply Now 🚀</a> </li> --> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Page Content --> <div class="container"> <!-- Page Heading/Breadcrumbs --> <div class="row"> <div class="col-lg-12"> <h1 class="page-header">Past Projects </h1> <ol class="breadcrumb"> <li><a href="http://cnm190.com/">Home</a> </li> <li class="active">Past Projects</li> </ol> </div> </div> <!-- /.row --> <!-- Project One --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe type="text/html" frameborder="0" width="560" height="315" src="http://www.youtube.com/embed/BJxri4451UU" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Night Market</h3> <h4>Fall 2018 - Spring 2019</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Two --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe type="text/html" frameborder="0" width="560" height="315" src="https://www.youtube.com/embed/vHEMd1ENU-Y" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Sculpted</h3> <h4>Fall 2018 - Spring 2019</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Three --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe type="text/html" frameborder="0" width="560" height="315" src="https://www.youtube.com/embed/0EiJ86TQ2_g?rel=0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Only Love</h3> <h4>Fall 2016 - Spring 2017</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Four --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe type="text/html" frameborder="0" width="560" height="315" src="https://www.youtube.com/embed/BLLZ2hOf1eI" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Stargazing</h3> <h4>Fall 2016 - Spring 2017</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Five --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe width="560" height="315" src="https://www.youtube.com/embed/DssS3vTlDao" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Bandits</h3> <h4>Fall 2014 - Spring 2015</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Six --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe width="560" height="315" src="https://www.youtube.com/embed/hlJaRdx-LIw" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Nightmare</h3> <h4>Fall 2014 - Spring 2015</h4> <p> <a class="btn btn-primary" href="portfolio-item.html">View Project on Github</a></p> <p><a class="btn btn-info" href="https://www.dropbox.com/sh/c6lasynjvx8s8eg/AABB3LyPZarrjFqWBG8V3gcia?dl=0">View Preproduction on Dropbox</a></p> </div> </div> <!-- /.row --> <hr> <!-- Project Seven --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe width="560" height="315" src="https://www.youtube.com/embed/ww-mW_G-oqQ" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Horsepower</h3> <h4>Fall 2012 - Spring 2013</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Eight --> <div class="row"> <div class="col-md-7"> <a href="portfolio-item.html"> <iframe width="560" height="315" src="https://www.youtube.com/embed/OLvQDCJyGcA" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Paper Magician</h3> <h4>Fall 2012 - Spring 2013</h4> <p></p> </div> </div> <!-- /.row --> <hr> <!-- Project Nine --> <div class="row"> <div class="col-md-7"> <a href="#"> <iframe src="https://player.vimeo.com/video/24332185" width="560" height="315" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Fruitful</h3> <h4>Fall 2010 - Spring 2011</h4> </div> </div> <!-- /.row --> <hr> <!-- Project Ten --> <div class="row"> <div class="col-md-7"> <a href="#"> <iframe width="560" height="315" src="https://www.youtube.com/embed/Ur67rZ0uuDQ" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Elle</h3> <h4>Fall 2010 - Spring 2011</h4> </div> </div> <!-- /.row --> <hr> <!-- Project Eleven --> <div class="row"> <div class="col-md-7"> <a href="#"> <iframe width="560" height="315" src="https://www.youtube.com/embed/kCHivuaQhQY" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Rumble in the Roses</h3> <h4>Fall 2008 - Spring 2009</h4> </div> </div> <!-- /.row --> <hr> <!-- Project Twelve --> <div class="row"> <div class="col-md-7"> <a href="#"> <iframe width="560" height="315" src="https://www.youtube.com/embed/0LyaiClh36M" frameborder="0" allowfullscreen></iframe> </a> </div> <div class="col-md-5"> <h3>Runaway</h3> <h4>Fall 2008 - Spring 2009</h4> </div> </div> <!-- /.row --> <hr> <!-- Footer --> <footer> <div class="row"> <div class="col-lg-12"> <p>Copyright &copy;CNM190 2020</p> </div> </div> </footer> </div> <!-- /.container --> <!-- jQuery --> <script src="js/jquery.js"></script> <!-- Bootstrap Core JavaScript --> <script src="js/bootstrap.min.js"></script> </body> </html>
index.html
ractivejs/ractive-adaptors-bacon
<!doctype html> <html lang='en-GB'> <head> <meta charset='utf-8'> <title>Ractive.js bacon adaptor plugin</title> <!-- CSS --> <link href='http://fonts.googleapis.com/css?family=Voltaire' rel='stylesheet' type='text/css'> <link rel='stylesheet' href='demo/main.css'> </head> <body> <!-- if the project is on GitHub, add a fork me button! --> <a class='forkme' href='https://github.com/ractivejs/ractive-adaptors-bacon'>Fork me on GitHub</a> <header> <h1>Ractive.js bacon adaptor plugin</h1> <p class='strap'> <span class='download'>download: <a href='https://raw.github.com/ractivejs/ractive-adaptors-bacon/master/ractive-adaptors-bacon.js'>ractive-adaptors-bacon.js</a></span> <span class='more-plugins'>more plugins at <a href='http://ractivejs.org/plugins'>ractivejs.org/plugins</a></span> </p> </header> <main> <p>This adaptor allows you to use <a href='http://baconjs.github.io/'>Bacon.js</a> observables within your Ractive templates.</p> <div id='demo' class='clearfix'></div> <pre id='demo-template-view' class='prettyprint lang-html'></pre> <pre id='demo-code-view' class='prettyprint lang-js'></pre> </main> <!-- add additional info such as your homepage here, if you want --> <footer> <p>Copyright &copy; 2014 Rich Harris. Licensed MIT</p> </footer> <!-- Demo template --> <script id='demo-template' type='text/ractive'> <button class='up'>up</button> <button class='down'>down</button> <p>Counter: {{counter}}</p> </script> <!-- Dependencies --> <script src='vendor/ractive/ractive-legacy.js'></script> <script src='vendor/jquery/dist/jquery.js'></script> <script src='vendor/bacon/dist/Bacon.js'></script> <script src='src/ractive-adaptors-bacon.js'></script> <!-- Demo code --> <script id='demo-code'> // Example adapted from http://baconjs.github.io/ var ractive, up, down, counter; ractive = new Ractive({ el: 'demo', template: '#demo-template', adapt: 'Bacon' }); up = $( '#demo .up' ).asEventStream( 'click' ); down = $( '#demo .down' ).asEventStream( 'click' ); counter = up.map( 1 ).merge( down.map( -1 ) ) .scan( 0, function ( x, y ) { return x + y; }); ractive.set( 'counter', counter ); </script> <!-- Insert code into the page --> <script src='demo/prettify.js'></script> <script src='demo/demo.js'></script> </body> </html>
clean/Linux-x86_64-4.09.1-2.0.6/extra-dev/8.10.0/lin-alg/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>lin-alg: 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 / lin-alg - 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> lin-alg <small> 8.9.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2020-08-03 21:31:15 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-03 21:31:15 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.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.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/lin-alg&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/LinAlg&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} &quot;coq-algebra&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} ] tags: [ &quot;keyword: linear algebra&quot; &quot;category: Mathematics/Algebra&quot; &quot;date: 19 spetember 2003&quot; ] authors: [ &quot;Jasper Stein &lt;jasper@cs.kun.nl&gt;&quot; ] bug-reports: &quot;https://github.com/coq-contribs/lin-alg/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/lin-alg.git&quot; synopsis: &quot;Linear Algebra&quot; description: &quot;&quot;&quot; A development of some preliminary linear algebra based on Chapter 1 of &quot;Linear Algebra&quot; by Friedberg, Insel and Spence&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/lin-alg/archive/v8.9.0.tar.gz&quot; checksum: &quot;md5=91ad67b59d2e256a95f4a9426a353e32&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-lin-alg.8.9.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-lin-alg -&gt; coq &lt; 8.10~ -&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-lin-alg.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"> 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>
web/css/style.css
JeffersonCN/poo-projeto-01
* { box-sizing: border-box; } .navbar { background-color: #13430B; } .navbar-inverse { border-color: #fff; } .navbar-inverse .navbar-brand { color: #fff; } .navbar-inverse .navbar-brand:hover { color: #C8E6C6; } .navbar-inverse .navbar-nav > li > a { color: #fff; } .navbar-inverse .navbar-nav > li > a:hover { color: #B9DEB3; } .navbar-brand { font-size: 24px !important; font-weight: 700; } .navbar-nav { font-size: 16px; text-transform: uppercase; color: #fff; } section, .banner-topo { min-height: 450px; margin: 0 auto 50px; padding-top: 40px; } .banner-topo { height: 600px; position: relative; } .bottom { position: absolute; width: 100%; bottom: 0; } .section-title, .section-subtitle { text-align: center; font-weight: 700; } .section-subtitle { margin-top: 0; font-weight: 700; } .header-title { font-size: 64px; } .bg-cinza { background: #555; } .fonte-branca { color: #fff; } .footer-infos { padding: 20px 0; } .footer-infos { font-size: 20px; background-color: #0A5706; } .footer-infos .title { font-size: 20px; font-weight: 700; } .links a:hover { text-decoration: none; color: #C8E6C6; } .endereco { font-size: 18px; } .social-link { color: #333; } .social-link:hover { color: #0A5706; } .footer-copyright { background-color: #022400; font-size: 16px; padding-top: 10px; } .parallax { background-attachment: fixed; background-position: top; background-repeat: no-repeat; background-size: cover; } .parallax .section-title, .parallax .section-subtitle { text-shadow: 0 0 10px rgba(0, 0, 0, 0.6); } .bg-header { background-image: url('../images/bg-header.jpg'); } .box-produtos { height: 360px; margin: 15px 0; position: relative; } .box-title { position: absolute; bottom: 0; left: 0; margin: 30px; color: #fff; font-weight: 700; text-shadow: 0 0 10px rgba(0, 0, 0, 0.6); } .box-1 { background-image: url('../images/bg-box1.jpg'); } .box-2 { background-image: url('../images/bg-box2.jpg'); } .box-3 { background-image: url('../images/bg-box3.jpg'); } .box-4 { background-image: url('../images/bg-box4.jpg'); } /*CONTATO*/ #contatos{ font-size: 25px; height: 600px; } #contatos, h2 p{ padding-left: 35px; } /*PRODUTOS E SERVIÇOS*/ .bg-prod-serv{ background-image: url('../images/prodser-banner.jpg'); } .bg-verde{ background-color: #0A5706; } .bg-cursos{ background-image: url('../images/bg-cursos.jpg'); } .btn-servicos { margin-top: 20px; } .bg-institucional { background-image: url('../images/bg-institucional.jpg'); } .texto-institucional { margin: 40px 0; font-size: 24px; text-shadow: 0 0 10px rgba(0, 0, 0, 0.6); } .media img { max-width: 150px; } .noticias { padding-top: 30px; } .noticia { margin-bottom: 30px; } .bg-contato { background-image: url('../images/bg-contato.jpg'); } .texto-contato { margin-top: 60px; font-size: 40px; font-weight: 700; line-height: 60px; text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6); } .btn-contato { margin-top: 60px; } .fa-leaf { color: #1CCD00; } .btn-vazado { display: inline-block; padding: 10px 20px; color: #fff; background-color: #246819; border: 1px solid #fff; border-radius: 5px; font-size: 20px; } .btn-vazado:hover { text-decoration: none; background-color: #fff; color: #246819; } .btn-inverso { color: #246819; background-color: #fff; border-color: #246819; } .btn-inverso:hover { color: #fff; background-color: #246819; } body a { -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; -o-transition: all .3s ease-in-out; -webkit-transition: all .3s ease-in-out; transition: all .3s ease-in-out } .bg-noticas { background-image: url('../images/bg-noticias.jpg'); } .titulo-noticia { font-size: 28px; } .lead-noticia,.lead-prodserv { font-size: 18px; } .lead-prodserv{ text-align: justify; } .no-shadow { text-shadow: none; }
styles/layout.css
Words-for-Music/words-for-music
header { border: 1px solid black; border-radius: 3px; padding: 0 0.5em; margin-top: 1vh; margin-bottom: 1vh; background-color: #fff; color: #333; } header h1 { text-align: center; } nav ul li { padding: 0 0.2em; } nav ul li:hover { background-color: #eee; } header, main, footer { width: 90vw; } #search_section, #mixtape { display: flex; flex-direction: column; justify-content: center; } #mixtape, #about { display: none; flex-direction: column; } footer ul { display: flex; justify-content: space-between; margin: 1em; } footer ul li { font-size: 0.8em; }
src/PG/Mcd/BackendBundle/Resources/public/ng/xenon-files/html/charts-gauges-linear.html
pacogarat/miscodigos
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="Xenon Boostrap Admin Panel" /> <meta name="author" content="" /> <title>Xenon - Linear Gauges</title> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Arimo:400,700,400italic"> <link rel="stylesheet" href="assets/css/fonts/linecons/css/linecons.css"> <link rel="stylesheet" href="assets/css/fonts/fontawesome/css/font-awesome.min.css"> <link rel="stylesheet" href="assets/css/bootstrap.css"> <link rel="stylesheet" href="assets/css/xenon-core.css"> <link rel="stylesheet" href="assets/css/xenon-forms.css"> <link rel="stylesheet" href="assets/css/xenon-components.css"> <link rel="stylesheet" href="assets/css/xenon-skins.css"> <link rel="stylesheet" href="assets/css/custom.css"> <script src="assets/js/jquery-1.11.1.min.js"></script> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[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 class="page-body"> <div class="settings-pane"> <a href="#" data-toggle="settings-pane" data-animate="true"> &times; </a> <div class="settings-pane-inner"> <div class="row"> <div class="col-md-4"> <div class="user-info"> <div class="user-image"> <a href="extra-profile.html"> <img src="assets/images/user-2.png" class="img-responsive img-circle" /> </a> </div> <div class="user-details"> <h3> <a href="extra-profile.html">John Smith</a> <!-- Available statuses: is-online, is-idle, is-busy and is-offline --> <span class="user-status is-online"></span> </h3> <p class="user-title">Web Developer</p> <div class="user-links"> <a href="extra-profile.html" class="btn btn-primary">Edit Profile</a> <a href="extra-profile.html" class="btn btn-success">Upgrade</a> </div> </div> </div> </div> <div class="col-md-8 link-blocks-env"> <div class="links-block left-sep"> <h4> <span>Notifications</span> </h4> <ul class="list-unstyled"> <li> <input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk1" /> <label for="sp-chk1">Messages</label> </li> <li> <input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk2" /> <label for="sp-chk2">Events</label> </li> <li> <input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk3" /> <label for="sp-chk3">Updates</label> </li> <li> <input type="checkbox" class="cbr cbr-primary" checked="checked" id="sp-chk4" /> <label for="sp-chk4">Server Uptime</label> </li> </ul> </div> <div class="links-block left-sep"> <h4> <a href="#"> <span>Help Desk</span> </a> </h4> <ul class="list-unstyled"> <li> <a href="#"> <i class="fa-angle-right"></i> Support Center </a> </li> <li> <a href="#"> <i class="fa-angle-right"></i> Submit a Ticket </a> </li> <li> <a href="#"> <i class="fa-angle-right"></i> Domains Protocol </a> </li> <li> <a href="#"> <i class="fa-angle-right"></i> Terms of Service </a> </li> </ul> </div> </div> </div> </div> </div> <div class="page-container"><!-- add class "sidebar-collapsed" to close sidebar by default, "chat-visible" to make chat appear always --> <!-- Add "fixed" class to make the sidebar fixed always to the browser viewport. --> <!-- Adding class "toggle-others" will keep only one menu item open at a time. --> <!-- Adding class "collapsed" collapse sidebar root elements and show only icons. --> <div class="sidebar-menu toggle-others fixed"> <div class="sidebar-menu-inner"> <header class="logo-env"> <!-- logo --> <div class="logo"> <a href="dashboard-1.html" class="logo-expanded"> <img src="assets/images/logo@2x.png" width="80" alt="" /> </a> <a href="dashboard-1.html" class="logo-collapsed"> <img src="assets/images/logo-collapsed@2x.png" width="40" alt="" /> </a> </div> <!-- This will toggle the mobile menu and will be visible only on mobile devices --> <div class="mobile-menu-toggle visible-xs"> <a href="#" data-toggle="user-info-menu"> <i class="fa-bell-o"></i> <span class="badge badge-success">7</span> </a> <a href="#" data-toggle="mobile-menu"> <i class="fa-bars"></i> </a> </div> <!-- This will open the popup with user profile settings, you can use for any purpose, just be creative --> <div class="settings-icon"> <a href="#" data-toggle="settings-pane" data-animate="true"> <i class="linecons-cog"></i> </a> </div> </header> <ul id="main-menu" class="main-menu"> <!-- add class "multiple-expanded" to allow multiple submenus to open --> <!-- class "auto-inherit-active-class" will automatically add "active" class for parent elements who are marked already with class "active" --> <li> <a href="dashboard-1.html"> <i class="linecons-cog"></i> <span class="title">Dashboard</span> </a> <ul> <li> <a href="dashboard-1.html"> <span class="title">Dashboard 1</span> </a> </li> <li> <a href="dashboard-2.html"> <span class="title">Dashboard 2</span> </a> </li> <li> <a href="dashboard-3.html"> <span class="title">Dashboard 3</span> </a> </li> <li> <a href="dashboard-4.html"> <span class="title">Dashboard 4</span> </a> </li> <li> <a href="skin-generator.html"> <span class="title">Skin Generator</span> </a> </li> </ul> </li> <li> <a href="layout-variants.html"> <i class="linecons-desktop"></i> <span class="title">Layouts</span> </a> <ul> <li> <a href="layout-variants.html"> <span class="title">Layout Variants &amp; API</span> </a> </li> <li> <a href="layout-collapsed-sidebar.html"> <span class="title">Collapsed Sidebar</span> </a> </li> <li> <a href="layout-static-sidebar.html"> <span class="title">Static Sidebar</span> </a> </li> <li> <a href="layout-horizontal-menu.html"> <span class="title">Horizontal Menu</span> </a> </li> <li> <a href="layout-horizontal-plus-sidebar.html"> <span class="title">Horizontal &amp; Sidebar Menu</span> </a> </li> <li> <a href="layout-horizontal-menu-click-to-open-subs.html"> <span class="title">Horizontal Open On Click</span> </a> </li> <li> <a href="layout-horizontal-menu-min.html"> <span class="title">Horizontal Menu Minimal</span> </a> </li> <li> <a href="layout-right-sidebar.html"> <span class="title">Right Sidebar</span> </a> </li> <li> <a href="layout-chat-open.html"> <span class="title">Chat Open</span> </a> </li> <li> <a href="layout-horizontal-sidebar-menu-collapsed-right.html"> <span class="title">Both Menus &amp; Collapsed</span> </a> </li> <li> <a href="layout-boxed.html"> <span class="title">Boxed Layout</span> </a> </li> <li> <a href="layout-boxed-horizontal-menu.html"> <span class="title">Boxed &amp; Horizontal Menu</span> </a> </li> </ul> </li> <li> <a href="ui-panels.html"> <i class="linecons-note"></i> <span class="title">UI Elements</span> </a> <ul> <li> <a href="ui-panels.html"> <span class="title">Panels</span> </a> </li> <li> <a href="ui-buttons.html"> <span class="title">Buttons</span> </a> </li> <li> <a href="ui-tabs-accordions.html"> <span class="title">Tabs &amp; Accordions</span> </a> </li> <li> <a href="ui-modals.html"> <span class="title">Modals</span> </a> </li> <li> <a href="ui-breadcrumbs.html"> <span class="title">Breadcrumbs</span> </a> </li> <li> <a href="ui-blockquotes.html"> <span class="title">Blockquotes</span> </a> </li> <li> <a href="ui-progressbars.html"> <span class="title">Progress Bars</span> </a> </li> <li> <a href="ui-navbars.html"> <span class="title">Navbars</span> </a> </li> <li> <a href="ui-alerts.html"> <span class="title">Alerts</span> </a> </li> <li> <a href="ui-pagination.html"> <span class="title">Pagination</span> </a> </li> <li> <a href="ui-typography.html"> <span class="title">Typography</span> </a> </li> <li> <a href="ui-other-elements.html"> <span class="title">Other Elements</span> </a> </li> </ul> </li> <li> <a href="ui-widgets.html"> <i class="linecons-star"></i> <span class="title">Widgets</span> </a> </li> <li> <a href="mailbox-main.html"> <i class="linecons-mail"></i> <span class="title">Mailbox</span> <span class="label label-success pull-right">5</span> </a> <ul> <li> <a href="mailbox-main.html"> <span class="title">Inbox</span> </a> </li> <li> <a href="mailbox-compose.html"> <span class="title">Compose Message</span> </a> </li> <li> <a href="mailbox-message.html"> <span class="title">View Message</span> </a> </li> </ul> </li> <li> <a href="tables-basic.html"> <i class="linecons-database"></i> <span class="title">Tables</span> </a> <ul> <li> <a href="tables-basic.html"> <span class="title">Basic Tables</span> </a> </li> <li> <a href="tables-responsive.html"> <span class="title">Responsive Table</span> </a> </li> <li> <a href="tables-datatables.html"> <span class="title">Data Tables</span> </a> </li> </ul> </li> <li> <a href="forms-native.html"> <i class="linecons-params"></i> <span class="title">Forms</span> </a> <ul> <li> <a href="forms-native.html"> <span class="title">Native Elements</span> </a> </li> <li> <a href="forms-advanced.html"> <span class="title">Advanced Plugins</span> </a> </li> <li> <a href="forms-wizard.html"> <span class="title">Form Wizard</span> </a> </li> <li> <a href="forms-validation.html"> <span class="title">Form Validation</span> </a> </li> <li> <a href="forms-input-masks.html"> <span class="title">Input Masks</span> </a> </li> <li> <a href="forms-file-upload.html"> <span class="title">File Upload</span> </a> </li> <li> <a href="forms-editors.html"> <span class="title">Editors</span> </a> </li> <li> <a href="forms-sliders.html"> <span class="title">Sliders</span> </a> </li> </ul> </li> <li> <a href="extra-gallery.html"> <i class="linecons-beaker"></i> <span class="title">Extra</span> <span class="label label-purple pull-right hidden-collapsed">New Items</span> </a> <ul> <li> <a href="extra-icons-fontawesome.html"> <span class="title">Icons</span> <span class="label label-warning pull-right">4</span> </a> <ul> <li> <a href="extra-icons-fontawesome.html"> <span class="title">Font Awesome</span> </a> </li> <li> <a href="extra-icons-linecons.html"> <span class="title">Linecons</span> </a> </li> <li> <a href="extra-icons-elusive.html"> <span class="title">Elusive</span> </a> </li> <li> <a href="extra-icons-meteocons.html"> <span class="title">Meteocons</span> </a> </li> </ul> </li> <li> <a href="extra-maps-google.html"> <span class="title">Maps</span> </a> <ul> <li> <a href="extra-maps-google.html"> <span class="title">Google Maps</span> </a> </li> <li> <a href="extra-maps-advanced.html"> <span class="title">Advanced Map</span> </a> </li> <li> <a href="extra-maps-vector.html"> <span class="title">Vector Map</span> </a> </li> </ul> </li> <li> <a href="extra-gallery.html"> <span class="title">Gallery</span> </a> </li> <li> <a href="extra-calendar.html"> <span class="title">Calendar</span> </a> </li> <li> <a href="extra-profile.html"> <span class="title">Profile</span> </a> </li> <li> <a href="extra-login.html"> <span class="title">Login</span> </a> </li> <li> <a href="extra-lockscreen.html"> <span class="title">Lockscreen</span> </a> </li> <li> <a href="extra-login-light.html"> <span class="title">Login Light</span> </a> </li> <li> <a href="extra-timeline.html"> <span class="title">Timeline</span> </a> </li> <li> <a href="extra-timeline-center.html"> <span class="title">Timeline Centerd</span> </a> </li> <li> <a href="extra-notes.html"> <span class="title">Notes</span> </a> </li> <li> <a href="extra-image-crop.html"> <span class="title">Image Crop</span> </a> </li> <li> <a href="extra-portlets.html"> <span class="title">Portlets</span> </a> </li> <li> <a href="blank-sidebar.html"> <span class="title">Blank Page</span> </a> </li> <li> <a href="extra-search.html"> <span class="title">Search</span> </a> </li> <li> <a href="extra-invoice.html"> <span class="title">Invoice</span> </a> </li> <li> <a href="extra-not-found.html"> <span class="title">404 Page</span> </a> </li> <li> <a href="extra-tocify.html"> <span class="title">Tocify</span> </a> </li> <li> <a href="extra-loader.html"> <span class="title">Loading Progress</span> </a> </li> <li> <a href="extra-page-loading-ol.html"> <span class="title">Page Loading Overlay</span> </a> </li> <li> <a href="extra-notifications.html"> <span class="title">Notifications</span> </a> </li> <li> <a href="extra-nestable-lists.html"> <span class="title">Nestable Lists</span> </a> </li> <li> <a href="extra-scrollable.html"> <span class="title">Scrollable</span> </a> </li> </ul> </li> <li class="opened active"> <a href="charts-main.html"> <i class="linecons-globe"></i> <span class="title">Charts</span> </a> <ul> <li> <a href="charts-main.html"> <span class="title">Chart Variants</span> </a> </li> <li> <a href="charts-range.html"> <span class="title">Range Selector</span> </a> </li> <li> <a href="charts-sparklines.html"> <span class="title">Sparklines</span> </a> </li> <li> <a href="charts-map.html"> <span class="title">Map Charts</span> </a> </li> <li> <a href="charts-gauges.html"> <span class="title">Circular Gauges</span> </a> </li> <li> <a href="charts-bar-gauges.html"> <span class="title">Bar Gauges</span> </a> </li> </ul> </li> <li> <a href="#"> <i class="linecons-cloud"></i> <span class="title">Menu Levels</span> </a> <ul> <li> <a href="#"> <i class="entypo-flow-line"></i> <span class="title">Menu Level 1.1</span> </a> <ul> <li> <a href="#"> <i class="entypo-flow-parallel"></i> <span class="title">Menu Level 2.1</span> </a> </li> <li> <a href="#"> <i class="entypo-flow-parallel"></i> <span class="title">Menu Level 2.2</span> </a> <ul> <li> <a href="#"> <i class="entypo-flow-cascade"></i> <span class="title">Menu Level 3.1</span> </a> </li> <li> <a href="#"> <i class="entypo-flow-cascade"></i> <span class="title">Menu Level 3.2</span> </a> <ul> <li> <a href="#"> <i class="entypo-flow-branch"></i> <span class="title">Menu Level 4.1</span> </a> </li> </ul> </li> </ul> </li> <li> <a href="#"> <i class="entypo-flow-parallel"></i> <span class="title">Menu Level 2.3</span> </a> </li> </ul> </li> <li> <a href="#"> <i class="entypo-flow-line"></i> <span class="title">Menu Level 1.2</span> </a> </li> <li> <a href="#"> <i class="entypo-flow-line"></i> <span class="title">Menu Level 1.3</span> </a> </li> </ul> </li> </ul> </div> </div> <div class="main-content"> <nav class="navbar user-info-navbar" role="navigation"><!-- User Info, Notifications and Menu Bar --> <!-- Left links for user info navbar --> <ul class="user-info-menu left-links list-inline list-unstyled"> <li class="hidden-sm hidden-xs"> <a href="#" data-toggle="sidebar"> <i class="fa-bars"></i> </a> </li> <li class="dropdown hover-line"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa-envelope-o"></i> <span class="badge badge-green">15</span> </a> <ul class="dropdown-menu messages"> <li> <ul class="dropdown-menu-list list-unstyled ps-scrollbar"> <li class="active"><!-- "active" class means message is unread --> <a href="#"> <span class="line"> <strong>Luc Chartier</strong> <span class="light small">- yesterday</span> </span> <span class="line desc small"> This ain’t our first item, it is the best of the rest. </span> </a> </li> <li class="active"> <a href="#"> <span class="line"> <strong>Salma Nyberg</strong> <span class="light small">- 2 days ago</span> </span> <span class="line desc small"> Oh he decisively impression attachment friendship so if everything. </span> </a> </li> <li> <a href="#"> <span class="line"> Hayden Cartwright <span class="light small">- a week ago</span> </span> <span class="line desc small"> Whose her enjoy chief new young. Felicity if ye required likewise so doubtful. </span> </a> </li> <li> <a href="#"> <span class="line"> Sandra Eberhardt <span class="light small">- 16 days ago</span> </span> <span class="line desc small"> On so attention necessary at by provision otherwise existence direction. </span> </a> </li> <!-- Repeated --> <li class="active"><!-- "active" class means message is unread --> <a href="#"> <span class="line"> <strong>Luc Chartier</strong> <span class="light small">- yesterday</span> </span> <span class="line desc small"> This ain’t our first item, it is the best of the rest. </span> </a> </li> <li class="active"> <a href="#"> <span class="line"> <strong>Salma Nyberg</strong> <span class="light small">- 2 days ago</span> </span> <span class="line desc small"> Oh he decisively impression attachment friendship so if everything. </span> </a> </li> <li> <a href="#"> <span class="line"> Hayden Cartwright <span class="light small">- a week ago</span> </span> <span class="line desc small"> Whose her enjoy chief new young. Felicity if ye required likewise so doubtful. </span> </a> </li> <li> <a href="#"> <span class="line"> Sandra Eberhardt <span class="light small">- 16 days ago</span> </span> <span class="line desc small"> On so attention necessary at by provision otherwise existence direction. </span> </a> </li> </ul> </li> <li class="external"> <a href="blank-sidebar.html"> <span>All Messages</span> <i class="fa-link-ext"></i> </a> </li> </ul> </li> <li class="dropdown hover-line"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa-bell-o"></i> <span class="badge badge-purple">7</span> </a> <ul class="dropdown-menu notifications"> <li class="top"> <p class="small"> <a href="#" class="pull-right">Mark all Read</a> You have <strong>3</strong> new notifications. </p> </li> <li> <ul class="dropdown-menu-list list-unstyled ps-scrollbar"> <li class="active notification-success"> <a href="#"> <i class="fa-user"></i> <span class="line"> <strong>New user registered</strong> </span> <span class="line small time"> 30 seconds ago </span> </a> </li> <li class="active notification-secondary"> <a href="#"> <i class="fa-lock"></i> <span class="line"> <strong>Privacy settings have been changed</strong> </span> <span class="line small time"> 3 hours ago </span> </a> </li> <li class="notification-primary"> <a href="#"> <i class="fa-thumbs-up"></i> <span class="line"> <strong>Someone special liked this</strong> </span> <span class="line small time"> 2 minutes ago </span> </a> </li> <li class="notification-danger"> <a href="#"> <i class="fa-calendar"></i> <span class="line"> John cancelled the event </span> <span class="line small time"> 9 hours ago </span> </a> </li> <li class="notification-info"> <a href="#"> <i class="fa-database"></i> <span class="line"> The server is status is stable </span> <span class="line small time"> yesterday at 10:30am </span> </a> </li> <li class="notification-warning"> <a href="#"> <i class="fa-envelope-o"></i> <span class="line"> New comments waiting approval </span> <span class="line small time"> last week </span> </a> </li> </ul> </li> <li class="external"> <a href="#"> <span>View all notifications</span> <i class="fa-link-ext"></i> </a> </li> </ul> </li> </ul> <!-- Right links for user info navbar --> <ul class="user-info-menu right-links list-inline list-unstyled"> <li class="search-form"><!-- You can add "always-visible" to show make the search input visible --> <form name="userinfo_search_form" method="get" action="extra-search.html"> <input type="text" name="s" class="form-control search-field" placeholder="Type to search..." /> <button type="submit" class="btn btn-link"> <i class="linecons-search"></i> </button> </form> </li> <li class="dropdown user-profile"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <img src="assets/images/user-4.png" alt="user-image" class="img-circle img-inline userpic-32" width="28" /> <span> Arlind Nushi <i class="fa-angle-down"></i> </span> </a> <ul class="dropdown-menu user-profile-menu list-unstyled"> <li> <a href="#edit-profile"> <i class="fa-edit"></i> New Post </a> </li> <li> <a href="#settings"> <i class="fa-wrench"></i> Settings </a> </li> <li> <a href="#profile"> <i class="fa-user"></i> Profile </a> </li> <li> <a href="#help"> <i class="fa-info"></i> Help </a> </li> <li class="last"> <a href="extra-lockscreen.html"> <i class="fa-lock"></i> Logout </a> </li> </ul> </li> <li> <a href="#" data-toggle="chat"> <i class="fa-comments-o"></i> </a> </li> </ul> </nav> <div class="page-title"> <div class="title-env"> <h1 class="title">Linear Gauges</h1> <p class="description">Data visualization widgets for your stats</p> </div> <div class="breadcrumb-env"> <ol class="breadcrumb bc-1" > <li> <a href="dashboard-1.html"><i class="fa-home"></i>Home</a> </li> <li> <a href="charts-main.html">Charts</a> </li> <li class="active"> <strong>Linear Gauges</strong> </li> </ol> </div> </div> <div class="dx-warning hidden"> <div> <h2>How to Include Charts Library in Xenon Theme</h2> <p>The reason why you don't see charts in this page is because of license restrictions from DevExpress company. <a href="http://js.devexpress.com/DevExtremeWeb/?folder=EULAs" target="_blank">Click here</a> to read license agreement.</p> <p>We are not permitted to include the DevExtreme Web Charts JavaScript library in the default download file of Xenon theme, however you can include DevExpress Charts library manually and takes just few minutes:</p> <ol> <li>Download <strong>DevExtreme Web</strong> JavaScript library by clicking <a href="https://go.devexpress.com/DevExpressDownload_DevExtremeWebTrial.aspx" class="text-bold">here</a>. If the link doesn't work, then <a href="http://js.devexpress.com/Buy/" target="_parent">click this one</a> and choose DevExtreme Web package to download.</li> <li>Extract the downloaded archive. There you will find <strong>Lib/</strong> folder. <strong>Copy</strong> the folders inside.</li> <li><strong>Paste</strong> copied files to <strong>assets/js/devexpress-web-14.1/</strong></li> <li>You are all set!</li> </ol> </div> </div> <script type="text/javascript"> jQuery(document).ready(function($) { if( ! $.isFunction($.fn.dxChart)) $(".dx-warning").removeClass('hidden'); }); </script> <div class="row"> <div class="col-sm-12"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Linear Gauges</h3> <div class="panel-options"> <a href="#" data-toggle="panel"> <span class="collapse-icon">&ndash;</span> <span class="expand-icon">+</span> </a> <a href="#" data-toggle="remove"> &times; </a> </div> </div> <div class="panel-body"> <div class="row"> <div class="col-sm-6"> <script type="text/javascript"> jQuery(document).ready(function($) { if( ! $.isFunction($.fn.dxChart)) return; var gauge = $('#gauge-linear-1').dxLinearGauge({ scale: { startValue: 0, endValue: 5, majorTick: { tickInterval: 2.5 }, minorTick: { visible: true, tickInterval: 0.625 } }, title: { text: 'TV Show Rating', font: { size: 28 } }, value: 4.3 }).dxLinearGauge('instance'); $("#gauge-linear-1-randomize").on('click', function(ev) { ev.preventDefault(); gauge.value(between(0, 5)); }); }); function between(randNumMin, randNumMax) { var randInt = Math.floor((Math.random() * ((randNumMax + 1) - randNumMin)) + randNumMin); return randInt; } </script> <h4 class="no-top-margin">Scale Custom Tick Interval</h4> <div id="gauge-linear-1" style="height: 400px;"></div> <div class="text-center"> <a href="#" id="gauge-linear-1-randomize" class="btn btn-turquoise btn-small">Randomize</a> </div> </div> <div class="col-sm-6"> <script type="text/javascript"> jQuery(document).ready(function($) { if( ! $.isFunction($.fn.dxChart)) return; var gauge = $('#gauge-linear-2').dxLinearGauge({ geometry: { orientation: 'vertical' }, scale: { startValue: 0, endValue: 50, majorTick: { customTickValues: [0, 10, 25, 50], showCalculatedTicks: false } }, title: { text: 'Fuel Volume (in Liters)', font: { size: 28 } }, value: 35 }).dxLinearGauge('instance'); $("#gauge-linear-2-randomize").on('click', function(ev) { ev.preventDefault(); gauge.value(between(0, 50)); }); }); </script> <h4 class="no-top-margin">Scale Custom Tick Values</h4> <div id="gauge-linear-2" style="height: 400px;"></div> <div class="text-center"> <a href="#" id="gauge-linear-2-randomize" class="btn btn-turquoise btn-small">Randomize</a> </div> </div> </div> </div> <hr /> <div class="panel-body"> <div class="row"> <div class="col-sm-12"> <script type="text/javascript"> jQuery(document).ready(function($) { if( ! $.isFunction($.fn.dxChart)) return; var gauge = $('#gauge-linear-3-1').dxLinearGauge({ scale: { startValue: 0, endValue: 30, majorTick: { color: '#536878', tickInterval: 5 }, label: { indentFromTick: -3 } }, rangeContainer: { offset: 10, ranges: [ { startValue: 0, endValue: 5, color: '#4fcdfc' }, { startValue: 5, endValue: 20, color: '#fcd036' }, { startValue: 20, endValue: 30, color: '#68b828' } ] }, valueIndicator: { offset: 20 }, subvalueIndicator: { offset: -15 }, title: { text: 'Issues Closed (with Min and Max Expected)', font: { size: 28 } }, value: 17, subvalues: [5, 25] }).dxLinearGauge('instance'); $("#gauge-linear-3-randomize").on('click', function(ev) { ev.preventDefault(); gauge.value(between(10, 50)); }); }); </script> <h4 class="no-top-margin">Custom Layout</h4> <div id="gauge-linear-3-1" style="height: 120px;"></div> <div class="text-center"> <a href="#" id="gauge-linear-3-randomize" class="btn btn-turquoise btn-small">Randomize</a> </div> </div> </div> </div> </div> </div> </div> <!-- Main Footer --> <!-- Choose between footer styles: "footer-type-1" or "footer-type-2" --> <!-- Add class "sticky" to always stick the footer to the end of page (if page contents is small) --> <!-- Or class "fixed" to always fix the footer to the end of page --> <footer class="main-footer sticky footer-type-1"> <div class="footer-inner"> <!-- Add your copyright text here --> <div class="footer-text"> &copy; 2014 <strong>Xenon</strong> theme by <a href="http://laborator.co" target="_blank">Laborator</a> - <a href="http://themeforest.net/item/xenon-bootstrap-admin-theme/9059661?ref=Laborator" target="_blank">Purchase for only <strong>23$</strong></a> </div> <!-- Go to Top Link, just add rel="go-top" to any link to add this functionality --> <div class="go-up"> <a href="#" rel="go-top"> <i class="fa-angle-up"></i> </a> </div> </div> </footer> </div> <div id="chat" class="fixed"><!-- start: Chat Section --> <div class="chat-inner"> <h2 class="chat-header"> <a href="#" class="chat-close" data-toggle="chat"> <i class="fa-plus-circle rotate-45deg"></i> </a> Chat <span class="badge badge-success is-hidden">0</span> </h2> <script type="text/javascript"> // Here is just a sample how to open chat conversation box jQuery(document).ready(function($) { var $chat_conversation = $(".chat-conversation"); $(".chat-group a").on('click', function(ev) { ev.preventDefault(); $chat_conversation.toggleClass('is-open'); $(".chat-conversation textarea").trigger('autosize.resize').focus(); }); $(".conversation-close").on('click', function(ev) { ev.preventDefault(); $chat_conversation.removeClass('is-open'); }); }); </script> <div class="chat-group"> <strong>Favorites</strong> <a href="#"><span class="user-status is-online"></span> <em>Catherine J. Watkins</em></a> <a href="#"><span class="user-status is-online"></span> <em>Nicholas R. Walker</em></a> <a href="#"><span class="user-status is-busy"></span> <em>Susan J. Best</em></a> <a href="#"><span class="user-status is-idle"></span> <em>Fernando G. Olson</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Brandon S. Young</em></a> </div> <div class="chat-group"> <strong>Work</strong> <a href="#"><span class="user-status is-busy"></span> <em>Rodrigo E. Lozano</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Robert J. Garcia</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Daniel A. Pena</em></a> </div> <div class="chat-group"> <strong>Other</strong> <a href="#"><span class="user-status is-online"></span> <em>Dennis E. Johnson</em></a> <a href="#"><span class="user-status is-online"></span> <em>Stuart A. Shire</em></a> <a href="#"><span class="user-status is-online"></span> <em>Janet I. Matas</em></a> <a href="#"><span class="user-status is-online"></span> <em>Mindy A. Smith</em></a> <a href="#"><span class="user-status is-busy"></span> <em>Herman S. Foltz</em></a> <a href="#"><span class="user-status is-busy"></span> <em>Gregory E. Robie</em></a> <a href="#"><span class="user-status is-busy"></span> <em>Nellie T. Foreman</em></a> <a href="#"><span class="user-status is-busy"></span> <em>William R. Miller</em></a> <a href="#"><span class="user-status is-idle"></span> <em>Vivian J. Hall</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Melinda A. Anderson</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Gary M. Mooneyham</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Robert C. Medina</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Dylan C. Bernal</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Marc P. Sanborn</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Kenneth M. Rochester</em></a> <a href="#"><span class="user-status is-offline"></span> <em>Rachael D. Carpenter</em></a> </div> </div> <!-- conversation template --> <div class="chat-conversation"> <div class="conversation-header"> <a href="#" class="conversation-close"> &times; </a> <span class="user-status is-online"></span> <span class="display-name">Arlind Nushi</span> <small>Online</small> </div> <ul class="conversation-body"> <li> <span class="user">Arlind Nushi</span> <span class="time">09:00</span> <p>Are you here?</p> </li> <li class="odd"> <span class="user">Brandon S. Young</span> <span class="time">09:25</span> <p>This message is pre-queued.</p> </li> <li> <span class="user">Brandon S. Young</span> <span class="time">09:26</span> <p>Whohoo!</p> </li> <li class="odd"> <span class="user">Arlind Nushi</span> <span class="time">09:27</span> <p>Do you like it?</p> </li> </ul> <div class="chat-textarea"> <textarea class="form-control autogrow" placeholder="Type your message"></textarea> </div> </div> <!-- end: Chat Section --> </div> </div> <!-- Bottom Scripts --> <script src="assets/js/bootstrap.min.js"></script> <script src="assets/js/TweenMax.min.js"></script> <script src="assets/js/resizeable.js"></script> <script src="assets/js/joinable.js"></script> <script src="assets/js/xenon-api.js"></script> <script src="assets/js/xenon-toggles.js"></script> <!-- Imported scripts on this page --> <script src="assets/js/devexpress-web-14.1/js/globalize.min.js"></script> <script src="assets/js/devexpress-web-14.1/js/dx.chartjs.js"></script> <!-- JavaScripts initializations and stuff --> <script src="assets/js/xenon-custom.js"></script> </body> </html>
sgce/static/css/h5bp/media.queries.css
ramonsaraiva/sgce
/* ==|== media queries ====================================================== PLACEHOLDER Media Queries for Responsive Design. These override the primary ('mobile first') styles Modify as content requires. ========================================================================== */ @media only screen and (min-width: 480px) { /* Style adjustments for viewports 480px and over go here */ } @media only screen and (min-width: 768px) { /* Style adjustments for viewports 768px and over go here */ }
maintenance/msal-angularjs/tests/sample/App/Views/TodoList.html
AzureAD/microsoft-authentication-library-for-js
<div ng-init="populate()"> <p class="error">{{error}}</p> <p>{{loadingMessage}}</p> <div class="panel"> <div class="input-group"> <input ng-model="newTodoCaption" class="form-control" /> <span class="input-group-btn"> <button id="addButton" ng-click="add();" class="btn btn-default">Add</button> </span> </div> <table class="table table-striped"> <tbody> <tr data-ng-repeat="item in todoList"> <td> <p data-ng-hide="item.edit">{{item.title}}</p> <input data-ng-show="item.edit" type="text" data-ng-model="editInProgressTodo.Description" class="form-control" /> </td> </tr> </tbody> </table> </div> </div>
whitecollar_wechat/modules/verify/student-first.html
Sheldon-Yin/mmfenqiWeb
<div class="verify-select-dialog-container" ng-if="selecting"> <div class="verify-select-dialog-background" ng-click="hideSelect()"> </div> <div class="verify-select-dialog"> <div class="container" style="height: 10%"> <div class="row" style="height: 100%"> <div class="verify-select-dialog-title"> {{selectTitle}} </div> </div> </div> <div class="container" style="overflow: scroll;height: 90%;"> <div class="row"> <div class="col-xs-12 verify-select-dialog-item" ng-repeat="x in selectItems" ng-click="selectCallBack(x[itemValue],x[itemName])"> {{x[itemName]}} </div> </div> </div> </div> </div> <div class="verify-select-dialog-container" ng-show="showing" ng-click="hideImg()"> <div class="verify-select-dialog-background"> </div> <div class="verify-select-dialog"> <div class="container" style="height: 10%"> <div class="row" style="height: 100%"> <img id="imgPreShow" style="width: 100%"> </div> </div> </div> </div> <div class="container"> <div class="row"> <img src="modules/verify/img/new/1.jpg" alt="第一步" style="width: 100%"> </div> </div> <div class="container-fluid"> <div class="row selector"> <div class="col-xs-6" ng-class="{0: 'selector-hightlight', 1: 'selector-normal'}[currentSelectorIndex]" ng-click="onSelectorToggle(0)"> 学信网 </div> <div class="col-xs-6" ng-class="{1: 'selector-hightlight', 0: 'selector-normal'}[currentSelectorIndex]" ng-click="onSelectorToggle(1)"> 学生证 </div> <div class="col-xs-offset-4 col-xs-4 selector-img"> <img src="modules/verify/img/student/selector.png" ng-click="onSelectorToggle((currentSelectorIndex+1)%2)"/> </div> </div> <div class="row selector-tips"> <span>请选择<span class="selector-tips-color">"学信网"</span>或<span class="selector-tips-color">"学生证"</span>其中一项即可进行基础认证</span> </div> <div class="row" ng-show="currentSelectorIndex == 0"> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-12"> <img src="modules/verify/img/student/dormitory.png" class="cell-img"/> <span class="cell-title">寝室信息</span> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-3">寝室号</div> <div class="col-xs-9"> <input type="text" placeholder="例如:东区3号楼308" ng-model="$parent.dormitory"> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-12"> <img src="modules/verify/img/student/student.png" class="cell-img-1"/> <span class="cell-title">学信网</span> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-3">账号</div> <div class="col-xs-9"> <input type="text" placeholder="请输入你的学信网账号" ng-model="$parent.xuexinwangAccount"> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-3">密码</div> <div class="col-xs-9"> <input type="password" placeholder="请输入你的学信网密码" ng-model="$parent.xuexinwangPassword"> </div> </div> </div> <div class="col-xs-12 cell" style="height: 100px;line-height: 100px" ng-if="imgCode"> <div class="row"> <div class="col-xs-3">验证码</div> <div class="col-xs-4"> <input type="text" placeholder="请输入你的验证码" ng-model="$parent.$parent.imgVerifyCode"> </div> <div class="col-xs-5"> <img ng-src="data:image/png;charset=utf-8;base64,{{imgCode}}" style="width: 100%;"> </div> </div> </div> <div class="col-xs-12 text-right" style="margin-top: 1rem"> <span class="app-blue-text" ng-click="goToHowToRegister()">如何注册?</span> </div> <div class="col-xs-12 text-center"> <input type="button" class="submit-btn" value="确定,下一步" ng-click="commitFirstStep()"> </div> </div> <div class="row" ng-show="currentSelectorIndex == 1"> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-12"> <img src="modules/verify/img/student/hat.png" class="cell-img"/> <span class="cell-title">学校信息</span> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row" ng-click="selectSchool()"> <div class="col-xs-3">学校校区</div> <div class="col-xs-8 cell-detail">{{selectSchoolName}}</div> <div class="col-xs-1"> <img src="modules/verify/img/student/arrow.png" class="cell-arrow"/> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row" ng-click="selectJoinYear()"> <div class="col-xs-3">入学年份</div> <div class="col-xs-8 cell-detail">{{selectJoinYearValue}}</div> <div class="col-xs-1"> <img src="modules/verify/img/student/arrow.png" class="cell-arrow"/> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row" ng-click="selectLeaveYear()"> <div class="col-xs-3">毕业年份</div> <div class="col-xs-8 cell-detail">{{selectLeaveYearValue}}</div> <div class="col-xs-1"> <img src="modules/verify/img/student/arrow.png" class="cell-arrow"/> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row" ng-click="selectEducation()"> <div class="col-xs-3">学历类型</div> <div class="col-xs-8 cell-detail">{{selectEducationName}}</div> <div class="col-xs-1"> <img src="modules/verify/img/student/arrow.png" class="cell-arrow"/> </div> </div> </div> <div class="col-xs-12 cell" style="margin-top: 15px;"> <div class="row"> <div class="col-xs-12"> <img src="modules/verify/img/student/dormitory.png" class="cell-img"/> <span class="cell-title">寝室信息</span> </div> </div> </div> <div class="col-xs-12 cell"> <div class="row"> <div class="col-xs-3">寝室号</div> <div class="col-xs-9"> <input type="text" placeholder="例如:东区3号楼308" ng-model="$parent.dormitory"> </div> </div> </div> <div class="col-xs-12 cell" style="margin-top: 15px;"> <div class="row"> <div class="col-xs-12"> <img src="modules/verify/img/student/sutdentCard.png" class="cell-img"/> <span class="cell-title">上传学生证</span> </div> </div> </div> <div class="col-xs-12 cell" style="height: 160px;"> <div class="col-xs-4"> <div class="row"> <div class="col-xs-12" ng-click="previewImgOne()"> <img src="modules/verify/img/student/card0.png" height="75" style="margin-top: 15px;max-width: 100%" id="imgOne"> </div> <div class="col-xs-12"> <input type="button" class="upload-btn" value="点击上传" ng-click="uploadImgOne()"> </div> </div> </div> <div class="col-xs-4"> <div class="row"> <div class="col-xs-12" ng-click="previewImgTwo()"> <img src="modules/verify/img/student/card1.png" height="75" style="margin-top: 15px;max-width: 100%" id="imgTwo"> </div> <div class="col-xs-12"> <input type="button" class="upload-btn" value="点击上传" ng-click="uploadImgTwo()"> </div> </div> </div> <div class="col-xs-4"> <div class="row"> <div class="col-xs-12" ng-click="previewImgThree()"> <img src="modules/verify/img/student/card2.png" height="75" style="margin-top: 15px;max-width: 100%" id="imgThree"> </div> <div class="col-xs-12"> <input type="button" class="upload-btn" value="点击上传" ng-click="uploadImgThree()"> </div> </div> </div> </div> <div class="col-xs-12 text-center"> <input type="button" class="submit-btn" value="确定,下一步" ng-click="commitFirstStep()"> </div> </div> </div>
unit2_projects/week7_technical_blog.html
harnoss/harnoss.github.io
<!DOCTYPE html> <html> <head> <title>MY BLOG TEMPLATE</title> <link rel="stylesheet" type="text/css" href="week1_technical_blogpost.css"> </head> <body> <div id="header"> <img id="image" src="https://pbs.twimg.com/profile_images/1778152954/J-Harnoss_1.PNG"/> <div id="name"> <p><strong>Justin Harnoss</strong><br/> Born in Berlin <br/> slept when the wall came down <br/> Traveler ever since.</p> </div> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>June 12, 2014</strong></p> <p><strong>SQL-Injection: What is it? Why is it a problem? <br/> What can newb programmers do to combat this issue?</strong></p> <p>SQL-Injection refers to the process of "injecting" SQL queries into data input fields on <br/> webapps. If one does not protect against that, it is like handing over your database to anyone <br /> and allowing him/her to execute any SQL commands including dropping tables from your database. Obviously, this is a huge risk. The most common ways to prevent SQL-injection attacks <br /> include encypting sensitive data, prepared statements, stored procedures, and escaping. Prepared statements: "Parameterized queries force developers to define all the SQL code, then pass in each parameter to the query, which allows the database to distinguish between code and data, regardless of what input is supplied." (from zdnet.com) <br/> Stored procedures: "a stored procedure is defined and stored in the database itself, and then called from the application rather than something that a user is allowed to enter."" (from zdnet.com) <br/> Escaping: "Each DBMS supports one or more character escaping schemes specific to certain kinds of queries. If you then escape all user supplied input using the proper escaping scheme for the database you are using, the DBMS will not confuse that input with SQL code written by the developer, thus avoiding any possible SQL injection vulnerabilities. (from zdnet.com) </p> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>May 29, 2014</strong></p> <p><strong>OOP vs functional programming</strong></p> <p>There are already a lot of great explanations in the web on what is the difference between OOP and functional programming. <br/>Thus, I would like to try on an explanation that is targeted to musicians (who have an interest in programming):</p> <p>Sometimes, coding is like composing music. If you compose music, you may create one tone after another and each of them flows into the next one. <br/>This is what you would call "functional" programming, or per the textbook definition <br/>"treats computation as the evaluation of mathematical functions and avoids state and mutable data."<br/> <br/>"Object oriented" programming, in contrast, creates higher-level rythms/themes that can take different shapes depending on when you play them. <br/>It works more like jazz, where you have different state of moods and depending on that the music changes. <br/>Or it works like the way a dj creates his tracks, drawing from different artists, sounds, and tracks and mixing these [objects] into new sounds. <br/> OOP - let's dance!</p> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>May 24, 2014</strong></p> <p><strong>Instance methods and class methods</strong></p> <p>There are two types of methods when it comes to classes: Instance methods and class methods: <ol> <li>Instance methods</li> <li>Class methods ("singleton method")</li> </ol> <p><strong>Instance methods</strong> apply to all objects of a class and can be called by all of those. For example:</p> <p>class Ticket<br/> def initialize(venue, date)<br/> @venue = venue<br/> @date = date<br/> end<br/> <br/> def price=(price)<br/> @price = price<br/> end<br/> <br/> def price<br/> @price<br/> end<br/> <br/> end<br/> <br/> new_ticket = Ticket.new("Berlin stage", "12/12/2014")<br/> new_ticket.price = 20.00<br/> puts new_ticket.price<br/> => 20.0</p> <p><strong>Class methods</strong> apply only to the Class itself and cannot be called by any objects of a class. At the same time, they can be called even though there are no objects to the class. Thus, class methods work even without any instances and/or objects. A good example is creating a method to convert currencies:</p> <p>class Currency_converter<br/> def Currency_converter.usd_to_eur(amount_in_usd)<br/> amount_in_eur = amount_in_usd * 1.3<br/> end <p>puts Currency_converter.usd_to_eur(100)<br/> => 130.0</p> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>May 17, 2014</strong></p> <p><strong>#map, #cycle, and #group_by - how they work</strong></p> <h5>#Map</h5> <p> According to the book "The well-grounded Rubyist", the map method is one of the most powerful and important enumerable or collection operations available in Ruby. There are 3 important things to know about map:</p> <ol> <li>It always returns an array</li> <li>The size of the array is always the same size as the original enumerable</li> <li>Its elements consist of the result of calling the code block on each element in the original object</li> </ol> <p> Mapping an examplayr [1,2,3] array through a block that multiplies each item by 10 results in the new array [10,20,30].</p> <p>>> array = [1,2,3]<br/> => [1, 2, 3]<br/> >> array.map {|n| n * 10 }<br/> => [10, 20, 30]</p> <p>Thus, #map is similar to #each except for one crucial point: <br/> #each returns its receiver, but map returns a new array.</p> <h5>#Cycle</h5> <p>#cycle gives you a way to loop ("cycle") through an array several times (as specified by an <br/>integer). You can use it to decide how many each-like runs you want to perform consecutively.</p> <p> Here's a great example from the Book "The well-grounded Rubyist" on playing cards:</p> <p> class PlayingCard<br/> SUITS = %w{ clubs diamonds hearts spades }<br/> RANKS = %w{ 2 3 4 5 6 7 8 9 10 J Q K A }<br/> class Deck<br/> attr_reader :cards<br/> def initialize(n=1)<br/> @cards = []<br/> SUITS.cycle(n) do |s|<br/> RANKS.cycle(1) do |r|<br/> @cards << "#{r} of #{s}"<br/> end<br/> end<br/> end<br/> end<br/> end<br/> <h5>#Group_by </h5> <p> If you want to count how often each word turns up in a text, Group_by will be what you need.<br/>Let's start with an example:</p> <p>>> text = %w{ a bb cc dd eee fff gggg }<br/> > ["a", "bb", "cc", "dd", "eee", "fff", "gggg"]<br/> >> text.group_by {|word| count.size }<br/> => {1=>["a"], 2=>["bb", "cc", "dd"], 3=>["eee", "fff"], 4=>[gggg]}</p> <p>The block {|word| word.size } returns an integer for each word. The hash<br/> returned by the entire group_by operation is keyed to the various sizes (1, 2, 3, 4), and<br/> the values are arrays containing all the strings from the original array that are of the<br/> size represented by the respective keys.</p> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>May 09, 2014</strong></p> <p>Why is JavaScript so popular in web development?</p> <p>JavaScript is popular for many different reasons and as such, being discussed extensively in related blogs. There are already detailed evaluations and descriptions of JS all over the web, so let me try to boil it down to the core. There are three things that you should remember about why JS rocks:</p> <p>First, <strong> it is <em> widely </em> applicable </strong> as every browser supports it and as you can make all parts of an interactive web application work (both front- and back end, with node);</p> <p>Second, <strong> it is <em> easily </em> applicable </strong> as there is a huge open source community to seek out help from and there are tons of projects libraries, frameworks hosted on Github that you can leverage;</p> <p>Third, <strong> it is fun </strong> as you see the results immediately and visually and as such, you stay inspired and motivated! </p> <strong>What else do you need to know to get started?</strong> </p> </div> <div id="line"></div> <div id="BlogPost1"> <p><strong>May 03, 2014</strong></p> <p>Everyone who is new to CSS will eventually run into this existential question: "What are the differences between relative, absolute, and fixed positioning?" The basic structure of a website can be best compared to a chain of pearls that is going from left to right, one element after another. Based on this,<br /> <strong>Relative positioning</strong> is like taking one of the pearls out of it's default position in the chain and moving it up or down, left or right. The positioning commands are always <em>relative to its default position</em>. Two things are important to know: The pearl is still part of the chain (the flow) and the other pearls still think that the pearl is in its default position.<br /> <strong>Absolute positioning</strong> is like taking one of the pearls and removing it from the chain. Then, one specifies the position top-right-bottom-left <em>relative to its parent element</em> (not relative to its default position).<br /> <strong>Fixed positioning</strong> is exactely like absolute position with one difference: The positioning is always <em>relative to the browser window</em> (not its parent element) and is fixed there, so it stays even if one scrolls the page up or down.</p> <p>A great way to practice positioning is to build a simple 2x2 matrix in html and CSS. Look here is an example to hone your skills:</p> <a href="http://jsfiddle.net/harnoss/hyZ9T/">2x2 in html/CSS practice challenge</a> </div> <div id="line"></div> <p><strong>April 26, 2014</strong></p> <div id="BlogPost1_content"> <p>Today, I wanna share three websites with you that for me stand out in terms of user experience and design: <a href="epipheo.com">Epipheo</a>, <a href="pocket.com">Pocket</a>, and <a href="bluebottlecoffee.com">BlueBottle</a></p> <p>There is one particular aspect that all of these three websites have in common: An almost perfect fit between design and product/service positioning - or put differently, the way the site feels and the way these companies want to be felt by their customers. </p> <p> Pocket feels simple, convenient, to-the-point (and that's what they do for you). BlueBottle does not just sell coffee, but rather a way of live/a way of enjoying and experiencing your favorite drink. This is how their website feels as well - a tribute to coffee. It takes some time to realize that it also is a shop. Epipheo finally, stands out as a site that screams at you "We are creative!" (and that's why you want their services). It is a website you have not seen before and you will remember. This is exactely what they promise to their clients: To make their ideas stick. </p> <p> Getting into the details of the user experience of these three websites, there are two cases I would like to point to where designers have done an especially good job: One, the shop navigation at BlueBottle; two, the "contact for consultation" area at Epipheo. </p> <p> BlueBottle faced the question: "How do people shop for coffee?" Other shops answer this question with "Easy, they look for coffee brands or where the beans come from!" so that's the way they structure their shop. BlueBottle, however, takes a different route: They structure the shop navivation around the question of "How do you brew your coffee?" and then offer different kinds of brewing methods (from french press to espresso) to choose from. Clearly, a way to help customers find what they look for (as a coffee fan I feel that they have hit the nail on the head with this menu) as well as communicate what BlueBottle stands for: Not just another coffee shop, but one that knows coffee better than anyone. </p> <p> Epipheo on the other hand, uses its website to generate leads for prospective clients. So how do you make users getting in touch with you/giving you their contact without coming across as too agressively selling your service? Answer: Make it look like accepting the invitation to a fun birthday party instead of a boring business meeting. Genius.</p> </div> <div id="footer"></div> </body> </html>
devops/templates/assets_config.html
jinjin123/devops2.0
{% extends "index.html" %} {% block meta %} <style type="text/css"> *{margin:0;padding:0;list-style-type:none;} a,img{border:0;cursor: hand} body{font:12px/180% Arial, Helvetica, sans-serif, "新宋体";background:#ddd; overflow: hidden;} /* leftsead */ #leftsead{width:131px;height:143px;position:fixed;top:600px;right:0px;z-index: 100;} *html #leftsead{margin-top:258px;position:absolute;} #leftsead li{width:131px;height:53px;} #leftsead li img{float:right;border-bottom-left-radius:5px;border-top-left-radius:5px;} #leftsead li a{height:49px;float:right;display:block;min-width:47px;max-width:131px;} #leftsead li a .shows{display:block;} #leftsead li a .hides{margin-right:-166px;} #leftsead li a.youhui .hides{display:none;position:absolute;right:215px;top:-111px;width:200px;} .glyphicon {top:-1px;} .col-lg-12{ width: 95%; margin-left: 25px; } </style> {% endblock %} <header class="cd-main-header"> {% block ext %} {# loadding pic #} <div id="loadPic" style="text-align: center;padding: 10px;color: white;font-weight:bold ;border-radius:8px;background: rgba(0,0,0,0.5);z-index: 1004;width: 200px;height:40px;margin:auto;position:fixed;top:0px;bottom:0px;right:0px;left:0px;display: none;"> <i class="fa fa-refresh fa-spin"></i> <span style="letter-spacing: 4px;">请稍后...</span> </div> {# loadding end #} {# show error #} <div id="confirmCommandDiv" style="z-index: 1005;display:none;position: fixed; top: 0px; bottom: 0px ;left: 0px; right: 0px; "> <div style="width:auto;height: 200px;position: relative;left: 0px;right: 0px;top: 40%;bottom: 60%;margin: auto;;" id=""> <div class="modal " style="overflow:hidden;overflow-y:hidden;position:fixed;left:0px;right:0px;bottom:0px;top:0px;margin:auto;display:block;"> <div class="modal-dialog"> <div class="modal-content "> <div class="modal-header" style="cursor: move;"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"></button> <h4 class=" glyphicon glyphicon-alert " style="color: red;">错误</h4> </div> <div class="modal-body "> <p id="showWarnContent" style="text-align:center;color:red; font-weight:bold;"> 请确认您的内容?</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal" id="forceExecuteCommand">强制 </button> <button type="button" class="btn btn-default" data-dismiss="modal" id="closeConfirmCommandButton"> 放弃 </button> </div> </div> </div> </div> </div> </div> {# show error end #} {# upload plugins #} <div id="uploadScriptProgressDiv" class="progress progress-striped" style="font-weight: bold;font-size: 500%;z-index: 1004;width:40%;height:5%;margin:auto;position:fixed;top:0%;bottom:0%;right:0px;left:120%;display: block;"> <div id="showScriptProgressText" class="progress-bar progress-bar-success active"> </div> </div> {% endblock %} </header> <!-- .cd-main-header --> <div id="leftsead"> <ul> {# 其实可以将通知,邮件都放到这里来,后面在考虑吧 #} {# <li>#} {# <a id="top_btn">#} {# <img src="../static/img/foot03/ll06.png" width="47" height="49" class="hides"/>#} {# <img src="../static/img/foot03/l06.png" width="47" height="49" class="shows" />#} {# </a>#} {# </li>#} <li> <a href=""> <img src="../static/img/foot03/ll03.png" width="47" height="49" class="hides"/> <img src="../static/img/foot03/l03.png" width="47" height="49" class="shows" /> </a> </li> {# 增加微信聊天求助websocket#} {# <li>#} {# <a href="">#} {# <img src="../static/img/foot03/ll02.png" width="166" height="49" class="hides"/>#} {# <img src="../static/img/foot03/l04.png" width="47" height="49" class="shows" />#} {# </a>#} {# </li>#} <li> <a class="youhui"> <img src="../static/img/foot03/l02.png" width="47" height="49" class="shows" /> <img src="../static/img/foot03/qrcode.jpg" width="196" height="205" class="hides" usemap="#taklhtml"/> </a> </li> <li> <a class="youhui"> <img src="../static/img/foot03/l02.png" width="47" height="49" class="shows" /> <img src="../static/img/foot03/qrcode.jpg" width="196" height="205" class="hides" usemap="#taklhtml"/> </a> </li> </ul> </div><!--leftsead end--> {% block content %} <main class="cd-main"> <section class="cd-section PushCode visible"> <div id="index-content" class="cd-content" style="padding: 1em 19px;margin:0 0 0 -90px"> <div id="page-wrapper"> <div class="row"> <div class="col-lg-12"> <h1 class="page-header"><i class="fa fa-cogs "></i> 基础资产配置</h1> </div> <!-- /.col-lg-12 --> </div> <div class="row"> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-shopping-cart "></i> 服务类型 </div> <!-- /.panel-heading --> <div class="panel-body"> <div> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myServiceModal"><i class="glyphicon glyphicon-plus"></i></button> </div> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th><i class="fa fa-asterisk"></i></th> <th class="right">服务名称</th> <th class="right">操作</th> </tr> </thead> <tbody> <tbody> {% for ds in baseAssets.service %} <tr> <td>{{ds.id}}</td> <td>{{ds.service_name}}</td> <td class="right"> <button type="button" class="btn btn-default" onclick="modfAssetsData(this,'service',{{ds.id}})"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button> <button type="button" class="btn btn-default" onclick="delAssetsData(this,'service',{{ds.id}})"><abbr title="删除"><i class="glyphicon glyphicon-trash"></i></abbr></button> </td> </tr> {% endfor %} </tbody> </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-suitcase "></i> 业务线 </div> <!-- /.panel-heading --> <div class="panel-body"> <div> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myGroupModal"><i class="glyphicon glyphicon-plus"></i></button> </div> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th><i class="fa fa-asterisk"></i></th> <th>业务名称</th> <th class="right">操作</th> </tr> </thead> <tbody> {% for ds in baseAssets.business %} <tr> <td>{{ds.id}}</td> <td>{{ds.business_name}}</td> <td> <button type="button" class="btn btn-default" onclick="modfAssetsData(this,'business',{{ds.id}})"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button> <button type="button" class="btn btn-default" onclick="delAssetsData(this,'business',{{ds.id}})"><abbr title="删除"><i class="glyphicon glyphicon-trash"></i></abbr></button> </td> </tr> {% endfor %} </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-bank"></i> 机房信息 </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="table-responsive"> <div> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myIdcModal"><i class="glyphicon glyphicon-plus"></i></button> </div> <table class="table table-striped"> <thead> <tr> <th><i class="fa fa-asterisk"></i></th> <th>机房名称</th> <th hidden="hidden">机房地址</th> <th hidden="hidden">机房电话</th> <th hidden="hidden">客户经理</th> <th hidden="hidden">经理电话</th> <th hidden="hidden">机柜信息</th> <th hidden="hidden">IP范围</th> <th hidden="hidden">接入带宽</th> <th class="right">操作</th> </tr> </thead> <tbody> {% for ds in baseAssets.idc %} <tr> <td>{{ds.id}}</td> <td>{{ds.name}}</td> <td hidden="hidden">{{ds.address}}</td> <td hidden="hidden">{{ds.tel}}</td> <td hidden="hidden">{{ds.contact}}</td> <td hidden="hidden">{{ds.contact_phone}}</td> <td hidden="hidden">{{ds.jigui}}</td> <td hidden="hidden">{{ds.ip_range}}</td> <td hidden="hidden">{{ds.bandwidth}}</td> <td> <!--<button type="button" class="btn btn-default" onclick="modfAssetsData(this,'idc',{{ds.id}})"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button>--> <button type="button" class="btn btn-default" onclick="get_update_record(this,{{ ds.id }});"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button> <button type="button" class="btn btn-default" onclick="delAssetsData(this,'idc',{{ds.id}})"><abbr title="删除"><i class="glyphicon glyphicon-trash"></i></abbr></button> </td> </tr> {% endfor %} </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> </div> <div class="row"> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-heading"> <i class="fa fa-flash"></i> 出口线路 </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="table-responsive"> <div> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myLineModal"><i class="glyphicon glyphicon-plus"></i></button> </div> <table class="table table-striped"> <thead> <tr> <th><i class="fa fa-asterisk"></i></th> <th>线路类型</th> <th class="right">操作</th> </tr> </thead> <tbody> {% for ds in baseAssets.line %} <tr> <td>{{ds.id}}</td> <td>{{ds.line_name}}</td> <td> <button type="button" class="btn btn-default" onclick="modfAssetsData(this,'line',{{ds.id}})"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button> <button type="button" class="btn btn-default" onclick="delAssetsData(this,'line',{{ds.id}})"><abbr title="删除"><i class="glyphicon glyphicon-trash"></i></abbr></button> </td> </tr> {% endfor %} </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-heading"> <i class="glyphicon glyphicon-hdd "></i> Raid类型 </div> <!-- /.panel-heading --> <div class="panel-body"> <div class="table-responsive"> <div> <button type="button" class="btn btn-default" data-toggle="modal" data-target="#myRaidModal"><i class="glyphicon glyphicon-plus"></i></button> </div> <table class="table table-striped"> <thead> <tr> <th><i class="fa fa-asterisk"></i></th> <th>Raid类型</th> <th class="right">操作</th> </tr> </thead> <tbody> {% for ds in baseAssets.raid %} <tr> <td>{{ds.id}}</td> <td>{{ds.raid_name}}</td> <td> <button type="button" class="btn btn-default" onclick="modfAssetsData(this,'raid',{{ds.id}})"><abbr title="编辑"><i class="glyphicon glyphicon-edit"></i></abbr></button> <button type="button" class="btn btn-default" onclick="delAssetsData(this,'raid',{{ds.id}})"><abbr title="删除"><i class="glyphicon glyphicon-trash"></i></abbr></button> </td> </tr> {% endfor %} </tbody> </table> </div> <!-- /.table-responsive --> </div> <!-- /.panel-body --> </div> <!-- /.panel --> </div> <!-- /.col-lg-6 --> </div> </div> </div> </section> </main> <div id="cd-loading-bar" data-scale="1" class="index" style=""></div> <div class="modal fade" id="myServiceModal" tabindex="-1" role="dialog" aria-labelledby="myServiceModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myServiceModalLabel"> 添加服务类型 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="service_assets"> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>服务名称</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="service_name" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addAssetsData(this,'service')"> 添加 </button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div> <div class="modal fade" id="myGroupModal" tabindex="-1" role="dialog" aria-labelledby="myGroupModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myGroupModalLabel"> 添加业务线 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="business_assets"> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>业务线名</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="business_name" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addAssetsData(this,'business')"> 添加 </button> </div> </div> </div> </div> <div class="modal fade" id="myIdcModal" tabindex="-1" role="dialog" aria-labelledby="myIdcModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myIdcModalLabel"> 机房信息 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="idc_assets"> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>机房名称</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="name" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>机房地址</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="address" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>机房电话</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="tel" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>销售经理</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="contact" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>销售电话</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="contact_phone" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>机柜信息</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="jigui" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>IP地址范围</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="ip_range" /> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>机房带宽</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="bandwidth" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addIdcData(this)"> 添加 </button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div> <div class="modal fade" id="myLineModal" tabindex="-1" role="dialog" aria-labelledby="myLineModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myLineModalLabel"> 添加出口线路 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="line_assets"> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>出口线路</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="line_name" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addAssetsData(this,'line')"> 添加 </button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div> <div class="modal fade" id="myRaidModal" tabindex="-1" role="dialog" aria-labelledby="myRaidModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myRaidModalLabel"> 添加Raid类型 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="raid_assets"> <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>Raid类型</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="raid_name" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addAssetsData(this,'raid')"> 添加 </button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div> <div class="modal fade" id="myStatusModal" tabindex="-1" role="dialog" aria-labelledby="myStatusModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"> &times; </button> <h4 class="modal-title" id="myStatusModalLabel"> 添加资产状态类型 </h4> </div> <div class="modal-body"> <form class="form-horizontal" role="form" id="status_assets">{% csrf_token %} <div class="form-group"> <label class="col-sm-3 control-label no-padding-right" for="form-field-4"><strong>资产状态</strong></label> <div class="col-sm-6"> <input class="form-control" type="text" name="status_name" /> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">关闭 </button> <button type="button" class="btn btn-primary" onclick="addAssetsData(this,'status')"> 添加 </button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal --> </div> <!--更新记录对话框--> <div class="modal fade" id="update_one_record_modal" role="dialog" aria-describedby="update_one_record_modal"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <button class="close" type="button" data-dismiss="modal" aria-label="Close">&times;</button> <h4 class="modal-title">更新机房信息</h4> </div> <div class="modal-body"> <form id="update_one_record_form" role="form" data-remote="true" class="main form-horizontal"> <fieldset> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-user"></i> ID</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_id_input" placeholder="编号" name="id"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-university"></i> 名字</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_name_input" placeholder="机房名称" name="name"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-map-signs"></i> 地址</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_address_input" placeholder="机房地址" name="address"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-phone"></i> 电话</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_tel_input" placeholder="机房电话" name="tel"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-briefcase"></i> 销售</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_contact_input" placeholder="客户经理" name="contact"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-mobile"></i> 手机</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_contact_phone_input" placeholder="经理电话" name="contact_phone"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-server"></i> 机柜</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_jigui_input" placeholder="机柜信息" name="jigui"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-wifi"></i> IP</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_ip_range_input" placeholder="IP范围" name="ip_range"> </div> </div> <div class="form-group"> <label class="col-sm-2 control-label"><i class="fa fa-globe"></i> 带宽</label> <div class="col-sm-6"> <input class="form-control" type="text" id="update_bandwidth_input" placeholder="接入带宽" name="bandwidth"> </div> </div> </fieldset> </form> </div> <div class="modal-footer"> <button class="btn btn-default" type="button" data-dismiss="modal">关闭</button> <!-- <a class="btn btn-primary" id="submit_update_one_record_modal" href="#">更新</a> --> <button type="button" class="btn btn-primary" id="update_record" onclick="">更新</button> <!-- <button type="button" class="btn btn-primary" onclick="get_update_record(this)">更新</button> --> </div> </div> </div> </div> <div class="popBox"> <div class="ttBox"> <a class="clsBtn"></a> <span class="tt">输入</span> </div> <div class="txtBox"> <p>请输入新名称:<input class="inputBox"></p> </div> <div class="btnArea"> <div class="btnGroup"><a class="sgBtn ok">确定</a></div> </div> </div> {% endblock %} {% block footer %} <script src="/static/js/assets_config.js"></script> <script src="/static/js/auto-line-number.js"></script> <script src="/static/js/headimg.js"></script> <!-- <script src="/static/js/jquery-migrate-1.0.0.js"></script> {# this is 1.8 feature support toggle ,1.9 is already deprecated#} --> <script src="/static/js/jquery.menu-aim.js"></script> <script src="/static/js/rightpg.js"></script> <!-- Resource $ --> <script src="/static/js/sidebar-menu.js"></script> <!-- Resource $ --> <script src="/static/js/velocity.min.js"></script> <script> $.sidebarMenu($('.sidebar-menu')) </script> {% endblock %}
VizOne/combined.html
meiqimichelle/d3-minihack
<!DOCTYPE html> <meta charset="utf-8"> <head> <script src="http://d3js.org/d3.v3.min.js"></script> <script src="http://d3js.org/queue.v1.min.js"></script> <script src="http://labratrevenge.com/d3-tip/javascripts/d3.tip.v0.6.3.js"></script> <link rel="stylesheet" type="text/css" href="combined.css"> <script> /* return a style attribute as a number (instead of string like '100px') */ function styleAttrAsNumber(d3_element, style_name) { style_str = d3_element.style(style_name); return Number(style_str.slice(0,-2)); } /* Michelle sent in this color pallette information... Colors for the pie chart: Mint green: #69d6c5 Purple: #906884 Khaki: #aeab97 Orange: #fc615e Blue: #00a0d9 <-- not on original mockup, but I think we need 5 categories, if I remember right Tan: #d7d2bb <-- for the surrounding circle/edge of pie chart, if we can do that. ie, if there's an easy way to say, add a stroke on just the outside edge of the pie. Colors in the bar chat: Blue: #00a0d9 Light blue: #8dc2e7 Dark gray: #605e5e (text) Light gray: #929497 */ pie_chart_colors = new Array(5); pie_chart_colors[0] = '#906884'; pie_chart_colors[1] = '#aeab97'; pie_chart_colors[2] = '#00a0d9'; pie_chart_colors[3] = '#fc615e'; pie_chart_colors[4] = '#69d6c5'; bar_chart_colors = new Array(4); bar_chart_colors[0] = '#00a0d9'; bar_chart_colors[1] = '#8dc2e7'; bar_chart_colors[2] = '#605e5e'; bar_chart_colors[3] = '#929497'; // This makes sure we won't run off the end if we end up with more categories // (Though a color will get reused!) function get_pie_chart_color(i) { return pie_chart_colors[i % pie_chart_colors.length]; } function get_bar_chart_color(i) { return bar_chart_colors[i % bar_chart_colors.length]; } // nice pie chart example: https://gist.github.com/enjalot/1203641 var gOrig = null; var gData = null; queue() .defer(d3.csv, "https://docs.google.com/spreadsheet/pub?key=0AjPWVMj9wWa6dGw3b1c3ZHRSMW92UTJlNXRLTXZ0RUE&single=true&gid=0&output=csv") .await(ready); // load and display the data function ready(error, fedroyaltydata) { if (error) return console.log("there was an error loading the data: " + error); gOrig = fedroyaltydata; // for debugging console.log("======== data =========") /** format like this: data = [{"label":"one", "value":20}, {"label":"two", "value":50}, {"label":"three", "value":30}]; **/ pie_data = []; revenue_data = [] for (row_index in fedroyaltydata) { row = fedroyaltydata[row_index]; year = row["Year"] pie_data[year] = []; for (column_name in row) { field = row[column_name]; field = field.substring(1); // remove leading $ field = +field; // cast to a number if (column_name == "Grand Total") { revenue_data.push({year:year, revenue:field}); } if (column_name != "Year" && column_name != "Grand Total") { pie_data[year].push({label:column_name, value:field}); } } } // for now let's just work with a single year data = pie_data[2003]; console.log("revenue", revenue_data) console.log("pie data for 2003", data) gData = data; // for debugging // Ideally these would both be nice pure functions, // But right now they share tons of global variables! var pie_svg = d3.select("#viz-one").append("svg").attr("class", "pie") /* basic frame */ var bar_char_margin = {top: 0, right: 20, bottom: 30, left: 40}; var bar_svg = d3.select("#viz-one").append("svg").attr("class", "bar") var inner_bars = bar_svg .append("g").attr("class", "inner_bars") .attr("transform", "translate(" + bar_char_margin.left + "," + bar_char_margin.top + ")"); setup_pie_chart(".pie", pie_data[2003]); render_bar_chart(bar_svg, inner_bars, bar_char_margin); function render_bar_chart(container_svg, svg, margin) { console.log("======== bar chart =========") var width = styleAttrAsNumber(container_svg, "width") - margin.left - margin.right; var height = styleAttrAsNumber(container_svg, "height") - margin.top - margin.bottom; /* bar chart parameters */ var formatPercent = d3.format(".0%"); var x = d3.scale.ordinal() .rangeRoundBands([0, width], .1); var y = d3.scale.linear() .range([height, 0]); var xAxis = d3.svg.axis() .scale(x) .orient("bottom"); var yAxis = d3.svg.axis() .scale(y) .orient("left") .tickFormat(formatPercent); var tip = d3.tip() .attr('class', 'd3-tip') .offset([-10, 0]) .html(function(d) { return "<strong>Revenue:</strong> <span style='color:red'>" + d.revenue + "</span>"; }) svg.call(tip); x.domain(revenue_data.map(function(d) { return d.year; })); y.domain([0, d3.max(revenue_data, function(d) { return d.revenue; })]); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + height + ")") .call(xAxis); svg.append("g") .attr("class", "y axis") /* .call(yAxis) .append("text") */ .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", ".71em") .style("text-anchor", "end") .text("Revenue"); svg.selectAll(".bar") .data(revenue_data) .enter().append("rect") .attr("class", "bar") .attr("x", function(d) { return x(d.year); }) .attr("width", x.rangeBand()) .attr("y", function(d) { return y(d.revenue); }) .attr("height", function(d) { return height - y(d.revenue); }) /* Just testing, will put palette in here.... */ .attr("fill", function(d,i) { return get_bar_chart_color(i); }) .on('mouseover', tip.show) .on('mouseout', tip.hide) .on('click', clickedOnABar) } var color = d3.scale.category20c(); //builtin range of colors function get_pie_attrs(svg) { var pie_width = styleAttrAsNumber(svg, "width"); var pie_height = styleAttrAsNumber(svg, "height"); var r = Math.min(pie_height, pie_width) / 3; return {width:pie_width, height:pie_height, radius:r} } function setup_pie_chart(svg_selector, local_pie_data) { console.log("======== setup pie chart: once =========") svg = d3.select(svg_selector); attrs = get_pie_attrs(svg) pie_width = attrs.width; pie_height = attrs.height; r = attrs.radius; var center = {x: pie_width / 2, y: pie_height / 2 } var vis = svg .append("svg:g") //make a group to hold our pie chart .attr("transform", "translate(" + center.x + "," + center.y + ")") //move the center of the pie chart from 0, 0 to radius, radius render_pie_chart(svg_selector, local_pie_data); } function render_pie_chart(svg_selector, local_pie_data) { /* pie chart parameters */ svg = d3.select(svg_selector); attrs = get_pie_attrs(svg) pie_width = attrs.width; pie_height = attrs.height; r = attrs.radius; vis = svg.select('g') .data([local_pie_data]) //associate our data with the document console.log("======== render pie chart data=========") console.log("create <path> elements for us using arc data") var arc = d3.svg.arc() //this will create <path> elements for us using arc data .outerRadius(r); var fill = function(d, i) { return get_pie_chart_color(i); } console.log("create arc data for us given a list of values") var pie = d3.layout.pie() //this will create arc data for us given a list of values .value(function(d) { return d.value; }); //we must tell it out to access the value of each element in our data array var arcs = vis.selectAll("path") //this selects all <g> elements with class slice (there aren't any yet) .data(pie) //associate the generated pie data (an array of arcs, each having startAngle, endAngle and value properties) .attr("fill", fill ) //set the color for each slice to be chosen from the color function defined above .attr("d", arc); //this creates the actual SVG path using the associated data (pie) with the arc drawing function arcs.enter().append("svg:path") .attr("fill", fill ) //set the color for each slice to be chosen from the color function defined above .attr("d", arc); //this creates the actual SVG path using the associated data (pie) with the arc drawing function arcs.exit().remove(); console.log("add a label to each slice") var offset = 0 var transform = function(d) { //set the label's origin to the center of the arc //we have to make sure to set these before calling arc.centroid var angle = d.endAngle - d.startAngle; console.log(d.data.label, angle, d); if (angle > 0.3 ) d.innerRadius = r * 0.6; else { if (angle < 0.5) offset -= 20; else offset = 0; d.innerRadius = r * 1.4 + offset; } console.log(d.innerRadius) return "translate(" + arc.centroid(d) + ")"; //this gives us a pair of coordinates like [50, 50] } var text_label = function(d, i) { return local_pie_data[i].label; } var labels = vis.selectAll("text") //this selects all <g> elements with class slice (there aren't any yet) .data(pie) //associate the generated pie data (an array of arcs, each having startAngle, endAngle and value properties) .attr("transform", transform) .text(text_label); //get the label from our original data array labels.enter().append("svg:text") //add a label to each slice .attr("transform", transform) .attr("text-anchor", "middle") //center the text on it's origin .text(text_label); //get the label from our original data array labels.exit().remove(); } function clickedOnABar(d) { render_pie_chart(".pie", pie_data[d.year]); } } </script> </head> <body> <div id="viz-one"></div> </body> </html>
main_web/templates/base.html
waterwoodwind/influxDB_web
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- 上述3个meta标签*必须*放在最前面,任何其他内容都*必须*跟随其后! --> <meta name="description" content="基于QAR数据的辅助排故系统"> <meta name="author" content="北京飞机维修工程有限公司-重庆分公司,基于QAR数据的辅助排故系统"> <title>基于QAR辅助排故系统</title> <link rel="stylesheet" href="/static/css/bootstrap.min.css" /> <link rel="stylesheet" href="/static/css/bootstrap-responsive.min.css" /> <link rel="stylesheet" href="/static/js/datetimepicker/bootstrap-datetimepicker.css" /> <link rel="stylesheet" href="/static/daterangepicker/daterangepicker-bs3.css" /> <link rel="stylesheet" href="/static/daterangepicker/daterangepicker-1.3.7.css" /> <link rel="stylesheet" href="/static/css/matrix-style.css" /> <link rel="stylesheet" href="/static/css/matrix-media.css" /> <link href="/static/font-awesome/css/font-awesome.css" rel="stylesheet" /> <link rel="stylesheet" href="/static/css/bootstrap-table.css" /> <link rel="stylesheet" href="/static/select2/css/select2.css" /> <script src="/static/js/jquery.min.js"></script> <script src="/static/js/bootstrap.min.js"></script> <script src="/static/js/matrix.js"></script> <script src="/static/select2/js/select2.min.js"></script> <script type="text/javascript" src="/static/js/bootstrap-table.js" ></script> <script src="/static/js/bootstrap-table-zh-CN.min.js"></script> </head> <body> <!--Header-part logo--> <div id="header"> <h1></h1> </div> <!--close-Header-part--> <!--侧边菜单--> <div id="sidebar"><a href="#" class="visible-phone"><i class="icon icon-home"></i> 首页</a> <ul> <li><a href="/home/"><i class="icon icon-home"></i> <span>首页</span></a> </li> <li> <a href="/all_childtable_index_list/"><i class="icon icon-plane"></i> <span>航班列表</span></a> </li> <li> <a href="/runup_list/"><i class="icon icon-plane"></i> <span>试车品质监控</span></a> </li> <li> <a href="/storing_stencil/"><i class="icon icon-dashboard"></i> <span>自建模版</span></a> </li> <li> <a href="/stencil_list/"><i class="icon icon-dashboard"></i> <span>模板设置</span></a> </li> <li> <a href="/tendency_total/"><i class="icon icon-inbox"></i> <span>全机队趋势统计</span></a> </li> <li> <a href="/tendency_single/"><i class="icon icon-inbox"></i> <span>单机趋势统计</span></a> </li> <li> <a href="/eFlow_total/"><i class="icon icon-inbox"></i> <span>eFlow</span></a> </li> <li> <a href="/guide/" target="_blank"><i class="icon icon-inbox"></i> <span>使用说明</span></a> </li> </ul> </div> <!--sidebar-menu--> {% block maincontents %} <p>这里放页面内容</p> {% endblock %} <div class="row-fluid"> <div id="footer" class="span12"> Copyright &copy; 2015-2016 AMECO CKG</div> </div> </body> </html>
deps/boost/doc/html/boost/property_tree/ini_parser/write_ini_idp106134056.html
laborautonomo/poedit
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Function template write_ini</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="../../../property_tree/reference.html#header.boost.property_tree.ini_parser_hpp" title="Header &lt;boost/property_tree/ini_parser.hpp&gt;"> <link rel="prev" href="read_ini_idp104890648.html" title="Function template read_ini"> <link rel="next" href="write_ini_idp106138632.html" title="Function template write_ini"> </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="read_ini_idp104890648.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../property_tree/reference.html#header.boost.property_tree.ini_parser_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="write_ini_idp106138632.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.property_tree.ini_parser.write_ini_idp106134056"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function template write_ini</span></h2> <p>boost::property_tree::ini_parser::write_ini</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="../../../property_tree/reference.html#header.boost.property_tree.ini_parser_hpp" title="Header &lt;boost/property_tree/ini_parser.hpp&gt;">boost/property_tree/ini_parser.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Ptree<span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">write_ini</span><span class="special">(</span><span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_ostream</span><span class="special">&lt;</span> <span class="keyword">typename</span> <span class="identifier">Ptree</span><span class="special">::</span><span class="identifier">key_type</span><span class="special">::</span><span class="identifier">value_type</span> <span class="special">&gt;</span> <span class="special">&amp;</span> stream<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">Ptree</span> <span class="special">&amp;</span> pt<span class="special">,</span> <span class="keyword">int</span> flags <span class="special">=</span> <span class="number">0</span><span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="idp169965272"></a><h2>Description</h2> <p>Translates the property tree to INI and writes it the given output stream. </p> <div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody> <tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0" class="variablelist compact"> <colgroup> <col align="left" valign="top"> <col> </colgroup> <tbody> <tr> <td><p><span class="term"><code class="computeroutput">flags</code></span></p></td> <td><p>The flags to use when writing the INI file. No flags are currently supported. </p></td> </tr> <tr> <td><p><span class="term"><code class="computeroutput">pt</code></span></p></td> <td><p>The property tree to tranlsate to INI and output. </p></td> </tr> <tr> <td><p><span class="term"><code class="computeroutput">stream</code></span></p></td> <td><p>The stream to which to write the INI representation of the property tree. </p></td> </tr> </tbody> </table></div></td> </tr> <tr> <td><p><span class="term">Requires:</span></p></td> <td> <p><span class="emphasis"><em>pt</em></span> cannot have data in its root. </p> <p><span class="emphasis"><em>pt</em></span> cannot have keys both data and children. </p> <p><span class="emphasis"><em>pt</em></span> cannot be deeper than two levels. </p> <p>There cannot be duplicate keys on any given level of <span class="emphasis"><em>pt</em></span>. </p> </td> </tr> <tr> <td><p><span class="term">Throws:</span></p></td> <td> <a class="link" href="ini_parser_error.html" title="Class ini_parser_error">ini_parser_error</a> In case of error translating the property tree to INI or writing to the output stream. </td> </tr> </tbody> </table></div> </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 Marcin Kalicinski<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="read_ini_idp104890648.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../property_tree/reference.html#header.boost.property_tree.ini_parser_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="write_ini_idp106138632.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
test/view/footer.html
creoLIFE/FatFree-PHPTAL
<!-- BEGINNING Footer --> </body> </html>
resources/python-doc/genindex-_.html
ShiKaiWi/python-practice
<!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>Index &mdash; Python 2.7.12 documentation</title> <link rel="stylesheet" href="_static/classic.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: './', VERSION: '2.7.12', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="_static/jquery.js"></script> <script type="text/javascript" src="_static/underscore.js"></script> <script type="text/javascript" src="_static/doctools.js"></script> <script type="text/javascript" src="_static/sidebar.js"></script> <link rel="search" type="application/opensearchdescription+xml" title="Search within Python 2.7.12 documentation" href="_static/opensearch.xml"/> <link rel="author" title="About these documents" href="about.html" /> <link rel="copyright" title="Copyright" href="copyright.html" /> <link rel="top" title="Python 2.7.12 documentation" href="contents.html" /> <link rel="shortcut icon" type="image/png" href="_static/py.png" /> <script type="text/javascript" src="_static/copybutton.js"></script> <script type="text/javascript" src="_static/version_switch.js"></script> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="py-modindex.html" title="Python Module Index" >modules</a> |</li> <li><img src="_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="https://www.python.org/">Python</a> &raquo;</li> <li> <span class="version_switcher_placeholder">2.7.12</span> <a href="index.html">Documentation</a> &raquo; </li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <h1 id="index">Index &ndash; _</h1> <table style="width: 100%" class="indextable"><tr> <td style="width: 33%" valign="top"><dl> <dt><a href="library/operator.html#operator.__abs__">__abs__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__abs__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__add__">__add__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__add__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__add__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="tutorial/modules.html#index-8">__all__</a> </dt> <dd><dl> <dt><a href="reference/simple_stmts.html#index-49">(optional module attribute)</a> </dt> <dt><a href="c-api/import.html#index-0">(package variable)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__and__">__and__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__and__">(object method)</a> </dt> </dl></dd> <dt><a href="library/stdtypes.html#class.__bases__">__bases__ (class attribute)</a>, <a href="reference/datamodel.html#index-53">[1]</a> </dt> <dt> __builtin__ </dt> <dd><dl> <dt><a href="c-api/init.html#index-0">module</a>, <a href="c-api/intro.html#index-20">[1]</a>, <a href="reference/simple_stmts.html#index-57">[2]</a>, <a href="reference/toplevel_components.html#index-2">[3]</a>, <a href="tutorial/modules.html#index-7">[4]</a> </dt> </dl></dd> <dt><a href="library/__builtin__.html#module-__builtin__">__builtin__ (module)</a> </dt> <dt><a href="reference/simple_stmts.html#index-57">__builtins__</a> </dt> <dt><a href="reference/datamodel.html#object.__call__">__call__() (object method)</a>, <a href="reference/expressions.html#index-46">[1]</a> </dt> <dt><a href="library/stdtypes.html#instance.__class__">__class__ (instance attribute)</a>, <a href="reference/datamodel.html#index-57">[1]</a> </dt> <dt><a href="reference/datamodel.html#index-37">__closure__ (function attribute)</a> </dt> <dt><a href="library/stdtypes.html#index-11">__cmp__() (instance method)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__cmp__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#index-37">__code__ (function attribute)</a> </dt> <dt><a href="reference/datamodel.html#object.__coerce__">__coerce__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__complex__">__complex__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__concat__">__concat__() (in module operator)</a> </dt> <dt><a href="library/email.message.html#email.message.Message.__contains__">__contains__() (email.message.Message method)</a> </dt> <dd><dl> <dt><a href="library/operator.html#operator.__contains__">(in module operator)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Mailbox.__contains__">(mailbox.Mailbox method)</a> </dt> <dt><a href="reference/datamodel.html#object.__contains__">(object method)</a> </dt> </dl></dd> <dt><a href="library/copy.html#index-1">__copy__() (copy protocol)</a> </dt> <dt><a href="reference/simple_stmts.html#index-16">__debug__</a> </dt> <dd><dl> <dt><a href="library/constants.html#__debug__">(built-in variable)</a> </dt> </dl></dd> <dt><a href="library/copy.html#index-1">__deepcopy__() (copy protocol)</a> </dt> <dt><a href="reference/datamodel.html#index-37">__defaults__ (function attribute)</a> </dt> <dt><a href="library/io.html#io.IOBase.__del__">__del__() (io.IOBase method)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__del__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__delattr__">__delattr__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__delete__">__delete__() (object method)</a> </dt> <dt><a href="library/email.message.html#email.message.Message.__delitem__">__delitem__() (email.message.Message method)</a> </dt> <dd><dl> <dt><a href="library/operator.html#operator.__delitem__">(in module operator)</a> </dt> <dt><a href="library/mailbox.html#mailbox.MH.__delitem__">(mailbox.MH method)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Mailbox.__delitem__">(mailbox.Mailbox method)</a> </dt> <dt><a href="reference/datamodel.html#object.__delitem__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__delslice__">__delslice__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__delslice__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#index-53">__dict__ (class attribute)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#index-37">(function attribute)</a> </dt> <dt><a href="reference/datamodel.html#index-57">(instance attribute)</a>, <a href="reference/datamodel.html#index-85">[1]</a> </dt> <dt><a href="c-api/module.html#index-3">(module attribute)</a>, <a href="reference/datamodel.html#index-48">[1]</a> </dt> <dt><a href="library/stdtypes.html#object.__dict__">(object attribute)</a> </dt> </dl></dd> <dt><a href="library/sys.html#sys.__displayhook__">__displayhook__ (in module sys)</a> </dt> <dt><a href="library/operator.html#operator.__div__">__div__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__div__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__divmod__">__divmod__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#index-53">__doc__ (class attribute)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#index-37">(function attribute)</a> </dt> <dt><a href="reference/datamodel.html#index-39">(method attribute)</a> </dt> <dt><a href="c-api/module.html#index-2">(module attribute)</a>, <a href="reference/datamodel.html#index-49">[1]</a> </dt> </dl></dd> <dt><a href="library/_winreg.html#_winreg.PyHKEY.__enter__">__enter__() (_winreg.PyHKEY method)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#contextmanager.__enter__">(contextmanager method)</a> </dt> <dt><a href="reference/datamodel.html#object.__enter__">(object method)</a> </dt> </dl></dd> <dt><a href="library/email.charset.html#email.charset.Charset.__eq__">__eq__() (email.charset.Charset method)</a> </dt> <dd><dl> <dt><a href="library/email.header.html#email.header.Header.__eq__">(email.header.Header method)</a> </dt> <dt><a href="library/operator.html#operator.__eq__">(in module operator)</a> </dt> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__eq__">(object method)</a> </dt> </dl></dd> <dt><a href="library/sys.html#sys.__excepthook__">__excepthook__ (in module sys)</a> </dt> <dt><a href="library/_winreg.html#_winreg.PyHKEY.__exit__">__exit__() (_winreg.PyHKEY method)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#contextmanager.__exit__">(contextmanager method)</a> </dt> <dt><a href="reference/datamodel.html#object.__exit__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/simple_stmts.html#index-46">__file__</a> </dt> <dd><dl> <dt><a href="c-api/module.html#index-2">(module attribute)</a>, <a href="c-api/module.html#index-5">[1]</a>, <a href="reference/datamodel.html#index-49">[2]</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__float__">__float__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__floordiv__">__floordiv__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__floordiv__">(object method)</a> </dt> </dl></dd> <dt><a href="library/functions.html#index-3">__format__</a> </dt> <dt><a href="library/datetime.html#datetime.date.__format__">__format__() (datetime.date method)</a> </dt> <dd><dl> <dt><a href="library/datetime.html#datetime.datetime.__format__">(datetime.datetime method)</a> </dt> <dt><a href="library/datetime.html#datetime.time.__format__">(datetime.time method)</a> </dt> </dl></dd> <dt><a href="glossary.html#term-future"><strong>__future__</strong></a> </dt> <dd><dl> <dt><a href="library/__future__.html#module-__future__">(module)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ge__">__ge__() (in module operator)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__ge__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__get__">__get__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__getattr__">__getattr__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__getattribute__">__getattribute__() (object method)</a> </dt> <dt><a href="library/pickle.html#object.__getinitargs__">__getinitargs__() (object method)</a> </dt> <dt><a href="library/email.message.html#email.message.Message.__getitem__">__getitem__() (email.message.Message method)</a> </dt> <dd><dl> <dt><a href="library/operator.html#operator.__getitem__">(in module operator)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Mailbox.__getitem__">(mailbox.Mailbox method)</a> </dt> <dt><a href="reference/datamodel.html#index-72">(mapping object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__getitem__">(object method)</a> </dt> </dl></dd> <dt><a href="library/pickle.html#object.__getnewargs__">__getnewargs__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__getslice__">__getslice__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__getslice__">(object method)</a> </dt> </dl></dd> <dt><a href="library/pickle.html#object.__getstate__">__getstate__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#index-37">__globals__ (function attribute)</a> </dt> <dt><a href="library/operator.html#operator.__gt__">__gt__() (in module operator)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__gt__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__hash__">__hash__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__hex__">__hex__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__iadd__">__iadd__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__iadd__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__iadd__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__iand__">__iand__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__iand__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__iconcat__">__iconcat__() (in module operator)</a> </dt> <dt><a href="library/operator.html#operator.__idiv__">__idiv__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__idiv__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ifloordiv__">__ifloordiv__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__ifloordiv__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ilshift__">__ilshift__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__ilshift__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__imod__">__imod__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__imod__">(object method)</a> </dt> </dl></dd> <dt> __import__ </dt> <dd><dl> <dt><a href="c-api/import.html#index-1">built-in function</a> </dt> </dl></dd> <dt><a href="library/functions.html#__import__">__import__() (built-in function)</a> </dt> <dt><a href="library/operator.html#operator.__imul__">__imul__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__imul__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__index__">__index__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__index__">(object method)</a> </dt> </dl></dd> <dt><a href="library/logging.html#logging.Handler.__init__">__init__() (logging.Handler method)</a> </dt> <dd><dl> <dt><a href="howto/logging.html#logging.logging.Formatter.__init__">(logging.logging.Formatter method)</a> </dt> <dt><a href="reference/datamodel.html#index-46">(object method)</a>, <a href="reference/datamodel.html#object.__init__">[1]</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#class.__instancecheck__">__instancecheck__() (class method)</a> </dt> <dt><a href="reference/datamodel.html#object.__int__">__int__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__inv__">__inv__() (in module operator)</a> </dt> <dt><a href="library/operator.html#operator.__invert__">__invert__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__invert__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ior__">__ior__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__ior__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ipow__">__ipow__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__ipow__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__irepeat__">__irepeat__() (in module operator)</a> </dt> <dt><a href="library/operator.html#operator.__irshift__">__irshift__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__irshift__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__isub__">__isub__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__isub__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__isub__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="library/stdtypes.html#container.__iter__">__iter__() (container method)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#iterator.__iter__">(iterator method)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Mailbox.__iter__">(mailbox.Mailbox method)</a> </dt> <dt><a href="reference/datamodel.html#object.__iter__">(object method)</a> </dt> <dt><a href="library/unittest.html#unittest.TestSuite.__iter__">(unittest.TestSuite method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__itruediv__">__itruediv__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__itruediv__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__ixor__">__ixor__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__ixor__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__le__">__le__() (in module operator)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__le__">(object method)</a> </dt> </dl></dd> <dt><a href="library/email.message.html#email.message.Message.__len__">__len__() (email.message.Message method)</a> </dt> <dd><dl> <dt><a href="library/mailbox.html#mailbox.Mailbox.__len__">(mailbox.Mailbox method)</a> </dt> <dt><a href="reference/datamodel.html#index-82">(mapping object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__len__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__len__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="reference/simple_stmts.html#index-46">__loader__</a> </dt> <dt><a href="reference/datamodel.html#object.__long__">__long__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__lshift__">__lshift__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__lshift__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__lt__">__lt__() (in module operator)</a> </dt> <dd><dl> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__lt__">(object method)</a> </dt> </dl></dd> <dt> __main__ </dt> <dd><dl> <dt><a href="c-api/init.html#index-0">module</a>, <a href="c-api/init.html#index-21">[1]</a>, <a href="c-api/intro.html#index-20">[2]</a>, <a href="library/runpy.html#index-0">[3]</a>, <a href="library/runpy.html#index-3">[4]</a>, <a href="reference/executionmodel.html#index-11">[5]</a>, <a href="reference/toplevel_components.html#index-2">[6]</a>, <a href="reference/toplevel_components.html#index-3">[7]</a> </dt> </dl></dd> <dt><a href="library/__main__.html#module-__main__">__main__ (module)</a> </dt> <dt><a href="library/stdtypes.html#object.__members__">__members__ (object attribute)</a> </dt> <dt><a href="reference/datamodel.html#__metaclass__">__metaclass__ (built-in variable)</a> </dt> <dt><a href="library/stdtypes.html#object.__methods__">__methods__ (object attribute)</a> </dt> <dt><a href="library/stdtypes.html#index-33">__missing__()</a> </dt> <dd><dl> <dt><a href="library/collections.html#collections.defaultdict.__missing__">(collections.defaultdict method)</a> </dt> <dt><a href="reference/datamodel.html#object.__missing__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__mod__">__mod__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__mod__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#index-53">__module__ (class attribute)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#index-37">(function attribute)</a> </dt> <dt><a href="reference/datamodel.html#index-39">(method attribute)</a> </dt> </dl></dd> <dt><a href="library/stdtypes.html#class.__mro__">__mro__ (class attribute)</a> </dt> <dt><a href="library/operator.html#operator.__mul__">__mul__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__mul__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/simple_stmts.html#index-46">__name__</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#index-53">(class attribute)</a> </dt> <dt><a href="library/stdtypes.html#definition.__name__">(definition attribute)</a> </dt> <dt><a href="reference/datamodel.html#index-37">(function attribute)</a> </dt> <dt><a href="reference/datamodel.html#index-39">(method attribute)</a> </dt> <dt><a href="c-api/module.html#index-2">(module attribute)</a>, <a href="c-api/module.html#index-4">[1]</a>, <a href="reference/datamodel.html#index-49">[2]</a> </dt> </dl></dd> <dt><a href="library/email.charset.html#email.charset.Charset.__ne__">__ne__() (email.charset.Charset method)</a> </dt> <dd><dl> <dt><a href="library/email.header.html#email.header.Header.__ne__">(email.header.Header method)</a> </dt> <dt><a href="library/operator.html#operator.__ne__">(in module operator)</a> </dt> <dt><a href="library/stdtypes.html#index-11">(instance method)</a> </dt> <dt><a href="reference/datamodel.html#object.__ne__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__neg__">__neg__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__neg__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__new__">__new__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#index-88">__nonzero__() (object method)</a>, <a href="reference/datamodel.html#object.__nonzero__">[1]</a> </dt> <dt><a href="library/operator.html#operator.__not__">__not__() (in module operator)</a> </dt> </dl></td> <td style="width: 33%" valign="top"><dl> <dt><a href="reference/datamodel.html#object.__oct__">__oct__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__or__">__or__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__or__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/simple_stmts.html#index-46">__package__</a> </dt> <dt><a href="reference/simple_stmts.html#index-41">__path__</a>, <a href="reference/simple_stmts.html#index-46">[1]</a> </dt> <dt><a href="library/operator.html#operator.__pos__">__pos__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__pos__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__pow__">__pow__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__pow__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__radd__">__radd__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rand__">__rand__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rcmp__">__rcmp__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rdiv__">__rdiv__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rdivmod__">__rdivmod__() (object method)</a> </dt> <dt><a href="library/pickle.html#object.__reduce__">__reduce__() (object method)</a> </dt> <dt><a href="library/pickle.html#object.__reduce_ex__">__reduce_ex__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__repeat__">__repeat__() (in module operator)</a> </dt> <dt><a href="library/multiprocessing.html#multiprocessing.managers.BaseProxy.__repr__">__repr__() (multiprocessing.managers.BaseProxy method)</a> </dt> <dd><dl> <dt><a href="library/netrc.html#netrc.netrc.__repr__">(netrc.netrc method)</a> </dt> <dt><a href="reference/datamodel.html#object.__repr__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__reversed__">__reversed__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rfloordiv__">__rfloordiv__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rlshift__">__rlshift__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rmod__">__rmod__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rmul__">__rmul__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__ror__">__ror__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rpow__">__rpow__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rrshift__">__rrshift__() (object method)</a> </dt> <dt><a href="library/operator.html#operator.__rshift__">__rshift__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__rshift__">(object method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#object.__rsub__">__rsub__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rtruediv__">__rtruediv__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__rxor__">__rxor__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#object.__set__">__set__() (object method)</a> </dt> <dt><a href="reference/datamodel.html#index-84">__setattr__() (object method)</a>, <a href="reference/datamodel.html#object.__setattr__">[1]</a> </dt> <dt><a href="library/email.message.html#email.message.Message.__setitem__">__setitem__() (email.message.Message method)</a> </dt> <dd><dl> <dt><a href="library/operator.html#operator.__setitem__">(in module operator)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Mailbox.__setitem__">(mailbox.Mailbox method)</a> </dt> <dt><a href="library/mailbox.html#mailbox.Maildir.__setitem__">(mailbox.Maildir method)</a> </dt> <dt><a href="reference/datamodel.html#object.__setitem__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__setslice__">__setslice__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__setslice__">(object method)</a> </dt> </dl></dd> <dt><a href="library/pickle.html#object.__setstate__">__setstate__() (object method)</a> </dt> <dt><a href="glossary.html#term-slots"><strong>__slots__</strong></a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#__slots__">(built-in variable)</a> </dt> </dl></dd> <dt><a href="library/sys.html#sys.__stderr__">__stderr__ (in module sys)</a> </dt> <dt><a href="library/sys.html#sys.__stdin__">__stdin__ (in module sys)</a> </dt> <dt><a href="library/sys.html#sys.__stdout__">__stdout__ (in module sys)</a> </dt> <dt><a href="library/datetime.html#datetime.date.__str__">__str__() (datetime.date method)</a> </dt> <dd><dl> <dt><a href="library/datetime.html#datetime.datetime.__str__">(datetime.datetime method)</a> </dt> <dt><a href="library/datetime.html#datetime.time.__str__">(datetime.time method)</a> </dt> <dt><a href="library/email.charset.html#email.charset.Charset.__str__">(email.charset.Charset method)</a> </dt> <dt><a href="library/email.header.html#email.header.Header.__str__">(email.header.Header method)</a> </dt> <dt><a href="library/email.message.html#email.message.Message.__str__">(email.message.Message method)</a> </dt> <dt><a href="library/multiprocessing.html#multiprocessing.managers.BaseProxy.__str__">(multiprocessing.managers.BaseProxy method)</a> </dt> <dt><a href="reference/datamodel.html#object.__str__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__str__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__sub__">__sub__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__sub__">(object method)</a> </dt> <dt><a href="library/rfc822.html#rfc822.AddressList.__sub__">(rfc822.AddressList method)</a> </dt> </dl></dd> <dt><a href="reference/datamodel.html#class.__subclasscheck__">__subclasscheck__() (class method)</a> </dt> <dt><a href="library/stdtypes.html#class.__subclasses__">__subclasses__() (class method)</a> </dt> <dt><a href="library/abc.html#abc.ABCMeta.__subclasshook__">__subclasshook__() (abc.ABCMeta method)</a> </dt> <dt><a href="library/operator.html#operator.__truediv__">__truediv__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__truediv__">(object method)</a> </dt> </dl></dd> <dt><a href="library/email.header.html#email.header.Header.__unicode__">__unicode__() (email.header.Header method)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__unicode__">(object method)</a> </dt> </dl></dd> <dt><a href="library/operator.html#operator.__xor__">__xor__() (in module operator)</a> </dt> <dd><dl> <dt><a href="reference/datamodel.html#object.__xor__">(object method)</a> </dt> </dl></dd> <dt><a href="library/ctypes.html#ctypes.Structure._anonymous_">_anonymous_ (ctypes.Structure attribute)</a> </dt> <dt><a href="library/collections.html#collections.somenamedtuple._asdict">_asdict() (collections.somenamedtuple method)</a> </dt> <dt><a href="library/ctypes.html#ctypes._CData._b_base_">_b_base_ (ctypes._CData attribute)</a> </dt> <dt><a href="library/ctypes.html#ctypes._CData._b_needsfree_">_b_needsfree_ (ctypes._CData attribute)</a> </dt> <dt><a href="library/multiprocessing.html#multiprocessing.managers.BaseProxy._callmethod">_callmethod() (multiprocessing.managers.BaseProxy method)</a> </dt> <dt><a href="library/ctypes.html#ctypes._CData">_CData (class in ctypes)</a> </dt> <dt><a href="library/sys.html#sys._clear_type_cache">_clear_type_cache() (in module sys)</a> </dt> <dt><a href="library/sys.html#sys._current_frames">_current_frames() (in module sys)</a> </dt> <dt><a href="library/os.html#os._exit">_exit() (in module os)</a> </dt> <dt><a href="library/ast.html#ast.AST._fields">_fields (ast.AST attribute)</a> </dt> <dd><dl> <dt><a href="library/collections.html#collections.somenamedtuple._fields">(collections.somenamedtuple attribute)</a> </dt> </dl></dd> <dt><a href="library/ctypes.html#ctypes.Structure._fields_">_fields_ (ctypes.Structure attribute)</a> </dt> <dt><a href="library/wsgiref.html#wsgiref.handlers.BaseHandler._flush">_flush() (wsgiref.handlers.BaseHandler method)</a> </dt> <dt><a href="c-api/import.html#c._frozen">_frozen (C type)</a> </dt> <dt><a href="library/ctypes.html#ctypes._FuncPtr">_FuncPtr (class in ctypes)</a> </dt> <dt><a href="library/sys.html#sys._getframe">_getframe() (in module sys)</a> </dt> <dt><a href="library/multiprocessing.html#multiprocessing.managers.BaseProxy._getvalue">_getvalue() (multiprocessing.managers.BaseProxy method)</a> </dt> <dt><a href="library/ctypes.html#ctypes.PyDLL._handle">_handle (ctypes.PyDLL attribute)</a> </dt> <dt><a href="library/ssl.html#ssl._https_verify_certificates">_https_verify_certificates() (in module ssl)</a> </dt> <dt><a href="c-api/import.html#c._inittab">_inittab (C type)</a> </dt> <dt><a href="library/ctypes.html#ctypes.Array._length_">_length_ (ctypes.Array attribute)</a> </dt> <dt> _locale </dt> <dd><dl> <dt><a href="library/locale.html#index-0">module</a> </dt> </dl></dd> <dt><a href="library/collections.html#collections.somenamedtuple._make">_make() (collections.somenamedtuple class method)</a> </dt> <dt><a href="library/unittest.html#unittest.TextTestRunner._makeResult">_makeResult() (unittest.TextTestRunner method)</a> </dt> <dt><a href="library/ctypes.html#ctypes.PyDLL._name">_name (ctypes.PyDLL attribute)</a> </dt> <dt><a href="library/ctypes.html#ctypes._CData._objects">_objects (ctypes._CData attribute)</a> </dt> <dt><a href="library/ctypes.html#ctypes.Structure._pack_">_pack_ (ctypes.Structure attribute)</a> </dt> <dt><a href="library/gettext.html#gettext.NullTranslations._parse">_parse() (gettext.NullTranslations method)</a> </dt> <dt><a href="library/ctypes.html#ctypes._Pointer">_Pointer (class in ctypes)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_diff">_Py_c_diff (C function)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_neg">_Py_c_neg (C function)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_pow">_Py_c_pow (C function)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_prod">_Py_c_prod (C function)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_quot">_Py_c_quot (C function)</a> </dt> <dt><a href="c-api/complex.html#c._Py_c_sum">_Py_c_sum (C function)</a> </dt> <dt><a href="c-api/allocation.html#c._Py_NoneStruct">_Py_NoneStruct (C variable)</a> </dt> <dt><a href="c-api/import.html#c._PyImport_FindExtension">_PyImport_FindExtension (C function)</a> </dt> <dt><a href="c-api/import.html#c._PyImport_Fini">_PyImport_Fini (C function)</a> </dt> <dt><a href="c-api/import.html#c._PyImport_FixupExtension">_PyImport_FixupExtension (C function)</a> </dt> <dt><a href="c-api/import.html#c._PyImport_Init">_PyImport_Init (C function)</a> </dt> <dt><a href="c-api/allocation.html#c._PyObject_Del">_PyObject_Del (C function)</a> </dt> <dt><a href="c-api/gcsupport.html#c._PyObject_GC_TRACK">_PyObject_GC_TRACK (C function)</a> </dt> <dt><a href="c-api/gcsupport.html#c._PyObject_GC_UNTRACK">_PyObject_GC_UNTRACK (C function)</a> </dt> <dt><a href="c-api/allocation.html#c._PyObject_New">_PyObject_New (C function)</a> </dt> <dt><a href="c-api/allocation.html#c._PyObject_NewVar">_PyObject_NewVar (C function)</a> </dt> <dt><a href="c-api/string.html#c._PyString_Resize">_PyString_Resize (C function)</a> </dt> <dt><a href="c-api/tuple.html#c._PyTuple_Resize">_PyTuple_Resize (C function)</a> </dt> <dt><a href="library/framework.html#FrameWork.Application._quit">_quit() (FrameWork.Application method)</a> </dt> <dt><a href="library/collections.html#collections.somenamedtuple._replace">_replace() (collections.somenamedtuple method)</a> </dt> <dt><a href="library/xml.etree.elementtree.html#xml.etree.ElementTree.ElementTree._setroot">_setroot() (xml.etree.ElementTree.ElementTree method)</a> </dt> <dt><a href="library/ctypes.html#ctypes._SimpleCData">_SimpleCData (class in ctypes)</a> </dt> <dt><a href="library/aetools.html#aetools.TalkTo._start">_start() (aetools.TalkTo method)</a> </dt> <dt><a href="library/email.iterators.html#email.iterators._structure">_structure() (in module email.iterators)</a> </dt> <dt><a href="library/ctypes.html#ctypes._Pointer._type_">_type_ (ctypes._Pointer attribute)</a> </dt> <dd><dl> <dt><a href="library/ctypes.html#ctypes.Array._type_">(ctypes.Array attribute)</a> </dt> </dl></dd> <dt><a href="library/urllib.html#urllib._urlopener">_urlopener (in module urllib)</a> </dt> <dt><a href="library/_winreg.html#module-_winreg">_winreg (module)</a> </dt> <dt><a href="library/wsgiref.html#wsgiref.handlers.BaseHandler._write">_write() (wsgiref.handlers.BaseHandler method)</a> </dt> </dl></td> </tr></table> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Index</h4> <p><a href="genindex-Symbols.html"><strong>Symbols</strong></a> | <a href="#"><strong>_</strong></a> | <a href="genindex-A.html"><strong>A</strong></a> | <a href="genindex-B.html"><strong>B</strong></a> | <a href="genindex-C.html"><strong>C</strong></a> | <a href="genindex-D.html"><strong>D</strong></a> | <a href="genindex-E.html"><strong>E</strong></a> | <a href="genindex-F.html"><strong>F</strong></a> | <a href="genindex-G.html"><strong>G</strong></a> | <a href="genindex-H.html"><strong>H</strong></a> | <a href="genindex-I.html"><strong>I</strong></a> | <a href="genindex-J.html"><strong>J</strong></a> | <a href="genindex-K.html"><strong>K</strong></a> | <a href="genindex-L.html"><strong>L</strong></a> | <a href="genindex-M.html"><strong>M</strong></a> | <a href="genindex-N.html"><strong>N</strong></a> | <a href="genindex-O.html"><strong>O</strong></a> | <a href="genindex-P.html"><strong>P</strong></a> | <a href="genindex-Q.html"><strong>Q</strong></a> | <a href="genindex-R.html"><strong>R</strong></a> | <a href="genindex-S.html"><strong>S</strong></a> | <a href="genindex-T.html"><strong>T</strong></a> | <a href="genindex-U.html"><strong>U</strong></a> | <a href="genindex-V.html"><strong>V</strong></a> | <a href="genindex-W.html"><strong>W</strong></a> | <a href="genindex-X.html"><strong>X</strong></a> | <a href="genindex-Y.html"><strong>Y</strong></a> | <a href="genindex-Z.html"><strong>Z</strong></a> </p> <p><a href="genindex-all.html"><strong>Full index on one page</strong></a></p> <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="py-modindex.html" title="Python Module Index" >modules</a> |</li> <li><img src="_static/py.png" alt="" style="vertical-align: middle; margin-top: -1px"/></li> <li><a href="https://www.python.org/">Python</a> &raquo;</li> <li> <span class="version_switcher_placeholder">2.7.12</span> <a href="index.html">Documentation</a> &raquo; </li> </ul> </div> <div class="footer"> &copy; <a href="copyright.html">Copyright</a> 1990-2016, Python Software Foundation. <br /> The Python Software Foundation is a non-profit corporation. <a href="https://www.python.org/psf/donations/">Please donate.</a> <br /> Last updated on Jun 25, 2016. <a href="bugs.html">Found a bug</a>? <br /> Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.3.3. </div> </body> </html>
api/v0.9.0/utility/filepath/FilePath.html
Circular-Studios/Dash-Docs
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/><!-- using block title in layout.dt--><!-- using block ddox.defs in ddox.layout.dt--><!-- using block ddox.title in ddox.layout.dt--> <title>Class FilePath</title> <link rel="stylesheet" type="text/css" href="../../styles/ddox.css"/> <link rel="stylesheet" href="../../prettify/prettify.css" type="text/css"/> <script type="text/javascript" src="../../scripts/jquery.js">/**/</script> <script type="text/javascript" src="../../prettify/prettify.js">/**/</script> <script type="text/javascript" src="../../scripts/ddox.js">/**/</script> </head> <body onload="prettyPrint(); setupDdox();"> <nav id="main-nav"><!-- using block navigation in layout.dt--> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">components</a> <ul class="tree-view"> <li> <a href="../../components/animation.html" class=" module">animation</a> </li> <li> <a href="../../components/assets.html" class=" module">assets</a> </li> <li> <a href="../../components/camera.html" class=" module">camera</a> </li> <li> <a href="../../components/component.html" class=" module">component</a> </li> <li> <a href="../../components/lights.html" class=" module">lights</a> </li> <li> <a href="../../components/material.html" class=" module">material</a> </li> <li> <a href="../../components/mesh.html" class=" module">mesh</a> </li> <li> <a href="../../components/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">core</a> <ul class="tree-view"> <li> <a href="../../core/dgame.html" class=" module">dgame</a> </li> <li> <a href="../../core/gameobject.html" class=" module">gameobject</a> </li> <li> <a href="../../core/prefabs.html" class=" module">prefabs</a> </li> <li> <a href="../../core/properties.html" class=" module">properties</a> </li> <li> <a href="../../core/reflection.html" class=" module">reflection</a> </li> <li> <a href="../../core/scene.html" class=" module">scene</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">graphics</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">adapters</a> <ul class="tree-view"> <li> <a href="../../graphics/adapters/adapter.html" class=" module">adapter</a> </li> <li> <a href="../../graphics/adapters/linux.html" class=" module">linux</a> </li> <li> <a href="../../graphics/adapters/mac.html" class=" module">mac</a> </li> <li> <a href="../../graphics/adapters/win32.html" class=" module">win32</a> </li> </ul> </li> <li class="collapsed tree-view"> <a href="#" class="package">shaders</a> <ul class="tree-view"> <li class="collapsed tree-view"> <a href="#" class="package">glsl</a> <ul class="tree-view"> <li> <a href="../../graphics/shaders/glsl/ambientlight.html" class=" module">ambientlight</a> </li> <li> <a href="../../graphics/shaders/glsl/animatedgeometry.html" class=" module">animatedgeometry</a> </li> <li> <a href="../../graphics/shaders/glsl/directionallight.html" class=" module">directionallight</a> </li> <li> <a href="../../graphics/shaders/glsl/geometry.html" class=" module">geometry</a> </li> <li> <a href="../../graphics/shaders/glsl/pointlight.html" class=" module">pointlight</a> </li> <li> <a href="../../graphics/shaders/glsl/shadowmap.html" class=" module">shadowmap</a> </li> <li> <a href="../../graphics/shaders/glsl/userinterface.html" class=" module">userinterface</a> </li> </ul> </li> <li> <a href="../../graphics/shaders/glsl.html" class=" module">glsl</a> </li> <li> <a href="../../graphics/shaders/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li> <a href="../../graphics/adapters.html" class=" module">adapters</a> </li> <li> <a href="../../graphics/graphics.html" class=" module">graphics</a> </li> <li> <a href="../../graphics/shaders.html" class=" module">shaders</a> </li> </ul> </li> <li class=" tree-view"> <a href="#" class="package">utility</a> <ul class="tree-view"> <li> <a href="../../utility/awesomium.html" class=" module">awesomium</a> </li> <li> <a href="../../utility/concurrency.html" class=" module">concurrency</a> </li> <li> <a href="../../utility/config.html" class=" module">config</a> </li> <li> <a href="../../utility/filepath.html" class="selected module">filepath</a> </li> <li> <a href="../../utility/input.html" class=" module">input</a> </li> <li> <a href="../../utility/output.html" class=" module">output</a> </li> <li> <a href="../../utility/resources.html" class=" module">resources</a> </li> <li> <a href="../../utility/string.html" class=" module">string</a> </li> <li> <a href="../../utility/tasks.html" class=" module">tasks</a> </li> <li> <a href="../../utility/time.html" class=" module">time</a> </li> </ul> </li> <li> <a href="../../components.html" class=" module">components</a> </li> <li> <a href="../../core.html" class=" module">core</a> </li> <li> <a href="../../graphics.html" class=" module">graphics</a> </li> <li> <a href="../../utility.html" class=" module">utility</a> </li> </ul> <noscript> <p style="color: red">The search functionality needs JavaScript enabled</p> </noscript> <div id="symbolSearchPane" style="display: none"> <p> <input id="symbolSearch" type="text" placeholder="Search for symbols" onchange="performSymbolSearch(24);" onkeypress="this.onchange();" onpaste="this.onchange();" oninput="this.onchange();"/> </p> <ul id="symbolSearchResults" style="display: none"></ul> <script type="application/javascript" src="../../symbols.js"></script> <script type="application/javascript"> //<![CDATA[ var symbolSearchRootDir = "../../"; $('#symbolSearchPane').show(); //]]> </script> </div> </nav> <div id="main-contents"> <h1>Class FilePath</h1><!-- using block body in layout.dt--><!-- using block ddox.description in ddox.layout.dt--> <p> A class which stores default resource paths, and handles path manipulation. </p> <section> </section> <section> <h2>Inherits from</h2> <ul> <li> <code class="prettyprint lang-d"><code class="prettyprint lang-d">Object</code></code> (base class) </li> </ul> </section><!-- using block ddox.sections in ddox.layout.dt--> <!-- using block ddox.members in ddox.layout.dt--> <section> <h2>Constructors</h2> <table> <col class="caption"/> <tr> <th>Name</th> <th>Description</th> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.this.html" class="public"> <code>this</code> </a> </td> <td> Create an instance based on a given file <a href="../../utility/filepath/FilePath.this.html#path"><code class="prettyprint lang-d">path</code></a>. </td> </tr> </table> </section> <section> <h2>Fields</h2> <table> <col class="caption"/> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.ResourceHome.html" class="public"><code>ResourceHome</code></a> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The path to the resources home folder. </td> </tr> </table> </section> <section> <h2>Properties</h2> <table> <col class="caption"/> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.baseFileName.html" class="public property"><code>baseFileName</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The name of the file without its <a href="../../utility/filepath/FilePath.extension.html"><code class="prettyprint lang-d">extension</code></a>. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.directory.html" class="public property"><code>directory</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The path to the <code class="prettyprint lang-d">directory</code> containing the file. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.extension.html" class="public property"><code>extension</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The extensino of the file. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.fileName.html" class="public property"><code>fileName</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The name of the file with its <a href="../../utility/filepath/FilePath.extension.html"><code class="prettyprint lang-d">extension</code></a>. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.fullPath.html" class="public property"><code>fullPath</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The full path to the file. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.relativePath.html" class="public property"><code>relativePath</code></a> <span class="tableEntryAnnotation">[get]</span> </td> <td><code class="prettyprint lang-d">string</code></td> <td> The relative path from the executable to the file. </td> </tr> </table> </section> <section> <h2>Methods</h2> <table> <col class="caption"/> <tr> <th>Name</th> <th>Description</th> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.getContents.html" class="public"> <code>getContents</code> </a> </td> <td> Read the contents of the file. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.scanDirectory.html" class="public"> <code>scanDirectory</code> </a> </td> <td> Get all files in a given <a href="../../utility/filepath/FilePath.directory.html"><code class="prettyprint lang-d">directory</code></a>. </td> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.toFile.html" class="public"> <code>toFile</code> </a> </td> <td> Converts to a std.stdio.File </td> </tr> </table> </section> <section> <h2>Enums</h2> <table> <col class="caption"/> <tr> <th>Name</th> <th>Description</th> </tr> <tr> <td> <a href="../../utility/filepath/FilePath.Resources.html" class="public"> <code>Resources</code> </a> </td> <td> Paths to the different resource files. </td> </tr> </table> </section> <section> <h2>Authors</h2><!-- using block ddox.authors in ddox.layout.dt--> </section> <section> <h2>Copyright</h2><!-- using block ddox.copyright in ddox.layout.dt--> </section> <section> <h2>License</h2><!-- using block ddox.license in ddox.layout.dt--> </section> </div> </body> </html>
templates/plain/trial-expiring/content.html
wildbit/postmark-templates
<!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 name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="x-apple-disable-message-reformatting" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <meta name="color-scheme" content="light dark" /> <meta name="supported-color-schemes" content="light dark" /> <title></title> <style type="text/css" rel="stylesheet" media="all"> /* Base ------------------------------ */ @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,700&display=swap"); body { width: 100% !important; height: 100%; margin: 0; -webkit-text-size-adjust: none; } a { color: #3869D4; } a img { border: none; } td { word-break: break-word; } .preheader { display: none !important; visibility: hidden; mso-hide: all; font-size: 1px; line-height: 1px; max-height: 0; max-width: 0; opacity: 0; overflow: hidden; } /* Type ------------------------------ */ body, td, th { font-family: "Nunito Sans", Helvetica, Arial, sans-serif; } h1 { margin-top: 0; color: #333333; font-size: 22px; font-weight: bold; text-align: left; } h2 { margin-top: 0; color: #333333; font-size: 16px; font-weight: bold; text-align: left; } h3 { margin-top: 0; color: #333333; font-size: 14px; font-weight: bold; text-align: left; } td, th { font-size: 16px; } p, ul, ol, blockquote { margin: .4em 0 1.1875em; font-size: 16px; line-height: 1.625; } p.sub { font-size: 13px; } /* Utilities ------------------------------ */ .align-right { text-align: right; } .align-left { text-align: left; } .align-center { text-align: center; } /* Buttons ------------------------------ */ .button { background-color: #3869D4; border-top: 10px solid #3869D4; border-right: 18px solid #3869D4; border-bottom: 10px solid #3869D4; border-left: 18px solid #3869D4; display: inline-block; color: #FFF; text-decoration: none; border-radius: 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); -webkit-text-size-adjust: none; box-sizing: border-box; } .button--green { background-color: #22BC66; border-top: 10px solid #22BC66; border-right: 18px solid #22BC66; border-bottom: 10px solid #22BC66; border-left: 18px solid #22BC66; } .button--red { background-color: #FF6136; border-top: 10px solid #FF6136; border-right: 18px solid #FF6136; border-bottom: 10px solid #FF6136; border-left: 18px solid #FF6136; } @media only screen and (max-width: 500px) { .button { width: 100% !important; text-align: center !important; } } /* Attribute list ------------------------------ */ .attributes { margin: 0 0 21px; } .attributes_content { background-color: #F4F4F7; padding: 16px; } .attributes_item { padding: 0; } /* Related Items ------------------------------ */ .related { width: 100%; margin: 0; padding: 25px 0 0 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .related_item { padding: 10px 0; color: #CBCCCF; font-size: 15px; line-height: 18px; } .related_item-title { display: block; margin: .5em 0 0; } .related_item-thumb { display: block; padding-bottom: 10px; } .related_heading { border-top: 1px solid #CBCCCF; text-align: center; padding: 25px 0 10px; } /* Discount Code ------------------------------ */ .discount { width: 100%; margin: 0; padding: 24px; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; background-color: #F4F4F7; border: 2px dashed #CBCCCF; } .discount_heading { text-align: center; } .discount_body { text-align: center; font-size: 15px; } /* Social Icons ------------------------------ */ .social { width: auto; } .social td { padding: 0; width: auto; } .social_icon { height: 20px; margin: 0 8px 10px 8px; padding: 0; } /* Data table ------------------------------ */ .purchase { width: 100%; margin: 0; padding: 35px 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .purchase_content { width: 100%; margin: 0; padding: 25px 0 0 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .purchase_item { padding: 10px 0; color: #51545E; font-size: 15px; line-height: 18px; } .purchase_heading { padding-bottom: 8px; border-bottom: 1px solid #EAEAEC; } .purchase_heading p { margin: 0; color: #85878E; font-size: 12px; } .purchase_footer { padding-top: 15px; border-top: 1px solid #EAEAEC; } .purchase_total { margin: 0; text-align: right; font-weight: bold; color: #333333; } .purchase_total--label { padding: 0 15px 0 0; } body { background-color: #FFF; color: #333; } p { color: #333; } .email-wrapper { width: 100%; margin: 0; padding: 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .email-content { width: 100%; margin: 0; padding: 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } /* Masthead ----------------------- */ .email-masthead { padding: 25px 0; text-align: center; } .email-masthead_logo { width: 94px; } .email-masthead_name { font-size: 16px; font-weight: bold; color: #A8AAAF; text-decoration: none; text-shadow: 0 1px 0 white; } /* Body ------------------------------ */ .email-body { width: 100%; margin: 0; padding: 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .email-body_inner { width: 570px; margin: 0 auto; padding: 0; -premailer-width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; } .email-footer { width: 570px; margin: 0 auto; padding: 0; -premailer-width: 570px; -premailer-cellpadding: 0; -premailer-cellspacing: 0; text-align: center; } .email-footer p { color: #A8AAAF; } .body-action { width: 100%; margin: 30px auto; padding: 0; -premailer-width: 100%; -premailer-cellpadding: 0; -premailer-cellspacing: 0; text-align: center; } .body-sub { margin-top: 25px; padding-top: 25px; border-top: 1px solid #EAEAEC; } .content-cell { padding: 35px; } /*Media Queries ------------------------------ */ @media only screen and (max-width: 600px) { .email-body_inner, .email-footer { width: 100% !important; } } @media (prefers-color-scheme: dark) { body { background-color: #333333 !important; color: #FFF !important; } p, ul, ol, blockquote, h1, h2, h3, span, .purchase_item { color: #FFF !important; } .attributes_content, .discount { background-color: #222 !important; } .email-masthead_name { text-shadow: none !important; } } :root { color-scheme: light dark; supported-color-schemes: light dark; } </style> <!--[if mso]> <style type="text/css"> .f-fallback { font-family: Arial, sans-serif; } </style> <![endif]--> </head> <body> <span class="preheader">Your trial period for [Product Name] is about expired. Is there anything we can do to help?</span> <table class="email-wrapper" width="100%" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td align="center"> <table class="email-content" width="100%" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td class="email-masthead"> <a href="https://example.com" class="f-fallback email-masthead_name"> [Product Name] </a> </td> </tr> <!-- Email Body --> <tr> <td class="email-body" width="570" cellpadding="0" cellspacing="0"> <table class="email-body_inner" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> <!-- Body content --> <tr> <td class="content-cell"> <div class="f-fallback"> <h1>Your [Product Name] trial ends in 3 days </h1> <p>Thanks for trying [Product Name]. You've added a lot of data, so here are several options for you to consider going forward.</p> <!-- Action --> <table class="body-action" align="center" width="100%" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td align="center"> <!-- Border based button https://litmus.com/blog/a-guide-to-bulletproof-buttons-in-email-design --> <table width="100%" border="0" cellspacing="0" cellpadding="0" role="presentation"> <tr> <td align="center"> <a href="{{action_url}}" class="f-fallback button button--green" target="_blank">Upgrade your account</a> </td> </tr> </table> </td> </tr> </table> <p>If you're not ready to upgrade to a paying account, you have a few other options available to you&hellip;</p> <table class="attributes" width="100%" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td class="attributes_content"> <table width="100%" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td class="attributes_item"> <div class="f-fallback"> <strong><a href="{{trial_extension_url}}">Restart your trial</a></strong> - If you didn't get a chance to fully try out the product or need a little more time to evaluate, just let us know. Simply reply to this email and we'll extend your trial period. <br> <br> </div> </td> </tr> <tr> <td class="attributes_item"> <div class="f-fallback"> <strong><a href="{{feedback_url}}">Share feedback</a></strong> - If [Product Name] isn't right for you, let us know what you were looking for and we might be able to suggest some alternatives that might be a better fit. <br> <br> </div> </td> </tr> <tr> <td class="attributes_item"> <div class="f-fallback"> <strong><a href="{{export_url}}">Export your data</a></strong> - If [Product Name] wasn't a good fit, you can export your data for use elsewhere. <br> <br> </div> </td> </tr> <tr> <td class="attributes_item"> <div class="f-fallback"> <strong><a href="{{close_account_url}}">Close your account</a></strong> - You can close your account and delete your data. Or, do nothing and we'll automatically close it and delete your data for you in 90 days. But don't worry, we'll send you another email before that happens. </div> </td> </tr> </table> </td> </tr> </table> <p>Regardless of your choice, we want to say thank you for trying [Product Name]. We know it's an investment of your time, and we appreciate you giving us a chance.</p> <p>Thanks, <br>[Sender Name] and the [Product Name] Team</p> <p><strong>P.S.</strong> If you have any questions or need any help, please don't hesitate to reach out. You can reply to this email or join us on live chat during business hours.</p> </div> </td> </tr> </table> </td> </tr> <tr> <td> <table class="email-footer" align="center" width="570" cellpadding="0" cellspacing="0" role="presentation"> <tr> <td class="content-cell" align="center"> <p class="f-fallback sub align-center">&copy; 2021 [Product Name]. All rights reserved.</p> <p class="f-fallback sub align-center"> [Company Name, LLC] <br>1234 Street Rd. <br>Suite 1234 </p> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> </body> </html>
WASP-turtlebot-DSL/.metadata/.plugins/org.eclipse.pde.core/Eclipse Application/org.eclipse.osgi/142/0/.cp/javadoc/org/eclipse/emf/cdo/security/class-use/RealmUtil.html
kribe48/wasp-mbse
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <title>Uses of Class org.eclipse.emf.cdo.security.RealmUtil (CDO Model Repository Documentation)</title> <meta name="date" content=""> <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 org.eclipse.emf.cdo.security.RealmUtil (CDO Model Repository Documentation)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/eclipse/emf/cdo/security/RealmUtil.html" title="class in org.eclipse.emf.cdo.security">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/eclipse/emf/cdo/security/class-use/RealmUtil.html" target="_top">Frames</a></li> <li><a href="RealmUtil.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 org.eclipse.emf.cdo.security.RealmUtil" class="title">Uses of Class<br>org.eclipse.emf.cdo.security.RealmUtil</h2> </div> <div class="classUseContainer">No usage of org.eclipse.emf.cdo.security.RealmUtil</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/eclipse/emf/cdo/security/RealmUtil.html" title="class in org.eclipse.emf.cdo.security">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/eclipse/emf/cdo/security/class-use/RealmUtil.html" target="_top">Frames</a></li> <li><a href="RealmUtil.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><i>Copyright (c) 2011-2015 Eike Stepper (Berlin, Germany) and others.</i></small></p> </body> </html>
06-设计模式/20.1 开放-封闭原则.html
csxiaoyaojianxian/JavaScriptStudy
开放封闭原则(OCP)是面向对象最重要的一条原则 软件实体(类、模块、函数)等应该是可以扩展的,但是不可修改。 1. 扩展window.onload 函数 <script> Function.prototype.after = function( afterfn ){ var __self = this; return function(){ var ret = __self.apply( this, arguments ); afterfn.apply( this, arguments ); return ret; } }; window.onload = ( window.onload || function(){} ).after(function(){ console.log( document.getElementsByTagName( '*' ).length ); }); </script> 2. 用对象的多态性消除条件分支 参见 1.3 多态 3. 找出变化的地方 封装程序中变化的部分 例如:动物的叫声不同,而动物都会叫这是不变的,于是封装 makeSound 成一个稳定和封闭的函数 其他辅助实现开闭原则代码的方法: 3.1 放置挂钩(hook) 参见 11.2 钩子方法 3.2 使用回调函数 函数可以作为参数传递给另外一个函数,这是高阶函数的意义之一,我们通常会把这个函数称为回调函数。 在 JavaScript 版本的设计模式中,策略模式和命令模式等都可以用回调函数轻松实现。 回调函数是一种特殊的挂钩,我们可以把一部分易于变化的逻辑封装在回调函数里,然后把回调函数当作参数传入一个稳定和封闭的函数中。 4. 设计模式中的开放-封闭原则 4.1 发布-订阅模式 4.2 模板方法模式 4.3 策略模式 4.4 代理模式 4.5 职责链模式
all-data/3000-3999/3033-34.html
BuzzAcademy/idioms-moe-unformatted-data
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語&nbsp;</b></th><td class="ztd2">付與一笑</td></tr> <tr><th class="ztd1"><b>注音&nbsp;</b></th><td class="ztd2">ㄈㄨ<sup class="subfont">ˋ</sup> ㄩ<sup class="subfont">ˇ</sup> | ㄒ|ㄠ<sup class="subfont">ˋ</sup></td></tr> <tr><th class="ztd1"><b>漢語拼音&nbsp;</b></th><td class="ztd2"><font class="english_word">fù yǔ yī xiào</font></td></tr> <tr><th class="ztd1"><b>釋義&nbsp;</b></th><td class="ztd2"> 義參「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001360%22.%26v%3D-1" class="clink" target=_blank>付之一笑</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001360%22.%26v%3D-1" class="clink" target=_blank>付之一笑</a>」條。</font></td></tr> <tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001360%22.%26v%3D-1" class="clink" target=_blank>付之一笑</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄈㄨ<sup class="subfont">ˋ</sup> ㄓ | ㄒ|ㄠ<sup class="subfont">ˋ</sup></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">fù zhī yī xiào</font></td></tr></table><br><br></td></tr> </td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
web/template/index-4.html
seekmas/offical_and_blog_system
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <title>Adeodatus | Premium HTML template</title> <meta charset="utf-8"> <meta name="description" content="Type description of your website."> <meta name="keywords" content="Type keywords that describe your website."> <meta name="author" content="Type author or brand which has built this website."> <!-- Mobile Specific Metas ================================================== --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <!-- CSS ================================================== --> <link rel="stylesheet" href="lib/css/green.css" type="text/css" media="all"> <link rel="stylesheet" href="lib/css/queries.css" type="text/css" media="all"> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,600,700' rel='stylesheet' type='text/css'> <!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <!-- Favicons ================================================== --> <link rel="shortcut icon" href="favicon.ico"> <link rel="apple-touch-icon" href="apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="apple-touch-icon-114x114.png"> <!-- Javascripts ================================================== --> <script src="lib/js/jquery.min.js"></script> <script src="lib/js/jquery.twitter.js"></script> <script src="lib/js/jquery.menu.js"></script> <script src="lib/js/jquery.mobilemenu.js"></script> <script src="lib/js/jquery.fancybox.js"></script> <script src="lib/js/jquery.quicksand.js"></script> <script src="lib/js/jquery.tabs.js"></script> <script src="lib/js/jquery.flickr.js"></script> <script src="lib/js/jquery.easing.js"></script> <script src="lib/js/jquery.nivoslider.js"></script> <script src="lib/js/jquery.touchcarousel.js"></script> <script src="lib/js/jquery.contact.js"></script> <script src="lib/js/jquery.custom.js"></script> </head> <!-- Start Document and Body Pattern --> <body class="pat9"> <!-- Boxed Wrapper --> <div id="wrapper" class="boxed"> <!-- Header --> <div id="header"> <!-- Header Top --> <div class="container hTop"> <div class="row"> <div class="sixteen columns"> <p>Check out this new great template <a href="#">www.themeforest.net</a></p> </div> </div> </div> <hr> <!-- Logo and search bar--> <div class="container hMiddle"> <div class="row"> <div class="twelve columns"> <div id="logo"> <a href="index.html"><img src="img/Adeodatus-logo.png" alt="Adeodatus"></a> <p>Mobile ready html5 template.</p> </div> </div> <div class="four columns"> <form class="hSearchbox"> <input type="text" placeholder="Search here..." class="hSearchInput"/> <input type="submit" value="Send" class="hSearchSubmit"/> </form> </div> </div> </div> <hr> <!-- Navigation --> <div class="container hBottom"> <div class="row"> <div class="sixteen columns"> <ul id="menu"> <li><a href="index.html" class="current">Home</a> <ul> <li><a href="index-2.html">Full width slider</a></li> <li><a href="index-3.html">No slider</a></li> <li><a href="index-4.html">Touch carousel</a></li> <li><a href="index-5.html">Alternative layout</a></li> </ul> </li> <li><a href="about-us.html">About us</a> <ul> <li><a href="about-us.html">About us</a></li> <li><a href="#">Second drop down</a> <ul> <li><a href="#">Easy to edit</a></li> <li><a href="#">Awesome design</a></li> </ul> </li> </ul> </li> <li><a href="typography.html">Features</a> <ul> <li><a href="typography.html">Typography</a></li> <li><a href="columns.html">Columns</a></li> <li><a href="cool-icons.html">Cool icons</a></li> <li><a href="featured-boxes.html">Featured boxes</a></li> <li><a href="list-styles.html">Lists styles</a></li> <li><a href="pricing-columns.html">Pricing columns</a></li> <li><a href="tabs-and-toggles.html">Tabs and toggles</a></li> <li><a href="buttons-and-boxes.html">Buttons and boxes</a></li> <li><a href="images.html">Images</a></li> </ul> </li> <li><a href="portfolio-4.html">Portfolio</a> <ul> <li><a href="portfolio-4.html">4 Columns - Polaroid</a></li> <li><a href="portfolio-3.html">3 Columns - Circle</a></li> <li><a href="portfolio-2.html">2 Columns - Rounded</a></li> <li><a href="portfolio-item.html">Portfolio item</a></li> </ul> </li> <li><a href="our-blog.html">Our blog</a> <ul> <li><a href="our-blog.html">Blog category</a></li> <li><a href="left-sidebar.html">Left sidebar</a></li> <li><a href="single-post.html">Single post</a></li> </ul> </li> <li><a href="contact.html">Contact</a></li> </ul> </div> </div> </div> </div> <!-- Insider --> <div id="insider"> <!-- Touch carousel --> <div class="container"> <div class="carousel touchcarousel grey-blue"> <div class="touchcarousel-container blog"> <!-- Carousel item --> <div class="four columns touchcarousel-item post text-center"> <img src="img/220x160.gif" alt="Post" class="image-rounded"> <h4>John Doe</h4> <p>dsdsdsdsds</p> </div> <!-- Carousel item --> <div class="four columns touchcarousel-item post text-center"> <img src="img/220x160.gif" alt="Post" class="image-rounded"> <h4>John Doe</h4> <p>dsdsdsdsds</p> </div> <!-- Carousel item --> <div class="four columns touchcarousel-item post text-center"> <img src="img/220x160.gif" alt="Post" class="image-rounded"> <h4>John Doe</h4> <p>dsdsdsdsds</p> </div> <!-- Carousel item --> <div class="four columns touchcarousel-item post text-center"> <img src="img/220x160.gif" alt="Post" class="image-rounded"> <h4>John Doe</h4> <p>dsdsdsdsds</p> </div> <!-- Carousel item --> <div class="four columns touchcarousel-item post text-center"> <img src="img/220x160.gif" alt="Post" class="image-rounded"> <h4>John Doe</h4> <p>dsdsdsdsds</p> </div> </div> </div> </div> </div> <!-- Content --> <div class="main-wrapper"> <div class="container"> <div class="row"> <div class="one-third column featured-box"> <span class="icon docs"></span> <h4><strong>Extended</strong> documentation.</h4> <p>Well-written documentation with any tweek you can imagine.</p> </div> <div class="one-third column featured-box"> <span class="icon browser"></span> <h4><strong>Responsive</strong> design.</h4> <p>Developed to fit all sizes, from desktop monitors to mobile phones.</p> </div> <div class="one-third column featured-box"> <span class="icon pictures"></span> <h4><strong>PSD</strong> included.</h4> <p>You get all design files which you can use for advanced customisation.</p> </div> <div class="sixteen columns"><hr class="spacer"></div> </div> </div> <div class="full-width-container light text-center"> <div class="container"> <div class="row"> <div class="sixteen columns"> <h2>Professional template created with latest techniques.</h2> <p>Adeodatus is incredibly powerfull HTML5 template with creative and simple design.<br/> Can be used for busines, portfolio, agency etc.</p> <a href="http://themeforest.net/user/Voodoo-pixel?ref=Voodoo-pixel" target="_blank" class="button">Buy it on ThemeForest</a> </div> </div> </div> </div> <div class="container"> <div class="row"> <div class="eight columns"> <div class="underline-heading"> <h4>About Adeodatus.</h4> </div> <p>Sleek, unique and powerful template for better and professionall presentation.</p> <ul> <li class="code">HTML5 & CSS3 Techniques.</li> <li class="monitor">Responsive Design.</li> <li class="monitor">Browser Compatible.</li> <li class="support">Extended Documantation.</li> </ul> <a href="#" class="button">Read more</a> </div> <div class="eight columns"> <div class="underline-heading"> <h4>Testimonials.</h4> </div> <blockquote> <p>Great documentation and superb customer service! Thank you!</p> <cite>Pixelcamp</cite> </blockquote> <blockquote> <p>Liked the design very much, great Job, Especially on Typography Good luck with sales.</p> <cite>Bedros</cite> </blockquote> </div> <div class="sixteen columns"><hr class="spacer"></div> </div> <div class="row"> <div class="sixteen columns"> <div class="underline-heading"> <h4><strong>Latest</strong> works.</h4> </div> <p>Maecenas a mi nibh, eu euismod orci. Vivamus viverra lacus vitae tortor molestie malesuada.</p> </div> <!-- Carousel --> <div class="carousel touchcarousel grey-blue"> <div class="touchcarousel-container"> <!-- Item --> <div class="four columns touchcarousel-item"> <img src="img/220x160.gif" alt="Post" class="image-polaroid"> <h4><a href="#">Vivamus viverra lacus.</a></h4> <p>Integer libero lectus, porta acean pulvinar ac, facilisis non arcu.</p> </div> <!-- Item --> <div class="four columns touchcarousel-item"> <img src="img/220x160.gif" alt="Post" class="image-polaroid"> <h4><a href="#">Vivamus viverra lacus.</a></h4> <p>Integer libero lectus, porta acean pulvinar ac, facilisis non arcu.</p> </div> <!-- Item --> <div class="four columns touchcarousel-item"> <img src="img/220x160.gif" alt="Post" class="image-polaroid"> <h4><a href="#">Vivamus viverra lacus.</a></h4> <p>Integer libero lectus, porta acean pulvinar ac, facilisis non arcu.</p> </div> <!-- Item --> <div class="four columns touchcarousel-item"> <img src="img/220x160.gif" alt="Post" class="image-polaroid"> <h4><a href="#">Vivamus viverra lacus.</a></h4> <p>Integer libero lectus, porta acean pulvinar ac, facilisis non arcu.</p> </div> <!-- Item --> <div class="four columns touchcarousel-item"> <img src="img/220x160.gif" alt="Post" class="image-polaroid"> <h4><a href="#">Vivamus viverra lacus.</a></h4> <p>Integer libero lectus, porta acean pulvinar ac, facilisis non arcu.</p> </div> </div> </div> </div> </div> </div> <!-- Footer --> <div id="footer"> <div class="container"> <div class="row"> <div class="one-third column"> <h4>Adeodatus.</h4> <p>Sleek, unique and powerful template for better and professionall presentation.<br/> Adeodatus template can be found only on Themeforest.net.</p> </div> <div class="one-third column"> <h4>Latest from Twitter.</h4> <div class="tweet"></div> </div> <div class="one-third column"> <h4>Flickr Feed.</h4> <div class="flickr"></div> </div> </div> </div> </div> <!-- Copyright --> <div id="copyright"> <div class="container"> <div class="row"> <div class="eight columns copy-info"> <p>&copy; 2012 Adeodatus. All rights reserved.<br/> Theme by <a href="http://themeforest.net/user/Voodoo-pixel?ref=Voodoo-pixel" target="_blank">VoodooPixel</a>.</p> </div> <div class="eight columns copy-social"> <ul class="social-icons"> <li class="vimeo"><a href="#"></a></li> <li class="twitter"><a href="#"></a></li> <li class="facebook"><a href="#"></a></li> <li class="pinterest"><a href="#"></a></li> <li class="dribbble"><a href="#"></a></li> <li class="behance"><a href="#"></a></li> </ul> </div> </div> </div> </div> <!-- End Boxed Wrapper --> </div> </body> </html>
jerseyServer/src/main/webapp/index.html
kazenetu/-jaxrs-angular
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>Sample</title> <meta name="description" content=""> <meta name="author" content=""> <link rel="stylesheet" href="assets/lib/bootstrap/css/bootstrap.min.css"> </head> <body ng-app="App"> <div ng-view></div> <script src="assets/lib/jquery.min.js"></script> <script src="assets/lib/angular/angular.min.js"></script> <script src="assets/lib/angular/angular-resource.min.js"></script> <script src="assets/lib/angular/angular-route.min.js"></script> <script src="assets/app.js"></script> <script src="assets/service/userService.js"></script> <script src="assets/service/webApiService.js"></script> <script src="assets/controller/loginController.js"></script> <script src="assets/controller/headerController.js"></script> <script src="assets/controller/searchSample.js"></script> </body> </html>
_includes/default.html
TonyLyu/TonyLyu.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{{ page.title }}</title> {% if page.description %} <meta name="description" content="{{ page.description }}"> {% endif %} <meta name="author" content="{{ site.author.name }}"> <!-- Enable responsive viewport --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Le styles --> <link href="{{ site.BASE_PATH }}/assets/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <link href="{{ site.BASE_PATH }}/assets/resources/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <link href="{{ site.BASE_PATH }}/assets/resources/syntax/syntax.css" rel="stylesheet"> <link href="{{ site.BASE_PATH }}/assets/css/style.css" rel="stylesheet"> <!-- Le fav and touch icons --> <!-- Update these with your own images <link rel="shortcut icon" href="images/favicon.ico"> <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> --> <link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="{{ site.BASE_PATH }}/feed.xml"> </head> <body> <nav class="navbar navbar-default visible-xs" role="navigation"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> {% if site.author.github %} <a type="button" class="navbar-toggle nav-link" href="http://github.com/{{ site.author.github }}"> <i class="fa fa-github"></i> </a> {% endif %} {% if site.author.twitter %} <a type="button" class="navbar-toggle nav-link" href="http://twitter.com/{{ site.author.twitter }}"> <i class="fa fa-twitter"></i> </a> {% endif %} {% if site.author.email %} <a type="button" class="navbar-toggle nav-link" href="mailto:{{ site.author.email }}"> <i class="fa fa-envelope"></i> </a> {% endif %} <a class="navbar-brand" href="{{ site.BASE_PATH }}/"> <img src="//www.gravatar.com/avatar/{{site.author.email_md5}}?s=35" class="img-circle" /> {{ site.title }} </a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li class="active"><a href="{{ site.BASE_PATH }}/">Home</a></li> <li><a href="{{ site.BASE_PATH}}/{{ site.categories_path }}">Categories</a></li> <li><a href="{{ site.BASE_PATH}}/{{ site.tags_path }}">Tags</a></li> </ul> </div><!-- /.navbar-collapse --> </nav> <!-- nav-menu-dropdown --> <div class="btn-group hidden-xs" id="nav-menu"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-bars"></i> </button> <ul class="dropdown-menu" role="menu"> <li><a href="{{ site.BASE_PATH}}/"><i class="fa fa-home"></i>Home</a></li> <li><a href="{{ site.BASE_PATH}}/{{ site.categories_path }}"><i class="fa fa-folder"></i>Categories</a></li> <li><a href="{{ site.BASE_PATH}}/{{ site.tags_path }}"><i class="fa fa-tags"></i>Tags</a></li> <li class="divider"></li> <li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li> </ul> </div> <div class="col-sm-3 sidebar hidden-xs" style="{% if site.sidebar_background_image %}background: url({{site.sidebar_background_image}}) no-repeat !important;{% endif %}"> {% include sidebar.html %} </div> <div class="col-sm-9 col-sm-offset-3"> {{ content }} <footer> <hr/> <p> &copy; {{ site.time | date: '%Y' }} {{ site.author.name }} </p> </footer> </div> <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/jquery/jquery.min.js"></script> <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/bootstrap/js/bootstrap.min.js"></script> <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/js/app.js"></script> </body> </html>
clean/Linux-x86_64-4.05.0-2.0.6/released/8.7.0/tarski-geometry/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>tarski-geometry: Not compatible</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.7.0 / tarski-geometry - 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> tarski-geometry <small> 8.9.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2020-07-31 07:04:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-07-31 07:04:33 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.12 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.7.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/http://dpt-info.u-strasbg.fr/~narboux/tarski.html&quot; license: &quot;GPL&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/TarskiGeometry&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.9&quot; &amp; &lt; &quot;8.10~&quot;} ] tags: [ &quot;keyword: geometry&quot; &quot;keyword: Tarski&#39;s geometry&quot; &quot;keyword: congruence&quot; &quot;keyword: between property&quot; &quot;keyword: orthogonality&quot; &quot;category: Mathematics/Geometry/General&quot; &quot;date: 2006-03&quot; ] authors: [ &quot;Julien Narboux &lt;Julien.Narboux@dpt-info.u-strasbg.fr&gt; [http://dpt-info.u-strasbg.fr/~narboux/]&quot; ] bug-reports: &quot;https://github.com/coq-contribs/tarski-geometry/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/tarski-geometry.git&quot; synopsis: &quot;Tarski&#39;s geometry&quot; description: &quot;&quot;&quot; This is a formalization of geometry using a simplified version of Tarski&#39;s axiom system. The development contains a formalization of the chapters 1-8 of the book &quot;Metamathematische Methoden in der Geometrie&quot; by W. Schwabhäuser, W. Szmielew and A. Tarski. This includes between properties, congruence properties, midpoint, perpendicular lines, point reflection, orthogonality ... This development aims to be a low level complement for Frédérique Guilhot&#39;s development about high-school geometry. For more information see: Mechanical Theorem Proving in Tarski&#39;s geometry in the post-proceeding of ADG 2006, F. Botana and T. Recio (Eds.), LNAI 4869, pages 139-156, 2007.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/tarski-geometry/archive/v8.9.0.tar.gz&quot; checksum: &quot;md5=93ce625e730edb148cd38a1582b7b0af&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-tarski-geometry.8.9.0 coq.8.7.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.7.0). The following dependencies couldn&#39;t be met: - coq-tarski-geometry -&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-tarski-geometry.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>
src/article-size-crud/create.html
lioenel/bateeq-ui
<template> <h3>Create new Article Size</h3> <require from="./data-form"></require> <block> <data-form data.bind="data" error.bind="error"></data-form> <hr/><div class="btn-group pull-right"> <button class="btn btn-default" click.delegate="list()">Back</button> <button class="btn btn-success" click.delegate="save()">Save</button> </div> </block> </template>
public/views/frontend.html
jessemillar/byudzhet
{{define "frontend"}} <!DOCTYPE html> <html> {{template "head"}} <body onload="load()"> {{template "navigation"}} {{template "buckets"}} {{template "expenses"}} {{template "income"}} {{template "log-expense"}} {{template "log-income"}} {{template "make-bucket"}} {{template "settings"}} </body> {{template "auth0" .}} </html> {{end}}
old_blog_content/blog/geekery/xmlpresenter-printable.html
jordansissel/semicomplete.com
+++ # Imported from original pyblosxom .txt format at 2015-08-14 date = "2006-04-17T02:42:39-07:00" title = "XML Presenter now supports printable slides\n" # Marked a draft because frankly my old writing may not be worth surfacing again. # I made bad word choices and had some strong-and-closed opinions years ago. # We learn over time, eh? :) draft = true type = "old" categories = [ "old" ] tags = ["projects", "xmlpresenter", "presentations"] +++ I haven't updated the codebase available from the xmlpresenter project page in a while, but development still continues on it as I do more presentations. <p/> Today's update was to add printability to the slides. This is done by using the <code>media="print"</code> part of the &lt;link&gt; tag. <pre> &lt;link rel="stylesheet" type="text/css" media="screen,projection" href="presenter.css"/&gt; &lt;link rel="stylesheet" type="text/css" media="print" href="printview.css"/&gt; </pre> When you print, a different css will be applied than 'presenter.css' - very cool. <p/> Specific changes are: <ul> <li>all slides are shown</li> <li>slide titles use a smaller font, and lack borders</li> <li>slides with no titles are not printed </li> </ul> Useful, I suppose, if you want to print out your slides in "outline" form. <p/> Check out the Unix Basics slides and look at it with "print preview" - <a href="http://www.semicomplete.com/presentations/unix-basics/">Unix Basics slides</a>
app/index.html
skeep/runzebra
<!doctype html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Zebra</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- build:css({.tmp,app}) styles/main.css --> <link rel="stylesheet" href="styles/main.css"> <!-- endbuild --> </head> <body ng-app="zebraApp"> <!--[if lt IE 7]> <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> <![endif]--> <!--[if lt IE 9]> <script src="bower_components/es5-shim/es5-shim.js"></script> <script src="bower_components/json3/lib/json3.min.js"></script> <![endif]--> <!-- Add your site or application content here --> <div class="container-fluid" ng-view=""></div> <script src="bower_components/jquery/jquery.js"></script> <script src="bower_components/angular/angular.js"></script> <script src="bower_components/lodash/lodash.js"></script> <script src="bower_components/chance/chance.js"></script> <script src="https://cdn.firebase.com/v0/firebase.js"></script> <script type="text/javascript" src="bower_components/angularfire/angularFire.js"></script> <!-- build:js scripts/plugins.js --> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-affix.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-alert.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-dropdown.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-tooltip.js"></script>--> <script src="bower_components/bootstrap-sass/js/bootstrap-modal.js"></script> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-transition.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-button.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-popover.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-typeahead.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-carousel.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-scrollspy.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-collapse.js"></script>--> <!--<script src="bower_components/bootstrap-sass/js/bootstrap-tab.js"></script>--> <!-- endbuild --> <!-- build:js({.tmp,app}) scripts/scripts.js --> <script src="scripts/app.js"></script> <script src="scripts/controllers/main.js"></script> <script src="scripts/controllers/room.js"></script> <script src="scripts/controllers/roomManager.js"></script> <script src="scripts/services/fb.js"></script> <!-- endbuild --> </body> </html>
build/stylesheets/test.css
phatly27/cross-style
.text-center { text-align: center; } .v-text-center { cs-v-text-align: center; } .b-text-center { text-align: center; cs-v-text-align: center; } .cs-border-radius { cs-border-radius: 10px; } .cs-border-top-left-radius { cs-border-top-left-radius: 10px; } .cs-border-top-right-radius { cs-border-top-right-radius: 10px; } .cs-border-bottom-left-radius { cs-border-bottom-left-radius: 10px; } .cs-border-bottom-right-radius { cs-border-bottom-right-radius: 10px; } .cs-zoom { cs-zoom: 2; }