code
stringlengths 300
5k
| repo_name
stringlengths 7
95
| path
stringlengths 6
262
| language
stringclasses 1
value | license
stringclasses 15
values | size
int64 300
10.1k
| content
stringlengths 300
5k
|
---|---|---|---|---|---|---|
<!doctype html>
<html>
<title>commands</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../static/style.css">
<body>
<div id="wrapper">
<h1><a href="../api/commands.html">commands</a></h1> <p>npm commands</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<pre><code>npm.commands[<command>](args, callback)</code></pre>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<p>npm comes with a full set of commands, and each of the commands takes a
similar set of arguments.</p>
<p>In general, all commands on the command object take an <strong>array</strong> of positional
argument <strong>strings</strong>. The last argument to any function is a callback. Some
commands are special and take other optional arguments.</p>
<p>All commands have their own man page. See <code>man npm-<command></code> for command-line
usage, or <code>man 3 npm-<command></code> for programmatic usage.</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
</div>
<p id="footer">commands — [email protected]</p>
<script>
;(function () {
var wrapper = document.getElementById("wrapper")
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
.filter(function (el) {
return el.parentNode === wrapper
&& el.tagName.match(/H[1-6]/)
&& el.id
})
var l = 2
, toc = document.createElement("ul")
toc.innerHTML = els.map(function (el) {
var i = el.tagName.charAt(1)
, out = ""
while (i > l) {
out += "<ul>"
l ++
}
while (i < l) {
out += "</ul>"
l --
}
out += "<li><a href='#" + el.id + "'>" +
( el.innerText || el.text || el.innerHTML)
+ "</a>"
return out
}).join("\n")
toc.id = "toc"
document.body.appendChild(toc)
})()
</script>
</body></html>
| fschwiet/letscodejavascript | node_modules/npm/html/api/commands.html | HTML | mit | 1,813 | <!doctype html>
<html>
<title>commands</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../static/style.css">
<body>
<div id="wrapper">
<h1><a href="../api/commands.html">commands</a></h1> <p>npm commands</p>
<h2 id="SYNOPSIS">SYNOPSIS</h2>
<pre><code>npm.commands[<command>](args, callback)</code></pre>
<h2 id="DESCRIPTION">DESCRIPTION</h2>
<p>npm comes with a full set of commands, and each of the commands takes a
similar set of arguments.</p>
<p>In general, all commands on the command object take an <strong>array</strong> of positional
argument <strong>strings</strong>. The last argument to any function is a callback. Some
commands are special and take other optional arguments.</p>
<p>All commands have their own man page. See <code>man npm-<command></code> for command-line
usage, or <code>man 3 npm-<command></code> for programmatic usage.</p>
<h2 id="SEE-ALSO">SEE ALSO</h2>
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
</div>
<p id="footer">commands — [email protected]</p>
<script>
;(function () {
var wrapper = document.getElementById("wrapper")
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
.filter(function (el) {
return el.parentNode === wrapper
&& el.tagName.match(/H[1-6]/)
&& el.id
})
var l = 2
, toc = document.createElement("ul")
toc.innerHTML = els.map(function (el) {
var i = el.tagName.charAt(1)
, out = ""
while (i > l) {
out += "<ul>"
l ++
}
while (i < l) {
out += "</ul>"
l --
}
out += "<li><a href='#" + el.id + "'>" +
( el.innerText || el.text || el.innerHTML)
+ "</a>"
return out
}).join("\n")
toc.id = "toc"
document.body.appendChild(toc)
})()
</script>
</body></html>
|
<!DOCTYPE HTML>
<html>
<head>
<title>Gamecraft CI</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="/css/dashboard.css"/>
<script src="/webjars/jquery/1.11.1/jquery.min.js"></script>
<script src="/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js"></script>
<script src="/js/account_operations.js"></script>
<script src="/js/ui_operations.js"></script>
<script src="/js/validator.min.js"></script>
<script src="/js/lang_operations.js"></script>
<script>
checkAuthState();
setDefaultLanguage();
loadNavbar();
</script>
</head>
<body>
<div class="navbar-frame"></div>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Welcome to Gamecraft!</h1>
<div class="alert alert-success" role="alert">You are logged in as user "<script> document.write(getUsername())</script>".</div>
<p>If you have any question on Gamecraft:</p>
<ul>
<li><a href="https://github.com/iMartinezMateu/gamecraft/issues?state=open" target="_blank" rel="noopener" >Gamecraft bug tracker</a></li>
<li><a href="https://github.com/iMartinezMateu/gamecraft/wiki" target="_blank" rel="noopener" >Gamecraft wiki</a></li>
</ul>
<p>
<span jhiTranslate="home.like">If you like Gamecraft, don't forget to give us a star on</span> <a href="https://github.com/iMartinezMateu/gamecraft" target="_blank" rel="noopener" >GitHub</a>!
</p>
<img src="/img/gamecraft.png" alt="Gamecraft" class="center-block" />
</div>
</div> <!-- /container -->
</body>
</html> | iMartinezMateu/gamecraft | gamecraft-ui/src/main/resources/templates/dashboard.html | HTML | mit | 1,885 | <!DOCTYPE HTML>
<html>
<head>
<title>Gamecraft CI</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="/webjars/bootstrap/3.3.7-1/css/bootstrap.min.css"/>
<link rel="stylesheet" href="/css/dashboard.css"/>
<script src="/webjars/jquery/1.11.1/jquery.min.js"></script>
<script src="/webjars/bootstrap/3.3.7-1/js/bootstrap.min.js"></script>
<script src="/js/account_operations.js"></script>
<script src="/js/ui_operations.js"></script>
<script src="/js/validator.min.js"></script>
<script src="/js/lang_operations.js"></script>
<script>
checkAuthState();
setDefaultLanguage();
loadNavbar();
</script>
</head>
<body>
<div class="navbar-frame"></div>
<div class="container">
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Welcome to Gamecraft!</h1>
<div class="alert alert-success" role="alert">You are logged in as user "<script> document.write(getUsername())</script>".</div>
<p>If you have any question on Gamecraft:</p>
<ul>
<li><a href="https://github.com/iMartinezMateu/gamecraft/issues?state=open" target="_blank" rel="noopener" >Gamecraft bug tracker</a></li>
<li><a href="https://github.com/iMartinezMateu/gamecraft/wiki" target="_blank" rel="noopener" >Gamecraft wiki</a></li>
</ul>
<p>
<span jhiTranslate="home.like">If you like Gamecraft, don't forget to give us a star on</span> <a href="https://github.com/iMartinezMateu/gamecraft" target="_blank" rel="noopener" >GitHub</a>!
</p>
<img src="/img/gamecraft.png" alt="Gamecraft" class="center-block" />
</div>
</div> <!-- /container -->
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>slickgrid-colfix-plugin example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../bower_components/slickgrid/slick.grid.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/css/smoothness/jquery-ui-1.8.16.custom.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/examples/examples.css" type="text/css" />
<style>
body {margin: 0;}
.grid {background: white; outline: 0; border: 1px solid gray;}
.slick-row.active {background-color: #fcc;}
.idx {background-color: #f2f2f2; border-right: 1px solid #aaa; text-align: right; font-size: 0.8em; padding-right: 8px;}
</style>
</head>
<body>
<div id="my-grid" class="grid" style="width: 800px; height: 400px"></div>
<script src="../bower_components/slickgrid/lib/jquery-1.7.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery-ui-1.8.16.custom.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery.event.drag-2.2.js"></script>
<script src="../bower_components/slickgrid/slick.core.js"></script>
<script src="../bower_components/slickgrid/slick.grid.js"></script>
<script src="../dist/slick.colfix.js"></script>
<script>
/** columns defination */
var columns = [
{id: '#', name: '', field: 'idx', width: 50, cssClass: 'idx'},
{id: 'col1', name: 'col 1', field: 'col1', width: 50},
{id: 'col2', name: 'col 2', field: 'col2', width: 80},
{id: 'col3', name: 'col 3', field: 'col3', width: 100},
{id: 'col4', name: 'col 4', field: 'col4', width: 200},
{id: 'col5', name: 'col 5', field: 'col5', width: 50},
{id: 'col6', name: 'col 6', field: 'col6', width: 300},
{id: 'col7', name: 'col 7', field: 'col7', width: 100},
{id: 'col8', name: 'col 8', field: 'col8', width: 200},
{id: 'col9', name: 'col 9', field: 'col9', width: 100}
];
/** grid options */
var options = {
enableColumnReorder: false,
explicitInitialization: true
};
/** data */
var data = [];
for (var i = 0; i < 500; i++) {
data[i] = {
idx: i,
col1: 'col 1-' + i,
col2: 'col 2-' + i,
col3: 'col 3-' + i,
col4: 'col 4-' + i,
col5: 'col 5-' + i,
col6: 'col 6-' + i,
col7: 'col 7-' + i,
col8: 'col 8-' + i,
col9: 'col 9-' + i
};
}
/** SlickGrid */
var grid = new Slick.Grid('#my-grid', data, columns, options);
// register colfix plguin
grid.registerPlugin(new Slick.Plugins.ColFix('#'));
// initialize
grid.init();
</script>
</body>
</html>
| keik/slickgrid-colfix-plugin | examples/basic-explicitinit.html | HTML | mit | 2,886 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>slickgrid-colfix-plugin example</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../bower_components/slickgrid/slick.grid.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/css/smoothness/jquery-ui-1.8.16.custom.css" type="text/css" />
<link rel="stylesheet" href="../bower_components/slickgrid/examples/examples.css" type="text/css" />
<style>
body {margin: 0;}
.grid {background: white; outline: 0; border: 1px solid gray;}
.slick-row.active {background-color: #fcc;}
.idx {background-color: #f2f2f2; border-right: 1px solid #aaa; text-align: right; font-size: 0.8em; padding-right: 8px;}
</style>
</head>
<body>
<div id="my-grid" class="grid" style="width: 800px; height: 400px"></div>
<script src="../bower_components/slickgrid/lib/jquery-1.7.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery-ui-1.8.16.custom.min.js"></script>
<script src="../bower_components/slickgrid/lib/jquery.event.drag-2.2.js"></script>
<script src="../bower_components/slickgrid/slick.core.js"></script>
<script src="../bower_components/slickgrid/slick.grid.js"></script>
<script src="../dist/slick.colfix.js"></script>
<script>
/** columns defination */
var columns = [
{id: '#', name: '', field: 'idx', width: 50, cssClass: 'idx'},
{id: 'col1', name: 'col 1', field: 'col1', width: 50},
{id: 'col2', name: 'col 2', field: 'col2', width: 80},
{id: 'col3', name: 'col 3', field: 'col3', width: 100},
{id: 'col4', name: 'col 4', field: 'col4', width: 200},
{id: 'col5', name: 'col 5', field: 'col5', width: 50},
{id: 'col6', name: 'col 6', field: 'col6', width: 300},
{id: 'col7', name: 'col 7', field: 'col7', width: 100},
{id: 'col8', name: 'col 8', field: 'col8', width: 200},
{id: 'col9', name: 'col 9', field: 'col9', width: 100}
];
/** grid options */
var options = {
enableColumnReorder: false,
explicitInitialization: true
};
/** data */
var data = [];
for (var i = 0; i < 500; i++) {
data[i] = {
idx: i,
col1: 'col 1-' + i,
col2: 'col 2-' + i,
col3: 'col 3-' + i,
col4: 'col 4-' + i,
col5: 'col 5-' + i,
col6: 'col 6-' + i,
col7: 'col 7-' + i,
col8: 'col 8-' + i,
col9: 'col 9-' + i
};
}
/** SlickGrid */
var grid = new Slick.Grid('#my-grid', data, columns, options);
// register colfix plguin
grid.registerPlugin(new Slick.Plugins.ColFix('#'));
// initialize
grid.init();
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>WebApp</title>
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link href="WebApp.Client.styles.css" rel="stylesheet" />
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
</head>
<body>
<div id="app">Loading...</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
</body>
</html>
| mkjeff/secs4net | samples/WebApp/Client/wwwroot/index.html | HTML | mit | 921 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>WebApp</title>
<base href="/" />
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link href="WebApp.Client.styles.css" rel="stylesheet" />
<link href="manifest.json" rel="manifest" />
<link rel="apple-touch-icon" sizes="512x512" href="icon-512.png" />
</head>
<body>
<div id="app">Loading...</div>
<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script>navigator.serviceWorker.register('service-worker.js');</script>
</body>
</html>
|
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Blog | Guilherme Matheus Costa</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="/css/essentials.min.css" rel="stylesheet" type="text/css"/>
<meta property="og:site_name" content="Guilherme Matheus Costa"/>
</head>
<body>
<h1>Guilherme Matheus Costa</h1>
<h2>Resume</h2>
</body>
</html> | GuilhermeMatheus/GuilhermeMatheus.github.io | pages/resume.html | HTML | mit | 467 |
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
<title>Blog | Guilherme Matheus Costa</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link href="/css/essentials.min.css" rel="stylesheet" type="text/css"/>
<meta property="og:site_name" content="Guilherme Matheus Costa"/>
</head>
<body>
<h1>Guilherme Matheus Costa</h1>
<h2>Resume</h2>
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CodePen - A Pen by Justin Kams</title>
</head>
<body>
<html>
<head>
<title>The Basics of The Web and HTML</title>
</head>
<body>
<h2>The Basics of The Web and HTML</h2>
<p><em></em></p>
<p><em><h3>The Basics of the World Wide Web</h3></em>
The world wide web is a collection of computers with html files on them. The computers communcate
and share the html files when the user requests it in the browser. When a person goes to a web
page like <a href="www.google.com">www.google.com</a>, their computer sends a HTTP Request to
a server. The server finds the appropriate<b> HTML</b> document and sends it back to the user's
computer where a web browser interprets the page and displays it on the user's screen.</p>
<p><em><h3>HTML</h3></em>
<b>HTML</b> stands for <em>Hypertext Markup Language</em>. <b>HTML</b> documents form the majority of the content
on the web. <b>HTML</b> documents contain text content which describes <em>"what you see"</em> and markup
which describes <em>"how it looks"</em>. This video gives a good overview.</p>
<p><em><h3>Tags and Elements</h3></em>
<b>HTML</b> documents are made of <b>HTML</b> elements. When writing <b>HTML</b>, we tell browsers the
type of each element by using <b>HTML</b> tags. This video explains the distinction well.</p>
<p><em><h3>HTML Attributes</h3></em>
There are many attributes. One for starters is the anchor tag. The anchor tag is used to include
links in the material. These tags would be nested in the less than greater brackets, and consist
of <em>'a href="link" /a'</em>. View this webpage for a
<a href="http://www.w3schools.com/tags/tag_a.asp">description</a>.
</p>
<p><em><h3>Images</h3></em>
Images can be added to web content. These tags will again have the less than and greater than
brackets surrounding them, and consist of <em>'img src="url" alt="text"'</em>.
These tags are known as void tags and do not need content included. Also the alt attribute at
the end of the tag, diplays text in the event the image request is broken.
</p>
<p><em><h3>Whitespace</h3></em>
Browsers automatically put text on one line, unless told othrwise. To render text on multiple
lines, use the tag <em>'br'</em> which stands for break, or <em>'p'</em>, which stands for
paragraph.
</p>
<p><em><h3>Why Computers are Stupid</h3></em>
Computers are stupid because they interpret instructions literally. This makes them very
unforgiving since a small mistake by a programmer can cause huge problems in a program.</p>
<p><em><h3>Inline vs Block Elements</h3></em>
HTML elements are either inline or block. Block elements form an <em>"invisible box"</em> around the
content inside of them.</p>
<p><em><h3>HTML Document</h3></em>
Lastly a typical html document will be ordered as follows:
<ol>
<li>!DOCTYPE HTML</li>
<li>html</li>
<li>head</li>
<li>/head</li>
<li>body</li>
<li>tags 'content' /tags</li>
<li>/body</li>
<li>/html</li>
</ol>
</p>
</body>
</html>
</body>
</html> | westlyheinrich/getting-started-with-html | index.html | HTML | mit | 3,084 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CodePen - A Pen by Justin Kams</title>
</head>
<body>
<html>
<head>
<title>The Basics of The Web and HTML</title>
</head>
<body>
<h2>The Basics of The Web and HTML</h2>
<p><em></em></p>
<p><em><h3>The Basics of the World Wide Web</h3></em>
The world wide web is a collection of computers with html files on them. The computers communcate
and share the html files when the user requests it in the browser. When a person goes to a web
page like <a href="www.google.com">www.google.com</a>, their computer sends a HTTP Request to
a server. The server finds the appropriate<b> HTML</b> document and sends it back to the user's
computer where a web browser interprets the page and displays it on the user's screen.</p>
<p><em><h3>HTML</h3></em>
<b>HTML</b> stands for <em>Hypertext Markup Language</em>. <b>HTML</b> documents form the majority of the content
on the web. <b>HTML</b> documents contain text content which describes <em>"what you see"</em> and markup
which describes <em>"how it looks"</em>. This video gives a good overview.</p>
<p><em><h3>Tags and Elements</h3></em>
<b>HTML</b> documents are made of <b>HTML</b> elements. When writing <b>HTML</b>, we tell browsers the
type of each element by using <b>HTML</b> tags. This video explains the distinction well.</p>
<p><em><h3>HTML Attributes</h3></em>
There are many attributes. One for starters is the anchor tag. The anchor tag is used to include
links in the material. These tags would be nested in the less than greater brackets, and consist
of <em>'a href="link" /a'</em>. View this webpage for a
<a href="http://www.w3schools.com/tags/tag_a.asp">description</a>.
</p>
<p><em><h3>Images</h3></em>
Images can be added to web content. These tags will again have the less than and greater than
brackets surrounding them, and consist of <em>'img src="url" alt="text"'</em>.
These tags are known as void tags and do not need content included. Also the alt attribute at
the end of the tag, diplays text in the event the image request is broken.
</p>
<p><em><h3>Whitespace</h3></em>
Browsers automatically put text on one line, unless told othrwise. To render text on multiple
lines, use the tag <em>'br'</em> which stands for break, or <em>'p'</em>, which stands for
paragraph.
</p>
<p><em><h3>Why Computers are Stupid</h3></em>
Computers are stupid because they interpret instructions literally. This makes them very
unforgiving since a small mistake by a programmer can cause huge problems in a program.</p>
<p><em><h3>Inline vs Block Elements</h3></em>
HTML elements are either inline or block. Block elements form an <em>"invisible box"</em> around the
content inside of them.</p>
<p><em><h3>HTML Document</h3></em>
Lastly a typical html document will be ordered as follows:
<ol>
<li>!DOCTYPE HTML</li>
<li>html</li>
<li>head</li>
<li>/head</li>
<li>body</li>
<li>tags 'content' /tags</li>
<li>/body</li>
<li>/html</li>
</ol>
</p>
</body>
</html>
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<title>JAVASCRIPT BASICS</title>
<meta charset="UTF-8">
<link href="../styles/main.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<link rel="stylesheet" href="styles/main.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Fredericka+the+Great" rel="stylesheet">
</head>
<body>
<h1>JAVASCRIPT BASICS</h1>
<div class="container">
<h4>Technical Blog Part Four</h4>
<h5>Terminology: "Learning the Lingo"</h5>
<strong>How does JavaScript compare to HTML and CSS?</strong>
<p>
<strong><em>JavaScript</em></strong> compares differently to HTML and CSS as it is used for website functionality, this means it is able to process data and tells a page how to behave, where as HTML dictates structure, i.e. how the contents is divided, and CSS dictates style, i.e. how the page looks.
</p>
<strong> Explain control flow and loops using an example process from everyday life.</strong>
<p>
<strong><em>Control flow</em></strong> is the order in which the computer executes statements. <em>Loops</em> offer a quick and easy way to do something repeatedly, changing the control flow of the code. An example of this in daily life would be the process of waking up. The control flow when you wake up is that your alarm goes off, you turn alarm off, you wake up and you take a shower. However as we all know we like to snooze so sometimes when our alarm goes off we will snooze and go back to bed. A loop would then check that we haven't woken up and so the code to take a shower will not run until the condition of us waking up is met. If we are already awake when the alarm goes off the loop will not run at all as the condition has been met.
</p>
<strong>Explain the difference between accessing data from arrays and objects</strong>
<p>
The difference between accessing data from arrays and objects is that data from an array can only be accessed through bracket notation where as data from an object can be accessed with bracket and dot notation. Also I think arrays are ordered so that you can only add/remove the first and last element where as you can add/remove or modify any property within an object as long as you know the property name.
</p>
<strong>Explain what functions are and why they are useful</strong>
<p>
<strong><em>Functions</em></strong> are a way for us to give instructions to the computer more efficiently. Imagine us doing a daily task such as cooking. Our Ingredients(inputs) and meal(output) would differ but our method i.e. cook will be the same. Functions let us tell the computer to perform a set of instructions, without typing it over and over again, we just give it different inputs to get the corresponding output.
</p>
</div>
</body>
<footer>
<p>
<a href="../tblog.html">Back</a>
</p>
</footer>
</html>
| amandahogan/amandahogan.github.io | blog/t4-javascript-basics.html | HTML | mit | 3,202 | <!DOCTYPE html>
<html>
<head>
<title>JAVASCRIPT BASICS</title>
<meta charset="UTF-8">
<link href="../styles/main.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css">
<link rel="stylesheet" href="styles/main.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Fredericka+the+Great" rel="stylesheet">
</head>
<body>
<h1>JAVASCRIPT BASICS</h1>
<div class="container">
<h4>Technical Blog Part Four</h4>
<h5>Terminology: "Learning the Lingo"</h5>
<strong>How does JavaScript compare to HTML and CSS?</strong>
<p>
<strong><em>JavaScript</em></strong> compares differently to HTML and CSS as it is used for website functionality, this means it is able to process data and tells a page how to behave, where as HTML dictates structure, i.e. how the contents is divided, and CSS dictates style, i.e. how the page looks.
</p>
<strong> Explain control flow and loops using an example process from everyday life.</strong>
<p>
<strong><em>Control flow</em></strong> is the order in which the computer executes statements. <em>Loops</em> offer a quick and easy way to do something repeatedly, changing the control flow of the code. An example of this in daily life would be the process of waking up. The control flow when you wake up is that your alarm goes off, you turn alarm off, you wake up and you take a shower. However as we all know we like to snooze so sometimes when our alarm goes off we will snooze and go back to bed. A loop would then check that we haven't woken up and so the code to take a shower will not run until the condition of us waking up is met. If we are already awake when the alarm goes off the loop will not run at all as the condition has been met.
</p>
<strong>Explain the difference between accessing data from arrays and objects</strong>
<p>
The difference between accessing data from arrays and objects is that data from an array can only be accessed through bracket notation where as data from an object can be accessed with bracket and dot notation. Also I think arrays are ordered so that you can only add/remove the first and last element where as you can add/remove or modify any property within an object as long as you know the property name.
</p>
<strong>Explain what functions are and why they are useful</strong>
<p>
<strong><em>Functions</em></strong> are a way for us to give instructions to the computer more efficiently. Imagine us doing a daily task such as cooking. Our Ingredients(inputs) and meal(output) would differ but our method i.e. cook will be the same. Functions let us tell the computer to perform a set of instructions, without typing it over and over again, we just give it different inputs to get the corresponding output.
</p>
</div>
</body>
<footer>
<p>
<a href="../tblog.html">Back</a>
</p>
</footer>
</html>
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Potlatch!</title>
<link href="./static/css/skeleton.css" rel="stylesheet">
<link href="./static/css/style.css" rel="stylesheet">
</head>
<body>
<div id="potlatch"></div>
<script src="./static/js/potlatch.js"></script>
<script type="text/javascript">
var node = document.getElementById("potlatch");
var flags = {
itemsUrl: "./items.json"
};
Elm.Main.embed(node, flags);
</script>
</body>
</html>
| rafikdraoui/potlatch | index.html | HTML | mit | 527 | <!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Potlatch!</title>
<link href="./static/css/skeleton.css" rel="stylesheet">
<link href="./static/css/style.css" rel="stylesheet">
</head>
<body>
<div id="potlatch"></div>
<script src="./static/js/potlatch.js"></script>
<script type="text/javascript">
var node = document.getElementById("potlatch");
var flags = {
itemsUrl: "./items.json"
};
Elm.Main.embed(node, flags);
</script>
</body>
</html>
|
<!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="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<title>KISSY Combobox Demo</title>
<link href="/kissy/src/css/src/dpl/base.css" rel="stylesheet"/>
<link href="assets/dpl.css" rel="stylesheet"/>
<link href="../menu/assets/dpl.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<h1>KISSY Combobox</h1>
</div>
<script src="/kissy/build/seed.js"></script>
<script>
KISSY.use("menu", function (S, Menu) {
new Menu({
width:200,
render:'.container',
listeners:{
"click":function (e) {
var h;
if (h = e.target.get("href")) {
window.open(h);
}
}
},
children:[
{
content:"dpl",
href:'demo/dpl/demo.html'
},
{
content:'other',
xclass:'submenu',
menu:{
children:[
{
content:'简单静态使用',
href:'demo/other/static-basic.html'
},
{
content:'简单动态使用',
href:'demo/other/xhr-basic.html'
},
{
content:'简单 combobox',
href:'demo/other/combobox.html'
},
{
content:'taobao 首页模式',
href:'demo/other/fp.html'
},
{
content:'gmail 模式',
href:'demo/other/gmail.html'
},
{
content:'gmail 光标跟随模式',
href:'demo/other/at.html'
},
{
content:'weibo 光标跟随模式',
href:'demo/other/at-weibo.html'
}
]
}
}
]
}).render();
});
</script>
</body>
</html> | 007slm/kissy | src/combobox/demo.html | HTML | mit | 2,727 | <!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="apple-mobile-web-app-capable" content="yes">
<meta name="apple-touch-fullscreen" content="yes">
<title>KISSY Combobox Demo</title>
<link href="/kissy/src/css/src/dpl/base.css" rel="stylesheet"/>
<link href="assets/dpl.css" rel="stylesheet"/>
<link href="../menu/assets/dpl.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<h1>KISSY Combobox</h1>
</div>
<script src="/kissy/build/seed.js"></script>
<script>
KISSY.use("menu", function (S, Menu) {
new Menu({
width:200,
render:'.container',
listeners:{
"click":function (e) {
var h;
if (h = e.target.get("href")) {
window.open(h);
}
}
},
children:[
{
content:"dpl",
href:'demo/dpl/demo.html'
},
{
content:'other',
xclass:'submenu',
menu:{
children:[
{
content:'简单静态使用',
href:'demo/other/static-basic.html'
},
{
content:'简单动态使用',
href:'demo/other/xhr-basic.html'
},
{
content:'简单 combobox',
href:'demo/other/combobox.html'
},
{
content:'taobao 首页模式',
href:'demo/other/fp.html'
},
{
content:'gmail 模式',
href:'demo/other/gmail.html'
},
{
content:'gmail 光标跟随模式',
href:'demo/other/at.html'
},
{
content:'weibo 光标跟随模式',
href:'demo/other/at-weibo.html'
}
]
}
}
]
}).render();
});
</script>
</body>
</html> |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W30206_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page31.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 165px; margin-top: 220px;">
<p class="styleSans428.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">238% A??? AMEN; R003 ROAD LOCATION PLAT CONTINENTAL RESOURCES INC. <br/>SECTIONS 4, T152N, R99W MCKENZIE COUNTY, NORTH DAKOTA <br/>LAWRENCE & ULA W/DDEL - 57/25E7/4 SECTION 4 | 440.0 FEET 0/? 26.67 RODS t <br/>‘ 7 — 2 N 02' 36: 16: 77.1’ I 2 — 3 N 64' 10, 28” E 268.; ;3—4 N44'14 74 94.2 <br/>I I <br/> <br/>I I m ...... ELI <br/>BOULDER 2—4H BOULDER 3—4H1 <br/>N 87’ 33"44” w 7394.8 <br/>I CERT/FY THAT THIS PLAT CORRECTLY REPRESENTS PERSON AUTHORIZING SURVEY; WORK PEREQRMED BY ME OR UNDER MY RESPONSIBLE CHAD NE WBY <br/>BASIS OF BEAR/N0: TRUE NORTH <br/>BROS! ENC/WEIRIJVG' IJVCI <br/>BOX 357 BOWMAN, ND. 58623 PHONE: 70]—523~334O FAX: 701—523—5243 <br/>PROJECT NO. 12—10 <br/> </p>
</div>
<div style="position: absolute; margin-left: 2530px; margin-top: 330px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
</body>
</html>
| datamade/elpc_bakken | ocr_extracted/W30206_text/page32.html | HTML | mit | 1,685 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W30206_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page31.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 165px; margin-top: 220px;">
<p class="styleSans428.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">238% A??? AMEN; R003 ROAD LOCATION PLAT CONTINENTAL RESOURCES INC. <br/>SECTIONS 4, T152N, R99W MCKENZIE COUNTY, NORTH DAKOTA <br/>LAWRENCE & ULA W/DDEL - 57/25E7/4 SECTION 4 | 440.0 FEET 0/? 26.67 RODS t <br/>‘ 7 — 2 N 02' 36: 16: 77.1’ I 2 — 3 N 64' 10, 28” E 268.; ;3—4 N44'14 74 94.2 <br/>I I <br/> <br/>I I m ...... ELI <br/>BOULDER 2—4H BOULDER 3—4H1 <br/>N 87’ 33"44” w 7394.8 <br/>I CERT/FY THAT THIS PLAT CORRECTLY REPRESENTS PERSON AUTHORIZING SURVEY; WORK PEREQRMED BY ME OR UNDER MY RESPONSIBLE CHAD NE WBY <br/>BASIS OF BEAR/N0: TRUE NORTH <br/>BROS! ENC/WEIRIJVG' IJVCI <br/>BOX 357 BOWMAN, ND. 58623 PHONE: 70]—523~334O FAX: 701—523—5243 <br/>PROJECT NO. 12—10 <br/> </p>
</div>
<div style="position: absolute; margin-left: 2530px; margin-top: 330px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
</body>
</html>
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W21828_extracted</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page42.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 55px; margin-top: 110px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 0px; margin-top: 275px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 219px; margin-top: 137px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 247px; margin-top: 440px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">TRIANGLE <br/>PETROLEUM CORPORATION </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 715px;">
<p class="styleSans19.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Triangle Petroleum Corporation <br/>Bravo Prospect Gullickson Trust 150-101-36-25 Gullickson Trust 150-101-36-25-4H <br/>Gullickson Trust 150-101-36-25-4H </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 1292px;">
<p class="styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Plan: Plan #1_Triang|e Petroleum </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 1595px;">
<p class="styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Standard Planning Report - Geographic <br/>10 January, 2012 </p>
</div>
</body>
</html>
| datamade/elpc_bakken | ocr_extracted/W21828_text/page43.html | HTML | mit | 2,297 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W21828_extracted</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page42.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 55px; margin-top: 110px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 0px; margin-top: 275px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 219px; margin-top: 137px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 247px; margin-top: 440px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">TRIANGLE <br/>PETROLEUM CORPORATION </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 715px;">
<p class="styleSans19.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Triangle Petroleum Corporation <br/>Bravo Prospect Gullickson Trust 150-101-36-25 Gullickson Trust 150-101-36-25-4H <br/>Gullickson Trust 150-101-36-25-4H </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 1292px;">
<p class="styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Plan: Plan #1_Triang|e Petroleum </p>
</div>
<div style="position: absolute; margin-left: 495px; margin-top: 1595px;">
<p class="styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Standard Planning Report - Geographic <br/>10 January, 2012 </p>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Video Player</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<div class="srt"></div>
<div style="float:right; padding: 10px;">Events: <ol class="events" style="height: 390px; overflow: scroll;"></ol></div>
<div id="video-container"></div>
<div id="youtube-video-container"></div>
<hr />
<div>Current time/ Duration: <span class="time"></span>/<span class="duration"></span></div>
<div>Speed: <span class="speed"></span></div>
<div>Muted: <span class="mute"></span></div>
<div>Volume level: <span class="volume"></span></div>
<div>Quality: <span class="quality"></span></div>
<!--script type="text/javascript" src="../build/VideoPlayer.min.js"></script-->
<script>
var requirejs = {
baseUrl: 'js/',
paths: {
'jquery': '../../lib/1.7.2.jquery.min'
}
}
</script>
<script src="../lib/require.js"></script>
<script type="text/javascript">
// new s2js.Video('HTML5', $('#video-container'), {
// sources: [
// 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp4.mp4',
// 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.webm'],
// volume: 0.5,
// playbackRate: 2.0,
// autoplay: false,
// controls: true,
// loop: true,
// muted: true,
// });
</script>
<script type="text/javascript">
require([
'utils', 'player', 'controls/vcr', 'controls/play_button',
'controls/mute_button', 'controls/progress_slider', 'controls/transcripts', 'components/menu'
], function (Utils, Video, VCR, PlayButton, MuteButton, ProgressSlider, Transcripts, Menu) {
p = new Video('Youtube', $('#youtube-video-container'), {
videoId: 'M7lc1UVf-VE',
volume: 0.75,
playbackRate: 1.0,
autoplay: 0,
controls: 1,
loop: 1,
muted: true,
plugins: [
VCR,
PlayButton,
MuteButton,
ProgressSlider,
Transcripts,
Menu
]
});
var d = document.getElementById('s2js-player-0');
var updateEvent = function (event) {
$('.events').append('<li>' + event + '</li>')
};
d.addEventListener('timeupdate', function () {
$('.time').html(Utils.Utils.secondsToTimecode(p.currentTime));
});
d.addEventListener('durationchange', function () {
$('.duration').html(Utils.Utils.secondsToTimecode(p.duration));
});
d.addEventListener('volumechange', function () {
$('.volume').html(p.volume);
$('.mute').html(p.muted.toString());
});
d.addEventListener('ratechange', function () {
$('.speed').html(p.playbackRate);
});
d.addEventListener('qualitychange', function () {
$('.quality').html(p.playbackQuality);
});
['canplay', 'ratechange', 'loadedmetadata', 'loadeddata', 'durationchange',
'ended', 'play', 'playing', 'pause', 'progress', 'qualitychange', 'error',
'volumechange'
].forEach(function (eventName) {
d.addEventListener(eventName, function () {
updateEvent(eventName);
}, false);
});
});
</script>
</body>
</html>
| polesye/VideoPlayer | src/index.html | HTML | mit | 3,554 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Video Player</title>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body>
<div class="srt"></div>
<div style="float:right; padding: 10px;">Events: <ol class="events" style="height: 390px; overflow: scroll;"></ol></div>
<div id="video-container"></div>
<div id="youtube-video-container"></div>
<hr />
<div>Current time/ Duration: <span class="time"></span>/<span class="duration"></span></div>
<div>Speed: <span class="speed"></span></div>
<div>Muted: <span class="mute"></span></div>
<div>Volume level: <span class="volume"></span></div>
<div>Quality: <span class="quality"></span></div>
<!--script type="text/javascript" src="../build/VideoPlayer.min.js"></script-->
<script>
var requirejs = {
baseUrl: 'js/',
paths: {
'jquery': '../../lib/1.7.2.jquery.min'
}
}
</script>
<script src="../lib/require.js"></script>
<script type="text/javascript">
// new s2js.Video('HTML5', $('#video-container'), {
// sources: [
// 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.mp4.mp4',
// 'https://s3.amazonaws.com/edx-course-videos/edx-intro/edX-FA12-cware-1_100.webm'],
// volume: 0.5,
// playbackRate: 2.0,
// autoplay: false,
// controls: true,
// loop: true,
// muted: true,
// });
</script>
<script type="text/javascript">
require([
'utils', 'player', 'controls/vcr', 'controls/play_button',
'controls/mute_button', 'controls/progress_slider', 'controls/transcripts', 'components/menu'
], function (Utils, Video, VCR, PlayButton, MuteButton, ProgressSlider, Transcripts, Menu) {
p = new Video('Youtube', $('#youtube-video-container'), {
videoId: 'M7lc1UVf-VE',
volume: 0.75,
playbackRate: 1.0,
autoplay: 0,
controls: 1,
loop: 1,
muted: true,
plugins: [
VCR,
PlayButton,
MuteButton,
ProgressSlider,
Transcripts,
Menu
]
});
var d = document.getElementById('s2js-player-0');
var updateEvent = function (event) {
$('.events').append('<li>' + event + '</li>')
};
d.addEventListener('timeupdate', function () {
$('.time').html(Utils.Utils.secondsToTimecode(p.currentTime));
});
d.addEventListener('durationchange', function () {
$('.duration').html(Utils.Utils.secondsToTimecode(p.duration));
});
d.addEventListener('volumechange', function () {
$('.volume').html(p.volume);
$('.mute').html(p.muted.toString());
});
d.addEventListener('ratechange', function () {
$('.speed').html(p.playbackRate);
});
d.addEventListener('qualitychange', function () {
$('.quality').html(p.playbackQuality);
});
['canplay', 'ratechange', 'loadedmetadata', 'loadeddata', 'durationchange',
'ended', 'play', 'playing', 'pause', 'progress', 'qualitychange', 'error',
'volumechange'
].forEach(function (eventName) {
d.addEventListener(eventName, function () {
updateEvent(eventName);
}, false);
});
});
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<!-- meta information -->
<meta charset="utf-8">
<meta name="description"
content="http://feedproxy.google.com/~r/geledes/~3/EdmSLCOQs3o/" >
<meta name="author" content="Kinho">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<!-- title -->
<title>My post · Entropista</title>
<!-- icons -->
<link rel="shortcut icon" href="/public/images/favicon.ico" />
<!-- stylesheets -->
<link rel="stylesheet" href="/public/css/responsive.gs.12col.css">
<link rel="stylesheet" href="/public/css/animate.min.css">
<link rel="stylesheet" href="/public/css/main.css">
<!-- Google fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic&subset=latin-ext">
<!-- feed links -->
<link rel="alternate" href="/feed.xml" type="application/rss+xml" title="">
</head>
<body>
<div class="container amber">
<header class="top row gutters">
<div class="col span_2 center">
<!-- TODO: add baseurl to the logo link -->
<a href="" id="logo" title="Entropista"
style="background-image: url(/public/images/logo.png);"></a>
</div>
<nav class="col span_10 top-navbar">
<a href="/" title="Home"
>Home</a>
<a href="/about" title="About"
>About</a>
<a href="/NormasDeComunicaçãoViolenta" title="N.C.V."
>N.C.V.</a>
<a href="/Táticas" title="Táticas"
>Táticas</a>
<a href="/NovelaFuturista" title="Livro"
>Livro</a>
</nav>
</header>
<article class="single row gutters">
<time class="published" datetime="2015-10-12">12 October 2015</time>
<h2>My post</h2>
<p>http://feedproxy.google.com/~r/geledes/~3/EdmSLCOQs3o/</p>
</article>
<footer>
<p>
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/deed.en_US">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
</p>
</footer>
</div>
</body>
</html>
| oentropista/oentropista.github.io | _site/post/index.html | HTML | mit | 2,129 | <!DOCTYPE html>
<html>
<head>
<!-- meta information -->
<meta charset="utf-8">
<meta name="description"
content="http://feedproxy.google.com/~r/geledes/~3/EdmSLCOQs3o/" >
<meta name="author" content="Kinho">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<!-- title -->
<title>My post · Entropista</title>
<!-- icons -->
<link rel="shortcut icon" href="/public/images/favicon.ico" />
<!-- stylesheets -->
<link rel="stylesheet" href="/public/css/responsive.gs.12col.css">
<link rel="stylesheet" href="/public/css/animate.min.css">
<link rel="stylesheet" href="/public/css/main.css">
<!-- Google fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic&subset=latin-ext">
<!-- feed links -->
<link rel="alternate" href="/feed.xml" type="application/rss+xml" title="">
</head>
<body>
<div class="container amber">
<header class="top row gutters">
<div class="col span_2 center">
<!-- TODO: add baseurl to the logo link -->
<a href="" id="logo" title="Entropista"
style="background-image: url(/public/images/logo.png);"></a>
</div>
<nav class="col span_10 top-navbar">
<a href="/" title="Home"
>Home</a>
<a href="/about" title="About"
>About</a>
<a href="/NormasDeComunicaçãoViolenta" title="N.C.V."
>N.C.V.</a>
<a href="/Táticas" title="Táticas"
>Táticas</a>
<a href="/NovelaFuturista" title="Livro"
>Livro</a>
</nav>
</header>
<article class="single row gutters">
<time class="published" datetime="2015-10-12">12 October 2015</time>
<h2>My post</h2>
<p>http://feedproxy.google.com/~r/geledes/~3/EdmSLCOQs3o/</p>
</article>
<footer>
<p>
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/deed.en_US">Creative Commons Attribution-NonCommercial 4.0 International License</a>.
</p>
</footer>
</div>
</body>
</html>
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W28677_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page9.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 219px; margin-top: 1017px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1815px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 220px; margin-top: 2090px;">
<p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Choke manifold minimum 3” 5k </p>
</div>
<div style="position: absolute; margin-left: 577px; margin-top: 54px;">
<p class="styleSans58.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">11” SK psi BOP stack <br/>High Pressure <br/>. . rotating Fill-up line head <br/>- Drillingcmka _ — — <br/>Annular <br/> <br/>Preventer <br/> <br/>I Variable rams - Blind rams - <br/> m Kill line minimum 2" <br/>Drilling Spool <br/>' Spacer spool <br/>4‘ 5000 psi casing head </p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 55px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 165px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 330px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 495px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 660px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 825px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1155px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1320px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1760px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1925px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 990px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1485px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
</body>
</html>
| datamade/elpc_bakken | ocr_extracted/W28677_text/page10.html | HTML | mit | 4,191 |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W28677_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page9.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 219px; margin-top: 1017px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 302px; margin-top: 1815px;">
<p class="styleSans1.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 220px; margin-top: 2090px;">
<p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Choke manifold minimum 3” 5k </p>
</div>
<div style="position: absolute; margin-left: 577px; margin-top: 54px;">
<p class="styleSans58.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">11” SK psi BOP stack <br/>High Pressure <br/>. . rotating Fill-up line head <br/>- Drillingcmka _ — — <br/>Annular <br/> <br/>Preventer <br/> <br/>I Variable rams - Blind rams - <br/> m Kill line minimum 2" <br/>Drilling Spool <br/>' Spacer spool <br/>4‘ 5000 psi casing head </p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 55px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 165px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 330px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 495px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 660px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 825px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1155px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1320px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1760px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1925px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 990px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 2502px; margin-top: 1485px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic Example</title>
<link rel="stylesheet" href="css/base.css" />
<script src="../../asset/react/react.js"></script>
<script src="../../asset/react/react-dom.js"></script>
<script src="../../asset/react/browser.min.js"></script>
<script src="js/app/index.jsx" type="text/babel"></script>
</head>
<body>
<h1>React 允许将代码封装成组件(component),然后像插入普通 HTML 标签一样,在网页中插入这个组件。React.createClass 方法就用于生成一个组件类</h1>
<h1>组件的属性可以在组件类的 this.props 对象上获取</h1>
<h1>添加组件属性,有一个地方需要注意,就是 class 属性需要写成 className ,for 属性需要写成 htmlFor ,这是因为 class 和 for 是 JavaScript 的保留字。</h1>
<div id="message"></div>
</body>
</html>
| MR03/exercise-test-demo | demo/demo004/003.html | HTML | mit | 921 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic Example</title>
<link rel="stylesheet" href="css/base.css" />
<script src="../../asset/react/react.js"></script>
<script src="../../asset/react/react-dom.js"></script>
<script src="../../asset/react/browser.min.js"></script>
<script src="js/app/index.jsx" type="text/babel"></script>
</head>
<body>
<h1>React 允许将代码封装成组件(component),然后像插入普通 HTML 标签一样,在网页中插入这个组件。React.createClass 方法就用于生成一个组件类</h1>
<h1>组件的属性可以在组件类的 this.props 对象上获取</h1>
<h1>添加组件属性,有一个地方需要注意,就是 class 属性需要写成 className ,for 属性需要写成 htmlFor ,这是因为 class 和 for 是 JavaScript 的保留字。</h1>
<div id="message"></div>
</body>
</html>
|
<html>
<head>
<title>Terry George's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Terry George's panel show appearances</h1>
<p>Terry George has appeared in <span class="total">1</span> episodes between 2009-2009. <a href="http://www.imdb.com/name/nm313623">Terry George on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Terry_George">Terry George on Wikipedia</a>.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2009</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2009-06-26</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li>
</ol>
</div>
</body>
</html>
| slowe/panelshows | people/ne3kzguz.html | HTML | mit | 1,049 | <html>
<head>
<title>Terry George's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Terry George's panel show appearances</h1>
<p>Terry George has appeared in <span class="total">1</span> episodes between 2009-2009. <a href="http://www.imdb.com/name/nm313623">Terry George on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Terry_George">Terry George on Wikipedia</a>.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2009</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2009-06-26</strong> / <a href="../shows/loosewomen.html">Loose Women</a></li>
</ol>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>Piframe</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="viewport" content="width=device-width"/>
<script type="text/javascript" src="lib/jquery/jquery-1.12.0.min.js"></script>
<link rel="stylesheet" href="lib/owl-carousel/owl.carousel.css"/>
<link rel="stylesheet" href="lib/owl-carousel/owl.theme.css"/>
<link rel="stylesheet" href="lib/owl-carousel/owl.transitions.css">
<script src="lib/owl-carousel/owl.carousel.min.js"></script>
<script src="lib/date/date.js"></script>
<script src="lib/date/date-fr-FR.js"></script>
<link rel="stylesheet" href="lib/piframe/piframe.css"/>
<script src="lib/piframe/piframe.js"></script>
</head>
<body>
<div class="loadingContainer"></div>
<div class="owl-carousel mediaContainer"></div>
<div class="mediaTooltip"></div>
</body>
</html> | alex-estela/piframe | src/main/resources/static/index.html | HTML | mit | 913 | <!DOCTYPE html>
<html>
<head>
<title>Piframe</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="viewport" content="width=device-width"/>
<script type="text/javascript" src="lib/jquery/jquery-1.12.0.min.js"></script>
<link rel="stylesheet" href="lib/owl-carousel/owl.carousel.css"/>
<link rel="stylesheet" href="lib/owl-carousel/owl.theme.css"/>
<link rel="stylesheet" href="lib/owl-carousel/owl.transitions.css">
<script src="lib/owl-carousel/owl.carousel.min.js"></script>
<script src="lib/date/date.js"></script>
<script src="lib/date/date-fr-FR.js"></script>
<link rel="stylesheet" href="lib/piframe/piframe.css"/>
<script src="lib/piframe/piframe.js"></script>
</head>
<body>
<div class="loadingContainer"></div>
<div class="owl-carousel mediaContainer"></div>
<div class="mediaTooltip"></div>
</body>
</html> |
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>grapp-core-ajax tests</title>
<script src="../lib/web-component-tester/browser.js"></script>
</head>
<body>
<script>
WCT.loadSuites([
'basic.html',
]);
</script>
<script src="//localhost:35729/livereload.js"></script>
</body>
</html>
| grappendorf/grapp-core-ajax | test/index.html | HTML | mit | 437 | <!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>grapp-core-ajax tests</title>
<script src="../lib/web-component-tester/browser.js"></script>
</head>
<body>
<script>
WCT.loadSuites([
'basic.html',
]);
</script>
<script src="//localhost:35729/livereload.js"></script>
</body>
</html>
|
<!--conf
<sample>
<product version="2.6" edition="std"/>
<modifications>
<modified date="100609"/>
</modifications>
</sample>
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Series</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script src="../common/testdata.js"></script>
</head>
<body>
<div id="chart1" style="width:900px;height:250px;border:1px solid #A4BED4;"></div>
<script>
var barChart1 = new dhtmlXChart({
view:"bar",
container:"chart1",
value:"#sales#",
color: "#58dccd",
gradient:"rising",
tooltip:{
template:"#sales#"
},
width:60,
tooltip:{
template:"#sales#"
},
xAxis:{
template:"'#year#"
},
yAxis:{
start:0,
step:10,
end:100
},
legend:{
values:[{text:"Type A",color:"#58dccd"},{text:"Type B",color:"#a7ee70"},{text:"Type C",color:"#36abee"}],
valign:"middle",
align:"right",
width:90,
layout:"y"
}
});
barChart1.addSeries({
value:"#sales2#",
color:"#a7ee70",
tooltip:{
template:"#sales2#"
}
});
barChart1.addSeries({
value:"#sales3#",
color:"#36abee",
tooltip:{
template:"#sales3#"
}
});
barChart1.parse(multiple_dataset,"json");
</script>
</body>
</html> | blale-zhang/codegen | WebContent/component/dhtmlxSuite_v403_std/samples/dhtmlxChart/06_bar_chart/06_series.html | HTML | mit | 1,793 | <!--conf
<sample>
<product version="2.6" edition="std"/>
<modifications>
<modified date="100609"/>
</modifications>
</sample>
-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Series</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/>
<script src="../../../codebase/dhtmlx.js"></script>
<script src="../common/testdata.js"></script>
</head>
<body>
<div id="chart1" style="width:900px;height:250px;border:1px solid #A4BED4;"></div>
<script>
var barChart1 = new dhtmlXChart({
view:"bar",
container:"chart1",
value:"#sales#",
color: "#58dccd",
gradient:"rising",
tooltip:{
template:"#sales#"
},
width:60,
tooltip:{
template:"#sales#"
},
xAxis:{
template:"'#year#"
},
yAxis:{
start:0,
step:10,
end:100
},
legend:{
values:[{text:"Type A",color:"#58dccd"},{text:"Type B",color:"#a7ee70"},{text:"Type C",color:"#36abee"}],
valign:"middle",
align:"right",
width:90,
layout:"y"
}
});
barChart1.addSeries({
value:"#sales2#",
color:"#a7ee70",
tooltip:{
template:"#sales2#"
}
});
barChart1.addSeries({
value:"#sales3#",
color:"#36abee",
tooltip:{
template:"#sales3#"
}
});
barChart1.parse(multiple_dataset,"json");
</script>
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Децентрализированное Хранилище Данных</title>
<link rel="stylesheet" href="/bootstrap-3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">АйВи</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/">Домашняя</a></li>
<li><a href="/about">О компании</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="alert alert-danger" role="alert">
Данный сайт в разработке
</div>
<div class="row">
<div class="col-md-9" role="main">
<h1 >Храненние данных</h1>
<p id="description">
У большинства пользователей компьютера много свободного места на диске,
которые можно использовать для хранения данных.
</p>
<h2 id="how-it-works">Как это работает</h2>
<p>Данный продукт объеденяет свободные ресурсы пользователей в общее децентрализованное облако,
не зависящее от места положения пользователя, другими словами виртуальный RAID массив.</p>
</div>
<div class="col-md-3" role="complementary">
<nav class="hidden-print hidden-sm hidden-xs affix">
<ul class="nav">
<li class=""><a href="#description">Описание</a></li>
<li class=""><a href="#how-it-works">Как это работатает</a></li>
</ul>
</nav>
</div>
</div>
</div>
<script src="jquery/1.12.4/jquery.min.js"></script>
<script src="/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<script src="/js/site.js"></script>
</body>
</html>
| lboss75/vds | www/store.html | HTML | mit | 3,000 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Децентрализированное Хранилище Данных</title>
<link rel="stylesheet" href="/bootstrap-3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="/style.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">АйВи</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/">Домашняя</a></li>
<li><a href="/about">О компании</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="alert alert-danger" role="alert">
Данный сайт в разработке
</div>
<div class="row">
<div class="col-md-9" role="main">
<h1 >Храненние данных</h1>
<p id="description">
У большинства пользователей компьютера много свободного места на диске,
которые можно использовать для хранения данных.
</p>
<h2 id="how-it-works">Как это работает</h2>
<p>Данный продукт объеденяет свободные ресурсы пользователей в общее децентрализованное облако,
не зависящее от места положения пользователя, другими словами виртуальный RAID массив.</p>
</div>
<div class="col-md-3" role="complementary">
<nav class="hidden-print hidden-sm hidden-xs affix">
<ul class="nav">
<li class=""><a href="#description">Описание</a></li>
<li class=""><a href="#how-it-works">Как это работатает</a></li>
</ul>
</nav>
</div>
</div>
</div>
<script src="jquery/1.12.4/jquery.min.js"></script>
<script src="/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<script src="/js/site.js"></script>
</body>
</html>
|
<html>
<head>
<title>Julian Fellows's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Julian Fellows's panel show appearances</h1>
<p>Julian Fellows has appeared in <span class="total">1</span> episodes between 2003-2003. Note that these appearances may be for more than one person if multiple people have the same name.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2003</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2003-05-22</strong> / <a href="../shows/call-my-bluff.html">Call My Bluff</a></li>
</ol>
</div>
</body>
</html>
| slowe/panelshows | people/7g6x6fja.html | HTML | mit | 1,004 | <html>
<head>
<title>Julian Fellows's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Julian Fellows's panel show appearances</h1>
<p>Julian Fellows has appeared in <span class="total">1</span> episodes between 2003-2003. Note that these appearances may be for more than one person if multiple people have the same name.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2003</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2003-05-22</strong> / <a href="../shows/call-my-bluff.html">Call My Bluff</a></li>
</ol>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.rawgit.com/konvajs/konva/1.4.0/konva.min.js"></script>
<meta charset="utf-8">
<title>Konva Animate Position Demo</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #F0F0F0;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
var width = window.innerWidth;
var height = window.innerHeight;
var stage = new Konva.Stage({
container: 'container',
width: width,
height: height
});
var layer = new Konva.Layer();
var hexagon = new Konva.RegularPolygon({
x: stage.getWidth() / 2,
y: stage.getHeight() / 2,
sides: 6,
radius: 20,
fill: 'red',
stroke: 'black',
strokeWidth: 4
});
layer.add(hexagon);
stage.add(layer);
var amplitude = 100;
var period = 2000;
// in ms
var centerX = stage.getWidth() / 2;
var anim = new Konva.Animation(function(frame) {
hexagon.setX(amplitude * Math.sin(frame.time * 2 * Math.PI / period) + centerX);
}, layer);
anim.start();
</script>
</body>
</html> | leinadpb/Fisica | public/test3.html | HTML | mit | 1,205 | <!DOCTYPE html>
<html>
<head>
<script src="https://cdn.rawgit.com/konvajs/konva/1.4.0/konva.min.js"></script>
<meta charset="utf-8">
<title>Konva Animate Position Demo</title>
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #F0F0F0;
}
</style>
</head>
<body>
<div id="container"></div>
<script>
var width = window.innerWidth;
var height = window.innerHeight;
var stage = new Konva.Stage({
container: 'container',
width: width,
height: height
});
var layer = new Konva.Layer();
var hexagon = new Konva.RegularPolygon({
x: stage.getWidth() / 2,
y: stage.getHeight() / 2,
sides: 6,
radius: 20,
fill: 'red',
stroke: 'black',
strokeWidth: 4
});
layer.add(hexagon);
stage.add(layer);
var amplitude = 100;
var period = 2000;
// in ms
var centerX = stage.getWidth() / 2;
var anim = new Konva.Animation(function(frame) {
hexagon.setX(amplitude * Math.sin(frame.time * 2 * Math.PI / period) + centerX);
}, layer);
anim.start();
</script>
</body>
</html> |
<!DOCTYPE html>
<!--
Copyright 2012 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<title>CoolClock</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="../../polymer/polymer.js"></script>
<link rel="import" href="cool-clock.html">
</head>
<body>
<cool-clock></cool-clock>
<cool-clock></cool-clock>
</body>
</html>
| revans/sparks | lib/sparks/generators/template/vendor/assets/javascripts/polymer-all/more-elements/cool-clock/index.html | HTML | mit | 494 | <!DOCTYPE html>
<!--
Copyright 2012 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<title>CoolClock</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="../../polymer/polymer.js"></script>
<link rel="import" href="cool-clock.html">
</head>
<body>
<cool-clock></cool-clock>
<cool-clock></cool-clock>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SassApp</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for "head"}}
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/sass-app.css">
{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/sass-app.js"></script>
{{content-for "body-footer"}}
</body>
</html>
| salsify/ember-css-modules | test-packages/sass-app/app/index.html | HTML | mit | 692 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SassApp</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{content-for "head"}}
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/vendor.css">
<link integrity="" rel="stylesheet" href="{{rootURL}}assets/sass-app.css">
{{content-for "head-footer"}}
</head>
<body>
{{content-for "body"}}
<script src="{{rootURL}}assets/vendor.js"></script>
<script src="{{rootURL}}assets/sass-app.js"></script>
{{content-for "body-footer"}}
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>MyFonts Webfonts Demo for iOS devices</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
h2 {
font-weight:normal;
}
@font-face {
font-family:"ProximaNova-Bold";
src:url("2FE569_0.svg#ProximaNova-Bold") format("svg");
}
.webfont_0 {
font-family: ProximaNova-Bold;
}
@font-face {
font-family:"ProximaNova-Regular";
src:url("2FE569_1.svg#ProximaNova-Regular") format("svg");
}
.webfont_1 {
font-family: ProximaNova-Regular;
}
</style>
</head>
<body>
<h1>MyFonts Webfonts Demo for iOS devices</h1>
<h2>0. <span class='webfont_0'><a href='http://www.myfonts.com/search/style::148514/'>ProximaNova-Bold</a></span>
<small>(VersionID 675566, ttf)</small>
</h2>
<p class='webfont_0'>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p class='webfont_0'>An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.</p>
<p class='webfont_0'>Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.</p>
<h2>1. <span class='webfont_1'><a href='http://www.myfonts.com/search/style::148510/'>ProximaNova-Regular</a></span>
<small>(VersionID 675574, ttf)</small>
</h2>
<p class='webfont_1'>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p class='webfont_1'>An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.</p>
<p class='webfont_1'>Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.</p>
</body>
</html> | richardcrichardc/digitalwhanganui | public/css/webfonts/svg_test.html | HTML | mit | 4,671 | <!DOCTYPE html>
<html>
<head>
<title>MyFonts Webfonts Demo for iOS devices</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<style type="text/css" media="all">
h2 {
font-weight:normal;
}
@font-face {
font-family:"ProximaNova-Bold";
src:url("2FE569_0.svg#ProximaNova-Bold") format("svg");
}
.webfont_0 {
font-family: ProximaNova-Bold;
}
@font-face {
font-family:"ProximaNova-Regular";
src:url("2FE569_1.svg#ProximaNova-Regular") format("svg");
}
.webfont_1 {
font-family: ProximaNova-Regular;
}
</style>
</head>
<body>
<h1>MyFonts Webfonts Demo for iOS devices</h1>
<h2>0. <span class='webfont_0'><a href='http://www.myfonts.com/search/style::148514/'>ProximaNova-Bold</a></span>
<small>(VersionID 675566, ttf)</small>
</h2>
<p class='webfont_0'>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p class='webfont_0'>An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.</p>
<p class='webfont_0'>Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.</p>
<h2>1. <span class='webfont_1'><a href='http://www.myfonts.com/search/style::148510/'>ProximaNova-Regular</a></span>
<small>(VersionID 675574, ttf)</small>
</h2>
<p class='webfont_1'>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
<p class='webfont_1'>An, partus ancillae sitne in fructu habendus, disseretur inter principes civitatis, P. Scaevolam M'.que Manilium, ab iisque M. Brutus dissentiet -- quod et acutum genus est et ad usus civium non inutile, nosque ea scripta reliquaque eiusdem generis et legimus libenter et legemus --, haec, quae vitam omnem continent, neglegentur? nam, ut sint illa vendibiliora, haec uberiora certe sunt. quamquam id quidem licebit iis existimare, qui legerint. nos autem hanc omnem quaestionem de finibus bonorum et malorum fere a nobis explicatam esse his litteris arbitramur, in quibus, quantum potuimus, non modo quid nobis probaretur, sed etiam quid a singulis philosophiae disciplinis diceretur, persecuti sumus.</p>
<p class='webfont_1'>Id qui in una virtute ponunt et splendore nominis capti quid natura postulet non intellegunt, errore maximo, si Epicurum audire voluerint, liberabuntur: istae enim vestrae eximiae pulchraeque virtutes nisi voluptatem efficerent, quis eas aut laudabilis aut expetendas arbitraretur? ut enim medicorum scientiam non ipsius artis, sed bonae valetudinis causa probamus, et gubernatoris ars, quia bene navigandi rationem habet, utilitate, non arte laudatur, sic sapientia, quae ars vivendi putanda est, non expeteretur, si nihil efficeret; nunc expetitur, quod est tamquam artifex conquirendae et comparandae voluptatis.</p>
</body>
</html> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Backends</title>
<link rel="stylesheet" type="text/css" media="screen" href="../general/css/style.css" />
</head>
<body>
<h1>Backends</h1>
<h2>General Information</h2>
<p>The NagVis code is separated into several layers. One of these layers is
the "data layer". The data layer is used to handle requests for
information from third party sources like the socket of MKLivestatus. We
call this layer "backend" in general. There are some components
inside NagVis to manage these backends which act as the glue between the
single backends and the other layers.</p>
<h2>Default backend</h2>
<p>At the moment there are a few backends delivered with the NagVis core
packages: the most important ones are the mklivestatus and ndomy backends. All backend
configuration parameters are described in detail on their own pages.</p>
<p>The ndomy backend has been the default backend from NagVis 1.0 to NagVis 1.5.
It fetches Nagios information from the NDO MySQL database. Since NagVis 1.5
the default backend has been switched to MKLivestatus backend.</p>
<p>In NagVis 1.9, the pgsql backend has been added to fetch the Nagios information
from a PostgreSQL database as used by e.g. Icinga 2.</p>
<h2>Backend types</h2>
<ul>
<li><a href=backend_mklivestatus.html>MKLivestatus</a></li>
<li><a href=backend_ndomy.html>NDOMy</a></li>
<li><a href=backend_nagiosbp.html>NagiosBP</a></li>
<li><a href=backend_pgsql.html>PgSQL</a></li>
<li>MerlinMy</li>
</ul>
<h2>Configuring backends</h2>
<p>The backends are defined in the main configuration file. See
<a href="nagvis_config_format_description.html#backend">main configuration format description</a>
on how to define backends.</p>
</body>
</html>
| NagVis/nagvis | docs/en_US/backends.html | HTML | gpl-2.0 | 2,146 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Backends</title>
<link rel="stylesheet" type="text/css" media="screen" href="../general/css/style.css" />
</head>
<body>
<h1>Backends</h1>
<h2>General Information</h2>
<p>The NagVis code is separated into several layers. One of these layers is
the "data layer". The data layer is used to handle requests for
information from third party sources like the socket of MKLivestatus. We
call this layer "backend" in general. There are some components
inside NagVis to manage these backends which act as the glue between the
single backends and the other layers.</p>
<h2>Default backend</h2>
<p>At the moment there are a few backends delivered with the NagVis core
packages: the most important ones are the mklivestatus and ndomy backends. All backend
configuration parameters are described in detail on their own pages.</p>
<p>The ndomy backend has been the default backend from NagVis 1.0 to NagVis 1.5.
It fetches Nagios information from the NDO MySQL database. Since NagVis 1.5
the default backend has been switched to MKLivestatus backend.</p>
<p>In NagVis 1.9, the pgsql backend has been added to fetch the Nagios information
from a PostgreSQL database as used by e.g. Icinga 2.</p>
<h2>Backend types</h2>
<ul>
<li><a href=backend_mklivestatus.html>MKLivestatus</a></li>
<li><a href=backend_ndomy.html>NDOMy</a></li>
<li><a href=backend_nagiosbp.html>NagiosBP</a></li>
<li><a href=backend_pgsql.html>PgSQL</a></li>
<li>MerlinMy</li>
</ul>
<h2>Configuring backends</h2>
<p>The backends are defined in the main configuration file. See
<a href="nagvis_config_format_description.html#backend">main configuration format description</a>
on how to define backends.</p>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Local Test</title>
</head>
<body>
<h2>Tutorial/Prototype</h2>
<ol>
<li><a href="minigames/tutorial/lock/index.html">Lock</a></li>
<li><a href="minigames/tutorial/click_and_drag/index.html">Click and Drag</a></li>
<li><a href="minigames/bioinfo/whereis/index.html">Where is ?</a></li>
<li><a href="minigames/bioinfo/to/index.html">to</a></li>
</ol>
</body>
</html>
| crazybiocomputing/crazybioGame | index.html | HTML | gpl-2.0 | 423 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>Local Test</title>
</head>
<body>
<h2>Tutorial/Prototype</h2>
<ol>
<li><a href="minigames/tutorial/lock/index.html">Lock</a></li>
<li><a href="minigames/tutorial/click_and_drag/index.html">Click and Drag</a></li>
<li><a href="minigames/bioinfo/whereis/index.html">Where is ?</a></li>
<li><a href="minigames/bioinfo/to/index.html">to</a></li>
</ol>
</body>
</html>
|
<html>
<head>
<title>Transverse Ray Aberration Diagram</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="HelpNDoc Personal Edition 4.3.1.364">
<link type="text/css" rel="stylesheet" media="all" href="css/reset.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/base.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/hnd.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" media="all" href="css/ielte8.css" />
<![endif]-->
<style type="text/css">
#topic_header
{
background-color: #EFEFEF;
}
</style>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/hnd.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
if (top.frames.length == 0)
{
var sTopicUrl = top.location.href.substring(top.location.href.lastIndexOf("/") + 1, top.location.href.length);
top.location.href = "Programming and Algorithms Reference MATLAB Based Optical Analysis Toolbox V 3.0.html?" + sTopicUrl;
}
else if (top && top.FrameTOC && top.FrameTOC.SelectTocItem)
{
top.FrameTOC.SelectTocItem("TransverseRayAberrationDiagram");
}
});
</script>
</head>
<body>
<div id="topic_header">
<div id="topic_header_content">
<h1 id="topic_header_text">Transverse Ray Aberration Diagram</h1>
<div id="topic_breadcrumb">
<a href="ExamplesofExtendingtheToolbox.html">Examples of Extending the Toolbox</a> ›› <a href="Method1Aspartofthetoolbox.html">Method 1: As part of the toolbox</a> ›› </div>
</div>
<div id="topic_header_nav">
<a href="Method1Aspartofthetoolbox.html"><img src="img/arrow_up.png" alt="Parent"/></a>
<a href="Method1Aspartofthetoolbox.html"><img src="img/arrow_left.png" alt="Previous"/></a>
<a href="Procedures.html"><img src="img/arrow_right.png" alt="Next"/></a>
</div>
<div class="clear"></div>
</div>
<div id="topic_content">
<p></p>
<h1 class="rvps11"><span class="rvts0"><span class="rvts59">Toolbox Extension Example: Transverse Ray Aberration Diagram</span></span></h1>
<p class="rvps10"><span class="rvts37">Purpose:</span></p>
<p class="rvps10"><span class="rvts38">To add an analysis window to the toolbox which shows ray aberrations as a function of pupil coordinate. </span></p>
<p class="rvps10"><span class="rvts38"><br/></span></p>
<p></p>
<p class="rvps6"><span class="rvts20">Created with the Personal Edition of HelpNDoc: </span><a class="rvts21" href="http://www.helpndoc.com/help-authoring-tool">Create HTML Help, DOC, PDF and print manuals from 1 single source</a></p>
</div>
<div id="topic_footer">
<div id="topic_footer_content">
Copyright © <2014> by <Norman G. Worku ([email protected]), Optical System Design Research Group, FSU, Jena>. All Rights Reserved.</div>
</div>
</body>
</html>
| IAPJena/ProjectOne | 7.Documentation_Package/Programming_and_Algorithms_Reference/Build html documentation/TransverseRayAberrationDiagram.html | HTML | gpl-2.0 | 2,989 | <html>
<head>
<title>Transverse Ray Aberration Diagram</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="HelpNDoc Personal Edition 4.3.1.364">
<link type="text/css" rel="stylesheet" media="all" href="css/reset.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/base.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/hnd.css" />
<!--[if lte IE 8]>
<link type="text/css" rel="stylesheet" media="all" href="css/ielte8.css" />
<![endif]-->
<style type="text/css">
#topic_header
{
background-color: #EFEFEF;
}
</style>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/hnd.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
if (top.frames.length == 0)
{
var sTopicUrl = top.location.href.substring(top.location.href.lastIndexOf("/") + 1, top.location.href.length);
top.location.href = "Programming and Algorithms Reference MATLAB Based Optical Analysis Toolbox V 3.0.html?" + sTopicUrl;
}
else if (top && top.FrameTOC && top.FrameTOC.SelectTocItem)
{
top.FrameTOC.SelectTocItem("TransverseRayAberrationDiagram");
}
});
</script>
</head>
<body>
<div id="topic_header">
<div id="topic_header_content">
<h1 id="topic_header_text">Transverse Ray Aberration Diagram</h1>
<div id="topic_breadcrumb">
<a href="ExamplesofExtendingtheToolbox.html">Examples of Extending the Toolbox</a> ›› <a href="Method1Aspartofthetoolbox.html">Method 1: As part of the toolbox</a> ›› </div>
</div>
<div id="topic_header_nav">
<a href="Method1Aspartofthetoolbox.html"><img src="img/arrow_up.png" alt="Parent"/></a>
<a href="Method1Aspartofthetoolbox.html"><img src="img/arrow_left.png" alt="Previous"/></a>
<a href="Procedures.html"><img src="img/arrow_right.png" alt="Next"/></a>
</div>
<div class="clear"></div>
</div>
<div id="topic_content">
<p></p>
<h1 class="rvps11"><span class="rvts0"><span class="rvts59">Toolbox Extension Example: Transverse Ray Aberration Diagram</span></span></h1>
<p class="rvps10"><span class="rvts37">Purpose:</span></p>
<p class="rvps10"><span class="rvts38">To add an analysis window to the toolbox which shows ray aberrations as a function of pupil coordinate. </span></p>
<p class="rvps10"><span class="rvts38"><br/></span></p>
<p></p>
<p class="rvps6"><span class="rvts20">Created with the Personal Edition of HelpNDoc: </span><a class="rvts21" href="http://www.helpndoc.com/help-authoring-tool">Create HTML Help, DOC, PDF and print manuals from 1 single source</a></p>
</div>
<div id="topic_footer">
<div id="topic_footer_content">
Copyright © <2014> by <Norman G. Worku ([email protected]), Optical System Design Research Group, FSU, Jena>. All Rights Reserved.</div>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>puppix by puppix</title>
</head>
<body>
<a href="https://github.com/puppix/puppix.github.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<header>
<div class="inner">
<h1><a href="/">puppix</a></h1>
<h2>Puppet for Enterprise Linux</h2>
<a href="https://github.com/puppix" class="button"><small>Follow me on</small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
{{ content }}
</section>
<aside id="sidebar">
<p>
<a href="https://github.com/puppix">./github</a> - GitHub Page<br />
<a href="https://github.com/puppix/puppix.github.io/issues">./issues</a> - Global Tracker<br />
<a href="/codingstyle">./style</a> - Coding Style<br />
</p>
<strong>Blog Posts</strong>
<ul class="posts">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a><br />
» <span>{{ post.date | date_to_string }}</span>
</li>
{% endfor %}
</ul>
</aside>
</div>
</div>
</body>
</html>
| scrothers/puppix.github.io | _layouts/default.html | HTML | gpl-2.0 | 2,287 | <!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/pygment_trac.css" media="screen" />
<link rel="stylesheet" type="text/css" href="/stylesheets/print.css" media="print" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<title>puppix by puppix</title>
</head>
<body>
<a href="https://github.com/puppix/puppix.github.io"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://github-camo.global.ssl.fastly.net/52760788cde945287fbb584134c4cbc2bc36f904/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f77686974655f6666666666662e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_white_ffffff.png"></a>
<header>
<div class="inner">
<h1><a href="/">puppix</a></h1>
<h2>Puppet for Enterprise Linux</h2>
<a href="https://github.com/puppix" class="button"><small>Follow me on</small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
{{ content }}
</section>
<aside id="sidebar">
<p>
<a href="https://github.com/puppix">./github</a> - GitHub Page<br />
<a href="https://github.com/puppix/puppix.github.io/issues">./issues</a> - Global Tracker<br />
<a href="/codingstyle">./style</a> - Coding Style<br />
</p>
<strong>Blog Posts</strong>
<ul class="posts">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a><br />
» <span>{{ post.date | date_to_string }}</span>
</li>
{% endfor %}
</ul>
</aside>
</div>
</div>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>CHAI3D: /home/seb/workspace/chai3d-2.0.0/src/scenegraph/CGenericObject.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.5 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>/home/seb/workspace/chai3d-2.0.0/src/scenegraph/CGenericObject.h File Reference</h1><b> Scenegraph </b> <br>
Base Class. <a href="#_details">More...</a>
<p>
<code>#include "<a class="el" href="_c_maths_8h-source.html">math/CMaths.h</a>"</code><br>
<code>#include "<a class="el" href="_c_draw3_d_8h-source.html">graphics/CDraw3D.h</a>"</code><br>
<code>#include "<a class="el" href="_c_color_8h-source.html">graphics/CColor.h</a>"</code><br>
<code>#include "<a class="el" href="_c_macros_g_l_8h-source.html">graphics/CMacrosGL.h</a>"</code><br>
<code>#include "<a class="el" href="_c_material_8h-source.html">graphics/CMaterial.h</a>"</code><br>
<code>#include "<a class="el" href="_c_texture2_d_8h-source.html">graphics/CTexture2D.h</a>"</code><br>
<code>#include "<a class="el" href="_c_collision_basics_8h-source.html">collisions/CCollisionBasics.h</a>"</code><br>
<code>#include "<a class="el" href="_c_interaction_basics_8h-source.html">forces/CInteractionBasics.h</a>"</code><br>
<code>#include "<a class="el" href="_c_generic_effect_8h-source.html">effects/CGenericEffect.h</a>"</code><br>
<code>#include "<a class="el" href="_c_generic_type_8h-source.html">extras/CGenericType.h</a>"</code><br>
<code>#include <typeinfo></code><br>
<code>#include <vector></code><br>
<code>#include <list></code><br>
<p>
<a href="_c_generic_object_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classc_generic_object.html">cGenericObject</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This class is the root of basically every render-able object in CHAI. It defines a reference frame (position and rotation) and virtual methods for rendering, which are overloaded by useful subclasses. <br>
. <a href="classc_generic_object.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="_c_generic_object_8h.html#b7dfc0d18c5e05621dd13575f917fb3d">chai_render_modes</a> { <b>CHAI_RENDER_MODE_RENDER_ALL</b> = 0,
<b>CHAI_RENDER_MODE_NON_TRANSPARENT_ONLY</b>,
<b>CHAI_RENDER_MODE_TRANSPARENT_BACK_ONLY</b>,
<b>CHAI_RENDER_MODE_TRANSPARENT_FRONT_ONLY</b>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constants that define specific rendering passes (see cCamera.cpp). <br></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
<b> Scenegraph </b> <br>
Base Class.
<p>
</div>
<font size=-2><br><hr><b>CHAI3D 2.0.0 documentation</b><br>Please address any questions to <a href="mailto:[email protected]">[email protected]</a><br>
(C) 2003-2009 - <a href="http://www.chai3d.org">CHAI 3D</a><br>
All Rights Reserved.
| lihuanshuai/chai3d | doc/resources/html/_c_generic_object_8h.html | HTML | gpl-2.0 | 3,948 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>CHAI3D: /home/seb/workspace/chai3d-2.0.0/src/scenegraph/CGenericObject.h File Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.5 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>/home/seb/workspace/chai3d-2.0.0/src/scenegraph/CGenericObject.h File Reference</h1><b> Scenegraph </b> <br>
Base Class. <a href="#_details">More...</a>
<p>
<code>#include "<a class="el" href="_c_maths_8h-source.html">math/CMaths.h</a>"</code><br>
<code>#include "<a class="el" href="_c_draw3_d_8h-source.html">graphics/CDraw3D.h</a>"</code><br>
<code>#include "<a class="el" href="_c_color_8h-source.html">graphics/CColor.h</a>"</code><br>
<code>#include "<a class="el" href="_c_macros_g_l_8h-source.html">graphics/CMacrosGL.h</a>"</code><br>
<code>#include "<a class="el" href="_c_material_8h-source.html">graphics/CMaterial.h</a>"</code><br>
<code>#include "<a class="el" href="_c_texture2_d_8h-source.html">graphics/CTexture2D.h</a>"</code><br>
<code>#include "<a class="el" href="_c_collision_basics_8h-source.html">collisions/CCollisionBasics.h</a>"</code><br>
<code>#include "<a class="el" href="_c_interaction_basics_8h-source.html">forces/CInteractionBasics.h</a>"</code><br>
<code>#include "<a class="el" href="_c_generic_effect_8h-source.html">effects/CGenericEffect.h</a>"</code><br>
<code>#include "<a class="el" href="_c_generic_type_8h-source.html">extras/CGenericType.h</a>"</code><br>
<code>#include <typeinfo></code><br>
<code>#include <vector></code><br>
<code>#include <list></code><br>
<p>
<a href="_c_generic_object_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">class </td><td class="memItemRight" valign="bottom"><a class="el" href="classc_generic_object.html">cGenericObject</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This class is the root of basically every render-able object in CHAI. It defines a reference frame (position and rotation) and virtual methods for rendering, which are overloaded by useful subclasses. <br>
. <a href="classc_generic_object.html#_details">More...</a><br></td></tr>
<tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">enum </td><td class="memItemRight" valign="bottom"><a class="el" href="_c_generic_object_8h.html#b7dfc0d18c5e05621dd13575f917fb3d">chai_render_modes</a> { <b>CHAI_RENDER_MODE_RENDER_ALL</b> = 0,
<b>CHAI_RENDER_MODE_NON_TRANSPARENT_ONLY</b>,
<b>CHAI_RENDER_MODE_TRANSPARENT_BACK_ONLY</b>,
<b>CHAI_RENDER_MODE_TRANSPARENT_FRONT_ONLY</b>
}</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Constants that define specific rendering passes (see cCamera.cpp). <br></td></tr>
</table>
<hr><a name="_details"></a><h2>Detailed Description</h2>
<b> Scenegraph </b> <br>
Base Class.
<p>
</div>
<font size=-2><br><hr><b>CHAI3D 2.0.0 documentation</b><br>Please address any questions to <a href="mailto:[email protected]">[email protected]</a><br>
(C) 2003-2009 - <a href="http://www.chai3d.org">CHAI 3D</a><br>
All Rights Reserved.
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<title>PushReceiver</title>
<link rel="stylesheet" href="style.css"/>
<!-- Inline scripts are forbidden in Firefox OS apps (CSP restrictions),
so we use a script file. -->
<script src="app.js" defer></script>
</head>
<body>
<!-- This code is in the public domain. Enjoy! -->
<h1>PushReceiver</h1>
<div class="row control"><button id="go">Register</button></div>
<div id="status">
Not Connected.
<div>
</body>
</html>
| royneary/mod_push_test | mozilla-push/Firefox OS/PushReceiver/index.html | HTML | gpl-2.0 | 627 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1">
<title>PushReceiver</title>
<link rel="stylesheet" href="style.css"/>
<!-- Inline scripts are forbidden in Firefox OS apps (CSP restrictions),
so we use a script file. -->
<script src="app.js" defer></script>
</head>
<body>
<!-- This code is in the public domain. Enjoy! -->
<h1>PushReceiver</h1>
<div class="row control"><button id="go">Register</button></div>
<div id="status">
Not Connected.
<div>
</body>
</html>
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="HandheldFriendly" content="true"/>
<!--<meta name="MobileOptimized" content="320"/>-->
<title>Hello H5+</title>
<script type="text/javascript" src="../js/common.js"></script>
<script type="text/javascript">
var auths={};
function plusReady(){
// 获取登录认证通道
plus.oauth.getServices(function(services){
var content=document.getElementById('dcontent');
var info=document.getElementById("info");
var txt="登录认证通道信息:";
for(var i in services){
var service=services[i];
console.log(service.id+": "+service.authResult+", "+service.userInfo);
auths[service.id]=service;
txt += "id:"+service.id+", ";
txt += "description:"+service.description+", ";
var de=document.createElement('div');
de.setAttribute('class','button');
de.setAttribute('onclick','login(this.id)');
de.id=service.id;
de.innerText=service.description+"登录";
oauth.appendChild(de);
}
info.innerText=txt;
},function(e){
outLine("获取登录认证失败:"+e.message);
});
}
document.addEventListener('plusready',plusReady,false);
// 登录认证
function login(id){
outSet("----- 登录认证 -----");
var auth=auths[id];
if(auth){
var w=null;
if(plus.os.name=="Android"){
w=plus.nativeUI.showWaiting();
}
document.addEventListener("pause",function(){
setTimeout(function(){
w&&w.close();w=null;
},2000);
}, false );
auth.login(function(){
w&&w.close();w=null;
outLine("登录认证成功:");
outLine(JSON.stringify(auth.authResult));
userinfo(auth);
},function(e){
w&&w.close();w=null;
outLine("登录认证失败:");
outLine("["+e.code+"]:"+e.message);
plus.nativeUI.alert("详情错误信息请参考授权登录(OAuth)规范文档:http://www.html5plus.org/#specification#/specification/OAuth.html",null,"登录失败["+e.code+"]:"+e.message);
});
}else{
outLine("无效的登录认证通道!");
plus.nativeUI.alert("无效的登录认证通道!",null,"登录");
}
}
// 获取用户信息
function userinfo(a){
outLine("----- 获取用户信息 -----");
a.getUserInfo(function(){
outLine("获取用户信息成功:");
outLine(JSON.stringify(a.userInfo));
var nickname=a.userInfo.nickname||a.userInfo.name;
plus.nativeUI.alert("欢迎“"+nickname+"”登录!");
},function(e){
outLine("获取用户信息失败:");
outLine("["+e.code+"]:"+e.message);
plus.nativeUI.alert("获取用户信息失败!",null,"登录");
});
}
// 注销登录
function logoutAll(){
outSet("----- 注销登录认证 -----");
for(var i in auths){
logout(auths[i]);
}
}
function logout(auth){
auth.logout(function(){
outLine("注销\""+auth.description+"\"成功");
},function(e){
outLine("注销\""+auth.description+"\"失败:"+e.message);
});
}
</script>
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8"/>
<style type="text/css">
#total{
-webkit-user-select:text;
text-align:right;
padding:0 1em;
border: 0px;
border-bottom:1px solid #ECB100;
border-radius: 0;
font-size:16px;
width:30%;
outline:none;
}
</style>
</head>
<body>
<header id="header">
<div class="nvbt iback" onclick="back()"></div>
<div class="nvtt">OAuth</div>
<div class="nvbt idoc" onclick="openDoc('OAuth Document','/doc/oauth.html')"></div>
</header>
<div id="dcontent" class="dcontent">
<br/>
<p id="info" style="padding: 0 1em;text-align:left;">登录认证通道信息:</p>
<div style="padding: 0.5em 1em;"><hr color="#EEE"/></div>
<br/>
<div id="oauth"></div>
<br/>
<div class="button button-waring" onclick="logoutAll()">注销登录</div>
</div>
<div id="output">
OAuth模块管理客户端的用户授权登录验证功能,允许应用访问第三方平台的资源。
</div>
</body>
<script type="text/javascript" src="../js/immersed.js" ></script>
</html> | NSStringDong/XlvrenCharge | XlvrenProject_Html/XlvrenCharge/plus/oauth.html | HTML | gpl-2.0 | 4,040 | <!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="HandheldFriendly" content="true"/>
<!--<meta name="MobileOptimized" content="320"/>-->
<title>Hello H5+</title>
<script type="text/javascript" src="../js/common.js"></script>
<script type="text/javascript">
var auths={};
function plusReady(){
// 获取登录认证通道
plus.oauth.getServices(function(services){
var content=document.getElementById('dcontent');
var info=document.getElementById("info");
var txt="登录认证通道信息:";
for(var i in services){
var service=services[i];
console.log(service.id+": "+service.authResult+", "+service.userInfo);
auths[service.id]=service;
txt += "id:"+service.id+", ";
txt += "description:"+service.description+", ";
var de=document.createElement('div');
de.setAttribute('class','button');
de.setAttribute('onclick','login(this.id)');
de.id=service.id;
de.innerText=service.description+"登录";
oauth.appendChild(de);
}
info.innerText=txt;
},function(e){
outLine("获取登录认证失败:"+e.message);
});
}
document.addEventListener('plusready',plusReady,false);
// 登录认证
function login(id){
outSet("----- 登录认证 -----");
var auth=auths[id];
if(auth){
var w=null;
if(plus.os.name=="Android"){
w=plus.nativeUI.showWaiting();
}
document.addEventListener("pause",function(){
setTimeout(function(){
w&&w.close();w=null;
},2000);
}, false );
auth.login(function(){
w&&w.close();w=null;
outLine("登录认证成功:");
outLine(JSON.stringify(auth.authResult));
userinfo(auth);
},function(e){
w&&w.close();w=null;
outLine("登录认证失败:");
outLine("["+e.code+"]:"+e.message);
plus.nativeUI.alert("详情错误信息请参考授权登录(OAuth)规范文档:http://www.html5plus.org/#specification#/specification/OAuth.html",null,"登录失败["+e.code+"]:"+e.message);
});
}else{
outLine("无效的登录认证通道!");
plus.nativeUI.alert("无效的登录认证通道!",null,"登录");
}
}
// 获取用户信息
function userinfo(a){
outLine("----- 获取用户信息 -----");
a.getUserInfo(function(){
outLine("获取用户信息成功:");
outLine(JSON.stringify(a.userInfo));
var nickname=a.userInfo.nickname||a.userInfo.name;
plus.nativeUI.alert("欢迎“"+nickname+"”登录!");
},function(e){
outLine("获取用户信息失败:");
outLine("["+e.code+"]:"+e.message);
plus.nativeUI.alert("获取用户信息失败!",null,"登录");
});
}
// 注销登录
function logoutAll(){
outSet("----- 注销登录认证 -----");
for(var i in auths){
logout(auths[i]);
}
}
function logout(auth){
auth.logout(function(){
outLine("注销\""+auth.description+"\"成功");
},function(e){
outLine("注销\""+auth.description+"\"失败:"+e.message);
});
}
</script>
<link rel="stylesheet" href="../css/common.css" type="text/css" charset="utf-8"/>
<style type="text/css">
#total{
-webkit-user-select:text;
text-align:right;
padding:0 1em;
border: 0px;
border-bottom:1px solid #ECB100;
border-radius: 0;
font-size:16px;
width:30%;
outline:none;
}
</style>
</head>
<body>
<header id="header">
<div class="nvbt iback" onclick="back()"></div>
<div class="nvtt">OAuth</div>
<div class="nvbt idoc" onclick="openDoc('OAuth Document','/doc/oauth.html')"></div>
</header>
<div id="dcontent" class="dcontent">
<br/>
<p id="info" style="padding: 0 1em;text-align:left;">登录认证通道信息:</p>
<div style="padding: 0.5em 1em;"><hr color="#EEE"/></div>
<br/>
<div id="oauth"></div>
<br/>
<div class="button button-waring" onclick="logoutAll()">注销登录</div>
</div>
<div id="output">
OAuth模块管理客户端的用户授权登录验证功能,允许应用访问第三方平台的资源。
</div>
</body>
<script type="text/javascript" src="../js/immersed.js" ></script>
</html> |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
table.head, table.foot { width: 100%; }
td.head-rtitle, td.foot-os { text-align: right; }
td.head-vol { text-align: center; }
table.foot td { width: 50%; }
table.head td { width: 33%; }
div.spacer { margin: 1em 0; }
</style>
<title>
LNSTAT(8)</title>
</head>
<body>
<div class="mandoc">
<table class="head">
<tbody>
<tr>
<td class="head-ltitle">
LNSTAT(8)</td>
<td class="head-vol">
System Manager's Manual</td>
<td class="head-rtitle">
LNSTAT(8)</td>
</tr>
</tbody>
</table>
<div class="section">
<h1>NAME</h1> lnstat - unified linux network statistics</div>
<div class="section">
<h1>SYNOPSIS</h1> <b>lnstat</b> [<i>options</i>]</div>
<div class="section">
<h1>DESCRIPTION</h1> This manual page documents briefly the <b>lnstat</b> command.<div class="spacer">
</div>
<b>lnstat</b> is a generalized and more feature-complete replacement for the old rtstat program. In addition to routing cache statistics, it supports any kind of statistics the linux kernel exports via a file in /proc/net/stat/.</div>
<div class="section">
<h1>OPTIONS</h1> lnstat supports the following options.<dl>
<dt>
<b>-h, --help</b></dt>
<dd>
Show summary of options.</dd>
</dl>
<dl>
<dt>
<b>-V, --version</b></dt>
<dd>
Show version of program.</dd>
</dl>
<dl>
<dt>
<b>-c, --count <count></b></dt>
<dd>
Print <count> number of intervals.</dd>
</dl>
<dl>
<dt>
<b>-d, --dump</b></dt>
<dd>
Dump list of available files/keys.</dd>
</dl>
<dl>
<dt>
<b>-f, --file <file></b></dt>
<dd>
Statistics file to use.</dd>
</dl>
<dl>
<dt>
<b>-i, --interval <intv></b></dt>
<dd>
Set interval to 'intv' seconds.</dd>
</dl>
<dl>
<dt>
<b>-j, --json</b></dt>
<dd>
Display results in JSON format</dd>
</dl>
<dl>
<dt>
<b>-k, --keys k,k,k,...</b></dt>
<dd>
Display only keys specified.</dd>
</dl>
<dl>
<dt>
<b>-s, --subject [0-2]</b></dt>
<dd>
Specify display of subject/header. '0' means no header at all, '1' prints a header only at start of the program and '2' prints a header every 20 lines.</dd>
</dl>
<dl>
<dt>
<b>-w, --width n,n,n,...</b></dt>
<dd>
Width for each field.</dd>
</dl>
</div>
<div class="section">
<h1>USAGE EXAMPLES</h1><dl>
<dt>
<b># lnstat -d</b></dt>
<dd>
Get a list of supported statistics files.</dd>
</dl>
<dl>
<dt>
<b># lnstat -k arp_cache:entries,rt_cache:in_hit,arp_cache:destroys</b></dt>
<dd>
Select the specified files and keys.</dd>
</dl>
<dl>
<dt>
<b># lnstat -i 10</b></dt>
<dd>
Use an interval of 10 seconds.</dd>
</dl>
<dl>
<dt>
<b># lnstat -f ip_conntrack</b></dt>
<dd>
Use only the specified file for statistics.</dd>
</dl>
<dl>
<dt>
<b># lnstat -s 0</b></dt>
<dd>
Do not print a header at all.</dd>
</dl>
<dl>
<dt>
<b># lnstat -s 20</b></dt>
<dd>
Print a header at start and every 20 lines.</dd>
</dl>
<dl>
<dt>
<b># lnstat -c -1 -i 1 -f rt_cache -k entries,in_hit,in_slow_tot</b></dt>
<dd>
Display statistics for keys entries, in_hit and in_slow_tot of field rt_cache every second.</dd>
</dl>
</div>
<div class="section">
<h1>SEE ALSO</h1> <b>ip</b>(8), and /usr/share/doc/iproute-doc/README.lnstat (package iproute-doc on Debian)<div style="height: 0.00em;">
 </div>
