path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
demo/src/components/index/header/header.css | acorn421/react-html5video-subs | .header {
position: relative;
color: #fff;
width: 100%;
height: 50%;
background: #45484d;
background: -moz-linear-gradient(top, #45484d 0%, #000000 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
background: -webkit-linear-gradient(top, #45484d 0%,#000000 100%);
background: -ms-linear-gradient(top, #45484d 0%,#000000 100%);
background: linear-gradient(to bottom, #45484d 0%,#000000 100%);
-webkit-font-smoothing: antialiased;
border-bottom: 1px solid #000;
}
.header__github-link {
position: fixed;
top: 0;
right: 10%;
padding: 10px 20px;
color: #fff;
font-size: 13px;
background-color: #2492A8;
text-decoration: none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
z-index: 1;
}
.header__github-link .icon {
margin-right: 5px;
} |
examples/webgl_instancing_modified.html | aardgoose/three.js | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - instancing - modified</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
</head>
<body>
<div id="info">
<a href="https://threejs.org" target="_blank" rel="noopener">three.js</a> - webgl instancing - modified
</div>
<script type="module">
import * as THREE from '../build/three.module.js';
import Stats from './jsm/libs/stats.module.js';
var camera, scene, renderer, stats;
var mesh;
var dummy = new THREE.Object3D();
var amount = 8;
var count = Math.pow( amount, 3 );
init();
animate();
function init() {
renderer = new THREE.WebGLRenderer( { antialias: false } ); // false improves the frame rate
renderer.setPixelRatio( window.devicePixelRatio );
renderer.setSize( window.innerWidth, window.innerHeight );
document.body.appendChild( renderer.domElement );
renderer.outputEncoding = THREE.sRGBEncoding;
scene = new THREE.Scene();
camera = new THREE.PerspectiveCamera( 40, window.innerWidth / window.innerHeight, 1, 100 );
camera.position.set( 0, 0, 20 );
new THREE.BufferGeometryLoader().load( 'models/json/suzanne_buffergeometry.json', function ( geometry ) {
var instanceColors = [];
for ( var i = 0; i < count; i ++ ) {
instanceColors.push( 0.5 + 0.5 * Math.random() );
instanceColors.push( 0.5 + 0.5 * Math.random() );
instanceColors.push( 0.5 + 0.5 * Math.random() );
}
geometry.setAttribute( 'instanceColor', new THREE.InstancedBufferAttribute( new Float32Array( instanceColors ), 3 ) );
geometry.computeVertexNormals();
geometry.scale( 0.5, 0.5, 0.5 );
//console.log( geometry );
//
new THREE.TextureLoader().load( 'textures/matcaps/matcap-porcelain-white.jpg', function ( texture ) {
texture.encoding = THREE.sRGBEncoding;
var material = new THREE.MeshMatcapMaterial( { color: 0xaaaaff, matcap: texture } );
var colorParsChunk = [
'attribute vec3 instanceColor;',
'varying vec3 vInstanceColor;',
'#include <common>'
].join( '\n' );
var instanceColorChunk = [
'#include <begin_vertex>',
'\tvInstanceColor = instanceColor;'
].join( '\n' );
var fragmentParsChunk = [
'varying vec3 vInstanceColor;',
'#include <common>'
].join( '\n' );
var colorChunk = [
'vec4 diffuseColor = vec4( diffuse * vInstanceColor, opacity );'
].join( '\n' );
material.onBeforeCompile = function ( shader ) {
shader.vertexShader = shader.vertexShader
.replace( '#include <common>', colorParsChunk )
.replace( '#include <begin_vertex>', instanceColorChunk );
shader.fragmentShader = shader.fragmentShader
.replace( '#include <common>', fragmentParsChunk )
.replace( 'vec4 diffuseColor = vec4( diffuse, opacity );', colorChunk );
//console.log( shader.uniforms );
//console.log( shader.vertexShader );
//console.log( shader.fragmentShader );
};
mesh = new THREE.InstancedMesh( geometry, material, count );
mesh.instanceMatrix.setUsage( THREE.DynamicDrawUsage ); // will be updated every frame
scene.add( mesh );
} );
} );
//
stats = new Stats();
document.body.appendChild( stats.dom );
//
window.addEventListener( 'resize', onWindowResize, false );
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
}
//
function animate() {
requestAnimationFrame( animate );
render();
stats.update();
}
function render() {
if ( mesh ) {
var time = Date.now() * 0.001;
mesh.rotation.x = Math.sin( time / 4 );
mesh.rotation.y = Math.sin( time / 2 );
var i = 0;
var offset = ( amount - 1 ) / 2;
for ( var x = 0; x < amount; x ++ ) {
for ( var y = 0; y < amount; y ++ ) {
for ( var z = 0; z < amount; z ++ ) {
dummy.position.set( offset - x, offset - y, offset - z ).multiplyScalar( 2 );
dummy.rotation.y = ( Math.sin( x / 4 + time ) + Math.sin( y / 4 + time ) + Math.sin( z / 4 + time ) );
dummy.rotation.z = dummy.rotation.y * 2;
dummy.updateMatrix();
mesh.setMatrixAt( i ++, dummy.matrix );
}
}
}
mesh.instanceMatrix.needsUpdate = true;
}
renderer.render( scene, camera );
}
</script>
</body>
</html>
|
resources/css/styles.css | RgtArRr/AtomPlayer | .playButton {
width: 40px;
height: 40px;
border: 1px solid;
border-radius: 35px;
}
.circle_button {
position: relative;
left: 5px;
bottom: 3px;
font-size: 20px !important;
}
.table-wrapper {
display: flex;
flex-direction: column;
}
.table-wrapper table {
width: 100%;
}
table + table {
display: block;
flex: 1;
overflow-y: auto;
}
table + table tbody {
width: 100%;
display: table;
}
td {
white-space: nowrap;
overflow: hidden
}
.fill {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
.table_header {
position: sticky;
top: 0px;
left: 0px;
}
.currentSong {
background: #4B95E5 !important;
color: #EDF4FC;
}
.table-striped tr:active:nth-child(even), tr:active {
background-color: #C2D1E0;
color: #222;
}
.player {
font-size: 24px;
margin: 0px 20px 0px 20px;
height: 15px;
}
.btn-active {
color: #fff;
border: 1px solid transparent;
background-color: #6d6c6d;
background-image: none
}
.btn-active .icon {
color: #fff;
}
#progress_song {
font-size: 12px;
height: 5px;
padding-left: 0px;
}
#progress_song li {
display: inline;
list-style-type: none;
padding-right: 5px;
padding-left: 5px;
}
.volumen_range {
padding: 5px;
border: 0px !important;
background: transparent;
}
.song_title {
padding-left: 10px;
font-size: 18px;
}
.menu {
width: 171px;
backdrop-filter: blur(4px);
background: transparent;
color: #fff;
position: absolute;
z-index: 999999;
border-radius: 0px 8px 8px 8px;
box-shadow: 0 0 5px black;
}
.menu ul {
list-style: none;
padding: 0;
margin: 0;
}
.menu ul a {
text-decoration: none;
}
ul > li:first-child {
border-radius: 8px 8px 0px 0px;
}
ul > li:last-child {
border-radius: 0px 0px 8px 8px;
}
.menu ul li {
padding: 3%;
padding-left: 20px;
color: #111;
}
.menu ul li:hover {
background-color: #8e909266;
}
.ytdownloadercontainer {
margin: 0 auto;
max-width: 330px;
margin-top: 100px;
text-align: center;
}
.progress {
padding-left: 90px;
}
.back {
font-size: 13px;
cursor: pointer;
padding-left: 8px;
padding-top: 5px;
position: relative;
top: 115px;
}
#toggleLyrics {
position: absolute;
right: 12px;
bottom: 12px;
}
.song_selected {
background-color: #C2D1E0 !important;
color: #222;
}
.selected {
border: 1px solid white;
border-style: dashed;
}
.text-lyrics {
overflow-x: hidden;
overflow-y: auto;
color: black;
text-align: center
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
img {
-webkit-user-drag: none;
}
.tool {
padding: 0px 0px 0px 5px;
}
/*Styling input range*/
input[type=range] {
width: 100px;
-webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 6px;
background: #444;
border: none;
border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
border: 1px solid black;
background: #ccc;
margin-top: -5px;
}
input[type=range]:focus {
outline: none;
}
.album {
float: left;
}
.album > img {
height: 74px;
width: 74px;
padding: 5px 5px 5px 0px;
border-radius: 10px;
}
@media screen and (max-height: 100px) {
.toolbar-header {
display: none;
}
.window-content {
display: none;
}
input[type=range] {
-webkit-appearance: none;
width: 90px;
}
input[type=range]::-webkit-slider-runnable-track {
height: 5px;
background: #444;
border: none;
border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 16px;
width: 16px;
border-radius: 50%;
border: 1px solid black;
background: #ccc;
margin-top: -5px;
}
input[type=range]:focus {
outline: none;
}
.maximize {
display: block !important;
position: absolute;
bottom: 0;
right: 0px;
}
progress {
width: 80% !important;
}
.song_title {
font-size: 11px;
}
#toggleLyrics {
display: none;
}
.album {
display: none;
}
}
|
test/runner.html | kevinconway/Deferred.js | <html>
<head>
<title>Deferred.js Tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="./lib/mocha.css" />
<script>
if(typeof String.prototype.trim !== 'function') {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, '');
}
}
</script>
<script src="./lib/mocha.js"></script>
<script>
mocha.setup({
ui: 'bdd',
globals: [],
timeout: 1500
})
</script>
<script>
function assert(expr, msg) {
if (!expr) throw new Error(msg || 'failed');
}
</script>
<script src="../build/deferred.browser.js"></script>
<script src="../build/deferred.tests.browser.min.js"></script>
<script>
onload = function(){
var runner = mocha.run();
};
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>
|
jquery.safe-events.qUnitTests.html | inliketim/jquery-safe-events | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit Tests for jquery-safe-events</title>
<link rel="stylesheet" href="tests/qunit-1.18.0.css">
</head>
<body>
<!-- test framework files-->
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="tests/qunit-1.18.0.js"></script>
<script src="tests/sinon-1.14.1.js"></script>
<script src="tests/sinon-qunit-1.0.0.js"></script>
<!-- dependencies for jquery.safe-events: jQuery and SafeProxy -->
<script src="tests/jquery-1.11.3.min.js"></script>
<script src="SafeProxy.js"></script>
<script src="jquery.safe-events.js"></script>
<script src="tests/jquery.safe-events.qUnitTests.js"></script>
</body>
</html> |
mockups/index.html | bm5w/learning-journal | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Mark Saiget | Learning Journal</title>
<link rel="stylesheet" href="css/normalize.css">
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,900|Open+Sans:400,600,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>Mark Saiget</h1>
<h2>Learning Journal</h2>
</a>
<nav>
<ul>
<li><a href="index.html" class="selected">Portfolio</a></li>
<li><a href="new.html">New</a></li>
</ul>
</nav>
</header>
<div id="wrapper">
<section>
<ul id="gallery">
<li><a href="detail.html">Title, Creation Date</a></li>
<li><a href="detail.html">Title, Creation Date</a></li>
<li><a href="detail.html">Title, Creation Date</a></li>
<li><a href="detail.html">Title, Creation Date</a></li>
<li><a href="detail.html">Title, Creation Date</a></li>
</ul>
</section>
</div>
<footer>
<ul>
<li class="github"><a href="https://github.com/bm5w">Github</a></li>
<li class="mail"><a href="mailto:saiget@gmail.com">Email</a></li>
<li class="phone"><a href="tel:360-903-5027">(360) 903-5027</a></li>
<li><p>© 2015 Mark Saiget.</p></li>
</ul>
</footer>
</body>
<style>
</html> |
app/default.css | clem87/Riche-angularjs | /*
Design by Free CSS Templates
http://www.freecsstemplates.org
Released for free under a Creative Commons Attribution 2.5 License
*/
body {
margin: 0;
padding: 0;
background: #749865 url(images/img01.gif) repeat-x;
font: normal small Arial, Helvetica, sans-serif;
line-height: 1.8em;
color: #838B91;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: normal;
color: #468259;
}
h2 {
padding-left: 20px;
background: url(images/img07.gif) no-repeat left center;
font-size: 22px;
}
h3 {
margin-bottom: 1em;
text-transform: uppercase;
letter-spacing: 2px;
font-size: .9em;
font-weight: bold;
}
p, blockquote, ul, ol {
margin-top: 0;
}
blockquote {
padding: 0 0 0 40px;
background: url(images/img11.gif) no-repeat;
font: italic small Georgia, "Times New Roman", Times, serif;
line-height: 1.6em;
}
a {
background: url(images/img03.gif) repeat-x left bottom;
text-decoration: none;
color: #468259;
}
a:hover {
background: none;
text-decoration: underline;
}
/* Wrapper */
#wrapper {
background: #FFFFFF url(images/img04.gif) repeat-x left bottom;
}
/* Menu */
#menu {
width: 750px;
height: 60px;
margin: 0 auto;
}
#menu ul {
margin: 0;
padding: 0;
list-style: none;
}
#menu li {
display: block;
float: left;
width: 148px;
height: 60px;
padding: 0 0 0 2px;
background: url(images/img02.gif) no-repeat;
}
#menu a {
display: block;
width: 108px;
height: 36px;
padding: 20px 20px 0 20px;
background: none;
letter-spacing: -1px;
font: normal 1.6em Georgia, "Times New Roman", Times, serif;
color: #E1E9E2;
}
#menu a:hover {
text-decoration: none;
color: #FFFFFF;
}
#menu .active a {
background: #E1E9E2;
border-bottom: 4px solid #E1E9E2;
text-decoration: none;
color: #749865;
}
/* Header */
#header {
width: 754px;
height: 247px;
margin: 0 auto;
padding: 13px 0 0 0;
}
#header h1 {
float: left;
width: 104px;
height: 110px;
padding: 104px 100px 0 20px;
/* background: url(images/img05.jpg) no-repeat; */
line-height: 32px;
font-size: 30px;
}
#header h2 {
float: right;
width: 494px;
height: 34px;
padding: 180px 20px 0 0;
background: url(images/img06.jpg) no-repeat;
text-transform: lowercase;
text-align: right;
letter-spacing: -1px;
font-size: 22px;
color: #FFFFFF;
}
/* Content */
#content {
width: 950px;
margin: 0 auto;
}
/* Posts */
#posts {
float: right;
width: 900px;
}
#posts .post {
padding-bottom: 30px;
}
#posts .story {
padding: 15px 20px 0 20px;
background: url(images/img10.gif) repeat-x
}
#posts .meta {
padding: 5px 0 0 20px;
background: url(images/img03.gif) repeat-x;
}
#posts .meta p {
margin: 0;
line-height: normal;
font-size: smaller;
}
#posts ul {
list-style: url(images/img12.gif);
}
#posts ul li {
}
/* Links */
#links {
float: left;
width: 220px;
}
#links ul {
margin: 0;
padding: 0;
list-style: none;
}
#links li ul {
padding: 15px 20px 30px 20px;
background: url(images/img10.gif) repeat-x
}
#links li li {
padding: 3px 0;
background: url(images/img03.gif) repeat-x left bottom;
}
#links li a {
background: none;
}
#links li i {
font-size: smaller;
}
/* Footer */
#footer {
padding: 40px 0 60px 0;
background: url(images/img08.gif) repeat-x;
}
#footer p {
width: 750px;
font-family: Georgia, "Times New Roman", Times, serif;
color: #A6C09B;
}
#footer a {
background: none;
font-weight: bold;
color: #A6C09B;
}
#legal {
margin: 0 auto;
text-align: right;
font-size: 12px;
}
#brand {
margin: -35px auto 0 auto;
padding: 10px 0 0 35px;
background: url(images/img09.gif) no-repeat left top;
letter-spacing: -1px;
font-size: 24px;
}
.div_action_button{
float: right;
} |
Styles/VersionManager.css | jgreywolf/windsong.VersionManager | div.versionInfo ul {
list-style-type: none;
}
ul.versionInfo li {
float: left;
padding-right: 4px;
}
fieldset.readOnly {
opacity: 0.5;
pointer-events: none;
}
a.readOnly,
a.readOnly:hover {
cursor: not-allowed !important;
color: #A9A9A9 !important;
}
span.readOnly,
button.readOnly, button.readOnly:hover, button.readOnly:focus {
background: #EBEBE4;
color: #778899;
border-color: #BDBCBC;
cursor: not-allowed !important;
pointer-events: none;
}
#lblSetReadOnly.ui-state-active,
#lblRemoveReadOnly.ui-state-active {
background: #95BCF2;
}
.ui-button, .ui-button-text .ui-button {
font-size: 0.9em !important;
}
|
dist/index.html | cnosuke/inmbuttons | <!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="styles/aa303534.main.css">
<link rel="stylesheet" href="styles/7fdddff6.css3btn.css">
<link rel="stylesheet" href="components/jquery-ui/themes/base/jquery-ui.css">
<link rel="stylesheet" href="components/jquery-ui/themes/base/jquery.ui.autocomplete.css">
<script src="scripts/vendor/cf69c6f2.modernizr.min.js"></script>
</head>
<body>
<div class="container">
<h1>inm button</h1>
<h2><span id="howmany">0</span>人見てるよ</h2>
<p>status: <span id="status">(status here)</span></p>
<input type="text" id="inm_text" />
<hr />
</div>
<!--[if lt IE 7]>
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
<![endif]-->
<!-- Add your site or application content here -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="scripts/vendor/8bc61845.jquery.min.js"><\/script>')</script>
<script src="components/jquery-ui/ui/minified/jquery-ui.min.js"></script>
<script src="components/jquery-ui/ui/minified/jquery.ui.autocomplete.min.js"></script>
<script src="scripts/8b1dab41.main.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>
|
testpage_semyon.html | okkie2/sandbox | Votre audio guide en main, explorez villes et musées !
<img src="Explorez%20Villes%20et%20Musees%20avec%20Audio%20Guide.jpg">
Votre smartphone est votre audio guide
Il vous suffit d’un smartphone et de télécharger l’application izi.TRAVEL pour que l’univers des musées s’ouvre à vous et que les villes vous révèlent leurs secrets les plus captivants.
DECOUVREZ LES PLUS BEAUX SITES DE BREMEN EN ALLEMAGNE
PLONGEZ DANS L'HISTOIRE D'ANNE FRANCK À AMSTERDAM
Le journal d’Anne Franck a ému le monde entier avec son récit poignant sur la vie clandestine menée par les juifs durant la seconde guerre mondiale.
PARCOUREZ UN COIN DE PARIS, DES CATACOMBES À LA SEINE
La France a accueilli 84,5 millions de touristes internationaux en 2015.
Les catacombes sont des galeries souterraines impressionnantes où des ossements humains sont entreposés. Sur ce parcours, dans le quartier latin, le Panthéon est un des monuments à admirer avant de se retrouver en bord de seine pour profiter de la cuisine régionale.
APPRÉCIEZ LE LONDRES DE SHERLOCK
Au 221-B Baker Street se trouve la résidence officielle du célèbre détective. Le musée de Londres, le Piccadilly Circus et le palais de Westminster sont quelques-unes des attractions qu’offre cette visite guidée tout en menant les curieux sur les traces de Sherlock Holmes.
EXPLOREZ CAPE TOWN
Le cap a la mer et la montagne mais aussi la banlieue de Bo-Kaap et ses maisons colorées, Greenmarket Square animé par des artistes de rue et son marché aux puces, Roben island où Nelson Mandela a été emprisonné durant de longues années.
DES VISITES GUIDÉES CRÉÉES PAR LES LOCAUX, LES VOYAGEURS ET LES PROFESSIONNELS
Faites connaître les richesses de votre propre lieu de résidence
Le lieu où on vit regorge de petits coins qui méritent d’être vus.
Partagez vos récits de voyage
En tant que voyageur, on a soif de découverte et notre curiosité nous surprend, nous amenant vers des lieux surprenants et des rencontres inespérées.
Donnez accès à vos musées et à vos attractions autrement
Les professionnels du tourisme dévoilent les secrets que recèlent leurs lieux à leurs
AUDIO GUIDE : UN GUIDE TOURISTIQUE PERSONNEL
Un audioguide dans des langues différentes
Faire une visite guidée dans une langue qu’on comprend est un vrai plaisir. Le contenu disponible sur izi.TRAVEL est adapté à la langue de l'utilisateur.
Un guide personnel pour les principales destinations touristiques
Quoi de plus commode qu’un guide personnel qui tient dans une poche ou dans un sac puisqu’il se trouve dans notre smartphone qui nous suit partout.
A chaque route son audioguide
Des circuits à thème permettent à chacun de choisir sa route en fonction de ses goûts et ce, avec une seule appli dont le contenu est mis à jour par un réseau international.
Choisissez votre destination parmi toutes celles répertoriées sur le site d’ izi.TRAVEL et partez à la découverte des grandes histoires de ce monde, des plus curieuses aux plus intrigantes, des plus réelles aux plus féériques, des plus amusantes aux plus émouvantes.
|
AWS_CloudFormation_Template_Reference.docset/Contents/Resources/Documents/aws-properties-elasticmapreduce-cluster-keyvalue.html | pdhodgkinson/AWSCloudFormationTemplateReference-dash-docset | <!DOCTYPE html>
<html>
<head>
<link href="css/awsdocs.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/awsdocs.min.js"></script>
<meta charset="utf-8">
</head>
<body>
<div id="content" style="padding: 10px 30px;">
<h1 class="topictitle" id="aws-properties-elasticmapreduce-cluster-keyvalue">Amazon EMR Cluster KeyValue</h1><p>The
<code class="code">KeyValue</code> property type specifies a key value pair.
</p><p>
<code class="code">KeyValue</code> is a property of the <a href="aws-properties-elasticmapreduce-cluster-hadoopjarstepconfig.html">Amazon EMR Cluster HadoopJarStepConfig</a> property
type.
</p><h2 id="aws-properties-elasticmapreduce-cluster-keyvalue-syntax">Syntax</h2><p>To declare this entity in your AWS CloudFormation template, use the following syntax:</p><div id="JSON" name="JSON" class="section langfilter">
<h3 id="aws-properties-elasticmapreduce-cluster-keyvalue-syntax.json">JSON</h3>
<pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight">{
"<a href="aws-properties-elasticmapreduce-cluster-keyvalue.html#cfn-elasticmapreduce-cluster-keyvalue-key">Key</a>" : <em class="replaceable"><code>String</code></em>,
"<a href="aws-properties-elasticmapreduce-cluster-keyvalue.html#cfn-elasticmapreduce-cluster-keyvalue-value">Value</a>" : <em class="replaceable"><code>String</code></em>
}</code></pre>
</div><div id="YAML" name="YAML" class="section langfilter">
<h3 id="aws-properties-elasticmapreduce-cluster-keyvalue-syntax.yaml">YAML</h3>
<pre class="programlisting"><div class="code-btn-container"><div class="btn-copy-code" title="Copy"></div><div class="btn-dark-theme" title="Dark theme" title-dark="Dark theme" title-light="Light theme"></div></div><code class="nohighlight"><a href="aws-properties-elasticmapreduce-cluster-keyvalue.html#cfn-elasticmapreduce-cluster-keyvalue-key">Key</a>: <em class="replaceable"><code>String</code></em>
<a href="aws-properties-elasticmapreduce-cluster-keyvalue.html#cfn-elasticmapreduce-cluster-keyvalue-value">Value</a>: <em class="replaceable"><code>String</code></em>
</code></pre>
</div><h2 id="aws-properties-elasticmapreduce-cluster-keyvalue-properties">Properties</h2><div class="variablelist">
<dl>
<dt><a id="cfn-elasticmapreduce-cluster-keyvalue-key"></a><span class="term"><code class="code">Key</code></span></dt>
<dd>
<p>The unique identifier of a key value pair.</p>
<p>Length Constraints: Minimum length of 0. Maximum length of 10280.</p>
<p>Pattern: <code class="code">[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code></p>
<p>
<em>Required</em>: No
</p>
<p>
<em>Type</em>: String
</p>
<p>
<em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt">No interruption</a>
</p>
</dd>
<dt><a id="cfn-elasticmapreduce-cluster-keyvalue-value"></a><span class="term"><code class="code">Value</code></span></dt>
<dd>
<p>The value part of the identified key.</p>
<p>Length Constraints: Minimum length of 0. Maximum length of 10280.</p>
<p>Pattern: <code class="code">[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\r\n\t]*</code></p>
<p>
<em>Required</em>: No
</p>
<p>
<em>Type</em>: String
</p>
<p>
<em>Update requires</em>: <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-updating-stacks-update-behaviors.html#update-no-interrupt">No interruption</a>
</p>
</dd>
</dl>
</div><h2 id="aws-properties-elasticmapreduce-cluster-keyvalue-seealso">See Also</h2><div class="itemizedlist">
<ul class="itemizedlist" type="disc">
<li class="listitem">
<p><a href="https://docs.aws.amazon.com/ElasticMapReduce/latest/API/API_KeyValue.html">KeyValue</a> in the <em>Amazon EMR API Reference</em></p>
</li>
</ul>
</div></div>
</body>
</html> |
docs/picturepark-sdk-v1-fetch/api/interfaces/_child_process_.commonoptions.html | Picturepark/Picturepark.SDK.TypeScript | <!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>CommonOptions | picturepark-sdk-v1-fetch API</title>
<meta name="description" content="Documentation for picturepark-sdk-v1-fetch API">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../assets/css/main.css">
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="../index.html" class="title">picturepark-sdk-v1-fetch API</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
<input type="checkbox" id="tsd-filter-only-exported" />
<label class="tsd-widget" for="tsd-filter-only-exported">Only exported</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<ul class="tsd-breadcrumb">
<li>
<a href="../globals.html">Globals</a>
</li>
<li>
<a href="../modules/_child_process_.html">"child_process"</a>
</li>
<li>
<a href="_child_process_.commonoptions.html">CommonOptions</a>
</li>
</ul>
<h1>Interface CommonOptions</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<section class="tsd-panel tsd-hierarchy">
<h3>Hierarchy</h3>
<ul class="tsd-hierarchy">
<li>
<a href="_child_process_.processenvoptions.html" class="tsd-signature-type">ProcessEnvOptions</a>
<ul class="tsd-hierarchy">
<li>
<span class="target">CommonOptions</span>
<ul class="tsd-hierarchy">
<li>
<a href="_child_process_.commonspawnoptions.html" class="tsd-signature-type">CommonSpawnOptions</a>
</li>
<li>
<a href="_child_process_.execoptions.html" class="tsd-signature-type">ExecOptions</a>
</li>
<li>
<a href="_child_process_.execfileoptions.html" class="tsd-signature-type">ExecFileOptions</a>
</li>
<li>
<a href="_child_process_.execsyncoptions.html" class="tsd-signature-type">ExecSyncOptions</a>
</li>
<li>
<a href="_child_process_.execfilesyncoptions.html" class="tsd-signature-type">ExecFileSyncOptions</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</section>
<section class="tsd-panel-group tsd-index-group">
<h2>Index</h2>
<section class="tsd-panel tsd-index-panel">
<div class="tsd-index-content">
<section class="tsd-index-section tsd-is-external">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="_child_process_.commonoptions.html#cwd" class="tsd-kind-icon">cwd</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="_child_process_.commonoptions.html#env" class="tsd-kind-icon">env</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="_child_process_.commonoptions.html#gid" class="tsd-kind-icon">gid</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="_child_process_.commonoptions.html#timeout" class="tsd-kind-icon">timeout</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external"><a href="_child_process_.commonoptions.html#uid" class="tsd-kind-icon">uid</a></li>
<li class="tsd-kind-property tsd-parent-kind-interface tsd-is-external"><a href="_child_process_.commonoptions.html#windowshide" class="tsd-kind-icon">windows<wbr>Hide</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Properties</h2>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a name="cwd" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> cwd</h3>
<div class="tsd-signature tsd-kind-icon">cwd<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div>
<aside class="tsd-sources">
<p>Inherited from <a href="_child_process_.processenvoptions.html">ProcessEnvOptions</a>.<a href="_child_process_.processenvoptions.html#cwd">cwd</a></p>
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:135</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a name="env" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> env</h3>
<div class="tsd-signature tsd-kind-icon">env<span class="tsd-signature-symbol">:</span> <a href="nodejs.processenv.html" class="tsd-signature-type">ProcessEnv</a></div>
<aside class="tsd-sources">
<p>Inherited from <a href="_child_process_.processenvoptions.html">ProcessEnvOptions</a>.<a href="_child_process_.processenvoptions.html#env">env</a></p>
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:136</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a name="gid" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> gid</h3>
<div class="tsd-signature tsd-kind-icon">gid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Inherited from <a href="_child_process_.processenvoptions.html">ProcessEnvOptions</a>.<a href="_child_process_.processenvoptions.html#gid">gid</a></p>
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:134</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a name="timeout" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> timeout</h3>
<div class="tsd-signature tsd-kind-icon">timeout<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:147</li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<dl class="tsd-comment-tags">
<dt>default</dt>
<dd><p>0</p>
</dd>
</dl>
</div>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a name="uid" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> uid</h3>
<div class="tsd-signature tsd-kind-icon">uid<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Inherited from <a href="_child_process_.processenvoptions.html">ProcessEnvOptions</a>.<a href="_child_process_.processenvoptions.html#uid">uid</a></p>
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:133</li>
</ul>
</aside>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a name="windowshide" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagOptional">Optional</span> windows<wbr>Hide</h3>
<div class="tsd-signature tsd-kind-icon">windows<wbr>Hide<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in node_modules/@types/node/child_process.d.ts:143</li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<dl class="tsd-comment-tags">
<dt>default</dt>
<dd><p>true</p>
</dd>
</dl>
</div>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
<li class="current tsd-kind-module tsd-is-external">
<a href="../modules/_child_process_.html">"child_<wbr>process"</a>
<ul>
<li class=" tsd-kind-namespace tsd-parent-kind-module tsd-is-external">
<a href="../modules/_child_process_.exec.html">exec</a>
</li>
<li class=" tsd-kind-namespace tsd-parent-kind-module tsd-is-external">
<a href="../modules/_child_process_.execfile.html">exec<wbr>File</a>
</li>
</ul>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-interface tsd-parent-kind-module tsd-is-external">
<a href="_child_process_.commonoptions.html" class="tsd-kind-icon">Common<wbr>Options</a>
<ul>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a href="_child_process_.commonoptions.html#cwd" class="tsd-kind-icon">cwd</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a href="_child_process_.commonoptions.html#env" class="tsd-kind-icon">env</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a href="_child_process_.commonoptions.html#gid" class="tsd-kind-icon">gid</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a href="_child_process_.commonoptions.html#timeout" class="tsd-kind-icon">timeout</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-inherited tsd-is-external">
<a href="_child_process_.commonoptions.html#uid" class="tsd-kind-icon">uid</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-interface tsd-is-external">
<a href="_child_process_.commonoptions.html#windowshide" class="tsd-kind-icon">windows<wbr>Hide</a>
</li>
</ul>
</li>
</ul>
<ul class="after-current">
</ul>
</nav>
</div>
</div>
</div>
<footer class="with-border-bottom">
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
</ul>
</div>
</div>
</footer>
<div class="container tsd-generator">
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
</div>
<div class="overlay"></div>
<script src="../assets/js/main.js"></script>
</body>
</html> |
public/Windows 10 x64 (19041.572)/_WNF_PROCESS_CONTEXT.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (19041.572)</h4><br>
<h2>_WNF_PROCESS_CONTEXT</h2>
<font face="arial"> +0x000 Header : <a href="./_WNF_NODE_HEADER.html">_WNF_NODE_HEADER</a><br>
+0x008 Process : Ptr64 <a href="./_EPROCESS.html">_EPROCESS</a><br>
+0x010 WnfProcessesListEntry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x020 ImplicitScopeInstances : [3] Ptr64 Void<br>
+0x038 TemporaryNamesListLock : <a href="./_WNF_LOCK.html">_WNF_LOCK</a><br>
+0x040 TemporaryNamesListHead : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x050 ProcessSubscriptionListLock : <a href="./_WNF_LOCK.html">_WNF_LOCK</a><br>
+0x058 ProcessSubscriptionListHead : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x068 DeliveryPendingListLock : <a href="./_WNF_LOCK.html">_WNF_LOCK</a><br>
+0x070 DeliveryPendingListHead : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br>
+0x080 NotificationEvent : Ptr64 <a href="./_KEVENT.html">_KEVENT</a><br>
</font></body></html> |
PMPhotography/_Resources/thank-you/index.html | philipmorg/dev-NicheShop | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Thank you for signing up for updates!">
<meta name="author" content="Philip Morgan, philip@philipmorganphotography.com">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for PhilipMorganPhotography.com" href="http://philipmorganphotography.com/rss/feed.xml" />
<title>Philip Morgan Photography</title>
<!-- <link href="/css/bootstrap.min.css" rel="stylesheet"> -->
<!-- <link href="http://philipmorganphotography.com/css/bootstrap.css" rel="stylesheet"> -->
<link href="/css/bootstrap.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
}
</style>
<!-- <link href="http://philipmorganphotography.com/css/bootstrap-responsive.css" rel="stylesheet"> -->
<link href="/css/bootstrap-responsive.css" rel="stylesheet">
<link href="/css/custom-css.css" rel="stylesheet">
<link href="/css/audioplayer.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-7403805-1']);
_gaq.push(['_setDomainName', 'philipmorganphotography.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body class="" id="">
<!-- Menu DIV and code -->
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Philip Morgan Photography</a>
<div class="nav-collapse">
<ul class="nav">
<!-- <li ><a href="/">Home</a></li> -->
<li ><a href="/gallery">Gallery</a></li>
<li ><a href="/prints">Buy Prints</a></li> <!-- TODO: Iterate through all categories-->
<!-- <li ><a href="/learn">Learn</a></li> -->
<li ><a href="/blog">Blog</a></li>
<li class="active" ><a href="/about">About</a></li>
<li ><a href="/cart">Cart</a></li>
</ul>
</div>
<div class="cartinfo">
<a href="/cart">Cart: <span class="simpleCart_quantity"></span> items - <span class="simpleCart_total"></span></a>
<a href="javascript:;" onclick="changeCheckouttype1()" class="simpleCart_checkout btn btn-warning btn-small" style="margin-top: -5px;">Bitcoin Checkout</a>
<a href="javascript:;" onclick="revertCheckouttype1()" class="simpleCart_checkout btn btn-warning btn-small" style="margin-top: -5px;">PayPal Checkout</a>
</div>
</div>
</div>
</div>
<div class="container container-primary">
<div class="row" style="margin-left: 0px; padding: 60px; margin-bottom: 30px; background-color: #eeeeee; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px;">
<div class="span4"><img src="/images/philip-320.jpg" />
</div>
<div class="span6">
<h1>Thank You!</h1>
<p style="font-size: 18px; font-weight: 200; line-height: 27px; color: inherit;">Thank you for signing up for updates from Philip Morgan Photography! When there's a new article I think you'll find interesting or something else worth your time, I'll send a quick email update.</p>
</div>
</div>
</div>
<!-- footer stuff here -->
<!-- Disqus code here -->
</body>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src=""js/jquery-1.7.1.min.js"><\/script>')</script>
<script src="/js/bootstrap.js"></script>
<!-- Audio Player Code -->
<script src="/js/audioplayer.min.js"></script>
<script>$( function() { $( 'audio' ).audioPlayer(); } );</script>
<script src="/js/simpleCart.js"></script>
<script type="text/javascript">
function changeCheckouttype1()
{
simpleCart({
checkout: {
type: "SendForm",
url: "http://checkout.philipmorganphotography.com",
method: "Post",
extra_data:{
key: "fa9b8abd0a22c732b8e9ad606b473386"
}
}
});
}
function changeCheckouttype2()
{
simpleCart({
checkout: {
type: "SendForm",
url: "http://checkout.philipmorganphotography.com",
method: "Post",
extra_data:{
key: "fa9b8abd0a22c732b8e9ad606b473386"
}
}
});
}
function revertCheckouttype1()
{
simpleCart({
checkout: {
type: "PayPal",
email: "philipmorg@gmail.com"
}
});
}
function revertCheckouttype2()
{
simpleCart({
checkout: {
type: "PayPal",
email: "philipmorg@gmail.com"
}
});
}
</script>
<script>
simpleCart({
checkout: {
type: "PayPal",
email: "philipmorg@gmail.com"
}
});
simpleCart.bind('beforeAdd',function( item ){
// set the item price here depending on your inputs
switch (item.get( 'size' )) {
case '11x14 Pigment Baryta': item.price( 75 ); break;
case '16x20 Pigment Baryta': item.price( 100 ); break;
case '20x24 Pigment Baryta': item.price( 125 ); break;
case '11x14 Pigment Baryta - Mounted': item.price( 100 ); break;
case '16x20 Pigment Baryta - Mounted': item.price( 125 ); break;
case '20x24 Pigment Baryta - Mounted': item.price( 150 ); break;
default: break;
}});
</script>
</html> |
_includes/about.html | nitstorm/headache-diary | <div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<center><h1 class="modal-title" id="about-modal"> Headache Diary </h1></center>
</div>
<div class="modal-body">
<p class="lead">A simple tool to record your headaches and the events occurring that day.</p>
<p>Reports are provided in two formats - tabular and stats. Tabular data is just a data dump of all the entries you've made. Stats provides with you some statistical information based on your headaches.</p>
<h3>Installation and Running</h3>
<ul>
<li>Install <a href="https://php.net/">PHP</a></li>
<li>Install a server software like <a href="https://httpd.apache.org/">Apache Web Server</a></li>
<li>Install <a href="http://www.mongodb.org/">MongoDB</a></li>
<li>Install <a href="https://github.com/mongodb/mongo-php-driver">PHP MongoDB Driver</a> <a href="https://nitstorm.github.io/blog/installing-php-mongodb-driver-ubuntu/">(installation instructions on Ubuntu machines</a>) </li>
<li>Place the contents of the repo in your webroot (Default webroot for Apache Web Server is <code>/var/www/</code> on Ubuntu machines)</li>
</ul>
<p>
Your MongoDB configuration should allow for this script to able to access/create a database called <code>headache_diary</code> without any prompts for username or passwords.
</p>
<h3> Issues <br /><small>Bugs, Feature requests, questions</small></h3>
<p> Please feel free to use the <a href="https://github.com/nitstorm/headache-diary/issues"> issues section</a> on the Github project page.</p>
<h3>Attribution<br /><small> A big thank you to all the following projects and their maintainers</small></h3>
<ul>
<li><a href="https://jquery.com/">jQuery v1.11.1</a></li>
<li><a href="http://getbootstrap.com">Bootstrap v3.2.0</a></li>
<li><a href="https://github.com/marioizquierdo/jquery.serializeJSON">SerializeJSON</a></li>
<li><a href="http://tablesorter.com/docs/">TableSorter 2.0</a></li>
<li><a href="http://simpleweatherjs.com">simpleWeather v3.0.2</a></li>
<li><a href="https://github.com/Eonasdan/bootstrap-datetimepicker/">Datetimepicker for Bootstrap v3</a></li>
<li><a href="https://seiyria.github.io/bootstrap-slider/">Slider for Bootstrap</a></li>
<li><a href="http://www.highcharts.com">Highcharts JS v4.0.3</a></li>
<li><a href="http://highcharttable.org/">HighchartTable</a></li>
<li><a href="http://momentjs.com/">moment.js</a></li>
</ul>
<h3>License</h3>
<p>
The MIT License (MIT)
</p>
<p>
Copyright (c) 2014 Nitin Venkatesh
</p>
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
</p>
<p>
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
</p>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal">Close</button>
</div>
|
SentimentAnalysisV2/encog-core-3.1.0/apidocs/org/encog/neural/som/training/basic/neighborhood/class-use/NeighborhoodRBF1D.html | larhoy/SentimentProjectV2 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_24) on Sun Apr 08 20:51:59 UTC 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
Uses of Class org.encog.neural.som.training.basic.neighborhood.NeighborhoodRBF1D (Encog Core 3.1.0 API)
</TITLE>
<META NAME="date" CONTENT="2012-04-08">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.encog.neural.som.training.basic.neighborhood.NeighborhoodRBF1D (Encog Core 3.1.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/encog/neural/som/training/basic/neighborhood/NeighborhoodRBF1D.html" title="class in org.encog.neural.som.training.basic.neighborhood"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?org/encog/neural/som/training/basic/neighborhood//class-useNeighborhoodRBF1D.html" target="_top"><B>FRAMES</B></A>
<A HREF="NeighborhoodRBF1D.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>org.encog.neural.som.training.basic.neighborhood.NeighborhoodRBF1D</B></H2>
</CENTER>
No usage of org.encog.neural.som.training.basic.neighborhood.NeighborhoodRBF1D
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/encog/neural/som/training/basic/neighborhood/NeighborhoodRBF1D.html" title="class in org.encog.neural.som.training.basic.neighborhood"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../../../index.html?org/encog/neural/som/training/basic/neighborhood//class-useNeighborhoodRBF1D.html" target="_top"><B>FRAMES</B></A>
<A HREF="NeighborhoodRBF1D.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
Copyright © 2012. All Rights Reserved.
</BODY>
</HTML>
|
result/M.1419000602.A.664.html | iultimatez/PTTScraper | <!DOCTYPE html><html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>[新聞] 忍悲勘驗 檢察官:好沉重 - 看板 Gossiping - 批踢踢實業坊</title>
<meta name="robots" content="all">
<meta name="keywords" content="Ptt BBS 批踢踢">
<meta name="description" content="
1.媒體來源:
蘋果日報
2.完整新聞標題:
">
<meta property="og:site_name" content="Ptt 批踢踢實業坊">
<meta property="og:title" content="[新聞] 忍悲勘驗 檢察官:好沉重">
<meta property="og:description" content="
1.媒體來源:
蘋果日報
2.完整新聞標題:
">
<link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs-common.css">
<link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs.css" media="screen">
<link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/pushstream.css" media="screen">
<link rel="stylesheet" type="text/css" href="//images.ptt.cc/v2.10/bbs-print.css" media="print">
<script type="text/javascript" async="" src="https://apis.google.com/js/plusone.js"></script><script id="facebook-jssdk" src="//connect.facebook.net/en_US/all.js#xfbml=1"></script><script type="text/javascript" async="" src="https://ssl.google-analytics.com/ga.js"></script><script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//images.ptt.cc/v2.10/bbs.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32365737-1']);
_gaq.push(['_setDomainName', 'ptt.cc']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div id="topbar-container">
<div id="topbar" class="bbs-content">
<a id="logo" href="/">批踢踢實業坊</a>
<span>›</span>
<a class="board" href="/bbs/Gossiping/index.html"><span class="board-label">看板 </span>Gossiping</a>
<a class="right small" href="/about.html">關於我們</a>
<a class="right small" href="/contact.html">聯絡資訊</a>
</div>
</div>
<div id="navigation-container">
<div id="navigation" class="bbs-content">
<a class="board" href="/bbs/Gossiping/index.html">返回看板</a>
<div class="bar"></div>
<div class="share">
<span>分享</span>
<div class="fb-like" data-send="false" data-layout="button_count" data-width="90" data-show-faces="false" data-href="http://www.ptt.cc/bbs/Gossiping/M.1419000602.A.664.html"></div>
<div class="g-plusone" data-size="medium"></div>
<script type="text/javascript">
window.___gcfg = {lang: 'zh-TW'};
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</div>
</div>
</div>
<div id="main-container">
<div id="main-content" class="bbs-screen bbs-content"><div class="article-metaline"><span class="article-meta-tag">作者</span><span class="article-meta-value">Keira1990 (這不是來了嗎?)</span></div><div class="article-metaline-right"><span class="article-meta-tag">看板</span><span class="article-meta-value">Gossiping</span></div><div class="article-metaline"><span class="article-meta-tag">標題</span><span class="article-meta-value">[新聞] 忍悲勘驗 檢察官:好沉重</span></div><div class="article-metaline"><span class="article-meta-tag">時間</span><span class="article-meta-value">Fri Dec 19 22:49:55 2014</span></div>
1.媒體來源:
蘋果日報
2.完整新聞標題:
忍悲勘驗 檢察官:好沉重
3.完整新聞內文:
面對高雄氣爆死亡慘重、滿目瘡痍的現場,承辦檢察官羅水郎表示,看到氣爆最嚴重的凱
旋、二聖路口,宛如被炸彈轟炸過,「心好痛、好沉重」。
批公務員怠忽職守
羅水郎表示,箱涵承包商的便宜行事,公務員的草率驗收,李長榮化工的管理疏失,以及
華運儲運二公司操作人員的漫不經心,才導致災難,這是台灣人的不幸,更是高雄人的不
幸。
高雄地檢署共出動十二名檢察官偵辦氣爆案,其中檢察官李宜穎就住在氣爆點附近,爆炸
當晚逃到安全地點後,立即聯繫地檢署開始進行輪值相驗工作,當她相驗到一名消防員,
看到其皮肉跟衣服都黏著在一起,燒得焦黑,強忍內心的不捨,冷靜慎重處理遺體,只是
當一天工作結束後,回想起那一幕,仍忍不住淚流滿面。
負責偵辦公務員人謀不臧的檢察官張志杰說,偵辦此案最感嘆的是看到公務員的強烈對比
,<span class="f1 hl">一是在現場冒險尋找外洩氣體源頭的第一線警消</span>,<span class="f6 hl">一是箱涵監工、驗收便宜行事的公務</span>
<span class="f6 hl">人員</span>,後者怠忽職守的結果,竟釀成二十三年後的巨災,「同樣是公務員,卻有兩種不同
的工作態度,實在值得警惕。」記者郭芷余
4.完整新聞連結 (或短網址):
<a href="http://ppt.cc/DrpJ" target="_blank" rel="nofollow">http://ppt.cc/DrpJ</a>
5.備註: Q___Q
--
<span class="f2">※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 61.63.113.66
</span><span class="f2">※ 文章網址: <a href="http://www.ptt.cc/bbs/Gossiping/M.1419000602.A.664.html" target="_blank" rel="nofollow">http://www.ptt.cc/bbs/Gossiping/M.1419000602.A.664.html</a>
</span><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Puribaw</span><span class="f3 push-content">: 最後一段QAQ</span><span class="push-ipdatetime"> 12/19 22:52
</span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">chinyi65</span><span class="f3 push-content">: 現在過最爽的也是這些23年前混混的公務員,爽爽領又繼續</span><span class="push-ipdatetime"> 12/19 22:54
</span></div><div class="push"><span class="f1 hl push-tag">→ </span><span class="f3 hl push-userid">chinyi65</span><span class="f3 push-content">: 罵台灣,仇視現在的民主</span><span class="push-ipdatetime"> 12/19 22:54
</span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">mandy9960285</span><span class="f3 push-content">: 唉商</span><span class="push-ipdatetime"> 12/19 22:56
</span></div><div class="push"><span class="hl push-tag">推 </span><span class="f3 hl push-userid">Waitaha</span><span class="f3 push-content">: 難過</span><span class="push-ipdatetime"> 12/19 22:59
</span></div><div class="push"><span class="f1 hl push-tag">噓 </span><span class="f3 hl push-userid">QQdragon</span><span class="f3 push-content">: 鬼島司法體系敗壞的元兇之一</span><span class="push-ipdatetime"> 12/19 23:30
</span></div></div>
<div id="article-polling" data-pollurl="/poll/Gossiping/M.1419000602.A.664.html?cacheKey=2052-1347908632&offset=1909&offset-sig=200e98aeeba7e87a90dcb8da74735377960b360a" data-longpollurl="/v1/longpoll?id=2148154d5676319a8b70ee679926c499a50409d0" data-offset="1909">推文自動更新已關閉</div>
<div class="bbs-screen bbs-footer-message">本網站已依台灣網站內容分級規定處理。此區域為限制級,未滿十八歲者不得瀏覽。</div>
</div>
</body></html> |
clean/Linux-x86_64-4.06.1-2.0.5/released/8.11.1/huffman/8.14.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>huffman: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.1 / huffman - 8.14.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
huffman
<small>
8.14.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-04 15:07:36 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-04 15:07:36 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "palmskog@gmail.com"
homepage: "https://github.com/coq-community/huffman"
dev-repo: "git+https://github.com/coq-community/huffman.git"
bug-reports: "https://github.com/coq-community/huffman/issues"
doc: "https://coq-community.org/huffman/"
license: "LGPL-2.1-or-later"
synopsis: "Coq proof of the correctness of the Huffman coding algorithm"
description: """
This projects contains a Coq proof of the correctness of the Huffman coding algorithm,
as described in David A. Huffman's paper A Method for the Construction of Minimum-Redundancy
Codes, Proc. IRE, pp. 1098-1101, September 1952."""
build: [make "-j%{jobs}%"]
install: [make "install"]
depends: [
"coq" {>= "8.12" & < "8.16~"}
]
tags: [
"category:Computer Science/Decision Procedures and Certified Algorithms/Correctness proofs of algorithms"
"category:Miscellaneous/Extracted Programs/Combinatorics"
"keyword:data compression"
"keyword:code"
"keyword:huffman tree"
"logpath:Huffman"
"date:2021-12-19"
]
authors: [
"Laurent Théry"
]
url {
src: "https://github.com/coq-community/huffman/archive/v8.14.0.tar.gz"
checksum: "sha512=fba207ccad7b605d38fde4eb1e1469a8814532b9c74e95022f3a6e4e30002a7a9451c9a28c8b735250345dbab0997522843a08e760442ccdac1040e5d5392a9e"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-huffman.8.14.0 coq.8.11.1</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.1).
The following dependencies couldn't be met:
- coq-huffman -> coq >= 8.12
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-huffman.8.14.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
blog/masast-linux-dnyas/index.html | turhn/turhn.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="google-site-verification" content="0emXjEbk_ZIziWSlcEWaCEaOIivGlP2tiGnQPLvZKNE" />
<title>Masaüstü Linux Dünyası</title>
<meta name="description" content="Programming related articles.
">
<link rel="canonical" href="http://localhost:4000/blog/masast-linux-dnyas/">
<link href='http://fonts.googleapis.com/css?family=PT+Serif:400,700,400italic,700italic|Didact+Gothic&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link type="text/css" rel="stylesheet" href="/assets/app.css">
</head>
<body class="showing-post">
<div class="pure-g">
<div class="content pure-u-1 pure-u-md-3-4">
<div>
<header class="post-nav-bar pure-g">
<div class="pure-u-1-3">
<figure>
<a href="/">
<img class="post-avatar" src="/assets/profile200x200.jpg" alt="Turhan Coskun" />
</a>
</figure>
</div>
<div class="blog-name pure-u-1-3">
<div><a href="/">Turhan Coskun</a></div>
</div>
<div class="pure-u-1-3">
</div>
</header>
<div class="post">
<header class="post-header">
<h1 class="post-title">Masaüstü Linux Dünyası</h1>
<div class="post-meta">Nov 1, 2014
<div>
<a class="post-category" href="/tag/Unix">Unix</a>
<a class="post-category" href="/tag/Genel">Genel</a>
<a class="post-category" href="/tag/Linux">Linux</a>
</div>
</div>
</header>
<article class="post-content">
<p>GNU/Linux hepimizin çok sevdiği, öve öve bitiremediği ama çoğunlukla sanal makinada
ya da dual bot ile kullanmayı layık gördüğümüz bir işletim sistemi. Ancak bugün burada Linux’un
sunucu bazında pazar payındaki tartışılmaz aslan payından, Android olarak ceplerde
edindiği yerinden, mikro ölçekli milyonlarca cihazla dünyayı ele geçirmesinden
bahsetmeyeceğim. Benim burada konuşacağım tek konu GNU/Linux dağıtımlarının masaüstü bilgisayarlarındaki durumu olacak.</p>
<p>Linux ile ilk tanışmam 2000 li yılların başında, ilk bilgisayara sahip olduğum
zamanlarda, bir derginin yanında hediye verilen Mandrake Linux ile oldu. O zamanlardan aklımda kalan; sistemin sürekli çökmesi ve İngilizce
bilmediğim bir dönemde işletim sistemindeki bir çok kısımın tercüme edilmemiş olmasından kaynaklanan
sıkıntılar. Hafızamı daha da kurcaladığımda, o zamanda 56K internal faks modem ile internete
bağlandığımı ve bu modemler için yazılmış ücretsiz bir sürücü olmamasından dolayı internete
bağlanamamamdı. Sırf internetten paket yükleyebilmek için, bilgisayarımı Windows ile
boot edip yüklemek istediğim paketi internetten yüklüyor, sonra yeniden Mandrake’den
boot edip windows sürücülerine erişerek söz konusu paketleri Linux’a yüklüyordum.
Bir süre sonra sıkılıp Linux’u sistemden tamamen uçurarak bir süre o zamanların efsanesi olan Windows XP’yi
kullanarak yoluma devam ettim.</p>
<p>Bir süre sonra milli işletim sistemi Pardus duyuruldu. Pisi paket yöneticisi,
şık KDE ve Gnome masaüstleri, Çomar vs. İlgi çekici ve başarılıydı. Artık ADSL teknolojisi
evlere girmiş olduğundan internete bağlanmakta da sıkıntı çekmiyordu.Gel gör ki o fontlar,
o çözünürlük hala Windows ayarında değildi ama sonuçta bu bir milli yazılımdı. Hayalimde; o ayda bir
formatlamak zorunda olduğum Windows’tan kurtulmak olsa da, swf geliştirmek için
Macromedia Flash’a olan ihtiyaç ve Linux yazıcı sürücülerinin berbat durumda olması bir taraftan
sürekli Windows’u el altında tutmayı gerektiriyordu. E tabi bir de oyunlar meselesi
var. Millet Fifa, NFS ve CS oynarken benim basit puzzle oyunlarıyle yetinmem de
beklenmezdi(!) Yine de Pardus projesi -sıfırlanıncaya- dek kullanmaya devam ettim.</p>
<p>XP den 8’e kadar abidik gubudik bütün Windows sürümlerini kullandım ancak gel gör ki
2013 te Macbook Pro Retina 15” alıp OS X ile tanışıncaya kadar aslında bir işletim sisteminin
nasıl olması gerektiği ile ilgili yeterli fikre sahip olmadığımı fark ettim. Görüntü
kalitesi ve font render özellikleri muhteşem. İçindeki donanım ile tam uyumlu ve
malzeme olarak da çok kaliteli. Burada sabaha kadar ağzım sulana sulana Mac ve OS X övebilirim ancak mesele şu ki gönlüm içinde ne olduğunu bilmediğim yazılımlardan ziyade her zaman özgür yazılımdan yana.</p>
<p>Açık kaynak temelli web teknolojileri ile yazılım geliştiren birisi zaten sürekli
Linux sunucularla haşır neşir olmak durumunda olsa da Torvalds’ın lafı hep aklımda
‘I still want the desktop.’ yani ‘Hala masaüstünü istiyorum.’ Masaüstü için zaman
zaman popüler olması sebebiyle Ubuntu’yu ara sıra yükleyip inceliyordum ve kabul ediyorum ki
artık sıradan bir bilgisayar kullanıcısının bile rahatlıkla kullanabileceği noktalara geldi. Ancak
Canonical kendi saçmalıklarını o kadar çok sisteme bulaştırmış ki şahsen bana Linux
tadı vermiyor. Sisteme her büyük güncelleme gelişinde çöküyor ve bana ayar dosyalarını
kurcalattırıyor. Artı ve eksileriyle çok şey yazılabilir ama aradığım tat kesinlikle
Ubuntu değil.</p>
<p>En son kullanmaya başladığım Linux dağıtımı ise Mint. Başta görüntü ve fontlar çamur gibi gelmesine
rağmen birkaç ayarla retina çözünürlüğüne uygun hale geldi ve şu an neredeyse OS X’i bile
aratmayacak durumda olduğunu düşünüyorum. Ubuntu’dan çatallanan projenin masaüstü yöneticisi
Cinnamon ise Gnome projesinden çatallanmış. Ubuntu’nun tüm iyi taraflarını üzerinde
barındırmasına rağmen Canonical saçmalıklarından da arındırılmış durumda.</p>
<p>En büyük eksisi ise bence süresi geçmiş X Server ise hala arka planda çalışmaya devam ediyor olması. Bu konuda Wayland
projesi X Server’in yerine almaya henüz uzak gibi duruyor. Görüntü sunucusu teknolojisi yenilenmeli ve
ben bu gönderiyi yazarken sistem dondu ve yeniden başlatmam gerekti dolayısıyla görünen o ki
OS X’e bir süre daha devam etmem gerekiyor.</p>
<p>Evet şu an masaüstü bilgisayarların çoğunluğu ele geçirilemedi ama yakın gelecekte
işler değişebileceğe benziyor. Şimdilik bu konudaki en güçlü adayım Linux Mint.</p>
<p>Bir sonraki yazımda görüşmek üzere sağlıcakla kalın.</p>
</article>
<div class="social-share">
<span>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="/blog/masast-linux-dnyas/" data-via="turhanco" data-lang="tr">Tweet</a>
</span>
<span>
<div class="fb-like" data-href="/blog/masast-linux-dnyas/" data-layout="button_count" data-action="like" data-show-faces="true" data-share="true">
</div>
</span>
</div>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'turhancoskunblog';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/tr_TR/sdk.js#xfbml=1&appId=1469686916649684&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
<p>
<a href="/">Ana Sayfaya Dön</a>
</p>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="/assets/headroom.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-41396472-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script type="text/javascript" src="/assets/post.js"></script>
</body>
</html>
|
slides/slide-8.html | JulienMelissas/bootstrap-talk | <header>
<h1 class="page-header">The Grid</h1>
</header>
<div class="content">
<div class="row">
<div class="col-md-6">
<div class="alert">I can</div>
</div>
<div class="col-md-3"><div class="alert">haz</div></div>
<div class="col-md-3"><div class="alert">seperation!</div></div>
</div>
<div class="row">
<div class="col-md-12"><div class="alert alert-info">Full-width</div></div>
</div>
<div class="row">
<div class="col-xs-3 visible-xs">
<div class="alert alert-success">only</div>
</div>
<div class="col-xs-3 visible-xs">
<div class="alert alert-success">small</div>
</div>
<div class="col-xs-3 visible-xs">
<div class="alert alert-success">+ visible</div>
</div>
<div class="col-xs-3 visible-xs">
<div class="alert alert-success">on mobile</div>
</div>
</div>
</div> |
_layouts/post.html | 0xdeadpool/0xdeadpool.github.io | ---
layout: default
---
<article class="post-container post-container--single">
<header class="post-header">
<div class="post-meta">
<time datetime="{{ page.date | date: "%-d %b %Y" }}" class="post-meta__date date">{{ page.date | date: "%-d %b %Y" }}</time> • <span class="post-meta__tags">on {% for tag in page.tags %}<a href="{{ site.baseurl }}tags/#{{ tag }}">{{ tag }}</a> {% endfor %}</span>
</div>
<h1 class="post-title">{{ page.title }}</h1>
</header>
<section class="post">
{{ content }}
</section>
{% if page.comments != false and site.disqus_shortname %}<section id="disqus_thread"></section><!-- /#disqus_thread -->{% endif %}
</article>
<div id="disqus_thread"></div>
<script>
/**
* RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
* LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables */
/*
var disqus_config = function () {
this.page.url = PAGE_URL; // Replace PAGE_URL with your page's canonical URL variable
this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
};
*/
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = '//0xdeadpool-1.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:legacy-field/dev/index.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li class="active"><a href="">8.4.dev / contrib:legacy-field dev</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../../..">« Up</a>
<h1>contrib:legacy-field <small>dev</small></h1>
<table class="table table-striped text-center">
<thead>
<tr>
<td>Date</td>
<td>Time</td>
<td>Relative</td>
<td>Status</td>
</tr>
</thead>
<tbody>
<tr>
<td>2015-01-30</td>
<td>03:04:02</td>
<td><script>document.write(moment("2015-01-30 03:04:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-30_03-04-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2015-01-07</td>
<td>03:53:32</td>
<td><script>document.write(moment("2015-01-07 03:53:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2015-01-07_03-53-32.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-12</td>
<td>08:42:09</td>
<td><script>document.write(moment("2014-12-12 08:42:09 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-12_08-42-09.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-12-04</td>
<td>23:21:02</td>
<td><script>document.write(moment("2014-12-04 23:21:02 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-12-04_23-21-02.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-29</td>
<td>09:29:33</td>
<td><script>document.write(moment("2014-11-29 09:29:33 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-29_09-29-33.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-20</td>
<td>13:31:52</td>
<td><script>document.write(moment("2014-11-20 13:31:52 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="info"><a href="2014-11-20_13-31-52.html">Not compatible with this Coq</a></td>
</tr>
<tr>
<td>2014-11-18</td>
<td>23:44:23</td>
<td><script>document.write(moment("2014-11-18 23:44:23 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td>
<td class="danger"><a href="2014-11-18_23-44-23.html">Lint error</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
Documentation/checkstyle/xref/tools/OneLineException.html | kapistelijaKrisu/JavaPaint | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_GB" lang="en_GB">
<head><meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>OneLineException xref</title>
<link type="text/css" rel="stylesheet" href="../stylesheet.css" />
</head>
<body>
<div id="overview"><a href="../../apidocs/tools/OneLineException.html">View Javadoc</a></div><pre>
<a class="jxr_linenumber" name="L1" href="#L1">1</a> <strong class="jxr_keyword">package</strong> tools;
<a class="jxr_linenumber" name="L2" href="#L2">2</a>
<a class="jxr_linenumber" name="L3" href="#L3">3</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../tools/OneLineException.html">OneLineException</a> {
<a class="jxr_linenumber" name="L4" href="#L4">4</a>
<a class="jxr_linenumber" name="L5" href="#L5">5</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> <strong class="jxr_keyword">void</strong> throwIfIsNull(Object target) {
<a class="jxr_linenumber" name="L6" href="#L6">6</a> <strong class="jxr_keyword">if</strong> (target == <strong class="jxr_keyword">null</strong>) {
<a class="jxr_linenumber" name="L7" href="#L7">7</a> <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> NullPointerException();
<a class="jxr_linenumber" name="L8" href="#L8">8</a> }
<a class="jxr_linenumber" name="L9" href="#L9">9</a> }
<a class="jxr_linenumber" name="L10" href="#L10">10</a> }
</pre>
<hr/>
<div id="footer">Copyright © 2017. All rights reserved.</div>
</body>
</html>
|
src/stupid/03-UNT.html | Graion/solid-tech-talk | <section>
<section>
<h2 class="red">Untestability</h2>
<p class="fragment fade-in">
Testear no debería ser complicado.
</p>
</section>
<section>
<h4>
Aún así hay gente que no cubre apropiadamente su código con tests.
</h4>
<h4 class="fragment fade-in">
¿Por qué?
</h4>
<p class="fragment fade-in">
<b>Tight Coupling</b>.
</p>
</section>
<section >
<p>
Cuando no escribes tests porque “no tenes tiempo” la causa real probablemente es que tu código sea malo, si tu código es de calidad entonces puedes testearlo de forma rápida.
</p>
</section>
<section >
<img src="http://www.quickmeme.com/img/a7/a7f7f520b1746d392c5676d1bd856f5dd4ce0c3f59d1e43a91534b3feabc748b.jpg">
</section>
</section>
|
WiccanSharing/app/commons-net-3.6/apidocs/org/apache/commons/net/time/class-use/TimeUDPClient.html | acvcmaster/Projeto-Eng.-Unificada | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Uses of Class org.apache.commons.net.time.TimeUDPClient (Apache Commons Net 3.6 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.commons.net.time.TimeUDPClient (Apache Commons Net 3.6 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/commons/net/time/TimeUDPClient.html" title="class in org.apache.commons.net.time">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/commons/net/time/class-use/TimeUDPClient.html" target="_top">Frames</a></li>
<li><a href="TimeUDPClient.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.commons.net.time.TimeUDPClient" class="title">Uses of Class<br>org.apache.commons.net.time.TimeUDPClient</h2>
</div>
<div class="classUseContainer">No usage of org.apache.commons.net.time.TimeUDPClient</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../org/apache/commons/net/time/TimeUDPClient.html" title="class in org.apache.commons.net.time">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../index.html?org/apache/commons/net/time/class-use/TimeUDPClient.html" target="_top">Frames</a></li>
<li><a href="TimeUDPClient.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © 2001–2017 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
doc/jdk6_cn/java/io/class-use/SyncFailedException.html | piterlin/piterlin.github.io | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0-beta2) on Mon Mar 19 19:27:36 CST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
类 java.io.SyncFailedException 的使用 (Java Platform SE 6)
</TITLE><script>var _hmt = _hmt || [];(function() {var hm = document.createElement("script");hm.src = "//hm.baidu.com/hm.js?dd1361ca20a10cc161e72d4bc4fef6df";var s = document.getElementsByTagName("script")[0];s.parentNode.insertBefore(hm, s);})();</script>
<META NAME="date" CONTENT="2007-03-19">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="类 java.io.SyncFailedException 的使用 (Java Platform SE 6)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../java/io/SyncFailedException.html" title="java.io 中的类"><FONT CLASS="NavBarFont1"><B>类</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>使用</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
上一个
下一个</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?java/io//class-useSyncFailedException.html" target="_top"><B>框架</B></A>
<A HREF="SyncFailedException.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>类 java.io.SyncFailedException<br>的使用</B></H2>
</CENTER>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
使用 <A HREF="../../../java/io/SyncFailedException.html" title="java.io 中的类">SyncFailedException</A> 的软件包</FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#java.io"><B>java.io</B></A></TD>
<TD>通过数据流、序列化和文件系统提供系统输入和输出。 </TD>
</TR>
</TABLE>
<P>
<A NAME="java.io"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<A HREF="../../../java/io/package-summary.html">java.io</A> 中 <A HREF="../../../java/io/SyncFailedException.html" title="java.io 中的类">SyncFailedException</A> 的使用</FONT></TH>
</TR>
</TABLE>
<P>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left" COLSPAN="2">抛出 <A HREF="../../../java/io/SyncFailedException.html" title="java.io 中的类">SyncFailedException</A> 的 <A HREF="../../../java/io/package-summary.html">java.io</A> 中的方法</FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B>FileDescriptor.</B><B><A HREF="../../../java/io/FileDescriptor.html#sync()">sync</A></B>()</CODE>
<BR>
强制所有系统缓冲区与基础设备同步。</TD>
</TR>
</TABLE>
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>软件包</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../java/io/SyncFailedException.html" title="java.io 中的类"><FONT CLASS="NavBarFont1"><B>类</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>使用</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>树</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>已过时</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>索引</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>帮助</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
<b>Java<sup><font size=-2>TM</font></sup> Platform<br>Standard Ed. 6</b></EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
上一个
下一个</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?java/io//class-useSyncFailedException.html" target="_top"><B>框架</B></A>
<A HREF="SyncFailedException.html" target="_top"><B>无框架</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>所有类</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
<font size="-1"><a href="http://bugs.sun.com/services/bugreport/index.jsp">提交错误或意见</a><br>有关更多的 API 参考资料和开发人员文档,请参阅 <a href="http://java.sun.com/javase/6/webnotes/devdocs-vs-specs.html">Java SE 开发人员文档</a>。该文档包含更详细的、面向开发人员的描述,以及总体概述、术语定义、使用技巧和工作代码示例。 <p>版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守<a href="http://java.sun.com/javase/6/docs/legal/license.html">许可证条款</a>。另请参阅<a href="http://java.sun.com/docs/redist.html">文档重新分发政策</a>。</font>
</BODY>
</HTML>
|
clean/Linux-x86_64-4.05.0-2.0.1/released/8.10.2/relation-algebra/1.7.6.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>relation-algebra: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.2 / relation-algebra - 1.7.6</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
relation-algebra
<small>
1.7.6
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-09 17:44:16 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-09 17:44:16 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.05.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.05.0 Official 4.05.0 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
synopsis: "Relation Algebra and KAT in Coq"
maintainer: "Damien Pous <Damien.Pous@ens-lyon.fr>"
homepage: "http://perso.ens-lyon.fr/damien.pous/ra/"
dev-repo: "git+https://github.com/damien-pous/relation-algebra.git"
bug-reports: "https://github.com/damien-pous/relation-algebra/issues"
license: "LGPL-3.0-or-later"
depends: [
"ocaml"
"coq" {>= "8.14"}
]
depopts: [ "coq-mathcomp-ssreflect" "coq-aac-tactics" ]
build: [
["sh" "-exc" "./configure --%{coq-mathcomp-ssreflect:enable}%-ssr --%{coq-aac-tactics:enable}%-aac"]
[make "-j%{jobs}%"]
]
install: [make "install"]
tags: [
"keyword:relation algebra"
"keyword:Kleene algebra with tests"
"keyword:KAT"
"keyword:allegories"
"keyword:residuated structures"
"keyword:automata"
"keyword:regular expressions"
"keyword:matrices"
"category:Mathematics/Algebra"
"logpath:RelationAlgebra"
]
authors: [
"Damien Pous <Damien.Pous@ens-lyon.fr>"
"Christian Doczkal <christian.doczkal@ens-lyon.fr>"
]
url {
src:
"https://github.com/damien-pous/relation-algebra/archive/refs/tags/v.1.7.6.tar.gz"
checksum: "sha512=b771e3a861ceed6b585491f2e5a7cc59444d1532608457cef08f7c5e8d78528a28e1e871503885a4277e8bae4e99d80d9ebea315bf05b362b7d6c750c865390f"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-relation-algebra.1.7.6 coq.8.10.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.10.2).
The following dependencies couldn't be met:
- coq-relation-algebra -> coq >= 8.14
Your request can't be satisfied:
- No available version of coq satisfies the constraints
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-relation-algebra.1.7.6</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
e2b306c/html/functions_func_f.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>V8 API Reference Guide for node.js v8.3.0: Class Members - Functions</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v8.3.0
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li class="current"><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="navrow3" class="tabs2">
<ul class="tablist">
<li><a href="functions.html"><span>All</span></a></li>
<li class="current"><a href="functions_func.html"><span>Functions</span></a></li>
<li><a href="functions_vars.html"><span>Variables</span></a></li>
<li><a href="functions_type.html"><span>Typedefs</span></a></li>
<li><a href="functions_enum.html"><span>Enumerations</span></a></li>
</ul>
</div>
<div id="navrow4" class="tabs3">
<ul class="tablist">
<li><a href="functions_func.html#index_a"><span>a</span></a></li>
<li><a href="functions_func_b.html#index_b"><span>b</span></a></li>
<li><a href="functions_func_c.html#index_c"><span>c</span></a></li>
<li><a href="functions_func_d.html#index_d"><span>d</span></a></li>
<li><a href="functions_func_e.html#index_e"><span>e</span></a></li>
<li class="current"><a href="functions_func_f.html#index_f"><span>f</span></a></li>
<li><a href="functions_func_g.html#index_g"><span>g</span></a></li>
<li><a href="functions_func_h.html#index_h"><span>h</span></a></li>
<li><a href="functions_func_i.html#index_i"><span>i</span></a></li>
<li><a href="functions_func_j.html#index_j"><span>j</span></a></li>
<li><a href="functions_func_l.html#index_l"><span>l</span></a></li>
<li><a href="functions_func_m.html#index_m"><span>m</span></a></li>
<li><a href="functions_func_n.html#index_n"><span>n</span></a></li>
<li><a href="functions_func_o.html#index_o"><span>o</span></a></li>
<li><a href="functions_func_p.html#index_p"><span>p</span></a></li>
<li><a href="functions_func_r.html#index_r"><span>r</span></a></li>
<li><a href="functions_func_s.html#index_s"><span>s</span></a></li>
<li><a href="functions_func_t.html#index_t"><span>t</span></a></li>
<li><a href="functions_func_u.html#index_u"><span>u</span></a></li>
<li><a href="functions_func_v.html#index_v"><span>v</span></a></li>
<li><a href="functions_func_w.html#index_w"><span>w</span></a></li>
<li><a href="functions_func_0x7e.html#index_0x7e"><span>~</span></a></li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="contents">
 
<h3><a class="anchor" id="index_f"></a>- f -</h3><ul>
<li>FindInstanceInPrototypeChain()
: <a class="el" href="classv8_1_1Object.html#ae2ad9fee9db6e0e5da56973ebb8ea2bc">v8::Object</a>
</li>
<li>FindObjectById()
: <a class="el" href="classv8_1_1HeapProfiler.html#ace729f9b7dbb2ca8b2fd67551bf5aae8">v8::HeapProfiler</a>
</li>
<li>FinishDynamicImportFailure()
: <a class="el" href="classv8_1_1DynamicImportResult.html#a93e89ae5cdd45c5e89ce228e2acf4ec7">v8::DynamicImportResult</a>
</li>
<li>FinishDynamicImportSuccess()
: <a class="el" href="classv8_1_1DynamicImportResult.html#a11408dc2744a02a491717049615d8ef2">v8::DynamicImportResult</a>
</li>
<li>For()
: <a class="el" href="classv8_1_1Symbol.html#a8a4a6bdc7d3e31c71cf48fa5cb811fc8">v8::Symbol</a>
</li>
<li>ForApi()
: <a class="el" href="classv8_1_1Private.html#a0ab8628387166b8a8abc6e9b6f40ad55">v8::Private</a>
, <a class="el" href="classv8_1_1Symbol.html#ac3937f0b0b831c4be495a399f26d7301">v8::Symbol</a>
</li>
<li>Free()
: <a class="el" href="classv8_1_1ArrayBuffer_1_1Allocator.html#a419f59d2a103a5a8863809d7977c9cd8">v8::ArrayBuffer::Allocator</a>
</li>
<li>FreeBufferMemory()
: <a class="el" href="classv8_1_1ValueSerializer_1_1Delegate.html#a6cea3e757221e6e15b0fdb708482a176">v8::ValueSerializer::Delegate</a>
</li>
<li>FromJust()
: <a class="el" href="classv8_1_1Maybe.html#a02b19d7fcb7744d8dba3530ef8e14c8c">v8::Maybe< T ></a>
</li>
<li>FromMaybe()
: <a class="el" href="classv8_1_1Maybe.html#a0bcb5fb0d0e92a3f0cc546f11068a8df">v8::Maybe< T ></a>
, <a class="el" href="classv8_1_1MaybeLocal.html#afe1aea162c64385160cc1c83df859eaf">v8::MaybeLocal< T ></a>
</li>
<li>FromSnapshot()
: <a class="el" href="classv8_1_1Context.html#a49a8fb02c04b6ebf4e532755d50d2ff9">v8::Context</a>
, <a class="el" href="classv8_1_1FunctionTemplate.html#acd9eaca4c7d6de89949b8e1c41f4ba46">v8::FunctionTemplate</a>
, <a class="el" href="classv8_1_1ObjectTemplate.html#a7899f31276e3ca69358005e360e3bc27">v8::ObjectTemplate</a>
</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|
app/ui/SortableList.css | spleenboy/pallium | .sortable {
}
.sorting {
}
.waiting {
}
.item {
transition: transform 0.5s ease-in;
}
.droppable {
margin: 5px 0;
height: 0;
border-radius: 4px;
border: 2px solid transparent;
transition: height 0.5s ease-in;
}
.sorting > .droppable {
border: 2px dotted var(--gray);
height: 4rem;
}
.droppable.active {
border: 2px dotted var(--gray);
background-color: var(--lime);
}
.sorting > .item {
transform: opacity(0.5);
}
.draggable {
cursor: move;
}
.draggable:hover {
}
|
clean/Linux-x86_64-4.11.1-2.0.7/released/8.11.2/higman-s/8.7.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>higman-s: Not compatible</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.11.2 / higman-s - 8.7.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
higman-s
<small>
8.7.0
<span class="label label-info">Not compatible</span>
</small>
</h1>
<p><em><script>document.write(moment("2021-04-14 05:24:55 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-04-14 05:24:55 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.11.2 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.11.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.11.1 Official release 4.11.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/higman-s"
license: "LGPL"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/HigmanS"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [ "keyword: Higman's lemma" "keyword: well quasi-ordering" "category: Mathematics/Combinatorics and Graph Theory" "date: 2007-09-14" ]
authors: [ "William Delobel <william.delobel@lif.univ-mrs.fr>" ]
bug-reports: "https://github.com/coq-contribs/higman-s/issues"
dev-repo: "git+https://github.com/coq-contribs/higman-s.git"
synopsis: "Higman's lemma on an unrestricted alphabet"
description:
"This proof is more or less the proof given by Monika Seisenberger in \"An Inductive Version of Nash-Williams' Minimal-Bad-Sequence Argument for Higman's Lemma\"."
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/higman-s/archive/v8.7.0.tar.gz"
checksum: "md5=4a37fce81b2c3a3e597a6a1af915a719"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-higman-s.8.7.0 coq.8.11.2</code></dd>
<dt>Return code</dt>
<dd>5120</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.11.2).
The following dependencies couldn't be met:
- coq-higman-s -> coq < 8.8~ -> ocaml < 4.10
base of this switch (use `--unlock-base' to force)
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-higman-s.8.7.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
demo-mqttlens-theme.html | sandro-k/mqtt-lens | <!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Demo MQTTLens Theme</title>
<script src="../webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="../core-style/core-style.html">
<link rel="import" href="mqttlens-theme.html">
</head>
<body>
<template is="auto-binding">
<style>
div {
margin-top: 0.5em;
padding: 0.2em;
color: #FFFFFF;
font-size: 1em;
}
</style>
<template repeat="{{connection in g.mqttlens.mqttConnections}}">
<core-style ref="mqttlenstheme"></core-style>
<input type="color" value="{{connection.connectionColor}}">
<h1 class="{{connection.connectionID}}">{{connection.connectionID}}</h1>
<div class="{{connection.connectionID}} zero border">{{connection.connectionID}} zero border</div>
<div class="{{connection.connectionID}} badge">{{connection.connectionID}} badge</div>
<div class="message-{{connection.connectionID}} row message">.message-{{connection.connectionID}}.row.message</div>
<template repeat="{{ index, i in g.mqttlens.colorsIndex}}">
<div class="{{connection.connectionID}} {{index}} bg">{{connection.connectionID}} {{index}} bg</div>
</template>
</template>
</template>
<script>
(function() {
addEventListener('polymer-ready', function() {
CoreStyle.g.mqttlens = CoreStyle.g.mqttlens || {};
CoreStyle.g.mqttlens.mqttConnections = CoreStyle.g.mqttlens.mqttConnections || [];
var con1 = new MqttlensConnectionContainer();
con1.connectionID = "lens_bbb";
con1.connectionColor = "#0000FF";
CoreStyle.g.mqttlens.mqttConnections.push(con1);
var con2 = new MqttlensConnectionContainer();
con2.connectionID = "lens_aaa";
con2.connectionColor = "#FF0000";
CoreStyle.g.mqttlens.mqttConnections.push(con2);
var con3 = new MqttlensConnectionContainer();
con3.connectionID = "lens_bbb";
con3.connectionColor = "#0000FF";
CoreStyle.g.mqttlens.mqttConnections.push(con3);
addEventListener('template-bound', function(e) {
console.log("template-bound");
e.target.g = CoreStyle.g;
});
});
})();
</script>
<script src="../underscore/underscore.js"></script>
</body>
</html> |
app/index.html | ekoca/heroku-forecast | <!DOCTYPE html>
<html lang="en-us" ng-app="weatherApp">
<head>
<base href="/">
<title>AngularJS Weather Forecast SPA</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta charset="UTF-8">
<!-- load bootstrap and fontawesome via CDN -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<style>
html, body, input, select, textarea
{
font-size: 1.05em !important;
}
#areaMap, #addressMap
{
height: 400px;
width: 400px;
margin: 10px;
padding: 10px;
}
.angular-google-map-container
{
height: 400px;
}
</style>
<!-- load angular via CDN -->
<script src="//maps.googleapis.com/maps/api/js?sensor=false"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/angular-resource/angular-resource.min.js"></script>
<script src='bower_components/lodash/dist/lodash.min.js'></script>
<script src="bower_components/angular-google-maps/dist/angular-google-maps.min.js"></script>
<script src="bower_components/spin.js/spin.js"></script>
<script src="js/app.js"></script>
<script src="js/route.js"></script>
<script src="js/services.js"></script>
<script src="js/controller.js"></script>
<script src="js/directives.js"></script>
<script src="js/angulartics.js"></script>
<script src="js/angulartics-google-analytics.js"></script>
<script src="js/angular-spinner.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-22614977-2', { 'cookieDomain': 'none' });
//ga('create', 'UA-22614977-2', 'auto');
//ga('send', 'pageview'); --> per documentation we don't need this!
</script>
</head>
<body>
<header>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/" analytics-on analytics-event="Top Nav Left" analytics-category="Home">AngularJS Weather</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/index.html" analytics-on analytics-event="Top Nav Right" analytics-category="Home">
<i class="fa fa-home"></i> Home
</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="container">
<span us-spinner="{radius:30, width:8, length: 16}" spinner-key="spinner"></span>
<div ng-view></div>
</div>
</body>
</html> |
public/scripts/directive/templates/detailHeader.html | jimshute/mobile_portal | <div class="detail-header {{bgColor}}"><div class="img-block"><img ng-src="{{imgUrl || '/images/appFrameworks/java.png'}}"><div class="status-tag {{statusColor}}"><span>{{statusText}}</span></div></div><div class="text-block"><div class="primary-content">{{title}}</div><div class="sub-content"></div></div><style>.navbar-absolute-top {
box-shadow: none;
}</style></div> |
markup/modules/parking/parking.html | zjoin/pn | <section class="parkingPage">
<div class="chooseroomBgBox">
<div class="chooseroomBg chooseroomBg_0"></div>
<div class="mainContainer">
<div class="parkingSelect">
<div class="tpDropdownOne">
<div class="tpselectOne">
{{Icon iconName='mfarrow' className='svg-mfarrow'}}
<select class="ui dropdown mfUiOne">
<option value="0">Выбор паркинга</option>
<option value="1">Место есть</option>
<option value="2">Увы...</option>
</select>
</div>
</div>
<div class="tpDropdownOne">
<div class="tpselectOne">
{{Icon iconName='mfarrow' className='svg-mfarrow'}}
<select class="ui dropdown mfUiOne">
<option value="0">Еще выбор</option>
<option value="1">Выбор за тобой</option>
<option value="2">За тебя уже выбрали</option>
</select>
</div>
</div>
</div>
</div>
</div>
<div class="mainContainer">
<div class="ui breadcrumb breadcrumbFlip breadcrumbParking">
<a class="section">1 сектор</a>
<div class="divider"> / </div>
<a class="section active">2 очередь</a>
<div class="divider"> / </div>
<a class="section">2 дом</a>
<div class="divider"> / </div>
<a class="section">4 этаж</a>
<div class="divider"> / </div>
<a class="section">2 квартира</a>
</div>
<div class="parkingChoosePlace">
<div class="parkingChoosePlaceImg">
<div class="parkingChoosePlaceImgSelf"><img src="%=static=%img/content/parkingImg.png" alt=""></div>
<div class="flipRoomCommonDescrDiv">
<div class="flipplanRoomDescr">
<ul class="flipplanRoomDescr_1">
<li class="flipplanRoomGlobal flipplanRoomRed">Студия</li>
<li class="flipplanRoomGlobal flipplanRoomOrange">1-комнатные</li>
<li class="flipplanRoomGlobal flipplanRoomBlue">2-комнатные</li>
</ul>
<ul>
<li class="flipplanRoomGlobal flipplanRoomGreen">3-комнатные</li>
<li class="flipplanRoomGlobal flipplanRoomBur">4-комнатные</li>
</ul>
</div>
</div>
</div>
<div class="parkingPlace">
<div class="bgInnerRoom">
<h2 class="chooseRoomTitle chooseRoomTitleParking">
Место в паркинге
</h2>
<div class="blocksettings">
<ul class="crFlipIcons crFlipIconsParking">
<li>
{{Icon iconName='note' className='svg-note'}}
<a href="#">Распечатать</a>
</li>
<li>
{{Icon iconName='download' className='svg-download'}}
<a href="">Сохранить в PDF</a>
</li>
<li>
{{Icon iconName='email' className='svg-email'}}
<a href="">Отправить по email</a>
</li>
<li>
{{Icon iconName='star' className='svg-star'}}
<a href="#">В избранное</a>
</li>
</ul>
</div>
<ul class="crFlipDescr">
<li><span>Уровень</span><span>1</span></li>
<li><span>Место</span><span>№ 103</span></li>
<li><span>Стоимость</span><span>от 400 000 руб.</span></li>
</ul>
<div class="showResultDiv showResultDivFlip">
<span class="dottedDottedBorder">Условия покупки</span>
{{>elements/btnCurrentPrice}}
</div>
</div>
</div>
</div>
</div>
</section>
|
app/app.html | kimurakenshi/caravanas | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Caravanas</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<script>
(function() {
if (!process.env.HOT) {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = './dist/style.css';
// HACK: Writing the script path should be done with webpack
document.getElementsByTagName('head')[0].appendChild(link);
}
}());
</script>
</head>
<body>
<div id="root"></div>
<script>
{
const scripts = [];
// Dynamically insert the DLL script in development env in the
// renderer process
if (process.env.NODE_ENV === 'development') {
scripts.push('../dll/vendor.dll.js');
}
// Dynamically insert the bundled app script in the renderer process
const port = process.env.PORT || 1212;
scripts.push(
(process.env.HOT)
? 'http://localhost:' + port + '/dist/bundle.js'
: './dist/bundle.js'
);
document.write(
scripts
.map(script => '<script defer src="' + script + '"><\/script>')
.join('')
);
}
</script>
</body>
</html>
|
paper-mining/nips/nips2012_reference/nips-2012-A_Scalable_CUR_Matrix_Decomposition_Algorithm:_Lower_Time_Complexity_and_Tighter_Bound_reference.html | makerhacker/makerhacker.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>17 nips-2012-A Scalable CUR Matrix Decomposition Algorithm: Lower Time Complexity and Tighter Bound</title>
</head>
<body>
<p><a title="nips" href="../nips_home.html">nips</a> <a title="nips-2012" href="../home/nips2012_home.html">nips2012</a> <a title="nips-2012-17" href="../nips2012/nips-2012-A_Scalable_CUR_Matrix_Decomposition_Algorithm%3A_Lower_Time_Complexity_and_Tighter_Bound.html">nips2012-17</a> <a title="nips-2012-17-reference" href="#">nips2012-17-reference</a> knowledge-graph by maker-knowledge-mining</p><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- maker adsense -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-5027806277543591"
data-ad-slot="4192012269"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<h1>17 nips-2012-A Scalable CUR Matrix Decomposition Algorithm: Lower Time Complexity and Tighter Bound</h1>
<br/><p>Source: <a title="nips-2012-17-pdf" href="http://papers.nips.cc/paper/4745-a-scalable-cur-matrix-decomposition-algorithm-lower-time-complexity-and-tighter-bound.pdf">pdf</a></p><p>Author: Shusen Wang, Zhihua Zhang</p><p>Abstract: The CUR matrix decomposition is an important extension of Nystr¨ m approximao tion to a general matrix. It approximates any data matrix in terms of a small number of its columns and rows. In this paper we propose a novel randomized CUR algorithm with an expected relative-error bound. The proposed algorithm has the advantages over the existing relative-error CUR algorithms that it possesses tighter theoretical bound and lower time complexity, and that it can avoid maintaining the whole data matrix in main memory. Finally, experiments on several real-world datasets demonstrate significant improvement over the existing relative-error algorithms. 1</p><br/>
<h2>reference text</h2><p>[1] Adi Ben-Israel and Thomas N.E. Greville. Generalized Inverses: Theory and Applications. Second Edition. Springer, 2003.</p>
<p>[2] Christos Boutsidis, Petros Drineas, and Malik Magdon-Ismail. Near-optimal column-based matrix reconstruction. CoRR, abs/1103.0995, 2011.</p>
<p>[3] Christos Boutsidis, Petros Drineas, and Malik Magdon-Ismail. Near optimal column-based matrix reconstruction. In Proceedings of the 2011 IEEE 52nd Annual Symposium on Foundations of Computer Science, FOCS ’11, pages 305–314, 2011.</p>
<p>[4] Scott Deerwester, Susan T. Dumais, George W. Furnas, Thomas K. Landauer, and Richard Harshman. Indexing by latent semantic analysis. Journal of The American Society for Information Science, 41(6):391–407, 1990.</p>
<p>[5] Amit Deshpande and Luis Rademacher. Efficient volume sampling for row/column subset selection. In Proceedings of the 2010 IEEE 51st Annual Symposium on Foundations of Computer Science, FOCS ’10, pages 329–338, 2010.</p>
<p>[6] Amit Deshpande, Luis Rademacher, Santosh Vempala, and Grant Wang. Matrix approximation and projective clustering via volume sampling. Theory of Computing, 2(2006):225–247, 2006.</p>
<p>[7] Petros Drineas. Pass-efficient algorithms for approximating large matrices. In In Proceeding of the 14th Annual ACM-SIAM Symposium on Dicrete Algorithms, pages 223–232, 2003. 8</p>
<p>[8] Petros Drineas, Ravi Kannan, and Michael W. Mahoney. Fast monte carlo algorithms for matrices iii: Computing a compressed approximate matrix decomposition. SIAM Journal on Computing, 36(1):184–206, 2006.</p>
<p>[9] Petros Drineas and Michael W. Mahoney. On the Nystr¨ m method for approximating a gram o matrix for improved kernel-based learning. Journal of Machine Learning Research, 6:2153– 2175, 2005.</p>
<p>[10] Petros Drineas, Michael W. Mahoney, and S. Muthukrishnan. Relative-error CUR matrix decompositions. SIAM Journal on Matrix Analysis and Applications, 30(2):844–881, September 2008.</p>
<p>[11] A. Frank and A. Asuncion. UCI machine learning repository, 2010.</p>
<p>[12] S. A. Goreinov, E. E. Tyrtyshnikov, and N. L. Zamarashkin. A theory of pseudoskeleton approximations. Linear Algebra and Its Applications, 261:1–21, 1997.</p>
<p>[13] S. A. Goreinov, N. L. Zamarashkin, and E. E. Tyrtyshnikov. Pseudo-skeleton approximations by matrices of maximal volume. Mathematical Notes, 62(4):619–623, 1997.</p>
<p>[14] Venkatesan Guruswami and Ali Kemal Sinop. Optimal column-based low-rank matrix reconstruction. In Proceedings of the Twenty-Third Annual ACM-SIAM Symposium on Discrete Algorithms, SODA ’12, pages 1207–1214. SIAM, 2012.</p>
<p>[15] Nathan Halko, Per-Gunnar Martinsson, and Joel A. Tropp. Finding structure with randomness: Probabilistic algorithms for constructing approximate matrix decompositions. SIAM Review, 53(2):217–288, 2011.</p>
<p>[16] John Hopcroft and Ravi Kannan. Computer Science Theory for the Information Age. 2012.</p>
<p>[17] Finny G. Kuruvilla, Peter J. Park, and Stuart L. Schreiber. Vector algebra in the analysis of genome-wide expression data. Genome Biology, 3:research0011–research0011.1, 2002.</p>
<p>[18] Lester Mackey, Ameet Talwalkar, and Michael I. Jordan. Divide-and-conquer matrix factorization. In Advances in Neural Information Processing Systems 24. 2011.</p>
<p>[19] Michael W. Mahoney and Petros Drineas. CUR matrix decompositions for improved data analysis. Proceedings of the National Academy of Sciences, 106(3):697–702, 2009.</p>
<p>[20] L. Sirovich and M. Kirby. Low-dimensional procedure for the characterization of human faces. Journal of the Optical Society of America A, 4(3):519–524, Mar 1987.</p>
<p>[21] Matthew Turk and Alex Pentland. Eigenfaces for recognition. Journal of Cognitive Neuroscience, 3(1):71–86, 1991.</p>
<p>[22] Eugene E. Tyrtyshnikov. Incomplete cross approximation in the mosaic-skeleton method. Computing, 64:367–380, 2000. 9</p>
<br/>
<br/><br/><br/>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-48522588-1', 'makerhacker.github.io');
ga('send', 'pageview');
</script>
</body>
</html>
|
articles/2014/02/27/total-terminal.html | Nerian/Nerian.github.io | <!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>Total Terminal</title>
<meta name="description" content="You know that using the right tool for the job can be the difference between spending 10 minutes or a complete hour to finish the same task. This article is ...">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="https://nerian.es/articles/2014/02/27/total-terminal.html">
<link rel="alternate" type="application/rss+xml" title="Gonzalo Rodríguez-Baltanás Díaz" href="https://nerian.es/feed.xml">
<link rel="shortcut icon" href="/assets/images/logo-128x98.png" type="image/x-icon">
<link rel="stylesheet" href="/assets/icons-mind/style.css">
<link rel="stylesheet" href="/assets/icon54/style.css">
<link rel="stylesheet" href="/assets/web/assets/mobirise-icons/mobirise-icons.css">
<link rel="stylesheet" href="/assets/tether/tether.min.css">
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap-grid.min.css">
<link rel="stylesheet" href="/assets/bootstrap/css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="/assets/socicon/css/styles.css">
<link rel="stylesheet" href="/assets/dropdown/css/style.css">
<link rel="stylesheet" href="/assets/gdpr-plugin/gdpr-styles.css">
<link rel="stylesheet" href="/assets/theme/css/style.css">
<link rel="stylesheet" href="/assets/mobirise/css/mbr-additional.css" type="text/css">
</head>
<body>
<section once="" class="cid-rihJvwNUYU" id="footer6-1c">
<div class="container">
<div class="media-container-row align-center mbr-white">
<div class="col-12">
<p class="mbr-text mb-0 mbr-fonts-style display-7">
© Copyright 2019 Gonzalo Rodríguez-Baltanás Díaz - All Rights Reserved
</p>
</div>
</div>
</div>
</section>
<section class="menu cid-rihJs4JJB3" once="menu" id="menu2-1b">
<nav class="navbar navbar-expand beta-menu navbar-dropdown align-items-center navbar-fixed-top navbar-toggleable-sm">
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<div class="hamburger">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</button>
<div class="menu-logo">
<div class="navbar-brand">
<span class="navbar-caption-wrap"><a class="navbar-caption text-black display-4" href="/">
Gonzalo Rodríguez-Baltanás Díaz</a></span>
</div>
</div>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav nav-dropdown nav-right" data-app-modern-menu="true"><li class="nav-item">
<a class="nav-link link text-black display-4" href="/index.html">
Blog</a>
</li><li class="nav-item"><a class="nav-link link text-black display-4" href="/about.html">
About</a></li><li class="nav-item">
<a class="nav-link link text-black display-4" href="/hire_me.html">
Hire me</a>
</li><li class="nav-item"><a class="nav-link link text-black display-4" href="/cv.html">CV</a></li><li class="nav-item"><a class="nav-link link text-black display-4" href="/research.html">
Research</a></li>
<li class="nav-item"><a class="nav-link link text-black display-4" href="/portfolio.html">
Portfolio</a></li></ul>
</div>
</nav>
</section>
<section class="mbr-section content4 cid-riqXsCvrR2" id="content4-1d">
<div class="container">
<div class="media-container-row">
<div class="title col-12 col-md-8">
<h2 class="align-center pb-3 mbr-fonts-style display-2">
Total Terminal
</h2>
<h3 class="mbr-section-subtitle align-center mbr-light mbr-fonts-style display-5">
</h3>
</div>
</div>
</div>
</section>
<section class="mbr-section article content1 cid-riqXtvTuqk" id="content1-1e">
<div class="container">
<div class="media-container-row">
<div class="mbr-text col-12 mbr-fonts-style display-7 col-md-8">
<p>As a developer you probably access your terminal hundreds of times a day. If you read the <a href="/articles/2014/02/23/how-to-multitask-like-a-pro.html">first article</a> on how to be a productive developer you already have each application on a space; and one space per application. So in order to get to your Terminal you need to switch spaces. One space.</p>
<p>But there is a better way. What if you could have your Terminal in the space that you are right now, but only visible when you need it? Eliminating context switching is the key to regain your focus and your ability to solve problems real quick. You can have that with one single tool: Total Terminal.</p>
<p>It starts when you computer starts but it remains invisible until you need it. When you need it, you need only to press a shortcut key and a terminal appears at the top of your screen. One keystroke and it’s gone.</p>
<p>Start saving time now: <a href="http://totalterminal.binaryage.com/">http://totalterminal.binaryage.com/</a></p>
<p>This article is part of a series on how to create the best development environment. Subscribe so you don’t miss any chapter!</p>
</div>
</div>
</div>
</section>
<section class="cid-riqXzGtrvV" id="social-buttons1-1f">
<div class="container">
<div class="media-container-row">
<div class="col-md-8 align-center">
<h2 class="pb-3 mbr-section-title mbr-fonts-style display-2">
SHARE THIS PAGE!
</h2>
<div>
<div class="mbr-social-likes" data-counters="false">
<span class="btn btn-social facebook mx-2" title="Share link on Facebook">
<i class="socicon socicon-facebook"></i>
</span>
<span class="btn btn-social twitter mx-2" title="Share link on Twitter">
<i class="socicon socicon-twitter"></i>
</span>
<span class="btn btn-social plusone mx-2" title="Share link on Google+">
<i class="socicon socicon-googleplus"></i>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="mbr-section content4 cid-riqXsCvrR2" id="content4-1d">
<div class="container">
<div class="media-container-row">
<div class="mbr-text col-12 mbr-fonts-style display-7 col-md-12">
<div id="disqus_thread"></div>
</div>
</div>
</div>
</section>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'nerian-blog'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<section once="" class="cid-rihJvwNUYU" id="footer6-6">
<div class="container">
<div class="media-container-row align-center mbr-white">
<div class="col-12">
<p class="mbr-text mb-0 mbr-fonts-style display-7">
© Copyright 2019 Gonzalo Rodríguez-Baltanás Díaz - All Rights Reserved
</p>
</div>
</div>
</div>
</section>
<script src="/assets/web/assets/jquery/jquery.min.js"></script>
<script src="/assets/popper/popper.min.js"></script>
<script src="/assets/tether/tether.min.js"></script>
<script src="/assets/bootstrap/js/bootstrap.min.js"></script>
<script src="/assets/smoothscroll/smooth-scroll.js"></script>
<script src="/assets/dropdown/js/script.min.js"></script>
<script src="/assets/touchswipe/jquery.touch-swipe.min.js"></script>
<script src="/assets/parallax/jarallax.min.js"></script>
<script src="/assets/viewportchecker/jquery.viewportchecker.js"></script>
<script src="/assets/sociallikes/social-likes.js"></script>
<script src="/assets/theme/js/script.js"></script>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4f3c0864cb25bc666100000b');
t.setAttribute('data-track-path', 'https://track.gaug.es/track.gif');
t.src = 'https://d2fuc4clr7gvcn.cloudfront.net/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html> |
frontend/projects/covid/src/index.html | kenjones21/kenWeaver | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Covid</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
</body>
</html>
|
dist/progress.html | r4nd1/template-cpanel-metis | <!doctype html>
<html class="no-js">
<head>
<meta charset="UTF-8">
<title>Progress</title>
<!--IE Compatibility modes-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--Mobile first-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link rel="stylesheet" href="assets/lib/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/lib/font-awesome/css/font-awesome.min.css">
<!-- Metis core stylesheet -->
<link rel="stylesheet" href="assets/css/main.min.css">
<!-- metisMenu stylesheet -->
<link rel="stylesheet" href="assets/lib/metismenu/metisMenu.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="assets/lib/html5shiv/html5shiv.js"></script>
<script src="assets/lib/respond/respond.min.js"></script>
<![endif]-->
<!--For Development Only. Not required -->
<script>
less = {
env: "development",
relativeUrls: false,
rootpath: "../assets/"
};
</script>
<link rel="stylesheet" href="assets/css/style-switcher.css">
<link rel="stylesheet/less" type="text/css" href="assets/css/less/theme.less">
<script src="assets/lib/less/less-1.7.5.min.js"></script>
<!--Modernizr 2.8.2-->
<script src="assets/lib/modernizr/modernizr.min.js"></script>
</head>
<body class=" ">
<div class="bg-dark dk" id="wrap">
<div id="top">
<!-- .navbar -->
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<header class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="index.html" class="navbar-brand">
<img src="assets/img/logo.png" alt="">
</a>
</header>
<div class="topnav">
<div class="btn-group">
<a data-placement="bottom" data-original-title="Fullscreen" data-toggle="tooltip" class="btn btn-default btn-sm" id="toggleFullScreen">
<i class="glyphicon glyphicon-fullscreen"></i>
</a>
</div>
<div class="btn-group">
<a data-placement="bottom" data-original-title="E-mail" data-toggle="tooltip" class="btn btn-default btn-sm">
<i class="fa fa-envelope"></i>
<span class="label label-warning">5</span>
</a>
<a data-placement="bottom" data-original-title="Messages" href="#" data-toggle="tooltip" class="btn btn-default btn-sm">
<i class="fa fa-comments"></i>
<span class="label label-danger">4</span>
</a>
<a data-toggle="modal" data-original-title="Help" data-placement="bottom" class="btn btn-default btn-sm" href="#helpModal">
<i class="fa fa-question"></i>
</a>
</div>
<div class="btn-group">
<a href="login.html" data-toggle="tooltip" data-original-title="Logout" data-placement="bottom" class="btn btn-metis-1 btn-sm">
<i class="fa fa-power-off"></i>
</a>
</div>
<div class="btn-group">
<a data-placement="bottom" data-original-title="Show / Hide Left" data-toggle="tooltip" class="btn btn-primary btn-sm toggle-left" id="menu-toggle">
<i class="fa fa-bars"></i>
</a>
<a data-placement="bottom" data-original-title="Show / Hide Right" data-toggle="tooltip" class="btn btn-default btn-sm toggle-right"> <span class="glyphicon glyphicon-comment"></span> </a>
</div>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<!-- .nav -->
<ul class="nav navbar-nav">
<li> <a href="dashboard.html">Dashboard</a> </li>
<li> <a href="table.html">Tables</a> </li>
<li> <a href="file.html">File Manager</a> </li>
<li class='dropdown '>
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Form Elements
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li> <a href="form-general.html">General</a> </li>
<li> <a href="form-validation.html">Validation</a> </li>
<li> <a href="form-wysiwyg.html">WYSIWYG</a> </li>
<li> <a href="form-wizard.html">Wizard & File Upload</a> </li>
</ul>
</li>
</ul><!-- /.nav -->
</div>
</div><!-- /.container-fluid -->
</nav><!-- /.navbar -->
<header class="head">
<div class="search-bar">
<form class="main-search" action="">
<div class="input-group">
<input type="text" class="form-control" placeholder="Live Search ...">
<span class="input-group-btn">
<button class="btn btn-primary btn-sm text-muted" type="button">
<i class="fa fa-search"></i>
</button>
</span>
</div>
</form><!-- /.main-search -->
</div><!-- /.search-bar -->
<div class="main-bar">
<h3>
<i class="fa fa-file"></i> Progress</h3>
</div><!-- /.main-bar -->
</header><!-- /.head -->
</div><!-- /#top -->
<div id="left">
<div class="media user-media bg-dark dker">
<div class="user-media-toggleHover">
<span class="fa fa-user"></span>
</div>
<div class="user-wrapper bg-dark">
<a class="user-link" href="">
<img class="media-object img-thumbnail user-img" alt="User Picture" src="assets/img/user.gif">
<span class="label label-danger user-label">16</span>
</a>
<div class="media-body">
<h5 class="media-heading">Archie</h5>
<ul class="list-unstyled user-info">
<li> <a href="">Administrator</a> </li>
<li>Last Access :
<br>
<small>
<i class="fa fa-calendar"></i> 16 Mar 16:32</small>
</li>
</ul>
</div>
</div>
</div>
<!-- #menu -->
<ul id="menu" class="bg-blue dker">
<li class="nav-header">Menu</li>
<li class="nav-divider"></li>
<li class="">
<a href="dashboard.html">
<i class="fa fa-dashboard"></i><span class="link-title"> Dashboard</span>
</a>
</li>
<li class="">
<a href="javascript:;">
<i class="fa fa-building "></i>
<span class="link-title">Layouts</span>
<span class="fa arrow"></span>
</a>
<ul>
<li>
<a href="boxed.html">
<i class="fa fa-angle-right"></i> Boxed Layout</a>
</li>
<li>
<a href="fixed-header-boxed.html">
<i class="fa fa-angle-right"></i> Boxed Layout & Fixed Header</a>
</li>
<li>
<a href="fixed-header-fixed-mini-sidebar.html">
<i class="fa fa-angle-right"></i> Fixed Header and Fixed Mini Menu</a>
</li>
<li>
<a href="fixed-header-menu.html">
<i class="fa fa-angle-right"></i> Fixed Header & Menu</a>
</li>
<li>
<a href="fixed-header-mini-sidebar.html">
<i class="fa fa-angle-right"></i> Fixed Header & Mini Menu</a>
</li>
<li>
<a href="fixed-header.html">
<i class="fa fa-angle-right"></i> Fixed Header</a>
</li>
<li>
<a href="fixed-menu-boxed.html">
<i class="fa fa-angle-right"></i> Boxed Layout & Fixed Menu</a>
</li>
<li>
<a href="fixed-menu.html">
<i class="fa fa-angle-right"></i> Fixed Menu</a>
</li>
<li>
<a href="fixed-mini-sidebar.html">
<i class="fa fa-angle-right"></i> Fixed & Mini Menu</a>
</li>
<li>
<a href="fxhmoxed.html">
<i class="fa fa-angle-right"></i> Boxed and Fixed Header & Nav</a>
</li>
<li>
<a href="no-header-sidebar.html">
<i class="fa fa-angle-right"></i> No Header & Sidebars</a>
</li>
<li>
<a href="no-header.html">
<i class="fa fa-angle-right"></i> No Header</a>
</li>
<li>
<a href="no-left-right-sidebar.html">
<i class="fa fa-angle-right"></i> No Left & Right Sidebar</a>
</li>
<li>
<a href="no-left-sidebar-main-search.html">
<i class="fa fa-angle-right"></i> No Left Sidebar & Main Search</a>
</li>
<li>
<a href="no-left-sidebar.html">
<i class="fa fa-angle-right"></i> No Left Sidebar</a>
</li>
<li>
<a href="no-main-search.html">
<i class="fa fa-angle-right"></i> No Main Search</a>
</li>
<li>
<a href="no-right-sidebar.html">
<i class="fa fa-angle-right"></i> No Right Sidebar</a>
</li>
<li>
<a href="sm.html">
<i class="fa fa-angle-right"></i> Mini Sidebar</a>
</li>
</ul>
</li>
<li class="active">
<a href="javascript:;">
<i class="fa fa-tasks"></i>
<span class="link-title">Components</span>
<span class="fa arrow"></span>
</a>
<ul>
<li>
<a href="bgcolor.html">
<i class="fa fa-angle-right"></i> Bg Color</a>
</li>
<li>
<a href="bgimage.html">
<i class="fa fa-angle-right"></i> Bg Image</a>
</li>
<li>
<a href="button.html">
<i class="fa fa-angle-right"></i> Buttons</a>
</li>
<li>
<a href="icon.html">
<i class="fa fa-angle-right"></i> Icon</a>
</li>
<li>
<a href="pricing.html">
<i class="fa fa-angle-right"></i> Pricing Table</a>
</li>
<li>
<a href="progress.html">
<i class="fa fa-angle-right"></i> Progress</a>
</li>
</ul>
</li>
<li class="">
<a href="javascript:;">
<i class="fa fa-pencil"></i>
<span class="link-title">
Forms
</span>
<span class="fa arrow"></span>
</a>
<ul>
<li>
<a href="form-general.html">
<i class="fa fa-angle-right"></i> Form General</a>
</li>
<li>
<a href="form-validation.html">
<i class="fa fa-angle-right"></i> Form Validation</a>
</li>
<li>
<a href="form-wizard.html">
<i class="fa fa-angle-right"></i> Form Wizard</a>
</li>
<li>
<a href="form-wysiwyg.html">
<i class="fa fa-angle-right"></i> Form WYSIWYG</a>
</li>
</ul>
</li>
<li>
<a href="table.html">
<i class="fa fa-table"></i>
<span class="link-title">Tables</span>
</a>
</li>
<li>
<a href="file.html">
<i class="fa fa-file"></i>
<span class="link-title">
File Manager
</span>
</a>
</li>
<li>
<a href="typography.html">
<i class="fa fa-font"></i>
<span class="link-title">
Typography
</span>
</a>
</li>
<li>
<a href="maps.html">
<i class="fa fa-map-marker"></i><span class="link-title">
Maps
</span>
</a>
</li>
<li>
<a href="chart.html">
<i class="fa fa fa-bar-chart-o"></i>
<span class="link-title">
Charts
</span>
</a>
</li>
<li>
<a href="calendar.html">
<i class="fa fa-calendar"></i>
<span class="link-title">
Calendar
</span>
</a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-exclamation-triangle"></i>
<span class="link-title">
Error Pages
</span>
<span class="fa arrow"></span>
</a>
<ul>
<li>
<a href="403.html">
<i class="fa fa-angle-right"></i> 403</a>
</li>
<li>
<a href="404.html">
<i class="fa fa-angle-right"></i> 404</a>
</li>
<li>
<a href="405.html">
<i class="fa fa-angle-right"></i> 405</a>
</li>
<li>
<a href="500.html">
<i class="fa fa-angle-right"></i> 500</a>
</li>
<li>
<a href="503.html">
<i class="fa fa-angle-right"></i> 503</a>
</li>
<li>
<a href="offline.html">
<i class="fa fa-angle-right"></i> offline</a>
</li>
<li>
<a href="countdown.html">
<i class="fa fa-angle-right"></i> Under Construction</a>
</li>
</ul>
</li>
<li>
<a href="grid.html">
<i class="fa fa-columns"></i>
<span class="link-title">
Grid
</span>
</a>
</li>
<li>
<a href="blank.html">
<i class="fa fa-square-o"></i>
<span class="link-title">
Blank Page
</span>
</a>
</li>
<li class="nav-divider"></li>
<li>
<a href="login.html">
<i class="fa fa-sign-in"></i>
<span class="link-title">
Login Page
</span>
</a>
</li>
<li>
<a href="javascript:;">
<i class="fa fa-code"></i>
<span class="link-title">
Unlimited Level Menu
</span>
<span class="fa arrow"></span>
</a>
<ul>
<li>
<a href="javascript:;">Level 1 <span class="fa arrow"></span> </a>
<ul>
<li> <a href="javascript:;">Level 2</a> </li>
<li> <a href="javascript:;">Level 2</a> </li>
<li>
<a href="javascript:;">Level 2 <span class="fa arrow"></span> </a>
<ul>
<li> <a href="javascript:;">Level 3</a> </li>
<li> <a href="javascript:;">Level 3</a> </li>
<li>
<a href="javascript:;">Level 3 <span class="fa arrow"></span> </a>
<ul>
<li> <a href="javascript:;">Level 4</a> </li>
<li> <a href="javascript:;">Level 4</a> </li>
<li>
<a href="javascript:;">Level 4 <span class="fa arrow"></span> </a>
<ul>
<li> <a href="javascript:;">Level 5</a> </li>
<li> <a href="javascript:;">Level 5</a> </li>
<li> <a href="javascript:;">Level 5</a> </li>
</ul>
</li>
</ul>
</li>
<li> <a href="javascript:;">Level 4</a> </li>
</ul>
</li>
<li> <a href="javascript:;">Level 2</a> </li>
</ul>
</li>
<li> <a href="javascript:;">Level 1</a> </li>
<li>
<a href="javascript:;">Level 1 <span class="fa arrow"></span> </a>
<ul>
<li> <a href="javascript:;">Level 2</a> </li>
<li> <a href="javascript:;">Level 2</a> </li>
<li> <a href="javascript:;">Level 2</a> </li>
</ul>
</li>
</ul>
</li>
</ul><!-- /#menu -->
</div><!-- /#left -->
<div id="content">
<div class="outer">
<div class="inner bg-light lter">
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<h5>Basic Progress Bar
<small>Click the bar for show source code</small>
</h5>
<div class="toolbar">
<div class="progress mini">
<div class="progress-bar" style="width: 43%;"></div>
</div>
</div><!-- /.toolbar -->
</header>
<div class="body">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div><!-- /.progress -->
<div class="progress">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div><!-- /.progress -->
<div class="progress">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.body -->
</div><!-- /.box -->
</div><!-- /.col-lg-12 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<h5>Striped Progress Bar
<small>Click the bar for show source code</small>
</h5>
<div class="toolbar">
<div class="progress mini progress-striped">
<div class="progress-bar" style="width: 43%;"></div>
</div>
</div><!-- /.toolbar -->
</header>
<div class="body">
<div class="progress progress-striped">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.body -->
</div><!-- /.box -->
</div><!-- /.col-lg-12 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<h5>Animated Striped Progress Bar
<small>Click the bar for show source code</small>
</h5>
<div class="toolbar">
<div class="progress mini progress-striped active">
<div class="progress-bar" style="width: 43%;"></div>
</div>
</div><!-- /.toolbar -->
</header>
<div class="body">
<div class="progress progress-striped active">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
<span class="sr-only">60% Complete (warning)</span>
</div>
</div><!-- /.progress -->
<div class="progress progress-striped active">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
<span class="sr-only">80% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.body -->
</div><!-- /.box -->
</div><!-- /.col-lg-12 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<h5>Stacked Progress Bar
<small>Click the bar for show source code</small>
</h5>
<div class="toolbar">
<div class="progress mini">
<div class="progress-bar progress-bar-success" style="width: 35%"><span class="sr-only">35% Complete (success)</span>
</div>
<div class="progress-bar progress-bar-warning" style="width: 20%"><span class="sr-only">20% Complete (warning)</span>
</div>
<div class="progress-bar progress-bar-danger" style="width: 10%"><span class="sr-only">10% Complete (danger)</span>
</div>
</div>
</div><!-- /.toolbar -->
</header>
<div class="body">
<div class="progress">
<div class="progress-bar progress-bar-success" style="width: 35%"><span class="sr-only">35% Complete (success)</span>
</div>
<div class="progress-bar progress-bar-warning" style="width: 20%"><span class="sr-only">20% Complete (warning)</span>
</div>
<div class="progress-bar progress-bar-danger" style="width: 10%"><span class="sr-only">10% Complete (danger)</span>
</div>
</div><!-- /.progress -->
</div><!-- /.body -->
</div><!-- /.box -->
</div><!-- /.col-lg-12 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<div class="box">
<header>
<h5>Progress Bar Size
<small>Click the bar for show source code</small>
</h5>
<div class="toolbar">
<div class="progress mini progress-striped active">
<div class="progress-bar" style="width: 43%;"></div>
</div>
</div><!-- /.toolbar -->
</header>
<div class="body">
<div class="row">
<div class="col-lg-3">Default</div><!-- /.col-lg-3 -->
<div class="col-lg-9">
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.col-lg-9 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-3">large</div><!-- /.col-lg-3 -->
<div class="col-lg-9">
<div class="progress lg">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.col-lg-9 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-3">Middle</div><!-- /.col-lg-3 -->
<div class="col-lg-9">
<div class="progress md">
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
<span class="sr-only">20% Complete</span>
</div>
</div><!-- /.progress -->
</div><!-- /.col-lg-9 -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-3">Mini</div><!-- /.col-lg-3 -->
<div class="col-lg-9">
<div class="progress xs">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div><!-- /.progress -->
</div><!-- /.col-lg-9 -->
</div><!-- /.row -->
</div><!-- /.body -->
</div><!-- /.box -->
</div><!-- /.col-lg-12 -->
</div><!-- /.row -->
</div><!-- /.inner -->
</div><!-- /.outer -->
</div><!-- /#content -->
<div id="right" class="bg-light lter">
<div class="alert alert-danger">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
<!-- .well well-small -->
<div class="well well-small dark">
<ul class="list-unstyled">
<li>Visitor <span class="inlinesparkline pull-right">1,4,4,7,5,9,10</span>
</li>
<li>Online Visitor <span class="dynamicsparkline pull-right">Loading..</span>
</li>
<li>Popularity <span class="dynamicbar pull-right">Loading..</span>
</li>
<li>New Users <span class="inlinebar pull-right">1,3,4,5,3,5</span>
</li>
</ul>
</div><!-- /.well well-small -->
<!-- .well well-small -->
<div class="well well-small dark">
<button class="btn btn-block">Default</button>
<button class="btn btn-primary btn-block">Primary</button>
<button class="btn btn-info btn-block">Info</button>
<button class="btn btn-success btn-block">Success</button>
<button class="btn btn-danger btn-block">Danger</button>
<button class="btn btn-warning btn-block">Warning</button>
<button class="btn btn-inverse btn-block">Inverse</button>
<button class="btn btn-metis-1 btn-block">btn-metis-1</button>
<button class="btn btn-metis-2 btn-block">btn-metis-2</button>
<button class="btn btn-metis-3 btn-block">btn-metis-3</button>
<button class="btn btn-metis-4 btn-block">btn-metis-4</button>
<button class="btn btn-metis-5 btn-block">btn-metis-5</button>
<button class="btn btn-metis-6 btn-block">btn-metis-6</button>
</div><!-- /.well well-small -->
<!-- .well well-small -->
<div class="well well-small dark">
<span>Default</span> <span class="pull-right"><small>20%</small> </span>
<div class="progress xs">
<div class="progress-bar progress-bar-info" style="width: 20%"></div>
</div>
<span>Success</span> <span class="pull-right"><small>40%</small> </span>
<div class="progress xs">
<div class="progress-bar progress-bar-success" style="width: 40%"></div>
</div>
<span>warning</span> <span class="pull-right"><small>60%</small> </span>
<div class="progress xs">
<div class="progress-bar progress-bar-warning" style="width: 60%"></div>
</div>
<span>Danger</span> <span class="pull-right"><small>80%</small> </span>
<div class="progress xs">
<div class="progress-bar progress-bar-danger" style="width: 80%"></div>
</div>
</div>
</div><!-- /#right -->
</div><!-- /#wrap -->
<footer class="Footer bg-dark dker">
<p>2014 © Metis Bootstrap Admin Template</p>
</footer><!-- /#footer -->
<!-- #helpModal -->
<div id="helpModal" class="modal fade">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title">Modal title</h4>
</div>
<div class="modal-body">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal --><!-- /#helpModal -->
<!--jQuery 2.1.1 -->
<script src="assets/lib/jquery/jquery.min.js"></script>
<!--Bootstrap -->
<script src="assets/lib/bootstrap/js/bootstrap.min.js"></script>
<!-- MetisMenu -->
<script src="assets/lib/metismenu/metisMenu.min.js"></script>
<!-- Screenfull -->
<script src="assets/lib/screenfull/screenfull.js"></script>
<!-- Metis core scripts -->
<script src="assets/js/core.min.js"></script>
<!-- Metis demo scripts -->
<script src="assets/js/app.min.js"></script>
<script>
$(function() {
Metis.MetisProgress();
});
</script>
<script src="assets/js/style-switcher.min.js"></script>
</body>
</html>
|
bootstrap/css/style.css | TT931230/Hantang | @charset "utf-8";
html{background:#fff;}
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img { margin:0; padding:0; }
/* HTML5 */
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display:block;}
fieldset, img { border:none; }
img{vertical-align:middle;}
address, caption, cite, code, dfn, th, var { font-style:normal; font-weight:normal; }
ul, li { list-style:none; }
input{ padding:0px; font-family: "微软雅黑";}
input::-moz-focus-inner { border:none; padding:0; }
select, input { vertical-align:middle; }
select, input, textarea { font-size:12px; margin:0; }
input[type="text"], input[type="password"], textarea { outline-style:none; -webkit-appearance:none; }
textarea { resize:none; }
table { border-collapse:collapse; }
body {color:#333; font-size:12px; font-family:"微软雅黑", "Microsoft Yahei", tahoma,arial,"Hiragino Sans GB"; background:#fff; }
.clearfix:after { content:"."; display:block; height:0; visibility:hidden; clear:both; }
.clearfix { zoom:1; }
.clearit { clear:both; height:0; font-size:0; overflow:hidden;}
a {color:#333333;text-decoration:none;}
a:hover{color:#F67919; text-decoration:none;}
.hidden{visibility:hidden;}
.fl{ float:left;}.fr{float:right;}
.form-select select{border:1px solid #ccc;border-radius:2px;padding:5px 3px;margin-right:11px; width:130px; height:28px; line-height:28px;_vertical-align: bottom; _margin-top:3px;}
.form-select .mr0{ margin-right:0;}
.Cootion{ width:100%; background-color:#f5f5f5; padding:50px 0px;}
.m_map{ width:989px; height:724px; margin:30px auto; position:relative; background:url(../images/diru.png) no-repeat 0 0 ;}
.tait{ font-size:36px; font-weight:bold; color:#666666; text-align:center; left:100px;}
.tait span{ color:#ff6d3b;}
.tait2{font-size:36px; font-weight:bold; color:#666666; text-align:center; padding:50px 0px;}
.mp{ position:absolute; cursor:pointer; background:url(../images/fi1.png) no-repeat 4px 34px; width:120px; height:63px; -webkit-transition:all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition:all .2s ease-out; -o-transition:all .2s ease-out; transition:all .2s ease-out;}
.mp:hover{ background:url(../images/fi2.png) no-repeat 4px 34px; -webkit-transition:all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition:all .2s ease-out; -o-transition:all .2s ease-out; transition:all .2s ease-out;}
.hover_tu{background:url(../images/fi2.png) no-repeat 4px 34px;}
.mp .mito{ position:absolute; left:0px; bottom:0px; font-size:12px; color:#666666;}
.mp .find_mi1{ left:-12px; width:55px;}
.mp .find_mi2{ left:-5px; width:55px;}
.mpb{ position:absolute; cursor:pointer; background:url(../images/fi1b.png) no-repeat 4px 34px; width:180px; height:63px; -webkit-transition:all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition:all .2s ease-out; -o-transition:all .2s ease-out; transition:all .2s ease-out;}
.mpb:hover{ background:url(../images/fi2b.png) no-repeat 4px 34px; -webkit-transition:all .2s ease-out; -moz-transition: all .2s ease-out; -ms-transition:all .2s ease-out; -o-transition:all .2s ease-out; transition:all .2s ease-out;}
.hover_tu{background:url(../images/fi2b.png) no-repeat 4px 34px;}
.mpb .mito{ position:absolute; left:0px; bottom:0px; font-size:12px; color:#666666;}
.mpb .find_mi1{ left:-12px; width:55px;}
.mpb .find_mi2{ left:-5px; width:55px;}
.feng{ position:absolute; display:none; width:347px; height:85px; left:-230px; top:-78px; background:url(../images/vf1.png) no-repeat 0 top; z-index:10;}
.feng .sang{ position:absolute; left:235px; bottom:0px; background:url(../images/vf2.png) no-repeat 0 0; width:14px; height:8px;}
.feng .tree{ height:62px; width:330px; margin:9px; }
.feng .tree .boou{ width:86px; height:62px; float:left;}
.feng .tree .du_size{ float:right; height:62px; width:230px;}
.feng .tree .du_size p{ font-size:12px; color:#FFF; line-height:20px;}
.mp1{left:400px; top:350px; } /*西宁*/
.mp2{left:702px; top:413px; } /*蚌埠*/
.mp3{left:446px; top:474px; } /*成都*/
.mp4{left:524px; top:474px; } /*重庆*/
.mp7{left:428px; top:585px; } /*昆明*/
.mp8{left:548px; top:407px; } /*西安*/
.mp9{left:625px; top:398px; } /*郑州*/
.mp10{left:612px; top:325px; } /*太原*/
.mp11{left:643px; top:454px; } /*武汉*/
.mp12{left:611px; top:503px; } /*长沙*/
.mp13{left:668px; top:516px; } /*南昌*/
.mp14{left:742px; top:488px; } /*杭州*/
.mp15{left:710px; top:570px; } /*厦门*/
.mp16{left:648px; top:585px; } /*广州*/
.mp17{left:660px; top:604px; } /*深圳*/
.mp18{left:692px; top:443px; } /*合肥*/
.mp19{left:727px; top:428px; } /*南京*/
.mp20{left:761px; top:450px; } /*上海*/
.mp21{left:694px; top:345px; } /*济南*/
.mp22{left:750px; top:345px; } /*青岛*/
.mp23{left:681px; top:266px; } /*北京*/
.mp24{left:711px; top:266px; } /*唐山*/
.mp28{left:628px; top:595px; } /*佛山*/
.mp29{left:746px; top:441px; } /*常州*/
.mp32{left:624px; top:626px; } /*珠海*/
.mp35{left:745px; top:428px; } /*镇江*/
.mp36{left:735px; top:400px; } /*扬州*/
.mp40{left:654px; top:306px; } /*石家庄*/
.mp42{left:728px; top:323px; } /*烟台*/
.mp51{left:733px; top:541px; } /*福州*/
.mp52{left:723px; top:551px; } /*泉州*/
.mp55{left:650px; top:360px; } /*新乡*/
.mp63{left:582px; top:256px; } /*呼和浩特*/
.mp64{left:795px; top:275px; } /*鞍山*/
.mp65{left:775px; top:290px; } /*大连*/
.mp66{left:765px; top:330px; } /*威海*/
.mp67{left:678px; top:296px; } /*保定*/
.mp68{left:568px; top:377px; } /*延安*/
.mp69{left:695px; top:463px; } /*马鞍山*/
.mp70{left:710px; top:470px; } /*芜湖*/
.mp30{left:801px; top:450px; } /*栏目*/
.mp31{left:574px; top:656px; } /*海口*/
.mp71{left:650px; top:418px; } /*阜阳*/
.mp26{left:825px; top:187px; } /*长春*/
.mp27{left:864px; top:103px; } /*哈尔滨*/
.mp25{left:790px; top:256px; } /*沈阳*/
.mpb1{left:400px; top:350px; } /*西宁*/
.mpb2{left:702px; top:413px; } /*蚌埠*/
.mpb3{left:446px; top:474px; } /*成都*/
.mpb4{left:524px; top:474px; } /*重庆*/
.mpb7{left:428px; top:585px; } /*昆明*/
.mpb8{left:548px; top:407px; } /*西安*/
.mpb9{left:625px; top:398px; } /*郑州*/
.mpb10{left:612px; top:325px; } /*太原*/
.mpb11{left:643px; top:454px; } /*武汉*/
.mpb12{left:611px; top:503px; } /*长沙*/
.mpb13{left:668px; top:516px; } /*南昌*/
.mpb14{left:742px; top:488px; } /*杭州*/
.mpb15{left:710px; top:570px; } /*厦门*/
.mpb16{left:648px; top:585px; } /*广州*/
.mpb17{left:660px; top:604px; } /*深圳*/
.mpb18{left:692px; top:443px; } /*合肥*/
.mpb19{left:727px; top:428px; } /*南京*/
.mpb20{left:761px; top:450px; } /*上海*/
.mpb21{left:694px; top:345px; } /*济南*/
.mpb22{left:750px; top:345px; } /*青岛*/
.mpb23{left:681px; top:266px; } /*北京*/
.mpb24{left:711px; top:266px; } /*唐山*/
.mpb28{left:628px; top:595px; } /*佛山*/
.mpb29{left:746px; top:441px; } /*常州*/
.mpb32{left:624px; top:626px; } /*珠海*/
.mpb35{left:745px; top:428px; } /*镇江*/
.mpb36{left:735px; top:400px; } /*扬州*/
.mpb40{left:654px; top:306px; } /*石家庄*/
.mpb42{left:728px; top:323px; } /*烟台*/
.mpb51{left:733px; top:541px; } /*福州*/
.mpb52{left:723px; top:551px; } /*泉州*/
.mpb55{left:650px; top:360px; } /*新乡*/
.mpb63{left:582px; top:256px; } /*呼和浩特*/
.mpb64{left:795px; top:275px; } /*鞍山*/
.mpb65{left:775px; top:290px; } /*大连*/
.mpb66{left:765px; top:330px; } /*威海*/
.mpb67{left:678px; top:296px; } /*保定*/
.mpb68{left:568px; top:377px; } /*延安*/
.mpb69{left:695px; top:463px; } /*马鞍山*/
.mpb70{left:710px; top:470px; } /*芜湖*/
.mpb30{left:861px; top:450px; } /*栏目*/
.mpb31{left:574px; top:656px; } /*海口*/
.mpb71{left:650px; top:418px; } /*阜阳*/
.mpb26{left:825px; top:187px; } /*长春*/
.mpb27{left:864px; top:103px; } /*哈尔滨*/
.mpb25{left:790px; top:256px; } /*沈阳*/ |
md/templates/md/search.html | OpenDataPolicingNC/Traffic-Stops | {% extends "search.html" %}
{% load selectable_tags bootstrap3 el_pagination_tags humanize %}
{% block agency-list-url %}{% url "md:agency-list" %}{% endblock %}
{% block extra-js %}
{% include_ui_theme %}
{% include_jquery_libs %}
{{ form.media }}
<script type="text/javascript">
$(document).ready(function(){
var $start = $("#id_start_date"),
$end = $("#id_end_date"),
now = new Date(),
opts = {
minDate: new Date(MD.Stops.start_year, 0, 1),
maxDate: new Date(MD.Stops.end_year, 11, 31),
changeMonth: true,
changeYear: true,
yearRange: MD.Stops.start_year + ':' + MD.Stops.end_year,
dateFormat: "mm/dd/yy",
};
// add datepicker widgets
$("#id_start_date").datepicker(_.extend(
{defaultDate: new Date(now.getFullYear()-2, 0, 1)}, opts));
$("#id_end_date").datepicker(_.extend(
{defaultDate: new Date(now.getFullYear()-2, 11, 31)}, opts));
// set new end-date whenever start-date changes
$start.change(function(v){
var start = $start.val(),
end = $end.val(),
newVal = end,
diff;
try {
if ((Date.parse(end) - Date.parse(start)) < 0) newVal = start;
} catch (e) {
newVal = end;
}
$end.val(newVal);
});
// set new start if end-date changes
$end.change(function(v){
var start = $start.val(),
end = $end.val(),
newVal = start,
diff;
try {
if ((Date.parse(end) - Date.parse(start)) < 0) newVal = end;
} catch (e) {
newVal = start;
}
$start.val(newVal);
});
});
</script>
{% endblock extra-js %}
{% block title %}Find a Traffic Stop{% endblock %}
{% block content %}
{% paginate 30 stops %}
{% get_pages %}
{% bootstrap_messages %}
<div class="row">
<div class="col-md-12">
<form action="{% url 'md:stops-search' %}" method="get" class="form row collapse {% if not stops %}in{% endif %}" id="search-form">
<div class="col-md-6 fields-col left">
<h3>Basic Search</h3>
<div>
{% bootstrap_field form.agency %}
<div class="row">
<div class="col-md-6">{% bootstrap_field form.start_date %}</div>
<div class="col-md-6">{% bootstrap_field form.end_date %}</div>
</div>
{% bootstrap_field form.age %}
{% bootstrap_field form.ethnicity %}
{% bootstrap_field form.gender %}
</div>
</div>
<div class="col-md-6 fields-col right">
<h3>Advanced Search</h3>
<div>
{% bootstrap_field form.officer %}
{% bootstrap_field form.purpose %}
</div>
</div>
<div class="col-md-12 buttons-col">
{% buttons %}
<button type="submit" class="btn btn-primary">
Submit
</button>
{% endbuttons %}
</div>
</form>
<div class="collapser" aria-expanded="{% if stops %}false{% else %}true{% endif %}" data-toggle="collapse" data-target="#search-form">
<span class="shown">Collapse</span> <span class="glyphicon glyphicon-chevron-up shown"></span>
<span class="collapsed">Show Search</span> <span class="glyphicon glyphicon-chevron-down collapsed"></span>
</div>
</div>
<div class="col-md-12">
<h2>Stops ({{ pages.total_count|intcomma }} total)</h2>
<div class="table-responsive">
<table class="table">
<tr>
<th>Date</th>
<th>Gender</th>
<th>Ethnicity</th>
<th>Age</th>
<th>Stop Location</th>
<th>Officer ID</th>
</tr>
{% for stop in stops %}
<tr title='{{ person.stop.stop_id }}'>
<td>{{ stop.date|date:"n/j/Y P" }}</td>
<td>{{ stop.get_gender_display }}</td>
<td>{{ stop.get_ethnicity_display }}</td>
<td>{{ stop.age }}</td>
<td>{{ stop.stop_location }}</td>
<td><a href='{% url "md:agency-detail" stop.agency_id %}?officer_id={{ stop.officer_id|urlencode }}'>{{ stop.officer_id }}</a></td>
</tr>
{% endfor %}
</table>
</div>
<div class="pagination">
{% show_pages %}
</div>
</div>
</div>
{% endblock %}
|
all-data/4000-4999/4793-34.html | BuzzAcademy/idioms-moe-unformatted-data | <table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語 </b></th><td class="ztd2">息事甯人</td></tr>
<tr><th class="ztd1"><b>注音 </b></th><td class="ztd2">ㄒ|<sup class="subfont">ˊ</sup> ㄕ<sup class="subfont">ˋ</sup> ㄋ|ㄥ<sup class="subfont">ˊ</sup> ㄖㄣ<sup class="subfont">ˊ</sup></td></tr>
<tr><th class="ztd1"><b>漢語拼音 </b></th><td class="ztd2"><font class="english_word">xí shì níng rén</font></td></tr>
<tr><th class="ztd1"><b>釋義 </b></th><td class="ztd2"> 義參「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000883%22.%26v%3D-1" class="clink" target=_blank>息事寧人</a>」。見「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000883%22.%26v%3D-1" class="clink" target=_blank>息事寧人</a>」條。</font></td></tr>
<tr><th class="ztd1"><b><style>.tableoutfmt2 .std1{width:3%;}</style></b></th><td class="ztd2"><table class="fmt16_table"><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>參考詞語︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000883%22.%26v%3D-1" class="clink" target=_blank>息事寧人</a></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>注音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" >ㄒ|<sup class="subfont">ˊ</sup> ㄕ<sup class="subfont">ˋ</sup> ㄋ|ㄥ<sup class="subfont">ˊ</sup> ㄖㄣ<sup class="subfont">ˊ</sup></td></tr><tr><td width=150 style="text-align:left;" class="fmt16_td1" ><b>漢語拼音︰</b></td><td width=150 style="text-align:left;" class="fmt16_td2" ><font class="english_word">xí shì níng rén</font></td></tr></table><br><br></td></tr>
</td></tr></table></div> <!-- layoutclass_first_pic --><div class="layoutclass_second_pic"></div> <!-- layoutclass_second_pic --></div> <!-- layoutclass_pic --></td></tr></table>
|
client/navbar.html | meteor-templ/meteor-templ | <template name="navbar">
<nav class="navbar {{class}}">
<div class="container">
<ul class="nav navbar-nav navbar-left">
<li class="{{isActivePath '/'}}"><a href="/"><i class="fa fa-fw fa-code fa-rotate-90"></i> Templ</a></li>
<li class="{{isActivePath '/drop'}}"><a href="/drop"><i class="fa fa-fw fa-square"></i> Drop</a></li>
<li class="{{isActivePath '/tree'}}"><a href="/tree"><i class="fa fa-fw fa-tree"></i> Tree</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
{{#Drop trigger='tooltip' theme='DropBootstrap' direction='bottom' position=0.75 alignment=1}}
<li>
<a href="https://github.com/meteor-templ"><i class="fa fa-fw fa-github"></i> GitHub</a>
</li>
{{else}}
<div class="popover-content" style="width: 220px;">
All our packages, and technical documentations.
</div>
{{/Drop}}
</ul>
</div>
</nav>
</template> |
docs/doc/nom/macro.alt_complete!.html | sbeckeriv/warc_nom_parser | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=macro.alt_complete.html">
</head>
<body>
<p>Redirecting to <a href="macro.alt_complete.html">macro.alt_complete.html</a>...</p>
<script>location.replace("macro.alt_complete.html" + location.search + location.hash);</script>
</body>
</html> |
pages/doc/pages/class-use/ArrayWriter.html | tedunderwood/genre | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_65) on Sat Dec 27 23:31:06 CST 2014 -->
<TITLE>
Uses of Class pages.ArrayWriter
</TITLE>
<META NAME="date" CONTENT="2014-12-27">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class pages.ArrayWriter";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/ArrayWriter.html" title="class in pages"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?pages//class-useArrayWriter.html" target="_top"><B>FRAMES</B></A>
<A HREF="ArrayWriter.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
<B>Uses of Class<br>pages.ArrayWriter</B></H2>
</CENTER>
No usage of pages.ArrayWriter
<P>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../pages/ArrayWriter.html" title="class in pages"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
PREV
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?pages//class-useArrayWriter.html" target="_top"><B>FRAMES</B></A>
<A HREF="ArrayWriter.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
vodnik/16.04/mouse-problem-notmoving.html | ubuntu-si/ubuntu.si | <!DOCTYPE html>
<!DOCTYPE html>
<html lang=sl>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Miškin kazalec se ne premika</title>
<script type="text/javascript" src="jquery.js"></script><script type="text/javascript" src="jquery.syntax.js"></script><script type="text/javascript" src="yelp.js"></script><link rel="shortcut icon" href="https://www.ubuntu.si/favicon.ico">
<link rel="stylesheet" type="text/css" href="../vodnik_1404.css">
</head>
<body id="home"><div id="wrapper" class="hfeed">
<div id="header">
<div id="branding">
<div id="blog-title"><span><a rel="home" title="Ubuntu Slovenija | Uradna spletna stran slovenske skupnosti Linux distribucije Ubuntu" href="//www.ubuntu.si">Ubuntu Slovenija | Uradna spletna stran slovenske skupnosti Linux distribucije Ubuntu</a></span></div>
<h1 id="blog-description"></h1>
</div>
<div id="access"><div id="loco-header-menu"><ul id="primary-header-menu"><li class="widget-container widget_nav_menu" id="nav_menu-3"><div class="menu-glavni-meni-container"><ul class="menu" id="menu-glavni-meni">
<li id="menu-item-15" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15"><a href="//www.ubuntu.si">Domov</a></li>
<li id="menu-item-2776" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-2776"><a href="//www.ubuntu.si/category/novice/">Novice</a></li>
<li id="menu-item-16" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16"><a href="//www.ubuntu.si/forum/">Forum</a></li>
<li id="menu-item-19" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19"><a href="//www.ubuntu.si/kaj-je-ubuntu/">Kaj je Ubuntu?</a></li>
<li id="menu-item-20" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20"><a href="//www.ubuntu.si/pogosta_vprasanja/">Pogosta vprašanja</a></li>
<li id="menu-item-17" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17"><a href="//www.ubuntu.si/skupnost/">Skupnost</a></li>
<li id="menu-item-18" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-18"><a href="//www.ubuntu.si/povezave/">Povezave</a></li>
</ul></div></li></ul></div></div>
</div>
<div id="main"><div id="cwt-content" class="clearfix content-area"><div id="page">
<div class="trails" role="navigation">
<div class="trail"> » <a class="trail" href="index.html" title="Namizni vodnik Ubuntu"><span class="media"><span class="media media-image"><img src="figures/ubuntu-logo.png" height="16" width="16" class="media media-inline" alt="Pomoč"></span></span> Namizni vodnik Ubuntu</a> » <a class="trail" href="prefs.html" title="Uporabniške in sistemske nastavitve">Nastavitve</a> » <a class="trail" href="mouse.html" title="Miška">Miška</a> › <a class="trail" href="mouse.html#problems" title="Pogoste težave">Pogoste težave</a> » </div>
<div class="trail"> » <a class="trail" href="index.html" title="Namizni vodnik Ubuntu"><span class="media"><span class="media media-image"><img src="figures/ubuntu-logo.png" height="16" width="16" class="media media-inline" alt="Pomoč"></span></span> Namizni vodnik Ubuntu</a> » <a class="trail" href="hardware.html" title="Strojna oprema in gonilniki">Strojna oprema</a> » <a class="trail" href="mouse.html" title="Miška">Miška</a> › <a class="trail" href="mouse.html#problems" title="Pogoste težave">Pogoste težave</a> » </div>
</div>
<div id="content">
<div class="hgroup"><h1 class="title"><span class="title">Miškin kazalec se ne premika</span></h1></div>
<div class="region">
<div class="contents"><div role="navigation" class="links sectionlinks"><div class="inner"><div class="region"><ul>
<li class="links "><a href="mouse-problem-notmoving.html#plugged-in" title="Preverite, da je miška vklopljena">Preverite, da je miška vklopljena</a></li>
<li class="links "><a href="mouse-problem-notmoving.html#connected" title="Preverite, da je računalnik prepoznal vašo miško">Preverite, da je računalnik prepoznal vašo miško</a></li>
<li class="links "><a href="mouse-problem-notmoving.html#broken" title="Preverite, če miška deluje">Preverite, če miška deluje</a></li>
<li class="links "><a href="mouse-problem-notmoving.html#wireless-mice" title="Preverjanje brezžične miške">Preverjanje brezžične miške</a></li>
</ul></div></div></div></div>
<div id="plugged-in" class="sect"><div class="inner">
<div class="hgroup"><h2 class="title"><span class="title">Preverite, da je miška vklopljena</span></h2></div>
<div class="region"><div class="contents">
<p class="p">V primeru da imate miško s kablom, preverite, da je trdno priklopljena na vaš računalnik.</p>
<p class="p">V primeru da imate miško USB (s pravokotnim povezovalnikom), jo poskusite priklopiti na druga vrata USB. V primeru da imate miško PS/2 (z majhnim, okroglim povezovalnikom s šestimi nožicami) se prepričajte, da je vklopljena v zelena vrata in ne v vijolična vrata tipkovnica. Morda boste morali računalnik znova zagnati, če miška ni bila priklopljena.</p>
</div></div>
</div></div>
<div id="connected" class="sect"><div class="inner">
<div class="hgroup"><h2 class="title"><span class="title">Preverite, da je računalnik prepoznal vašo miško</span></h2></div>
<div class="region"><div class="contents">
<div class="steps"><div class="inner"><div class="region"><ol class="steps">
<li class="steps"><p class="p">Pritisnite <span class="keyseq"><span class="key"><kbd>Ctrl</kbd></span>+<span class="key"><kbd>Alt</kbd></span>+<span class="key"><kbd>T</kbd></span></span> za odpiranje <span class="app">Terminala</span>.</p></li>
<li class="steps"><p class="p">V okno terminala vpišite <span class="cmd">xsetpointer -l | grep Pointer</span> natanko tako kot je videti tukaj in pritisnite <span class="key"><kbd>Enter</kbd></span>.</p></li>
<li class="steps"><p class="p">Pojavil se bo kratek seznam miškinih gonilnikov. Preverite, da je poleg vsaj enega od predmetov <span class="sys">[XExtensionPointer]</span> in da je levo od vsaj enega predmeta <span class="sys">[XExtensionPointer]</span> ime miške.</p></li>
<li class="steps"><p class="p">V primeru da ni vnosa, ki vsebuje ime miške, ki mu sledi <span class="sys">[XExtensionPointer]</span>, potem računalnik miške ni prepoznal. V primeru da vnos obstaja, je računalnik miško prepoznal. V tem primeru bi morali preveriti, da je miška <span class="link"><a href="mouse-problem-notmoving.html#plugged-in" title="Preverite, da je miška vklopljena">priklopljena</a></span> in da je v <span class="link"><a href="mouse-problem-notmoving.html#broken" title="Preverite, če miška deluje">delujočem stanju</a></span>.</p></li>
</ol></div></div></div>
<p class="p">V primeru da ima vaša miška zaporedni (RS-232) povezovalnik, boste morda morali za njeno delovanje izvesti nekaj več korakov. Ti koraki so morda odvisni od proizvajalca ali modela vaše miške.</p>
<p class="p">Težave s prepoznavanjem miške je včasih težko popraviti. Vprašajte za podporo pri svoji distribuciji ali proizvajalcu, če mislite, da vaša miška ni bila pravilno zaznana.</p>
</div></div>
</div></div>
<div id="broken" class="sect"><div class="inner">
<div class="hgroup"><h2 class="title"><span class="title">Preverite, če miška deluje</span></h2></div>
<div class="region"><div class="contents">
<p class="p">Priklopite miško na drug računalnik in preverite, če dela.</p>
<p class="p">V primeru da imate optično ali lasersko miško, bi morala iz dna miške sijati svetloba. V primeru da svetlobe ni, preverite, da je vklopljena. V primeru da je miška vklopljena in ni svetlobe, je miška morda pokvarjena.</p>
</div></div>
</div></div>
<div id="wireless-mice" class="sect"><div class="inner">
<div class="hgroup"><h2 class="title"><span class="title">Preverjanje brezžične miške</span></h2></div>
<div class="region"><div class="contents">
<div class="list"><div class="inner"><div class="region"><ul class="list">
<li class="list"><p class="p">Prepričajte se, da je miška vklopljena. Običajno je na dnu miške stikalo za popoln izklop miške, da jo lahko premikate brez stalnega zbujanja.</p></li>
<li class="list"><p class="p">Če uporabljate Bluetooth, se prepričajte, da ste dejansko seznanili miško s svojim računalnikom. Oglejte si <span class="link"><a href="bluetooth-connect-device.html" title="Povezava računalnika z napravo Bluetooth.">Povezava računalnika z napravo Bluetooth.</a></span>.</p></li>
<li class="list"><p class="p">Kliknite na gumb in si oglejte, če se miškin kazalec zdaj premakne. Nekatere brezžične miške gredo za varčevanje z energijo v pripravljenost, zato se morda ne bodo odzvale, dokler ne kliknete na gumb. Oglejte si <span class="link"><a href="mouse-wakeup.html" title="Miška se odziva z zamudo preden začne delati">Miška se odziva z zamudo preden začne delati</a></span>.</p></li>
<li class="list"><p class="p">Preverite, če je miškina baterija napolnjena.</p></li>
<li class="list"><p class="p">Prepričajte se, da je sprejemnik trdno vklopljen v računalnik.</p></li>
<li class="list"><p class="p">V primeru da lahko vaša miška in sprejemnik delata na različnih radio kanalih, se prepričajte, da delata na istem kanalu.</p></li>
<li class="list"><p class="p">Morda boste morali pritisniti gumb na miški, sprejemniku ali obeh za vzpostavitev povezave. Priročnik vaše miške bi moral vsebovati več podrobnosti.</p></li>
</ul></div></div></div>
<p class="p">Večina RF (radijskih) brezžičnih mišk bi morala ob vklopu v računalnik samodejno delovati. V primeru da imate Bluetooth ali IR (infrardečo) brezžično miško, boste morda morali izvesti dodatno pogoje za njeno delovanje. Koraki so morda odvisni od proizvajalca ali modela vaše miške.</p>
</div></div>
</div></div>
<div class="sect sect-links" role="navigation">
<div class="hgroup"></div>
<div class="contents"><div class="links guidelinks"><div class="inner">
<div class="title"><h2><span class="title">Več podrobnosti</span></h2></div>
<div class="region"><ul><li class="links "><a href="mouse.html#problems" title="Pogoste težave">Pogoste težave z miško</a></li></ul></div>
</div></div></div>
</div>
</div>
<div class="clear"></div>
</div>
</div></div></div>
<div id="footer">
<img src="https://piwik-ubuntusi.rhcloud.com/piwik.php?idsite=1&rec=1" style="border:0" alt=""><div id="siteinfo"><p>Material v tem dokumentu je na voljo pod prosto licenco. To je prevod dokumentacije Ubuntu, ki jo je sestavila <a href="https://wiki.ubuntu.com/DocumentationTeam">Ubuntu dokumentacijska ekipa za Ubuntu</a>. V slovenščino jo je prevedla skupina <a href="https://wiki.lugos.si/slovenjenje:ubuntu">Ubuntu prevajalcev</a>. Za poročanje napak v prevodih v tej dokumentaciji ali Ubuntuju pošljite sporočilo na <a href="mailto:ubuntu-l10n-slv@lists.ubuntu.com?subject=Prijava%20napak%20v%20prevodih">dopisni seznam</a>.</p></div>
</div>
</div></body>
</html>
|
docs/Date.html | arctelix/vanillaHelper | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Class: Date</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Class: Date</h1>
<section>
<header>
<h2>Date</h2>
</header>
<article>
<div class="container-overview">
<h4 class="name" id="Date"><span class="type-signature"></span>new Date<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Pollyfills for Date.</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="vanillaHelper.js.html">vanillaHelper.js</a>, <a href="vanillaHelper.js.html#line232">line 232</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Methods</h3>
<h4 class="name" id=".now"><span class="type-signature">(static) </span>now<span class="signature">()</span><span class="type-signature"></span></h4>
<div class="description">
<p>Pollyfill: Date.now <- Date().getTime</p>
</div>
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="vanillaHelper.js.html">vanillaHelper.js</a>, <a href="vanillaHelper.js.html#line237">line 237</a>
</li></ul></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Classes</h3><ul><li><a href="Date.html">Date</a></li></ul><h3>Global</h3><ul><li><a href="global.html#addClass">addClass</a></li><li><a href="global.html#createEle">createEle</a></li><li><a href="global.html#dispatchEvent">dispatchEvent</a></li><li><a href="global.html#escapeHtml">escapeHtml</a></li><li><a href="global.html#getParent">getParent</a></li><li><a href="global.html#hasClass">hasClass</a></li><li><a href="global.html#isClicked">isClicked</a></li><li><a href="global.html#isHTMLCollection">isHTMLCollection</a></li><li><a href="global.html#iterate">iterate</a></li><li><a href="global.html#noDTZoom">noDTZoom</a></li><li><a href="global.html#removeClass">removeClass</a></li><li><a href="global.html#removeEventListener">removeEventListener</a></li><li><a href="global.html#testEleMatch">testEleMatch</a></li><li><a href="global.html#toggleClass">toggleClass</a></li><li><a href="global.html#triggerEvent">triggerEvent</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.0</a> on Tue Jan 26 2016 02:16:06 GMT-0500 (Eastern Standard Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
week5/day1/Goal App/tmp/capybara/capybara-201411031415047833576484.html | mdgraser/app-academy | <!DOCTYPE html>
<html>
<head>
<title>GoalSetter</title>
<link data-turbolinks-track="true" href="/assets/sessions.css?body=1" media="all" rel="stylesheet" />
<link data-turbolinks-track="true" href="/assets/users.css?body=1" media="all" rel="stylesheet" />
<link data-turbolinks-track="true" href="/assets/application.css?body=1" media="all" rel="stylesheet" />
<script data-turbolinks-track="true" src="/assets/jquery.js?body=1"></script>
<script data-turbolinks-track="true" src="/assets/jquery_ujs.js?body=1"></script>
<script data-turbolinks-track="true" src="/assets/turbolinks.js?body=1"></script>
<script data-turbolinks-track="true" src="/assets/sessions.js?body=1"></script>
<script data-turbolinks-track="true" src="/assets/users.js?body=1"></script>
<script data-turbolinks-track="true" src="/assets/application.js?body=1"></script>
<meta content="authenticity_token" name="csrf-param" />
<meta content="riIHQ9lgrvt77G45MVVq0WQtE4b9vZqsT+6bB3nDZlg=" name="csrf-token" />
</head>
<body>
<form action="http://www.example.com/session" class="button_to" method="post"><div><input name="_method" type="hidden" value="delete" /><input type="submit" value="Sign Out" /><input name="authenticity_token" type="hidden" value="riIHQ9lgrvt77G45MVVq0WQtE4b9vZqsT+6bB3nDZlg=" /></div></form>
<h1>user1</h1>
</body>
</html>
|
generators/page/templates/page.css | Jackong/generator-wxapp | @import '../../app.css';
|
bluetears/test02/page02.html | stackprobe/Java | <html>
<body>
<h1>This is /test02/page02.html</h1>
</body>
</html>
|
assets/js/highlight/styles/grayscale.css | wurh/mynodeppt | /*
grayscale style (c) MY Sun <simonmysun@gmail.com>
*/
.hljs {
display: block;
overflow-x: auto;
padding: 0.5em;
color: #333;
background: #fff;
-webkit-text-size-adjust: none;
}
.hljs-comment,
.diff .hljs-header {
color: #777;
font-style: italic;
}
.hljs-keyword,
.css .rule .hljs-keyword,
.hljs-winutils,
.nginx .hljs-title,
.hljs-subst,
.hljs-request,
.hljs-status {
color: #333;
font-weight: bold;
}
.hljs-number,
.hljs-hexcolor,
.ruby .hljs-constant {
color: #777;
}
.hljs-string,
.hljs-tag .hljs-value,
.hljs-doctag,
.tex .hljs-formula {
color: #333;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAJ0lEQVQIW2O8e/fufwYGBgZBQUEQxcCIIfDu3Tuwivfv30NUoAsAALHpFMMLqZlPAAAAAElFTkSuQmCC) repeat;
}
.hljs-title,
.hljs-id,
.scss .hljs-preprocessor {
color: #000;
font-weight: bold;
}
.hljs-list .hljs-keyword,
.hljs-subst {
font-weight: normal;
}
.hljs-class .hljs-title,
.hljs-type,
.vhdl .hljs-literal,
.tex .hljs-command {
color: #333;
font-weight: bold;
}
.hljs-tag,
.hljs-tag .hljs-title,
.hljs-rule .hljs-property,
.django .hljs-tag .hljs-keyword {
color: #333;
}
.hljs-attribute,
.hljs-variable,
.lisp .hljs-body,
.hljs-name {
color: #000;
}
.hljs-regexp {
color: #333;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAICAYAAADA+m62AAAAPUlEQVQYV2NkQAN37979r6yszIgujiIAU4RNMVwhuiQ6H6wQl3XI4oy4FMHcCJPHcDS6J2A2EqUQpJhohQDexSef15DBCwAAAABJRU5ErkJggg==) repeat;
}
.hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.lisp .hljs-keyword,
.clojure .hljs-keyword,
.scheme .hljs-keyword,
.tex .hljs-special,
.hljs-prompt {
color: #000;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAKElEQVQIW2NkQAO7d+/+z4gsBhJwdXVlhAvCBECKwIIwAbhKZBUwBQA6hBpm5efZsgAAAABJRU5ErkJggg==) repeat;
}
.hljs-built_in {
color: #000;
text-decoration: underline;
}
.hljs-preprocessor,
.hljs-pragma,
.hljs-pi,
.hljs-doctype,
.hljs-shebang,
.hljs-cdata {
color: #999;
font-weight: bold;
}
.hljs-deletion {
color: #fff;
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAADCAYAAABS3WWCAAAAE0lEQVQIW2MMDQ39zzhz5kwIAQAyxweWgUHd1AAAAABJRU5ErkJggg==) repeat;
}
.hljs-addition {
color: #000;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAALUlEQVQYV2N89+7dfwYk8P79ewZBQUFkIQZGOiu6e/cuiptQHAPl0NtNxAQBAM97Oejj3Dg7AAAAAElFTkSuQmCC) repeat;
}
.diff .hljs-change {
background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAHUlEQVQIW2NkgILdu3f/ZwSxQQxXV1dGRhgDJAgAzGcLNGkoJrsAAAAASUVORK5CYII=) repeat;
}
.hljs-chunk {
color: #aaa;
} |
public/Windows 10 x64 (18362.476)/_MI_SECTION_WOW_STATE.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (18362.476)</h4><br>
<h2>_MI_SECTION_WOW_STATE</h2>
<font face="arial"> +0x000 ImageBitMap : <a href="./_RTL_BITMAP_EX.html">_RTL_BITMAP_EX</a><br>
+0x010 OverflowArea : <a href="./_MI_DLL_OVERFLOW_AREA.html">_MI_DLL_OVERFLOW_AREA</a><br>
+0x030 CfgBitMapSection : Ptr64 <a href="./_SECTION.html">_SECTION</a><br>
+0x038 CfgBitMapControlArea : Ptr64 <a href="./_CONTROL_AREA.html">_CONTROL_AREA</a><br>
</font></body></html> |
client/src/view/distribution.html | BoyuZhou/weeklyReport | <div home-header title="分配任务">
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<div>
<form>
<div class="row"><div class="form-group col-lg-6 col-lg-offset-1">
<label>任务名称</label>
<input class="form-control">
</div></div>
<div class="row"><div class="form-group col-lg-6 col-lg-offset-1">
<label>任务描述</label>
<input class="form-control">
</div></div>
<div class="row">
<div class="form-group col-lg-6 col-lg-offset-1">
<label>任务人员</label>
<div class="input-group">
<input class="form-control">
<span class="input-group-addon"><span class="fa fa-search"></span></span>
</div>
</div>
</div>
<div class="row">
<div class="form-group col-lg-4 col-lg-offset-1">
<label for="startTime" class="control-label">选择开始时间</label>
<div class="input-group date form_datetime" data-date="2016-06-30T09:00:00Z" data-date-format="yyyy MM dd - HH:ii p" data-link-field="dtp_input1" id="startTime">
<input class="form-control" size="16" type="text" value="">
<span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>
</div>
<input type="hidden" id="dtp_input2" value="" /><br/>
</div>
<div class="form-group col-lg-4">
<label for="endTime" class=" control-label">选择截至时间</label>
<div class="input-group date form_datetime" data-date="2016-06-30T09:00:00Z" data-date-format="yyyy MM dd - HH:ii p" data-link-field="dtp_input1" id="endTime">
<input class="form-control" size="16" type="text" value="">
<span class="input-group-addon"><span class="glyphicon glyphicon-th"></span></span>
</div>
<input type="hidden" id="dtp_input1" value="" /><br/>
</div>
</div>
<div class="row">
<div class="form-group col-lg-2 col-lg-offset-1">
<label>重要系数</label>
<select class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="row"><div class="form-group col-lg-6 col-lg-offset-1">
<label>备注</label>
<textarea class="form-control" rows="3"></textarea>
</div></div>
<div class="row">
<div class="col-lg-3 col-lg-offset-3">
<button type="submit" ng-click="" class="btn btn-lg btn-info btn-block">提交</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div> |
day2/index.html | ngpdx/codingnight | <!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div id="main">
<div class="fix-width">
<div id="content" class="static blog">
<div class="block-white">
<div class="metadata">
<div class="clear"></div>
</div>
<div class="article-content">
<h1>AngularJS Weather Widget</h1>
<p class="summary">
AngularJS Portland Coding night #2. I like the layout and format of the example we usedin the last meeting, </br>
and wanted to adopt this format for out future coding night's. In this example we will be starting off </br>
with a basic weather widget. It will be an angular module that you can add to another application, or web page.</br>
</p>
<h3 class="full-width">Prerequisites</h3>
<p>
The only requirement for this tutorial is a basic understanding of front-end languages such as HTML, CSS, and JavaScript. </br>
We will be using Angular directives, controllers, and services. If you are unable to attend our coding night you may need to </br>
be familiar with using these concepts to be successful.
</p>
<h3 class="full-width">The Demo App</h3>
<a href="http://plnkr.co/edit/1mBr26oZvG6qgdyjU1qP?p=info"><img src="http://i.imgur.com/P6nrcos.png" title="source: imgur.com" /></a>
<!--<a href="http://plnkr.co/edit/vWGRxl0rBwgzZhMKUTtB?p=preview"><img src="http://i.imgur.com/s5Nav85.png" class="full-width"/></a>-->
<p>
Let's get started and build out our demo app. Right-click on the image above and open a new tab to start the example with plunker. When you are in Plunker click the fork button on the top bar and we can get started.
</p>
<p>
</p>
<!--
Image of Todo app with link to Plunker
-->
<h3 class="full-width">1. Create the demo module</h3>
<p>
The first thing we need to do is initialize our demo app by creating
a module. Don't worry, it's just one line of code in app.js.
</p>
<pre class="prettyprint" lang="javascript">
angular.module('WidgetTester', []);
</pre>
<p>
We need to build a simple demo app that will include our module to display the widget. this can be part of an application or </br>
displayed in a container in a existing web page that isn't an angular application.
</p>
<h3 class="full-width">2. Initialize the View</h3>
<p>
Now that we have a our module declared, we can make our view aware
of our Angular app.
</p>
<pre class="prettyprint" lang="html">
<div class="container" ng-app="WidgetTester">
</pre>
<p>
Above, we are adding an attribute to our body tag called "ng-app" and
setting its value to the name of our module. Go to index.html and add <code>ng-app="WidgetTester"</code> to the container div.
</p>
<br/><br/>
<h3 class="full-width">The Weather Widget</h3>
<h3 class="full-width">1. Create our module</h3>
<p>
We can now get started on building our widget. Like step one of the demo app we need to initialize this module. Copy the code below into widget.js.
</p>
<pre class="prettyprint" lang="javascript">
angular.module('WeatherWidget', []);
</pre>
<h3 class="full-width">2. Copy the html from index to the widget.html template</h3>
<p>
This project started with html for the weather widget in the index.html file, so that you could see what we are building. You can cut and paste the html code between the tags that say "Widget HTML Start" and "Widget HTML End" into the directive, or save it to the widget.html file that we can reference in the directive.
</p>
<pre class="prettyprint" lang="html">
<!-- Widget HTML Start -->
<div class="container">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title header">
<div class="row">
<div class="col-xs-6">Beaverton, OR Weather</div>
<div class="col-xs-2"></div>
<div class="col-xs-3"><span>Mon 3/17</span></div>
<div class="col-xs-1 btn-group"><button class="btn btn-xs btn-default"><i class="icon-info-sign"></i>_</button></div>
</div>
</div>
</div>
<div class="panel-body pull-center body day">
<div class="row">
<div class="col-xs-2"><i class="wi wi-rain"></i></div>
<div class="col-xs-3"><span class="align-left" style="font-size:20px">53°</span></div>
<div class="col-xs-3"><span style="font-size:20px">8:30AM</span></div>
</div>
<div class="row">
<div class="col-xs-2"><span class="align-left" style="font-size:9px">53°/41°</span></div>
<div class="col-xs-3"><span class="align-left" style="font-size:9px">precip 100%</span></div>
<div class="col-xs-3"><span class="align-left" style="font-size:9px">humidity 99%</span></div>
<div class="col-xs-3"><span class="align-left" style="font-size:9px">wind 2 mph</span></div>
</div>
</div>
</div>
</div>
<!-- Widget HTML End -->
</pre>
<h3 class="full-width">3. Create our directive</h3>
<p>
Let's create our directive. Go back to widget.js where you created your WeatherWidget module and add the code shown below. From an earlier step we copied the html into a file called widget.html. In our directive we will be referencing that file using the templateUrl parameter.
</p>
<pre class="prettyprint" lang="javascript">
angular.module('WeatherWidget', [])
.directive('weatherWidget', function() {
return {
templateUrl: 'widget.html'
}
});
</pre>
<p>Now back in the index.html add the directive tag <code><weather-widget></weather-widget></code> inside of the container div where you added <code>ng-app="WidgetTester"</code> . we now have a basic directive that will display the html snippet that we started with. We will need to the directive tag to our view. </p>
<pre class="prettyprint" lang="html">
<div class="container" ng-app="WidgetTester">
<weather-widget></weather-widget>
</div>
</pre>
<p>Now refresh the page, but why do you not see anything?</p>
<p>Your WidgetTester application doesn't know about the WeatherWidget. </p>
<h3 class="full-width">4. Inject the WeatherWidget Module into our test app</h3>
<p>
In the app.js file add the WeatherWidget module
</p>
<pre class="prettyprint" lang="javascript">
angular.module('WidgetTester', [<span style="background-color: #FFFF00">'WeatherWidget'</span>]);
</pre>
<h3 class="full-width">5. Create the WeatherWidget controller</h3>
<!--
Explain dependency inject verrrryyy briefly
-->
<p>
Now that we have a basic module with a directive let's build out our controller. In the widget.js folder where you created your <code>WeatherWidget module</code> you can add the controller example below. I created an object that we will bind the the view in a later step.
</p>
<pre class="prettyprint" lang="javascript">
angular.module('WeatherWidget', [])
.directive('weatherWidget', function() {
return {
templateUrl: 'widget.html'
}
})
.controller('WeatherController', function() {
this.title = "Weather";
this.current = {
"datetime": "1426508102",
"location": {
"lat": 0,
"long": 0,
"name": "Beaverton, OR"
},
"temp": 58,
"conditions": "windy",
"wind": 12,
"humidity": 3,
"dew point": 25,
"visibility": 50,
"pressure": 10,
"high": {
"temp": 58,
"time": 1600
},
"low": {
"temp": 44,
"time": 0530
}
}
});
</pre>
<h3 class="full-width">6. Tell the view about the controller</h3>
<p>
To get our view to know about the controller we need to use the
"ng-controller" directive in our weather widget template file. In our example we are using the controllerAs syntax available in Angular 1.3. We define our controller <code>weatherController</code> as <code>weather</code>, which allows us to reference our controller as weather. We will see how to bind our data to the view in our next step.
</p>
<pre class="prettyprint" lang="html">
<div class="panel panel-default" <span style="background-color: #FFFF00">ng-controller="WeatherController as weather"</span>>
<div class="panel-heading"><div class="panel-title header">{{weather.title}}</div></div>
<div class="panel-body pull-center body">
</pre>
<h3 class="full-width">7. Bind data to the page</h3>
<p>
Before we go off and add more features we need to see how a simple data binding example works. For instance to reference the <code>Title</code> variable available in our controller we can use the <code>{{weather.title}}</code>.
In our HTML file we can bind data to the page by using
a special syntax with double curly brace on each side as shown above in the example of
<code>{{weather.title}}</code>.
</p>
<pre class="prettyprint" lang="html">
<div class="panel panel-default" ng-controller="WeatherController as weather">
<div class="panel-heading">
<div class="row">
<div class="col-xs-5">Beaverton, OR <span style="background-color: #FFFF00">{{weather.title}}</span></div>
<div class="col-xs-4"></div>
<div class="col-xs-3">Mon 3/16</div>
<div class="col-xs-2"></div>
</div>
</div>
</div>
<div class="panel-body pull-center body">
</pre>
<p>
When we run the page we will now see the Title on the page.
</p>
<pre class="prettyprint" lang="html">
</pre>
<p>
</p>
<h3 class="full-width">8. Bind the other data points</h3>
<p>
Now that we can see how the binding works choose the other items you would like to see such as high temperature, low tempurature and humidity.
</p>
<pre>
<div class="panel panel-default" ng-controller="WeatherController as weather">
<div class="panel-heading">
<div class="panel-title header">
<div class="row">
<div class="col-xs-5">{{weather.current.location.name}} {{weather.title}}</div>
<div class="col-xs-4"></div>
<div class="col-xs-3">{{weather.current.datetime}}</div>
<div class="col-xs-2"></div>
</div>
</div>
</div>
<div class="panel-body pull-center body ng-class:day">
<div class="row">
<div class="col-xs-8"><span class="align-left" style="font-size:22px">{{weather.current.location.name}}</span></div>
<div class="col-xs-1"><i ng-class="wi wi-day-sunny" style=""></i></div><div class="col-xs-2"><span class="align-left" style="font-size:20px">{{weather.current.temp}}°</span></div>
<div class="col-xs-"><span style="font-size:20px">{{weather.current.datetime}}</span></div>
</div>
</div>
<div class="row">
<div class="col-xs-2"><span class="align-left" style="font-size:9px">{{weather.current.high.temp}}°/{{weather.current.low.temp}}°</span></div>
<div class="col-xs-2"><span class="align-left" style="font-size:9px">precip {{weather.current.high.temp}}%</span></div>
<div class="col-xs-2"><span class="align-left" style="font-size:9px">humidity {{weather.current.humidity}}%</span></div>
<div class="col-xs-2"><span class="align-left" style="font-size:9px">wind {{weather.current.wind}} mph</span></div>
</div>
</div>
</pre>
<h3 class="full-width">9. Add a Date Filter</h3>
<p>If you are thinking some things just don't look right, you are right. Instead of a date in the <code>datetime</code> property doesn't look like a date or time. What we see is this <code>1426508102</code> which is an epoch (UNIX) date. In our case we will get assume we are getting at UTC or epoch date from the server and we will be filtering it. Let's choose a filter that shows us the day of the week and the day and month.</p>
<pre class="prettyprint" lang="javascript">
<div class="panel-heading">
<div class="panel-title header">
<div class="row">
<div class="col-xs-5">{{weather.current.location.name}} {{weather.title}}</div>
<div class="col-xs-4"></div>
<div class="col-xs-3">{{<span style="background-color: #FFFF00">weather.current.datetime | date:'EEE M/d'</span>}}</div>
<div class="col-xs-2"></div>
</div>
</div>
</div>
</pre>
<h3 class="full-width">10. Create a date conversion function on the controller</h3>
<p>
What we see now is a date, but it is not correct. It should read Mon 3/16 and we see Sat 1/17. We need to convert the date. Our value is not in miliseconds and we can add the epoch time and multiply it by one thousand and use it to instantiate a javascript Date object. Now go back to the widget.js file where your controller is located. Copy the code below into your controller.
</p>
<pre class="prettyprint" lang="html">
this.convertDate = function() {
return new Date(this.current.datetime * 1000);
}
</pre>
<p>Now that you have a function available in your controller you can call <code>{{weather.convertDate()}}</code> in your view. Remeber when I mention view I mean your html. In this case it is the widget.html template.</p>
<pre>
<div class="panel-heading">
<div class="panel-title header">
<div class="row">
<div class="col-xs-5">{{weather.current.location.name}} {{weather.title}}</div>
<div class="col-xs-4"></div>
<div class="col-xs-3"><span style="background-color: #FFFF00">{{weather.convertDate() | date:'EEE M/d'}} </span></div>
<div class="col-xs-2"></div>
</div>
</pre>
<h3 class="full-width">11. Add a time filter</h3>
<p>
Now we have a function to convert the date we can now apply a different filter to show the time.
</p>
<pre>
{{weather.convertDate() | date:'shortTime'}}
</pre>
</br></br>
<h2>Extra Credit</h2>
<p>If you are interested in </p>
<h3 class="full-width">12. Add a function to change the background based on the time.</h3>
<p>
We will need to define what times day and night begin. This may also change throughout the year and depend on your location. In our example here I made it simple and defined the sunrise at 6am and sunset at 8pm.
</p>
<pre>
this.getBackground = function() {
var hr = (new Date()).getHours();
return hr >= 6 && hr <= 20 ? "day" : "night";
}
</pre>
<p>Let's add the ng-class directive to our widget.html template.</p>
<pre>
<div class="panel-body pull-center body <span style="background-color: #FFFF00">ng-class:weather.getBackground()"</span>>
<div class="row">
<div class="col-xs-1"><i ng-class="wi wi-rain" style=""></i></div>
<div class="col-xs-3"><span class="align-left" style="font-size:20px">{{weather.current.temp}}°</span></div>
<div class="col-xs-3"><span style="font-size:20px">{{weather.convertDate() | date:'shortTime'}}</span></div>
<div class="col-xs-3"><span style="font-size:20px">{{weather.convertDate() | date:'EEE M/d'}}</span></div>
</div>
</pre>
<p>Add this function to the widget.js file inside of the controller. I have defined two styles day or night in the widgetstyle.css file if you would like to change the colors.</p>
<pre>
.night {
background-color: #000;
}
.day {
background-color:#87CEEB;
}
</pre>
<h3 class="full-width">13. Let's create a function to change the icon based on the description</h3>
<p>
We now have a function that changes the background color based on the current time when the widget is loaded. I created another object that is part of our controller in the widget.js file. This is the icons object, and I defined properties of day or night. This is due to the fact that the icons will have a moon or sun. I have then added keys that relate to the condition and the value of the css property for the icon class.
</p>
<pre>
this.icons = {
"day" : {
"sunny": "wi-sunny-day",
"windy": "wi-day-cloudy-gusts",
"rainy": "wi-day-rain",
"lightning": "wi-day-lightning",
"hailing": "wi-day-sleet",
"thunderstorms": "wi-day-thunderstorm",
"snowing": "wi-day-snow",
"fog": "wi-day-fog",
"hot": "wi-hot"
},
"night": {
"clear": "wi-night-clear",
"windy": "wi-cloudy-gusts",
"rainy": "wi-night-alt-rain",
"lightning": "wi-night-alt-lightning",
"hailing": "wi-night-hail",
"thunderstorms": "wi-night-thunderstorm",
"snowing": "wi-night-alt-snow",
"showers": "wi-night-alt-showers",
"fog": "wi-night-fog"
}
}
</pre>
<p>
We now have a small set of icons for the conditions we could see. Let's put that to use by creating a function that can return the icon string value based on the condition. We are still in the widget.js and will add the <code>getIcon()</code> function below to our controller.
</p>
<p>
I am using lodash to simplify the function, but it may not make sense if you haven't been exposed to lodash. I am mapping the condition string from the current object found in our controller to the key in the icons object. The value returned is an array, and I get the result based on the key of "day" or "night". You should now see your icon.
</p>
<pre>
this.getIcon = function() {
var condition = _.mapValues(this.icons, this.current.condition);
return "wi " + _.result(condition, this.getBackground());
}
</pre>
<p>
Now we add it to our view in the widget.html template.
</p>
<pre>
<div class="panel-body pull-center body ng-class:weather.getBackground()">
<div class="row">
<div class="col-xs-1"><i <span style="background-color: #FFFF00">ng-class="getIcon()"</span> style=""></i></div>
<div class="col-xs-3"><span class="align-left" style="font-size:20px">{{weather.current.temp}}°</span></div>
<div class="col-xs-3"><span style="font-size:20px">{{weather.convertDate() | date:'shortTime'}}</span></div>
<div class="col-xs-3"><span style="font-size:20px">{{weather.convertDate() | date:'EEE M/d'}}</span></div>
</div>
</pre>
<h3 class="full-width">Summary</h3>
<p>
You are now done with part 1 of our series and we have accomplished a lot of things in a short amount of time. You have created your own weather directive that you can reuse in a web page or an application. We also got to use ng-class, filters, controllers and directives. We are ready now to add a location service, data services, and some new visual features in part 2.
</p>
</div>
</div>
</body>
</html> |
lib/JADE/doc/api/jade/core/sam/CounterValueProvider.html | shookees/SmartFood_old | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="it">
<head>
<!-- Generated by javadoc (version 1.7.0_03) on Wed Dec 04 15:37:59 CET 2013 -->
<title>CounterValueProvider (JADE v4.3.1 API)</title>
<meta name="date" content="2013-12-04">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="CounterValueProvider (JADE v4.3.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/CounterValueProvider.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../jade/core/sam/AverageMeasureProviderImpl.html" title="class in jade.core.sam"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../jade/core/sam/MeasureProvider.html" title="interface in jade.core.sam"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?jade/core/sam/CounterValueProvider.html" target="_top">Frames</a></li>
<li><a href="CounterValueProvider.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">jade.core.sam</div>
<h2 title="Interface CounterValueProvider" class="title">Interface CounterValueProvider</h2>
</div>
<div class="contentContainer">
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Superinterfaces:</dt>
<dd><a href="../../../jade/core/sam/Provider.html" title="interface in jade.core.sam">Provider</a></dd>
</dl>
<hr>
<br>
<pre>public interface <span class="strong">CounterValueProvider</span>
extends <a href="../../../jade/core/sam/Provider.html" title="interface in jade.core.sam">Provider</a></pre>
<div class="block">A provider of values for a given counter. The <code>isDifferential()<code> method
indicates whether provided values are differential or total. In the former case
if the counter value is now H and was K when <code>getValue()</code> was invoked at
previous round, <code>getValue()</code> must return H-K.</div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><strong><a href="../../../jade/core/sam/CounterValueProvider.html#getValue()">getValue</a></strong>()</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../jade/core/sam/CounterValueProvider.html#isDifferential()">isDifferential</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getValue()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getValue</h4>
<pre>long getValue()</pre>
</li>
</ul>
<a name="isDifferential()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>isDifferential</h4>
<pre>boolean isDifferential()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/CounterValueProvider.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-all.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../jade/core/sam/AverageMeasureProviderImpl.html" title="class in jade.core.sam"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../jade/core/sam/MeasureProvider.html" title="interface in jade.core.sam"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?jade/core/sam/CounterValueProvider.html" target="_top">Frames</a></li>
<li><a href="CounterValueProvider.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary: </li>
<li>Nested | </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li>Constr | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><center>These are the official <i><a href=http://jade.tilab.com target=top>JADE</a></i> API. For these API backward compatibility is guaranteed accross JADE versions</center></small></p>
</body>
</html>
|
Practice/Intro-To-Java-8th-Ed-Daniel-Y.-Liang/Chapter-6/Chapter06P19/doc/index-files/index-1.html | tliang1/Java-Practice | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_102) on Sun Jan 15 18:51:24 PST 2017 -->
<title>M-Index</title>
<meta name="date" content="2017-01-15">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="M-Index";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../main/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="../main/package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
<li><a href="index-1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="index-1.html">M</a> <a href="index-2.html">S</a> <a name="I:M">
<!-- -->
</a>
<h2 class="title">M</h2>
<dl>
<dt><a href="../main/package-summary.html">main</a> - package main</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="../main/SortingStudents.html#main-java.lang.String:A-">main(String[])</a></span> - Static method in class main.<a href="../main/SortingStudents.html" title="class in main">SortingStudents</a></dt>
<dd> </dd>
</dl>
<a href="index-1.html">M</a> <a href="index-2.html">S</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../main/package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="../main/package-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev Letter</li>
<li><a href="index-2.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-files/index-1.html" target="_top">Frames</a></li>
<li><a href="index-1.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
tags/资质认证/index.html | samrain/NewBlog | <!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@韩雨"/>
<meta name="twitter:title" content="sam的小窝"/>
<meta name="twitter:description" content="学习 &nbsp;&bull;&nbsp; 生活"/>
<meta name="twitter:image" content="http://www.samrainhan.com/images/avatar.png" />
<meta name="author" content="韩雨">
<meta name="description" content="学习 &nbsp;&bull;&nbsp; 生活">
<meta name="generator" content="Hugo 0.41" />
<title>资质认证 · sam的小窝</title>
<link rel="shortcut icon" href="http://www.samrainhan.com/images/favicon.ico">
<link rel="stylesheet" href="http://www.samrainhan.com/css/style.css">
<link rel="stylesheet" href="http://www.samrainhan.com/css/highlight.css">
<link rel="stylesheet" href="http://www.samrainhan.com/css/font-awesome.min.css">
<link href="http://www.samrainhan.com/index.xml" rel="alternate" type="application/rss+xml" title="sam的小窝" />
</head>
<body>
<nav class="main-nav">
<a href='http://www.samrainhan.com/'> <span class="arrow">←</span>Home</a>
<a href='http://www.samrainhan.com/posts'>Archive</a>
<a href='http://www.samrainhan.com/tags'>Tags</a>
<a href='http://www.samrainhan.com/about'>About</a>
<a class="cta" href="http://www.samrainhan.com/index.xml">Subscribe</a>
</nav>
<div class="profile">
<section id="wrapper">
<header id="header">
<a href='http://www.samrainhan.com/about'>
<img id="avatar" class="2x" src="http://www.samrainhan.com/images/avatar.png"/>
</a>
<h1>sam的小窝</h1>
<h2>学习 & 生活</h2>
</header>
</section>
</div>
<section id="wrapper" class="home">
<div class="archive">
<h3>2012</h3>
<ul>
<div class="post-item">
<div class="post-time">Nov 28</div>
<a href="http://www.samrainhan.com/posts/2012-11-28-the-identification-software-companies-and-software-product-registration/" class="post-link">
what are 双软认证
</a>
</div>
</ul>
</div>
<footer id="footer">
<div id="social">
<a class="symbol" href="">
<i class="fa fa-facebook-square"></i>
</a>
<a class="symbol" href="https://github.com/samrain">
<i class="fa fa-github-square"></i>
</a>
<a class="symbol" href="">
<i class="fa fa-twitter-square"></i>
</a>
</div>
<p class="small">
© Copyright 2018 <i class="fa fa-heart" aria-hidden="true"></i> 韩雨
</p>
<p class="small">
Powered by <a href="http://www.gohugo.io/">Hugo</a> Theme By <a href="https://github.com/nodejh/hugo-theme-cactus-plus">nodejh</a>
</p>
</footer>
</section>
<div class="dd">
</div>
<script src="http://www.samrainhan.com/js/jquery-3.3.1.min.js"></script>
<script src="http://www.samrainhan.com/js/main.js"></script>
<script src="http://www.samrainhan.com/js/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>
var doNotTrack = false;
if (!doNotTrack) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-37708730-1', 'auto');
ga('send', 'pageview');
}
</script>
</body>
</html>
|
_site/posts/2015/12/31/Framtidsutsikter.html | simenstoa/simenstoa.github.io | <!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>Framtidsutsikter</title>
<meta name="description" content="I desember var det over dobbelt så mange asylsøkere i Norge som for ett år siden, og tallet forventes å øke enda mer til neste år. Selv om 30 000 asylsøkere ...">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="https://simenstoa.github.io/posts/2015/12/31/Framtidsutsikter.html">
<link rel="alternate" type="application/rss+xml" title="Eli Støa" href="https://simenstoa.github.io/feed.xml">
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/">Eli Støa</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="/om/">Om</a>
<a class="page-link" href="/publikasjoner/">Publikasjoner</a>
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<article class="post" itemscope itemtype="http://schema.org/BlogPosting">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">Framtidsutsikter</h1>
<p class="post-meta"><time datetime="2015-12-31T00:00:00+01:00" itemprop="datePublished">Dec 31, 2015</time></p>
</header>
<div class="post-content" itemprop="articleBody">
<p>I desember var det over dobbelt så mange asylsøkere i Norge som for ett år siden, og tallet forventes å øke enda mer til neste år. Selv om 30 000 asylsøkere langt fra utgjør et dramatisk høyt tall, er det likevel stort nok til å minne oss om at krig, uro og fattigdom andre steder i verden kan få direkte innvirkning på våre egne byer, tettsteder og nabolag. Og det har allerede endret oss, blant annet ved at vi på en annen måte enn tidligere må forholde oss til at Norge er i endring. Spørsmålet er ikke om, men hvordan. Hva kan vi gjøre for at endringene blir mest mulig positive for oss alle? Og hva har dette med byutvikling og arkitektur å gjøre?</p>
<p>Siden august har jeg bodd i Brussel. Brussel er omtalt som en av mest multikulturelle byene i verden. Den belgiske filosofen og forfatteren Bleri Lleshi uttalte nylig i en artikkel i The Brussels Times at nettopp dette gjør at byen ikke bare er en fantastisk by å bo i, men at den også kan sees som et symbol på framtida. Uttalelsen kom etter at vi opplevde noen dager i tilnærmet krigstilstand med soldater og militærkjøretøy i gatene på jakt etter noen av dem som stod bak terroraksjonen i Paris. Det var en befriende påminnelse i en periode da frykten for «de fremmede» var i ferd med å få overtaket. Lleshi fikk fram at problemet IKKE er kulturelt mangfold (forstått som for mange muslimske innvandrere), men hvordan mangfoldet håndteres.</p>
<p>Tilbake til Norge. Vi kan påvirke hvilke boligomgivelser våre nye landsmenn blir tilbudt. Når vi vet at mange blir boende på asylmottak i flere år, er det en veldig dårlig løsning at mange mottak har en beliggenhet og en boligstandard som ingen andre beboergrupper her i landet ville ha akseptert. Hvis vi vil at integreringen skal starte allerede på mottakene, må de ha kvaliteter som symboliserer og praktisk tilrettelegger for inkludering og framtidshåp og ikke det motsatte – nemlig å øke tersklene mellom «dem» og «oss» og skape mer frustrasjon og håpløshet.</p>
<p>Mitt ønske for året som kommer er at vi evner å bruke de mulighetene som byutvikling og arkitektur gir for å bidra til at Norge blir et framtidsrettet flerkulturelt samfunn. Det er i folks hverdagsomgivelser at de positive utsiktene skapes.</p>
<p>Godt nytt år!</p>
<p>(Teksten stod på trykk i Adresseavisens Hjem-bilag, torsdag 31.12.2015)</p>
</div>
</article>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li>Eli Støa</li>
<li><a href="mailto:eli.stoa@ntnu.no">eli.stoa@ntnu.no</a></li>
<li class="rss-subscribe">Abonner <a href="/feed.xml">via RSS</a></li>
</ul>
</div>
<div class="footer-col footer-col-2">
<img src="/images/elistoa.png" alt="Bilde av Eli">
</div>
<div class="footer-col footer-col-3">
<p>Eli Støa er boligprofessor ved Fakultet for Arkitektur og Billedkunst ved NTNU. På denne siden vil hun legge ut informasjon om prosjekter og publikasjoner. Hun skriver jevnlig for Adressa, og disse tekstene blir også lagt ut her.
</p>
</div>
</div>
</div>
</footer>
</body>
</html>
|
CS 1027 - Java -- (Computer Science Fundamentals 2)/assignments/Assignment1_Vivian_Lam/vlam54/question2/q2javaDoc/constant-values.html | V-Lam/School-Assignments-and-Labs-2014-2017 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_45) on Fri Jul 03 22:17:46 EDT 2015 -->
<title>Constant Field Values</title>
<meta name="date" content="2015-07-03">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Constant Field Values";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Constant Field Values" class="title">Constant Field Values</h1>
<h2 title="Contents">Contents</h2>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="package-summary.html">Package</a></li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-files/index-1.html">Index</a></li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li>
<li><a href="constant-values.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
lablog/views/templates/index.html | NationalAssociationOfRealtors/LabLog | {% extends "base.html" %}
{% block title %}Dashboard{% endblock %}
{% block body_class %}index{% endblock %}
{% block content %}
<div class="container">
<div class="row">
<h3>Locations</h3>
{% for loc in location.find() %}
{% if loc.property_id %}
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<a href="{{url_for('locations.location_property', location=loc._id)}}">
<img src="http://www.mredllc.com/photos/property/{{loc.property_id[-3:]}}/{{loc.property_id}}.jpg" alt="">
<div class="caption">
<h4>{{loc.mls.StreetNumber}} {{loc.mls.StreetName}}</h4>
<p>{{loc.mls.PublicRemarks}}</p>
</div>
</a>
</div>
</div>
{% else %}
<a href="{{url_for('locations.location', id=loc._id)}}">FIX {{loc.name}}</a>
{% endif %}
{% endfor %}
</div>
<div class="row">
<h3>True Cost of Living Comparison</a></h3>
<div class="col-md-12">
<table class='table tablesorter' id='tlc'>
<thead>
<tr>
<th>Name</th>
<th>Zipcode</th>
{% for k,v in largest[0:5] %}
<th>{{k}}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for l in location.find() %}
{% if l.property_id %}
<tr>
<td>{{l.mls.StreetNumber}} {{l.mls.StreetName}}</td>
<td>{{l.zipcode}}</td>
{% for k,v in largest[0:5] %}
<td>${{l.tlc.get(k)}}</td>
{% endfor %}
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
<script type="text/javascript">
try{
var access_token = window.location.href.split("access_token=")[1].split("&")[0];
var error = window.location.href.split("error=")[1];
window.opener.postMessage({access_token:access_token, error: error}, "*");
window.close();
}catch(e){
console.log(e);
}
$(document).ready(function() {
$("#tlc").tablesorter();
}
);
</script>
{% endblock %}
|
coverage/ngx-duality/src/index.ts.html | Danny908/ngx-duality | <!doctype html>
<html lang="en">
<head>
<title>Code coverage report for ngx-duality/src/index.ts</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../prettify.css" />
<link rel="stylesheet" href="../../base.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type='text/css'>
.coverage-summary .sorter {
background-image: url(../../sort-arrow-sprite.png);
}
</style>
</head>
<body>
<div class='wrapper'>
<div class='pad1'>
<h1>
<a href="../../index.html">All files</a> / <a href="index.html">ngx-duality/src</a> index.ts
</h1>
<div class='clearfix'>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Statements</span>
<span class='fraction'>8/8</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Branches</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Functions</span>
<span class='fraction'>0/0</span>
</div>
<div class='fl pad1y space-right2'>
<span class="strong">100% </span>
<span class="quiet">Lines</span>
<span class='fraction'>4/4</span>
</div>
</div>
</div>
<div class='status-line high'></div>
<pre><table class="coverage">
<tr><td class="line-count quiet">1
2
3
4
5</td><td class="line-coverage quiet"><span class="cline-any cline-yes">1x</span>
<span class="cline-any cline-yes">1x</span>
<span class="cline-any cline-yes">1x</span>
<span class="cline-any cline-yes">1x</span>
<span class="cline-any cline-neutral"> </span></td><td class="text"><pre class="prettyprint lang-js">export { TickTockService } from './services';
export { TickTockComponent } from './components';
export { NgxOverStyleDirective } from './directives';
export { TickTockModule } from './tick-tock.module';
</pre></td></tr>
</table></pre>
<div class='push'></div><!-- for sticky footer -->
</div><!-- /wrapper -->
<div class='footer quiet pad2 space-top1 center small'>
Code coverage
generated by <a href="https://istanbul.js.org/" target="_blank">istanbul</a> at Mon Oct 09 2017 16:36:23 GMT-0500 (CDT)
</div>
</div>
<script src="../../prettify.js"></script>
<script>
window.onload = function () {
if (typeof prettyPrint === 'function') {
prettyPrint();
}
};
</script>
<script src="../../sorter.js"></script>
</body>
</html>
|
app/search/search-templates.html | kentcdodds/issue-template | <div>
<div ng-show="templates.length > 0">
<h3>Search GitHub Projects <small>with issue templates</small></h3>
<div class="margin-bottom-medium">
<div class="text-muted" ng-show="owner && !repo">
See all templates <a href="#/" ga>here</a>.
</div>
<div class="text-muted" ng-show="repo">
See more templates from this repo owner <a href="#/{{owner}}" ga>here</a>.
</div>
</div>
<input type="search" class="form-control" autofocus ng-model="search">
<hr />
<div ng-repeat="template in templates | filter:search">
<a ng-href="#/{{template.owner}}/{{template.repo}}/{{template.name}}" ga>{{template.owner}}/{{template.repo}}/{{template.name}}</a>
</div>
</div>
<div ng-show="templates.length < 1">
<h3>No templates here :-(</h3>
<div ng-show="!owner">
Looks like nobody has setup any templates. Why don't you try it for one of your projects? <a href="./new-template" ga>Create a template</a>.
</div>
<div ng-show="owner && !repo">
It looks like <a ng-href="https://github.com/{{owner}}" ga>{{owner}}</a> has not created any templates.
See all templates <a href="#/" ga>here</a>.
</div>
<div ng-show="repo">
It looks like there are no templates for the <a ng-href="https://github.com/{{owner}}/{{repo}}" ga>{{owner + '/' + repo}}</a> repo...
Why don't you <a ng-href="https://github.com/{{owner}}/{{repo}}/issues/new" ga>invite them to make one</a>?
See more templates from the {{repo}} owner <a href="#/{{owner}}" ga>here</a>.
</div>
</div>
</div>
|
partials/search.html | vieillecam/MtBonsPlans | <hr>
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-4 col-sm-5 col-xs-12">
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-title">
<span>Recherche</span>
</div>
</div>
<div class="panel-body">
<form name="myForm" role="form">
<div class="form-group">
<input class="col-lg-12" type="search" ng-model="q" placeholder="Mots Clefs..." />
</div>
<div class="form-group btn-group col-lg-12">
<button type="button" class="btn btn-primary" ng-model="src.type" btn-radio="'Tout'">Tout</button>
<button type="button" class="btn btn-primary" ng-model="src.type" btn-radio="'Itineraire'">Itinéraire</button>
<button type="button" class="btn btn-primary" ng-model="src.type" btn-radio="'Lieu'">Lieu</button>
</div>
<div class="form-group">
<label for="src-select-cat" >Catégorie : </label>
<select id="src-select-cat" class="form-control" ng-model="src.Cat" ng-show = "src.type == 'Tout'" ng-disabled="src.type == 'Tout'">
<option>Tout</option>
</select>
<select id="src-select-cat" class="form-control" ng-model="src.Cat" ng-show = "src.type == 'Itineraire'">
<option value="Tout">Tout</option>
<option value="à pied">à pied</option>
<option value="Vélo">à Vélo</option>
<option value="en char">en char</option>
</select>
<select id="src-select-cat" class="form-control" ng-model="src.Cat" ng-show = "src.type == 'Lieu'">
<option value="Tout">Tout</option>
<option value="Bar">Bar</option>
<option value="Brunch">Brunch</option>
</select>
</div>
<label for="src-select-theme" >Thème : </label>
<select id="src-select-theme" class="form-control" ng-model="src.Theme">
<option value="Tout" selected>Tout</option>
<option value="Hébergement">Hébergement</option>
<option value="Magasinage">Magasinage</option>
<option value="Nature">Nature</option>
<option value="Site/Monument">Site/Monument</option>
<option value="Utile">Utile</option>
<option value="Bouffe">Bouffe</option>
</select>
</form>
</div>
</div>
</div>
<div class="col-lg-8 col-md-offset-1 col-md-7 col-md-offset-1 col-sm-6 col-sm-offset-1 col-xs-8 col-xs-offset-1">
<div class="row">
<section ng-repeat="place in filteredLieux = (lieux.data.features | filter: q | filter: srcType | filter: srcCat | filter: srcTheme)" id="panel-src">
<a href="#/places/{{place.properties.id}}">
<div class= "col-lg-5 col-md-5 col-sm-5 col-xs-12 col-xs-offset-1" ng-class="placeClass" ng-mouseenter="placeClass='srcOver'" ng-mouseleave="placeClass='srcSimple'" >
<center><h4>{{place.properties.Nom}}</h4></center>
<img class="img-responsive img-thumbnail" alt="Responsive image" ng-src="Data/Photos/{{place.properties.Photo[0].URL}}">
<pre hidden>{{place.properties.Comm}}</pre>
</div>
</a>
</section>
</div>
</div>
</div>
</div> |
client/app/app.css | robbyemmert/AppManager |
/**
* Bootstrap Fonts
*/
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot');
src: url('../bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
url('../bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff') format('woff'),
url('../bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
url('../bower_components/bootstrap/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}
/**
*Font Awesome Fonts
*/
@font-face {
font-family: 'FontAwesome';
src: url('../bower_components/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
src: url('../bower_components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),
url('../bower_components/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),
url('../bower_components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),
url('../bower_components/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
font-weight: normal;
font-style: normal;
}
/**
* App-wide Styles
*/
.browsehappy {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
#main-growl {
position: fixed;
width: 300px;
right: 20px;
top: 45px;
z-index: 10000;
}
|
app/templates/admin/base.html | NCSUWebClass/fall14-recognize4 | {% load admin_static %}{% load firstof from future %}<!DOCTYPE html>
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{% block stylesheet %}{% static "admin/css/base.css" %}{% endblock %}" />
{% block extrastyle %}{% endblock %}
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]-->
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
<script type="text/javascript">window.__admin_media_prefix__ = "{% filter escapejs %}{% static "admin/" %}{% endfilter %}";</script>
{% block extrahead %}{% endblock %}
{% block blockbots %}<meta name="robots" content="NONE,NOARCHIVE" />{% endblock %}
</head>
{% load i18n %}
<body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
<!-- Container -->
<div id="container">
{% if not is_popup %}
<!-- Header -->
<div id="header">
<div id="branding">
{% block branding %}{% endblock %}
</div>
{% if user.is_active and user.is_staff %}
<div id="user-tools">
{% trans 'Welcome,' %}
<strong>{% firstof user.get_short_name user.get_username %}</strong>.
{% block userlinks %}
{% url 'django-admindocs-docroot' as docsroot %}
{% if docsroot %}
<a href="{{ docsroot }}">{% trans 'Documentation' %}</a> /
{% endif %}
{% if user.has_usable_password %}
<a href="{% url 'admin:password_change' %}">{% trans 'Change Password' %}</a> /
{% endif %}
<a href="{% url 'admin:logout' %}">{% trans 'Log Out' %}</a>
{% endblock %}
</div>
{% endif %}
{% block nav-global %}{% endblock %}
</div>
<!-- END Header -->
{% block breadcrumbs %}
<div class="breadcrumbs">
<a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
{% if title %} › {{ title }}{% endif %}
</div>
{% endblock %}
{% endif %}
{% block messages %}
{% if messages %}
<ul class="messagelist">{% for message in messages %}
<li{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message|capfirst }}</li>
{% endfor %}</ul>
{% endif %}
{% endblock messages %}
<!-- Content -->
<div id="content" class="{% block coltype %}colM{% endblock %}">
{% block pretitle %}{% endblock %}
{% block content_title %}{% if title %}<h1>{{ title }}</h1>{% endif %}{% endblock %}
{% block content %}
{% block object-tools %}{% endblock %}
{{ content }}
{% endblock %}
{% block sidebar %}{% endblock %}
<br class="clear" />
</div>
<!-- END Content -->
{% block footer %}<div id="footer"></div>{% endblock %}
</div>
<!-- END Container -->
</body>
</html>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/bc449e032fcc94a6a99d1d895b20b76308a91f9f1d11a69fd38d4682cbd3377e.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./3c5807fee35669a3599171a35d0e252020c564c2345f612331298fea0231d9bf.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> |
www/charts.html | mahiso/poloniexlendingbot | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>Lending Bot - Profit Charts</title>
<!-- Bootstrap Core CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<!-- jQuery Version 1.12.2 -->
<script src="https://code.jquery.com/jquery-1.12.2.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
$.getJSON("history.json", function(jsonHistory) {
// loop over each coin and make the data array for each chart
$.each(jsonHistory, function(coin, coinData) {
// First array is series headers
myData = Array(["Date", coin, "Total"])
// Add remaining data
$.each(coinData, function(i, j) {
_v = parseFloat(j[1])
_w = parseFloat(j[2])
myData.push([ new Date(j[0]*1000), { v: _v, f: _v.toFixed(8) }, { v: _w, f: _w.toFixed(8) } ])
});
var options = {
'title': coin + ' Daily Lending Earnings',
'vAxes': {
0: { 'title': 'Daily' },
1: { 'title': 'Totals' }
},
'series': [ {'targetAxisIndex': 0}, {'targetAxisIndex': 1} ],
'explorer': { keepInBounds: true }
};
var data = google.visualization.arrayToDataTable(myData)
var chartContainer = $('#chart-container')
var chartDiv = "chart_div_" + coin
chartContainer.prepend('<div class="row"><div class="col-md-12"><div id="' + chartDiv + '" style="width: 100%; height: 420px"></div></div></div>');
var chart = new google.visualization.LineChart(document.getElementById(chartDiv));
chart.draw(data, options);
});
});
}
</script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header" style="margin-left:8px">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="lendingbot.html"><img src="images/icon192.png" height="32" width="32" style="margin-top: 8px;margin-right: 8px;margin-left: -15px;vertical-align:top"></a>
<div style="display:inline-block">
<h4 class="brand-margin" id="title">Lending Bot - Profit Charts</h4>
</div>
</div>
<ul class="nav navbar-nav navbar-right" id="navbar-menu">
<li id="charts-navbar" data-toggle="collapse" data-target=".navbar-collapse.in"><a href="/lendingbot.html">Dashboard</a></li>
</ul>
</div>
</nav>
<div class="container" style="padding-top:50px" id="chart-container">
<div class="row">
<div class="col-md-12">
<p class="text-center small">*Profits are displayed as the currency in which they were lent.</p>
</div>
</div>
</div>
</body>
</html>
|
www/partials/navigation.html | mayurchoksi/seismi-web-client | <header>
<nav class="tab-bar">
<!-- Application Title -->
<section class="middle tab-bar-section">
<h1 class="title">Seismi Web Client</h1>
</section>
<section class="right-small">
<a class="right-off-canvas-toggle menu-icon" href="">
<span></span>
</a>
</section>
</nav>
<!-- Aside Menu Items -->
<aside class="right-off-canvas-menu">
<ul class="off-canvas-list">
<li><a id="home" href="#/">Dashboard</a>
</li>
<li><a href="#/list">List</a>
</li>
<li><a href="#/markerMap">Geo Marker Map</a>
</li>
<li><a href="#/bubbleChart">Bubble Chart</a>
</li>
</ul>
</aside>
</header>
|
src/json/test.html | stealjs/steal | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>json extension tests</title>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script>
var steal = {
paths: {
"steal-qunit": "node_modules/steal-qunit/steal-qunit.js"
},
map: {
"qunitjs": "node_modules/qunitjs"
},
meta: {
"node_modules/qunitjs/qunit/qunit": {
"format": "global",
"exports": "QUnit"
}
},
ext: {
"css": "node_modules/steal-css/css.js"
}
}
</script>
<script
src="../../steal.js"
main="src/json/test/"
config-main="../../package.json!npm"
>
</script>
</body>
</html>
|
src/modules/associates/associates.view.html | creativo-pty/adevav-front-end | <div layout>
<section flex="75">
<h2 class="entry-title">Nuestras Asociadas</h2>
<ul id="associates-list" class="thumbnails" layout layout-wrap layout-align="space-around stretch">
<li id="associate-{{ associate.id }}" class="associate" ng-repeat="associate in vm.associates track by associate.id" flex="45">
<article class="thumbnail">
<h3>
{{ associate.fullName }}
<span class="label">
{{ (associate.role) ? associate.position + ' - ' + associate.role : associate.position }}
</span>
</h3>
<div layout>
<div>
<img ng-src="{{ associate.avatar }}"/>
</div>
<div flex>
<p>{{ associate.biography }}</p>
</div>
</div>
<div class="navbar">
<ul class="nav" layout>
<li>
<a ui-sref="public.contact-us({ associateId: associate.id })"><i class="glyphicon glyphicon-envelope"></i></a>
</li>
<li flex>
<a ui-sref="public.associates({ id: associate.id })">Ver más…</a>
</li>
</ul>
</div>
</article>
</li>
<li ng-if="vm.associates.length % 2 === 1" flex="45"></li>
</ul>
</section>
<sidebar flex="25"></sidebar>
</div>
|
tools/mybatis-generator/docs/generatedobjects/javamodel.html | hemingwang0902/mochasoft-framework | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- Generated by Apache Maven Doxia at Jul 16, 2012 -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>
MyBatis Generator Generated Java Model Classes</title>
<link rel="stylesheet" href="../css/apache-maven-fluido.min.css" />
<link rel="stylesheet" href="../css/site.css" />
<link rel="stylesheet" href="../css/print.css" media="print" />
<style>body{padding-top: 20px;}</style>
<script type="text/javascript" src="../js/apache-maven-fluido.min.js"></script>
<meta name="Date-Revision-yyyymmdd" content="20120716" />
<meta http-equiv="Content-Language" content="en" />
<link rel="stylesheet" type="text/css" href="../mbgstyle.css" />
</head>
<body>
<div class="container-fluid">
<div id="banner">
<div class="pull-left"> <a href="../index.html" id="bannerLeft" title="MyBatis logo">
<img src="../images/logo.png" alt="MyBatis logo"/>
</a>
</div>
<div class="pull-right"> </div>
<div class="clear"><hr/></div>
</div>
<div id="breadcrumbs">
<ul class="breadcrumb">
<li id="publishDate">Last Published: 16 July 2012</li>
<li class="divider">|</li> <li id="projectVersion">Version: 1.3.2</li>
</ul>
</div>
<div id="leftColumn" class="sidebar">
<div class="well">
<h5>User's Guide</h5>
<ul>
<li class="none">
<a href="../index.html" title="Introduction">Introduction</a>
</li>
<li class="none">
<a href="../whatsNew.html" title="What's New?">What's New?</a>
</li>
<li class="none">
<a href="../quickstart.html" title="Quick Start Guide">Quick Start Guide</a>
</li>
<li class="collapsed">
<a href="../running/running.html" title="Running MyBatis Generator">Running MyBatis Generator</a>
</li>
<li class="none">
<a href="../afterRunning.html" title="Tasks After Running MyBatis Generator">Tasks After Running MyBatis Generator</a>
</li>
<li class="none">
<a href="../migratingFromIbator.html" title="Migrating from Ibator">Migrating from Ibator</a>
</li>
<li class="none">
<a href="../migratingFromAbator.html" title="Migrating from Abator">Migrating from Abator</a>
</li>
<li class="collapsed">
<a href="../configreference/xmlconfig.html" title="XML Configuration Reference">XML Configuration Reference</a>
</li>
<li class="expanded">
<a href="../generatedobjects/results.html" title="Using the Generated Objects">Using the Generated Objects</a>
<ul>
<li class="none">
<strong>Java Model Objects</strong>
</li>
<li class="none">
<a href="../generatedobjects/sqlmap.html" title="SQL Map Files">SQL Map Files</a>
</li>
<li class="none">
<a href="../generatedobjects/javaclient.html" title="Java Client Objects">Java Client Objects</a>
</li>
<li class="none">
<a href="../generatedobjects/exampleClassUsage.html" title="Example Class Usage Notes">Example Class Usage Notes</a>
</li>
<li class="none">
<a href="../generatedobjects/extendingExampleClass.html" title="Extending the Example Classes">Extending the Example Classes</a>
</li>
</ul>
</li>
<li class="collapsed">
<a href="../usage/intro.html" title="Database Specific Information">Database Specific Information</a>
</li>
<li class="collapsed">
<a href="../reference/intro.html" title="Other Reference Information">Other Reference Information</a>
</li>
</ul>
<h5>Project Documentation</h5>
<ul>
<li class="collapsed">
<a href="../project-info.html" title="Project Information">Project Information</a>
</li>
</ul>
<div id="poweredBy">
<a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy">
<img class="poweredBy" alt="Built by Maven" src="../images/logos/maven-feather.png" />
</a>
</div>
</div>
</div>
<div id="bodyColumn" class="content">
<div id="contentBox">
<h1>MyBatis Generator Generated Java Model Classes</h1>
<p>MyBatis Generator (MBG) generates Java classes that correspond to the fields in a database table.
The generated classes are a type of domain object, but should in no way be confused
with a rich domain model (see the <a href="../philosophy.html">Philosophy</a> page
for more on this subject). MBG generates different types of "domain" objects based on
the characteristics of the table and configuration options.</p>
<p>Every field and method generated by MBG includes the non-standard JavaDoc tag
<tt>@mbggenerated</tt>. When run from the Eclipse plugin,
on subsequent runs of MBG every Java element that
includes this JavaDoc tag will be deleted and replaced. Any other Java element in the
class will be untouched by MBG.
With this in mind, you can add other fields and methods to the classes without fear of losing them in
subsequent runs of MBG - simply DO NOT include the <tt>@mbggenerated</tt>
JavaDoc tag on anything that you add to the class.</p>
<p>Outside of the Eclipse plugin, Java files need to be merged by hand, but you can use the
<tt>@mbggenerated</tt> JavaDoc tag to know what is safe to delete from a prior
version of a file.</p>
<p>The following sections describe the different types of "domain" classes that will be
generated. MBG will generate different types of domain classes depending
on the value of the <tt>defaultModelType</tt> attribute of the
<a href="../configreference/context.html"><context></a>
configuration element and the <tt>modelType</tt> attribute of the
<a href="../configreference/table.html"><table></a>
configuration element.</p>
<p>Any column ignored by an
<a href="../configreference/ignoreColumn.html"><ignoreColumn></a>
configuration element will
by ignored and not added to any generated Java class.</p>
<p>Note: in the following descriptions, the term "BLOB" is used to refer to any column
with a data type of BLOB, CLOB, LONGVARCHAR, or LONGVARBINARY.</p>
<div class="section"><h2>Primary Key Class<a name="Primary_Key_Class"></a></h2>
<p>This class will contain properties for each field in the primary key of a table.
The property names will be generated automatically, and will be based on the column name
in the table. The generated property names can be overridden with a
<tt><columnOverride></tt> configuration element.
</p>
<p>The name of the class will be <tt>TableNameKey</tt> by default, or
<tt>domainObjectNameKey</tt> if the <tt>domainObjectName</tt>
attribute is specified on the <tt><table></tt> configuration element.</p>
<p>This class will be generated in the hierarchical model if the table has a primary key.
This class will be generated in the conditional model if the table has more
then one column in the primary key. This class will not be generated in the flat
model.</p>
</div><div class="section"><h2>Record Class<a name="Record_Class"></a></h2>
<p>This class will contain properties for each non-BLOB and non-primary key column in the table.
The class will extend the primary key class if there is one.
The property names will be generated automatically, and will be based on the column name
in the table. The generated property names can be overridden with a
<tt><columnOverride></tt> configuration element.</p>
<p>The name of the class will be <tt>TableName</tt> by default, or
<tt>domainObjectName</tt> if the <tt>domainObjectName</tt>
attribute is specified on the <tt><table></tt> configuration element.</p>
<p>This class will be generated in the hierarchical model if the table has non-BLOB
and non-primary key columns. This class will be generated in the conditional model
if the table has non-BLOB and non-primary key columns, or if there is only
one primary key column or one BLOB column. This class is always generated in the
flat model.</p>
</div><div class="section"><h2>Record With BLOBs Class<a name="Record_With_BLOBs_Class"></a></h2>
<p>This class will contain properties for each BLOB column in the table.
The class will extend the record class, if there is one,
or it will extend the primary key class (note that MBG does not support
tables that only contain BLOB columns).
The property names will be generated automatically, and will be based on the column name
in the table. The generated property names can be overridden with a
<tt><columnOverride></tt> configuration element.</p>
<p>This class will be the return value from the <tt>selectByPrimaryKey</tt> method,
or the <tt>selectByExampleWithBLOBs</tt> method.</p>
<p>The name of the class will be <tt>TableNameWithBLOBs</tt> by default, or
<tt>domainObjectNameWithBLOBs</tt> if the <tt>domainObjectName</tt>
attribute is specified on the <tt><table></tt> configuration element.</p>
<p>This class will be generated in the hierarchical model if the table has any BLOB columns.
This class will be generated in the conditional model if the table has more than one
BLOB column. This class will not be generated in the flat model.</p>
</div><div class="section"><h2>Example Class<a name="Example_Class"></a></h2>
<p>This class is used to work with MBG's dynamic select capability.
The class holds a set of criteria that are used to generate a dynamic WHERE clause at runtime
for the following methods:</p>
<ul>
<li><tt>selectByExample</tt></li>
<li><tt>selectByExampleWithBLOBs</tt></li>
<li><tt>deleteByExample</tt></li>
<li><tt>countByExample</tt></li>
<li><tt>updateByExample</tt></li>
</ul>
<p>This class does not extend any of the other model classes.</p>
<p>The name of the class will be <tt>TableNameExample</tt> by default, or
<tt>domainObjectNameExample</tt> if the <tt>domainObjectName</tt>
attribute is specified on the <tt><table></tt> configuration element.</p>
<p>This class will be generated if any of the <tt>*ByExample</tt>
methods are enabled. Note that this class can grow quite large if there are many fields in a table,
but the DAO methods are small as is the generated XML fragment.
If you do not plan to use the dynamic WHERE clause features, you may prefer to
disable the generation of these methods.</p>
<p>See the <a href="exampleClassUsage.html">Example Class Usage</a>
page for details on using the example class.</p>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container-fluid">
<div class="row span16">Copyright © 2010-2012
<a href="http://www.mybatis.org/">MyBatis.org</a>.
All Rights Reserved.
</div>
</div>
</footer>
</body>
</html>
|
index.html | SamWinchester/the_blog | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Shit Gary Says</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom fonts for this template -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- Custom styles for this template -->
<link href="css/clean-blog.min.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="index.html">Shit Gary Says</a>
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
Menu
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page Header -->
<header class="masthead" style="background-image: url('img/home-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="site-heading">
<h1>Shit Gary Says</h1>
<span class="subheading">-------------------------</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<div class="post-preview">
<a href="post/post.html">
<h2 class="post-title">
Man must explore, and this is exploration at its greatest
</h2>
<h3 class="post-subtitle">
Problems look mighty small from 150 miles up
</h3>
</a>
<p class="post-meta">Posted by
<a href="#">Start Bootstrap</a>
on September 24, 2017</p>
</div>
<hr>
<div class="post-preview">
<a href="post/abpost.html">
<h2 class="post-title">
I believe every human has a finite number of heartbeats. I don't intend to waste any of mine.
</h2>
</a>
<p class="post-meta">Posted by
<a href="#">Start Bootstrap</a>
on September 18, 2017</p>
</div>
<hr>
<!-- Pager -->
</div>
</div>
</div>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10 mx-auto">
<ul class="list-inline text-center">
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
<p class="copyright text-muted">Copyright © Your Website 2017</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/popper/popper.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Custom scripts for this template -->
<script src="js/clean-blog.min.js"></script>
</body>
</html>
|
data science/machine_learning_for_the_web/chapter_4/movie/3985.html | xianjunzhengbackup/code | <HTML><HEAD>
<TITLE>Review for Usual Suspects, The (1995)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0114814">Usual Suspects, The (1995)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Christopher+Null">Christopher Null</A></H3><HR WIDTH="40%" SIZE="4">
<PRE> THE USUAL SUSPECTS
A film review by Christopher Null
Copyright 1995 Christopher Null</PRE>
<P> THE USUAL SUSPECTS, the heavily hyped new film from Bryan Singer,
is finally here, and with it comes the answer to the riddle posed in
its high-powered ad campaign, "Who is Keyser Soze?"</P>
<P> Keyser Soze is a semi-mythical crime kingpin who ultimately
directs the actions of five small-time hoods. With the promise of $91
million and the opportunity to keep their lives, the enigmatic Keyser
sends the quintet on a fool's errand in San Pedro harbor: to stop a
competitor's huge cocaine sale that would interfere with Keyser's own
drug operation. As the film opens, we see the catastrophic results of
the mission.</P>
<P> The band of unlucky criminals includes the classy Dean Keaton
(Gabriel Byrne), palsied Verbal Kint (Kevin Spacey), hardware
specialist Hockney (Kevin Pollak), entry-man McManus (Stephen Baldwin),
and the mush-mouthed Fenster (Benicio Del Toro). Kint, the lone
survivor of the five felons, is quizzed by U.S. Customs Agent Kujan
(Chazz Palminteri) about the crime. The remainder of the movie shows
us the tale he weaves.</P>
<P> THE USUAL SUSPECTS puts some neat twists on the classic crime
drama, and it's one of the blackest comedies you'll see this year. All
the actors nail their parts with ultra-cool finesse, and just listening
to Del Toro mumble his lines is worth the cost of the ticket alone.
Singer's direction is also completely on target.</P>
<P> My problems with the film come from the plot. The primary
difficulty is that the movie sometimes gets a little too clever for its
own good, the same problem Hal Hartley ran into with this year's
AMATEUR. While it keeps you in stitches, the film takes its
multi-layered riddles a little too far, and while this is somewhat
critical to the film, it's still a bit much. The end result is a
picture bogged down by the weight of maintaining an overdone mystique.</P>
<P> The other "minor" problem is the mystique itself, regarding the
identity of Keyser Soze. 45 minutes into the film, I placed my bet on
the name of Soze's alter-ego. An hour later, I won, despite some
rather unfair trickery on behalf of the script. While the flashback
clues can be very misleading (a la Hitchcock's STAGE FRIGHT), they
never come out and deliberately lie to the viewer. Regardless, it
still shouldn't stop the audience from figuring it all out, well in
advance.</P>
<P> Despite all this, THE USUAL SUSPECTS is a funny, visually
stunning, and much-needed change of pace from recent thrillers, which
have had the originality of a Xerox machine. I'm happy to say that
this one's no copy.</P>
<PRE>RATING: ***1/2</PRE>
<PRE>|* Unquestionably awful |
|** Sub-par on many levels |
|*** Average, hits and misses |
|**** Good, memorable film |
|***** Perfection | </PRE>
<P>-Christopher Null, Mike's FEEDBACK Magazine / <A HREF="mailto:null@utxvms.cc.utexas.edu">null@utxvms.cc.utexas.edu</A>
-Film Critic, Screenwriter, Novelist (Mailing list available)</P>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
www/index.html | allProgramming/luckyGraves | <!DOCTYPE html>
<html>
<head>
<title>Lucky Graves - Search</title>
<link rel="stylesheet" href="css/uikit.min.css" />
<script src="js/jquery.js"></script>
<script src="js/uikit.min.js"></script>
<script>
function search() {
var words = $("#searchText").val().trim().toUpperCase().split(/\s+/)
$("#searchResults").html("<div class=\"uk-progress uk-progress-striped uk-active\"><div class=\"uk-progress-bar\" style=\"width: 100%;\">Searching, Please Wait...</div></div>")
$.ajax({
url: "ajax/search.php",
type: "get",
data: {words: words},
dataType: "json",
success: function(data) {
$("#searchResults").empty();
for (i = 0; i < data.length; i++) {
$("#searchResults").append("<p><div class=\"uk-badge uk-badge-success\">" + data[i]["COUNT(ref)"] + "</div> <a href=\"http://billiongraves.com/pages/transcribe/?media_id=" + data[i]["ref"] + "\" target=\"_blank\"><img class=\"uk-thumbnail uk-thumbnail-large\" style=\"vertical-align: text-top;\" src=\"images/" + data[i]["ref"] + ".jpg\"></a></p>");
}
if (!data.length) {
$("#searchResults").html("<div class=\"uk-alert uk-alert-warning\" data-uk-alert>The search completed and no results were found, please try again.</div>")
}
},
error: function(data) {
$("#searchResults").html("<div class=\"uk-alert uk-alert-danger\" data-uk-alert>The search failed to complete, please try again.</div>")
}
});
}
</script>
</head>
<body>
<div class="uk-container uk-container-center uk-margin-top uk-margin-large-bottom">
<div class="uk-grid" data-uk-grid-margin>
<div class="uk-width-1-1">
<h1 class="uk-heading-large">Lucky Graves</h1>
<form class="uk-form" onsubmit="search(); return false;">
<fieldset data-uk-margin>
<legend>Search Headstones</legend>
<p>Enter any keywords expected to be found on the headstone
(i.e. first/last name(s), birth/death month/year(s) for
the individual(s) mentioned on the headstone). Separate
keywords with spaces. Order doesn't matter.</p>
<p>Examples:<ul>
<li>Clifford Smith 1914</li>
<li>Felipe Haro 1944</li>
<li>Janet Read 2004</li>
<li>War</li>
</ul></p>
<input id="searchText" class="uk-form-width-large" type="text" placeholder="Keywords (ex. Clifford Smith 1914)">
<button id="searchButton" class="uk-button" type="submit">Search</button>
</fieldset>
</form>
<hr class="uk-grid-divider">
<div id="searchResults"></div>
</div>
</div>
</div>
</body>
</html>
|
presents/css-preprocessors/index.html | bcinarli/presentations | <!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">-->
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0">-->
<!--This one seems to work all the time, but really small on ipad-->
<!--<meta name="viewport" content="initial-scale=0.4">-->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" media="all" href="theme/css/default.css">
<link rel="stylesheet" media="only screen and (max-device-width: 480px)" href="theme/css/phone.css">
<base target="_blank"> <!-- This amazingness opens all links in a new tab. -->
<script data-main="js/slides" src="js/require-1.0.8.min.js"></script>
<style>
@media print {
slide { display: block; page-break-before: always; }
.note { display: none; }
}
</style>
</head>
<body style="opacity: 0">
<slides class="layout-widescreen">
<slide class="logoslide nobackground">
<article class="flexbox vcenter">
<span>FE Day</span>
</article>
</slide>
<slide class="title-slide segue nobackground">
<!--<aside class="gdbar"><img src="images/turkcell-128.png"></aside>-->
<!-- The content of this hgroup is replaced programmatically through the slide_config.json. -->
<hgroup class="auto-fadein">
<h1 data-config-title><!-- populated from slide_config.json --></h1>
<h2 data-config-subtitle><!-- populated from slide_config.json --></h2>
<p data-config-presenter><!-- populated from slide_config.json --></p>
</hgroup>
</slide>
<slide>
<hgroup>
<h2>Sunum Hakkında</h2>
</hgroup>
<article>
<ul>
<li>Sunum Google IO 2012 ile hazırlanmıştır.</li>
<li>Sol alt köşesinde "‡" işareti olan slidelarda "p" tuşuna basarak konuşmacı notlarını görebilirsiniz</li>
<li>"f" tuşu sunumu tam ekran olarak açar</li>
<li>"w" tuşu sunumu widescreen/normal screen olarak genişliğini değiştirir</li>
<li>"o" tuşu, ön izleme moduna geçirir</li>
</ul>
</article>
</slide>
<slide>
<hgroup>
<h2>CSS Kısa Tarihçesi</h2>
</hgroup>
<article>
<ul class="build">
<li>1980lerde SGML</li>
<li>1996'da resmi olarak CSS1 yayınlandı.
<ul class="build">
<li>Font ve metin sitillendirme</li>
<li>Hizalama ve elemanlar arasında boşluklar (margin, padding, position)</li>
</ul>
</li>
<li>1998'de CSS2, CSS1e unutulan kısımları eklemek için yayınlandı.</li>
<li>CSS3 geliştirilmeye 1998'e başlandı. Hala devam ediyor.</li>
</ul>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>CSS Frameworkler</h2>
</hgroup>
<article>
<ul class="build">
<li>Hızlı prototipleme</li>
<li>Hazır sayfa elemanları</li>
<li>Responsive desteği</li>
</ul>
<ul class="build">
<li>Basit grid sistemleri: 960gs, 1140 Grid, Goldengrid, Responsive Grid vs.
<ul class="inline">
<li><img src="images/960gs.jpg" width="100" /></li>
<li><img src="images/1140.jpg" width="100" /></li>
<li><img src="images/goldengrid.jpg" width="100" /></li>
<li><img src="images/responsivegrid.jpg" width="100" /></li>
</ul>
</li>
<li>Tam sistemler: Bootstrap, Foundation, Skeleton, YAML vs.
<ul class="inline">
<li><img src="images/bootstrap.jpg" width="100" /></li>
<li><img src="images/foundation.jpg" width="100" /></li>
<li><img src="images/skeleton.jpg" width="100" /></li>
<li><img src="images/yaml.jpg" width="100" /></li>
</ul>
</li>
</ul>
</article>
<aside class="note">
<section>
<p>CSS geliştikçe kullanım şekli ve alanları artmaya başladı. Artan ihtiyaç sonucunda sayfaların daha kolay kontrol edilmesi ve hızlı üretim için çeşitli CSS frameworkleri ortaya çıktı.</p>
<p>Frameworklerin hepsinin ortak vaadi, ister sayfa grid yapısı olsun, ister sayfa elemanlarının sitillendirilmeleri olsun, bizim elimize bir alet çantası bir başlangıç noktası sağlamak oldu.</p>
</section>
</aside>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Frameworkler Yetersiz Kalırsa</h2>
</hgroup>
<article>
<ul class="build">
<li>Değişkenlere ihtiyacımız olursa</li>
<li>Ya da fonksiyonlar</li>
<li>Ya da modüler bir yapıya</li>
<li>Ya da birden fazla tema ile çalışıyorsanız</li>
</ul>
<ul class="build">
<li>Biri çıkıp
<ul class="build">
<li>CSS için değişken oluşturabilirsiniz</li>
<li>Tekrar kullanılabilir/çağrılabilir fonksiyonlar yazabilirsiniz</li>
<li>Kodlarınızı küçük dosyalara bölüp çalışabilirsiniz</li>
</ul>
</li>
</ul>
</article>
<aside class="note">
<section>
<p>Sitemizin yapısı çok büyüdüğünde ve frameworkler de bizim ihtiyacımızı tamamen karşılamaz duruma gelirse nasıl bir yol izlemek gerekiyor?</p>
<p>Aynı/benzer kod bloklarını tekrar tekrar yazmak, CSS üzerindeki kontrolümüzü ne derece zorlaştırır?</p>
</section>
</aside>
</slide>
<slide>
<hgroup class="flexbox vcenter">
<h2>CSS Preprocessors (Önişlemciler)</h2>
<h3>SASS, LESS</h3>
</hgroup>
</slide>
<slide class="has-notes">
<hgroup>
<h2>CSS Preprocessors Nedir?</h2>
</hgroup>
<article>
<ul class="build">
<li>CSS'in kısıtlamaları olmadan CSS yazmak</li>
<li>Aynı class (sınıf) tanımını tekrar tekrar yazmadan tanımlamaları yapmak</li>
<li>Değişkenler tanımlayabilmek</li>
<li>Parametre alabilen fonksiyonlar (mixin) tanımlayabilmek</li>
<li>Eforu azaltıp, doğru ve hızlı şekilde "unobtrusive" CSS yazabilmek</li>
</ul>
<ul class="build inline centered">
<li><img src="images/sass.gif" width="150" /></li>
<li><img src="images/less.png" width="150" /></li>
</ul>
</article>
<aside class="note">
<section>
<p>SASS ve LESS dışında da CSS önişlemcileri bulunuyor, örn: Stylus, Turbine CSS, Switch CSS vb.</p>
<p>Hepsinin ortak özelliği, başka bir high-end dil kullanarak, hazırlanan koddan uygun şekilde CSS çıktısı oluşturmaktır.</p>
</section>
</aside>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Syntax</h2>
</hgroup>
<article>
<pre class="prettyprint" data-lang="SCSS/LESS">
/** SCSS ve LESS **/
h1 {
color: #0982C1;
}
</pre>
<pre class="prettyprint" data-lang="SASS">
/** SASS **/
h1
color: #0982C1;
</pre>
</article>
<aside class="note">
<section>
<p>SASS ile kod yazılırken SASS ya da SCSS şeklinde iki farklı formattan biri seçilebilir. SCSS, adından da anlaşılabileceği gibi CSS'e benzer yapıdayken, SASS daha farklı bir formattadır.</p>
<p>LESS'in kod yapısı ile SCSS gibi, CSS ile benzer yapıdadır.</p>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>Değişkenler</h2>
</hgroup>
<article>
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
$color: blue;
div {
color: $color;
}
</pre>
<pre class="prettyprint" data-lang="LESS">
@color: blue;
div {
color: @color;
}
</pre>
</div>
<pre class="prettyprint" data-lang="css">
div {
color: blue;
}
</pre>
</article>
</slide>
<slide>
<hgroup>
<h2>Nesting</h2>
</hgroup>
<article class="smaller">
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
ul {
margin: 0;
li {
float: left;
}
a {
color: #999;
&:hover {
color: #229ed3;
}
}
}
</pre>
<pre class="prettyprint" data-lang="LESS">
ul {
margin: 0;
li {
float: left;
}
a {
color: #999;
&:hover {
color: #229ed3;
}
}
}
</pre>
</div>
<pre class="prettyprint" data-lang="css">
ul { margin: 0; }
ul li { float: left; }
ul a { color: #999; }
ul a:hover { color: #229ed3; }
</pre>
</article>
</slide>
<slide>
<hgroup>
<h2>Mixins</h2>
</hgroup>
<article>
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
@mixin bordered {
border: 1px solid #ddd;
&:hover {
border-color: #999;
}
}
h1 {
@include bordered;
}
</pre>
<pre class="prettyprint" data-lang="LESS">
.bordered {
border: 1px solid #ddd;
&:hover {
border-color: #999;
}
}
h1 {
.bordered;
}
</pre>
</div>
<pre class="prettyprint" data-lang="css">
h1 { border: 1px solid #ddd; }
h1:hover { border-color: #999; }
</pre>
</article>
</slide>
<slide>
<hgroup>
<h2>Mixins</h2>
<h3>Parametre ile kullanım</h3>
</hgroup>
<article>
<pre class="prettyprint" data-lang="SCSS">
@mixin bordered($width: 1px, $color: blue) {
border: $width solid $color;
}
h1 { @include bordered(2px, #ddd); }
</pre>
<pre class="prettyprint" data-lang="LESS">
.bordered(@width: 1px, @color: blue) {
border: @width solid @color;
}
h1 { .bordered(2px, #ddd); }
</pre>
<pre class="prettyprint" data-lang="css">
h1 { border: 2px solid #ddd; }
</pre>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Selector Inheritance</h2>
</hgroup>
<article>
<pre class="prettyprint" data-lang="SCSS">
.bordered {
border: 1px solid #ddd;
}
h1 {
@extend .bordered;
color: #999;
}
</pre>
<pre class="prettyprint" data-lang="CSS">
.bordered, h1 {
border: 1px solid #ddd;
}
h1 { color: #999; }
</pre>
</article>
<aside class="note smaller">
<section>
<p>LESS içerisinde bu tarz inheritance kullanımının karşılığı bulunmuyor henüz</p>
<p>SASS de inheritance kullanırken dilerseniz, sınıfı oluşturmak yerine, placeholder şeklinde tanımlama yapabilirsiniz.</p>
<pre class="prettyprint" data-lang="SCSS">
%block { margin: 10px 5px; }
p {
@extend %block;
border: 1px solid #EEE;
}
ul, ol {
@extend %block;
color: #333;
text-transform: uppercase;
}
</pre>
<pre class="prettyprint" data-lang="CSS">
p, ul, ol { margin: 10px 5px; }
p { border: 1px solid #EEE; }
ul, ol { color: #333; text-transform: uppercase; }
</pre>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>Renk İşlemleri</h2>
</hgroup>
<article>
<p>Hem SASS hem de LESS renkler ile alakalı çeşitli işlemler yapmaya imkan vermektedir. Bazıları aşağıdaki gibidir</p>
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
lighten($color, $amount)
darken($color, $amount)
saturate($color, $amount)
desaturate($color, $amount)
adjust-hue($color, $amount)
opacify($color, $amount)
transparentize($color, $amount)
mix($color1, $color2[, $amount])
grayscale($color)
complement($color)
</pre>
<pre class="prettyprint" data-lang="LESS">
lighten(@color, @amount)
darken(@color, @amount)
saturate(@color, @amount)
desaturate(@color, @amount)
spin(@color, @amount)
mix(@color1, @color2)
</pre>
</div>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Koşullu Karşılaştırmalar (If/Else)</h2>
</hgroup>
<article>
<pre class="prettyprint" data-lang="SCSS">
@if lightness($color) > 30% {
background-color: black;
}
@else {
background-color: white;
}
</pre>
<pre class="prettyprint" data-lang="LESS">
.mixin (@color) when (lightness(@color) > 30%) {
background-color: black;
}
.mixin (@color) when (lightness(@color) =< 30%) {
background-color: white;
}
</pre>
</article>
<aside class="note">
<section>
<p>Hem SASS, hem de LESS karşılaştırmalara ve koşullara destek vermektedir.</p>
<p>True, False şeklinde boolean karşılaştırmaların yanında aşağıdaki operatörler de kullanılabilir.</p>
<p>and, or, not, <, >, <=, >=, ==</p>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>Döngüler (Loops)</h2>
</hgroup>
<article>
<p>LESS'in doğrudan döngü desteği yoktur. Ama mixinler içinde recursion tanımlanarak kısıtlı da olsa döngü oluşturulabilir.</p>
<pre class="prettyprint" data-lang="SCSS">
@for $i from 1px to 10px {
.border-#{i} {
border: $i solid blue;
}
}
</pre>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Namespace</h2>
</hgroup>
<article>
<p>Namespace ile bir mixin ya da sınıf içinde bir alt tanımı çağırabilmeyi kastediyoruz. SASS'ın desteği bulunmuyor.</p>
<pre class="prettyprint" data-lang="LESS">
#bundle () {
.red { background-color: red }
.green { background-color: green }
}
.foo {
#bundle > .red;
}
</pre>
<pre class="prettyprint" data-lang="CSS">
.foo {
background-color: red;
}
</pre>
</article>
<aside class="note">
<section>
<p>SASS'ı hazırlayan ekip, bu tarz bir kullanımın mixinler içinde beklenmeyen sonuçlara sebep olabileceği ya da kod bütünlüğünü bozabileceğini düşünüp, SASS içerisine eklememişler.</p>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>Matematiksel İşlemler</h2>
</hgroup>
<article>
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
1cm * 1em => 1 cm * em
2in * 3in => 6 in * in
(1cm / 1em) * 4em => 4cm
2in + 3cm + 2pc => 3.514in
3in / 2in => 1.5
</pre>
<pre class="prettyprint" data-lang="LESS">
1cm * 1em => Error
2in * 3in => 6in
(1cm / 1em) * 4em => Error
2in + 3cm + 2pc => Error
3in / 2in => 1.5in
</pre>
</div>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Dosya Çağırma (Import)</h2>
</hgroup>
<article>
<div class="shared">
<pre class="prettyprint" data-lang="SCSS">
@import "foo.css";
@import "foo" screen;
@import "http://foo.com/bar";
@import url(foo);
@import "foo", "bar", "baz";
</pre>
<pre class="prettyprint" data-lang="SCSS">
@import "foo.css";
@import "http://foo.com/bar";
</pre>
</div>
<ul class="build">
<li>Hem SASS, hem de LESS import yapabilir</li>
<li>SASS: Parça dosya desteği.</li>
</ul>
</article>
<aside class="note">
<section>
<p>Modüllerinizi oluştururken küçük kod parçaları olan dosyalar haline getirip sonrasında bu dosyaları tek bir CSS içerisinde birleştirmek genel olarak beklenen bir durumdur.</p>
<p>Bu tarz küçük dosyaların compile edilip küçük CSS dosyaları oluşturulması gereksiz olduğu için, SASS partial (parça) dosya tanımlaması yapılabilmektedir. Bunun için dosyanın adını alt tire (_) ile başlatmak yeterlidir. Bu dosyalar, import edildikleri dosyalar içerisinde eklenirler ama ayrıca CSS dosyası olarak oluşturulmazlar.</p>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>CSS Çıktıları</h2>
</hgroup>
<article>
<ul class="build">
<li>SASS: 2 çeşit ortam tanımı
<ul>
<li>Development</li>
<li>Production</li>
</ul>
</li>
<li>SASS: 4 çeşit CSS çıktısı tanımı
<ul>
<li>Expanded</li>
<li>Nested</li>
<li>Compact</li>
<li>Compressed</li>
</ul>
</li>
<li>LESS: Compress CSS çıktısı</li>
</ul>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Eklentileri ve Ötesi</h2>
</hgroup>
<article>
<ul class="build">
<li>SASS: Compass, Bourbon
<ul class="build">
<li>CSS3</li>
<li>CSS Sprite</li>
<li>Grid Layouts</li>
<li>Yardımcı fonksiyonlar</li>
<li>Tipografi</li>
</ul>
</li>
<li>LESS: LessHat, LessElements
<ul class="build">
<li>CSS3</li>
<li>Grid Layouts</li>
<li>Tipografi</li>
</ul>
</li>
</ul>
</article>
<aside class="note">
<section>
<p>SASS ve LESS kendi başlarına güçlü yapılar olmasına rağmen, community tarafından hazırlanmış mixin kütüphaneleri sayesinde kod yazmayı ve CSS3 ya da vendor-prefixler ile yaşanan karmaşayı azaltmışlardır.</p>
</section>
</aside>
</slide>
<slide>
<hgroup>
<h2>Nasıl Kullanılır?</h2>
<h3>SASS</h3>
</hgroup>
<article>
<ul class="build">
<li>Ruby tabanlı</li>
<li>Ruby GEM olarak kuruluyor</li>
<li>Command line ile compile edilebilir</li>
<li>GUI compilerlar ile compile edilebilir
<ul class="inline centered">
<li><img src="images/scout.png" height="70" /></li>
<li><img src="images/mixture.png" height="70" /></li>
<li><img src="images/codekit.png" height="70" /></li>
<li><img src="images/fireapp.png" height="70" /></li>
</ul>
</li>
</ul>
</article>
</slide>
<slide>
<hgroup>
<h2>Nasıl Kullanılır?</h2>
<h3>LESS</h3>
</hgroup>
<article>
<ul class="build">
<li>JavaScript ile client-side şeklinde</li>
<li>Ruby ile Command line üzerinden</li>
<li>GUI Compilerlar ile compile edilebilir
<ul class="inline centered">
<li><img src="images/winless.png" height="70" /></li>
<li><img src="images/crunch.png" height="70" /></li>
<li><img src="images/mixture.png" height="70" /></li>
<li><img src="images/codekit.png" height="70" /></li>
</ul>
</li>
</ul>
</article>
</slide>
<slide class="has-notes">
<hgroup>
<h2>Hangisini Tercih Etmeliyim?</h2>
</hgroup>
<article class="smaller">
<table>
<thead>
<tr>
<th> </th>
<th>SASS</th>
<th>LESS</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kolay Kurulum</td>
<td>-</td>
<td>+</td>
</tr>
<tr>
<td>Değişkenler, Nesting, Mixins, Koşullar</td>
<td>+</td>
<td>+</td>
</tr>
<tr>
<td>Inheritance</td>
<td>+</td>
<td>-</td>
</tr>
<tr>
<td>Döngüler</td>
<td>+</td>
<td>-</td>
</tr>
<tr>
<td>Namespace</td>
<td>-</td>
<td>+</td>
</tr>
<tr>
<td>Matematiksel İşlemler</td>
<td>+</td>
<td>-</td>
</tr>
<tr>
<td>CSS Çıktı Şekilleri</td>
<td>+</td>
<td>-</td>
</tr>
<tr>
<td>Dosya oluşturma</td>
<td>+</td>
<td>-</td>
</tr>
<tr>
<td>Hata Bildirimi*</td>
<td>-</td>
<td>+</td>
</tr>
<tr>
<td>Dokümantasyon**</td>
<td>+</td>
<td>-</td>
</tr>
</tbody>
</table>
<div class="footnote">
<p>* Hata bildiriminin kolay anlaşılırlığı</p>
<p>** LESS'in sitesi görsel olarak daha güzel olduğu için, bazen daha cazip olabiliyor.</p>
</div>
</article>
<aside class="note">
<section>
<p>Tercih tamamen kişinin kendi zevklerine kalmış durumda. SASS ya da LESS'in birbirlerine çok üstün bir farkı bulunmuyor.</p>
<p>Bazı durumlarda (örn:keyframe hazırlarken) LESS'in değişken isimlendirme yapısı yüzünden mixinleri parça parça yazmak gerekebiliyor.</p>
<p>CSS çıktısı ve dosya oluşturma bakımından SASS daha gelişmiş bir yapı sunuyor. 4 farklı şekilde (expanded, nested, compact, compressed) CSS çıktısı verebiliyor. Ayrıca sadece include edilip, normalde dosya olarak compile edilmesine gerek olmayan dosyalar oluşturmanıza izin veriyor.</p>
</section>
</aside>
</slide>
<slide>
<hroup>
<h2>Büyük Güç, Büyük Sorumluluklar ile Gelir</h2>
</hroup>
<article class="flexbox vcenter">
<p>SASS ve LESS kodlama sırasında büyük kolaylıklar sağlamaktadır. Ama unutulmaması gereken, sonuç olarak alacağımızın bir CSS kodu olduğudur.</p>
<p>Bu yüzden SASS ve LESS yazılırken her zaman yazdığımız kodun CSS çıktısının nasıl olacağını düşünüp ona göre hareket etmek gerekir.</p>
<p>Gereksiz nestinglerden, kod tekrarlarından mümkün olduğu kadar kaçınmak "best practice" olarak kabul edilebilir.</p>
</article>
</slide>
<slide class="thank-you-slide segue nobackground">
<!--<aside class="gdbar right"><img src="images/turkcell-128.png"></aside>-->
<article class="flexbox vleft auto-fadein">
<h2><Teşekkürler!></h2>
</article>
<p class="auto-fadein" data-config-contact>
<!-- populated from slide_config.json -->
</p>
</slide>
<slide class="nobackground">
<article class="flexbox vcenter">
<span><img src="images/uxitd.png"></span>
</article>
</slide>
<slide class="backdrop"></slide>
</slides>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-11122974-1");
pageTracker._trackPageview();
}
catch(err) {}
</script>
<!--[if IE]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>CFInstall.check({mode: 'overlay'});</script>
<![endif]-->
</body>
</html>
|
extras/sample_site/static/css/contact.css | cltrudeau/django-yacon | .yacon_editable_content {
min-height:30px !important;
}
.staff_member_listing {
float:left;
width:100%;
}
.staff_member_left,
.staff_member_right {
float:left;
width:33%;
font-size:16px;
min-height:110px;
}
.staff_photo {
float:left;
width:15%;
margin-top:10px;
margin-left:10px;
}
.staff_box {
float:left;
width:30%;
font-size:14px;
margin-top:15px;
margin-left:5px;
overflow:hidden;
}
.staff_name {
margin-bottom:5px;
}
.staff_name a {
font-weight:bold;
color:#FF8000;
}
#contact_form {
float:left;
width:100%;
margin-top:15px;
}
#contact_layout td, th {
padding-top:4px;
padding-left:5px;
}
#contact_layout th {
width:110px;
vertical-align:top;
text-align:right;
}
#submit_row {
text-align:right;
}
#contact_submit {
background-color:#ddd;
color:#FF8000;
font-size:18px;
margin-bottom:5px;
}
#id_subject,
#id_reply_to{
width:397px;
}
#id_message {
width:400px;
}
#contact_layout ul {
list-style-type: none;
color:#FF8000;
}
|
assets/css/collapsible.css | AkkiParekh/Cool-Framework | .collapsible { border-top: 1px solid #ddd; border-right: 1px solid #ddd; border-left: 1px solid #ddd; margin: .5rem 0 .5rem 0; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); }
.collapsible-header { display: block; cursor: pointer; min-height: 3rem; line-height: 3rem; padding: 0 1rem; background-color: #fff; border-bottom: 1px solid #ddd; }
.collapsible-header i { width: 2rem; font-size: 1.6rem; line-height: 3rem; display: block; float: left; text-align: center; margin-right: 1rem; }
.collapsible-body { display: none; border-bottom: 1px solid #ddd; box-sizing: border-box; }
.collapsible-body p { margin: 0; padding: 2rem; }
.collapsible.popout { border: none; box-shadow: none; }
.collapsible.popout li { box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12); margin: 0 24px; transition: margin 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.collapsible.popout li.active { box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15); margin: 16px 0; }
|
packages/ng/formly/src/lib/wrappers/radiosfield-layout.html | LuccaSA/lucca-front | <div class="fieldsetWrapper">
<fieldset class="radiosfield" [ngClass]="[mod, isRequired, isFocused, isError]">
<ng-container #fieldComponent></ng-container>
</fieldset>
</div>
|
css/main.css | adriancabrero/photo.adriancabrero.nyc | /*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
* Kroc Camen, and the H5BP dev community and team.
*/
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4;
font-family: "NobelLight", Helvetica, Arial, sans-serif;
text-rendering: optimizeLegibility !important;
-webkit-font-smoothing: antialiased !important;
}
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
html {
height: 100%;
background-color:#fff;
}
body{
height: 100%;
overflow-x:hidden;
}
#wrapper{
display:block;
position:relative;
min-height: 100%;
min-width: 640px;
overflow-x:hidden;
}
#home{
z-index:9;
display:block;
position:relative;
height:100vh;
width:100vw;
background-color:#000;
}
.home-bg{
z-index:9;
display:block;
position:relative;
height:100vh;
width:100vw;
background:url("../media/img/home/adrian-cabrero_01.jpg") no-repeat fixed;
background-position:center center;
zoom: 1;
filter: alpha(opacity=80);
opacity: 0.8;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../media/img/home/adrian-cabrero_01.jpg', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../media/img/home/adrian-cabrero_01.jpg', sizingMethod='scale')";
}
.welcome{
z-index:10;
height: 30%;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
text-align:center;
color:#fff;
}
h1{
font-family: 'NobelBold';
text-transform:uppercase;
font-size:4vw;
text-shadow: -1px 1px 1px rgba(0,0,0,.5);
}
h3{
font-family: 'GoudyItalic';
font-size:1.6vw;
text-shadow: -1px 1px 1px rgba(0,0,0,.7);
padding:0;
margin: 0 0 1% 0;
}
.welcome ul {
margin:1% 0 0 0;
}
.welcome ul li{
display:inline-block;
margin: 0 1% 0 1%;
}
.welcome ul li a{
color:#fff;
text-decoration:none;
border-bottom:0px solid rgba(255,255,255,0);
text-shadow: -1px 1px 1px rgba(0,0,0,.5);
font-size:2vw;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
.welcome ul li a:hover{
border-bottom: 1px solid rgba(255,255,255,1);
padding-bottom: 5px;
/* box-shadow: -1px 1px 3px rgba(0,0,0,1); */
margin-bottom: 10px;
text-shadow: -1px 1px 3px rgba(0,0,0,0);
}
#nav{
height:90px;
background:rgba(232,232,232,.5);
display:block;
position:relative;
width:100%;
text-align:center;
z-index:9;
}
#nav ul{
padding-top:1.7%;
}
#nav ul li{
display:inline-block;
margin: 0 1.2% 0 1.2%;
}
#nav ul li:first-child{
font-family: 'NobelBold';
}
#nav ul li a{
font-size:30px;
color:rgba(000,000,000,1);
border-bottom:0px solid rgba(000,000,000,0);
text-decoration:none;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
#nav ul li a:hover{
border-bottom: 1px solid rgba(000,000,000,1);
padding-bottom: 5px;
}
.section{
z-index:8;
display:block;
position:relative;
background:rgba(255,255,255,1);
}
/* Hire Button */
#hire{
text-decoration:none;
z-index: 10;
position: fixed;
display: table;
bottom: 75px;
text-align: center;
left: 0;
right: 0;
width: 95px;
/* height: 41px; */
font-size: 30px;
line-height: 48px;
vertical-align: middle;
margin: 0 auto;
padding: 0px 0px 0px 0px;
box-sizing: border-box;
border-radius: 12px;
-webkit-border-radius: 12px;
border: 1px solid #fff;
color: rgba(255,255,255,1);
background-color: rgba(255,255,255,.1);
-moz-box-shadow: -1px 1px 1px rgba(0,0,0,.5);
-webkit-box-shadow: -1px 1px 1px rgba(0,0,0,.5);
box-shadow: -1px 1px 1px rgba(0,0,0,.5);
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=50, Direction=45, Color='#444444')";
filter: progid:DXImageTransform.Microsoft.Shadow(Strength=50, Direction=45, Color='#444444');
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
#hire:hover{
background-color: rgba(0,0,0,.4);
}
#hire p{
margin: 0 0 0 0 !important;
text-shadow: -1px 1px 1px rgba(0,0,0,.5);
}
/* ==|== font styles =====================================================
Nobel
========================================================================== */
@font-face {
font-family: 'NobelLight';
src: url('../media/font/nobel-light-webfont.eot');
src: url('../media/font/nobel-light-webfont.eot?#iefix') format('embedded-opentype'),
url('../media/font/nobel-light-webfont.woff') format('woff'),
url('../media/font/nobel-light-webfont.ttf') format('truetype'),
url('../media/font/nobel-light-webfont.svg#NobelLight') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'NobelRegular';
src: url('../media/font/nobel-regular-webfont.eot');
src: url('../media/font/nobel-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../media/font/nobel-regular-webfont.woff') format('woff'),
url('../media/font/nobel-regular-webfont.ttf') format('truetype'),
url('../media/font/nobel-regular-webfont.svg#NobelRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'NobelBold';
src: url('../media/font/Nobel-Bold-webfont.eot');
src: url('../media/font/Nobel-Bold-webfont.eot?#iefix') format('embedded-opentype'),
url('../media/font/Nobel-Bold-webfont.woff2') format('woff2'),
url('../media/font/Nobel-Bold-webfont.woff') format('woff'),
url('../media/font/Nobel-Bold-webfont.ttf') format('truetype'),
url('../media/font/Nobel-Bold-webfont.svg#nobelbold') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'GoudyItalic';
src: url('../media/font/goudy-italic-webfont.eot');
src: url('../media/font/goudy-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('../media/font/goudy-italic-webfont.woff') format('woff'),
url('../media/font/goudy-italic-webfont.ttf') format('truetype'),
url('../media/font/goudy-italic-webfont.svg#goudyitalic') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'GoudyRoman';
src: url('../media/font/goudy-webfont.eot');
src: url('../media/font/goudy-webfont.eot?#iefix') format('embedded-opentype'),
url('../media/font/goudy-webfont.woff') format('woff'),
url('../media/font/goudy-webfont.ttf') format('truetype'),
url('../media/font/goudy-webfont.svg#goudyroman') format('svg');
font-weight: normal;
font-style: normal;
}
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers:
*/
.hidden {
display: none !important;
}
/*
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.clearfix:after {
clear: both;
}
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
|
src/doc/classes/AppBundle.Form.ProductType.html | Bunkermaster/exosymfony | <!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta charset="utf-8"/>
<title>API Documentation</title>
<meta name="author" content=""/>
<meta name="description" content=""/>
<link href="../css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="../css/font-awesome.min.css" rel="stylesheet">
<link href="../css/prism.css" rel="stylesheet" media="all"/>
<link href="../css/template.css" rel="stylesheet" media="all"/>
<!--[if lt IE 9]>
<script src="../js/html5.js"></script>
<![endif]-->
<script src="../js/jquery-1.11.0.min.js"></script>
<script src="../js/ui/1.10.4/jquery-ui.min.js"></script>
<script src="../js/bootstrap.min.js"></script>
<script src="../js/jquery.smooth-scroll.js"></script>
<script src="../js/prism.min.js"></script>
<!-- TODO: Add http://jscrollpane.kelvinluck.com/ to style the scrollbars for browsers not using webkit-->
<script type="text/javascript">
function loadExternalCodeSnippets() {
Array.prototype.slice.call(document.querySelectorAll('pre[data-src]')).forEach(function (pre) {
var src = pre.getAttribute('data-src');
var extension = (src.match(/\.(\w+)$/) || [, ''])[1];
var language = 'php';
var code = document.createElement('code');
code.className = 'language-' + language;
pre.textContent = '';
code.textContent = 'Loading…';
pre.appendChild(code);
var xhr = new XMLHttpRequest();
xhr.open('GET', src, true);
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status < 400 && xhr.responseText) {
code.textContent = xhr.responseText;
Prism.highlightElement(code);
}
else if (xhr.status >= 400) {
code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
}
else {
code.textContent = '✖ Error: File does not exist or is empty';
}
}
};
xhr.send(null);
});
}
$(document).ready(function(){
loadExternalCodeSnippets();
});
$('#source-view').on('shown', function () {
loadExternalCodeSnippets();
})
</script>
<link rel="shortcut icon" href="../images/favicon.ico"/>
<link rel="apple-touch-icon" href="../images/apple-touch-icon.png"/>
<link rel="apple-touch-icon" sizes="72x72" href="../images/apple-touch-icon-72x72.png"/>
<link rel="apple-touch-icon" sizes="114x114" href="../images/apple-touch-icon-114x114.png"/>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<i class="icon-ellipsis-vertical"></i>
</a>
<a class="brand" href="../index.html">API Documentation</a>
<div class="nav-collapse">
<ul class="nav pull-right">
<li class="dropdown">
<a href="../index.html" class="dropdown-toggle" data-toggle="dropdown">
API Documentation <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="../namespaces/AppBundle.html">\AppBundle</a></li>
</ul>
</li>
<li class="dropdown" id="charts-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Charts <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="../graphs/class.html">
<i class="icon-list-alt"></i> Class hierarchy diagram
</a>
</li>
</ul>
</li>
<li class="dropdown" id="reports-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
Reports <b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li>
<a href="../reports/errors.html">
<i class="icon-list-alt"></i> Errors <span class="label label-info pull-right">27</span>
</a>
</li>
<li>
<a href="../reports/markers.html">
<i class="icon-list-alt"></i> Markers <span class="label label-info pull-right">0</span>
</a>
</li>
<li>
<a href="../reports/deprecated.html">
<i class="icon-list-alt"></i> Deprecated <span class="label label-info pull-right">0</span>
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!--<div class="go_to_top">-->
<!--<a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a>-->
<!--</div>-->
</div>
<div id="___" class="container-fluid">
<section class="row-fluid">
<div class="span2 sidebar">
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle " data-toggle="collapse" data-target="#namespace-915941011"></a>
<a href="../namespaces/default.html" style="margin-left: 30px; padding-left: 0">\</a>
</div>
<div id="namespace-915941011" class="accordion-body collapse in">
<div class="accordion-inner">
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-763611556"></a>
<a href="../namespaces/AppBundle.html" style="margin-left: 30px; padding-left: 0">AppBundle</a>
</div>
<div id="namespace-763611556" class="accordion-body collapse ">
<div class="accordion-inner">
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-699137296"></a>
<a href="../namespaces/AppBundle.Controller.html" style="margin-left: 30px; padding-left: 0">Controller</a>
</div>
<div id="namespace-699137296" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Controller.ProductController.html">ProductController</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-1761881894"></a>
<a href="../namespaces/AppBundle.Entity.html" style="margin-left: 30px; padding-left: 0">Entity</a>
</div>
<div id="namespace-1761881894" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Entity.Product.html">Product</a></li>
<li class="class"><a href="../classes/AppBundle.Entity.ProductType.html">ProductType</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-1855680714"></a>
<a href="../namespaces/AppBundle.Exception.html" style="margin-left: 30px; padding-left: 0">Exception</a>
</div>
<div id="namespace-1855680714" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Exception.H3Exception.html">H3Exception</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-690567229"></a>
<a href="../namespaces/AppBundle.Form.html" style="margin-left: 30px; padding-left: 0">Form</a>
</div>
<div id="namespace-690567229" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Form.ProductType.html">ProductType</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-1495179725"></a>
<a href="../namespaces/AppBundle.Repository.html" style="margin-left: 30px; padding-left: 0">Repository</a>
</div>
<div id="namespace-1495179725" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Repository.ProductRepository.html">ProductRepository</a></li>
<li class="class"><a href="../classes/AppBundle.Repository.ProductTypeRepository.html">ProductTypeRepository</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="accordion" style="margin-bottom: 0">
<div class="accordion-group">
<div class="accordion-heading">
<a class="accordion-toggle collapsed" data-toggle="collapse" data-target="#namespace-1699867918"></a>
<a href="../namespaces/AppBundle.Service.html" style="margin-left: 30px; padding-left: 0">Service</a>
</div>
<div id="namespace-1699867918" class="accordion-body collapse ">
<div class="accordion-inner">
<ul>
<li class="class"><a href="../classes/AppBundle.Service.AccountingService.html">AccountingService</a></li>
</ul>
</div>
</div>
</div>
</div>
<ul>
<li class="class"><a href="../classes/AppBundle.AppBundle.html">AppBundle</a></li>
</ul>
</div>
</div>
</div>
</div>
<ul>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="row-fluid">
<div class="span10 offset2">
<div class="row-fluid">
<div class="span8 content class">
<nav>
<a href="../namespaces/AppBundle.Form.html">\AppBundle\Form</a> <i class="icon-level-up"></i>
</nav>
<a href="#source-view" role="button" class="pull-right btn" data-toggle="modal"><i class="icon-code"></i></a>
<h1><small>\AppBundle\Form</small>ProductType</h1>
<p><em></em></p>
<section id="summary">
<h2>Summary</h2>
<section class="row-fluid heading">
<section class="span4">
<a href="#methods">Methods</a>
</section>
<section class="span4">
<a href="#properties">Properties</a>
</section>
<section class="span4">
<a href="#constants">Constants</a>
</section>
</section>
<section class="row-fluid public">
<section class="span4">
<a href="../classes/AppBundle.Form.ProductType.html#method_buildForm" class="">buildForm()</a><br />
<a href="../classes/AppBundle.Form.ProductType.html#method_configureOptions" class="">configureOptions()</a><br />
<a href="../classes/AppBundle.Form.ProductType.html#method_getBlockPrefix" class="">getBlockPrefix()</a><br />
</section>
<section class="span4">
<em>No public properties found</em>
</section>
<section class="span4">
<em>No constants found</em>
</section>
</section>
<section class="row-fluid protected">
<section class="span4">
<em>No protected methods found</em>
</section>
<section class="span4">
<em>No protected properties found</em>
</section>
<section class="span4">
<em>N/A</em>
</section>
</section>
<section class="row-fluid private">
<section class="span4">
<em>No private methods found</em>
</section>
<section class="span4">
<em>No private properties found</em>
</section>
<section class="span4">
<em>N/A</em>
</section>
</section>
</section>
</div>
<aside class="span4 detailsbar">
<dl>
<dt>File</dt>
<dd><a href="../files/Form.ProductType.html"><div class="path-wrapper">Form/ProductType.php</div></a></dd>
<dt>Package</dt>
<dd><div class="namespace-wrapper">Default</div></dd>
<dt>Class hierarchy</dt>
<dd class="hierarchy">
<div class="namespace-wrapper">\Symfony\Component\Form\AbstractType</div>
<div class="namespace-wrapper">\AppBundle\Form\ProductType</div>
</dd>
</dl>
<h2>Tags</h2>
<table class="table table-condensed">
<tr><td colspan="2"><em>None found</em></td></tr>
</table>
</aside>
</div>
<a id="methods" name="methods"></a>
<div class="row-fluid">
<div class="span8 content class"><h2>Methods</h2></div>
<aside class="span4 detailsbar"></aside>
</div>
<div class="row-fluid">
<div class="span8 content class">
<a id="method_buildForm" name="method_buildForm" class="anchor"></a>
<article class="method">
<h3 class="public ">buildForm()</h3>
<a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
<pre class="signature" style="margin-right: 54px;">buildForm(\Symfony\Component\Form\FormBuilderInterface <span class="argument">$builder</span>, array <span class="argument">$options</span>) </pre>
<p><em>{@inheritdoc}</em></p>
<h4>Parameters</h4>
<table class="table table-condensed table-hover">
<tr>
<td>\Symfony\Component\Form\FormBuilderInterface</td>
<td>$builder </td>
<td></td>
</tr>
<tr>
<td>array</td>
<td>$options </td>
<td></td>
</tr>
</table>
</article>
</div>
<aside class="span4 detailsbar">
<h1><i class="icon-arrow-down"></i></h1>
<dl>
</dl>
<h2>Tags</h2>
<table class="table table-condensed">
<tr><td colspan="2"><em>None found</em></td></tr>
</table>
</aside>
</div>
<div class="row-fluid">
<div class="span8 content class">
<a id="method_configureOptions" name="method_configureOptions" class="anchor"></a>
<article class="method">
<h3 class="public ">configureOptions()</h3>
<a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
<pre class="signature" style="margin-right: 54px;">configureOptions(\Symfony\Component\OptionsResolver\OptionsResolver <span class="argument">$resolver</span>) </pre>
<p><em>{@inheritdoc}</em></p>
<h4>Parameters</h4>
<table class="table table-condensed table-hover">
<tr>
<td>\Symfony\Component\OptionsResolver\OptionsResolver</td>
<td>$resolver </td>
<td></td>
</tr>
</table>
</article>
</div>
<aside class="span4 detailsbar">
<h1><i class="icon-arrow-down"></i></h1>
<dl>
</dl>
<h2>Tags</h2>
<table class="table table-condensed">
<tr><td colspan="2"><em>None found</em></td></tr>
</table>
</aside>
</div>
<div class="row-fluid">
<div class="span8 content class">
<a id="method_getBlockPrefix" name="method_getBlockPrefix" class="anchor"></a>
<article class="method">
<h3 class="public ">getBlockPrefix()</h3>
<a href="#source-view" role="button" class="pull-right btn" data-toggle="modal" style="font-size: 1.1em; padding: 9px 14px"><i class="icon-code"></i></a>
<pre class="signature" style="margin-right: 54px;">getBlockPrefix() </pre>
<p><em>{@inheritdoc}</em></p>
</article>
</div>
<aside class="span4 detailsbar">
<h1><i class="icon-arrow-down"></i></h1>
<dl>
</dl>
<h2>Tags</h2>
<table class="table table-condensed">
<tr><td colspan="2"><em>None found</em></td></tr>
</table>
</aside>
</div>
</div>
</section>
<div id="source-view" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="source-view-label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="source-view-label">ProductType.php</h3>
</div>
<div class="modal-body">
<pre data-src="../files/Form/ProductType.php.txt" class="language-php line-numbers"></pre>
</div>
</div>
<footer class="row-fluid">
<section class="span10 offset2">
<section class="row-fluid">
<section class="span10 offset1">
<section class="row-fluid footer-sections">
<section class="span4">
<h1><i class="icon-code"></i></h1>
<div>
<ul>
<li><a href="../namespaces/AppBundle.html">\AppBundle</a></li>
</ul>
</div>
</section>
<section class="span4">
<h1><i class="icon-bar-chart"></i></h1>
<div>
<ul>
<li><a href="../graphs/class.html">Class Hierarchy Diagram</a></li>
</ul>
</div>
</section>
<section class="span4">
<h1><i class="icon-pushpin"></i></h1>
<div>
<ul>
<li><a href="../reports/errors.html">Errors</a></li>
<li><a href="../reports/markers.html">Markers</a></li>
</ul>
</div>
</section>
</section>
</section>
</section>
<section class="row-fluid">
<section class="span10 offset1">
<hr />
Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor </a> and authored
on February 9th, 2017 at 14:07.
</section>
</section>
</section>
</footer>
</div>
</body>
</html>
|
Documentation/html/class_command_lib_1_1_parallel_commands-members.html | efieleke/CommandLibForCPP | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>CommandLib: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">CommandLib
</div>
<div id="projectbrief">Classes that simplify coordination of asynchronous and synchronous activities</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search','.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespace_command_lib.html">CommandLib</a></li><li class="navelem"><a class="el" href="class_command_lib_1_1_parallel_commands.html">ParallelCommands</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">CommandLib::ParallelCommands Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a247cbc7325e3b9d9d7044d449b989aa6">Abort</a>()</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a6afa9e7eab83d5e59746fe15e295e066">AbortAndWait</a>()</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#af51df64ba29324bbbbe13c647e708563">AbortAndWait</a>(const std::chrono::duration< Rep, Period > &interval) const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#ab7e0fd4eb4f1d2b6d98228c1432805e3">AbortAndWait</a>(long long milliseconds)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#ab8fb1bc11a4421953f83c09ce4247c22">AbortChildCommand</a>(Ptr childCommand)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a1fdc8e982866dbbfb763af5d755f76dd">AbortEvent</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#a36085841c237794fc8015ed400e552ad">Add</a>(Command::Ptr command)</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a44bad231a0f0a6de3d5405382d95f800">AsyncExecute</a>(CommandListener *listener)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a0e9fe77b6976159e86428ebcaeee0e82">CheckAbortFlag</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#aada3d28f970e82d1d057ac2b499453ac">ClassName</a>() const override</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#aba3f6e3abd06e1483c640eb6d9a82788">Clear</a>()</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a31713edf2ee9c217f9090e5337dd1f44">Command</a>()</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#a8ad2164f54391fa1cdffb5d44298580e">ConstPtr</a> typedef</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#ab75ed6ec91fa1c4652a796a6c0f6868e">Create</a>(bool abortUponFailure)</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a28e3c6c7f6467cbeffe287984c3f012d">Depth</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a03783e0aea82f820805b8c4e9cc8b43e">Description</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a5f163dafd55fe63a5ed351e1543d02a3">DoneEvent</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#a5c079ef465fe007bc3b8e893554c5610">ExtendedDescription</a>() const override</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a00a3047609fda3d69b828b7850624389">Id</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_async_command.html#a2c08165637770cc7bb8fdd814a93acec">IsNaturallySynchronous</a>() const final</td><td class="entry"><a class="el" href="class_command_lib_1_1_async_command.html">CommandLib::AsyncCommand</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#a795b2df9523b7a154261a52971b29bef">ParallelCommands</a>(bool abortUponFailure)</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"><span class="mlabel">explicit</span><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a19a55aef338aad892fc105b2e1f8700f">Parent</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html#affafd160eae15443666daaf2608fd441">Ptr</a> typedef</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#ac872e76c74ed573668b60351fd9ffd1d">RelinquishOwnership</a>(Ptr command)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a297473697514edc973b5ca9393f8d404">ResetChildAbortEvent</a>(Ptr childCommand)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#aa4ceb8d85a720bc5d9bac4be3afd7df5">sm_monitors</a></td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a5d33760ccb927d7f6349c02907ab4ff3">SyncExecute</a>()</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a0787e7b79c5424926be5c1c8be1ebb0d">TakeOwnership</a>(Ptr orphan)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#ac4d49fbf9bbcc543fb57e4b04edf1ddb">Wait</a>() const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#a0cd3c0e7ee280652c69a3e13a30b99e7">Wait</a>(const std::chrono::duration< Rep, Period > &interval) const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_command_lib_1_1_command.html#ad4cae3ab883426e4f872782b8de88597">Wait</a>(long long milliseconds) const</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>~Command</b>() (defined in <a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a>)</td><td class="entry"><a class="el" href="class_command_lib_1_1_command.html">CommandLib::Command</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>~ParallelCommands</b>() (defined in <a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a>)</td><td class="entry"><a class="el" href="class_command_lib_1_1_parallel_commands.html">CommandLib::ParallelCommands</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
</table></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
</small></address>
</body>
</html>
|
doc/classtdzdd_1_1DdBuilderMP.html | kunisura/TdZdd | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>TdZdd: tdzdd::DdBuilderMP< S > Class Template Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">TdZdd
 <span id="projectnumber">1.1</span>
</div>
<div id="projectbrief">A top-down/breadth-first decision diagram manipulation framework</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>tdzdd</b></li><li class="navelem"><a class="el" href="classtdzdd_1_1DdBuilderMP.html">DdBuilderMP</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="classtdzdd_1_1DdBuilderMP-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">tdzdd::DdBuilderMP< S > Class Template Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Multi-threaded breadth-first DD builder.
<a href="classtdzdd_1_1DdBuilderMP.html#details">More...</a></p>
<p><code>#include <<a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a535eb0cad55fc98d40f20502038aedb5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtdzdd_1_1DdBuilderMP.html#a535eb0cad55fc98d40f20502038aedb5">schedule</a> (NodeId *fp, int level, void *s)</td></tr>
<tr class="memdesc:a535eb0cad55fc98d40f20502038aedb5"><td class="mdescLeft"> </td><td class="mdescRight">Schedules a top-down event. <a href="#a535eb0cad55fc98d40f20502038aedb5">More...</a><br /></td></tr>
<tr class="separator:a535eb0cad55fc98d40f20502038aedb5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2472793422e1f5007ac2585bd5589462"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classtdzdd_1_1DdBuilderMP.html#a2472793422e1f5007ac2585bd5589462">initialize</a> (NodeId &root)</td></tr>
<tr class="memdesc:a2472793422e1f5007ac2585bd5589462"><td class="mdescLeft"> </td><td class="mdescRight">Initializes the builder. <a href="#a2472793422e1f5007ac2585bd5589462">More...</a><br /></td></tr>
<tr class="separator:a2472793422e1f5007ac2585bd5589462"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10804352f4d60f7165098197f25a4bd3"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classtdzdd_1_1DdBuilderMP.html#a10804352f4d60f7165098197f25a4bd3">construct</a> (int i)</td></tr>
<tr class="memdesc:a10804352f4d60f7165098197f25a4bd3"><td class="mdescLeft"> </td><td class="mdescRight">Builds one level. <a href="#a10804352f4d60f7165098197f25a4bd3">More...</a><br /></td></tr>
<tr class="separator:a10804352f4d60f7165098197f25a4bd3"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><h3>template<typename S><br />
class tdzdd::DdBuilderMP< S ></h3>
<p>Multi-threaded breadth-first DD builder. </p>
<p class="definition">Definition at line <a class="el" href="DdBuilder_8hpp_source.html#l00395">395</a> of file <a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a>.</p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a id="a10804352f4d60f7165098197f25a4bd3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a10804352f4d60f7165098197f25a4bd3">◆ </a></span>construct()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename S> </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classtdzdd_1_1DdBuilderMP.html">tdzdd::DdBuilderMP</a>< S >::construct </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>i</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Builds one level. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">i</td><td>level. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="DdBuilder_8hpp_source.html#l00494">494</a> of file <a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a>.</p>
<p class="reference">References <a class="el" href="MyHashTable_8hpp_source.html#l00336">tdzdd::MyHashTable< T, Hash, Equal >::add()</a>, <a class="el" href="MyHashTable_8hpp_source.html#l00301">tdzdd::MyHashTable< T, Hash, Equal >::initialize()</a>, and <a class="el" href="DdSweeper_8hpp_source.html#l00092">tdzdd::DdSweeper< ARITY >::update()</a>.</p>
<p class="reference">Referenced by <a class="el" href="DdStructure_8hpp_source.html#l00105">tdzdd::DdStructure< ARITY >::DdStructure()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classtdzdd_1_1DdBuilderMP_a10804352f4d60f7165098197f25a4bd3_cgraph.png" border="0" usemap="#classtdzdd_1_1DdBuilderMP_a10804352f4d60f7165098197f25a4bd3_cgraph" alt=""/></div>
<map name="classtdzdd_1_1DdBuilderMP_a10804352f4d60f7165098197f25a4bd3_cgraph" id="classtdzdd_1_1DdBuilderMP_a10804352f4d60f7165098197f25a4bd3_cgraph">
<area shape="rect" id="node2" href="classtdzdd_1_1MyHashTable.html#a039d45626f817874ba4f91695532093b" title="Insert an element if no other equivalent element is registered. " alt="" coords="195,5,367,32"/>
<area shape="rect" id="node3" href="classtdzdd_1_1MyHashTable.html#aa1589ac8514a617fb2e689a758d65e8b" title="Initialize the table to be empty. " alt="" coords="209,57,352,98"/>
<area shape="rect" id="node4" href="classtdzdd_1_1DdSweeper.html#a295c6139226becedd470a12a67c5c051" title="Updates status and sweeps the DD if necessary. " alt="" coords="192,123,369,149"/>
</map>
</div>
</div>
</div>
<a id="a2472793422e1f5007ac2585bd5589462"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a2472793422e1f5007ac2585bd5589462">◆ </a></span>initialize()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename S> </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">int <a class="el" href="classtdzdd_1_1DdBuilderMP.html">tdzdd::DdBuilderMP</a>< S >::initialize </td>
<td>(</td>
<td class="paramtype">NodeId & </td>
<td class="paramname"><em>root</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Initializes the builder. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">root</td><td>result storage. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="DdBuilder_8hpp_source.html#l00471">471</a> of file <a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a>.</p>
<p class="reference">References <a class="el" href="DdSweeper_8hpp_source.html#l00082">tdzdd::DdSweeper< ARITY >::setRoot()</a>.</p>
<p class="reference">Referenced by <a class="el" href="DdStructure_8hpp_source.html#l00105">tdzdd::DdStructure< ARITY >::DdStructure()</a>.</p>
<div class="dynheader">
Here is the call graph for this function:</div>
<div class="dyncontent">
<div class="center"><img src="classtdzdd_1_1DdBuilderMP_a2472793422e1f5007ac2585bd5589462_cgraph.png" border="0" usemap="#classtdzdd_1_1DdBuilderMP_a2472793422e1f5007ac2585bd5589462_cgraph" alt=""/></div>
<map name="classtdzdd_1_1DdBuilderMP_a2472793422e1f5007ac2585bd5589462_cgraph" id="classtdzdd_1_1DdBuilderMP_a2472793422e1f5007ac2585bd5589462_cgraph">
<area shape="rect" id="node2" href="classtdzdd_1_1DdSweeper.html#a17f47e73ac3492145e4b354aafc1ab81" title="Set the root pointer. " alt="" coords="192,13,376,39"/>
</map>
</div>
</div>
</div>
<a id="a535eb0cad55fc98d40f20502038aedb5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a535eb0cad55fc98d40f20502038aedb5">◆ </a></span>schedule()</h2>
<div class="memitem">
<div class="memproto">
<div class="memtemplate">
template<typename S> </div>
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void <a class="el" href="classtdzdd_1_1DdBuilderMP.html">tdzdd::DdBuilderMP</a>< S >::schedule </td>
<td>(</td>
<td class="paramtype">NodeId * </td>
<td class="paramname"><em>fp</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>level</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">void * </td>
<td class="paramname"><em>s</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Schedules a top-down event. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">fp</td><td>result storage. </td></tr>
<tr><td class="paramname">level</td><td>node level of the event. </td></tr>
<tr><td class="paramname">s</td><td>node state of the event. </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="DdBuilder_8hpp_source.html#l00461">461</a> of file <a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a>.</p>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>include/tdzdd/dd/<a class="el" href="DdBuilder_8hpp_source.html">DdBuilder.hpp</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Sat Sep 19 2020 11:22:23 for TdZdd by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.13
</small></address>
</body>
</html>
|
resources/corpora/entity_recognition/jnlpba/anndoc/96063646.html | ashishbaghudana/mthesis-ashish | <!DOCTYPE html>
<html id="37e7ae8bac7c425b922cefb1f35428fe:96063646" data-origid="96063646" class="anndoc" data-anndoc-version="2.0" lang="" xml:lang="" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8"/>
<meta name="generator" content="org.rostlab.relna"/>
<title>37e7ae8bac7c425b922cefb1f35428fe:96063646</title>
</head>
<body>
<article>
<section data-type="title">
<h2 id="s1h1">Cupric ion blocks NF kappa B activation through inhibiting the signal-induced phosphorylation of I kappa B alpha.</h2>
</section>
<section data-type="abstract">
<h3 id="s2h1">Abstract</h3>
<div class="content">
<p id = "s2p1">A transcription factor NF kappa B, which regulates expression of various cellular genes involved in immune responses and viral genes including HIV, is sequestered in the cytoplasm as a complex with an inhibitory protein I kappa B. Various extracellular signals induce phosphorylation and rapid degradation of I kappa B alpha to release NF kappa B. Cu2+ was found to inhibit the activation of NF kappa B induced by TNF-alpha, TPA, or H2O2. Deoxycholate treatment of the cytoplasmic extract prepared from cells stimulated by TNF-alpha in the presence of Cu2+ resulted in the release of NF kappa B from I kappa B alpha, indicating that Cu2+ interferes with the dissociation of the NF kappa B-I kappa B complex. Neither phosphorylation nor degradation of I kappa B alpha was observed upon TNF-alpha stimulation in the presence of Cu2+. These results indicate that Cu2+ inhibits the release of NF kappa B by blockade of a signal leading to the phosphorylation of I kappa B alpha.</p>
</div>
</section>
</article>
</body>
</html> |
clean/Linux-x86_64-4.01.0-1.2.0/unstable/dev/contrib:pocklington/8.4.dev/2014-11-28_21-50-38.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">dev / contrib:pocklington 8.4.dev</a></li>
<li class="active"><a href="">2014-11-28 21:50:38</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
contrib:pocklington
<small>
8.4.dev
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2014-11-28 21:50:38 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-11-28 21:50:38 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:pocklington/coq:contrib:pocklington.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:contrib:pocklington.8.4.dev coq.dev</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is dev).
The following dependencies couldn't be met:
- coq:contrib:pocklington -> coq <= 8.4.dev
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:pocklington.8.4.dev</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>2 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.dev
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.dev.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
The following actions will be performed:
- install coq.8.4pl4 [required by coq:contrib:pocklington]
- install coq:contrib:pocklington.8.4.dev
=== 2 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.8.4pl4:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc --prefix /home/bench/.opam/system --usecamlp5 --camlp5dir /home/bench/.opam/system/lib/camlp5 --coqide no
make -j4 world
make -j4 states
make install
Installing coq.8.4pl4.
Building coq:contrib:pocklington.8.4.dev:
coq_makefile -f Make -o Makefile
make -j4
make install
Installing coq:contrib:pocklington.8.4.dev.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>Data not available in this bench.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.5beta1/compcert/2.4.0/2015-01-31_01-41-06.html | coq-bench/coq-bench.github.io-old | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Coq bench</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../../..">Unstable</a></li>
<li><a href=".">8.5beta1 / compcert 2.4.0</a></li>
<li class="active"><a href="">2015-01-31 01:41:06</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="../../../../../about.html">About</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href=".">« Up</a>
<h1>
compcert
<small>
2.4.0
<span class="label label-info">Not compatible with this Coq</span>
</small>
</h1>
<p><em><script>document.write(moment("2015-01-31 01:41:06 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-31 01:41:06 UTC)</em><p>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>ruby lint.rb stable ../stable/packages/coq:compcert/coq:compcert.2.4.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>The package is valid.
</pre></dd>
</dl>
<h2>Dry install</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --dry-run coq:compcert.2.4.0 coq.8.5beta1</code></dd>
<dt>Return code</dt>
<dd>768</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Output</dt>
<dd><pre>[NOTE] Package coq is already installed (current version is 8.5beta1).
The following dependencies couldn't be met:
- coq:compcert -> coq <= 8.4.dev+ltacprof
Your request can't be satisfied:
- Conflicting version constraints for coq
No solution found, exiting
</pre></dd>
</dl>
<p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq; opam install -y --dry-run coq:compcert.2.4.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>4 s</dd>
<dt>Output</dt>
<dd><pre>The following actions will be performed:
- remove coq.8.5beta1
=== 1 to remove ===
=-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Removing coq.8.5beta1.
[WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing
The following actions will be performed:
- install ocamlfind.1.5.5 [required by menhir]
- install coq.8.4.5 [required by coq:compcert]
- install menhir.20141215 [required by coq:compcert]
- install coq:compcert.2.4.0
=== 4 to install ===
=-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Building coq.8.4.5:
./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc --prefix /home/bench/.opam/system --usecamlp5 --camlp5dir /home/bench/.opam/system/lib/camlp5 --coqide no
make -j4 world
make -j4 states
make install
Installing coq.8.4.5.
Building ocamlfind.1.5.5:
./configure -bindir /home/bench/.opam/system/bin -sitelib /home/bench/.opam/system/lib -mandir /home/bench/.opam/system/man -config /home/bench/.opam/system/lib/findlib.conf -no-topfind
make all
make opt
make install
Installing ocamlfind.1.5.5.
Building menhir.20141215:
make PREFIX=/home/bench/.opam/system docdir=/home/bench/.opam/system/doc/menhir libdir=/home/bench/.opam/system/lib/menhir mandir=/home/bench/.opam/system/man/man1
make install PREFIX=/home/bench/.opam/system docdir=/home/bench/.opam/system/doc/menhir libdir=/home/bench/.opam/system/lib/menhir mandir=/home/bench/.opam/system/man/man1
Installing menhir.20141215.
Building coq:compcert.2.4.0:
./configure ia32-linux
make -j4
Installing coq:compcert.2.4.0.
</pre></dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
<small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small>
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html> |
src/components/SimpleText/SimpleText.css | askd/animakit | @import '../vars.css';
.root {
font-size: 14px;
line-height: 30px;
}
.title {
font-size: 16px;
}
.couplet {
& + & {
margin-top: 10px;
}
}
.more {
display: inline-block;
margin-top: 10px;
cursor: pointer;
color: $color6;
}
|
spa/templates/spa/spa.html | mattharley/pdpdmeetup | <html>
<head>
<script src="//unpkg.com/mithril/mithril.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/qtip2/3.0.3/jquery.qtip.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://cdnjs.cloudflare.com/ajax/libs/qtip2/3.0.3/basic/jquery.qtip.min.css"/>
</head>
<body>
<div id="spa"></div>
<style>
.custom-list {
border: 1px solid red;
}
</style>
<script>
SubCompanyApp = {
view: () => {
return m('div', {style: {background: 'green'}}, 'Yes this looks bad, please help us!')
}
}
function links() {
// <a href="link">link</a>
return m('ul',
['/companies/', '/companies/add/'].map(link => m('li',
m('a', {oncreate: m.route.link, href: link}, link))));
}
CompaniesApp = {
oninit(vnode) {
m.request('/api/companies/').then(d => {
vnode.state.companies = d
});
},
view(vnode) {
const companies = vnode.state.companies || [];
return m('div',
links(),
m(SubCompanyApp),
m('b',
{},
'Number of companies:', companies.length),
m('ul.custom-list',
companies.map((company, i) => {
var args = company.description ?
['a', {
href: '',
'data-tooltip-content': "#content" + i,
oncreate: (vnode) => {
/////////////////////////
// APPLY JQUERY PLUGIN //
/////////////////////////
// Instantiate jquery qTip plugin after virtual <a> creation
$(vnode.dom).qtip({
content: {
text: company.description
}
});
},
onupdate: () => {
// Run qTip update function (if any) if virtual <a> has changed
},
ondelete: () => {
// Uninstantiate qTip if you like
},
}] :
['span', {}];
return m('li', m(...args, company.name));
})),
m('button',
{
onclick: () => {
vnode.state.companies.push({
name: 'Example',
});
}
},
'Add Example'));
}
}
var CompaniesAddApp = {
oninit() {
},
view() {
return m('div',
m('h1', 'Add company'),
m('input'),
m('input'),
m('button'),
links());
}
}
m.route(document.getElementById('spa'), '/companies/', {
'/companies/': CompaniesApp,
'/companies/add/': CompaniesAddApp,
});
////////////////
// 'UI' TESTS //
////////////////
function assert(a, b) {
if (a !== b) {
throw `${a} is not ${b}`
}
}
var mockNode = {
state: {
companies: [
{name: 'Company1', description: 'First Company'},
{name: 'Company2', description: ''}
]
}
}
assert(CompaniesApp.view(mockNode).tag, 'div')
assert(CompaniesApp.view(mockNode).children[3].tag, 'ul')
assert(CompaniesApp.view(mockNode).children[3].children[0].children[0].tag, 'a')
assert(CompaniesApp.view(mockNode).children[3].children[0].children[0].text, 'Company1')
assert(CompaniesApp.view(mockNode).children[3].children[1].children[0].tag, 'span')
assert(CompaniesApp.view(mockNode).children[3].children[1].children[0].text, 'Company2')
</script>
</body>
</html>
|
doc/com/postmen/javasdk/examples/class-use/CancelLabelExample.html | heinrich10/java | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_66) on Tue Mar 22 15:33:12 HKT 2016 -->
<title>Uses of Class com.postmen.javasdk.examples.CancelLabelExample</title>
<meta name="date" content="2016-03-22">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class com.postmen.javasdk.examples.CancelLabelExample";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/postmen/javasdk/examples/CancelLabelExample.html" title="class in com.postmen.javasdk.examples">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/postmen/javasdk/examples/class-use/CancelLabelExample.html" target="_top">Frames</a></li>
<li><a href="CancelLabelExample.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class com.postmen.javasdk.examples.CancelLabelExample" class="title">Uses of Class<br>com.postmen.javasdk.examples.CancelLabelExample</h2>
</div>
<div class="classUseContainer">No usage of com.postmen.javasdk.examples.CancelLabelExample</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../com/postmen/javasdk/examples/CancelLabelExample.html" title="class in com.postmen.javasdk.examples">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?com/postmen/javasdk/examples/class-use/CancelLabelExample.html" target="_top">Frames</a></li>
<li><a href="CancelLabelExample.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
dist/css/tidy.css | quattromani/Cypress-brookwood-email | /*** uncss> filename: src/css/main.css ***/
/* Client-specific Styles & Reset */
body {
width: 100% !important;
min-width: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
margin: 0;
padding: 0;
}
/* .ExternalClass applies to Outlook.com (the artist formerly known as Hotmail) */
img {
outline: none;
text-decoration: none;
-ms-interpolation-mode: bicubic;
width: auto;
max-width: 100%;
float: left;
clear: both;
display: block;
}
center {
width: 100%;
min-width: 650px;
}
a img {
border: none;
}
table {
border-spacing: 0;
border-collapse: collapse;
}
td {
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
border-collapse: collapse !important;
}
table,
tr,
td {
padding: 0;
vertical-align: top;
text-align: left;
}
/* Responsive Grid */
table.body {
height: 100%;
width: 100%;
}
table.container {
width: 650px;
margin: 0 auto;
text-align: inherit;
}
table.row {
padding: 0px;
width: 100%;
position: relative;
}
td.wrapper {
padding: 10px 20px 0px 0px;
position: relative;
}
table.columns {
margin: 0 auto;
}
table.columns td {
padding: 10px 0px 10px;
}
table.row td.last {
padding-right: 0px;
}
table.twelve {
width: 650px;
}
td.expander {
visibility: hidden;
width: 0px;
padding: 0 !important;
}
/* Block Grid */
/* Alignment & Visibility Classes */
td.center {
text-align: center;
}
span.center {
display: block;
width: 100%;
text-align: center;
}
img.center {
margin: 0 auto;
float: none;
}
/* Typography */
body,
table.body,
td {
color: #333333;
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
padding: 0;
margin: 0;
text-align: left;
line-height: 1.5625;
}
body,
table.body,
td {
font-size: 16px;
line-height: 1.5625;
}
a {
color: #484b4d;
text-decoration: none;
}
a:hover {
color: #58668b !important;
}
a:active {
color: #58668b !important;
}
a:visited {
color: #58668b !important;
}
/* Panels */
/* Buttons */
/* Outlook First */
/* Media Queries */
@media only screen and (max-width: 672.41379px) {
table[class="body"] img {
width: auto !important;
height: auto !important;
}
table[class="body"] center {
min-width: 0 !important;
}
table[class="body"] .container {
width: 90% !important;
}
table[class="body"] .row {
width: 100% !important;
display: block !important;
}
table[class="body"] .wrapper {
display: block !important;
padding-right: 0 !important;
}
table[class="body"] .columns {
table-layout: fixed !important;
float: none !important;
width: 100% !important;
padding-right: 0px !important;
padding-left: 0px !important;
display: block !important;
}
table[class="body"] table.columns td {
width: 100% !important;
}
table[class="body"] table.columns td.expander {
width: 1px !important;
}
}
.container {
background-color: #ffffff !important;
}
.center {
text-align: center;
}
span {
hyphens: auto;
word-wrap: break-word;
white-space: pre-wrap;
}
.toast {
display: none;
width: 0;
max-width: 0;
height: 0;
max-height: 0;
overflow: hidden;
visibility: hidden;
opacity: 0;
mso-hide: all;
visibility: hidden;
color: transparent;
}
.header table {
border-top: 5px solid #c23132;
border-bottom: 20px solid #c23132;
}
.header table td {
padding: 20px !important;
}
.footer table {
color: #9e9e9e;
}
.footer table td {
padding: 20px 0 10px 0 !important;
color: #9e9e9e;
}
.footer table td a {
color: #9e9e9e;
}
.footer table td:last-of-type {
padding: 20px 0 20px 0 !important;
}
.post-footer table {
background-color: #c23132;
}
@media only screen and (max-width: 550px) {
.container {
padding: 0 !important;
}
}
/*# sourceMappingURL=main.css.map */
|
public/modules/departures/views/list-departures.client.view.html | wangshijun/d3railway | <section data-ng-controller="DeparturesController" data-ng-init="find()">
<div class="page-header">
<a data-ng-href="#!/departures/create" class="pull-right btn btn-primary">添加</a>
<h1>出发方向</h1>
</div>
<table ng-if="departures.length" class="table table-bordered table-stripped">
<tr>
<th>名称</th>
<th>创建时间</th>
<th>创建者</th>
<th>管理</th>
</tr>
<tr data-ng-repeat="departure in departures">
<td><a data-ng-href="#!/departures/{{departure._id}}/edit">{{ departure.name }}</a></td>
<td>{{ departure.created | date:'yyyy-MM-dd HH:mm' }}</td>
<td>{{ departure.user.username }}</td>
<td>
<a class="btn btn-xs btn-danger" data-ng-click="remove();">
<i class="glyphicon glyphicon-trash"></i> 删除
</a>
</td>
</tr>
</div>
<div class="alert alert-warning " data-ng-hide="!departures.$resolved || departures.length">
没有数据,<a href="/#!/departures/create">创建</a>?
</div>
</section>
|
10.Tests/index.html | dirk-dagger-667/telerik-java-script-OOP-lectures | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="tests.js"></script>
<title></title>
</head>
<body>
</body>
</html>
|
docs/src_physics_p2_Material.js.html | samme/phaser-ce | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Phaser Source: src/physics/p2/Material.js</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/default.css">
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.cerulean.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div style="position: absolute; width: 143px; height: 31px; right: 10px; top: 10px; z-index: 1050"><a href="http://phaser.io"><img src="img/phaser.png" border="0" /></a></div>
<div class="navbar-inner">
<a class="brand" href="index.html">Phaser API</a>
<ul class="nav">
<li class="dropdown">
<a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="Phaser.html">Phaser</a>
</li>
<li class="class-depth-0">
<a href="PIXI.html">PIXI</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="EarCut.html">EarCut</a>
</li>
<li class="class-depth-0">
<a href="Event.html">Event</a>
</li>
<li class="class-depth-0">
<a href="EventTarget.html">EventTarget</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Animation.html">Animation</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationManager.html">AnimationManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AnimationParser.html">AnimationParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArraySet.html">ArraySet</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ArrayUtils.html">ArrayUtils</a>
</li>
<li class="class-depth-1">
<a href="Phaser.AudioSprite.html">AudioSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapData.html">BitmapData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.BitmapText.html">BitmapText</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Bullet.html">Bullet</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Button.html">Button</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Cache.html">Cache</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Camera.html">Camera</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Canvas.html">Canvas</a>
</li>
<li class="class-depth-1">
<a href="Phaser.CanvasPool.html">CanvasPool</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Circle.html">Circle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Color.html">Color</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Angle.html">Angle</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Animation.html">Animation</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.AutoCull.html">AutoCull</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Bounds.html">Bounds</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.BringToTop.html">BringToTop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Core.html">Core</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Crop.html">Crop</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Delta.html">Delta</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Destroy.html">Destroy</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.FixedToCamera.html">FixedToCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Health.html">Health</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InCamera.html">InCamera</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InputEnabled.html">InputEnabled</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.InWorld.html">InWorld</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LifeSpan.html">LifeSpan</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.LoadTexture.html">LoadTexture</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Overlap.html">Overlap</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.PhysicsBody.html">PhysicsBody</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Reset.html">Reset</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.ScaleMinMax.html">ScaleMinMax</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Component.Smoothed.html">Smoothed</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Create.html">Create</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Creature.html">Creature</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Device.html">Device</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DeviceButton.html">DeviceButton</a>
</li>
<li class="class-depth-1">
<a href="Phaser.DOM.html">DOM</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Easing.html">Easing</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Back.html">Back</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Bounce.html">Bounce</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Circular.html">Circular</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Cubic.html">Cubic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Elastic.html">Elastic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Exponential.html">Exponential</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Linear.html">Linear</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quadratic.html">Quadratic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quartic.html">Quartic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Quintic.html">Quintic</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Easing.Sinusoidal.html">Sinusoidal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Ellipse.html">Ellipse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Events.html">Events</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Filter.html">Filter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexGrid.html">FlexGrid</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FlexLayer.html">FlexLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Frame.html">Frame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.FrameData.html">FrameData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Game.html">Game</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectCreator.html">GameObjectCreator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Gamepad.html">Gamepad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Graphics.html">Graphics</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Group.html">Group</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Hermite.html">Hermite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Image.html">Image</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ImageCollection.html">ImageCollection</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Input.html">Input</a>
</li>
<li class="class-depth-1">
<a href="Phaser.InputHandler.html">InputHandler</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Key.html">Key</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Keyboard.html">Keyboard</a>
</li>
<li class="class-depth-1">
<a href="Phaser.KeyCode.html">KeyCode</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Line.html">Line</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LinkedList.html">LinkedList</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Loader.html">Loader</a>
</li>
<li class="class-depth-1">
<a href="Phaser.LoaderParser.html">LoaderParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Math.html">Math</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Matrix.html">Matrix</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Mouse.html">Mouse</a>
</li>
<li class="class-depth-1">
<a href="Phaser.MSPointer.html">MSPointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Net.html">Net</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particle.html">Particle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Particles.html">Particles</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Particles.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Particles.Arcade.Emitter.html">Emitter</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Path.html">Path</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PathFollower.html">PathFollower</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PathPoint.html">PathPoint</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Physics.html">Physics</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Arcade.html">Arcade</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Arcade.TilemapCollision.html">TilemapCollision</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.Ninja.html">Ninja</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.AABB.html">AABB</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Circle.html">Circle</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.Ninja.Tile.html">Tile</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Physics.P2.html">P2</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Body.html">Body</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.BodyDebug.html">BodyDebug</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.DistanceConstraint.html">DistanceConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.FixtureList.html">FixtureList</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.GearConstraint.html">GearConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.InversePointProxy.html">InversePointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.LockConstraint.html">LockConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Material.html">Material</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PointProxy.html">PointProxy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.PrismaticConstraint.html">PrismaticConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RevoluteConstraint.html">RevoluteConstraint</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.RotationalSpring.html">RotationalSpring</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Physics.P2.Spring.html">Spring</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Plugin.html">Plugin</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.AStar.html">AStar</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Plugin.AStar.AStarNode.html">AStarNode</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Plugin.AStar.AStarPath.html">AStarPath</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.ColorHarmony.html">ColorHarmony</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.CSS3Filters.html">CSS3Filters</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.Juicy.html">Juicy</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Plugin.Juicy.ScreenFlash.html">ScreenFlash</a>
</li>
<li class="class-depth-3">
<a href="Phaser.Plugin.Juicy.Trail.html">Trail</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.KineticScrolling.html">KineticScrolling</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.PathManager.html">PathManager</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.SamplePlugin.html">SamplePlugin</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.TilemapWalker.html">TilemapWalker</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.VirtualJoystick.html">VirtualJoystick</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Plugin.Webcam.html">Webcam</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PluginManager.html">PluginManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Point.html">Point</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Pointer.html">Pointer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.PointerMode.html">PointerMode</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Polygon.html">Polygon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.QuadTree.html">QuadTree</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RandomDataGenerator.html">RandomDataGenerator</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rectangle.html">Rectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RenderTexture.html">RenderTexture</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RequestAnimationFrame.html">RequestAnimationFrame</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RetroFont.html">RetroFont</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Rope.html">Rope</a>
</li>
<li class="class-depth-1">
<a href="Phaser.RoundedRectangle.html">RoundedRectangle</a>
</li>
<li class="class-depth-1">
<a href="Phaser.ScaleManager.html">ScaleManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Signal.html">Signal</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SignalBinding.html">SignalBinding</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SinglePad.html">SinglePad</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sound.html">Sound</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SoundManager.html">SoundManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.SpriteBatch.html">SpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Stage.html">Stage</a>
</li>
<li class="class-depth-1">
<a href="Phaser.State.html">State</a>
</li>
<li class="class-depth-1">
<a href="Phaser.StateManager.html">StateManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Text.html">Text</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tile.html">Tile</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tilemap.html">Tilemap</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapLayer.html">TilemapLayer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TilemapParser.html">TilemapParser</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tileset.html">Tileset</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TileSprite.html">TileSprite</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Time.html">Time</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Timer.html">Timer</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TimerEvent.html">TimerEvent</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Touch.html">Touch</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Tween.html">Tween</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenData.html">TweenData</a>
</li>
<li class="class-depth-1">
<a href="Phaser.TweenManager.html">TweenManager</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Utils.html">Utils</a>
</li>
<li class="class-depth-2">
<a href="Phaser.Utils.Debug.html">Debug</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Video.html">Video</a>
</li>
<li class="class-depth-1">
<a href="Phaser.Weapon.html">Weapon</a>
</li>
<li class="class-depth-1">
<a href="Phaser.World.html">World</a>
</li>
<li class="class-depth-1">
<a href="PIXI.BaseTexture.html">BaseTexture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasBuffer.html">CanvasBuffer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasGraphics.html">CanvasGraphics</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasMaskManager.html">CanvasMaskManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasRenderer.html">CanvasRenderer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.CanvasTinter.html">CanvasTinter</a>
</li>
<li class="class-depth-1">
<a href="PIXI.ComplexPrimitiveShader.html">ComplexPrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObject.html">DisplayObject</a>
</li>
<li class="class-depth-1">
<a href="PIXI.DisplayObjectContainer.html">DisplayObjectContainer</a>
</li>
<li class="class-depth-1">
<a href="PIXI.FilterTexture.html">FilterTexture</a>
</li>
<li class="class-depth-2">
<a href="PIXI.Phaser.GraphicsData.html">Phaser.GraphicsData</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PIXI.html">PIXI</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiFastShader.html">PixiFastShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PixiShader.html">PixiShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.PrimitiveShader.html">PrimitiveShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Sprite.html">Sprite</a>
</li>
<li class="class-depth-1">
<a href="PIXI.StripShader.html">StripShader</a>
</li>
<li class="class-depth-1">
<a href="PIXI.Texture.html">Texture</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLBlendModeManager.html">WebGLBlendModeManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFastSpriteBatch.html">WebGLFastSpriteBatch</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLFilterManager.html">WebGLFilterManager</a>
</li>
<li class="class-depth-1">
<a href="PIXI.WebGLRenderer.html">WebGLRenderer</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-0">
<a href="global.html#ANGLE_DOWN">ANGLE_DOWN</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_LEFT">ANGLE_LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_NORTH_EAST">ANGLE_NORTH_EAST</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_NORTH_WEST">ANGLE_NORTH_WEST</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_RIGHT">ANGLE_RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_SOUTH_EAST">ANGLE_SOUTH_EAST</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_SOUTH_WEST">ANGLE_SOUTH_WEST</a>
</li>
<li class="class-depth-0">
<a href="global.html#ANGLE_UP">ANGLE_UP</a>
</li>
<li class="class-depth-0">
<a href="global.html#arc">arc</a>
</li>
<li class="class-depth-0">
<a href="global.html#AUTO">AUTO</a>
</li>
<li class="class-depth-0">
<a href="global.html#beginFill">beginFill</a>
</li>
<li class="class-depth-0">
<a href="global.html#bezierCurveTo">bezierCurveTo</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPDATA">BITMAPDATA</a>
</li>
<li class="class-depth-0">
<a href="global.html#BITMAPTEXT">BITMAPTEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#blendModes">blendModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#BOTTOM_CENTER">BOTTOM_CENTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#BOTTOM_LEFT">BOTTOM_LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#BOTTOM_RIGHT">BOTTOM_RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#BUTTON">BUTTON</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS">CANVAS</a>
</li>
<li class="class-depth-0">
<a href="global.html#CANVAS_FILTER">CANVAS_FILTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#CENTER">CENTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#CIRCLE">CIRCLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#clear">clear</a>
</li>
<li class="class-depth-0">
<a href="global.html#CREATURE">CREATURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#destroyCachedSprite">destroyCachedSprite</a>
</li>
<li class="class-depth-0">
<a href="global.html#displayList">displayList</a>
</li>
<li class="class-depth-0">
<a href="global.html#DOWN">DOWN</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawCircle">drawCircle</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawEllipse">drawEllipse</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawPolygon">drawPolygon</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawRect">drawRect</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawRoundedRect">drawRoundedRect</a>
</li>
<li class="class-depth-0">
<a href="global.html#drawShape">drawShape</a>
</li>
<li class="class-depth-0">
<a href="global.html#ELLIPSE">ELLIPSE</a>
</li>
<li class="class-depth-0">
<a href="global.html#emit">emit</a>
</li>
<li class="class-depth-0">
<a href="global.html#EMITTER">EMITTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#endFill">endFill</a>
</li>
<li class="class-depth-0">
<a href="global.html#GAMES">GAMES</a>
</li>
<li class="class-depth-0">
<a href="global.html#generateTexture">generateTexture</a>
</li>
<li class="class-depth-0">
<a href="global.html#getBounds">getBounds</a>
</li>
<li class="class-depth-0">
<a href="global.html#getLocalBounds">getLocalBounds</a>
</li>
<li class="class-depth-0">
<a href="global.html#GRAPHICS">GRAPHICS</a>
</li>
<li class="class-depth-0">
<a href="global.html#GROUP">GROUP</a>
</li>
<li class="class-depth-0">
<a href="global.html#HEADLESS">HEADLESS</a>
</li>
<li class="class-depth-0">
<a href="global.html#HORIZONTAL">HORIZONTAL</a>
</li>
<li class="class-depth-0">
<a href="global.html#IMAGE">IMAGE</a>
</li>
<li class="class-depth-0">
<a href="global.html#LANDSCAPE">LANDSCAPE</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT">LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT_BOTTOM">LEFT_BOTTOM</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT_CENTER">LEFT_CENTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#LEFT_TOP">LEFT_TOP</a>
</li>
<li class="class-depth-0">
<a href="global.html#LINE">LINE</a>
</li>
<li class="class-depth-0">
<a href="global.html#lineStyle">lineStyle</a>
</li>
<li class="class-depth-0">
<a href="global.html#lineTo">lineTo</a>
</li>
<li class="class-depth-0">
<a href="global.html#listeners">listeners</a>
</li>
<li class="class-depth-0">
<a href="global.html#MATRIX">MATRIX</a>
</li>
<li class="class-depth-0">
<a href="global.html#mixin">mixin</a>
</li>
<li class="class-depth-0">
<a href="global.html#moveTo">moveTo</a>
</li>
<li class="class-depth-0">
<a href="global.html#NONE">NONE</a>
</li>
<li class="class-depth-0">
<a href="global.html#off">off</a>
</li>
<li class="class-depth-0">
<a href="global.html#on">on</a>
</li>
<li class="class-depth-0">
<a href="global.html#once">once</a>
</li>
<li class="class-depth-0">
<a href="global.html#PENDING_ATLAS">PENDING_ATLAS</a>
</li>
<li class="class-depth-2">
<a href="global.html#Phaser.Path#numPointsreturn%257Bnumber%257DThetotalnumberofPathPointsinthisPath.">Phaser.Path#numPoints
return {number} The total number of PathPoints in this Path.</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINT">POINT</a>
</li>
<li class="class-depth-0">
<a href="global.html#POINTER">POINTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#POLYGON">POLYGON</a>
</li>
<li class="class-depth-0">
<a href="global.html#PORTRAIT">PORTRAIT</a>
</li>
<li class="class-depth-0">
<a href="global.html#quadraticCurveTo">quadraticCurveTo</a>
</li>
<li class="class-depth-0">
<a href="global.html#RECTANGLE">RECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#removeAllListeners">removeAllListeners</a>
</li>
<li class="class-depth-0">
<a href="global.html#RENDERTEXTURE">RENDERTEXTURE</a>
</li>
<li class="class-depth-0">
<a href="global.html#RETROFONT">RETROFONT</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT">RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT_BOTTOM">RIGHT_BOTTOM</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT_CENTER">RIGHT_CENTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#RIGHT_TOP">RIGHT_TOP</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROPE">ROPE</a>
</li>
<li class="class-depth-0">
<a href="global.html#ROUNDEDRECTANGLE">ROUNDEDRECTANGLE</a>
</li>
<li class="class-depth-0">
<a href="global.html#scaleModes">scaleModes</a>
</li>
<li class="class-depth-0">
<a href="global.html#set">set</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITE">SPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#SPRITEBATCH">SPRITEBATCH</a>
</li>
<li class="class-depth-0">
<a href="global.html#stopImmediatePropagation">stopImmediatePropagation</a>
</li>
<li class="class-depth-0">
<a href="global.html#stopPropagation">stopPropagation</a>
</li>
<li class="class-depth-0">
<a href="global.html#TEXT">TEXT</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAP">TILEMAP</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILEMAPLAYER">TILEMAPLAYER</a>
</li>
<li class="class-depth-0">
<a href="global.html#TILESPRITE">TILESPRITE</a>
</li>
<li class="class-depth-0">
<a href="global.html#TOP_CENTER">TOP_CENTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#TOP_LEFT">TOP_LEFT</a>
</li>
<li class="class-depth-0">
<a href="global.html#TOP_RIGHT">TOP_RIGHT</a>
</li>
<li class="class-depth-0">
<a href="global.html#UP">UP</a>
</li>
<li class="class-depth-0">
<a href="global.html#updateLocalBounds">updateLocalBounds</a>
</li>
<li class="class-depth-0">
<a href="global.html#VERSION">VERSION</a>
</li>
<li class="class-depth-0">
<a href="global.html#VERTICAL">VERTICAL</a>
</li>
<li class="class-depth-0">
<a href="global.html#VIDEO">VIDEO</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL">WEBGL</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL_FILTER">WEBGL_FILTER</a>
</li>
<li class="class-depth-0">
<a href="global.html#WEBGL_MULTI">WEBGL_MULTI</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Core<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Game.html">Game</a></li>
<li class="class-depth-1"><a href="Phaser.Group.html">Group</a></li>
<li class="class-depth-1"><a href="Phaser.World.html">World</a></li>
<li class="class-depth-1"><a href="Phaser.Loader.html">Loader</a></li>
<li class="class-depth-1"><a href="Phaser.Cache.html">Cache</a></li>
<li class="class-depth-1"><a href="Phaser.Time.html">Time</a></li>
<li class="class-depth-1"><a href="Phaser.Camera.html">Camera</a></li>
<li class="class-depth-1"><a href="Phaser.StateManager.html">State Manager</a></li>
<li class="class-depth-1"><a href="Phaser.TweenManager.html">Tween Manager</a></li>
<li class="class-depth-1"><a href="Phaser.SoundManager.html">Sound Manager</a></li>
<li class="class-depth-1"><a href="Phaser.Input.html">Input Manager</a></li>
<li class="class-depth-1"><a href="Phaser.ScaleManager.html">Scale Manager</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Game Objects<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.GameObjectFactory.html">Factory (game.add)</a></li>
<li class="class-depth-1"><a href="Phaser.GameObjectCreator.html">Creator (game.make)</a></li>
<li class="class-depth-1"><a href="Phaser.Sprite.html">Sprite</a></li>
<li class="class-depth-1"><a href="Phaser.Image.html">Image</a></li>
<li class="class-depth-1"><a href="Phaser.Sound.html">Sound</a></li>
<li class="class-depth-1"><a href="Phaser.Video.html">Video</a></li>
<li class="class-depth-1"><a href="Phaser.Particles.Arcade.Emitter.html">Particle Emitter</a></li>
<li class="class-depth-1"><a href="Phaser.Particle.html">Particle</a></li>
<li class="class-depth-1"><a href="Phaser.Text.html">Text</a></li>
<li class="class-depth-1"><a href="Phaser.Tween.html">Tween</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapText.html">BitmapText</a></li>
<li class="class-depth-1"><a href="Phaser.Tilemap.html">Tilemap</a></li>
<li class="class-depth-1"><a href="Phaser.BitmapData.html">BitmapData</a></li>
<li class="class-depth-1"><a href="Phaser.RetroFont.html">RetroFont</a></li>
<li class="class-depth-1"><a href="Phaser.Button.html">Button</a></li>
<li class="class-depth-1"><a href="Phaser.Animation.html">Animation</a></li>
<li class="class-depth-1"><a href="Phaser.Graphics.html">Graphics</a></li>
<li class="class-depth-1"><a href="Phaser.RenderTexture.html">RenderTexture</a></li>
<li class="class-depth-1"><a href="Phaser.TileSprite.html">TileSprite</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Geometry<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Circle.html">Circle</a></li>
<li class="class-depth-1"><a href="Phaser.Ellipse.html">Ellipse</a></li>
<li class="class-depth-1"><a href="Phaser.Line.html">Line</a></li>
<li class="class-depth-1"><a href="Phaser.Matrix.html">Matrix</a></li>
<li class="class-depth-1"><a href="Phaser.Point.html">Point</a></li>
<li class="class-depth-1"><a href="Phaser.Polygon.html">Polygon</a></li>
<li class="class-depth-1"><a href="Phaser.Rectangle.html">Rectangle</a></li>
<li class="class-depth-1"><a href="Phaser.RoundedRectangle.html">Rounded Rectangle</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Physics<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.Physics.Arcade.html">Arcade Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Arcade.Body.html">Body</a></li>
<li class="class-depth-2"><a href="Phaser.Weapon.html">Weapon</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.P2.html">P2 Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Body.html">Body</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.Spring.html">Spring</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.CollisionGroup.html">CollisionGroup</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.P2.ContactMaterial.html">ContactMaterial</a></li>
<li class="class-depth-1"><a href="Phaser.Physics.Ninja.html">Ninja Physics</a></li>
<li class="class-depth-2"><a href="Phaser.Physics.Body.html">Body</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Input<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="Phaser.InputHandler.html">Input Handler</a></li>
<li class="class-depth-1"><a href="Phaser.Pointer.html">Pointer</a></li>
<li class="class-depth-1"><a href="Phaser.DeviceButton.html">Device Button</a></li>
<li class="class-depth-1"><a href="Phaser.Mouse.html">Mouse</a></li>
<li class="class-depth-1"><a href="Phaser.Keyboard.html">Keyboard</a></li>
<li class="class-depth-1"><a href="Phaser.Key.html">Key</a></li>
<li class="class-depth-1"><a href="Phaser.KeyCode.html">Key Codes</a></li>
<li class="class-depth-1"><a href="Phaser.Gamepad.html">Gamepad</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Community<b class="caret"></b></a>
<ul class="dropdown-menu ">
<li class="class-depth-1"><a href="http://phaser.io">Phaser Web Site</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser">Phaser Github</a></li>
<li class="class-depth-1"><a href="http://phaser.io/examples">Phaser Examples</a></li>
<li class="class-depth-1"><a href="https://github.com/photonstorm/phaser-plugins">Phaser Plugins</a></li>
<li class="class-depth-1"><a href="http://www.html5gamedevs.com/forum/14-phaser/">Forum</a></li>
<li class="class-depth-1"><a href="http://stackoverflow.com/questions/tagged/phaser-framework">Stack Overflow</a></li>
<li class="class-depth-1"><a href="http://phaser.io/learn">Tutorials</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/newsletter">Newsletter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/twitter">Twitter</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/slack">Slack</a></li>
<li class="class-depth-1"><a href="http://phaser.io/community/donate">Donate</a></li>
<li class="class-depth-1"><a href="https://www.codeandweb.com/texturepacker/phaser">Texture Packer</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="main">
<h1 class="page-title">Source: src/physics/p2/Material.js</h1>
<section>
<article>
<pre class="sunlight-highlight-javascript linenums">/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* A P2 Material.
*
* \o/ ~ "Because I'm a Material girl"
*
* @class Phaser.Physics.P2.Material
* @constructor
* @param {string} name - The user defined name given to this Material.
*/
Phaser.Physics.P2.Material = function (name) {
/**
* @property {string} name - The user defined name given to this Material.
* @default
*/
this.name = name;
p2.Material.call(this);
};
Phaser.Physics.P2.Material.prototype = Object.create(p2.Material.prototype);
Phaser.Physics.P2.Material.prototype.constructor = Phaser.Physics.P2.Material;
</pre>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
Phaser Copyright © 2012-2016 Photon Storm Ltd.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.4.3</a>
on Thu Apr 13 2017 12:05:07 GMT-0700 (PDT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<br clear="both">
</div>
</div>
<script src="scripts/sunlight.js"></script>
<script src="scripts/sunlight.javascript.js"></script>
<script src="scripts/sunlight-plugin.doclinks.js"></script>
<script src="scripts/sunlight-plugin.linenumbers.js"></script>
<script src="scripts/sunlight-plugin.menu.js"></script>
<script src="scripts/jquery.min.js"></script>
<script src="scripts/jquery.scrollTo.js"></script>
<script src="scripts/jquery.localScroll.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script>
<script>
$( function () {
$( "#toc" ).toc( {
anchorName : function(i, heading, prefix) {
return $(heading).attr("id") || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : 60
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
} );
</script>
</body>
</html>
|
5b161b0/html/shell_8cc-example.html | v8-dox/v8-dox.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>V8 API Reference Guide for node.js v0.4.3: shell.cc</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">V8 API Reference Guide for node.js v0.4.3
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
</div><!-- top -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">shell.cc</div> </div>
</div><!--header-->
<div class="contents">
<p>A simple shell that takes a list of expressions on the command-line and executes them.</p>
<div class="fragment"></div><!-- fragment --> </div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Tue Aug 11 2015 23:47:01 for V8 API Reference Guide for node.js v0.4.3 by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.9.1
</small></address>
</body>
</html>
|
xenomai/share/doc/xenomai/html/html/xeno3prm/globals_defs_r.html | juliencombattelli/Destijl | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Xenomai: Globals</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<link rel="search" href="search_opensearch.php?v=opensearch.xml" type="application/opensearchdescription+xml" title="Xenomai"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Xenomai
 <span id="projectnumber">3.0.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,true,'search.php','Search');
$(document).ready(function() {
if ($('.searchresults').length > 0) { searchBox.DOMSearchField().focus(); }
});
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('globals_defs_r.html','');});
</script>
<div id="doc-content">
<div class="contents">
 
<h3><a id="index_r"></a>- r -</h3><ul>
<li>RANGE
: <a class="el" href="group__analogy__channel__range.html#ga9cb4bca9f87b9fb4a34d0db84323e32d">channel_range.h</a>
</li>
<li>RANGE_ext
: <a class="el" href="group__analogy__channel__range.html#gaf2ad48e400262267fe1b82c7bf36ed8d">channel_range.h</a>
</li>
<li>RANGE_mA
: <a class="el" href="group__analogy__channel__range.html#ga6d9b9f63e82704bf3b7d421bf81e09a5">channel_range.h</a>
</li>
<li>RANGE_V
: <a class="el" href="group__analogy__channel__range.html#ga83f988df3128b75fe9b112eb1805d528">channel_range.h</a>
</li>
<li>RNG
: <a class="el" href="group__analogy__lib__async1.html#ga3f2f598789c55c83c65d7f395918a5a9">analogy.h</a>
</li>
<li>RNG_GLOBAL
: <a class="el" href="group__analogy__channel__range.html#gabb8a61456a5088a58dbd7392872af4f0">channel_range.h</a>
</li>
<li>RTCAN_RTIOC_RCV_TIMEOUT
: <a class="el" href="group__rtdm__can.html#gad8af08ea3624e8e9c464ff143fcb66c0">can.h</a>
</li>
<li>RTCAN_RTIOC_SND_TIMEOUT
: <a class="el" href="group__rtdm__can.html#gad3758528585b2779e8949df671f1cf6c">can.h</a>
</li>
<li>RTCAN_RTIOC_TAKE_TIMESTAMP
: <a class="el" href="group__rtdm__can.html#gaedd7bd75a1983735052fed62e101e5ce">can.h</a>
</li>
<li>RTCAN_TAKE_NO_TIMESTAMPS
: <a class="el" href="group__rtdm__can.html#gae06ad16f505d1ec6c1e55d82ac82ef89">can.h</a>
</li>
<li>RTCAN_TAKE_TIMESTAMPS
: <a class="el" href="group__rtdm__can.html#gae39894e7e6d107d4bab150cc0ef993c8">can.h</a>
</li>
<li>RTDM_API_MIN_COMPAT_VER
: <a class="el" href="group__rtdm.html#ga29d0fb2c233815a4a1d99f6a19f50b97">rtdm.h</a>
</li>
<li>RTDM_API_VER
: <a class="el" href="group__rtdm.html#gadd2020d36782ebb916b065d6554f2631">rtdm.h</a>
</li>
<li>RTDM_CLASS_MAGIC
: <a class="el" href="driver_8h.html#a3b2628296231bb3a8ba162f6502dcab8">driver.h</a>
</li>
<li>RTDM_DEVICE_TYPE_MASK
: <a class="el" href="group__rtdm__device__register.html#gafdb542eb46679916b0100969e1033bfc">driver.h</a>
</li>
<li>RTDM_EXCLUSIVE
: <a class="el" href="group__rtdm__device__register.html#ga7c66ec8f269c701237437177af0704e8">driver.h</a>
</li>
<li>RTDM_EXECUTE_ATOMICALLY
: <a class="el" href="group__rtdm__sync__biglock.html#gabbaf52632d5dde7fa66e0b70d887493b">driver.h</a>
</li>
<li>RTDM_FIXED_MINOR
: <a class="el" href="group__rtdm__device__register.html#ga16b51eb29f5396d4c9a9734fe5cb06b9">driver.h</a>
</li>
<li>RTDM_IRQ_DISABLE
: <a class="el" href="group__rtdm__irq.html#ga9eb37d265d4c1b81e94b16c412dff4b4">driver.h</a>
</li>
<li>rtdm_irq_get_arg
: <a class="el" href="group__rtdm__irq.html#gac99789fe8b6b48e032ee6c22544968e4">driver.h</a>
</li>
<li>RTDM_IRQ_HANDLED
: <a class="el" href="group__rtdm__irq.html#ga56a2e243364bc9ff0e38c031c4c8ad57">driver.h</a>
</li>
<li>RTDM_IRQ_NONE
: <a class="el" href="group__rtdm__irq.html#gad7b7593bdac7e1595635f2b372110d22">driver.h</a>
</li>
<li>RTDM_IRQTYPE_EDGE
: <a class="el" href="group__rtdm__irq.html#gaf4e76db13d7f7aac4be2cae59e0097bc">driver.h</a>
</li>
<li>RTDM_IRQTYPE_SHARED
: <a class="el" href="group__rtdm__irq.html#gab26458b2383dd59b4977cd77c948cdfc">driver.h</a>
</li>
<li>rtdm_lock_get_irqsave
: <a class="el" href="group__rtdm__sync__spinlock.html#ga24e0b97e35b976fbabd52f4213dc222a">driver.h</a>
</li>
<li>rtdm_lock_irqrestore
: <a class="el" href="group__rtdm__sync__spinlock.html#gaf995dd108afa1c4a41a121ea025533fd">driver.h</a>
</li>
<li>rtdm_lock_irqsave
: <a class="el" href="group__rtdm__sync__spinlock.html#ga98e6422dc6f0e11d4a1fc9c6b0142059">driver.h</a>
</li>
<li>RTDM_LOCK_UNLOCKED
: <a class="el" href="group__rtdm__sync__spinlock.html#gad122b937f723fade24e729dcf1374ac6">driver.h</a>
</li>
<li>RTDM_MAX_MINOR
: <a class="el" href="group__rtdm__device__register.html#gad80a74742f48ad450107c3782030ca87">driver.h</a>
</li>
<li>RTDM_NAMED_DEVICE
: <a class="el" href="group__rtdm__device__register.html#ga7651188ca1c05f7e68b36517874138b7">driver.h</a>
</li>
<li>RTDM_PROFILE_INFO
: <a class="el" href="driver_8h.html#a64e99c7bda9b3c45863cea9c11dda761">driver.h</a>
</li>
<li>RTDM_PROTOCOL_DEVICE
: <a class="el" href="group__rtdm__device__register.html#ga43ced044106ae9c1f5500d0041307d8f">driver.h</a>
</li>
<li>RTDM_SECURE_DEVICE
: <a class="el" href="group__rtdm__device__register.html#gadea320d3993937f37edc6fa39a29d379">driver.h</a>
</li>
<li>RTDM_SUBCLASS_IRQBENCH
: <a class="el" href="rtdm_2uapi_2testing_8h.html#a337782a702b89987fdd7e9f903e2ba75">testing.h</a>
</li>
<li>RTDM_SUBCLASS_RTDMTEST
: <a class="el" href="rtdm_2uapi_2testing_8h.html#ad89bc4cfa47bfc109b9316ceca5f786b">testing.h</a>
</li>
<li>RTDM_SUBCLASS_SWITCHTEST
: <a class="el" href="rtdm_2uapi_2testing_8h.html#afd0cb92f7621e89f958f8a627f7aee68">testing.h</a>
</li>
<li>RTDM_SUBCLASS_TIMERBENCH
: <a class="el" href="rtdm_2uapi_2testing_8h.html#ad2af8020baea8618ee0fe06ba1b446ff">testing.h</a>
</li>
<li>RTDM_TIMEOUT_INFINITE
: <a class="el" href="group__rtdm.html#gabdd7dfed8d8c38213f7edff5dc8b85a9">rtdm.h</a>
</li>
<li>RTDM_TIMEOUT_NONE
: <a class="el" href="group__rtdm.html#ga9d1d1557083c4b10226f360bea137fde">rtdm.h</a>
</li>
<li>RTIOC_DEVICE_INFO
: <a class="el" href="group__rtdm__profiles.html#gaae7eb728c73b844eed0ee612940c19ae">rtdm.h</a>
</li>
<li>RTIOC_PURGE
: <a class="el" href="group__rtdm__profiles.html#gac6abf51719ec6aa6e31f98a237721e01">rtdm.h</a>
</li>
<li>RTIOC_TYPE_SERIAL
: <a class="el" href="rtdm_2uapi_2serial_8h.html#aef25d373fa2096864414e12e0178b2be">serial.h</a>
</li>
<li>RTSER_1_5_STOPB
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a28c3c851f9a95094704523788b226828">serial.h</a>
</li>
<li>RTSER_1_STOPB
: <a class="el" href="rtdm_2uapi_2serial_8h.html#af4ad4afad796d448bd31692a8b45c3f2">serial.h</a>
</li>
<li>RTSER_2_STOPB
: <a class="el" href="rtdm_2uapi_2serial_8h.html#aae408e1c3e3248c053e8f0234ff844ec">serial.h</a>
</li>
<li>RTSER_BREAK_CLR
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a6be3258caa1dd379ebabc291d8ff8634">serial.h</a>
</li>
<li>RTSER_BREAK_SET
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a292197ca1cd422d0e3c01a032f439f76">serial.h</a>
</li>
<li>RTSER_DEF_STOPB
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a74319f8613b9b94952735f7ca0062de4">serial.h</a>
</li>
<li>RTSER_RTIOC_BREAK_CTL
: <a class="el" href="rtdm_2uapi_2serial_8h.html#afcc7277020ca099c41800da5283b33a2">serial.h</a>
</li>
<li>RTSER_RTIOC_GET_CONFIG
: <a class="el" href="rtdm_2uapi_2serial_8h.html#afbfd8a6d374a8a5e56743b4964791613">serial.h</a>
</li>
<li>RTSER_RTIOC_GET_CONTROL
: <a class="el" href="rtdm_2uapi_2serial_8h.html#ae705dcfe97c6b8bf278ed0bef28d31dd">serial.h</a>
</li>
<li>RTSER_RTIOC_GET_STATUS
: <a class="el" href="rtdm_2uapi_2serial_8h.html#ada4feb4c648dddaa501281e3a29de458">serial.h</a>
</li>
<li>RTSER_RTIOC_SET_CONFIG
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a138321c1f5bba234c8a7d7fc912aaaf8">serial.h</a>
</li>
<li>RTSER_RTIOC_SET_CONTROL
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a8a6b907b0537064f156ac0fcadacbb2b">serial.h</a>
</li>
<li>RTSER_RTIOC_WAIT_EVENT
: <a class="el" href="rtdm_2uapi_2serial_8h.html#a3e3c22ccee4a2f49481e7084246c06ff">serial.h</a>
</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
djangopress/accounts/templates/accounts/messages/registered-message.html | codefisher/djangopress | {% extends "base.html" %}
{% block content %}
<h2>Account Created</h2>
<p>
{{ user.username|capfirst }}, your account has been created, and an activation email sent to your email address. Please check your email and follow the instructions given.
</p>
{% endblock %} |
demo/demo.css | JamieWohletz/snitch | .bordered {
border: solid 1px lightgray;
margin: 1rem;
padding: 1rem;
} |
bifrost/api/Bifrost.RavenDB.Events.EventSourceVersionConverter.html | dolittle/dolittle.github.io | <!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Class EventSourceVersionConverter
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Class EventSourceVersionConverter
">
<meta name="generator" content="docfx 2.9.3.0">
<link rel="shortcut icon" href="../favicon.ico">
<link rel="stylesheet" href="../styles/docfx.vendor.css">
<link rel="stylesheet" href="../styles/docfx.css">
<link rel="stylesheet" href="../styles/main.css">
<meta property="docfx:navrel" content="../toc.html">
<meta property="docfx:tocrel" content="toc.html">
</head>
<body data-spy="scroll" data-target="#affix">
<div id="wrapper">
<header>
<nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#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="../index.html">
<img id="logo" class="svg" src="../logo.svg" alt="">
</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<form class="navbar-form navbar-right" role="search" id="search">
<div class="form-group">
<input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
</div>
</form>
</div>
</div>
</nav>
<div class="subnav navbar navbar-default">
<div class="container hide-when-search" id="breadcrumb">
<ul class="breadcrumb">
<li></li>
</ul>
</div>
</div>
</header>
<div role="main" class="container body-content hide-when-search">
<div class="sidenav hide-when-search">
<a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
<div class="sidetoggle collapse" id="sidetoggle">
<div id="sidetoc"></div>
</div>
</div>
<div class="article row grid-right">
<div class="col-md-10">
<article class="content wrap" id="_content">
<h1 id="Bifrost_RavenDB_Events_EventSourceVersionConverter" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter">Class EventSourceVersionConverter
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>
<div class="inheritance">
<h5>Inheritance</h5>
<div class="level0"><span class="xref">System.Object</span></div>
<div class="level1"><span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter</span></div>
<div class="level2"><span class="xref">EventSourceVersionConverter</span></div>
</div>
<div class="inheritedMembers">
<h5>Inherited Members</h5>
<div>
<span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.GetSchema()</span>
</div>
<div>
<span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.CanRead</span>
</div>
<div>
<span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.CanWrite</span>
</div>
<div>
<span class="xref">System.Object.ToString()</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object)</span>
</div>
<div>
<span class="xref">System.Object.Equals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.ReferenceEquals(System.Object, System.Object)</span>
</div>
<div>
<span class="xref">System.Object.GetHashCode()</span>
</div>
<div>
<span class="xref">System.Object.GetType()</span>
</div>
<div>
<span class="xref">System.Object.MemberwiseClone()</span>
</div>
</div>
<h6><strong>Namespace</strong>:Bifrost.RavenDB.Events</h6>
<h6><strong>Assembly</strong>:Bifrost.RavenDB.dll</h6>
<h5 id="Bifrost_RavenDB_Events_EventSourceVersionConverter_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class EventSourceVersionConverter : JsonConverter</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dolittle/Bifrost/new/master/Source/Documentation/apispec/new?filename=Bifrost_RavenDB_Events_EventSourceVersionConverter_CanConvert_System_Type_.md&value=---%0Auid%3A%20Bifrost.RavenDB.Events.EventSourceVersionConverter.CanConvert(System.Type)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dolittle/Bifrost/blob/master/Source/Bifrost.RavenDB/Events/EventSourceVersionConverter.cs/#L27">View Source</a>
</span>
<a id="Bifrost_RavenDB_Events_EventSourceVersionConverter_CanConvert_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.CanConvert*"></a>
<h4 id="Bifrost_RavenDB_Events_EventSourceVersionConverter_CanConvert_System_Type_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.CanConvert(System.Type)">CanConvert(Type)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override bool CanConvert(Type objectType)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">objectType</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Boolean</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.CanConvert(System.Type)</span></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dolittle/Bifrost/new/master/Source/Documentation/apispec/new?filename=Bifrost_RavenDB_Events_EventSourceVersionConverter_ReadJson_Raven_Imports_Newtonsoft_Json_JsonReader_System_Type_System_Object_Raven_Imports_Newtonsoft_Json_JsonSerializer_.md&value=---%0Auid%3A%20Bifrost.RavenDB.Events.EventSourceVersionConverter.ReadJson(Raven.Imports.Newtonsoft.Json.JsonReader%2CSystem.Type%2CSystem.Object%2CRaven.Imports.Newtonsoft.Json.JsonSerializer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dolittle/Bifrost/blob/master/Source/Bifrost.RavenDB/Events/EventSourceVersionConverter.cs/#L32">View Source</a>
</span>
<a id="Bifrost_RavenDB_Events_EventSourceVersionConverter_ReadJson_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.ReadJson*"></a>
<h4 id="Bifrost_RavenDB_Events_EventSourceVersionConverter_ReadJson_Raven_Imports_Newtonsoft_Json_JsonReader_System_Type_System_Object_Raven_Imports_Newtonsoft_Json_JsonSerializer_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.ReadJson(Raven.Imports.Newtonsoft.Json.JsonReader,System.Type,System.Object,Raven.Imports.Newtonsoft.Json.JsonSerializer)">ReadJson(JsonReader, Type, Object, JsonSerializer)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Raven.Imports.Newtonsoft.Json.JsonReader</span></td>
<td><span class="parametername">reader</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Type</span></td>
<td><span class="parametername">objectType</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">existingValue</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">Raven.Imports.Newtonsoft.Json.JsonSerializer</span></td>
<td><span class="parametername">serializer</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">System.Object</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.ReadJson(Raven.Imports.Newtonsoft.Json.JsonReader, System.Type, System.Object, Raven.Imports.Newtonsoft.Json.JsonSerializer)</span></div>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/dolittle/Bifrost/new/master/Source/Documentation/apispec/new?filename=Bifrost_RavenDB_Events_EventSourceVersionConverter_WriteJson_Raven_Imports_Newtonsoft_Json_JsonWriter_System_Object_Raven_Imports_Newtonsoft_Json_JsonSerializer_.md&value=---%0Auid%3A%20Bifrost.RavenDB.Events.EventSourceVersionConverter.WriteJson(Raven.Imports.Newtonsoft.Json.JsonWriter%2CSystem.Object%2CRaven.Imports.Newtonsoft.Json.JsonSerializer)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/dolittle/Bifrost/blob/master/Source/Bifrost.RavenDB/Events/EventSourceVersionConverter.cs/#L37">View Source</a>
</span>
<a id="Bifrost_RavenDB_Events_EventSourceVersionConverter_WriteJson_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.WriteJson*"></a>
<h4 id="Bifrost_RavenDB_Events_EventSourceVersionConverter_WriteJson_Raven_Imports_Newtonsoft_Json_JsonWriter_System_Object_Raven_Imports_Newtonsoft_Json_JsonSerializer_" data-uid="Bifrost.RavenDB.Events.EventSourceVersionConverter.WriteJson(Raven.Imports.Newtonsoft.Json.JsonWriter,System.Object,Raven.Imports.Newtonsoft.Json.JsonSerializer)">WriteJson(JsonWriter, Object, JsonSerializer)</h4>
<div class="markdown level1 summary"></div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
<thead>
<tr>
<th>Type</th>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="xref">Raven.Imports.Newtonsoft.Json.JsonWriter</span></td>
<td><span class="parametername">writer</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">System.Object</span></td>
<td><span class="parametername">value</span></td>
<td></td>
</tr>
<tr>
<td><span class="xref">Raven.Imports.Newtonsoft.Json.JsonSerializer</span></td>
<td><span class="parametername">serializer</span></td>
<td></td>
</tr>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">Raven.Imports.Newtonsoft.Json.JsonConverter.WriteJson(Raven.Imports.Newtonsoft.Json.JsonWriter, System.Object, Raven.Imports.Newtonsoft.Json.JsonSerializer)</span></div>
<h3 id="extensionmethods">Extension Methods</h3>
<div>
<a class="xref" href="Bifrost.Concepts.ConceptExtensions.html#Bifrost_Concepts_ConceptExtensions_IsConcept_System_Object_">ConceptExtensions.IsConcept(Object)</a>
</div>
<div>
<a class="xref" href="Bifrost.Concepts.ConceptExtensions.html#Bifrost_Concepts_ConceptExtensions_GetConceptValue_System_Object_">ConceptExtensions.GetConceptValue(Object)</a>
</div>
<div>
<a class="xref" href="Bifrost.Dynamic.DynamicExtensions.html#Bifrost_Dynamic_DynamicExtensions_AsExpandoObject_System_Object_">DynamicExtensions.AsExpandoObject(Object)</a>
</div>
<div>
<a class="xref" href="Bifrost.Extensions.MethodCalls.html#Bifrost_Extensions_MethodCalls_CallGenericMethod__5___1_System_Linq_Expressions_Expression_System_Func___1_System_Func___2___3___4___0______2___3___4_System_Type___">MethodCalls.CallGenericMethod<TOut, T, T1, T2, T3>(T, Expression<Func<T, Func<T1, T2, T3, TOut>>>, T1, T2, T3, Type[])</a>
</div>
<div>
<a class="xref" href="Bifrost.Extensions.MethodCalls.html#Bifrost_Extensions_MethodCalls_CallGenericMethod__4___1_System_Linq_Expressions_Expression_System_Func___1_System_Func___2___3___0______2___3_System_Type___">MethodCalls.CallGenericMethod<TOut, T, T1, T2>(T, Expression<Func<T, Func<T1, T2, TOut>>>, T1, T2, Type[])</a>
</div>
<div>
<a class="xref" href="Bifrost.Extensions.MethodCalls.html#Bifrost_Extensions_MethodCalls_CallGenericMethod__3___1_System_Linq_Expressions_Expression_System_Func___1_System_Func___2___0______2_System_Type___">MethodCalls.CallGenericMethod<TOut, T, T1>(T, Expression<Func<T, Func<T1, TOut>>>, T1, Type[])</a>
</div>
<div>
<a class="xref" href="Bifrost.Extensions.MethodCalls.html#Bifrost_Extensions_MethodCalls_CallGenericMethod__2___1_System_Linq_Expressions_Expression_System_Func___1_System_Func___0____System_Type___">MethodCalls.CallGenericMethod<TOut, T>(T, Expression<Func<T, Func<TOut>>>, Type[])</a>
</div>
<div>
<a class="xref" href="Bifrost.Extensions.MethodCalls.html#Bifrost_Extensions_MethodCalls_Generics__1___0_">MethodCalls.Generics<T>(T)</a>
</div>
</article>
</div>
<div class="hidden-sm col-md-2" role="complementary">
<div class="sideaffix">
<div class="contribution">
<ul class="nav">
<li>
<a href="https://github.com/dolittle/Bifrost/new/master/Source/Documentation/apispec/new?filename=Bifrost_RavenDB_Events_EventSourceVersionConverter.md&value=---%0Auid%3A%20Bifrost.RavenDB.Events.EventSourceVersionConverter%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
</li>
<li>
<a href="https://github.com/dolittle/Bifrost/blob/master/Source/Bifrost.RavenDB/Events/EventSourceVersionConverter.cs/#L25" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
</nav>
</div>
</div>
</div>
</div>
<footer>
<div class="grad-bottom"></div>
<div class="footer">
<div class="container">
<span class="pull-right">
<a href="#top">Back to top</a>
</span>
<span>Copyright © 2008-2017 Dolittle<br>Generated by <strong>DocFX</strong></span>
</div>
</div>
</footer>
</div>
<script type="text/javascript" src="../styles/docfx.vendor.js"></script>
<script type="text/javascript" src="../styles/docfx.js"></script>
<script type="text/javascript" src="../styles/main.js"></script>
</body>
</html>
|
_posts/2014-11-12-bbc-autumnwatch.html | thesoundfarmer/thesoundfarmer.github.io | ---
layout: post
title: BBC Autumnwatch 2014
date: 2014-11-12 19:57:14.000000000 +00:00
type: post
published: true
status: publish
categories: []
tags: []
meta:
_edit_last: '1'
author:
login: gregory
email: gregoryovenden@gmail.com
display_name: Gregory
first_name: ''
last_name: ''
---
<p>It's taken a few years but at last I have a credit on Autumnwatch! I spent the program in the studio, miking up presenters and guests, watching the program being made first hand. An absolutely fantastic experience I shan't be forgetting. In my opinion it's one of the most important programmes to grace the television with regards to connecting people to the natural world and I'm very glad to have been a part of it. </p>
<p><iframe src="https://www.flickr.com/photos/grovenden/15589200589/player/" width="640" height="400" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<p>Long may it broadcast, there's nothing else like it anywhere!</p>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/71839742c41c51cb9122ade98eeab1f26818fb96ff1c2b78ccfccc21b3036cf4.html | simonmysun/praxis | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>18 --> 19</title>
<link href="./../../assets/style.css" rel="stylesheet">
</head>
<body>
<h2>You have to be fast</h2>
<a href="./29bdbc8a6bcafe5e72f197af1abf1c7eff766294eda68503d0e6ec849c10648d.html">Teleport</a>
<hr>
<a href="./../../about.md">About</a> (Spoilers! )
<script src="./../../assets/md5.js"></script>
<script>
window.currentLevel = 7;
</script>
<script src="./../../assets/script.js"></script>
</body>
</html> |
2016/07/25/java反射机制/index.html | thluckystar/thluckystar.github.io | <!doctype html>
<html class="theme-next pisces use-motion">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.0.1" rel="stylesheet" type="text/css" />
<meta name="keywords" content="java,反射," />
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.0.1" />
<meta name="description" content="java反射所有的类都是java.lang.Class类的对象获得Class实例的三种方法:123Class c1 = Foo.class;Class c2 = foo1.getClass();Class c3 = Class.forName("完整类名");
可以通过c1,c2,c3创建Foo的实例1Foo foo = (Foo)c1.newInstance();
用new创建对象是静态加载类,">
<meta property="og:type" content="article">
<meta property="og:title" content="java反射">
<meta property="og:url" content="http://thluckystar.github.io/2016/07/25/java反射机制/index.html">
<meta property="og:site_name" content="Erving's Blog">
<meta property="og:description" content="java反射所有的类都是java.lang.Class类的对象获得Class实例的三种方法:123Class c1 = Foo.class;Class c2 = foo1.getClass();Class c3 = Class.forName("完整类名");
可以通过c1,c2,c3创建Foo的实例1Foo foo = (Foo)c1.newInstance();
用new创建对象是静态加载类,">
<meta property="og:updated_time" content="2016-08-04T16:06:03.648Z">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="java反射">
<meta name="twitter:description" content="java反射所有的类都是java.lang.Class类的对象获得Class实例的三种方法:123Class c1 = Foo.class;Class c2 = foo1.getClass();Class c3 = Class.forName("完整类名");
可以通过c1,c2,c3创建Foo的实例1Foo foo = (Foo)c1.newInstance();
用new创建对象是静态加载类,">
<script type="text/javascript" id="hexo.configuration">
var NexT = window.NexT || {};
var CONFIG = {
scheme: 'Pisces',
sidebar: {"position":"left","display":"post"},
fancybox: true,
motion: true,
duoshuo: {
userId: 0,
author: '博主'
}
};
</script>
<link rel="canonical" href="http://thluckystar.github.io/2016/07/25/java反射机制/"/>
<link rel="stylesheet" href="//cdn.bootcss.com/highlight.js/9.1.0/styles/hopscotch.min.css">
<title> java反射 | Erving's Blog </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container one-collumn sidebar-position-left page-post-detail ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Erving's Blog</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">Welcome to my own space...</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<div id="posts" class="posts-expand">
<article class="post post-type-tags " itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
java反射
</h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time itemprop="dateCreated" datetime="2016-07-25T15:35:32+08:00" content="2016-07-25">
2016-07-25
</time>
</span>
<span class="post-category" >
|
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">分类于</span>
<span itemprop="about" itemscope itemtype="https://schema.org/Thing">
<a href="/categories/技术/" itemprop="url" rel="index">
<span itemprop="name">技术</span>
</a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h2 id="java反射"><a href="#java反射" class="headerlink" title="java反射"></a>java反射</h2><p>所有的类都是<code>java.lang.Class</code>类的对象<br>获得<code>Class</code>实例的三种方法:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div><div class="line">3</div></pre></td><td class="code"><pre><div class="line">Class c1 = Foo.class;</div><div class="line">Class c2 = foo1.getClass();</div><div class="line">Class c3 = Class.forName(<span class="string">"完整类名"</span>);</div></pre></td></tr></table></figure></p>
<p>可以通过c1,c2,c3创建Foo的实例<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Foo foo = (Foo)c1.newInstance();</div></pre></td></tr></table></figure></p>
<p>用new创建对象是静态加载类,在编译时刻就要加载所有可能使用的类,缺点是有一个类有问题,整个程序就编译不通过。功能性的类最后使用动态加载类。需要强制类型转换时,可使功能性类实现同一个接口。</p>
<h2 id="获取方法信息"><a href="#获取方法信息" class="headerlink" title="获取方法信息"></a>获取方法信息</h2><p>获取类名称:<code>c.getName()</code><br>获取所有方法:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Method[] ms = c.getMethods();<span class="comment">//c.getDeclaredMethods()</span></div></pre></td></tr></table></figure></p>
<p>getMethods获取所有public方法的信息,getDeclaredMethods是获取该类自己声明的成员变量的信息<br>得到方法返回值类型的类类型:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div><div class="line">2</div></pre></td><td class="code"><pre><div class="line">Class returnType = ms[i].getReturnType();</div><div class="line">returnType.getName();</div></pre></td></tr></table></figure></p>
<p>得到方法名称:<code>ms[i].getName();</code><br>得到参数类型的类类型:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Class[] paramTypes = ms[i].getParameterTypes();</div></pre></td></tr></table></figure></p>
<h2 id="获取成员变量:"><a href="#获取成员变量:" class="headerlink" title="获取成员变量:"></a>获取成员变量:</h2><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Field[] fs = c.getFields();<span class="comment">//c.getDeclaredFields();</span></div></pre></td></tr></table></figure>
<p>得到成员变量类型的类类型:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Class fieldType = fs[i].getType();</div></pre></td></tr></table></figure></p>
<p>得到成员变量的名称:<br><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">String fieldName = fs[i].getName();</div></pre></td></tr></table></figure></p>
<h2 id="获取构造方法:"><a href="#获取构造方法:" class="headerlink" title="获取构造方法:"></a>获取构造方法:</h2><figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Constructor[] cs = c.getConstructor();<span class="comment">//c.getDeclaredConstructors();</span></div></pre></td></tr></table></figure>
<h2 id="方法的反射:"><a href="#方法的反射:" class="headerlink" title="方法的反射:"></a>方法的反射:</h2><ul>
<li>获取方法</li>
</ul>
<figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Method m = c.getMethod(<span class="string">"print"</span>, <span class="keyword">new</span> Class[]{<span class="keyword">int</span>.class, <span class="keyword">int</span>.class});</div></pre></td></tr></table></figure>
<p>或</p>
<figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Method m = c.getMethod(<span class="string">"print"</span>,<span class="keyword">int</span>.class,<span class="keyword">int</span>.class);</div></pre></td></tr></table></figure>
<ul>
<li>方法的反射</li>
</ul>
<figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Object o = m.invoke(a1,<span class="keyword">new</span> Object[]{<span class="number">10</span>,<span class="number">20</span>});</div></pre></td></tr></table></figure>
<p>或</p>
<figure class="highlight java"><table><tr><td class="gutter"><pre><div class="line">1</div></pre></td><td class="code"><pre><div class="line">Object o = m.invoke(a1,<span class="number">10</span>,<span class="number">20</span>);</div></pre></td></tr></table></figure>
<p>效果等同于<code>a1.print(10,20);</code> </p>
<h2 id="其他"><a href="#其他" class="headerlink" title="其他"></a>其他</h2><p><strong>反射的操作都是编译之后的操作</strong><br>java中集合的泛型,仅是防止错误输入的,只在编译阶段有效,绕过编译就无效了,可以通过方法的反射来验证。</p>
</div>
<div>
</div>
<div>
</div>
<footer class="post-footer">
<div class="post-tags">
<a href="/tags/java/" rel="tag">#java</a>
<a href="/tags/反射/" rel="tag">#反射</a>
</div>
<div class="post-nav">
<div class="post-nav-next post-nav-item">
<a href="/2016/07/25/junit单元测试/" rel="next" title="单元测试-junit">
<i class="fa fa-chevron-left"></i> 单元测试-junit
</a>
</div>
<div class="post-nav-prev post-nav-item">
<a href="/2016/07/25/Hexo更新文章/" rel="prev" title="Hexo更新文章">
Hexo更新文章 <i class="fa fa-chevron-right"></i>
</a>
</div>
</div>
</footer>
</article>
<div class="post-spread">
</div>
</div>
</div>
<div class="comments" id="comments">
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<ul class="sidebar-nav motion-element">
<li class="sidebar-nav-toc sidebar-nav-active" data-target="post-toc-wrap" >
文章目录
</li>
<li class="sidebar-nav-overview" data-target="site-overview">
站点概览
</li>
</ul>
<section class="site-overview sidebar-panel ">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image"
src="/images/avatar.jpg"
alt="Erving Tian" />
<p class="site-author-name" itemprop="name">Erving Tian</p>
<p class="site-description motion-element" itemprop="description">盈科而后进</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">4</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories">
<span class="site-state-item-count">2</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
<span class="links-of-author-item">
<a href="https://github.com/thluckystar" target="_blank" title="Github">
<i class="fa fa-fw fa-globe"></i>
Github
</a>
</span>
<span class="links-of-author-item">
<a href="https://twitter.com/erving_tian" target="_blank" title="Twitter">
<i class="fa fa-fw fa-twitter"></i>
Twitter
</a>
</span>
<span class="links-of-author-item">
<a href="https://www.douban.com/people/73618016/" target="_blank" title="douban">
<i class="fa fa-fw fa-globe"></i>
douban
</a>
</span>
<span class="links-of-author-item">
<a href="https://www.zhihu.com/people/erving-tian" target="_blank" title="zhihu">
<i class="fa fa-fw fa-globe"></i>
zhihu
</a>
</span>
</div>
</section>
<section class="post-toc-wrap motion-element sidebar-panel sidebar-panel-active">
<div class="post-toc">
<div class="post-toc-content"><ol class="nav"><li class="nav-item nav-level-2"><a class="nav-link" href="#java反射"><span class="nav-number">1.</span> <span class="nav-text">java反射</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#获取方法信息"><span class="nav-number">2.</span> <span class="nav-text">获取方法信息</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#获取成员变量:"><span class="nav-number">3.</span> <span class="nav-text">获取成员变量:</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#获取构造方法:"><span class="nav-number">4.</span> <span class="nav-text">获取构造方法:</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#方法的反射:"><span class="nav-number">5.</span> <span class="nav-text">方法的反射:</span></a></li><li class="nav-item nav-level-2"><a class="nav-link" href="#其他"><span class="nav-number">6.</span> <span class="nav-text">其他</span></a></li></ol></div>
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright" >
©
<span itemprop="copyrightYear">2016</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">Erving Tian</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="http://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Pisces
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/vendors/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/vendors/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/vendors/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/vendors/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/vendors/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/vendors/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/affix.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/scrollspy.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/post-details.js?v=5.0.1"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.0.1"></script>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.