</div>
<div class="section">
<h1>AUTHOR</h1> lnstat was written by Harald Welte <[email protected]>.<div class="spacer">
</div>
This manual page was written by Michael Prokop <[email protected]> for the Debian project (but may be used by others).</div>
<table class="foot">
<tr>
<td class="foot-date">
</td>
<td class="foot-os">
</td>
</tr>
</table>
</div>
</body>
</html>
| fusion809/fusion809.github.io-old | man/lnstat.8.html | HTML | gpl-3.0 | 3,538 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
table.head, table.foot { width: 100%; }
td.head-rtitle, td.foot-os { text-align: right; }
td.head-vol { text-align: center; }
table.foot td { width: 50%; }
table.head td { width: 33%; }
div.spacer { margin: 1em 0; }
</style>
<title>
LNSTAT(8)</title>
</head>
<body>
<div class="mandoc">
<table class="head">
<tbody>
<tr>
<td class="head-ltitle">
LNSTAT(8)</td>
<td class="head-vol">
System Manager's Manual</td>
<td class="head-rtitle">
LNSTAT(8)</td>
</tr>
</tbody>
</table>
<div class="section">
<h1>NAME</h1> lnstat - unified linux network statistics</div>
<div class="section">
<h1>SYNOPSIS</h1> <b>lnstat</b> [<i>options</i>]</div>
<div class="section">
<h1>DESCRIPTION</h1> This manual page documents briefly the <b>lnstat</b> command.<div class="spacer">
</div>
<b>lnstat</b> is a generalized and more feature-complete replacement for the old rtstat program. In addition to routing cache statistics, it supports any kind of statistics the linux kernel exports via a file in /proc/net/stat/.</div>
<div class="section">
<h1>OPTIONS</h1> lnstat supports the following options.<dl>
<dt>
<b>-h, --help</b></dt>
<dd>
Show summary of options.</dd>
</dl>
<dl>
<dt>
<b>-V, --version</b></dt>
<dd>
Show version of program.</dd>
</dl>
<dl>
<dt>
<b>-c, --count <count></b></dt>
<dd>
Print <count> number of intervals.</dd>
</dl>
<dl>
<dt>
<b>-d, --dump</b></dt>
<dd>
Dump list of available files/keys.</dd>
</dl>
<dl>
<dt>
<b>-f, --file <file></b></dt>
<dd>
Statistics file to use.</dd>
</dl>
<dl>
<dt>
<b>-i, --interval <intv></b></dt>
<dd>
Set interval to 'intv' seconds.</dd>
</dl>
<dl>
<dt>
<b>-j, --json</b></dt>
<dd>
Display results in JSON format</dd>
</dl>
<dl>
<dt>
<b>-k, --keys k,k,k,...</b></dt>
<dd>
Display only keys specified.</dd>
</dl>
<dl>
<dt>
<b>-s, --subject [0-2]</b></dt>
<dd>
Specify display of subject/header. '0' means no header at all, '1' prints a header only at start of the program and '2' prints a header every 20 lines.</dd>
</dl>
<dl>
<dt>
<b>-w, --width n,n,n,...</b></dt>
<dd>
Width for each field.</dd>
</dl>
</div>
<div class="section">
<h1>USAGE EXAMPLES</h1><dl>
<dt>
<b># lnstat -d</b></dt>
<dd>
Get a list of supported statistics files.</dd>
</dl>
<dl>
<dt>
<b># lnstat -k arp_cache:entries,rt_cache:in_hit,arp_cache:destroys</b></dt>
<dd>
Select the specified files and keys.</dd>
</dl>
<dl>
<dt>
<b># lnstat -i 10</b></dt>
<dd>
Use an interval of 10 seconds.</dd>
</dl>
<dl>
<dt>
<b># lnstat -f ip_conntrack</b></dt>
<dd>
Use only the specified file for statistics.</dd>
</dl>
<dl>
<dt>
<b># lnstat -s 0</b></dt>
<dd>
Do not print a header at all.</dd>
</dl>
<dl>
<dt>
<b># lnstat -s 20</b></dt>
<dd>
Print a header at start and every 20 lines.</dd>
</dl>
<dl>
<dt>
<b># lnstat -c -1 -i 1 -f rt_cache -k entries,in_hit,in_slow_tot</b></dt>
<dd>
Display statistics for keys entries, in_hit and in_slow_tot of field rt_cache every second.</dd>
</dl>
</div>
<div class="section">
<h1>SEE ALSO</h1> <b>ip</b>(8), and /usr/share/doc/iproute-doc/README.lnstat (package iproute-doc on Debian)<div style="height: 0.00em;">
 </div>
</div>
<div class="section">
<h1>AUTHOR</h1> lnstat was written by Harald Welte <[email protected]>.<div class="spacer">
</div>
This manual page was written by Michael Prokop <[email protected]> for the Debian project (but may be used by others).</div>
<table class="foot">
<tr>
<td class="foot-date">
</td>
<td class="foot-os">
</td>
</tr>
</table>
</div>
</body>
</html>
|
<!doctype html>
<html>
<title>npm-rm</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-rm.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../cli/npm-rm.html">npm-rm</a></h1> <p>Remove a package</p>
<h2 id="synopsis">SYNOPSIS</h2>
<pre><code>npm rm <name>
npm r <name>
npm uninstall <name>
npm un <name>
</code></pre><h2 id="description">DESCRIPTION</h2>
<p>This uninstalls a package, completely removing everything npm installed
on its behalf.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../cli/npm-prune.html">npm-prune(1)</a></li>
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
<li><a href="../files/npmrc.html">npmrc(5)</a></li>
</ul>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-rm — [email protected]</p>
| justathoughtor2/atomicApe | cygwin/bin/node_modules/phonegap/node_modules/cordova/node_modules/cordova-lib/node_modules/npm/html/doc/cli/npm-rm.html | HTML | gpl-3.0 | 3,248 | <!doctype html>
<html>
<title>npm-rm</title>
<meta http-equiv="content-type" value="text/html;utf-8">
<link rel="stylesheet" type="text/css" href="../../static/style.css">
<link rel="canonical" href="https://www.npmjs.org/doc/cli/npm-rm.html">
<script async=true src="../../static/toc.js"></script>
<body>
<div id="wrapper">
<h1><a href="../cli/npm-rm.html">npm-rm</a></h1> <p>Remove a package</p>
<h2 id="synopsis">SYNOPSIS</h2>
<pre><code>npm rm <name>
npm r <name>
npm uninstall <name>
npm un <name>
</code></pre><h2 id="description">DESCRIPTION</h2>
<p>This uninstalls a package, completely removing everything npm installed
on its behalf.</p>
<h2 id="see-also">SEE ALSO</h2>
<ul>
<li><a href="../cli/npm-prune.html">npm-prune(1)</a></li>
<li><a href="../cli/npm-install.html">npm-install(1)</a></li>
<li><a href="../files/npm-folders.html">npm-folders(5)</a></li>
<li><a href="../cli/npm-config.html">npm-config(1)</a></li>
<li><a href="../misc/npm-config.html">npm-config(7)</a></li>
<li><a href="../files/npmrc.html">npmrc(5)</a></li>
</ul>
</div>
<table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
<tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18> </td></tr>
<tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td><td style="width:40px;height:10px;background:#fff" colspan=4> </td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)"> </td><td colspan=6 style="width:60px;height:10px;background:#fff"> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4> </td></tr>
<tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2> </td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td><td style="width:10px;height:10px;background:#fff" rowspan=3> </td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff" rowspan=2> </td></tr>
<tr><td style="width:10px;height:10px;background:#fff"> </td></tr>
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6> </td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)"> </td></tr>
<tr><td colspan=5 style="width:50px;height:10px;background:#fff"> </td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4> </td><td style="width:90px;height:10px;background:#fff" colspan=9> </td></tr>
</table>
<p id="footer">npm-rm — [email protected]</p>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>PHP MySQL Database Interface: UnknownDatabaseException Klassenreferenz</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css">
<link href="../../doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Erzeugt von Doxygen 1.5.9 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="../../main.html"><span>Hauptseite</span></a></li>
<li><a href="../../namespaces.html"><span>Namensbereiche</span></a></li>
<li class="current"><a href="../../annotated.html"><span>Datenstrukturen</span></a></li>
<li><a href="../../files.html"><span>Dateien</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="../../annotated.html"><span>Datenstrukturen</span></a></li>
<li><a href="../../hierarchy.html"><span>Klassenhierarchie</span></a></li>
<li><a href="../../functions.html"><span>Datenstruktur-Elemente</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>UnknownDatabaseException Klassenreferenz</h1><!-- doxytag: class="UnknownDatabaseException" --><!-- doxytag: inherits="DatabaseException" --><div class="dynheader">
Klassendiagramm für UnknownDatabaseException:</div>
<div class="dynsection">
<p><center><img src="../../dc/daa/class_unknown_database_exception.png" usemap="#UnknownDatabaseException_map" border="0" alt=""></center>
<map name="UnknownDatabaseException_map">
<area href="../../d1/d5d/class_database_exception.html" alt="DatabaseException" shape="rect" coords="0,0,171,24">
</map>
</div>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Öffentliche Methoden</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dc/daa/class_unknown_database_exception.html#d9192420bc35f927ea5bcc2b6da93b0c">__construct</a> ($message=null, $code=0, Exception $previous=null)</td></tr>
</table>
<hr><a name="_details"></a><h2>Ausführliche Beschreibung</h2>
<a class="el" href="../../dc/daa/class_unknown_database_exception.html">UnknownDatabaseException</a> <hr><h2>Beschreibung der Konstruktoren und Destruktoren</h2>
<a class="anchor" name="d9192420bc35f927ea5bcc2b6da93b0c"></a><!-- doxytag: member="UnknownDatabaseException::__construct" ref="d9192420bc35f927ea5bcc2b6da93b0c" args="($message=null, $code=0, Exception $previous=null)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">__construct </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"> <em>message</em> = <code>null</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">$ </td>
<td class="paramname"> <em>code</em> = <code>0</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Exception $ </td>
<td class="paramname"> <em>previous</em> = <code>null</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<dl compact><dt><b>Parameter:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>string</em> </td><td>$message </td></tr>
<tr><td valign="top"></td><td valign="top"><em>number</em> </td><td>$code </td></tr>
<tr><td valign="top"></td><td valign="top"><em>Exception</em> </td><td>$previous </td></tr>
</table>
</dl>
<p>Erneute Implementation von <a class="el" href="../../d1/d5d/class_database_exception.html#d9192420bc35f927ea5bcc2b6da93b0c">DatabaseException</a>.</p>
</div>
</div><p>
<hr>Die Dokumentation für diese Klasse wurde erzeugt aufgrund der Datei:<ul>
<li>S:/Documents/Projekte/phpDBI/workbench/0.02/classes/exception/<a class="el" href="../../d1/d9b/_unknown_database_exception_8php.html">UnknownDatabaseException.php</a></ul>
</div>
<hr size="1"><address style="text-align: right;"><small>Erzeugt am Fri Dec 25 15:32:56 2009 für PHP MySQL Database Interface von
<a href="http://www.doxygen.org/index.html">
<img src="../../doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
</body>
</html>
| keil/phpDBI-MySQL-Database-Interface- | documentation/html/dc/daa/class_unknown_database_exception.html | HTML | gpl-3.0 | 4,592 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>PHP MySQL Database Interface: UnknownDatabaseException Klassenreferenz</title>
<link href="../../tabs.css" rel="stylesheet" type="text/css">
<link href="../../doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Erzeugt von Doxygen 1.5.9 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="../../main.html"><span>Hauptseite</span></a></li>
<li><a href="../../namespaces.html"><span>Namensbereiche</span></a></li>
<li class="current"><a href="../../annotated.html"><span>Datenstrukturen</span></a></li>
<li><a href="../../files.html"><span>Dateien</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="../../annotated.html"><span>Datenstrukturen</span></a></li>
<li><a href="../../hierarchy.html"><span>Klassenhierarchie</span></a></li>
<li><a href="../../functions.html"><span>Datenstruktur-Elemente</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>UnknownDatabaseException Klassenreferenz</h1><!-- doxytag: class="UnknownDatabaseException" --><!-- doxytag: inherits="DatabaseException" --><div class="dynheader">
Klassendiagramm für UnknownDatabaseException:</div>
<div class="dynsection">
<p><center><img src="../../dc/daa/class_unknown_database_exception.png" usemap="#UnknownDatabaseException_map" border="0" alt=""></center>
<map name="UnknownDatabaseException_map">
<area href="../../d1/d5d/class_database_exception.html" alt="DatabaseException" shape="rect" coords="0,0,171,24">
</map>
</div>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Öffentliche Methoden</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="../../dc/daa/class_unknown_database_exception.html#d9192420bc35f927ea5bcc2b6da93b0c">__construct</a> ($message=null, $code=0, Exception $previous=null)</td></tr>
</table>
<hr><a name="_details"></a><h2>Ausführliche Beschreibung</h2>
<a class="el" href="../../dc/daa/class_unknown_database_exception.html">UnknownDatabaseException</a> <hr><h2>Beschreibung der Konstruktoren und Destruktoren</h2>
<a class="anchor" name="d9192420bc35f927ea5bcc2b6da93b0c"></a><!-- doxytag: member="UnknownDatabaseException::__construct" ref="d9192420bc35f927ea5bcc2b6da93b0c" args="($message=null, $code=0, Exception $previous=null)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">__construct </td>
<td>(</td>
<td class="paramtype">$ </td>
<td class="paramname"> <em>message</em> = <code>null</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">$ </td>
<td class="paramname"> <em>code</em> = <code>0</code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">Exception $ </td>
<td class="paramname"> <em>previous</em> = <code>null</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
<dl compact><dt><b>Parameter:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>string</em> </td><td>$message </td></tr>
<tr><td valign="top"></td><td valign="top"><em>number</em> </td><td>$code </td></tr>
<tr><td valign="top"></td><td valign="top"><em>Exception</em> </td><td>$previous </td></tr>
</table>
</dl>
<p>Erneute Implementation von <a class="el" href="../../d1/d5d/class_database_exception.html#d9192420bc35f927ea5bcc2b6da93b0c">DatabaseException</a>.</p>
</div>
</div><p>
<hr>Die Dokumentation für diese Klasse wurde erzeugt aufgrund der Datei:<ul>
<li>S:/Documents/Projekte/phpDBI/workbench/0.02/classes/exception/<a class="el" href="../../d1/d9b/_unknown_database_exception_8php.html">UnknownDatabaseException.php</a></ul>
</div>
<hr size="1"><address style="text-align: right;"><small>Erzeugt am Fri Dec 25 15:32:56 2009 für PHP MySQL Database Interface von
<a href="http://www.doxygen.org/index.html">
<img src="../../doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
</body>
</html>
|
<html>
<head>
<title>datypus</title>
<link rel="stylesheet" type="text/css" href="/css/datystyle.css">
<body>
<div class="chart"></div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript">
var data = [4, 8, 15, 16, 2, 42];
var x = d3.scale.linear()
.domain([0, d3.max(data)])
.range([0, 420]);
d3.select(".chart")
.selectAll("div")
.data(data)
.enter().append("div")
.style("width", function(d) { return x(d) + "px"; })
.text(function(d) { return d; });
</script>
</body>
</html>
| zbisch/platypus | index.html | HTML | gpl-3.0 | 738 | <html>
<head>
<title>datypus</title>
<link rel="stylesheet" type="text/css" href="/css/datystyle.css">
<body>
<div class="chart"></div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript">
var data = [4, 8, 15, 16, 2, 42];
var x = d3.scale.linear()
.domain([0, d3.max(data)])
.range([0, 420]);
d3.select(".chart")
.selectAll("div")
.data(data)
.enter().append("div")
.style("width", function(d) { return x(d) + "px"; })
.text(function(d) { return d; });
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
table.head, table.foot { width: 100%; }
td.head-rtitle, td.foot-os { text-align: right; }
td.head-vol { text-align: center; }
table.foot td { width: 50%; }
table.head td { width: 33%; }
div.spacer { margin: 1em 0; }
</style>
<title>
PTHREAD_CONDATTR_SETPSHARED(3P)</title>
</head>
<body>
<div class="mandoc">
<table class="head">
<tbody>
<tr>
<td class="head-ltitle">
PTHREAD_CONDATTR_SETPSHARED(3P)</td>
<td class="head-vol">
POSIX Programmer's Manual</td>
<td class="head-rtitle">
PTHREAD_CONDATTR_SETPSHARED(3P)</td>
</tr>
</tbody>
</table>
<div class="section">
<h1>PROLOG</h1> This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.<div style="height: 1.00em;">
 </div>
</div>
<div class="section">
<h1>NAME</h1> pthread_condattr_setpshared — set the process-shared condition variable attribute</div>
<div class="section">
<h1>SYNOPSIS</h1><br/>
#include <pthread.h><div class="spacer">
</div>
int pthread_condattr_setpshared(pthread_condattr_t *<i>attr</i>,<br/>
int <i>pshared</i>);<br/>
</div>
<div class="section">
<h1>DESCRIPTION</h1> Refer to <i><i>pthread_condattr_getpshared</i>()</i>.</div>
<div class="section">
<h1>COPYRIGHT</h1> Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 7, Copyright (C) 2013 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. (This is POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.unix.org/online.html .<div style="height: 1.00em;">
 </div>
Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https://www.kernel.org/doc/man-pages/reporting_bugs.html .</div>
<table class="foot">
<tr>
<td class="foot-date">
2013</td>
<td class="foot-os">
IEEE/The Open Group</td>
</tr>
</table>
</div>
</body>
</html>
| fusion809/fusion809.github.io-old | man/pthread_condattr_setpshared.3p.html | HTML | gpl-3.0 | 2,519 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
table.head, table.foot { width: 100%; }
td.head-rtitle, td.foot-os { text-align: right; }
td.head-vol { text-align: center; }
table.foot td { width: 50%; }
table.head td { width: 33%; }
div.spacer { margin: 1em 0; }
</style>
<title>
PTHREAD_CONDATTR_SETPSHARED(3P)</title>
</head>
<body>
<div class="mandoc">
<table class="head">
<tbody>
<tr>
<td class="head-ltitle">
PTHREAD_CONDATTR_SETPSHARED(3P)</td>
<td class="head-vol">
POSIX Programmer's Manual</td>
<td class="head-rtitle">
PTHREAD_CONDATTR_SETPSHARED(3P)</td>
</tr>
</tbody>
</table>
<div class="section">
<h1>PROLOG</h1> This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.<div style="height: 1.00em;">
 </div>
</div>
<div class="section">
<h1>NAME</h1> pthread_condattr_setpshared — set the process-shared condition variable attribute</div>
<div class="section">
<h1>SYNOPSIS</h1><br/>
#include <pthread.h><div class="spacer">
</div>
int pthread_condattr_setpshared(pthread_condattr_t *<i>attr</i>,<br/>
int <i>pshared</i>);<br/>
</div>
<div class="section">
<h1>DESCRIPTION</h1> Refer to <i><i>pthread_condattr_getpshared</i>()</i>.</div>
<div class="section">
<h1>COPYRIGHT</h1> Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 7, Copyright (C) 2013 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. (This is POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.unix.org/online.html .<div style="height: 1.00em;">
 </div>
Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https://www.kernel.org/doc/man-pages/reporting_bugs.html .</div>
<table class="foot">
<tr>
<td class="foot-date">
2013</td>
<td class="foot-os">
IEEE/The Open Group</td>
</tr>
</table>
</div>
</body>
</html>
|
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'strict-origin-when-cross-origin'</title>
<meta charset='utf-8'>
<meta name="description" content="Check that a priori insecure subresource gets no referrer information. Otherwise, cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL.">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin">
<meta name="assert" content="Referrer Policy: Expects origin for a-tag to cross-https origin and no-redirect redirection from http context.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="../../../../generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "origin",
"origin": "cross-https",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [],
"sourceContextType": "srcdoc"
}
],
"source_scheme": "http",
"subresource": "a-tag",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| UK992/servo | tests/wpt/web-platform-tests/referrer-policy/gen/srcdoc-inherit.http-rp/strict-origin-when-cross-origin/a-tag/cross-https.no-redirect.http.html | HTML | mpl-2.0 | 1,719 | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'strict-origin-when-cross-origin'</title>
<meta charset='utf-8'>
<meta name="description" content="Check that a priori insecure subresource gets no referrer information. Otherwise, cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL.">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin">
<meta name="assert" content="Referrer Policy: Expects origin for a-tag to cross-https origin and no-redirect redirection from http context.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="../../../../generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "origin",
"origin": "cross-https",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [],
"sourceContextType": "srcdoc"
}
],
"source_scheme": "http",
"subresource": "a-tag",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Keyword noodle soup</title>
<link rel="stylesheet" href="show.css">
</head>
<body>
<div id="app">
<h1>Loading…</h1>
</div>
<script src="underscore-min.js"></script>
<script src="d3.v3.min.js" charset="utf-8"></script>
<script src="show.js"></script>
</body>
</html>
| overview/overview-apps | keyword-noodle-soup/public/show.html | HTML | agpl-3.0 | 375 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Keyword noodle soup</title>
<link rel="stylesheet" href="show.css">
</head>
<body>
<div id="app">
<h1>Loading…</h1>
</div>
<script src="underscore-min.js"></script>
<script src="d3.v3.min.js" charset="utf-8"></script>
<script src="show.js"></script>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/transitional.dtd">
<html><head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="estilos.css" />
<title> Indice de Ley Orgánica de Educación Enmarcada en los Derechos Humanos, como contribució en EDUCERE</title>
</head><body>
<div id="container">
<div id="pageHeader">
</div>
<div id="pageContehome">
<center><big><a href="../index.html">Indices EDUCERE</a><br></big></center>
<entry>
<number>
811<br> </number>
<results>
<titulo>
Ley Orgánica de Educación Enmarcada en los Derechos Humanos<br> </titulo>
<subtitulo>
-- <br> </subtitulo>
<autores>
[[Trejo Urquiola, Walter]]<br> </autores>
<titulo>
<a href="http://www.saber.ula.ve/handle/123456789/19615">http://www.saber.ula.ve/handle/123456789/19615</a><br> <creado>
2001-07-01<br> </creado>
</titulo>
<results>
<div></div>
<h2 align="center">La frase: Ley Orgánica de Educación Enmarcada en los Derechos Humanos</h2>
<h3 align="center">Produjo 7 resultados</h3>
<table align="center" border="1" width="100%">
<tr><th>Relevancia</th><th>Archivo (URL implicito)</th><th>Tama�o (en Bytes)</th></tr>
<tr><td>1000</td><td><a href=".%2fpdfs%2fv12n41%2farticulo14.pdf">articulo14.pdf</a></td><td><em>2380231</em></td></tr>
<tr><td>930</td><td><a href=".%2fpdfs%2fv5n14%2farticulo11.pdf">articulo11.pdf</a></td><td><em>77241</em></td></tr>
<tr><td>848</td><td><a href=".%2fpdfs%2fv11n36%2farticulo17.pdf">articulo17.pdf</a></td><td><em>875718</em></td></tr>
<tr><td>822</td><td><a href=".%2fpdfs%2fv3n8%2farticulo3-8-11.pdf">articulo3-8-11.pdf</a></td><td><em>755003</em></td></tr>
<tr><td>819</td><td><a href=".%2fpdfs%2fv6n17%2farticulo18.pdf">articulo18.pdf</a></td><td><em>363494</em></td></tr>
<tr><td>794</td><td><a href=".%2fpdfs%2fv13n45%2farticulo11.pdf">articulo11.pdf</a></td><td><em>301176</em></td></tr>
<tr><td>768</td><td><a href=".%2fpdfs%2fv5n16%2farticulo7.pdf">articulo7.pdf</a></td><td><em>408479</em></td></tr>
</table>
</results>
</entry>
</div>
<div id="footer"><p>EDUCERE. La Revista Venezolana de Educación Escuela de Educación. <br/>
Facultad de Humanidades y Educación Universidad de Los Andes,<br/>
Mérida - Venezuela<br/>
<br/>
<br/>
</p>
</div>
</div>
</body>
</html>
| jacintodavila/catalogoelectronicoautonomo | ceaWeb/indices/t00811.html | HTML | agpl-3.0 | 2,338 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/transitional.dtd">
<html><head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="estilos.css" />
<title> Indice de Ley Orgánica de Educación Enmarcada en los Derechos Humanos, como contribució en EDUCERE</title>
</head><body>
<div id="container">
<div id="pageHeader">
</div>
<div id="pageContehome">
<center><big><a href="../index.html">Indices EDUCERE</a><br></big></center>
<entry>
<number>
811<br> </number>
<results>
<titulo>
Ley Orgánica de Educación Enmarcada en los Derechos Humanos<br> </titulo>
<subtitulo>
-- <br> </subtitulo>
<autores>
[[Trejo Urquiola, Walter]]<br> </autores>
<titulo>
<a href="http://www.saber.ula.ve/handle/123456789/19615">http://www.saber.ula.ve/handle/123456789/19615</a><br> <creado>
2001-07-01<br> </creado>
</titulo>
<results>
<div></div>
<h2 align="center">La frase: Ley Orgánica de Educación Enmarcada en los Derechos Humanos</h2>
<h3 align="center">Produjo 7 resultados</h3>
<table align="center" border="1" width="100%">
<tr><th>Relevancia</th><th>Archivo (URL implicito)</th><th>Tama�o (en Bytes)</th></tr>
<tr><td>1000</td><td><a href=".%2fpdfs%2fv12n41%2farticulo14.pdf">articulo14.pdf</a></td><td><em>2380231</em></td></tr>
<tr><td>930</td><td><a href=".%2fpdfs%2fv5n14%2farticulo11.pdf">articulo11.pdf</a></td><td><em>77241</em></td></tr>
<tr><td>848</td><td><a href=".%2fpdfs%2fv11n36%2farticulo17.pdf">articulo17.pdf</a></td><td><em>875718</em></td></tr>
<tr><td>822</td><td><a href=".%2fpdfs%2fv3n8%2farticulo3-8-11.pdf">articulo3-8-11.pdf</a></td><td><em>755003</em></td></tr>
<tr><td>819</td><td><a href=".%2fpdfs%2fv6n17%2farticulo18.pdf">articulo18.pdf</a></td><td><em>363494</em></td></tr>
<tr><td>794</td><td><a href=".%2fpdfs%2fv13n45%2farticulo11.pdf">articulo11.pdf</a></td><td><em>301176</em></td></tr>
<tr><td>768</td><td><a href=".%2fpdfs%2fv5n16%2farticulo7.pdf">articulo7.pdf</a></td><td><em>408479</em></td></tr>
</table>
</results>
</entry>
</div>
<div id="footer"><p>EDUCERE. La Revista Venezolana de Educación Escuela de Educación. <br/>
Facultad de Humanidades y Educación Universidad de Los Andes,<br/>
Mérida - Venezuela<br/>
<br/>
<br/>
</p>
</div>
</div>
</body>
</html>
|
<html>
<head>
<title>Frankenstein, 1831, Vol. 2, Chap. 3, Frame 6</title>
</head>
<body>
<p>
"Having thus arranged my dwelling, and carpeted it with clean
straw, I retired; for I saw the figure of a man at a distance,
and I remembered too well my treatment the night before, to trust
myself in his power. I had first, however, provided for my
sustenance for that day, by a loaf of coarse bread, which I
purloined, and a cup with which I could drink, more conveniently
than from my hand, of the pure water which flowed by my retreat.
The floor was a little raised, so that it was kept perfectly dry,
and by its vicinity to the chimney of the cottage it was
tolerably warm.</p><p>
"Being thus provided, I resolved to reside in this hovel, until something
should occur which might alter my determination. It was indeed <a
href="../V2notes/paradise.html">a paradise</a>, compared to the bleak
forest, my former residence, the rain-dropping branches, and dank earth. I
ate my breakfast with pleasure, and was about to remove a plank to procure
myself a little water, when I heard a step, and looking through a small
chink, I beheld a young creature, with a pail on her head, passing before
my hovel. The girl was young, and of gentle demeanour, <a
href="../V2notes/unlike.html">unlike what I have since found cottagers and
farm-house servants to be</a>. Yet she was <a
href="../V2notes/meanly.html">meanly dressed</a>, a coarse blue petticoat
and a linen jacket being her only garb; her fair hair was plaited, but not
adorned; she looked patient, yet sad. I lost sight of her; and in about a
quarter of an hour she returned, bearing the pail, which was now partly
filled with milk. As she walked along, seemingly incommoded by the burden,
a young man met her, whose countenance expressed a deeper despondence.
Uttering a few sounds with an air of melancholy, he took the pail from her
head, and bore it to the cottage himself. She followed, and they
disappeared. Presently I saw the young man again, with some tools in his
hand, cross the field behind the cottage; and the girl was also busied,
sometimes in the house, and sometimes in the yard.</p>
</body>
</html>
| ebeshero/Pittsburgh_Frankenstein | frankenTexts_HTML/PA_Electronic_Ed/1831_ed/00118-chapterContent-1831.html | HTML | agpl-3.0 | 2,174 | <html>
<head>
<title>Frankenstein, 1831, Vol. 2, Chap. 3, Frame 6</title>
</head>
<body>
<p>
"Having thus arranged my dwelling, and carpeted it with clean
straw, I retired; for I saw the figure of a man at a distance,
and I remembered too well my treatment the night before, to trust
myself in his power. I had first, however, provided for my
sustenance for that day, by a loaf of coarse bread, which I
purloined, and a cup with which I could drink, more conveniently
than from my hand, of the pure water which flowed by my retreat.
The floor was a little raised, so that it was kept perfectly dry,
and by its vicinity to the chimney of the cottage it was
tolerably warm.</p><p>
"Being thus provided, I resolved to reside in this hovel, until something
should occur which might alter my determination. It was indeed <a
href="../V2notes/paradise.html">a paradise</a>, compared to the bleak
forest, my former residence, the rain-dropping branches, and dank earth. I
ate my breakfast with pleasure, and was about to remove a plank to procure
myself a little water, when I heard a step, and looking through a small
chink, I beheld a young creature, with a pail on her head, passing before
my hovel. The girl was young, and of gentle demeanour, <a
href="../V2notes/unlike.html">unlike what I have since found cottagers and
farm-house servants to be</a>. Yet she was <a
href="../V2notes/meanly.html">meanly dressed</a>, a coarse blue petticoat
and a linen jacket being her only garb; her fair hair was plaited, but not
adorned; she looked patient, yet sad. I lost sight of her; and in about a
quarter of an hour she returned, bearing the pail, which was now partly
filled with milk. As she walked along, seemingly incommoded by the burden,
a young man met her, whose countenance expressed a deeper despondence.
Uttering a few sounds with an air of melancholy, he took the pail from her
head, and bore it to the cottage himself. She followed, and they
disappeared. Presently I saw the young man again, with some tools in his
hand, cross the field behind the cottage; and the girl was also busied,
sometimes in the house, and sometimes in the yard.</p>
</body>
</html>
|
<html>
<head>
<title>Frankenstein, 1831, Vol. 3, Chap. 1, Frame 2</title>
</head>
<body>
<p>
I <a href="../V3notes/trembled.html">trembled violently</a> at
his exordium, and my father continued--</p><p>
"I confess, my son, that I have always looked forward to your
marriage with our dear Elizabeth as <a
href="../V3notes/domestic.html">the tie of our domestic
comfort</a>, and the stay of my declining years. You were
attached to each other from your earliest infancy; you studied
together, and appeared, in dispositions and tastes, entirely
suited to one another. But so blind is the experience of man,
that what I conceived to be the best assistants to my plan, may
have entirely destroyed it. You, perhaps, regard her as your
sister, without any wish that she might become your wife. Nay,
you may have met with another whom you may love; and, considering
yourself as bound in honour to Elizabeth, this struggle may
occasion the poignant misery which you appear to feel."</p><p>
"My dear father, re-assure yourself. I love my cousin tenderly
and sincerely. I never saw any woman who excited, as Elizabeth
does, my warmest admiration and affection. My future hopes and
prospects are entirely bound up in the expectation of our union."</p><p>
"The expression of your sentiments on this subject, my dear
Victor, gives me more pleasure than I have for some time
experienced. If you feel thus, we shall assuredly be happy,
however present events may cast a gloom over us. But it is this
gloom which appears to have taken so strong a hold of your mind,
that I wish to dissipate. Tell me, therefore, whether you object
to an immediate solemnisation of the marriage. We have been
unfortunate, and recent events have drawn us from that every-day
tranquillity befitting my years and infirmities. You are younger;
yet I do not suppose, possessed as you are of a competent
fortune, that an <a href="../V3notes/earlymar.html">early
marriage would at all interfere with any future plans of honour
and utility</a> that you may have formed. Do not suppose,
however, that I wish to dictate happiness to you, or that a delay
on your part would cause me any serious uneasiness. Interpret my
words with <a href="../V3notes/candour.html">candour</a>, and
answer me, I conjure you, with confidence and sincerity."</p>
</body>
</html>
| ebeshero/Pittsburgh_Frankenstein | frankenTexts_HTML/PA_Electronic_Ed/1831_ed/00169-chapterContent-1831.html | HTML | agpl-3.0 | 2,329 | <html>
<head>
<title>Frankenstein, 1831, Vol. 3, Chap. 1, Frame 2</title>
</head>
<body>
<p>
I <a href="../V3notes/trembled.html">trembled violently</a> at
his exordium, and my father continued--</p><p>
"I confess, my son, that I have always looked forward to your
marriage with our dear Elizabeth as <a
href="../V3notes/domestic.html">the tie of our domestic
comfort</a>, and the stay of my declining years. You were
attached to each other from your earliest infancy; you studied
together, and appeared, in dispositions and tastes, entirely
suited to one another. But so blind is the experience of man,
that what I conceived to be the best assistants to my plan, may
have entirely destroyed it. You, perhaps, regard her as your
sister, without any wish that she might become your wife. Nay,
you may have met with another whom you may love; and, considering
yourself as bound in honour to Elizabeth, this struggle may
occasion the poignant misery which you appear to feel."</p><p>
"My dear father, re-assure yourself. I love my cousin tenderly
and sincerely. I never saw any woman who excited, as Elizabeth
does, my warmest admiration and affection. My future hopes and
prospects are entirely bound up in the expectation of our union."</p><p>
"The expression of your sentiments on this subject, my dear
Victor, gives me more pleasure than I have for some time
experienced. If you feel thus, we shall assuredly be happy,
however present events may cast a gloom over us. But it is this
gloom which appears to have taken so strong a hold of your mind,
that I wish to dissipate. Tell me, therefore, whether you object
to an immediate solemnisation of the marriage. We have been
unfortunate, and recent events have drawn us from that every-day
tranquillity befitting my years and infirmities. You are younger;
yet I do not suppose, possessed as you are of a competent
fortune, that an <a href="../V3notes/earlymar.html">early
marriage would at all interfere with any future plans of honour
and utility</a> that you may have formed. Do not suppose,
however, that I wish to dictate happiness to you, or that a delay
on your part would cause me any serious uneasiness. Interpret my
words with <a href="../V3notes/candour.html">candour</a>, and
answer me, I conjure you, with confidence and sincerity."</p>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Netto-Lohn</title>
<meta name="viewport" content="user-scalable=no">
<link rel="stylesheet" href="../shared/css/export-email.css">
<script src="../shared/config.js" defer></script>
<script src="../dojotoolkit/dojo/dojo.js" defer></script>
<script src="export-email.js" defer></script>
</head>
<body>
</body>
</html>
| ohaz/amos-ss15-proj1 | FlaskWebProject/static/scripts/rechner-brutto-netto/export-email.html | HTML | agpl-3.0 | 394 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Netto-Lohn</title>
<meta name="viewport" content="user-scalable=no">
<link rel="stylesheet" href="../shared/css/export-email.css">
<script src="../shared/config.js" defer></script>
<script src="../dojotoolkit/dojo/dojo.js" defer></script>
<script src="export-email.js" defer></script>
</head>
<body>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>GTL: Référence du fichier gtl_image_raw.h</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Généré par Doxygen 1.3.8 -->
<div class="qindex"><a class="qindex" href="index.html">Page principale</a> | <a class="qindex" href="namespaces.html">Liste des namespaces</a> | <a class="qindex" href="hierarchy.html">Hiérarchie des classes</a> | <a class="qindex" href="annotated.html">Liste des classes</a> | <a class="qindex" href="files.html">Liste des fichiers</a> | <a class="qindex" href="namespacemembers.html">Membres de namespace</a> | <a class="qindex" href="functions.html">Membres de classe</a> | <a class="qindex" href="globals.html">Membres de fichier</a></div>
<h1>Référence du fichier gtl_image_raw.h</h1>Classe CImageRAW, pour le chargement des images RAW. <a href="#_details">Plus de détails...</a>
<p>
<code>#include "<a class="el" href="gtl__image_8h-source.html">gtl_image.h</a>"</code><br>
<code>#include <string></code><br>
<p>
<a href="gtl__image__raw_8h-source.html">Aller au code source de ce fichier.</a><table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>namespace </td><td class="memItemRight" valign=bottom><a class="el" href="namespacegtl.html">gtl</a></td></tr>
<tr><td colspan=2><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>class </td><td class="memItemRight" valign=bottom><a class="el" href="classgtl_1_1_c_image_r_a_w.html">gtl::CImageRAW</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Classe pour le chargement des images RAW. <a href="classgtl_1_1_c_image_r_a_w.html#_details">Plus de détails...</a><br></td></tr>
</table>
<hr><a name="_details"></a><h2>Description détaillée</h2>
Classe CImageRAW, pour le chargement des images RAW.
<p>
<dl compact><dt><b>Date:</b></dt><dd>02/10/2004</dd></dl>
<p>
Définition dans le fichier <a class="el" href="gtl__image__raw_8h-source.html">gtl_image_raw.h</a>.<hr size="1"><address style="align: right;"><small>Généré le Wed Jan 5 23:28:23 2005 pour GTL par
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>
| Groovounet/piranha | source/lib/gtl/doc/html/gtl__image__raw_8h.html | HTML | lgpl-2.1 | 2,551 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>GTL: Référence du fichier gtl_image_raw.h</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Généré par Doxygen 1.3.8 -->
<div class="qindex"><a class="qindex" href="index.html">Page principale</a> | <a class="qindex" href="namespaces.html">Liste des namespaces</a> | <a class="qindex" href="hierarchy.html">Hiérarchie des classes</a> | <a class="qindex" href="annotated.html">Liste des classes</a> | <a class="qindex" href="files.html">Liste des fichiers</a> | <a class="qindex" href="namespacemembers.html">Membres de namespace</a> | <a class="qindex" href="functions.html">Membres de classe</a> | <a class="qindex" href="globals.html">Membres de fichier</a></div>
<h1>Référence du fichier gtl_image_raw.h</h1>Classe CImageRAW, pour le chargement des images RAW. <a href="#_details">Plus de détails...</a>
<p>
<code>#include "<a class="el" href="gtl__image_8h-source.html">gtl_image.h</a>"</code><br>
<code>#include <string></code><br>
<p>
<a href="gtl__image__raw_8h-source.html">Aller au code source de ce fichier.</a><table border=0 cellpadding=0 cellspacing=0>
<tr><td></td></tr>
<tr><td colspan=2><br><h2>Namespaces</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>namespace </td><td class="memItemRight" valign=bottom><a class="el" href="namespacegtl.html">gtl</a></td></tr>
<tr><td colspan=2><br><h2>Classes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align=right valign=top>class </td><td class="memItemRight" valign=bottom><a class="el" href="classgtl_1_1_c_image_r_a_w.html">gtl::CImageRAW</a></td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Classe pour le chargement des images RAW. <a href="classgtl_1_1_c_image_r_a_w.html#_details">Plus de détails...</a><br></td></tr>
</table>
<hr><a name="_details"></a><h2>Description détaillée</h2>
Classe CImageRAW, pour le chargement des images RAW.
<p>
<dl compact><dt><b>Date:</b></dt><dd>02/10/2004</dd></dl>
<p>
Définition dans le fichier <a class="el" href="gtl__image__raw_8h-source.html">gtl_image_raw.h</a>.<hr size="1"><address style="align: right;"><small>Généré le Wed Jan 5 23:28:23 2005 pour GTL par
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border=0 ></a> 1.3.8 </small></address>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Test 6</title>
<script src="sxz.js"></script>
</head>
<body>
<img src="lena_std.jpg" align="left" alt="original image" />
<canvas id="canvasid" width="512" height="512"></canvas>
<script>
var canvas = document.getElementById('canvasid');
var sxz = new Sxz();
sxz.Load(sxz, "lena_std.sxz", canvas, Render);
function Render(sxz) {
sxz.Render();
}
</script>
</body>
</html>
| DarkLilac/Sxz | Polyfill/lena_demo.html | HTML | lgpl-3.0 | 586 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Test 6</title>
<script src="sxz.js"></script>
</head>
<body>
<img src="lena_std.jpg" align="left" alt="original image" />
<canvas id="canvasid" width="512" height="512"></canvas>
<script>
var canvas = document.getElementById('canvasid');
var sxz = new Sxz();
sxz.Load(sxz, "lena_std.sxz", canvas, Render);
function Render(sxz) {
sxz.Render();
}
</script>
</body>
</html>
|
<?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<meta charset="UTF-8"/>
<title>System.Net.DecompressionMethods – VSharp – Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">System.Net.DecompressionMethods – VSharp Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">VSharp</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="System.html">System</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="System.Net.html">Net</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enum">DecompressionMethods</li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enumvalue"><a href="System.Net.DecompressionMethods.Deflate.html">Deflate</a></li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.GZip.html">GZip</a></li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.None.html">None</a></li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">DecompressionMethods</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition">[ <span class="main_type">Flags</span> ]<br/><span class="main_keyword">public</span> <span class="main_keyword">enum</span> <b><span class="enum">DecompressionMethods</span></b>
</div><br/>
<div class="namespace_note"><b>Namespace:</b> <a href="System.Net.html">System.Net</a>
</div>
<div class="package_note"><b>Package:</b> <a href="index.htm">VSharp</a>
</div>
<h2 class="main_title">Content:</h2>
<h3 class="main_title">Enum values:</h3>
<ul class="navi_inline">
<li class="enumvalue"><a href="System.Net.DecompressionMethods.None.html">None</a> - </li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.GZip.html">GZip</a> - </li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.Deflate.html">Deflate</a> - </li>
</ul>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> | edwinspire/VSharp | v#/VSharp/VSharp/System.Net.DecompressionMethods.html | HTML | lgpl-3.0 | 2,774 | <?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<meta charset="UTF-8"/>
<title>System.Net.DecompressionMethods – VSharp – Vala Binding Reference</title>
<link href="../style.css" rel="stylesheet" type="text/css"/><script src="../scripts.js" type="text/javascript">
</script>
</head>
<body>
<div class="site_header">System.Net.DecompressionMethods – VSharp Reference Manual</div>
<div class="site_body">
<div class="site_navigation">
<ul class="navi_main">
<li class="package_index"><a href="../index.html">Packages</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="package"><a href="index.htm">VSharp</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="System.html">System</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="System.Net.html">Net</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enum">DecompressionMethods</li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="enumvalue"><a href="System.Net.DecompressionMethods.Deflate.html">Deflate</a></li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.GZip.html">GZip</a></li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.None.html">None</a></li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">DecompressionMethods</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition">[ <span class="main_type">Flags</span> ]<br/><span class="main_keyword">public</span> <span class="main_keyword">enum</span> <b><span class="enum">DecompressionMethods</span></b>
</div><br/>
<div class="namespace_note"><b>Namespace:</b> <a href="System.Net.html">System.Net</a>
</div>
<div class="package_note"><b>Package:</b> <a href="index.htm">VSharp</a>
</div>
<h2 class="main_title">Content:</h2>
<h3 class="main_title">Enum values:</h3>
<ul class="navi_inline">
<li class="enumvalue"><a href="System.Net.DecompressionMethods.None.html">None</a> - </li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.GZip.html">GZip</a> - </li>
<li class="enumvalue"><a href="System.Net.DecompressionMethods.Deflate.html">Deflate</a> - </li>
</ul>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<title>Henlo World</title>
<meta charset="UTF-8">
<style>
body {
font-family: helvetica, sans serif;
text-align: center;
background-color: #fceed4;
padding-top: 20%;
}
</style>
</head>
<body>
<div>
<a href="https://twitter.com/ChristenNguyen">😸</a> |
<a href="https://www.instagram.com/deathbypuppies/">📷</a> |
<a href="https://www.youtube.com/watch?v=JaPf-MRKITg">🎼</a>
</div>
<p>Hello World, I'm Christen! Here's a link to my <a href="https://github.com/christennguyen">Github</a>!</p>
</body>
</html> | muan/hello-world | humans/christennguyen.html | HTML | unlicense | 681 | <!DOCTYPE html>
<html>
<head>
<title>Henlo World</title>
<meta charset="UTF-8">
<style>
body {
font-family: helvetica, sans serif;
text-align: center;
background-color: #fceed4;
padding-top: 20%;
}
</style>
</head>
<body>
<div>
<a href="https://twitter.com/ChristenNguyen">😸</a> |
<a href="https://www.instagram.com/deathbypuppies/">📷</a> |
<a href="https://www.youtube.com/watch?v=JaPf-MRKITg">🎼</a>
</div>
<p>Hello World, I'm Christen! Here's a link to my <a href="https://github.com/christennguyen">Github</a>!</p>
</body>
</html> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Author" content="Made by 'tree'">
<meta name="GENERATOR" content="$Version: $ tree v1.6.0 (c) 1996 - 2011 by Steve Baker, Thomas Moore, Francesc Rocher, Kyosuke Tokoro $">
<title>Directory Tree</title>
<style type="text/css">
<!--
BODY { font-family : ariel, monospace, sans-serif; }
P { font-weight: normal; font-family : ariel, monospace, sans-serif; color: black; background-color: transparent;}
B { font-weight: normal; color: black; background-color: transparent;}
A:visited { font-weight : normal; text-decoration : none; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:link { font-weight : normal; text-decoration : none; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:hover { color : #000000; font-weight : normal; text-decoration : underline; background-color : yellow; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:active { color : #000000; font-weight: normal; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
.VERSION { font-size: small; font-family : arial, sans-serif; }
.NORM { color: black; background-color: transparent;}
.FIFO { color: purple; background-color: transparent;}
.CHAR { color: yellow; background-color: transparent;}
.DIR { color: blue; background-color: transparent;}
.BLOCK { color: yellow; background-color: transparent;}
.LINK { color: aqua; background-color: transparent;}
.SOCK { color: fuchsia;background-color: transparent;}
.EXEC { color: green; background-color: transparent;}
-->
</style>
</head>
<body>
<h1>Directory Tree</h1><p>
<a href="http://localhost">http://localhost</a><br>
├── <a href="http://localhost/1">1</a><br>
├── <a href="http://localhost/2">2</a><br>
├── <a href="http://localhost/a.out">a.out</a><br>
├── <a href="http://localhost/a.txt">a.txt</a><br>
├── <a href="http://localhost/b.txt">b.txt</a><br>
├── <a href="http://localhost/file">file</a><br>
├── <a href="http://localhost/filestat.sh">filestat.sh</a><br>
├── <a href="http://localhost/helloworld.c">helloworld.c</a><br>
├── <a href="http://localhost/image2.iso">image2.iso</a><br>
├── <a href="http://localhost/image.iso">image.iso</a><br>
├── <a href="http://localhost/loopback/">loopback</a><br>
│ └── <a href="http://localhost/loopback/file">file</a><br>
├── <a href="http://localhost/loopbackfile.img">loopbackfile.img</a><br>
├── <a href="http://localhost/other">other</a><br>
├── <a href="http://localhost/out.html">out.html</a><br>
├── <a href="http://localhost/remove">remove</a><br>
├── <a href="http://localhost/remove_duplicates.sh">remove_duplicates.sh</a><br>
├── <a href="http://localhost/test9.txt">test9.txt</a><br>
├── <a href="http://localhost/version12.patch">version12.patch</a><br>
├── <a href="http://localhost/version1.txt">version1.txt</a><br>
├── <a href="http://localhost/version1.txt.orig">version1.txt.orig</a><br>
├── <a href="http://localhost/version2.txt">version2.txt</a><br>
└── <a href="http://localhost/version.patch">version.patch</a><br>
<br><br>
</p>
<p>
1 directory, 22 files
<br><br>
</p>
<hr>
<p class="VERSION">
tree v1.6.0 © 1996 - 2011 by Steve Baker and Thomas Moore <br>
HTML output hacked and copyleft © 1998 by Francesc Rocher <br>
Charsets / OS/2 support © 2001 by Kyosuke Tokoro
</p>
</body>
</html>
| sczzq/symmetrical-spoon | base-usage/shell/FileInFileOut/out.html | HTML | unlicense | 3,778 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="Author" content="Made by 'tree'">
<meta name="GENERATOR" content="$Version: $ tree v1.6.0 (c) 1996 - 2011 by Steve Baker, Thomas Moore, Francesc Rocher, Kyosuke Tokoro $">
<title>Directory Tree</title>
<style type="text/css">
<!--
BODY { font-family : ariel, monospace, sans-serif; }
P { font-weight: normal; font-family : ariel, monospace, sans-serif; color: black; background-color: transparent;}
B { font-weight: normal; color: black; background-color: transparent;}
A:visited { font-weight : normal; text-decoration : none; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:link { font-weight : normal; text-decoration : none; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:hover { color : #000000; font-weight : normal; text-decoration : underline; background-color : yellow; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
A:active { color : #000000; font-weight: normal; background-color : transparent; margin : 0px 0px 0px 0px; padding : 0px 0px 0px 0px; display: inline; }
.VERSION { font-size: small; font-family : arial, sans-serif; }
.NORM { color: black; background-color: transparent;}
.FIFO { color: purple; background-color: transparent;}
.CHAR { color: yellow; background-color: transparent;}
.DIR { color: blue; background-color: transparent;}
.BLOCK { color: yellow; background-color: transparent;}
.LINK { color: aqua; background-color: transparent;}
.SOCK { color: fuchsia;background-color: transparent;}
.EXEC { color: green; background-color: transparent;}
-->
</style>
</head>
<body>
<h1>Directory Tree</h1><p>
<a href="http://localhost">http://localhost</a><br>
├── <a href="http://localhost/1">1</a><br>
├── <a href="http://localhost/2">2</a><br>
├── <a href="http://localhost/a.out">a.out</a><br>
├── <a href="http://localhost/a.txt">a.txt</a><br>
├── <a href="http://localhost/b.txt">b.txt</a><br>
├── <a href="http://localhost/file">file</a><br>
├── <a href="http://localhost/filestat.sh">filestat.sh</a><br>
├── <a href="http://localhost/helloworld.c">helloworld.c</a><br>
├── <a href="http://localhost/image2.iso">image2.iso</a><br>
├── <a href="http://localhost/image.iso">image.iso</a><br>
├── <a href="http://localhost/loopback/">loopback</a><br>
│ └── <a href="http://localhost/loopback/file">file</a><br>
├── <a href="http://localhost/loopbackfile.img">loopbackfile.img</a><br>
├── <a href="http://localhost/other">other</a><br>
├── <a href="http://localhost/out.html">out.html</a><br>
├── <a href="http://localhost/remove">remove</a><br>
├── <a href="http://localhost/remove_duplicates.sh">remove_duplicates.sh</a><br>
├── <a href="http://localhost/test9.txt">test9.txt</a><br>
├── <a href="http://localhost/version12.patch">version12.patch</a><br>
├── <a href="http://localhost/version1.txt">version1.txt</a><br>
├── <a href="http://localhost/version1.txt.orig">version1.txt.orig</a><br>
├── <a href="http://localhost/version2.txt">version2.txt</a><br>
└── <a href="http://localhost/version.patch">version.patch</a><br>
<br><br>
</p>
<p>
1 directory, 22 files
<br><br>
</p>
<hr>
<p class="VERSION">
tree v1.6.0 © 1996 - 2011 by Steve Baker and Thomas Moore <br>
HTML output hacked and copyleft © 1998 by Francesc Rocher <br>
Charsets / OS/2 support © 2001 by Kyosuke Tokoro
</p>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>快查网-chrome插件</title>
<script type="text/javascript" src="../js/jquery.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/benchmark.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/show_desktop.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/test.js" charset="utf-8"></script>
</head>
<body>
<div id="test1" style="cursor:hand;">good</div>
</body>
</html>
| midoks/chrome-extensions | webtool/html/info.html | HTML | apache-2.0 | 570 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>快查网-chrome插件</title>
<script type="text/javascript" src="../js/jquery.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/benchmark.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/show_desktop.js" charset="utf-8"></script>
<script type="text/javascript" src="../js/test.js" charset="utf-8"></script>
</head>
<body>
<div id="test1" style="cursor:hand;">good</div>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /ammon/images/sliders</title>
<meta charset="UTF-8"></head>
<body>
<h1>Index of /ammon/images/sliders</h1>
<ul><li><a href="../index.html"> Parent Directory</a></li>
<li><a href="./anything_slider/index.html"> anything_slider/</a></li>
<li><a href="./full_slider/index.html"> full_slider/</a></li>
<li><a href="./interactive_content/index.html"> interactive_content/</a></li>
<li><a href="./nivoslider/index.html"> nivoslider/</a></li>
<li><a href="./piecemaker/index.html"> piecemaker/</a></li>
<li><a href="./portfolio_showcase/index.html"> portfolio_showcase/</a></li>
<li><a href="./wowslider/index.html"> wowslider/</a></li>
</ul>
</body></html>
| hammadalinaqvi/bookstoregenie | images/sliders/index.html | HTML | apache-2.0 | 742 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Index of /ammon/images/sliders</title>
<meta charset="UTF-8"></head>
<body>
<h1>Index of /ammon/images/sliders</h1>
<ul><li><a href="../index.html"> Parent Directory</a></li>
<li><a href="./anything_slider/index.html"> anything_slider/</a></li>
<li><a href="./full_slider/index.html"> full_slider/</a></li>
<li><a href="./interactive_content/index.html"> interactive_content/</a></li>
<li><a href="./nivoslider/index.html"> nivoslider/</a></li>
<li><a href="./piecemaker/index.html"> piecemaker/</a></li>
<li><a href="./portfolio_showcase/index.html"> portfolio_showcase/</a></li>
<li><a href="./wowslider/index.html"> wowslider/</a></li>
</ul>
</body></html>
|
<!DOCTYPE html>
<html>
<head>
<title>try chat(JAX-RS)</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../webjars/bootstrap/3.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="../resources/css/style.css" />
<script type='text/javascript' src="../webjars/jquery/2.1.1/jquery.min.js"></script>
<script type='text/javascript' src="../webjars/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script type='text/javascript' src="../webjars/vue/0.11.0/vue.min.js"></script>
<script type='text/javascript' src="../resources/js/common.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>サンプルチャット JAX-RS</h1>
<form id="form" class="login" v-on="submit:join">
<span id="error" >{{error_message}}</span>
<div id="nameFg" class="form-group {{name_error_css}}">
<label for="name" class="control-label">名前 <span>{{name_message}}</span></label>
<input id="name" name="name" placeholder="表示名を入力"
type="text" class="form-control" v-model="name" />
</div>
<div id="emailFg" class="form-group {{email_error_css}}">
<label for="email" class="control-label ">Gravatarメールアドレス <span>{{email_message}}</span></label>
<input id="email" name="email" placeholder="Gravatarのイメージを使用する場合入力" type="email"
class="form-control" v-model="email" />
</div>
<input type="submit" value="join" class="btn btn-default" />
</form>
<div>
<a href="../" class="btn btn-link">JSF版へ</a>
</div>
</div>
</div>
<script type='text/javascript' src="../resources/js/vm_index.js"></script>
</body>
</html>
| enterprisegeeks/try_java_ee7 | try_java_ee7-web/src/main/webapp/rest/index.html | HTML | apache-2.0 | 2,108 | <!DOCTYPE html>
<html>
<head>
<title>try chat(JAX-RS)</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="../webjars/bootstrap/3.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="../resources/css/style.css" />
<script type='text/javascript' src="../webjars/jquery/2.1.1/jquery.min.js"></script>
<script type='text/javascript' src="../webjars/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script type='text/javascript' src="../webjars/vue/0.11.0/vue.min.js"></script>
<script type='text/javascript' src="../resources/js/common.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>サンプルチャット JAX-RS</h1>
<form id="form" class="login" v-on="submit:join">
<span id="error" >{{error_message}}</span>
<div id="nameFg" class="form-group {{name_error_css}}">
<label for="name" class="control-label">名前 <span>{{name_message}}</span></label>
<input id="name" name="name" placeholder="表示名を入力"
type="text" class="form-control" v-model="name" />
</div>
<div id="emailFg" class="form-group {{email_error_css}}">
<label for="email" class="control-label ">Gravatarメールアドレス <span>{{email_message}}</span></label>
<input id="email" name="email" placeholder="Gravatarのイメージを使用する場合入力" type="email"
class="form-control" v-model="email" />
</div>
<input type="submit" value="join" class="btn btn-default" />
</form>
<div>
<a href="../" class="btn btn-link">JSF版へ</a>
</div>
</div>
</div>
<script type='text/javascript' src="../resources/js/vm_index.js"></script>
</body>
</html>
|
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Hovercards6 userオプション</title>
<script src="http://platform.twitter.com/anywhere.js?id=[APIキー]&v=1" type="text/javascript"></script>
</head>
<body>
@twitterapi をフォローしましょう<br>
<img src="./twitter4j.png" id="image" alt="t4j_news"/>
<script type="text/javascript">
twttr.anywhere(function (T) {
T.hovercards();
T("#image").hovercards(
{username: function(node){return node.alt}});
});
</script>
</body>
</html>
| yusuke/twtr-api-pocket-reference | at_anywhere/hovercards6.html | HTML | apache-2.0 | 626 | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Hovercards6 userオプション</title>
<script src="http://platform.twitter.com/anywhere.js?id=[APIキー]&v=1" type="text/javascript"></script>
</head>
<body>
@twitterapi をフォローしましょう<br>
<img src="./twitter4j.png" id="image" alt="t4j_news"/>
<script type="text/javascript">
twttr.anywhere(function (T) {
T.hovercards();
T("#image").hovercards(
{username: function(node){return node.alt}});
});
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>canvas-nest.js</title>
</head>
<body>
<!--
网页粒子背景插件 Canvas-nest.js
color="255,0,0" 背景粒子线的颜色
opacity="0.5" 背景粒子线的透明度,一般设置成0.5-1之间
count="99" 背景粒子线的密度
-->
<script type="text/javascript" color="255,0,0" opacity='0.7' zIndex="-2" count="200" src="../../../s/canvas-nest/canvas-nest.min.js"></script>
</body>
</html>
| Relucent/web_demo | demo/other/canvas-nest/index.html | HTML | apache-2.0 | 530 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>canvas-nest.js</title>
</head>
<body>
<!--
网页粒子背景插件 Canvas-nest.js
color="255,0,0" 背景粒子线的颜色
opacity="0.5" 背景粒子线的透明度,一般设置成0.5-1之间
count="99" 背景粒子线的密度
-->
<script type="text/javascript" color="255,0,0" opacity='0.7' zIndex="-2" count="200" src="../../../s/canvas-nest/canvas-nest.min.js"></script>
</body>
</html>
|
<!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">
<title>Carrot Cake</title>
<meta name="description" content="ZutatenFür den Kuchen:200 g brauner Zucker180 g Pflanzenöl (200 ml)3 EL fetter Joghurt3 Eier1 TL Vanille-Extrakt oder das Mark einer Schote250g Mehl1 TL Back...">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://clonker.github.io/recipe/secret/2015/09/26/carrot-cake.html">
<link rel="alternate" type="application/rss+xml" title="d'oh" href="http://clonker.github.io/feed.xml" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">d'oh</a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="/about/">About</a>
<a class="page-link" href="/slides/">todo</a>
<a class="page-link" href="/test/test.html">Text!</a>
<a class="page-link" href="/phd/todo.html">todo</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<div class="hidden" id="hidden"></div>
<script type="text/javascript">
$(document).ready(function() {
var hidden = jQuery('#hidden');
var post = jQuery('#post');
post.contents().appendTo(hidden);
var pwd = prompt("Please enter the password", "");
if(pwd != null && pwd == 'doh') {
hidden.contents().appendTo(post);
} else {
var sloths = [
"https://upload.wikimedia.org/wikipedia/commons/2/25/Sloth1a.jpg",
"http://free4uwallpapers.eu/wp-content/uploads/Funny/funny-sloth-animals-hd-wallpaper.jpg"
];
var item = sloths[Math.floor(Math.random()*sloths.length)];
post.append(jQuery('<h1>Sorry, wrong password.</h1><img src="'+item+'"/>'));
}
})
</script>
<div class="post" id="post">
<header class="post-header">
<h1 class="post-title">Carrot Cake</h1>
<p class="post-meta">Sep 26, 2015</p>
</header>
<article class="post-content">
<h2>Zutaten</h2>
<h3>Für den Kuchen:</h3>
<ul>
<li>200 g brauner Zucker</li>
<li>180 g Pflanzenöl (200 ml)</li>
<li>3 EL fetter Joghurt</li>
<li>3 Eier</li>
<li>1 TL Vanille-Extrakt oder das Mark einer Schote</li>
<li>250g Mehl</li>
<li>1 TL Backpulver (besser: Natron)</li>
<li>2 TL Zimt</li>
<li>1/4 TL Muskatnuss</li>
<li>1/2 TL Salz</li>
<li>260 g geriebene Karotten</li>
<li>150 g Walnüsse</li>
</ul>
<h3>Für das Frosting:</h3>
<ul>
<li>300 g Frischkäse</li>
<li>120 g zimmerwarme Butter</li>
<li>200 g Puderzucker</li>
<li>das Mark einer Vanilleschote</li>
<li>1/2 TL Salz</li>
</ul>
<h2>Zubereitung:</h2>
<p>Braunen Zucker, Salz, Öl, Eier, Vanille, Zimt, Muskat und Joghurt in einer Schüssel verquirlen, bis eine homogene Masse entstanden ist. Mehl und Backpulver langsam unterheben und weiterrühren, bis sich die Zutaten verbunden haben. Karotten schällen und fein raspeln. Ebenfalls unter den Teig heben. Zum Schluss die Walnüsse grob hacken und auch zum Teig geben.</p>
<p>Eine Springform mit Butter ausreiben und leicht mit Zucker bestreuen. Den Teig hineinfüllen und den Kuchen bei 180°C Umluft in einem vorgeheizten Backofen für 37 min backen.</p>
<p>In der Zwischenzeit Frischkäse und Butter cremig aufschlagen und anschließend den Puderzucker unterrühren, bis eine glatte Creme entstanden ist. Mit Vanillemark und etwas Salz abschmecken. Den Kuchen nach 37 Minuten aus dem Ofen nehmen und auskühlen lassen. Das Frosting in die Mitte geben und mit einem Löffel oder einem Spatel vorsichtig kreisförmig </p>
</article>
</div>
</div>
</div>
</body>
</html>
| clonker/clonker.github.io | recipe/secret/2015/09/26/carrot-cake.html | HTML | apache-2.0 | 4,741 | <!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">
<title>Carrot Cake</title>
<meta name="description" content="ZutatenFür den Kuchen:200 g brauner Zucker180 g Pflanzenöl (200 ml)3 EL fetter Joghurt3 Eier1 TL Vanille-Extrakt oder das Mark einer Schote250g Mehl1 TL Back...">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://clonker.github.io/recipe/secret/2015/09/26/carrot-cake.html">
<link rel="alternate" type="application/rss+xml" title="d'oh" href="http://clonker.github.io/feed.xml" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">d'oh</a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="/about/">About</a>
<a class="page-link" href="/slides/">todo</a>
<a class="page-link" href="/test/test.html">Text!</a>
<a class="page-link" href="/phd/todo.html">todo</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<div class="hidden" id="hidden"></div>
<script type="text/javascript">
$(document).ready(function() {
var hidden = jQuery('#hidden');
var post = jQuery('#post');
post.contents().appendTo(hidden);
var pwd = prompt("Please enter the password", "");
if(pwd != null && pwd == 'doh') {
hidden.contents().appendTo(post);
} else {
var sloths = [
"https://upload.wikimedia.org/wikipedia/commons/2/25/Sloth1a.jpg",
"http://free4uwallpapers.eu/wp-content/uploads/Funny/funny-sloth-animals-hd-wallpaper.jpg"
];
var item = sloths[Math.floor(Math.random()*sloths.length)];
post.append(jQuery('<h1>Sorry, wrong password.</h1><img src="'+item+'"/>'));
}
})
</script>
<div class="post" id="post">
<header class="post-header">
<h1 class="post-title">Carrot Cake</h1>
<p class="post-meta">Sep 26, 2015</p>
</header>
<article class="post-content">
<h2>Zutaten</h2>
<h3>Für den Kuchen:</h3>
<ul>
<li>200 g brauner Zucker</li>
<li>180 g Pflanzenöl (200 ml)</li>
<li>3 EL fetter Joghurt</li>
<li>3 Eier</li>
<li>1 TL Vanille-Extrakt oder das Mark einer Schote</li>
<li>250g Mehl</li>
<li>1 TL Backpulver (besser: Natron)</li>
<li>2 TL Zimt</li>
<li>1/4 TL Muskatnuss</li>
<li>1/2 TL Salz</li>
<li>260 g geriebene Karotten</li>
<li>150 g Walnüsse</li>
</ul>
<h3>Für das Frosting:</h3>
<ul>
<li>300 g Frischkäse</li>
<li>120 g zimmerwarme Butter</li>
<li>200 g Puderzucker</li>
<li>das Mark einer Vanilleschote</li>
<li>1/2 TL Salz</li>
</ul>
<h2>Zubereitung:</h2>
<p>Braunen Zucker, Salz, Öl, Eier, Vanille, Zimt, Muskat und Joghurt in einer Schüssel verquirlen, bis eine homogene Masse entstanden ist. Mehl und Backpulver langsam unterheben und weiterrühren, bis sich die Zutaten verbunden haben. Karotten schällen und fein raspeln. Ebenfalls unter den Teig heben. Zum Schluss die Walnüsse grob hacken und auch zum Teig geben.</p>
<p>Eine Springform mit Butter ausreiben und leicht mit Zucker bestreuen. Den Teig hineinfüllen und den Kuchen bei 180°C Umluft in einem vorgeheizten Backofen für 37 min backen.</p>
<p>In der Zwischenzeit Frischkäse und Butter cremig aufschlagen und anschließend den Puderzucker unterrühren, bis eine glatte Creme entstanden ist. Mit Vanillemark und etwas Salz abschmecken. Den Kuchen nach 37 Minuten aus dem Ofen nehmen und auskühlen lassen. Das Frosting in die Mitte geben und mit einem Löffel oder einem Spatel vorsichtig kreisförmig </p>
</article>
</div>
</div>
</div>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PowerShell - Rename-Index - Rivet</title>
<link href="silk.css" type="text/css" rel="stylesheet" />
<link href="styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<ul id="SiteNav">
<li><a href="index.html">Get-Rivet</a></li>
<!--<li><a href="about_Carbon_Installation.html">-Install</a></li>-->
<li><a href="documentation.html">-Documentation</a></li>
<!--<li><a href="about_Carbon_Support.html">-Support</a></li>-->
<li><a href="releasenotes.html">-ReleaseNotes</a></li>
<li><a href="http://pshdo.com">-Blog</a></li>
</ul>
<h1>Rename-Index</h1>
<div class="Synopsis">
<p>Renames an index.</p>
</div>
<h2>Syntax</h2>
<pre class="Syntax"><code>Rename-Index [-TableName] <String> [-Name] <String> [-NewName] <String> [-SchemaName <String>] [<CommonParameters>]</code></pre>
<h2>Description</h2>
<div class="Description">
<p>SQL Server ships with a stored procedure which is used to rename certain objects. This operation wraps that stored procedure.</p>
<p>Use <code>Rename-Column</code> to rename a column. Use <code>Rename-DataType</code> to rename a data type. Use <code>Rename-Object</code> to rename an object.</p>
</div>
<h2>Related Commands</h2>
<ul class="RelatedCommands">
<li><a href="http://technet.microsoft.com/en-us/library/ms188351.aspx">http://technet.microsoft.com/en-us/library/ms188351.aspx</a></li>
<li><a href="Rename-Column.html">Rename-Column</a></li>
<li><a href="Rename-DataType.html">Rename-DataType</a></li>
<li><a href="Rename-Object.html">Rename-Object</a></li>
</ul>
<h2> Parameters </h2>
<table id="Parameters">
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Required?</th>
<th>Pipeline Input</th>
<th>Default Value</th>
</tr>
<tr valign='top'>
<td>TableName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The name of the table of the index to rename.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>Name</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The current name of the index.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>NewName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The new name of the index.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>SchemaName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The schema of the table. Default is <code>dbo</code>.</p></td>
<td>false</td>
<td>false</td>
<td>dbo</td>
</tr>
</table>
<h2>EXAMPLE 1</h2>
<pre><code>Rename-Index -TableName 'FooBar' -Name 'IX_Fizz' -NewName 'Buzz'</code></pre>
<p>Changes the name of the <code>Fizz</code> index on the <code>FooBar</code> table to <code>Buzz</code>.</p>
<h2>EXAMPLE 2</h2>
<pre><code>Rename-Index -SchemaName 'fizz' -TableName 'FooBar' -Name 'IX_Buzz' -NewName 'Fizz'</code></pre>
<p>Demonstrates how to rename an index on a table that is in a schema other than <code>dbo</code>.</p>
<h2>EXAMPLE 3</h2>
<pre><code>Rename-Index 'FooBar' 'IX_Fizz' 'Buzz'</code></pre>
<p>Demonstrates how to use the short form to rename the <code>Fizz</code> index on the <code>FooBar</code> table to <code>Buzz</code>: table name is first, then existing index name, then new index name.</p>
<div class="Footer">
Copyright 2013 - 2016 <a href="http://pshdo.com">Aaron Jensen</a>.
</div>
</body>
</html>
| RivetDB/Rivet | Website/Rename-Index.html | HTML | apache-2.0 | 3,921 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PowerShell - Rename-Index - Rivet</title>
<link href="silk.css" type="text/css" rel="stylesheet" />
<link href="styles.css" type="text/css" rel="stylesheet" />
</head>
<body>
<ul id="SiteNav">
<li><a href="index.html">Get-Rivet</a></li>
<!--<li><a href="about_Carbon_Installation.html">-Install</a></li>-->
<li><a href="documentation.html">-Documentation</a></li>
<!--<li><a href="about_Carbon_Support.html">-Support</a></li>-->
<li><a href="releasenotes.html">-ReleaseNotes</a></li>
<li><a href="http://pshdo.com">-Blog</a></li>
</ul>
<h1>Rename-Index</h1>
<div class="Synopsis">
<p>Renames an index.</p>
</div>
<h2>Syntax</h2>
<pre class="Syntax"><code>Rename-Index [-TableName] <String> [-Name] <String> [-NewName] <String> [-SchemaName <String>] [<CommonParameters>]</code></pre>
<h2>Description</h2>
<div class="Description">
<p>SQL Server ships with a stored procedure which is used to rename certain objects. This operation wraps that stored procedure.</p>
<p>Use <code>Rename-Column</code> to rename a column. Use <code>Rename-DataType</code> to rename a data type. Use <code>Rename-Object</code> to rename an object.</p>
</div>
<h2>Related Commands</h2>
<ul class="RelatedCommands">
<li><a href="http://technet.microsoft.com/en-us/library/ms188351.aspx">http://technet.microsoft.com/en-us/library/ms188351.aspx</a></li>
<li><a href="Rename-Column.html">Rename-Column</a></li>
<li><a href="Rename-DataType.html">Rename-DataType</a></li>
<li><a href="Rename-Object.html">Rename-Object</a></li>
</ul>
<h2> Parameters </h2>
<table id="Parameters">
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
<th>Required?</th>
<th>Pipeline Input</th>
<th>Default Value</th>
</tr>
<tr valign='top'>
<td>TableName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The name of the table of the index to rename.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>Name</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The current name of the index.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>NewName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The new name of the index.</p></td>
<td>true</td>
<td>false</td>
<td></td>
</tr>
<tr valign='top'>
<td>SchemaName</td>
<td><a href="http://msdn.microsoft.com/en-us/library/system.string.aspx">String</a></td>
<td class="ParamDescription"><p>The schema of the table. Default is <code>dbo</code>.</p></td>
<td>false</td>
<td>false</td>
<td>dbo</td>
</tr>
</table>
<h2>EXAMPLE 1</h2>
<pre><code>Rename-Index -TableName 'FooBar' -Name 'IX_Fizz' -NewName 'Buzz'</code></pre>
<p>Changes the name of the <code>Fizz</code> index on the <code>FooBar</code> table to <code>Buzz</code>.</p>
<h2>EXAMPLE 2</h2>
<pre><code>Rename-Index -SchemaName 'fizz' -TableName 'FooBar' -Name 'IX_Buzz' -NewName 'Fizz'</code></pre>
<p>Demonstrates how to rename an index on a table that is in a schema other than <code>dbo</code>.</p>
<h2>EXAMPLE 3</h2>
<pre><code>Rename-Index 'FooBar' 'IX_Fizz' 'Buzz'</code></pre>
<p>Demonstrates how to use the short form to rename the <code>Fizz</code> index on the <code>FooBar</code> table to <code>Buzz</code>: table name is first, then existing index name, then new index name.</p>
<div class="Footer">
Copyright 2013 - 2016 <a href="http://pshdo.com">Aaron Jensen</a>.
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About</title>
<style>
a:link {
color: #1976d2;
text-decoration: none;
}
</style>
</head>
<body>
<ul>
<li><code>Delete icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Add alarm icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Alarm icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Forward icon</code> by <a href="https://www.iconfinder.com/DesignRevision">Design Revision</a>, free for commercial use.</li>
<li><code>Time icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Alarm off icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
</ul>
</body>
</html>
| CarloRodriguez/AlarmOn | app/src/main/assets/art.html | HTML | apache-2.0 | 1,601 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>About</title>
<style>
a:link {
color: #1976d2;
text-decoration: none;
}
</style>
</head>
<body>
<ul>
<li><code>Delete icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Add alarm icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Alarm icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Forward icon</code> by <a href="https://www.iconfinder.com/DesignRevision">Design Revision</a>, free for commercial use.</li>
<li><code>Time icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
<li><code>Alarm off icon</code> by <a href="https://design.google.com/">Google</a>, licensed under <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons (Attribution-Share Alike 3.0 Unported)</a></li>
</ul>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>OzzA - Apresentação do Layout</title>
<meta charset="utf-8" />
<meta lang="pt-BR" />
<meta name="description" content="OzzA - Apresentação do Layout" />
<meta name="keywords" content="OzzA - Apresentação do Layout" />
<meta name="author" content="Mais Interativo" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div class="editarperfil-loja-dadospessoais-hover">
<div class="clearfix"></div>
</div>
</body>
</html> | RuanBoaventura/ozza | editarperfil-loja-dadospessoais-hover.html | HTML | apache-2.0 | 566 | <!DOCTYPE html>
<html>
<head>
<title>OzzA - Apresentação do Layout</title>
<meta charset="utf-8" />
<meta lang="pt-BR" />
<meta name="description" content="OzzA - Apresentação do Layout" />
<meta name="keywords" content="OzzA - Apresentação do Layout" />
<meta name="author" content="Mais Interativo" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div class="editarperfil-loja-dadospessoais-hover">
<div class="clearfix"></div>
</div>
</body>
</html> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta httpEquiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Test results - Class carlosgsouza.vinylshop.functional.v1.SummaryFunctionalSpec</title>
<link href="base-style.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
<script src="report.js" type="text/javascript"></script>
</head>
<body>
<div id="content">
<h1>Class carlosgsouza.vinylshop.functional.v1.SummaryFunctionalSpec</h1>
<div class="breadcrumbs">
<a href="index.html">all</a> >
<a href="carlosgsouza.vinylshop.functional.v1.html">carlosgsouza.vinylshop.functional.v1</a> > SummaryFunctionalSpec</div>
<div id="summary">
<table>
<tr>
<td>
<div class="summaryGroup">
<table>
<tr>
<td>
<div class="infoBox" id="tests">
<div class="counter">1</div>
<p>tests</p>
</div>
</td>
<td>
<div class="infoBox" id="failures">
<div class="counter">0</div>
<p>failures</p>
</div>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">0.054s</div>
<p>duration</p>
</div>
</td>
</tr>
</table>
</div>
</td>
<td>
<div class="infoBox success" id="successRate">
<div class="percent">100%</div>
<p>successful</p>
</div>
</td>
</tr>
</table>
</div>
<div id="tabs">
<ul class="tabLinks">
<li>
<a href="#tab0">Tests</a>
</li>
</ul>
<div id="tab0" class="tab">
<h2>Tests</h2>
<table>
<thead>
<tr>
<th>Test</th>
<th>Duration</th>
<th>Result</th>
</tr>
</thead>
<tr>
<td class="success">should show a summary of the vinyls</td>
<td>0.054s</td>
<td class="success">passed</td>
</tr>
</table>
</div>
</div>
<div id="footer">
<p>Generated by
<a href="http://www.gradle.org">Gradle 1.8</a> at Dec 14, 2013 2:32:16 PM</p>
</div>
</div>
</body> | carlosgsouza/types-and-quality | experiments/1_vinyl_collection/a0/analysis/data/pedro/snapshots/1386956683120/build/reports/tests/carlosgsouza.vinylshop.functional.v1.SummaryFunctionalSpec.html | HTML | apache-2.0 | 1,764 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta httpEquiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Test results - Class carlosgsouza.vinylshop.functional.v1.SummaryFunctionalSpec</title>
<link href="base-style.css" rel="stylesheet" type="text/css"/>
<link href="style.css" rel="stylesheet" type="text/css"/>
<script src="report.js" type="text/javascript"></script>
</head>
<body>
<div id="content">
<h1>Class carlosgsouza.vinylshop.functional.v1.SummaryFunctionalSpec</h1>
<div class="breadcrumbs">
<a href="index.html">all</a> >
<a href="carlosgsouza.vinylshop.functional.v1.html">carlosgsouza.vinylshop.functional.v1</a> > SummaryFunctionalSpec</div>
<div id="summary">
<table>
<tr>
<td>
<div class="summaryGroup">
<table>
<tr>
<td>
<div class="infoBox" id="tests">
<div class="counter">1</div>
<p>tests</p>
</div>
</td>
<td>
<div class="infoBox" id="failures">
<div class="counter">0</div>
<p>failures</p>
</div>
</td>
<td>
<div class="infoBox" id="duration">
<div class="counter">0.054s</div>
<p>duration</p>
</div>
</td>
</tr>
</table>
</div>
</td>
<td>
<div class="infoBox success" id="successRate">
<div class="percent">100%</div>
<p>successful</p>
</div>
</td>
</tr>
</table>
</div>
<div id="tabs">
<ul class="tabLinks">
<li>
<a href="#tab0">Tests</a>
</li>
</ul>
<div id="tab0" class="tab">
<h2>Tests</h2>
<table>
<thead>
<tr>
<th>Test</th>
<th>Duration</th>
<th>Result</th>
</tr>
</thead>
<tr>
<td class="success">should show a summary of the vinyls</td>
<td>0.054s</td>
<td class="success">passed</td>
</tr>
</table>
</div>
</div>
<div id="footer">
<p>Generated by
<a href="http://www.gradle.org">Gradle 1.8</a> at Dec 14, 2013 2:32:16 PM</p>
</div>
</div>
</body> |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Transforms</title>
<style>
#threed-example {
margin: 50px 20px;
-webkit-transform: rotateZ(5deg);
-moz-transform: rotateZ(5deg);
-o-transform: rotateZ(5deg);
transform: rotateZ(5deg);
-webkit-transition: -webkit-transform 2s ease-in-out;
-moz-transition: -moz-transform 2s ease-in-out;
-o-transition: -o-transform 2s ease-in-out;
transition: transform 2s ease-in-out;
}
#threed-example:hover {
-webkit-transform: rotateZ(-5deg);
-moz-transform: rotateZ(-5deg);
-o-transform: rotateZ(-5deg);
transform: rotateZ(-5deg);
}
</style>
</head>
<body>
<div class="slide styling" id="css-transforms">
<header><span class="css">CSS</span> <h1>Transforms</h1></header>
<section>
<p class="center">
Hover over me:
</p>
<pre id="threed-example">-webkit-<b>transform</b>: <b>rotateY</b>(45deg);
-webkit-transform: <b>scaleX</b>(25deg);
-webkit-transform: <b>translate3d</b>(0, 0, 90deg);
-webkit-transform: <b>perspective</b>(500px)
</pre>
<pre>#threed-example {
-webkit-transform: rotateZ(5deg);
-webkit-transition: -webkit-transform 2s ease-in-out;
}
#threed-example:hover {
-webkit-transform: rotateZ(-5deg);
}
</pre>
<p class="center">
Now press <span class="key">3</span>!
</p>
</section>
</div>
</body>
</html> | kenu/oksample | html5/WebContent/css3/transform.html | HTML | artistic-2.0 | 1,465 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Transforms</title>
<style>
#threed-example {
margin: 50px 20px;
-webkit-transform: rotateZ(5deg);
-moz-transform: rotateZ(5deg);
-o-transform: rotateZ(5deg);
transform: rotateZ(5deg);
-webkit-transition: -webkit-transform 2s ease-in-out;
-moz-transition: -moz-transform 2s ease-in-out;
-o-transition: -o-transform 2s ease-in-out;
transition: transform 2s ease-in-out;
}
#threed-example:hover {
-webkit-transform: rotateZ(-5deg);
-moz-transform: rotateZ(-5deg);
-o-transform: rotateZ(-5deg);
transform: rotateZ(-5deg);
}
</style>
</head>
<body>
<div class="slide styling" id="css-transforms">
<header><span class="css">CSS</span> <h1>Transforms</h1></header>
<section>
<p class="center">
Hover over me:
</p>
<pre id="threed-example">-webkit-<b>transform</b>: <b>rotateY</b>(45deg);
-webkit-transform: <b>scaleX</b>(25deg);
-webkit-transform: <b>translate3d</b>(0, 0, 90deg);
-webkit-transform: <b>perspective</b>(500px)
</pre>
<pre>#threed-example {
-webkit-transform: rotateZ(5deg);
-webkit-transition: -webkit-transform 2s ease-in-out;
}
#threed-example:hover {
-webkit-transform: rotateZ(-5deg);
}
</pre>
<p class="center">
Now press <span class="key">3</span>!
</p>
</section>
</div>
</body>
</html> |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>DIRECTION-TOWARDS-OTHERS</title>
</head>
<body>
<h3><i>I update my desired direction to head toward those in my local
interaction zone if not in my personal space.</i> </h3>
<font size="2" color="gray">Begin micro-behaviour</font>
<p><b>DIRECTION-TOWARDS-OTHERS</b></p>
<font size="2" color="gray">Begin NetLogo code:</font>
<pre>substitute-text-area-for cycle-duration 1
do-every cycle-duration
[ask all-individuals with [distance-between the-personal-space the-local-interaction]
[set my-next-desired-direction
add my-next-desired-direction
unit-vector subtract location myself my-location]]
</pre>
<font size="2" color="gray">End NetLogo code</font>
<h2>Variants</h2>
<p>The variable <i>the-personal-space</i> in the above is the value of α in [1].
It can be defined and changed by a slider defined in
<a title="CREATE-SLIDER-FOR-PERSONAL-SPACE" href="CREATE-SLIDER-FOR-PERSONAL-SPACE.html">
CREATE-SLIDER-FOR-PERSONAL-SPACE</a>. The variable <i>the-local-interaction</i>
is the zone of local interaction or the value of ρ in [1]. It is defined by
the slider in
<a title="CREATE-SLIDER-FOR-LOCAL-INTERACTION" href="CREATE-SLIDER-FOR-LOCAL-INTERACTION.html">
CREATE-SLIDER-FOR-LOCAL-INTERACTION</a>.</p>
<p>If you add <i>and abs angle-from-me <= cone-of-vision</i> to <i>
distance-between the-personal-space the-local-interaction</i> then only those who
are within my cone of vision will be considered. <i>cone-of-vision</i> can
be defined by a slider as a variable that ranges from 0 to 180 degrees.</p>
<p>You can change the frequency that this runs by changing the <i>1</i>.</p>
<h2>Related Micro-behaviours</h2>
<p>
<a title="DIRECTION-TO-AVOID-OTHERS" href="DIRECTION-TO-AVOID-OTHERS.html">
DIRECTION-TO-AVOID-OTHERS</a> sets my desired direction away from those too
close to me.
<a title="DIRECTION-TO-ALIGN-WITH-OTHERS" href="DIRECTION-TO-ALIGN-WITH-OTHERS.html">
DIRECTION-TO-ALIGN-WITH-OTHERS</a> aligns with those within my local
interaction range and
<a title="INFORMED-DIRECTION" href="INFORMED-DIRECTION.html">
INFORMED-DIRECTION</a> implements a preferred direction.</p>
<p>Note that the desired-direction is used by
<a title="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED" href="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED.html">
TURN-IN-DIRECTION-AT-MAXIMUM-SPEED</a> to turn me.</p>
<p>
<a title="DIRECTION-TOWARDS-OTHERS-DELAYED" href="DIRECTION-TOWARDS-OTHERS-DELAYED.html">
DIRECTION-TOWARDS-OTHERS-DELAYED</a> runs this with a delay.</p>
<h2>How this works</h2>
<p>This adds a vector to me from each of the others whose distance is
between the <i>the-personal-space</i> and <i>the-local-interaction</i>. It
implements part of equation 2 in [1].</p>
<p>
<img alt="Image:couzin_formula2.png" src="images/Couzin_formula2.png" border="0" width="431" height="56">
</p>
<h2>History</h2>
<p>This was implemented by Ken Kahn.</p>
<h2>References</h2>
<p>[1] Couzin, I.D., Krause, J., Franks, N.R. & Levin, S.A.(2005)
<a class="external text" title="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf" rel="nofollow" href="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf">
Effective leadership and decision making in animal groups on the move</a>
Nature 433, 513-516.</p>
</body>
</html>
| ToonTalk/behaviour-composer | BC/Static Web Pages/Resources/Composer/en/MB.3/DIRECTION-TOWARDS-OTHERS.html | HTML | bsd-3-clause | 3,523 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>DIRECTION-TOWARDS-OTHERS</title>
</head>
<body>
<h3><i>I update my desired direction to head toward those in my local
interaction zone if not in my personal space.</i> </h3>
<font size="2" color="gray">Begin micro-behaviour</font>
<p><b>DIRECTION-TOWARDS-OTHERS</b></p>
<font size="2" color="gray">Begin NetLogo code:</font>
<pre>substitute-text-area-for cycle-duration 1
do-every cycle-duration
[ask all-individuals with [distance-between the-personal-space the-local-interaction]
[set my-next-desired-direction
add my-next-desired-direction
unit-vector subtract location myself my-location]]
</pre>
<font size="2" color="gray">End NetLogo code</font>
<h2>Variants</h2>
<p>The variable <i>the-personal-space</i> in the above is the value of α in [1].
It can be defined and changed by a slider defined in
<a title="CREATE-SLIDER-FOR-PERSONAL-SPACE" href="CREATE-SLIDER-FOR-PERSONAL-SPACE.html">
CREATE-SLIDER-FOR-PERSONAL-SPACE</a>. The variable <i>the-local-interaction</i>
is the zone of local interaction or the value of ρ in [1]. It is defined by
the slider in
<a title="CREATE-SLIDER-FOR-LOCAL-INTERACTION" href="CREATE-SLIDER-FOR-LOCAL-INTERACTION.html">
CREATE-SLIDER-FOR-LOCAL-INTERACTION</a>.</p>
<p>If you add <i>and abs angle-from-me <= cone-of-vision</i> to <i>
distance-between the-personal-space the-local-interaction</i> then only those who
are within my cone of vision will be considered. <i>cone-of-vision</i> can
be defined by a slider as a variable that ranges from 0 to 180 degrees.</p>
<p>You can change the frequency that this runs by changing the <i>1</i>.</p>
<h2>Related Micro-behaviours</h2>
<p>
<a title="DIRECTION-TO-AVOID-OTHERS" href="DIRECTION-TO-AVOID-OTHERS.html">
DIRECTION-TO-AVOID-OTHERS</a> sets my desired direction away from those too
close to me.
<a title="DIRECTION-TO-ALIGN-WITH-OTHERS" href="DIRECTION-TO-ALIGN-WITH-OTHERS.html">
DIRECTION-TO-ALIGN-WITH-OTHERS</a> aligns with those within my local
interaction range and
<a title="INFORMED-DIRECTION" href="INFORMED-DIRECTION.html">
INFORMED-DIRECTION</a> implements a preferred direction.</p>
<p>Note that the desired-direction is used by
<a title="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED" href="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED.html">
TURN-IN-DIRECTION-AT-MAXIMUM-SPEED</a> to turn me.</p>
<p>
<a title="DIRECTION-TOWARDS-OTHERS-DELAYED" href="DIRECTION-TOWARDS-OTHERS-DELAYED.html">
DIRECTION-TOWARDS-OTHERS-DELAYED</a> runs this with a delay.</p>
<h2>How this works</h2>
<p>This adds a vector to me from each of the others whose distance is
between the <i>the-personal-space</i> and <i>the-local-interaction</i>. It
implements part of equation 2 in [1].</p>
<p>
<img alt="Image:couzin_formula2.png" src="images/Couzin_formula2.png" border="0" width="431" height="56">
</p>
<h2>History</h2>
<p>This was implemented by Ken Kahn.</p>
<h2>References</h2>
<p>[1] Couzin, I.D., Krause, J., Franks, N.R. & Levin, S.A.(2005)
<a class="external text" title="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf" rel="nofollow" href="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf">
Effective leadership and decision making in animal groups on the move</a>
Nature 433, 513-516.</p>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>SetStartupInfo</title>
<meta http-equiv="Content-Type" Content="text/html; charset=Windows-1251">
<link rel="stylesheet" type="text/css" href="../../styles/styles.css">
<script language="javascript" src='../links.js' type="text/javascript"></script>
</head>
<body>
<h1>SetStartupInfo</h1>
<div class=navbar>
<a href="../index.html">ãëàâíàÿ</a> |
<a href="index.html">ýêñïîðòèðóåìûå ôóíêöèè</a>
</div>
<div class=shortdescr>
Ôóíêöèÿ <dfn>SetStartupInfo</dfn> âûçûâàåòñÿ îäèí ðàç, ïîñëå çàãðóçêè
DLL-ìîäóëÿ â ïàìÿòü. FAR ïåðåäàåò ïëàãèíó èíôîðìàöèþ, íåîáõîäèìóþ äëÿ
äàëüíåéøåé ðàáîòû.</div>
<pre class=syntax>
void WINAPI SetStartupInfo(
const struct PluginStartupInfo *Info
);
</pre>
<h3>Ïàðàìåòðû</h3>
<div class=descr>
<div class=dfn>Info</div>
<div class=dfndescr>Óêàçàòåëü íà ñòðóêòóðó <a href="../structures/pluginstartupinfo.html">PluginStartupInfo</a>.
</div>
</div>
<h3>Âîçâðàùàåìîå çíà÷åíèå</h3>
<div class=descr>
Íåò.
</div>
<h3>Çàìå÷àíèÿ</h3>
<div class=descr>
<ol>
<li>Â FAR Manager 1.65 è íèæå ýòà ôóíêöèÿ âûçûâàåòñÿ ïåðâîé, ñðàçó ïîñëå çàãðóçêè DLL-ìîäóëÿ.
<li>Â FAR Manager 1.70 è âûøå ýòà ôóíêöèÿ âûçûâàåòñÿ ïîñëå âûçîâà ôóíêöèè <a href="getminfarversion.html">GetMinFarVersion</a>.
<li>Óêàçàòåëü <dfn>Info</dfn> äåéñòâèòåëåí òîëüêî â îáëàñòè âèäèìîñòè äàííîé ôóíêöèè (äî âûõîäà èç ôóíêöèè),
òàê ÷òî ñòðóêòóðà äîëæíà êîïèðîâàòüñÿ âî âíóòðåííþþ ïåðåìåííóþ ïëàãèíà äëÿ äàëüíåéøåãî èñïîëüçîâàíèÿ:
<pre class=code>static struct PluginStartupInfo Info;
...
void WINAPI _export SetStartupInfo(const struct PluginStartupInfo *Info)
{
::Info=*Info;
...
}
</pre>
<li>Åñëè â ïëàãèíå èñïîëüçóþòñÿ "ñòàíäàðòíûå ôóíêöèè" èç ñòðóêòóðû <a href="../fsf/index.html">FarStandardFunctions</a>,
òî ÷ëåí <a href="../structures/pluginstartupinfo.html">PluginStartupInfo.FSF</a>
òàê æå äîëæåí áûòü ñîõðàíåí â ëîêàëüíîå ïðîñòðàíñòâî ïëàãèíà:
<pre class=code>static struct PluginStartupInfo Info;
static struct FarStandardFunctions FSF;
void _export SetStartupInfo(struct PluginStartupInfo *psInfo)
{
Info=*psInfo;
FSF=*psInfo->FSF;
Info.FSF=&FSF; // ñêîððåêòèðóåì àäðåñ â ëîêàëüíîé ñòðóêòóðå
...
} </pre>
</ol>
</div>
</body>
</html>
| data-man/FarAS | enc/enc_rus/meta/exported_functions/setstartupinfo.html | HTML | bsd-3-clause | 2,279 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>SetStartupInfo</title>
<meta http-equiv="Content-Type" Content="text/html; charset=Windows-1251">
<link rel="stylesheet" type="text/css" href="../../styles/styles.css">
<script language="javascript" src='../links.js' type="text/javascript"></script>
</head>
<body>
<h1>SetStartupInfo</h1>
<div class=navbar>
<a href="../index.html">ãëàâíàÿ</a> |
<a href="index.html">ýêñïîðòèðóåìûå ôóíêöèè</a>
</div>
<div class=shortdescr>
Ôóíêöèÿ <dfn>SetStartupInfo</dfn> âûçûâàåòñÿ îäèí ðàç, ïîñëå çàãðóçêè
DLL-ìîäóëÿ â ïàìÿòü. FAR ïåðåäàåò ïëàãèíó èíôîðìàöèþ, íåîáõîäèìóþ äëÿ
äàëüíåéøåé ðàáîòû.</div>
<pre class=syntax>
void WINAPI SetStartupInfo(
const struct PluginStartupInfo *Info
);
</pre>
<h3>Ïàðàìåòðû</h3>
<div class=descr>
<div class=dfn>Info</div>
<div class=dfndescr>Óêàçàòåëü íà ñòðóêòóðó <a href="../structures/pluginstartupinfo.html">PluginStartupInfo</a>.
</div>
</div>
<h3>Âîçâðàùàåìîå çíà÷åíèå</h3>
<div class=descr>
Íåò.
</div>
<h3>Çàìå÷àíèÿ</h3>
<div class=descr>
<ol>
<li>Â FAR Manager 1.65 è íèæå ýòà ôóíêöèÿ âûçûâàåòñÿ ïåðâîé, ñðàçó ïîñëå çàãðóçêè DLL-ìîäóëÿ.
<li>Â FAR Manager 1.70 è âûøå ýòà ôóíêöèÿ âûçûâàåòñÿ ïîñëå âûçîâà ôóíêöèè <a href="getminfarversion.html">GetMinFarVersion</a>.
<li>Óêàçàòåëü <dfn>Info</dfn> äåéñòâèòåëåí òîëüêî â îáëàñòè âèäèìîñòè äàííîé ôóíêöèè (äî âûõîäà èç ôóíêöèè),
òàê ÷òî ñòðóêòóðà äîëæíà êîïèðîâàòüñÿ âî âíóòðåííþþ ïåðåìåííóþ ïëàãèíà äëÿ äàëüíåéøåãî èñïîëüçîâàíèÿ:
<pre class=code>static struct PluginStartupInfo Info;
...
void WINAPI _export SetStartupInfo(const struct PluginStartupInfo *Info)
{
::Info=*Info;
...
}
</pre>
<li>Åñëè â ïëàãèíå èñïîëüçóþòñÿ "ñòàíäàðòíûå ôóíêöèè" èç ñòðóêòóðû <a href="../fsf/index.html">FarStandardFunctions</a>,
òî ÷ëåí <a href="../structures/pluginstartupinfo.html">PluginStartupInfo.FSF</a>
òàê æå äîëæåí áûòü ñîõðàíåí â ëîêàëüíîå ïðîñòðàíñòâî ïëàãèíà:
<pre class=code>static struct PluginStartupInfo Info;
static struct FarStandardFunctions FSF;
void _export SetStartupInfo(struct PluginStartupInfo *psInfo)
{
Info=*psInfo;
FSF=*psInfo->FSF;
Info.FSF=&FSF; // ñêîððåêòèðóåì àäðåñ â ëîêàëüíîé ñòðóêòóðå
...
} </pre>
</ol>
</div>
</body>
</html>
|
<!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.0">
<meta name="scaffolded-by" content="https://github.com/google/stagehand">
<title>futures_api</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico">
<script defer src="main.dart.js"></script>
</head>
<body>
<div id="output"></div>
</body>
</html>
| dart-archive/dart-tutorials-samples | futures/futures-api/web/index.html | HTML | bsd-3-clause | 494 | <!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.0">
<meta name="scaffolded-by" content="https://github.com/google/stagehand">
<title>futures_api</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico">
<script defer src="main.dart.js"></script>
</head>
<body>
<div id="output"></div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>PKIjs Mocha Test - OCSP Request Complex Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script src="https://cdn.rawgit.com/chaijs/chai/4.0.0-canary.1/chai.js"></script>
<script>mocha.setup('bdd'); window.assert = chai.assert;</script>
<script type="text/javascript" src="ocspRequestComplexExample.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
</script>
</body>
</html>
| GlobalSign/PKI.js | test/browser/ocspRequestComplexExample.html | HTML | bsd-3-clause | 933 | <!DOCTYPE html>
<html>
<head>
<title>PKIjs Mocha Test - OCSP Request Complex Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script src="https://cdn.rawgit.com/chaijs/chai/4.0.0-canary.1/chai.js"></script>
<script>mocha.setup('bdd'); window.assert = chai.assert;</script>
<script type="text/javascript" src="ocspRequestComplexExample.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>选项</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" >
<script src="options.js"></script>
</head>
<body>
<div id="options_content">
<span id="message"></span>
<h4>发音</h4>
<input type="checkbox" name="auto" id="auto">
<label for="auto">自动发音</label>
<h4>释义</h4>
<input type="checkbox" name="zh_definitions" id="zh_definitions">
<label for="zh_definitions">显示中文释义</label>
<input type="checkbox" name="en_definitions" id="en_definitions">
<label for="en_definitions">显示英语释义</label>
<br />
<br />
<button id="reset">重置</button>
<button id="save">保存</button>
<a href="popup.html" id="return">返回</a>
</div>
</body>
</html>
| tangzheng1900/MyEye | options.html | HTML | mit | 879 | <!DOCTYPE html>
<html>
<head>
<title>选项</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="style.css" >
<script src="options.js"></script>
</head>
<body>
<div id="options_content">
<span id="message"></span>
<h4>发音</h4>
<input type="checkbox" name="auto" id="auto">
<label for="auto">自动发音</label>
<h4>释义</h4>
<input type="checkbox" name="zh_definitions" id="zh_definitions">
<label for="zh_definitions">显示中文释义</label>
<input type="checkbox" name="en_definitions" id="en_definitions">
<label for="en_definitions">显示英语释义</label>
<br />
<br />
<button id="reset">重置</button>
<button id="save">保存</button>
<a href="popup.html" id="return">返回</a>
</div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="viewport" content="width=1000">
<meta name="keywords" content="attrs.ui">
<meta name="author" content="[email protected]">
<meta name="description" content="Examples">
<title>Style System Basic</title>
<script type="text/javascript" src="../ui.debug.js"></script>
<script type="text/javascript">
// define style
var style = new Appbus.Style({
'background': 'white',
'color': 'black',
'font-size': 10,
'.hierachy': {
'color': 'grey',
'background': 'yellow',
'test': {
'font-size': 9
}
}
});
console.log('style', style);
style.on('*', function(e) {
console.log('[' + e.type + '] event occured');
console.log('src', e.src);
console.log('values', e.values);
console.log('\n\n');
});
// append
style.set('..newcls', {
'background': 'lightorange',
'.hierachy': {
'': {
'color': 'red'
}
}
});
// replace
style.set('color', 'grey');
// remove
style.remove('font-size');
// merge element
style.merge('..cls', {
'display': 'box',
'background-image': 'url("http://localhost/image.png")',
'transition': 'aa',
'p': {
'color': 'blue'
}
});
// sub style replace
style.get('..cls').set('color', 'grey');
// sub style remove
style.get('..cls').remove('color');
</script>
</head>
<body>
</body>
</html>
| attrs/ui-aliens | src/deprecated/examples/core/stylesystem/style.events.html | HTML | mit | 1,721 | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="no">
<meta name="viewport" content="width=1000">
<meta name="keywords" content="attrs.ui">
<meta name="author" content="[email protected]">
<meta name="description" content="Examples">
<title>Style System Basic</title>
<script type="text/javascript" src="../ui.debug.js"></script>
<script type="text/javascript">
// define style
var style = new Appbus.Style({
'background': 'white',
'color': 'black',
'font-size': 10,
'.hierachy': {
'color': 'grey',
'background': 'yellow',
'test': {
'font-size': 9
}
}
});
console.log('style', style);
style.on('*', function(e) {
console.log('[' + e.type + '] event occured');
console.log('src', e.src);
console.log('values', e.values);
console.log('\n\n');
});
// append
style.set('..newcls', {
'background': 'lightorange',
'.hierachy': {
'': {
'color': 'red'
}
}
});
// replace
style.set('color', 'grey');
// remove
style.remove('font-size');
// merge element
style.merge('..cls', {
'display': 'box',
'background-image': 'url("http://localhost/image.png")',
'transition': 'aa',
'p': {
'color': 'blue'
}
});
// sub style replace
style.get('..cls').set('color', 'grey');
// sub style remove
style.get('..cls').remove('color');
</script>
</head>
<body>
</body>
</html>
|
<!doctype html>
<html>
<head>
<title>Network | Hierarchical layout</title>
<style type="text/css">
body {
font: 10pt sans;
}
#mynetwork {
width: 600px;
height: 600px;
border: 1px solid lightgray;
}
</style>
<script type="text/javascript" src="../../../dist/vis.js"></script>
<link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var network = null;
function p(data) {
var container = document.getElementById('mynetwork');
var options = {
layout: {
hierarchical: {},
},
};
console.log("starting layout");
network = new vis.Network(container, data, options);
console.log("layout complete");
}
</script>
</head>
<body>
<h2>Hierarchical Layout</h2>
<div id="mynetwork"></div>
<script type="text/javascript" src="./demo.jsonp"></script>
</body>
</html>
| jucapoco/baseSiteGanttChart | node_modules/vis/examples/network/layout/hierarchicalLayoutBigUserDefined.html | HTML | mit | 1,119 | <!doctype html>
<html>
<head>
<title>Network | Hierarchical layout</title>
<style type="text/css">
body {
font: 10pt sans;
}
#mynetwork {
width: 600px;
height: 600px;
border: 1px solid lightgray;
}
</style>
<script type="text/javascript" src="../../../dist/vis.js"></script>
<link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
var network = null;
function p(data) {
var container = document.getElementById('mynetwork');
var options = {
layout: {
hierarchical: {},
},
};
console.log("starting layout");
network = new vis.Network(container, data, options);
console.log("layout complete");
}
</script>
</head>
<body>
<h2>Hierarchical Layout</h2>
<div id="mynetwork"></div>
<script type="text/javascript" src="./demo.jsonp"></script>
</body>
</html>
|
<!-- Creator : groff version 1.21 -->
<!-- CreationDate: Mon Dec 7 09:14:09 2015 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="Content-Style" content="text/css">
<style type="text/css">
p { margin-top: 0; margin-bottom: 0; vertical-align: top }
pre { margin-top: 0; margin-bottom: 0; vertical-align: top }
table { margin-top: 0; margin-bottom: 0; vertical-align: top }
h1 { text-align: center }
</style>
<title>NTFSDEBUG</title>
</head>
<body>
<h1 align="center">NTFSDEBUG</h1>
<a href="#NAME">NAME</a><br>
<a href="#SYNOPSIS">SYNOPSIS</a><br>
<a href="#DESCRIPTION">DESCRIPTION</a><br>
<a href="#EXIT CODES">EXIT CODES</a><br>
<a href="#EXAMPLES">EXAMPLES</a><br>
<a href="#KNOWN ISSUES">KNOWN ISSUES</a><br>
<a href="#AVAILABILITY">AVAILABILITY</a><br>
<hr>
<h2>NAME
<a name="NAME"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">ntfsdebug
− Efficiently dump the metadata contents of an NTFS
volume.</p>
<h2>SYNOPSIS
<a name="SYNOPSIS"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><b>ntfsdebug</b>
<i>device|image</i></p>
<h2>DESCRIPTION
<a name="DESCRIPTION"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><i><b>ntfsdebug</b></i>
will efficiently extract all relevant metadata from an NTFS
volume and dump it to standard output. It works at disk
sector level and copies only the used data. Unused disk
space becomes zero. <b>ntfsdebug</b> can be useful to exact
the metadata snapshot of an NTFS file system for developers
to investigate and troubleshoot users’ issues using
the clone without the risk of destroying the original file
system.</p>
<h2>EXIT CODES
<a name="EXIT CODES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">The exit code
is 0 on success, non−zero otherwise.</p>
<h2>EXAMPLES
<a name="EXAMPLES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">Dump NTFS
metadata on /dev/sda1 to a compressed metadata image:</p>
<p style="margin-left:22%; margin-top: 1em"><b>ntfsdebug
/dev/sda1 | bzip2 > sda1.img.bz2</b></p>
<p style="margin-left:11%; margin-top: 1em">Dump NTFS
metadata to a remote host, using ssh. Please note that ssh
may ask for a password.</p>
<p style="margin-left:22%; margin-top: 1em"><b>ntfsdebug
/dev/sda1 | bzip2 | ssh host ’cat >
sda1.img.bzip2’</b></p>
<h2>KNOWN ISSUES
<a name="KNOWN ISSUES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">If you find a
problem then please send an email describing it to
[email protected].</p>
<h2>AVAILABILITY
<a name="AVAILABILITY"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><b>ntfsdebug</b>
is part of the <b>Tuxera NTFS</b> package.</p>
<hr>
</body>
</html>
| artemh/asuswrt-merlin | release/src/router/tuxera/broadcom_arm_7114/ntfs/docs/html/ntfsdebug.html | HTML | gpl-2.0 | 2,939 | <!-- Creator : groff version 1.21 -->
<!-- CreationDate: Mon Dec 7 09:14:09 2015 -->
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta name="generator" content="groff -Thtml, see www.gnu.org">
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="Content-Style" content="text/css">
<style type="text/css">
p { margin-top: 0; margin-bottom: 0; vertical-align: top }
pre { margin-top: 0; margin-bottom: 0; vertical-align: top }
table { margin-top: 0; margin-bottom: 0; vertical-align: top }
h1 { text-align: center }
</style>
<title>NTFSDEBUG</title>
</head>
<body>
<h1 align="center">NTFSDEBUG</h1>
<a href="#NAME">NAME</a><br>
<a href="#SYNOPSIS">SYNOPSIS</a><br>
<a href="#DESCRIPTION">DESCRIPTION</a><br>
<a href="#EXIT CODES">EXIT CODES</a><br>
<a href="#EXAMPLES">EXAMPLES</a><br>
<a href="#KNOWN ISSUES">KNOWN ISSUES</a><br>
<a href="#AVAILABILITY">AVAILABILITY</a><br>
<hr>
<h2>NAME
<a name="NAME"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">ntfsdebug
− Efficiently dump the metadata contents of an NTFS
volume.</p>
<h2>SYNOPSIS
<a name="SYNOPSIS"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><b>ntfsdebug</b>
<i>device|image</i></p>
<h2>DESCRIPTION
<a name="DESCRIPTION"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><i><b>ntfsdebug</b></i>
will efficiently extract all relevant metadata from an NTFS
volume and dump it to standard output. It works at disk
sector level and copies only the used data. Unused disk
space becomes zero. <b>ntfsdebug</b> can be useful to exact
the metadata snapshot of an NTFS file system for developers
to investigate and troubleshoot users’ issues using
the clone without the risk of destroying the original file
system.</p>
<h2>EXIT CODES
<a name="EXIT CODES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">The exit code
is 0 on success, non−zero otherwise.</p>
<h2>EXAMPLES
<a name="EXAMPLES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">Dump NTFS
metadata on /dev/sda1 to a compressed metadata image:</p>
<p style="margin-left:22%; margin-top: 1em"><b>ntfsdebug
/dev/sda1 | bzip2 > sda1.img.bz2</b></p>
<p style="margin-left:11%; margin-top: 1em">Dump NTFS
metadata to a remote host, using ssh. Please note that ssh
may ask for a password.</p>
<p style="margin-left:22%; margin-top: 1em"><b>ntfsdebug
/dev/sda1 | bzip2 | ssh host ’cat >
sda1.img.bzip2’</b></p>
<h2>KNOWN ISSUES
<a name="KNOWN ISSUES"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em">If you find a
problem then please send an email describing it to
[email protected].</p>
<h2>AVAILABILITY
<a name="AVAILABILITY"></a>
</h2>
<p style="margin-left:11%; margin-top: 1em"><b>ntfsdebug</b>
is part of the <b>Tuxera NTFS</b> package.</p>
<hr>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>C-Layman: /home/detlev/src/c-layman/src/message.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.8 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>/home/detlev/src/c-layman/src/message.h File Reference</h1><code>#include <stdio.h></code><br>
<code>#include "<a class="el" href="stringlist_8h-source.html">stringlist.h</a>"</code><br>
<p>
<a href="message_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <a class="el" href="struct_message.html">Message</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="message_8h.html#82fffef6ac8d8a796ab35b7d6a7a0dcb">Message</a></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="struct_message.html">Message</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__message.html#g71549e9f908d468258f2e257655df858">messageCreate</a> (const char *module, FILE *out, FILE *err, FILE *dbg)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__message.html#g5faf9665b84f817233ca8dad4dbe9004">messageFree</a> (<a class="el" href="struct_message.html">Message</a> *m)</td></tr>
</table>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="82fffef6ac8d8a796ab35b7d6a7a0dcb"></a><!-- doxytag: member="message.h::Message" ref="82fffef6ac8d8a796ab35b7d6a7a0dcb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef struct <a class="el" href="struct_message.html">Message</a> <a class="el" href="struct_message.html">Message</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Fri Aug 6 20:00:53 2010 for C-Layman by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
</body>
</html>
| jmesmon/layman | c-layman/doc/html/message_8h.html | HTML | gpl-2.0 | 3,111 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>C-Layman: /home/detlev/src/c-layman/src/message.h File Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css">
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.8 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
</ul>
</div>
<div class="tabs">
<ul>
<li><a href="files.html"><span>File List</span></a></li>
<li><a href="globals.html"><span>Globals</span></a></li>
</ul>
</div>
</div>
<div class="contents">
<h1>/home/detlev/src/c-layman/src/message.h File Reference</h1><code>#include <stdio.h></code><br>
<code>#include "<a class="el" href="stringlist_8h-source.html">stringlist.h</a>"</code><br>
<p>
<a href="message_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Typedefs</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef struct <a class="el" href="struct_message.html">Message</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="message_8h.html#82fffef6ac8d8a796ab35b7d6a7a0dcb">Message</a></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="struct_message.html">Message</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__message.html#g71549e9f908d468258f2e257655df858">messageCreate</a> (const char *module, FILE *out, FILE *err, FILE *dbg)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__message.html#g5faf9665b84f817233ca8dad4dbe9004">messageFree</a> (<a class="el" href="struct_message.html">Message</a> *m)</td></tr>
</table>
<hr><h2>Typedef Documentation</h2>
<a class="anchor" name="82fffef6ac8d8a796ab35b7d6a7a0dcb"></a><!-- doxytag: member="message.h::Message" ref="82fffef6ac8d8a796ab35b7d6a7a0dcb" args="" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">typedef struct <a class="el" href="struct_message.html">Message</a> <a class="el" href="struct_message.html">Message</a> </td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Fri Aug 6 20:00:53 2010 for C-Layman by
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>
</body>
</html>
|
<!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>The transformDistance purpose</title>
</head>
<body><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.scale.html">CairoMatrix::scale</a></div>
<div class="next" style="text-align: right; float: right;"><a href="cairomatrix.transformpoint.html">CairoMatrix::transformPoint</a></div>
<div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="cairomatrix.transformdistance" class="refentry">
<div class="refnamediv">
<h1 class="refname">CairoMatrix::transformDistance</h1>
<p class="verinfo">(PECL cairo >= 0.1.0)</p><p class="refpurpose"><span class="refname">CairoMatrix::transformDistance</span> — <span class="dc-title">The transformDistance purpose</span></p>
</div>
<div class="refsect1 description" id="refsect1-cairomatrix.transformdistance-description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="modifier">public</span> <span class="type">array</span> <span class="methodname"><strong>CairoMatrix::transformDistance</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$dx</code></span>
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$dy</code></span>
)</div>
<p class="para rdfs-comment">
The method description goes here.
</p>
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is
currently not documented; only its argument list is available.
</p></div>
</div>
<div class="refsect1 parameters" id="refsect1-cairomatrix.transformdistance-parameters">
<h3 class="title">Parameters</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">dx</code></dt>
<dd>
<p class="para">
Description...
</p>
</dd>
<dt>
<code class="parameter">dy</code></dt>
<dd>
<p class="para">
Description...
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-cairomatrix.transformdistance-returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
Description...
</p>
</div>
<div class="refsect1 examples" id="refsect1-cairomatrix.transformdistance-examples">
<h3 class="title">Examples</h3>
<p class="para">
<div class="example" id="example-3249">
<p><strong>Example #1 <span class="methodname"><strong>CairoMatrix::transformDistance()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br /></span><span style="color: #FF8000">/* ... */<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
<div class="example-contents"><p>The above example will output
something similar to:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
...
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-cairomatrix.transformdistance-seealso">
<h3 class="title">See Also</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="methodname"><strong>Classname::Method()</strong></span></li>
</ul>
</p>
</div>
</div><hr /><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.scale.html">CairoMatrix::scale</a></div>
<div class="next" style="text-align: right; float: right;"><a href="cairomatrix.transformpoint.html">CairoMatrix::transformPoint</a></div>
<div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>
| P3PO/the-phpjs-local-docs-collection | php/5.5/cairomatrix.transformdistance.html | HTML | gpl-3.0 | 4,105 | <!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>The transformDistance purpose</title>
</head>
<body><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.scale.html">CairoMatrix::scale</a></div>
<div class="next" style="text-align: right; float: right;"><a href="cairomatrix.transformpoint.html">CairoMatrix::transformPoint</a></div>
<div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="cairomatrix.transformdistance" class="refentry">
<div class="refnamediv">
<h1 class="refname">CairoMatrix::transformDistance</h1>
<p class="verinfo">(PECL cairo >= 0.1.0)</p><p class="refpurpose"><span class="refname">CairoMatrix::transformDistance</span> — <span class="dc-title">The transformDistance purpose</span></p>
</div>
<div class="refsect1 description" id="refsect1-cairomatrix.transformdistance-description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="modifier">public</span> <span class="type">array</span> <span class="methodname"><strong>CairoMatrix::transformDistance</strong></span>
( <span class="methodparam"><span class="type">string</span> <code class="parameter">$dx</code></span>
, <span class="methodparam"><span class="type">string</span> <code class="parameter">$dy</code></span>
)</div>
<p class="para rdfs-comment">
The method description goes here.
</p>
<div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is
currently not documented; only its argument list is available.
</p></div>
</div>
<div class="refsect1 parameters" id="refsect1-cairomatrix.transformdistance-parameters">
<h3 class="title">Parameters</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">dx</code></dt>
<dd>
<p class="para">
Description...
</p>
</dd>
<dt>
<code class="parameter">dy</code></dt>
<dd>
<p class="para">
Description...
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-cairomatrix.transformdistance-returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
Description...
</p>
</div>
<div class="refsect1 examples" id="refsect1-cairomatrix.transformdistance-examples">
<h3 class="title">Examples</h3>
<p class="para">
<div class="example" id="example-3249">
<p><strong>Example #1 <span class="methodname"><strong>CairoMatrix::transformDistance()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><code><span style="color: #000000">
<span style="color: #0000BB"><?php<br /></span><span style="color: #FF8000">/* ... */<br /></span><span style="color: #0000BB">?></span>
</span>
</code></div>
</div>
<div class="example-contents"><p>The above example will output
something similar to:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
...
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-cairomatrix.transformdistance-seealso">
<h3 class="title">See Also</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><span class="methodname"><strong>Classname::Method()</strong></span></li>
</ul>
</p>
</div>
</div><hr /><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.scale.html">CairoMatrix::scale</a></div>
<div class="next" style="text-align: right; float: right;"><a href="cairomatrix.transformpoint.html">CairoMatrix::transformPoint</a></div>
<div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Example Mathematical Olympiad: XMO 2014 in Example Host Country Name</title>
<link rel="stylesheet" href="https://www.example.org/subdir/xmo.css" type="text/css">
</head>
<body>
<h1>XMO: XMO 2014 in <a href="/subdir/countries/country1/">Example Host Country Name</a></h1>
<table class="xmo-list">
<tr><th>XMO number</th><td>1</td></tr>
<tr><th>Year</th><td>2014 (<a href="http://www.example.com/" target="_blank">home page</a>)</td></tr>
<tr><th>Country</th><td><a href="/subdir/countries/country1/">Example Host Country Name</a></td></tr>
<tr><th>City</th><td>Example Host City Name</td></tr>
<tr><th>Start date</th><td>2014-04-01</td></tr>
<tr><th>End date</th><td>2014-04-02</td></tr>
<tr><th>Contact name</th><td>Example Contact Name</td></tr>
<tr><th>Contact email</th><td>[email protected]</td></tr>
<tr><th>Participating teams</th><td>3 (<a href="/subdir/xmos/xmo1/countries/">list</a>)</td></tr>
<tr><th>Contestants</th><td>5 (<a href="/subdir/xmos/xmo1/scoreboard/">scoreboard</a>, <a href="/subdir/xmos/xmo1/people/">list of participants</a>, <a href="/subdir/xmos/xmo1/people/summary/">table of participants with photos</a>)</td></tr>
<tr><th>Number of exams</th><td>2</td></tr>
<tr><th>Number of problems</th><td>6 (marked out of: 7+7+7+7+7+7)</td></tr>
<tr><th>Gold medals</th><td>2 (scores ≥ 28)</td></tr>
<tr><th>Silver medals</th><td>1 (scores ≥ 21)</td></tr>
<tr><th>Bronze medals</th><td>1 (scores ≥ 14)</td></tr>
<tr><th>Honourable mentions</th><td>1</td></tr>
</table>
<!-- #include virtual="xmos/xmo1/extra.html" -->
<h2>Day 1 papers</h2>
<ul>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-bg-English.pdf">English</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-English.pdf">English</a> (without background design)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-bg-French.pdf">French</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-French.pdf">French</a> (without background design)</li>
</ul>
<h2>Day 2 papers</h2>
<ul>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-bg-English.pdf">English</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-English.pdf">English</a> (without background design)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-bg-French.pdf">French</a> (corrected)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-French.pdf">French</a> (without background design, corrected)</li>
</ul>
</body>
</html>
| jsm28/matholymp-py | test-data/mo-static-generate/subdir/out/xmos/xmo1/index.html | HTML | gpl-3.0 | 2,618 | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Example Mathematical Olympiad: XMO 2014 in Example Host Country Name</title>
<link rel="stylesheet" href="https://www.example.org/subdir/xmo.css" type="text/css">
</head>
<body>
<h1>XMO: XMO 2014 in <a href="/subdir/countries/country1/">Example Host Country Name</a></h1>
<table class="xmo-list">
<tr><th>XMO number</th><td>1</td></tr>
<tr><th>Year</th><td>2014 (<a href="http://www.example.com/" target="_blank">home page</a>)</td></tr>
<tr><th>Country</th><td><a href="/subdir/countries/country1/">Example Host Country Name</a></td></tr>
<tr><th>City</th><td>Example Host City Name</td></tr>
<tr><th>Start date</th><td>2014-04-01</td></tr>
<tr><th>End date</th><td>2014-04-02</td></tr>
<tr><th>Contact name</th><td>Example Contact Name</td></tr>
<tr><th>Contact email</th><td>[email protected]</td></tr>
<tr><th>Participating teams</th><td>3 (<a href="/subdir/xmos/xmo1/countries/">list</a>)</td></tr>
<tr><th>Contestants</th><td>5 (<a href="/subdir/xmos/xmo1/scoreboard/">scoreboard</a>, <a href="/subdir/xmos/xmo1/people/">list of participants</a>, <a href="/subdir/xmos/xmo1/people/summary/">table of participants with photos</a>)</td></tr>
<tr><th>Number of exams</th><td>2</td></tr>
<tr><th>Number of problems</th><td>6 (marked out of: 7+7+7+7+7+7)</td></tr>
<tr><th>Gold medals</th><td>2 (scores ≥ 28)</td></tr>
<tr><th>Silver medals</th><td>1 (scores ≥ 21)</td></tr>
<tr><th>Bronze medals</th><td>1 (scores ≥ 14)</td></tr>
<tr><th>Honourable mentions</th><td>1</td></tr>
</table>
<!-- #include virtual="xmos/xmo1/extra.html" -->
<h2>Day 1 papers</h2>
<ul>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-bg-English.pdf">English</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-English.pdf">English</a> (without background design)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-bg-French.pdf">French</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day1-French.pdf">French</a> (without background design)</li>
</ul>
<h2>Day 2 papers</h2>
<ul>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-bg-English.pdf">English</a></li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-English.pdf">English</a> (without background design)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-bg-French.pdf">French</a> (corrected)</li>
<li><a href="https://www.example.org/subdir/xmos/xmo1/paper-day2-French.pdf">French</a> (without background design, corrected)</li>
</ul>
</body>
</html>
|
<html>
<head>
<title>BOOST_PP_ARRAY_TO_SEQ</title>
<link rel="stylesheet" type="text/css" href="../styles.css">
</head>
<body>
<div style="margin-left: 0px;"> The <b>BOOST_PP_ARRAY_TO_SEQ</b> macro
converts an <i>array</i> to a <i>seq</i>. </div>
<h4> Usage </h4>
<div class="code"> <b>BOOST_PP_ARRAY_TO_SEQ</b>(<i>array</i>)
</div>
<h4> Arguments </h4>
<dl><dt>array</dt>
<dd> The <i>array</i> to be converted. </dd>
</dl>
<h4> Requirements </h4>
<div> <b>Header:</b> <a href="../headers/array/to_seq.html"><boost/preprocessor/array/to_seq.hpp></a>
</div>
<h4> Sample Code </h4>
<div>
<pre>#include <<a href="../headers/array/to_seq.html">boost/preprocessor/array/to_seq.hpp</a>><br><br><a href="array_to_seq.html">BOOST_PP_ARRAY_TO_SEQ</a>((3, (a, b, c))) // expands to (a)(b)(c)<br></pre>
</div>
<hr size="1">
<div style="margin-left: 0px;"> <i></i><i>© Copyright Edward Diener 2011</i> </div>
<div style="margin-left: 0px;">
<p><small>Distributed under the Boost Software License, Version 1.0.
(See accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a>
or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
</div>
</body>
</html>
| cppisfun/GameEngine | foreign/boost/libs/preprocessor/doc/ref/array_to_seq.html | HTML | gpl-3.0 | 1,262 | <html>
<head>
<title>BOOST_PP_ARRAY_TO_SEQ</title>
<link rel="stylesheet" type="text/css" href="../styles.css">
</head>
<body>
<div style="margin-left: 0px;"> The <b>BOOST_PP_ARRAY_TO_SEQ</b> macro
converts an <i>array</i> to a <i>seq</i>. </div>
<h4> Usage </h4>
<div class="code"> <b>BOOST_PP_ARRAY_TO_SEQ</b>(<i>array</i>)
</div>
<h4> Arguments </h4>
<dl><dt>array</dt>
<dd> The <i>array</i> to be converted. </dd>
</dl>
<h4> Requirements </h4>
<div> <b>Header:</b> <a href="../headers/array/to_seq.html"><boost/preprocessor/array/to_seq.hpp></a>
</div>
<h4> Sample Code </h4>
<div>
<pre>#include <<a href="../headers/array/to_seq.html">boost/preprocessor/array/to_seq.hpp</a>><br><br><a href="array_to_seq.html">BOOST_PP_ARRAY_TO_SEQ</a>((3, (a, b, c))) // expands to (a)(b)(c)<br></pre>
</div>
<hr size="1">
<div style="margin-left: 0px;"> <i></i><i>© Copyright Edward Diener 2011</i> </div>
<div style="margin-left: 0px;">
<p><small>Distributed under the Boost Software License, Version 1.0.
(See accompanying file <a href="../../../../LICENSE_1_0.txt">LICENSE_1_0.txt</a>
or copy at <a href="http://www.boost.org/LICENSE_1_0.txt">www.boost.org/LICENSE_1_0.txt</a>)</small></p>
</div>
</body>
</html>
|
<html>
<head><title>download de dados</title></head>
<body>
<h3>Dados anuais por órgão</h3>
<p><a href="2008/orgaos.json">2008</a></p>
<p><a href="2009/orgaos.json">2009</a></p>
<p><a href="2010/orgaos.json">2010</a></p>
<p><a href="2011/orgaos.json">2011</a></p>
<p><a href="2012/orgaos.json">2012</a></p>
<p><a href="2013/orgaos.json">2013</a></p>
</body>
</html>
| JeffsFernandes/cuidando2 | projeto/projeto/static/data/index.html | HTML | gpl-3.0 | 380 | <html>
<head><title>download de dados</title></head>
<body>
<h3>Dados anuais por órgão</h3>
<p><a href="2008/orgaos.json">2008</a></p>
<p><a href="2009/orgaos.json">2009</a></p>
<p><a href="2010/orgaos.json">2010</a></p>
<p><a href="2011/orgaos.json">2011</a></p>
<p><a href="2012/orgaos.json">2012</a></p>
<p><a href="2013/orgaos.json">2013</a></p>
</body>
</html>
|
<!doctype html>
<html>
<head>
<title>ATS-Queen-Puzzle</title>
<style>
#canvas-container
{
margin: 0 auto; width: 920px; height: auto;
}
</style>
<script
src="https://cdn.jsdelivr.net/jquery/2.1.1/jquery.min.js">
</script>
<script
src="https://ats-lang.github.io/LIBRARY/libatscc2js/ATS2-0.3.2/libatscc2js_all.js">
</script>
</head>
<body>
<h1>ATS->C->JS via atscc2js</h1>
<div id="canvas-container">
<canvas
id="Patsoptaas-Evaluate-canvas"
width="920px" height="600px"
oncontextmenu="event.preventDefault()">
It seems that canvas is not supported by your browser!
</canvas>
</div>
<!--
HX-2014-11: it must be the last one!
-->
<script src="./Queen_puzzle_php_dats.js"></script>
</body>
</html>
| bbarker/ATS-Postiats-contrib | projects/SMALL/JSmydraw/Queen_puzzle/Queen_puzzle.html | HTML | mit | 702 | <!doctype html>
<html>
<head>
<title>ATS-Queen-Puzzle</title>
<style>
#canvas-container
{
margin: 0 auto; width: 920px; height: auto;
}
</style>
<script
src="https://cdn.jsdelivr.net/jquery/2.1.1/jquery.min.js">
</script>
<script
src="https://ats-lang.github.io/LIBRARY/libatscc2js/ATS2-0.3.2/libatscc2js_all.js">
</script>
</head>
<body>
<h1>ATS->C->JS via atscc2js</h1>
<div id="canvas-container">
<canvas
id="Patsoptaas-Evaluate-canvas"
width="920px" height="600px"
oncontextmenu="event.preventDefault()">
It seems that canvas is not supported by your browser!
</canvas>
</div>
<!--
HX-2014-11: it must be the last one!
-->
<script src="./Queen_puzzle_php_dats.js"></script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>Centering grid content</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="description" content="Centering grid content" />
<meta name="keywords" content="javascript, dynamic, grid, layout, jquery plugin, flex layouts"/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="../freewall.js"></script>
<script type="text/javascript" src="../plugin/centering.js"></script>
<style type="text/css">
.free-wall {
margin: 15px;
}
</style>
</head>
<body>
<div class='header'>
<div class="clearfix">
<div class="float-left">
<h1><a href="http://vnjs.net/www/project/freewall/">Free Wall</a></h1>
<div class='target'>Creating dynamic grid layouts.</div>
</div>
</div>
</div>
<div id="freewall" class="free-wall">
<div class="brick size32">
<div class='cover'>
<h2>Centering grid content</h2>
</div>
</div>
<div class="brick size12 add-more">
<div class='cover'>
<h2>Add more block</h2>
</div>
</div>
</div>
<script type="text/javascript">
var colour = [
"rgb(142, 68, 173)",
"rgb(243, 156, 18)",
"rgb(211, 84, 0)",
"rgb(0, 106, 63)",
"rgb(41, 128, 185)",
"rgb(192, 57, 43)",
"rgb(135, 0, 0)",
"rgb(39, 174, 96)"
];
$(".brick").each(function() {
this.style.backgroundColor = colour[colour.length * Math.random() << 0];
});
$(function() {
var wall = new Freewall("#freewall");
wall.reset({
selector: '.brick',
animate: true,
cellW: 160,
cellH: 160,
delay: 50,
onResize: function() {
wall.fitWidth();
}
});
wall.fitWidth();
var temp = '<div class="brick {size}" style="background-color: {color}"><div class="cover"></div></div>';
var size = "size23 size22 size21 size13 size12 size11".split(" ");
$(".add-more").click(function() {
var html = temp.replace('{size}', size[size.length * Math.random() << 0])
.replace('{color}', colour[colour.length * Math.random() << 0]);
wall.prepend(html);
});
});
</script>
</body>
</html>
| kombai/freewall | example/centering-grid.html | HTML | mit | 2,327 | <!DOCTYPE html>
<html>
<head>
<title>Centering grid content</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta name="description" content="Centering grid content" />
<meta name="keywords" content="javascript, dynamic, grid, layout, jquery plugin, flex layouts"/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="../freewall.js"></script>
<script type="text/javascript" src="../plugin/centering.js"></script>
<style type="text/css">
.free-wall {
margin: 15px;
}
</style>
</head>
<body>
<div class='header'>
<div class="clearfix">
<div class="float-left">
<h1><a href="http://vnjs.net/www/project/freewall/">Free Wall</a></h1>
<div class='target'>Creating dynamic grid layouts.</div>
</div>
</div>
</div>
<div id="freewall" class="free-wall">
<div class="brick size32">
<div class='cover'>
<h2>Centering grid content</h2>
</div>
</div>
<div class="brick size12 add-more">
<div class='cover'>
<h2>Add more block</h2>
</div>
</div>
</div>
<script type="text/javascript">
var colour = [
"rgb(142, 68, 173)",
"rgb(243, 156, 18)",
"rgb(211, 84, 0)",
"rgb(0, 106, 63)",
"rgb(41, 128, 185)",
"rgb(192, 57, 43)",
"rgb(135, 0, 0)",
"rgb(39, 174, 96)"
];
$(".brick").each(function() {
this.style.backgroundColor = colour[colour.length * Math.random() << 0];
});
$(function() {
var wall = new Freewall("#freewall");
wall.reset({
selector: '.brick',
animate: true,
cellW: 160,
cellH: 160,
delay: 50,
onResize: function() {
wall.fitWidth();
}
});
wall.fitWidth();
var temp = '<div class="brick {size}" style="background-color: {color}"><div class="cover"></div></div>';
var size = "size23 size22 size21 size13 size12 size11".split(" ");
$(".add-more").click(function() {
var html = temp.replace('{size}', size[size.length * Math.random() << 0])
.replace('{color}', colour[colour.length * Math.random() << 0]);
wall.prepend(html);
});
});
</script>
</body>
</html>
|
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'strict-origin-when-cross-origin'</title>
<meta charset='utf-8'>
<meta name="description" content="Check that a priori insecure subresource gets no referrer information. Otherwise, cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL.">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin">
<meta name="assert" content="Referrer Policy: Expects stripped-referrer for fetch to same-http origin and no-redirect redirection from http context.">
<meta name="referrer" content="no-referrer">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="/referrer-policy/generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "stripped-referrer",
"origin": "same-http",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "http-rp",
"key": "referrerPolicy",
"value": "strict-origin-when-cross-origin"
}
],
"sourceContextType": "worker-classic"
}
],
"source_scheme": "http",
"subresource": "fetch",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| saneyuki/servo | tests/wpt/web-platform-tests/referrer-policy/gen/worker-classic.http-rp/strict-origin-when-cross-origin/fetch/same-http.no-redirect.http.html | HTML | mpl-2.0 | 2,046 | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. -->
<html>
<head>
<title>Referrer-Policy: Referrer Policy is set to 'strict-origin-when-cross-origin'</title>
<meta charset='utf-8'>
<meta name="description" content="Check that a priori insecure subresource gets no referrer information. Otherwise, cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL.">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin">
<meta name="assert" content="Referrer Policy: Expects stripped-referrer for fetch to same-http origin and no-redirect redirection from http context.">
<meta name="referrer" content="no-referrer">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="/referrer-policy/generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "stripped-referrer",
"origin": "same-http",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [
{
"deliveryType": "http-rp",
"key": "referrerPolicy",
"value": "strict-origin-when-cross-origin"
}
],
"sourceContextType": "worker-classic"
}
],
"source_scheme": "http",
"subresource": "fetch",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
<!DOCTYPE html>
<!-- DO NOT EDIT! Generated by upgrade-insecure-requests/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. -->
<html>
<head>
<title>Upgrade-Insecure-Requests: With upgrade-insecure-request</title>
<meta charset='utf-8'>
<meta name="description" content="With upgrade-insecure-request">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-upgrade-insecure-requests/">
<meta name="assert" content="Upgrade-Insecure-Requests: Expects allowed for xhr to same-http-downgrade origin and no-redirect redirection from https context.">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="/upgrade-insecure-requests/generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "allowed",
"origin": "same-http-downgrade",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [],
"sourceContextType": "worker-classic-data"
}
],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
| DominoTree/servo | tests/wpt/web-platform-tests/upgrade-insecure-requests/gen/worker-classic-data.meta/upgrade/xhr/same-http-downgrade.no-redirect.https.html | HTML | mpl-2.0 | 1,688 | <!DOCTYPE html>
<!-- DO NOT EDIT! Generated by upgrade-insecure-requests/generic/tools/generate.py using common/security-features/tools/template/test.release.html.template. -->
<html>
<head>
<title>Upgrade-Insecure-Requests: With upgrade-insecure-request</title>
<meta charset='utf-8'>
<meta name="description" content="With upgrade-insecure-request">
<link rel="author" title="Kristijan Burnik" href="[email protected]">
<link rel="help" href="https://w3c.github.io/webappsec-upgrade-insecure-requests/">
<meta name="assert" content="Upgrade-Insecure-Requests: Expects allowed for xhr to same-http-downgrade origin and no-redirect redirection from https context.">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/security-features/resources/common.sub.js"></script>
<script src="/upgrade-insecure-requests/generic/test-case.sub.js"></script>
</head>
<body>
<script>
TestCase(
{
"expectation": "allowed",
"origin": "same-http-downgrade",
"redirection": "no-redirect",
"source_context_list": [
{
"policyDeliveries": [],
"sourceContextType": "worker-classic-data"
}
],
"source_scheme": "https",
"subresource": "xhr",
"subresource_policy_deliveries": []
},
document.querySelector("meta[name=assert]").content,
new SanityChecker()
).start();
</script>
<div id="log"></div>
</body>
</html>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>libtcod documentation | Pseudorandom number generator</title>
<script type="text/javascript" src="../js/doctcod.js"></script>
<link href="../css/style.css" rel="stylesheet" type="text/css"></head>
<link type="text/css" rel="stylesheet" href="../css/shCore.css"></link>
<link type="text/css" rel="stylesheet" href="../css/shThemeDefault.css"></link>
<script language="javascript" src="../js/shCore.js"></script>
<script language="javascript" src="../js/shBrushBash.js"></script>
<body><div class="header">
<p><span class="title1">libtcod</span><span class="title2">documentation</span></p>
</div>
<div class="breadcrumb"><div class="breadcrumbtext"><p>
you are here: <a onclick="link('../index2.html')">Index</a> > <a onclick="link('random.html')">7. Pseudorandom number generator</a><br>
<a class="prev" onclick="link('list.html')">6. All purposes container</a> | <a class="next" onclick="link('mouse.html')">8. Mouse support</a>
</p></div></div>
<div class="filter"><input type="checkbox" id="chk_c" name="chk_c" onchange="enable('c',this.checked)" checked='checked' ><label for='chk_c'> C </label><input type="checkbox" id="chk_cpp" name="chk_cpp" onchange="enable('cpp',this.checked)" checked='checked' ><label for='chk_cpp'> C++ </label><input type="checkbox" id="chk_py" name="chk_py" onchange="enable('py',this.checked)" checked='checked' ><label for='chk_py'> Py </label><input type="checkbox" id="chk_lua" name="chk_lua" onchange="enable('lua',this.checked)" disabled='disabled'><label class='disabled' for='chk_lua'> Lua </label><input type="checkbox" id="chk_cs" name="chk_cs" onchange="enable('cs',this.checked)" disabled='disabled'><label class='disabled' for='chk_cs'> C# </label></div>
<div class="main"><div class="maintext">
<h1>7. Pseudorandom number generator</h1>
<div id="toc"><ul><li><a onclick="link('random_init.html')">7.1. Creating a generator</a></li>
<li><a onclick="link('random_distro.html')">7.2. Using a generator</a></li>
<li><a onclick="link('random_use.html')">7.3. Using a generator</a></li>
</ul></div>
<p>This toolkit is an implementation of two fast and high quality pseudorandom number generators:<br />* a Mersenne twister generator,<br />* a Complementary-Multiply-With-Carry generator.<br />CMWC is faster than MT (see table below) and has a much better period (1039460 vs. 106001). It is the default algo since libtcod 1.5.0.<br /><br />Relative performances in two independent tests (lower is better) :<br /><table class="param">
<tr>
<th>Algorithm</th>
<th>Numbers generated</th>
<th>Perf (1)</th>
<th>Perf (2)</th>
</tr>
<tr class="hilite">
<td>MT</td>
<td>integer</td>
<td>62</td>
<td>50</td>
</tr>
<tr>
<td>MT</td>
<td>float</td>
<td>54</td>
<td>45</td>
</tr>
<tr class="hilite">
<td>CMWC</td>
<td>integer</td>
<td>21</td>
<td>34</td>
</tr>
<tr>
<td>CMWC</td>
<td>float</td>
<td>32</td>
<td>27</td>
</tr>
</table><br /><br /><h6>For python users:</h6><br />Python already has great builtin random generators. But some parts of the Doryen library (noise, heightmap, ...) uses RNG as parameters. If you intend to use those functions, you must provide a RNG created with the library.<br /><br /><h6>For C# users:</h6><br />.NET already has great builtin random generators. But some parts of the Doryen library (noise, heightmap, ...) uses RNG as parameters. If you intend to use those functions, you must provide a RNG created with the library.<br /> </p>
</div></div>
<div class="footer"><div class="footertext">
<p>libtcod 1.5.2, © 2008, 2009, 2010, 2012 Jice & Mingos<br>
This file has been generated by doctcod.</p>
<p><table width='100%'><tr><td><a href="http://doryen.eptalys.net/libtcod">libtcod website</a></td>
<td><a href="http://doryen.eptalys.net/forum/index.php?board=12.0">libtcod on Roguecentral forums</a></td>
<td><a href="http://doryen.eptalys.net/libtcod/tutorial">libtcod tutorials</a></td>
</tr></table></p>
</div></div>
</body>
<script>
initFilter();
SyntaxHighlighter.all();
</script>
</html>
| svifylabs/Brogue | src/libtcod-1.5.2/doc/html2/random.html | HTML | agpl-3.0 | 4,335 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head><meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>libtcod documentation | Pseudorandom number generator</title>
<script type="text/javascript" src="../js/doctcod.js"></script>
<link href="../css/style.css" rel="stylesheet" type="text/css"></head>
<link type="text/css" rel="stylesheet" href="../css/shCore.css"></link>
<link type="text/css" rel="stylesheet" href="../css/shThemeDefault.css"></link>
<script language="javascript" src="../js/shCore.js"></script>
<script language="javascript" src="../js/shBrushBash.js"></script>
<body><div class="header">
<p><span class="title1">libtcod</span><span class="title2">documentation</span></p>
</div>
<div class="breadcrumb"><div class="breadcrumbtext"><p>
you are here: <a onclick="link('../index2.html')">Index</a> > <a onclick="link('random.html')">7. Pseudorandom number generator</a><br>
<a class="prev" onclick="link('list.html')">6. All purposes container</a> | <a class="next" onclick="link('mouse.html')">8. Mouse support</a>
</p></div></div>
<div class="filter"><input type="checkbox" id="chk_c" name="chk_c" onchange="enable('c',this.checked)" checked='checked' ><label for='chk_c'> C </label><input type="checkbox" id="chk_cpp" name="chk_cpp" onchange="enable('cpp',this.checked)" checked='checked' ><label for='chk_cpp'> C++ </label><input type="checkbox" id="chk_py" name="chk_py" onchange="enable('py',this.checked)" checked='checked' ><label for='chk_py'> Py </label><input type="checkbox" id="chk_lua" name="chk_lua" onchange="enable('lua',this.checked)" disabled='disabled'><label class='disabled' for='chk_lua'> Lua </label><input type="checkbox" id="chk_cs" name="chk_cs" onchange="enable('cs',this.checked)" disabled='disabled'><label class='disabled' for='chk_cs'> C# </label></div>
<div class="main"><div class="maintext">
<h1>7. Pseudorandom number generator</h1>
<div id="toc"><ul><li><a onclick="link('random_init.html')">7.1. Creating a generator</a></li>
<li><a onclick="link('random_distro.html')">7.2. Using a generator</a></li>
<li><a onclick="link('random_use.html')">7.3. Using a generator</a></li>
</ul></div>
<p>This toolkit is an implementation of two fast and high quality pseudorandom number generators:<br />* a Mersenne twister generator,<br />* a Complementary-Multiply-With-Carry generator.<br />CMWC is faster than MT (see table below) and has a much better period (1039460 vs. 106001). It is the default algo since libtcod 1.5.0.<br /><br />Relative performances in two independent tests (lower is better) :<br /><table class="param">
<tr>
<th>Algorithm</th>
<th>Numbers generated</th>
<th>Perf (1)</th>
<th>Perf (2)</th>
</tr>
<tr class="hilite">
<td>MT</td>
<td>integer</td>
<td>62</td>
<td>50</td>
</tr>
<tr>
<td>MT</td>
<td>float</td>
<td>54</td>
<td>45</td>
</tr>
<tr class="hilite">
<td>CMWC</td>
<td>integer</td>
<td>21</td>
<td>34</td>
</tr>
<tr>
<td>CMWC</td>
<td>float</td>
<td>32</td>
<td>27</td>
</tr>
</table><br /><br /><h6>For python users:</h6><br />Python already has great builtin random generators. But some parts of the Doryen library (noise, heightmap, ...) uses RNG as parameters. If you intend to use those functions, you must provide a RNG created with the library.<br /><br /><h6>For C# users:</h6><br />.NET already has great builtin random generators. But some parts of the Doryen library (noise, heightmap, ...) uses RNG as parameters. If you intend to use those functions, you must provide a RNG created with the library.<br /> </p>
</div></div>
<div class="footer"><div class="footertext">
<p>libtcod 1.5.2, © 2008, 2009, 2010, 2012 Jice & Mingos<br>
This file has been generated by doctcod.</p>
<p><table width='100%'><tr><td><a href="http://doryen.eptalys.net/libtcod">libtcod website</a></td>
<td><a href="http://doryen.eptalys.net/forum/index.php?board=12.0">libtcod on Roguecentral forums</a></td>
<td><a href="http://doryen.eptalys.net/libtcod/tutorial">libtcod tutorials</a></td>
</tr></table></p>
</div></div>
</body>
<script>
initFilter();
SyntaxHighlighter.all();
</script>
</html>
|
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<select multiple id="s">
<option value="1" id="one" selected>one</option>
<option id="two" selected>two</option>
</select>
<script>
alert(document.getElementById('s').value);
</script>
</body>
</html> | 110035/kissy | src/dom/sub-modules/ie/tests/manual/select.html | HTML | mit | 301 | <!doctype html>
<html>
<head>
<meta charset="utf-8"/>
</head>
<body>
<select multiple id="s">
<option value="1" id="one" selected>one</option>
<option id="two" selected>two</option>
</select>
<script>
alert(document.getElementById('s').value);
</script>
</body>
</html> |
<html>
<head>
<title>WATOBO - Interceptor</title>
</head>
<body>
<h1>Thank you for using WATOBO - The Webapplication Toolbox</h1>
Info:<br>
Version: WATOBO_VERSION<br />
Home dir: WATOBO_HOME<br />
<br /><br />
<a href="watobo.pem">Download Certificate</a>
</body>
</html> | LubyRuffy/watobo | lib/watobo/interceptor/html/index.html | HTML | gpl-2.0 | 302 | <html>
<head>
<title>WATOBO - Interceptor</title>
</head>
<body>
<h1>Thank you for using WATOBO - The Webapplication Toolbox</h1>
Info:<br>
Version: WATOBO_VERSION<br />
Home dir: WATOBO_HOME<br />
<br /><br />
<a href="watobo.pem">Download Certificate</a>
</body>
</html> |
<html>
<head>
<title>GB18030 lead 823191</title>
<meta http-equiv='content-type' content='text/html;charset=GB18030'>
<link rel='stylesheet' href='tests.css'>
</head>
<body>
<table>
<caption>Four-byte lead 823191</caption>
<tr><th colspan=2>GB18030<th colspan=3>Unicode
<tr><td>=82319130<td> 10 <td>U+3A37<td>㨷<td class=u>to wipe; to cleanse, (interchangeable &#232;) difficult; distress; harship
<tr><td>=82319131<td> 11 <td>U+3A38<td>㨸<td class=u>to hit; to strike; to beat
<tr><td>=82319132<td> 12 <td>U+3A39<td>㨹<td class=u>to crack; to break; to rip open, to split or divide up, to hang up; to suspend, to sweep clean; to eliminate
<tr><td>=82319133<td> 13 <td>U+3A3A<td>㨺<td class=u>to ornament; to polish; to decorate, (same as &#230;) to feel; to touch with hands; to hold, to search (in one's pocket, etc.)
<tr><td>=82319134<td> 14 <td>U+3A3B<td>㨻<td class=u>to cut; to kill; to behead, gradually; little by little; by degrees, to lift; to raise, to strike; to beat, to throw; to pitch; to deliver
<tr><td>=82319135<td> 15 <td>U+3A3C<td>㨼<td class=u>(non-classical form of U+63A0 &#230;) to take by force, to throw aside
<tr><td>=82319136<td> 16 <td>U+3A3D<td>㨽<td class=u>to cut or rip open
<tr><td>=82319137<td> 17 <td>U+3A3E<td>㨾<td class=u>a type; a model; a mode; a style
<tr><td>=82319138<td> 18 <td>U+3A3F<td>㨿<td class=u>(a variant of &#230;) to receive, as communications from a subordinate, to rely on, to lean on, evidence; proof, according to; whereas
<tr><td>=82319139<td> 19 <td>U+3A40<td>㩀<td class=u>(a variant of &#230;) to receive, as communications from a subordinate, to rely on, to lean on, evidence; proof, according to; whereas
</table>
<p><a href='charset/GB18030.html'>Return</a></p>
</body>
</html>
| frivoal/presto-testo | imported/peter/unicode/comparative/GB18030-823191.html | HTML | bsd-3-clause | 1,896 | <html>
<head>
<title>GB18030 lead 823191</title>
<meta http-equiv='content-type' content='text/html;charset=GB18030'>
<link rel='stylesheet' href='tests.css'>
</head>
<body>
<table>
<caption>Four-byte lead 823191</caption>
<tr><th colspan=2>GB18030<th colspan=3>Unicode
<tr><td>=82319130<td> 10 <td>U+3A37<td>㨷<td class=u>to wipe; to cleanse, (interchangeable &#232;) difficult; distress; harship
<tr><td>=82319131<td> 11 <td>U+3A38<td>㨸<td class=u>to hit; to strike; to beat
<tr><td>=82319132<td> 12 <td>U+3A39<td>㨹<td class=u>to crack; to break; to rip open, to split or divide up, to hang up; to suspend, to sweep clean; to eliminate
<tr><td>=82319133<td> 13 <td>U+3A3A<td>㨺<td class=u>to ornament; to polish; to decorate, (same as &#230;) to feel; to touch with hands; to hold, to search (in one's pocket, etc.)
<tr><td>=82319134<td> 14 <td>U+3A3B<td>㨻<td class=u>to cut; to kill; to behead, gradually; little by little; by degrees, to lift; to raise, to strike; to beat, to throw; to pitch; to deliver
<tr><td>=82319135<td> 15 <td>U+3A3C<td>㨼<td class=u>(non-classical form of U+63A0 &#230;) to take by force, to throw aside
<tr><td>=82319136<td> 16 <td>U+3A3D<td>㨽<td class=u>to cut or rip open
<tr><td>=82319137<td> 17 <td>U+3A3E<td>㨾<td class=u>a type; a model; a mode; a style
<tr><td>=82319138<td> 18 <td>U+3A3F<td>㨿<td class=u>(a variant of &#230;) to receive, as communications from a subordinate, to rely on, to lean on, evidence; proof, according to; whereas
<tr><td>=82319139<td> 19 <td>U+3A40<td>㩀<td class=u>(a variant of &#230;) to receive, as communications from a subordinate, to rely on, to lean on, evidence; proof, according to; whereas
</table>
<p><a href='charset/GB18030.html'>Return</a></p>
</body>
</html>
|
<html>
<head>
<title>GB18030 lead 8136C8</title>
<meta http-equiv='content-type' content='text/html;charset=GB18030'>
<link rel='stylesheet' href='tests.css'>
</head>
<body>
<table>
<caption>Four-byte lead 8136C8</caption>
<tr><th colspan=2>GB18030<th colspan=3>Unicode
<tr><td>=8136C830<td> 6È0 <td>U+21A0<td>↠<td class=u>RIGHTWARDS TWO HEADED ARROW
<tr><td>=8136C831<td> 6È1 <td>U+21A1<td>↡<td class=u>DOWNWARDS TWO HEADED ARROW
<tr><td>=8136C832<td> 6È2 <td>U+21A2<td>↢<td class=u>LEFTWARDS ARROW WITH TAIL
<tr><td>=8136C833<td> 6È3 <td>U+21A3<td>↣<td class=u>RIGHTWARDS ARROW WITH TAIL
<tr><td>=8136C834<td> 6È4 <td>U+21A4<td>↤<td class=u>LEFTWARDS ARROW FROM BAR
<tr><td>=8136C835<td> 6È5 <td>U+21A5<td>↥<td class=u>UPWARDS ARROW FROM BAR
<tr><td>=8136C836<td> 6È6 <td>U+21A6<td>↦<td class=u>RIGHTWARDS ARROW FROM BAR
<tr><td>=8136C837<td> 6È7 <td>U+21A7<td>↧<td class=u>DOWNWARDS ARROW FROM BAR
<tr><td>=8136C838<td> 6È8 <td>U+21A8<td>↨<td class=u>UP DOWN ARROW WITH BASE
<tr><td>=8136C839<td> 6È9 <td>U+21A9<td>↩<td class=u>LEFTWARDS ARROW WITH HOOK
</table>
<p><a href='charset/GB18030.html'>Return</a></p>
</body>
</html>
| frivoal/presto-testo | imported/peter/unicode/comparative/GB18030-8136c8.html | HTML | bsd-3-clause | 1,253 | <html>
<head>
<title>GB18030 lead 8136C8</title>
<meta http-equiv='content-type' content='text/html;charset=GB18030'>
<link rel='stylesheet' href='tests.css'>
</head>
<body>
<table>
<caption>Four-byte lead 8136C8</caption>
<tr><th colspan=2>GB18030<th colspan=3>Unicode
<tr><td>=8136C830<td> 6È0 <td>U+21A0<td>↠<td class=u>RIGHTWARDS TWO HEADED ARROW
<tr><td>=8136C831<td> 6È1 <td>U+21A1<td>↡<td class=u>DOWNWARDS TWO HEADED ARROW
<tr><td>=8136C832<td> 6È2 <td>U+21A2<td>↢<td class=u>LEFTWARDS ARROW WITH TAIL
<tr><td>=8136C833<td> 6È3 <td>U+21A3<td>↣<td class=u>RIGHTWARDS ARROW WITH TAIL
<tr><td>=8136C834<td> 6È4 <td>U+21A4<td>↤<td class=u>LEFTWARDS ARROW FROM BAR
<tr><td>=8136C835<td> 6È5 <td>U+21A5<td>↥<td class=u>UPWARDS ARROW FROM BAR
<tr><td>=8136C836<td> 6È6 <td>U+21A6<td>↦<td class=u>RIGHTWARDS ARROW FROM BAR
<tr><td>=8136C837<td> 6È7 <td>U+21A7<td>↧<td class=u>DOWNWARDS ARROW FROM BAR
<tr><td>=8136C838<td> 6È8 <td>U+21A8<td>↨<td class=u>UP DOWN ARROW WITH BASE
<tr><td>=8136C839<td> 6È9 <td>U+21A9<td>↩<td class=u>LEFTWARDS ARROW WITH HOOK
</table>
<p><a href='charset/GB18030.html'>Return</a></p>
</body>
</html>
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
<title>CSS Masking: Test clip-path and polygon with margin-box</title>
<link rel="author" title="Dirk Schulze" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#clipping-paths">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#propdef-clip-path">
<link rel="match" href="clip-path-stripes-002-ref.html">
<meta name="assert" content="The clip-path property allows specifying
basic shapes and reference boxes. This test checks the usage of the correct
reference box 'margin-box' for the polygon() function by mixing percentage
and absolute values as coordinates. On sucess you should see a green
vertical stripe next to a lime green vertical stripe. Both should be of equal
size.">
</head>
<style>
div {
width: 50px;
height: 50px;
background-color: green;
padding: 25px;
margin: 25px;
border: red solid 25px;
border-left: lime solid 25px;
}
</style>
<body>
<p>The test passes if you see a green vertical stripe next to a lime green vertical stripe, both stripes should be of equal size and there should be no red.</p>
<div style="clip-path: polygon(12.5% 25%, 37.5% 50px, 75px 50%, 25px 100px) margin-box"></div>
</body>
</html> | Yukarumya/Yukarum-Redfoxes | layout/reftests/svg/svg-integration/clip-path/clip-path-polygon-008.html | HTML | mpl-2.0 | 1,377 | <!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE html>
<html>
<head>
<title>CSS Masking: Test clip-path and polygon with margin-box</title>
<link rel="author" title="Dirk Schulze" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#clipping-paths">
<link rel="help" href="http://www.w3.org/TR/css-masking-1/#propdef-clip-path">
<link rel="match" href="clip-path-stripes-002-ref.html">
<meta name="assert" content="The clip-path property allows specifying
basic shapes and reference boxes. This test checks the usage of the correct
reference box 'margin-box' for the polygon() function by mixing percentage
and absolute values as coordinates. On sucess you should see a green
vertical stripe next to a lime green vertical stripe. Both should be of equal
size.">
</head>
<style>
div {
width: 50px;
height: 50px;
background-color: green;
padding: 25px;
margin: 25px;
border: red solid 25px;
border-left: lime solid 25px;
}
</style>
<body>
<p>The test passes if you see a green vertical stripe next to a lime green vertical stripe, both stripes should be of equal size and there should be no red.</p>
<div style="clip-path: polygon(12.5% 25%, 37.5% 50px, 75px 50%, 25px 100px) margin-box"></div>
</body>
</html> |
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TrTranslation.cdy</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
#CSConsole {
background-color: #FAFAFA;
border-top: 1px solid #333333;
bottom: 0px;
height: 200px;
overflow-y: scroll;
position: fixed;
width: 100%;
}
</style>
<script type="text/javascript" src="../build/js/Cindy.js"></script>
<script id="csdraw" type="text/x-cindyscript">
draw(P1,P1i,arrow->true,color->(1,1,1));
draw(O,X,arrow->true,color->(0,0,1));
draw(Oi,Xi,arrow->true,color->(0,0,1));
</script>
<script type="text/javascript">
CindyJS({
scripts: "cs*",
defaultAppearance: { fontFamily: "sans-serif", lineSize: 1, pointSize: 5.0 },
angleUnit: "°",
geometry: [
{ name: "P1", type: "Free", pos: [ 4.0, -4.0, -0.6666666666666666 ], color: [ 0.0, 0.0, 0.0 ], labeled: true, size: 3.0 },
{ name: "P1i", type: "Free", pos: [ 0.0, -4.0, -1.3333333333333333 ], color: [ 0.5019608, 0.5019608, 0.5019608 ], labeled: true, size: 3.0, printname: "P1'" },
{ name: "Tr0", type: "TrTranslation", color: [ 0.0, 0.0, 1.0 ], args: [ "P1", "P1i" ] },
{ name: "O", type: "Free", pos: [ 4.0, 3.3333333333333335, 0.6666666666666666 ], color: [ 1.0, 1.0, 1.0 ], labeled: true },
{ name: "C0", type: "CircleByRadius", color: [ 1.0, 1.0, 0.0 ], radius: 2.999999999999999, args: [ "O" ], printname: "$C_{0}$" },
{ name: "X", type: "PointOnCircle", pos: [ 4.0, { r: 2.2077737946188507, i: -1.3419095945542774E-16 }, { r: 0.4444531955041505, i: 1.6304775351968118E-19 } ], color: [ 0.0, 0.0, 1.0 ], args: [ "C0" ], labeled: true, size: 3.0 },
{ name: "Oi", type: "Transform", pos: [ 4.0, { r: 0.6666666666666673, i: -3.996802888650567E-17 }, { r: 0.3333333333333333, i: 2.0400348077487273E-17 } ], color: [ 1.0, 1.0, 1.0 ], args: [ "Tr0", "O" ], labeled: true, printname: "O'" },
{ name: "Xi", type: "Transform", pos: [ 4.0, { r: 0.5246443927888744, i: -1.4647937769530865E-16 }, { r: 0.2666698170233487, i: 2.095953600789266E-17 } ], color: [ 0.0, 0.0, 1.0 ], args: [ "Tr0", "X" ], labeled: true, size: 3.0, printname: "X'" },
{ name: "C2", type: "Transform", color: [ 1.0, 1.0, 0.0 ], args: [ "Tr0", "C0" ], printname: "$C_{2}$" } ],
ports: [
{ id: "CSCanvas", width: 680, height: 350, transform: [ { visibleRect: [ -9.06, 9.34, 18.14, -4.66 ] } ], background: "rgb(168,176,192)" } ],
cinderella: { build: 1798, version: [ 2, 9, 1798 ] } });
</script>
</head>
<body>
<div id="CSCanvas"></div>
</body>
</html>
| gagern/CindyJS | examples/112_TrTranslation.html | HTML | apache-2.0 | 2,651 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>TrTranslation.cdy</title>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
#CSConsole {
background-color: #FAFAFA;
border-top: 1px solid #333333;
bottom: 0px;
height: 200px;
overflow-y: scroll;
position: fixed;
width: 100%;
}
</style>
<script type="text/javascript" src="../build/js/Cindy.js"></script>
<script id="csdraw" type="text/x-cindyscript">
draw(P1,P1i,arrow->true,color->(1,1,1));
draw(O,X,arrow->true,color->(0,0,1));
draw(Oi,Xi,arrow->true,color->(0,0,1));
</script>
<script type="text/javascript">
CindyJS({
scripts: "cs*",
defaultAppearance: { fontFamily: "sans-serif", lineSize: 1, pointSize: 5.0 },
angleUnit: "°",
geometry: [
{ name: "P1", type: "Free", pos: [ 4.0, -4.0, -0.6666666666666666 ], color: [ 0.0, 0.0, 0.0 ], labeled: true, size: 3.0 },
{ name: "P1i", type: "Free", pos: [ 0.0, -4.0, -1.3333333333333333 ], color: [ 0.5019608, 0.5019608, 0.5019608 ], labeled: true, size: 3.0, printname: "P1'" },
{ name: "Tr0", type: "TrTranslation", color: [ 0.0, 0.0, 1.0 ], args: [ "P1", "P1i" ] },
{ name: "O", type: "Free", pos: [ 4.0, 3.3333333333333335, 0.6666666666666666 ], color: [ 1.0, 1.0, 1.0 ], labeled: true },
{ name: "C0", type: "CircleByRadius", color: [ 1.0, 1.0, 0.0 ], radius: 2.999999999999999, args: [ "O" ], printname: "$C_{0}$" },
{ name: "X", type: "PointOnCircle", pos: [ 4.0, { r: 2.2077737946188507, i: -1.3419095945542774E-16 }, { r: 0.4444531955041505, i: 1.6304775351968118E-19 } ], color: [ 0.0, 0.0, 1.0 ], args: [ "C0" ], labeled: true, size: 3.0 },
{ name: "Oi", type: "Transform", pos: [ 4.0, { r: 0.6666666666666673, i: -3.996802888650567E-17 }, { r: 0.3333333333333333, i: 2.0400348077487273E-17 } ], color: [ 1.0, 1.0, 1.0 ], args: [ "Tr0", "O" ], labeled: true, printname: "O'" },
{ name: "Xi", type: "Transform", pos: [ 4.0, { r: 0.5246443927888744, i: -1.4647937769530865E-16 }, { r: 0.2666698170233487, i: 2.095953600789266E-17 } ], color: [ 0.0, 0.0, 1.0 ], args: [ "Tr0", "X" ], labeled: true, size: 3.0, printname: "X'" },
{ name: "C2", type: "Transform", color: [ 1.0, 1.0, 0.0 ], args: [ "Tr0", "C0" ], printname: "$C_{2}$" } ],
ports: [
{ id: "CSCanvas", width: 680, height: 350, transform: [ { visibleRect: [ -9.06, 9.34, 18.14, -4.66 ] } ], background: "rgb(168,176,192)" } ],
cinderella: { build: 1798, version: [ 2, 9, 1798 ] } });
</script>
</head>
<body>
<div id="CSCanvas"></div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Directions Draggable</title>
<link href="default.css" rel="stylesheet">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
var rendererOptions = {
draggable: true
};
var directionsDisplay;
var directionsService;
var map;
var australia;
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer(rendererOptions);;
directionsService = new google.maps.DirectionsService();
australia = new google.maps.LatLng(-25.274398, 133.775136);
var mapOptions = {
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: australia
};
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('directionsPanel'));
google.maps.event.addListener(directionsDisplay, 'directions_changed', function() {
computeTotalDistance(directionsDisplay.getDirections());
});
calcRoute();
}
function calcRoute() {
var request = {
origin: 'Sydney, NSW',
destination: 'Sydney, NSW',
waypoints:[{location: 'Bourke, NSW'}, {location: 'Broken Hill, NSW'}],
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
function computeTotalDistance(result) {
var total = 0;
var myroute = result.routes[0];
for (var i = 0; i < myroute.legs.length; i++) {
total += myroute.legs[i].distance.value;
}
total = total / 1000.
document.getElementById('total').innerHTML = total + ' km';
}
google.load('maps', '3.0', {
callback: initialize,
other_params: 'sensor=false'
});
</script>
</head>
<body>
<div id="map_canvas" style="float:left;width:70%; height:100%"></div>
<div id="directionsPanel" style="float:right;width:30%;height 100%">
<p>Total Distance: <span id="total"></span></p>
</div>
</body>
</html>
| initaldk/caja | tests/com/google/caja/apitaming/maps/directions-draggable.html | HTML | apache-2.0 | 2,510 | <!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Directions Draggable</title>
<link href="default.css" rel="stylesheet">
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
var rendererOptions = {
draggable: true
};
var directionsDisplay;
var directionsService;
var map;
var australia;
function initialize() {
directionsDisplay = new google.maps.DirectionsRenderer(rendererOptions);;
directionsService = new google.maps.DirectionsService();
australia = new google.maps.LatLng(-25.274398, 133.775136);
var mapOptions = {
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP,
center: australia
};
map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
directionsDisplay.setMap(map);
directionsDisplay.setPanel(document.getElementById('directionsPanel'));
google.maps.event.addListener(directionsDisplay, 'directions_changed', function() {
computeTotalDistance(directionsDisplay.getDirections());
});
calcRoute();
}
function calcRoute() {
var request = {
origin: 'Sydney, NSW',
destination: 'Sydney, NSW',
waypoints:[{location: 'Bourke, NSW'}, {location: 'Broken Hill, NSW'}],
travelMode: google.maps.DirectionsTravelMode.DRIVING
};
directionsService.route(request, function(response, status) {
if (status == google.maps.DirectionsStatus.OK) {
directionsDisplay.setDirections(response);
}
});
}
function computeTotalDistance(result) {
var total = 0;
var myroute = result.routes[0];
for (var i = 0; i < myroute.legs.length; i++) {
total += myroute.legs[i].distance.value;
}
total = total / 1000.
document.getElementById('total').innerHTML = total + ' km';
}
google.load('maps', '3.0', {
callback: initialize,
other_params: 'sensor=false'
});
</script>
</head>
<body>
<div id="map_canvas" style="float:left;width:70%; height:100%"></div>
<div id="directionsPanel" style="float:right;width:30%;height 100%">
<p>Total Distance: <span id="total"></span></p>
</div>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Minim : : AudioPlayer : : close</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body>
<center>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="100" valign="top" class="header">
<span class="libName">Minim</span><br>
<a href="index.html">core</a><br/>
<a href="index_ugens.html">ugens</a><br/>
<a href="index_analysis.html">analysis</a>
</td>
<td width="450" class="descList"> </td>
</tr>
<tr>
<td valign="top" class="mainTextName">Name</td>
<td class="methodName">close</td>
</tr>
<tr>
<td valign=top class="mainText">Examples</td>
<td valign=top class="descList"><pre>None available</pre></td>
</tr>
<tr>
<td valign=top class="mainText">Description</td>
<td valign=top class="descList">Release the resources associated with playing this file.
All AudioPlayers returned by Minim's loadFile method
will be closed by Minim when it's stop method is called.
If you are using Processing, Minim's stop method will be
called automatically when your application exits.</td>
</tr>
<tr>
<td valign=top class="mainText">Syntax</td>
<td valign=top class="descList"><pre>close();
</pre></td>
</tr>
<!-- begin parameters -->
<!-- end parameters -->
<!-- begin return -->
<tr>
<td valign=top class="mainText">Returns</td>
<td class="descList">None</td>
</tr>
<!-- end return -->
<tr>
<td valign=top class="mainText">Usage</td>
<td class="descList">Web & Application</td>
</tr>
<tr>
<td valign=top class="mainText">Related</td>
<td class="descList"></td>
</tr>
<tr>
<td></td>
<td class="descList"> </td>
</tr>
</table>
</center>
</body>
</html>
| UTSDataArena/examples | processing/sketchbook/libraries/minim/documentation/audioplayer_method_close.html | HTML | bsd-2-clause | 2,021 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Minim : : AudioPlayer : : close</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body>
<center>
<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="100" valign="top" class="header">
<span class="libName">Minim</span><br>
<a href="index.html">core</a><br/>
<a href="index_ugens.html">ugens</a><br/>
<a href="index_analysis.html">analysis</a>
</td>
<td width="450" class="descList"> </td>
</tr>
<tr>
<td valign="top" class="mainTextName">Name</td>
<td class="methodName">close</td>
</tr>
<tr>
<td valign=top class="mainText">Examples</td>
<td valign=top class="descList"><pre>None available</pre></td>
</tr>
<tr>
<td valign=top class="mainText">Description</td>
<td valign=top class="descList">Release the resources associated with playing this file.
All AudioPlayers returned by Minim's loadFile method
will be closed by Minim when it's stop method is called.
If you are using Processing, Minim's stop method will be
called automatically when your application exits.</td>
</tr>
<tr>
<td valign=top class="mainText">Syntax</td>
<td valign=top class="descList"><pre>close();
</pre></td>
</tr>
<!-- begin parameters -->
<!-- end parameters -->
<!-- begin return -->
<tr>
<td valign=top class="mainText">Returns</td>
<td class="descList">None</td>
</tr>
<!-- end return -->
<tr>
<td valign=top class="mainText">Usage</td>
<td class="descList">Web & Application</td>
</tr>
<tr>
<td valign=top class="mainText">Related</td>
<td class="descList"></td>
</tr>
<tr>
<td></td>
<td class="descList"> </td>
</tr>
</table>
</center>
</body>
</html>
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css">
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script>
<!-- include source files here... -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script src="https://cdn.firebase.com/js/client/1.1.0/firebase.js"></script>
<script src="https://cdn-staging.firebase.com/v0/firebase-token-generator.js"></script>
<script src="../www/js/firefeed.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="spec/helper.js"></script>
<script type="text/javascript" src="spec/initialization.js"></script>
<script type="text/javascript" src="spec/operations.js"></script>
<script type="text/javascript" src="spec/events.js"></script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};
var currentWindowOnload = window.onload;
window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
execJasmine();
};
function execJasmine() {
jasmineEnv.execute();
}
})();
</script>
</head>
<body>
</body>
</html>
| h3xagram/h3xagram.github.io | test/index.html | HTML | mit | 1,895 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-1.3.1/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.3.1/jasmine.css">
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-1.3.1/jasmine-html.js"></script>
<!-- include source files here... -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script src="https://cdn.firebase.com/js/client/1.1.0/firebase.js"></script>
<script src="https://cdn-staging.firebase.com/v0/firebase-token-generator.js"></script>
<script src="../www/js/firefeed.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="spec/helper.js"></script>
<script type="text/javascript" src="spec/initialization.js"></script>
<script type="text/javascript" src="spec/operations.js"></script>
<script type="text/javascript" src="spec/events.js"></script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};
var currentWindowOnload = window.onload;
window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
execJasmine();
};
function execJasmine() {
jasmineEnv.execute();
}
})();
</script>
</head>
<body>
</body>
</html>
|
<!DOCTYPE html>
<!--
Distributed under both the W3C Test Suite License [1] and the W3C
3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
policies and contribution forms [3].
[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
[3] http://www.w3.org/2004/10/27-testcases
-->
<html>
<head>
<title>Shadow DOM Test: A_05_01_01</title>
<link rel="author" title="Sergey G. Grekhov" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#event-retargeting">
<meta name="assert" content="Event Retargeting:test that event.target is retargeted when event crosses shadow boundary and vice versa">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../../../html/resources/common.js"></script>
</head>
<body>
<div id="log"></div>
<script>
var A_05_01_01_T1 = async_test('A_05_01_01_T1');
A_05_01_01_T1.step(function () {
var iframe = document.createElement('iframe');
iframe.src = '../../resources/blank.html';
document.body.appendChild(iframe);
iframe.onload = A_05_01_01_T1.step_func(function () {
try {
var d = iframe.contentDocument;
var div = d.createElement('div');
d.body.appendChild(div);
var s = div.createShadowRoot();
var div2 = d.createElement('div');
s.appendChild(div2);
var inp = d.createElement('input');
inp.setAttribute('type', 'text');
inp.setAttribute('id', 'inpid');
div2.appendChild(inp);
div2.addEventListener('click', A_05_01_01_T1.step_func(function (event) {
assert_equals(event.target.tagName, 'INPUT', 'Information about target of the event that ' +
'doesn\'t cross the shadow boundaries should not be adjusted');
}), false);
var event = d.createEvent('HTMLEvents');
event.initEvent ("click", true, false);
inp.dispatchEvent(event);
} finally {
iframe.parentNode.removeChild(iframe);
}
A_05_01_01_T1.done();
});
});
var A_05_01_01_T2 = async_test('A_05_01_01_T2');
A_05_01_01_T2.step(function () {
var iframe = document.createElement('iframe');
iframe.src = '../../resources/blank.html';
document.body.appendChild(iframe);
iframe.onload = A_05_01_01_T2.step_func(function () {
try {
var d = iframe.contentDocument;
var div = d.createElement('div');
d.body.appendChild(div);
var s = div.createShadowRoot();
var div2 = d.createElement('div');
s.appendChild(div2);
var inp = d.createElement('input');
inp.setAttribute('type', 'text');
inp.setAttribute('id', 'inpid');
div2.appendChild(inp);
div.addEventListener('click', A_05_01_01_T2.step_func(function (event) {
assert_equals(event.target.tagName, 'DIV', 'Information about event target crossing ' +
'the shadow boundaries should be adjusted');
}), false);
var event = d.createEvent('HTMLEvents');
event.initEvent ("click", true, false);
inp.dispatchEvent(event);
} finally {
iframe.parentNode.removeChild(iframe);
}
A_05_01_01_T2.done();
});
});
</script>
</body>
</html>
| Shiroy/servo | tests/wpt/web-platform-tests/shadow-dom/untriaged/events/event-retargeting/test-001.html | HTML | mpl-2.0 | 3,365 | <!DOCTYPE html>
<!--
Distributed under both the W3C Test Suite License [1] and the W3C
3-clause BSD License [2]. To contribute to a W3C Test Suite, see the
policies and contribution forms [3].
[1] http://www.w3.org/Consortium/Legal/2008/04-testsuite-license
[2] http://www.w3.org/Consortium/Legal/2008/03-bsd-license
[3] http://www.w3.org/2004/10/27-testcases
-->
<html>
<head>
<title>Shadow DOM Test: A_05_01_01</title>
<link rel="author" title="Sergey G. Grekhov" href="mailto:[email protected]">
<link rel="help" href="http://www.w3.org/TR/2013/WD-shadow-dom-20130514/#event-retargeting">
<meta name="assert" content="Event Retargeting:test that event.target is retargeted when event crosses shadow boundary and vice versa">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../../../html/resources/common.js"></script>
</head>
<body>
<div id="log"></div>
<script>
var A_05_01_01_T1 = async_test('A_05_01_01_T1');
A_05_01_01_T1.step(function () {
var iframe = document.createElement('iframe');
iframe.src = '../../resources/blank.html';
document.body.appendChild(iframe);
iframe.onload = A_05_01_01_T1.step_func(function () {
try {
var d = iframe.contentDocument;
var div = d.createElement('div');
d.body.appendChild(div);
var s = div.createShadowRoot();
var div2 = d.createElement('div');
s.appendChild(div2);
var inp = d.createElement('input');
inp.setAttribute('type', 'text');
inp.setAttribute('id', 'inpid');
div2.appendChild(inp);
div2.addEventListener('click', A_05_01_01_T1.step_func(function (event) {
assert_equals(event.target.tagName, 'INPUT', 'Information about target of the event that ' +
'doesn\'t cross the shadow boundaries should not be adjusted');
}), false);
var event = d.createEvent('HTMLEvents');
event.initEvent ("click", true, false);
inp.dispatchEvent(event);
} finally {
iframe.parentNode.removeChild(iframe);
}
A_05_01_01_T1.done();
});
});
var A_05_01_01_T2 = async_test('A_05_01_01_T2');
A_05_01_01_T2.step(function () {
var iframe = document.createElement('iframe');
iframe.src = '../../resources/blank.html';
document.body.appendChild(iframe);
iframe.onload = A_05_01_01_T2.step_func(function () {
try {
var d = iframe.contentDocument;
var div = d.createElement('div');
d.body.appendChild(div);
var s = div.createShadowRoot();
var div2 = d.createElement('div');
s.appendChild(div2);
var inp = d.createElement('input');
inp.setAttribute('type', 'text');
inp.setAttribute('id', 'inpid');
div2.appendChild(inp);
div.addEventListener('click', A_05_01_01_T2.step_func(function (event) {
assert_equals(event.target.tagName, 'DIV', 'Information about event target crossing ' +
'the shadow boundaries should be adjusted');
}), false);
var event = d.createEvent('HTMLEvents');
event.initEvent ("click", true, false);
inp.dispatchEvent(event);
} finally {
iframe.parentNode.removeChild(iframe);
}
A_05_01_01_T2.done();
});
});
</script>
</body>
</html>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>This tests that the querySelector and querySelectorAll fast path for IDs is not overzelous.</title>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
</head>
<body>
<script src="resources/id-fastpath-strict.js"></script>
</body>
</html>
| scheib/chromium | third_party/blink/web_tests/fast/dom/SelectorAPI/id-fastpath-strict.html | HTML | bsd-3-clause | 424 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>This tests that the querySelector and querySelectorAll fast path for IDs is not overzelous.</title>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
</head>
<body>
<script src="resources/id-fastpath-strict.js"></script>
</body>
</html>
|
<!DOCTYPE html>
<!--
Copyright (c) 2013 Samsung Electronics Co., Ltd.
Licensed under the Apache License, Version 2.0 (the License);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Authors:
Roman Frolow <[email protected]>
-->
<html>
<head>
<title>SystemInfo_addPropertyValueChangeListener</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="support/unitcommon.js"></script>
<script type="text/javascript" src="support/systeminfo_common.js"></script>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
//==== TEST: SystemInfo_addPropertyValueChangeListener
//==== LABEL Check method addPropertyValueChangeListener of SystemInfo
//==== SPEC Tizen Web API:Tizen Specification:SystemInfo:SystemInfo:addPropertyValueChangeListener M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
//==== TEST_CRITERIA MMINA MAST MR
//==== ONLOAD_DELAY 90
var t = async_test(document.title, {timeout: 90000}),
addPropertyValueChangeListenerSuccess, addPropertyValueChangeListenerError, retValue = null;
setup({timeout: 90000});
t.step(function () {
addPropertyValueChangeListenerError = t.step_func(function (error) {
assert_unreached("addPropertyValueChangeListener() error callback invoked: name:" + error.name + ", msg:" + error.message);
});
addPropertyValueChangeListenerSuccess = t.step_func(function (property) {
assert_own_property(property, "load", "CPU does not own load property.");
assert_type(retValue, "unsigned long", "addPropertyValueChangeListener returns wrong value");
t.done();
});
retValue = tizen.systeminfo.addPropertyValueChangeListener("CPU", addPropertyValueChangeListenerSuccess);
});
</script>
</body>
</html>
| qiuzhong/crosswalk-test-suite | webapi/tct-systeminfo-tizen-tests/systeminfo/SystemInfo_addPropertyValueChangeListener.html | HTML | bsd-3-clause | 2,199 | <!DOCTYPE html>
<!--
Copyright (c) 2013 Samsung Electronics Co., Ltd.
Licensed under the Apache License, Version 2.0 (the License);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Authors:
Roman Frolow <[email protected]>
-->
<html>
<head>
<title>SystemInfo_addPropertyValueChangeListener</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="support/unitcommon.js"></script>
<script type="text/javascript" src="support/systeminfo_common.js"></script>
</head>
<body>
<div id="log"></div>
<script type="text/javascript">
//==== TEST: SystemInfo_addPropertyValueChangeListener
//==== LABEL Check method addPropertyValueChangeListener of SystemInfo
//==== SPEC Tizen Web API:Tizen Specification:SystemInfo:SystemInfo:addPropertyValueChangeListener M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/systeminfo.html
//==== TEST_CRITERIA MMINA MAST MR
//==== ONLOAD_DELAY 90
var t = async_test(document.title, {timeout: 90000}),
addPropertyValueChangeListenerSuccess, addPropertyValueChangeListenerError, retValue = null;
setup({timeout: 90000});
t.step(function () {
addPropertyValueChangeListenerError = t.step_func(function (error) {
assert_unreached("addPropertyValueChangeListener() error callback invoked: name:" + error.name + ", msg:" + error.message);
});
addPropertyValueChangeListenerSuccess = t.step_func(function (property) {
assert_own_property(property, "load", "CPU does not own load property.");
assert_type(retValue, "unsigned long", "addPropertyValueChangeListener returns wrong value");
t.done();
});
retValue = tizen.systeminfo.addPropertyValueChangeListener("CPU", addPropertyValueChangeListenerSuccess);
});
</script>
</body>
</html>
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>[ 593705 ] Use of < comparison symbol confuses Tidy</title>
<script type="text/javascript">
function foo( bar, baz )
{
return ( bar < baz ? true : false );
}
</script>
</head>
<body>
<p>Does the script confuse Tidy?</p>
</body>
</html>
| GerHobbelt/htmltidy | test/input/in_593705.html | HTML | gpl-3.0 | 329 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>[ 593705 ] Use of < comparison symbol confuses Tidy</title>
<script type="text/javascript">
function foo( bar, baz )
{
return ( bar < baz ? true : false );
}
</script>
</head>
<body>
<p>Does the script confuse Tidy?</p>
</body>
</html>
|
<!DOCTYPE html>
<html>
<title>Service Workers: ServiceWorker</title>
<head>
<link rel="help" href="https://w3c.github.io/ServiceWorker/#service-worker-obj">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>
</head>
<body>
<script type=text/plain id="idl_0">
[Constructor()] // no-op constructor
interface ServiceWorker : Worker {
readonly attribute DOMString scope;
readonly attribute DOMString url;
readonly attribute ServiceWorkerState state;
// event
attribute EventHandler onstatechange;
};
enum ServiceWorkerState {
"installing",
"installed",
"activating",
"activated",
"redundant"
};
</pre>
<!--
The `ServiceWorker` interface represents the document-side view of a Service
Worker. This object provides a no-op constructor. Callers should note that only
`ServiceWorker` objects created by the user agent (see
`navigator.serviceWorker.installing`, `navigator.serviceWorker.waiting`,
`navigator.serviceWorker.active` and `navigator.serviceWorker.controller`) will
provide meaningful functionality.
-->
<script type=text/plain id="untested_idls">
interface EventHandler {};
interface Worker {};
</pre>
<script>
var idl_array = new IdlArray();
idl_array.add_untested_idls(document.getElementById("untested_idls").textContent);
idl_array.add_idls(document.getElementById("idl_0").textContent);
idl_array.add_objects({
ServiceWorker: ["throw new Error ('No object defined for the ServiceWorker interface')"],
ServiceWorkerState: ["throw new Error ('No object defined for the ServiceWorkerState enum')"]
});
idl_array.test();
</script>
</body>
</html>
| bbansalWolfPack/servo | tests/wpt/web-platform-tests/service-workers/stub-3.1-service-worker-obj.html | HTML | mpl-2.0 | 1,893 | <!DOCTYPE html>
<html>
<title>Service Workers: ServiceWorker</title>
<head>
<link rel="help" href="https://w3c.github.io/ServiceWorker/#service-worker-obj">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>
</head>
<body>
<script type=text/plain id="idl_0">
[Constructor()] // no-op constructor
interface ServiceWorker : Worker {
readonly attribute DOMString scope;
readonly attribute DOMString url;
readonly attribute ServiceWorkerState state;
// event
attribute EventHandler onstatechange;
};
enum ServiceWorkerState {
"installing",
"installed",
"activating",
"activated",
"redundant"
};
</pre>
<!--
The `ServiceWorker` interface represents the document-side view of a Service
Worker. This object provides a no-op constructor. Callers should note that only
`ServiceWorker` objects created by the user agent (see
`navigator.serviceWorker.installing`, `navigator.serviceWorker.waiting`,
`navigator.serviceWorker.active` and `navigator.serviceWorker.controller`) will
provide meaningful functionality.
-->
<script type=text/plain id="untested_idls">
interface EventHandler {};
interface Worker {};
</pre>
<script>
var idl_array = new IdlArray();
idl_array.add_untested_idls(document.getElementById("untested_idls").textContent);
idl_array.add_idls(document.getElementById("idl_0").textContent);
idl_array.add_objects({
ServiceWorker: ["throw new Error ('No object defined for the ServiceWorker interface')"],
ServiceWorkerState: ["throw new Error ('No object defined for the ServiceWorkerState enum')"]
});
idl_array.test();
</script>
</body>
</html>
|
<html>
<head>
<title>Flare Dendrogram</title>
<script type="text/javascript" src="../../protovis.js"></script>
<script type="text/javascript" src="../flare.js"></script>
</head>
<body>
<script type="text/javascript+protovis">
var vis = new pv.Panel()
.height(100)
.width(1200);
vis.add(pv.Layout.Cluster.Fill)
.nodes(pv.dom(flare).root("flare").nodes())
.group(true)
.orient("top")
.node.add(pv.Bar);
vis.render();
</script>
</body>
</html>
| songjio/j_asset_glpi_kr | plugins/mreporting/lib/protovis/tests/layout/cluster-fill-group.html | HTML | gpl-2.0 | 495 | <html>
<head>
<title>Flare Dendrogram</title>
<script type="text/javascript" src="../../protovis.js"></script>
<script type="text/javascript" src="../flare.js"></script>
</head>
<body>
<script type="text/javascript+protovis">
var vis = new pv.Panel()
.height(100)
.width(1200);
vis.add(pv.Layout.Cluster.Fill)
.nodes(pv.dom(flare).root("flare").nodes())
.group(true)
.orient("top")
.node.add(pv.Bar);
vis.render();
</script>
</body>
</html>
|
<!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Cao, Jun <[email protected]>
-->
<html>
<head>
<title>WebGL Test: webglrenderingcontext_RENDERBUFFER_STENCIL_SIZE_exists</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" />
<meta name="flags" content="" />
<meta name="assert" content="Check if WebGLRenderingContext.RENDERBUFFER_STENCIL_SIZE exists"/>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/webgl.js"></script>
</head>
<body>
<div id="log"></div>
<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<script>
getwebgl();
webgl_property_exists(webgl, 'RENDERBUFFER_STENCIL_SIZE');
</script>
</body>
</html>
| hgl888/web-testing-service | wts/tests/webgl/webglrenderingcontext_RENDERBUFFER_STENCIL_SIZE_exists.html | HTML | bsd-3-clause | 2,382 | <!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Cao, Jun <[email protected]>
-->
<html>
<head>
<title>WebGL Test: webglrenderingcontext_RENDERBUFFER_STENCIL_SIZE_exists</title>
<link rel="author" title="Intel" href="http://www.intel.com" />
<link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" />
<meta name="flags" content="" />
<meta name="assert" content="Check if WebGLRenderingContext.RENDERBUFFER_STENCIL_SIZE exists"/>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/webgl.js"></script>
</head>
<body>
<div id="log"></div>
<canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;">
Your browser does not support the canvas element.
</canvas>
<script>
getwebgl();
webgl_property_exists(webgl, 'RENDERBUFFER_STENCIL_SIZE');
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>Use resetView to reset the header width</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
<link rel="stylesheet" href="../assets/examples.css">
<script src="../assets/jquery.min.js"></script>
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
<script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
<script src="../ga.js"></script>
<style>
.div-table {
/*display: table;*/
border: 1px solid #ccc;
}
.cell-left {
/*display: table-cell;*/
float: left;
width:80%;
}
.cell-right {
/*display: table-cell;*/
float: right;
width:20%;
}
</style>
</head>
<body>
<div class="container">
<h1>Use resetView to reset the header width(<a href="https://github.com/wenzhixin/bootstrap-table/issues/283" target="_blank">#283</a>).</h1>
<p>
<button id="b" type="button" class="btn btn-default">Larger</button>
<button id="s" type="button" class="btn btn-default">Smaller</button>
</p>
<div id="d" class="div-table">
<div class="cell-left">
<table id="table" data-height="500"></table>
</div>
<div class="cell-right">
RRR
</div>
<div class="clearfix"></div>
</div>
</div>
<script>
var $table = $('#table');
$(function () {
buildTable($('#table'), 10, 50);
var $d = $('#d');
var width = $d.width();
$('#b').click(function(){
width = width + 100;
$d.css('width', width + 'px');
$('#table').bootstrapTable('resetView');
});
$('#s').click(function(){
width = width - 100;
$d.css('width', width + 'px');
$('#table').bootstrapTable('resetView');
});
});
function buildTable($el, cells, rows) {
var i, j, row,
columns = [],
data = [];
for (i = 0; i < cells; i++) {
columns.push({
field: 'field' + i,
title: 'Cell' + i
});
}
for (i = 0; i < rows; i++) {
row = {};
for (j = 0; j < cells; j++) {
row['field' + j] = 'Row-' + i + '-' + j;
}
data.push(row);
}
$el.bootstrapTable('destroy').bootstrapTable({
columns: columns,
data: data
});
}
</script>
</body>
</html> | weidongwanga/framework | static/bootstrap/issues/283.html | HTML | mit | 2,773 | <!DOCTYPE html>
<html>
<head>
<title>Use resetView to reset the header width</title>
<meta charset="utf-8">
<link rel="stylesheet" href="../assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/bootstrap-table/src/bootstrap-table.css">
<link rel="stylesheet" href="../assets/examples.css">
<script src="../assets/jquery.min.js"></script>
<script src="../assets/bootstrap/js/bootstrap.min.js"></script>
<script src="../assets/bootstrap-table/src/bootstrap-table.js"></script>
<script src="../ga.js"></script>
<style>
.div-table {
/*display: table;*/
border: 1px solid #ccc;
}
.cell-left {
/*display: table-cell;*/
float: left;
width:80%;
}
.cell-right {
/*display: table-cell;*/
float: right;
width:20%;
}
</style>
</head>
<body>
<div class="container">
<h1>Use resetView to reset the header width(<a href="https://github.com/wenzhixin/bootstrap-table/issues/283" target="_blank">#283</a>).</h1>
<p>
<button id="b" type="button" class="btn btn-default">Larger</button>
<button id="s" type="button" class="btn btn-default">Smaller</button>
</p>
<div id="d" class="div-table">
<div class="cell-left">
<table id="table" data-height="500"></table>
</div>
<div class="cell-right">
RRR
</div>
<div class="clearfix"></div>
</div>
</div>
<script>
var $table = $('#table');
$(function () {
buildTable($('#table'), 10, 50);
var $d = $('#d');
var width = $d.width();
$('#b').click(function(){
width = width + 100;
$d.css('width', width + 'px');
$('#table').bootstrapTable('resetView');
});
$('#s').click(function(){
width = width - 100;
$d.css('width', width + 'px');
$('#table').bootstrapTable('resetView');
});
});
function buildTable($el, cells, rows) {
var i, j, row,
columns = [],
data = [];
for (i = 0; i < cells; i++) {
columns.push({
field: 'field' + i,
title: 'Cell' + i
});
}
for (i = 0; i < rows; i++) {
row = {};
for (j = 0; j < cells; j++) {
row['field' + j] = 'Row-' + i + '-' + j;
}
data.push(row);
}
$el.bootstrapTable('destroy').bootstrapTable({
columns: columns,
data: data
});
}
</script>
</body>
</html> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>body</title>
<style type="text/css" media="screen">
body { margin: 1px; padding: 5px; }
#marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; }
</style>
<script src="../include_js.php"></script>
<script type="text/javascript" charset="utf-8">
jQuery(function($) {
$('body').click(function() {
$('#marker').css( $(this).offset() );
return false;
});
});
</script>
</head>
<body>
<div id="marker"></div>
</body>
</html>
| daejunpark/jsaf | tests/clone_detector_tests/jquery/test/data/offset/body.html | HTML | bsd-3-clause | 725 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>body</title>
<style type="text/css" media="screen">
body { margin: 1px; padding: 5px; }
#marker { position: absolute; border: 2px solid #000; width: 50px; height: 50px; background: #ccc; }
</style>
<script src="../include_js.php"></script>
<script type="text/javascript" charset="utf-8">
jQuery(function($) {
$('body').click(function() {
$('#marker').css( $(this).offset() );
return false;
});
});
</script>
</head>
<body>
<div id="marker"></div>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<title>dom_test</title>
<script src="test_bootstrap.js"></script>
<script type="text/javascript">
goog.require('bot.dom.core');
goog.require('bot.userAgent');
goog.require('goog.testing.jsunit');
goog.require('goog.userAgent');
</script>
<body>
<script type="text/javascript">
function testStandardizeStyleAttributeReturnsIdenticalStringWithLowercasedPropertyNames() {
var toTest = [
{input: "Left: 0px; Text-align: center;",
expected: "left: 0px; text-align: center;"},
{input: "background-image: url('testdata/kitten3.jpg');",
expected: "background-image: url('testdata/kitten3.jpg');"},
{input: "-ms-filter: 'progid:DXImageTransform(strength=50)," +
" progid:DXImageTransform.(mirror=1)';",
expected: "-ms-filter: 'progid:DXImageTransform(strength=50)," +
" progid:DXImageTransform.(mirror=1)';"}
];
for (var i = 0; i < toTest.length; i++) {
assertObjectEquals(toTest[i].expected,
bot.dom.core.standardizeStyleAttribute_(toTest[i].input));
}
}
function testStandardizeStyleAttributeAppendsAMissingSemicolonToTheEndOfTheString() {
assertEquals("background-color:green; width:100px; height:50px;",
bot.dom.core.standardizeStyleAttribute_(
"background-color:green; width:100px; height:50px")
);
}
function testStandardizeStyleAttributeShouldWorkWithQuotesAndParens() {
if (goog.userAgent.IE && !bot.userAgent.isProductVersion(7)) {
// IE6 cannot properly parse the embedded semicolons in the strings below.
return;
}
var toTest = [
{input: "key:value", expected: "key:value;"},
{input: "key:value;", expected: "key:value;"},
{input: "key1:value1; key2: value2",
expected: "key1:value1; key2: value2;"},
{input: "key1:value1; key2: value2(semi;colons;in;here;)",
expected: "key1:value1; key2: value2(semi;colons;in;here;);"},
{input: "key1:value1; key2: 'string; with; semicolons; and more';",
expected: "key1:value1; key2: 'string; with; semicolons; and more';"},
{input: "key1:value1; key2: 'string; with; semicolons; and more'",
expected: "key1:value1; key2: 'string; with; semicolons; and more';"},
{input: "key1:value1;" +
" key2: url('something;with;semicolons;?oh=yeah&x=y');" +
" key3:'string;with;semicolons;'",
expected: "key1:value1;" +
" key2: url('something;with;semicolons;?oh=yeah&x=y');" +
" key3:'string;with;semicolons;';"},
{input: "key1:\"double;quoted;string!\";" +
" key2:'single;quoted;string;';" +
" key3:it(is;in;parens);",
expected: "key1:\"double;quoted;string!\";" +
" key2:'single;quoted;string;'; key3:it(is;in;parens);"}
];
for (var i = 0; i < toTest.length; i++) {
assertObjectEquals(toTest[i].expected,
bot.dom.core.standardizeStyleAttribute_(toTest[i].input));
}
}
</script>
</body>
</html>
| SeleniumHQ/htmlunit-driver | src/test/resources/javascript/atoms/test/dom_test.html | HTML | apache-2.0 | 3,025 | <!DOCTYPE html>
<html>
<head>
<title>dom_test</title>
<script src="test_bootstrap.js"></script>
<script type="text/javascript">
goog.require('bot.dom.core');
goog.require('bot.userAgent');
goog.require('goog.testing.jsunit');
goog.require('goog.userAgent');
</script>
<body>
<script type="text/javascript">
function testStandardizeStyleAttributeReturnsIdenticalStringWithLowercasedPropertyNames() {
var toTest = [
{input: "Left: 0px; Text-align: center;",
expected: "left: 0px; text-align: center;"},
{input: "background-image: url('testdata/kitten3.jpg');",
expected: "background-image: url('testdata/kitten3.jpg');"},
{input: "-ms-filter: 'progid:DXImageTransform(strength=50)," +
" progid:DXImageTransform.(mirror=1)';",
expected: "-ms-filter: 'progid:DXImageTransform(strength=50)," +
" progid:DXImageTransform.(mirror=1)';"}
];
for (var i = 0; i < toTest.length; i++) {
assertObjectEquals(toTest[i].expected,
bot.dom.core.standardizeStyleAttribute_(toTest[i].input));
}
}
function testStandardizeStyleAttributeAppendsAMissingSemicolonToTheEndOfTheString() {
assertEquals("background-color:green; width:100px; height:50px;",
bot.dom.core.standardizeStyleAttribute_(
"background-color:green; width:100px; height:50px")
);
}
function testStandardizeStyleAttributeShouldWorkWithQuotesAndParens() {
if (goog.userAgent.IE && !bot.userAgent.isProductVersion(7)) {
// IE6 cannot properly parse the embedded semicolons in the strings below.
return;
}
var toTest = [
{input: "key:value", expected: "key:value;"},
{input: "key:value;", expected: "key:value;"},
{input: "key1:value1; key2: value2",
expected: "key1:value1; key2: value2;"},
{input: "key1:value1; key2: value2(semi;colons;in;here;)",
expected: "key1:value1; key2: value2(semi;colons;in;here;);"},
{input: "key1:value1; key2: 'string; with; semicolons; and more';",
expected: "key1:value1; key2: 'string; with; semicolons; and more';"},
{input: "key1:value1; key2: 'string; with; semicolons; and more'",
expected: "key1:value1; key2: 'string; with; semicolons; and more';"},
{input: "key1:value1;" +
" key2: url('something;with;semicolons;?oh=yeah&x=y');" +
" key3:'string;with;semicolons;'",
expected: "key1:value1;" +
" key2: url('something;with;semicolons;?oh=yeah&x=y');" +
" key3:'string;with;semicolons;';"},
{input: "key1:\"double;quoted;string!\";" +
" key2:'single;quoted;string;';" +
" key3:it(is;in;parens);",
expected: "key1:\"double;quoted;string!\";" +
" key2:'single;quoted;string;'; key3:it(is;in;parens);"}
];
for (var i = 0; i < toTest.length; i++) {
assertObjectEquals(toTest[i].expected,
bot.dom.core.standardizeStyleAttribute_(toTest[i].input));
}
}
</script>
</body>
</html>
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Canvas Test</title>
<script type="text/javascript" src="../doc/asset/js/esl/esl.js"></script>
<style>
html, body, #main {
margin: 0;
}
</style>
</head>
<body>
<div id="main"></div>
<script type="text/javascript">
require.config({
packages: [
{
name: 'zrender',
location: '../src',
main: 'zrender'
}
]
});
require(
[
"zrender",
"zrender/graphic/shape/Rectangle"
],
function(zrender, RectangleShape) {
for (var i = 0; i < 200; i++) {
var dom = document.createElement('div');
dom.style.width = '700px';
dom.style.height = '400px';
document.getElementById('main').appendChild(dom);
var zr = zrender.init(dom, {
// renderer: 'svg'
});
for (var j = 0; j < 50; j++) {
zr.addElement(new RectangleShape({
shape: {
x: j * 14,
width: 10,
height: Math.round(Math.random() * 300)
},
style: {
// fill: '#02f',
fill: '#f20'
}
}));
}
}
}
)
</script>
</body>
</html> | lkiarest/zrender | test/memory.html | HTML | bsd-3-clause | 1,585 | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Canvas Test</title>
<script type="text/javascript" src="../doc/asset/js/esl/esl.js"></script>
<style>
html, body, #main {
margin: 0;
}
</style>
</head>
<body>
<div id="main"></div>
<script type="text/javascript">
require.config({
packages: [
{
name: 'zrender',
location: '../src',
main: 'zrender'
}
]
});
require(
[
"zrender",
"zrender/graphic/shape/Rectangle"
],
function(zrender, RectangleShape) {
for (var i = 0; i < 200; i++) {
var dom = document.createElement('div');
dom.style.width = '700px';
dom.style.height = '400px';
document.getElementById('main').appendChild(dom);
var zr = zrender.init(dom, {
// renderer: 'svg'
});
for (var j = 0; j < 50; j++) {
zr.addElement(new RectangleShape({
shape: {
x: j * 14,
width: 10,
height: Math.round(Math.random() * 300)
},
style: {
// fill: '#02f',
fill: '#f20'
}
}));
}
}
}
)
</script>
</body>
</html> |
<!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">
<link rel="stylesheet" href="../../../../../style.css" type="text/css" media="screen">
<link rel="stylesheet" href="../../../../../print.css" type="text/css" media="print">
<title>com.yahoo.astra.fl.utils Summary</title>
</head>
<body>
<script type="text/javascript" language="javascript" src="../../../../../asdoc.js"></script><script type="text/javascript" language="javascript" src="../../../../../cookies.js"></script><script type="text/javascript" language="javascript">
<!--
asdocTitle = 'com.yahoo.astra.fl.utils Package - YUI AS Component Documentation';
var baseRef = '../../../../../';
window.onload = configPage;
--></script>
<table style="display:none" id="titleTable" cellspacing="0" cellpadding="0" class="titleTable">
<tr>
<td align="left" class="titleTableTitle">YUI AS Component Documentation</td><td align="right" class="titleTableTopNav"><a onclick="loadClassListFrame('../../../../../all-classes.html')" href="../../../../../package-summary.html">All Packages</a> | <a onclick="loadClassListFrame('../../../../../all-classes.html')" href="../../../../../class-summary.html">All Classes</a> | <a onclick="loadClassListFrame('../../../../../index-list.html')" href="../../../../../all-index-A.html">Index</a> | <a href="../../../../../index.html?com/yahoo/astra/fl/utils/package-detail.html&com/yahoo/astra/fl/utils/class-list.html" id="framesLink1">Frames</a><a onclick="parent.location=document.location" href="" style="display:none" id="noFramesLink1">No Frames</a></td><td rowspan="3" align="right" class="titleTableLogo"><img alt="Adobe Logo" title="Adobe Logo" class="logoImage" src="../../../../../images/logo.jpg"></td>
</tr>
<tr class="titleTableRow2">
<td align="left" id="subTitle" class="titleTableSubTitle">Package com.yahoo.astra.fl.utils</td><td align="right" id="subNav" class="titleTableSubNav"><a href="package-detail.html#classSummary">Classes</a></td>
</tr>
<tr class="titleTableRow3">
<td colspan="2"> </td>
</tr>
</table>
<script type="text/javascript" language="javascript">
<!--
if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("Package com.yahoo.astra.fl.utils"); titleBar_setSubNav(false,false,false,false,false,false,false,false,false,false,false,false,true,false);}
--></script>
<div class="MainContent">
<br>
<br>
<hr>
<a name="classSummary"></a>
<div class="summaryTableTitle">Classes</div>
<table class="summaryTable" cellspacing="0" cellpadding="3">
<tr>
<th> </th><th width="30%">Class</th><th width="70%">Description</th>
</tr>
<tr class="prow1">
<td class="summaryTablePaddingCol"> </td><td class="summaryTableSecondCol"><a href="UIComponentUtil.html">UIComponentUtil</a></td><td class="summaryTableLastCol">
Utility functions for use with UIComponents.</td>
</tr>
</table>
<p></p>
<div>
<p></p>
<center class="copyright">
</center>
</div>
</div>
</body>
</html>
<!-- -->
| recap/weevilscout | yui/as-docs/com/yahoo/astra/fl/utils/package-detail.html | HTML | apache-2.0 | 3,126 | <!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">
<link rel="stylesheet" href="../../../../../style.css" type="text/css" media="screen">
<link rel="stylesheet" href="../../../../../print.css" type="text/css" media="print">
<title>com.yahoo.astra.fl.utils Summary</title>
</head>
<body>
<script type="text/javascript" language="javascript" src="../../../../../asdoc.js"></script><script type="text/javascript" language="javascript" src="../../../../../cookies.js"></script><script type="text/javascript" language="javascript">
<!--
asdocTitle = 'com.yahoo.astra.fl.utils Package - YUI AS Component Documentation';
var baseRef = '../../../../../';
window.onload = configPage;
--></script>
<table style="display:none" id="titleTable" cellspacing="0" cellpadding="0" class="titleTable">
<tr>
<td align="left" class="titleTableTitle">YUI AS Component Documentation</td><td align="right" class="titleTableTopNav"><a onclick="loadClassListFrame('../../../../../all-classes.html')" href="../../../../../package-summary.html">All Packages</a> | <a onclick="loadClassListFrame('../../../../../all-classes.html')" href="../../../../../class-summary.html">All Classes</a> | <a onclick="loadClassListFrame('../../../../../index-list.html')" href="../../../../../all-index-A.html">Index</a> | <a href="../../../../../index.html?com/yahoo/astra/fl/utils/package-detail.html&com/yahoo/astra/fl/utils/class-list.html" id="framesLink1">Frames</a><a onclick="parent.location=document.location" href="" style="display:none" id="noFramesLink1">No Frames</a></td><td rowspan="3" align="right" class="titleTableLogo"><img alt="Adobe Logo" title="Adobe Logo" class="logoImage" src="../../../../../images/logo.jpg"></td>
</tr>
<tr class="titleTableRow2">
<td align="left" id="subTitle" class="titleTableSubTitle">Package com.yahoo.astra.fl.utils</td><td align="right" id="subNav" class="titleTableSubNav"><a href="package-detail.html#classSummary">Classes</a></td>
</tr>
<tr class="titleTableRow3">
<td colspan="2"> </td>
</tr>
</table>
<script type="text/javascript" language="javascript">
<!--
if (!isEclipse() || window.name != ECLIPSE_FRAME_NAME) {titleBar_setSubTitle("Package com.yahoo.astra.fl.utils"); titleBar_setSubNav(false,false,false,false,false,false,false,false,false,false,false,false,true,false);}
--></script>
<div class="MainContent">
<br>
<br>
<hr>
<a name="classSummary"></a>
<div class="summaryTableTitle">Classes</div>
<table class="summaryTable" cellspacing="0" cellpadding="3">
<tr>
<th> </th><th width="30%">Class</th><th width="70%">Description</th>
</tr>
<tr class="prow1">
<td class="summaryTablePaddingCol"> </td><td class="summaryTableSecondCol"><a href="UIComponentUtil.html">UIComponentUtil</a></td><td class="summaryTableLastCol">
Utility functions for use with UIComponents.</td>
</tr>
</table>
<p></p>
<div>
<p></p>
<center class="copyright">
</center>
</div>
</div>
</body>
</html>
<!-- -->
|
<!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Liu, Jinfeng <[email protected]>
-->
<html>
<head>
<title>CSS3 Backgrounds Test: CSS3BG_border-image-repeat_repeat-x_url_png_auto</title>
<link rel="author" title="Intel" href="http://www.intel.com/" />
<link rel="help" href="http://www.w3.org/TR/2012/CR-css3-background-20120724/#border-image-repeat" />
<meta name="flags" content="" />
<meta name="assert" content="Check if 'border-image-repeat:repeat-x;border-image-source:url(support/swatch-orange.png);border-image-width:auto' on test div" />
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="support/support.js"></script>
<style>
#test{
height: 200px;
width: 300px;
padding: 5px;
border: 5px solid black;
margin: 5px;
background: blue;
}
</style>
</head>
<body>
<div id="log"></div>
<div id="test"></div>
<script type="text/javascript">
var div = document.querySelector("#test");
var t = async_test(document.title, {timeout: 500});
t.step(function () {
div.style[headProp("border-image-repeat")] = "repeat-x";
div.style[headProp("border-image-source")] = "url(support/swatch-orange.png)";
div.style[headProp("border-image-width")] = "auto";
var propvalue = GetCurrentStyle("border-image-repeat");
assert_equals(propvalue, "stretch", "The element border-image-repeat should ");
var borderImageWidth = GetCurrentStyle("border-image-width");
assert_equals(borderImageWidth, "auto", "The element border-image-width should ");
var borderImageSource = GetCurrentStyle("border-image-source");
prop = borderImageSource.indexOf("support/swatch-orange.png") != -1;
assert_true(prop, "The element border-image-source should be url(support/swatch-orange.png)");
});
t.done();
</script>
</body>
</html>
| hgl888/web-testing-service | wts/tests/backgrounds/CSS3BG_border-image-repeat_repeat-x_url_png_auto.html | HTML | bsd-3-clause | 3,571 | <!DOCTYPE html>
<!--
Copyright (c) 2012 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Liu, Jinfeng <[email protected]>
-->
<html>
<head>
<title>CSS3 Backgrounds Test: CSS3BG_border-image-repeat_repeat-x_url_png_auto</title>
<link rel="author" title="Intel" href="http://www.intel.com/" />
<link rel="help" href="http://www.w3.org/TR/2012/CR-css3-background-20120724/#border-image-repeat" />
<meta name="flags" content="" />
<meta name="assert" content="Check if 'border-image-repeat:repeat-x;border-image-source:url(support/swatch-orange.png);border-image-width:auto' on test div" />
<script type="text/javascript" src="../resources/testharness.js"></script>
<script type="text/javascript" src="../resources/testharnessreport.js"></script>
<script type="text/javascript" src="support/support.js"></script>
<style>
#test{
height: 200px;
width: 300px;
padding: 5px;
border: 5px solid black;
margin: 5px;
background: blue;
}
</style>
</head>
<body>
<div id="log"></div>
<div id="test"></div>
<script type="text/javascript">
var div = document.querySelector("#test");
var t = async_test(document.title, {timeout: 500});
t.step(function () {
div.style[headProp("border-image-repeat")] = "repeat-x";
div.style[headProp("border-image-source")] = "url(support/swatch-orange.png)";
div.style[headProp("border-image-width")] = "auto";
var propvalue = GetCurrentStyle("border-image-repeat");
assert_equals(propvalue, "stretch", "The element border-image-repeat should ");
var borderImageWidth = GetCurrentStyle("border-image-width");
assert_equals(borderImageWidth, "auto", "The element border-image-width should ");
var borderImageSource = GetCurrentStyle("border-image-source");
prop = borderImageSource.indexOf("support/swatch-orange.png") != -1;
assert_true(prop, "The element border-image-source should be url(support/swatch-orange.png)");
});
t.done();
</script>
</body>
</html>
|
<!DOCTYPE html>
<!--
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>Append To Page Element Using JavaScript Code — CKEditor Sample</title>
<script src="../../ckeditor.js"></script>
<link rel="stylesheet" href="sample.css">
</head>
<body>
<h1 class="samples">
<a href="index.html">CKEditor Samples</a> » Append To Page Element Using JavaScript Code
</h1>
<div class="warning deprecated">
This sample is not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>.
</div>
<div id="section1">
<div class="description">
<p>
The <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR-method-appendTo">CKEDITOR.appendTo()</a></code> method serves to to place editors inside existing DOM elements. Unlike <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR-method-replace">CKEDITOR.replace()</a></code>,
a target container to be replaced is no longer necessary. A new editor
instance is inserted directly wherever it is desired.
</p>
<pre class="samples">CKEDITOR.appendTo( '<em>container_id</em>',
{ /* Configuration options to be used. */ }
'Editor content to be used.'
);</pre>
</div>
<script>
// This call can be placed at any point after the
// DOM element to append CKEditor to or inside the <head><script>
// in a window.onload event handler.
// Append a CKEditor instance using the default configuration and the
// provided content to the <div> element of ID "section1".
CKEDITOR.appendTo( 'section1',
null,
'<p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>'
);
</script>
</div>
<br>
<div id="footer">
<hr>
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
| x-meta/xworker | xworker_explorer/xworker/webroot/fckeditor/4_1/samples/old/appendto.html | HTML | apache-2.0 | 2,259 | <!DOCTYPE html>
<!--
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
-->
<html>
<head>
<meta charset="utf-8">
<title>Append To Page Element Using JavaScript Code — CKEditor Sample</title>
<script src="../../ckeditor.js"></script>
<link rel="stylesheet" href="sample.css">
</head>
<body>
<h1 class="samples">
<a href="index.html">CKEditor Samples</a> » Append To Page Element Using JavaScript Code
</h1>
<div class="warning deprecated">
This sample is not maintained anymore. Check out the <a href="http://sdk.ckeditor.com/">brand new samples in CKEditor SDK</a>.
</div>
<div id="section1">
<div class="description">
<p>
The <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR-method-appendTo">CKEDITOR.appendTo()</a></code> method serves to to place editors inside existing DOM elements. Unlike <code><a class="samples" href="http://docs.ckeditor.com/#!/api/CKEDITOR-method-replace">CKEDITOR.replace()</a></code>,
a target container to be replaced is no longer necessary. A new editor
instance is inserted directly wherever it is desired.
</p>
<pre class="samples">CKEDITOR.appendTo( '<em>container_id</em>',
{ /* Configuration options to be used. */ }
'Editor content to be used.'
);</pre>
</div>
<script>
// This call can be placed at any point after the
// DOM element to append CKEditor to or inside the <head><script>
// in a window.onload event handler.
// Append a CKEditor instance using the default configuration and the
// provided content to the <div> element of ID "section1".
CKEDITOR.appendTo( 'section1',
null,
'<p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p>'
);
</script>
</div>
<br>
<div id="footer">
<hr>
<p>
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
</p>
<p id="copy">
Copyright © 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
Knabben. All rights reserved.
</p>
</div>
</body>
</html>
|