path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
ch05/code/html/ch05-03.html | mdiener21/python-geospatial-analysis-cookbook | <!DOCTYPE html>
<html>
<head>
<title>Clipping Roads Shapefile</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="leaflet.css" />
</head>
<body>
<div id="map" style="width: 400px; height: 400px"></div>
<script src="../../geodata/ch05-03-geojson.js" type="text/javascript"></script>
<script src="leaflet.js"></script>
<script>
var map = L.map('map').setView([47.19647160265809, -123.22265625 ], 5);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6IjZjNmRjNzk3ZmE2MTcwOTEwMGY0MzU3YjUzOWFmNWZhIn0.Y8bhBaUMqFiPrDRW9hieoQ', {
maxZoom: 18,
attribution: 'Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
'<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
'Imagery © <a href="http://mapbox.com">Mapbox</a>',
id: 'mapbox.light'
}).addTo(map);
var baseballIcon = L.icon({
iconUrl: '../images/sunny.png',
iconSize: [32, 37],
iconAnchor: [16, 37],
popupAnchor: [0, -28]
});
function onEachFeature(feature, layer) {
var popupContent = "<p> Polygon id: " + feature.properties.id + "</p>";
if (feature.properties && feature.properties.popupContent) {
popupContent += feature.properties.popupContent;
}
layer.bindPopup(popupContent);
}
var lineStyle = {
"color": "#24CD17",
"weight": 6,
"opacity": 0.65
};
L.geoJson(in_linestring, {
style: lineStyle,
onEachFeature: onEachFeature
}).addTo(map);
var pointOnLine = L.geoJson(point_on_line, {
pointToLayer: function (feature, latlng) {
return L.marker(latlng, {icon: baseballIcon});
},
onEachFeature: onEachFeature
}).addTo(map);
</script>
</body>
</html>
|
content_ga6/consumer-experience-server-chat-retrieve-pre-chat-survey.html | LivePersonInc/dev-hub | <html>
<head>
<meta http-equiv="refresh" content="0; url=https://developers.liveperson.com/consumer-experience-server-chat-retrieve-pre-chat-survey.html" />
</head>
</html> |
examples/create-react-app/public/index.html | cherniavskii/material-ui | <!doctype html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=0, initial-scale=1, minimum-scale=1, width=device-width, height=device-height">
<!-- PWA primary color -->
<meta name="theme-color" content="#000000">
<title>My page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" />
</head>
<body>
<div id="root"></div>
</body>
</html>
|
php-basics/PHP-Syntax-myHomework/6. InformationTable/InformationTable.css | pan196/softuni_tasks | table{
border: 1px solid black;
border-collapse:collapse;
}
th{
padding: 3px;
background: orange;
text-align: left;
border: 1px solid black;
}
td{
padding: 3px;
text-align: right;
border: 1px solid black;
} |
public/css/pages/about-us.css | AlexandruAmugea/megatrade-invest | /* SECTIONS */
/*.footer-wrapper, .payment-wrapper {
margin-left: -15px;
margin-right: -15px;
}*/
.clr {
clear: both;
}
/* ABOUT US START */
/* Section Tags */
.heading-tag {
text-transform: uppercase;
color: rgb(93, 45, 134);
margin-bottom: 10px;
}
.section-about-us-tags p {
line-height: 1.8;
}
.tag-img-wrap img {
max-width: 150px;
margin-bottom: 20px;
}
.section-about-us-tags {
padding: 55px 0;
}
.tag {
padding: 30px 0;
}
/* Section Advantages */
.section-advantages {
background: url("../../images/about-us/about-us-advantages-bg.jpg") no-repeat center center;
background-size: cover;
margin-left: -15px;
margin-right: -15px;
padding: 75px 0px 150px 0px;
}
.section-advantages h3 {
color: #fff;
margin-bottom: 50px;
}
.advantages {
text-align: center;
border-radius: 10px;
min-height: 200px;
margin-bottom: 30px;
display: table;
width: 100%;
border: 2px solid transparent;
}
/*.advantages:hover {
border: 2px solid #fff;
box-sizing: content-box;
}*/
.advantages p {
color: #fff;
text-transform: uppercase;
font-weight: bold;
display: table-cell;
vertical-align: middle;
height: 200px;
}
.advantages-wrapper {
max-width: 80%;
margin: 0 auto;
}
.advantage-1 {
background: url("../../images/about-us/advantages-1.png") no-repeat center center;
background-size: cover;
}
.advantage-2 {
background: url("../../images/about-us/advantages-2.png") no-repeat center center;
background-size: cover;
}
.advantage-3 {
background: url("../../images/about-us/advantages-3.png") no-repeat center center;
background-size: cover;
}
.advantage-4 {
background: url("../../images/about-us/advantages-4.png") no-repeat center center;
background-size: cover;
}
.advantage-5 {
background: url("../../images/about-us/advantages-5.png") no-repeat center center;
background-size: cover;
}
.advantage-6 {
background: url("../../images/about-us/advantages-6.png") no-repeat center center;
background-size: cover;
}
.advantage-7 {
background: url("../../images/about-us/advantages-7.png") no-repeat center center;
background-size: cover;
}
/* Media queries */
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 990px) {
.tag-img-wrap, .tag-text-wrap {
text-align: center;
}
.heading-tag {
margin-bottom: 20px;
}
}
@media screen and (min-width: 990px) {
}
@media screen and (min-width: 769px) and (max-width: 991px) {
}
/* ABOUT US END */
/* BONUSES START */
.section-bonuses-tags .heading-tag {
color: #000;
padding: 10px 0px 90px 0px;
border-top: 5px solid #95d600;
max-width: 150px;
margin: 0 auto;
}
.section-bonuses-tags {
padding: 55px 0;
}
.bonus-tag-img-wrap img {
max-width: 100px;
margin-bottom: 20px;
}
@media screen and (max-width: 990px) {
.bonus-tag-img-wrap {
text-align: center;
}
}
/* BONUSES END */
/* TERMINOLOGY START */
.section-terminology-tags {
background: url("../../images/terminology/terminology-tag-section-bg.png") no-repeat;
background-position: 120% 20%;
}
.section-terminology-tags .heading-tag {
color: #000;
padding: 10px 0px 90px 0px;
border-top: 5px solid #95d600;
max-width: 150px;
margin: 0 auto;
}
.section-terminology-tags {
padding: 90px 0;
}
.purple-bar-1 {
background: #5d2d86;
height: 7px;
width: 200px;
margin-bottom: 5px;
}
.green-bar-1 {
background: #94d60a;
height: 7px;
width: 150px;
}
.purple-bar-2 {
background: #5d2d86;
height: 7px;
width: 90px;
margin-bottom: 5px;
}
.green-bar-2 {
background: #94d60a;
height: 7px;
width: 60px;
}
.left-bars {
margin-bottom: 50px;
}
.left-bars-2 {
float: none;
max-width: 90px;
display: block;
}
.purple-bar-3 {
background: #5d2d86;
height: 7px;
width: 90px;
margin-bottom: 5px;
float: right;
}
.green-bar-3 {
background: #94d60a;
height: 7px;
width: 60px;
float: right;
}
.purple-bar-4 {
background: #5d2d86;
height: 7px;
width: 90px;
float: right;
}
.green-bar-4 {
background: #94d60a;
height: 7px;
width: 60px;
float: right;
margin-bottom: 5px;
}
.term-tag-img-wrap img {
max-width: 100px;
margin-bottom: 20px;
}
@media screen and (max-width: 990px) {
.term-tag-img-wrap {
text-align: center;
}
}
/* TERMINOLOGY END */
@media screen and (min-width: 990px) and (max-width: 1200px) {
.tag-text-wrap {
padding-left: 40px;
}
}
@media screen and (min-width: 990px) {
.table-fix {
padding-top: 40px;
}
}
@media screen and (min-width: 1200px) {
.tag-text-wrap-1, .term-tag-img-wrap-1 {
display: table;
min-height: 100px;
}
.tag-text-wrap-1 p, .term-tag-img-wrap-1 .img-holder {
display: table-cell;
vertical-align: middle;
}
.tag-text-wrap-2, .term-tag-img-wrap-2 {
display: table;
min-height: 275px;
}
.tag-text-wrap-2 p, .term-tag-img-wrap-2 .img-holder {
display: table-cell;
vertical-align: middle;
}
.tag-text-wrap-4, .term-tag-img-wrap-4 {
display: table;
min-height: 100px;
}
.tag-text-wrap-4 p, .term-tag-img-wrap-4 .img-holder {
display: table-cell;
vertical-align: middle;
}
.tag-text-wrap-5, .term-tag-img-wrap-5 {
display: table;
min-height: 150px;
}
.tag-text-wrap-5 p, .term-tag-img-wrap-5 .img-holder {
display: table-cell;
vertical-align: middle;
}
.tag-text-wrap-6, .term-tag-img-wrap-6 {
display: table;
min-height: 100px;
}
.tag-text-wrap-6 p, .term-tag-img-wrap-6 .img-holder {
display: table-cell;
vertical-align: middle;
}
.tag-text-wrap-7, .term-tag-img-wrap-7 {
display: table;
min-height: 100px;
}
.tag-text-wrap-7 p, .term-tag-img-wrap-7 .img-holder {
display: table-cell;
vertical-align: middle;
}
}
|
widget/assets/css/style.css | BuildFire/youtubePlugin | html{
font-size: 16px !important;
}
/* Plugin CSS */
.media-center-plugin.layout2 .people-banner .people-bg {
background: rgba(0, 0, 0, 0.8);
}
.media-center-plugin.layout2 .people-banner .people-info {
color: #fff;
}
.media-center-plugin.layout3 .list-layout .list-item-media .list-media-holder {
background: none;
}
.media-layout .media-item:nth-child(odd) {
padding-left: 15px !important;
padding-right: 7.5px !important;
}
.media-layout .media-item:nth-child(even) {
padding-left: 7.5px !important;
padding-right: 15px !important;
}
.media-layout .media-item {
margin-bottom: 15px;
}
.media-layout .media-item .media-holder {
background: #eef0f0;
position: relative;
border-radius: 3px 3px 0 0;
overflow: hidden;
}
.media-layout .media-item .media-copy {
border-radius: 0 0 3px 3px;
padding: 6px 10px;
}
.media-layout .media-item .media-holder .media-img-holder {
max-width: 450px;
margin: 0 auto;
}
.ecommerce-plugin.layout1 .media-layout .media-item:nth-child(odd) {
padding-left: 10px !important;
padding-right: 5px !important;
}
.ecommerce-plugin.layout1 .media-layout .media-item:nth-child(even) {
padding-left: 5px !important;
padding-right: 10px !important;
}
.ecommerce-plugin.layout1 .media-layout .media-item {
margin-bottom: 10px;
}
.ecommerce-plugin.layout1
.media-layout
.media-item
.media-holder
.media-img-holder {
max-width: 200px;
}
.ecommerce-plugin.layout1 .media-layout .media-item .info-bar {
padding: 6px 0;
}
/* List Items */
.list-items .list-item {
position: relative;
}
.list-items .list-item:before,
.layout3 .list-layout .list-item:after {
content: "";
/* border-top: 1px solid #ddd !important; */
opacity: 0.25;
top: 0;
left: 0;
width: 100%;
position: absolute;
}
.layout3 .list-layout .list-item:after {
border-top: none !important;
top: inherit;
bottom: 0;
/* border-bottom: 1px solid #ddd !important; */
}
.list-items .list-item + .list-item {
padding-top: 10px;
margin-top: 10px;
}
.list-items .list-item .media {
width: 100px;
}
.list-items .list-item .content {
padding-left: 110px;
width: 100%;
}
/* List Layout Grids */
.list-layout .list-item {
padding-left: 8px;
padding-right: 8px;
}
.list-layout .list-item + .list-item {
padding-left: 8px;
padding-right: 8px;
}
.list-layout .list-item-media {
position: relative;
left: 0;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
-webkit-transition: all 0.35s;
transition: all 0.35s;
}
.list-layout .list-item-media.now-playing:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background: #09a3ee;
}
.list-layout .list-item-media.edit {
left: -60px;
}
.list-layout .list-item-media .remove-btn {
position: absolute;
top: 0;
right: -120px;
padding: 25px 0;
width: 100px;
height: 100%;
color: #fff;
-moz-transition: all 0.35s;
-o-transition: all 0.35s;
-webkit-transition: all 0.35s;
transition: all 0.35s;
}
.list-layout .list-item-media.edit .remove-btn {
right: -60px;
}
.list-layout .list-item-media.edit .btns {
right: 58px;
}
.list-layout .list-item-media .list-media-holder {
margin: 0 auto;
border-radius: .25rem;
}
.layout1 .list-layout .list-item-media .list-media-holder,
.layout4 .list-layout .list-item-media .list-media-holder {
height: auto;
background: #ffffff;
border-radius: .25rem;
}
@media only screen and (max-width: 1366px) and (orientation: landscape) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 220px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 435px;
}
}
@media only screen and (max-width: 1024px) and (orientation: portrait) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 162px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 325px;
}
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 190px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 360px;
}
}
@media only screen and (max-width: 414px) and (orientation: portrait) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 99px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 185px;
}
}
@media only screen and (max-width: 375px) and (orientation: portrait) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 89px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 165px;
}
}
@media only screen and (max-width: 320px) and (orientation: portrait) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: 75px;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: 147px;
}
}
/* Landscape default */
@media only screen and (min-width: 320px) and (orientation: landscape) {
.layout1 .list-layout .list-item-media .list-media-holder {
height: auto;
}
.layout4 .list-layout .list-item-media .list-media-holder {
height: auto;
}
}
.layout1 .list-layout .list-item-media .list-media-holder a.link-image-wrapper,
.layout4 .list-layout .list-item-media .list-media-holder a.link-image-wrapper {
width: 100%;
height: 100%;
display: block;
}
.layout1
.list-layout
.list-item-media
.list-media-holder
a.link-image-wrapper
img {
width: 100%;
height: auto;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.layout4
.list-layout
.list-item-media
.list-media-holder
a.link-image-wrapper
img {
height: 100%;
width: auto;
max-width: none;
min-height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.layout1 .list-layout .list-item-copy {
height: 56px;
}
.layout4 .list-layout .list-item-copy {
height: 56px;
}
.list-layout .list-item-copy {
padding: 10px 0;
}
.list-layout .list-item-copy p.summary {
font-size: 13px;
}
.list-layout span.list-item-date {
font-size: 11px;
font-style: italic;
display: block;
margin: -4px 0 -4px;
}
.layout3 .list-layout {
position: relative;
}
.layout3 .list-layout:before {
content: "";
/* border-top: 1px solid #ddd !important; */
opacity: 0.25;
top: 0;
left: 0;
position: absolute;
width: 100%;
}
.layout3 .list-layout .list-item-media {
background: none;
}
.layout3 .list-layout .list-item-media .list-media-holder {
width: 110px;
height: 60px;
line-height: 58px;
margin: inherit;
margin-right: 10px;
background: #efefef;
border-radius: 4px;
margin: 5px 10px 5px 5px;
text-align: center;
}
.media-center-plugin.layout3 .list-layout .list-item-media .list-media-holder {
background: none;
}
html[browser="Firefox"]
.layout3
.list-layout
.list-item-media
.list-media-holder {
line-height: 60px;
}
.layout3 .list-layout .list-item-media .list-media-holder.square-icon {
width: 60px;
}
.layout3 .list-layout .list-item-media .list-media-holder img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
border-radius: 2px;
}
.layout3 .list-layout .list-item-media .list-media-holder .main-icon {
font-size: 44px;
position: relative;
top: 8px;
}
.layout3 .list-layout .list-item {
padding: 0;
min-height: 71px;
position: relative;
}
.layout3 .list-layout .list-item-copy {
padding: 6px 10px 5px;
}
/* End Plugin CSS */
/*
* Styling for list layout elements
*/
.list-layout {
overflow: hidden;
}
.list-item-container {
padding: 0px 7px;
}
.list-layout .list-item.video-box {
padding-left: 2%;
padding-right: 2%;
}
/*
* Set height of body to auto for enabling scroll
*/
.body-scroll {
height: auto !important;
}
/*
* Carousel container styling
*/
#carousel {
overflow: hidden !important;
}
.plugin-slide img,
.plugin-slide {
max-height: none !important;
}
/* Play Btn */
.play-btn {
position: relative;
}
.play-btn:after {
content: "\e612";
font-family: "icomoon";
position: absolute;
width: 30px;
height: 26px;
color: #fff;
font-size: 30px;
line-height: 24px;
top: 50%;
left: 50%;
margin-top: -12px;
margin-left: -15px;
}
.list-item-media .list-media-holder.play-btn:after {
font-size: 24px;
width: 24px;
margin-left: -12px;
margin-top: -12px;
}
/* Link Items */
.link-list a + a {
margin-left: 10px;
}
.link-list a {
color: inherit;
text-decoration: none;
}
.link-list a:hover {
color: inherit;
}
.link-list a i {
font-size: 20px;
padding: 14px;
}
.plugin-banner {
position: relative;
text-align: center;
}
ul.lorySlides li img {
width: 100%;
height: auto;
}
.thumbnail-container .thumbnail-play-icon {
display: none;
margin: auto;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.layout3 .load-img {
width: 100vh !important;
}
.layout3 .holder {
width: 100vw !important;
padding: 0px !important;
}
/*///////////////// Viewed State /////////////////*/
.list-item.viewed p,
.list-item.viewed a {
opacity: 0.7;
}
.list-item .list-media-holder {
position: relative;
}
.layout1 .list-item.viewed .list-media-holder::after,
.layout2 .list-item.viewed .list-media-holder::after,
.layout3 .list-item.viewed .thumbnail-container::after,
.layout4 .list-item.viewed .list-media-holder::after {
content: "";
display: block;
width: 100%;
background: #fff;
height: 100%;
position: absolute;
top: 0;
opacity: 0.5;
}
.list-item.viewed span::after {
content: "\e013";
font-family: "Glyphicons Halflings";
opacity: 1;
font-style: normal;
display: inline-block;
position: absolute;
color: #14cb5d;
margin-left: 16px;
}
.list-item.viewed .thumbnail-container .thumbnail-play-icon {
z-index: 1;
}
/*///////////////// Bookmark & Share Icons /////////////////*/
.list-item .list-media-holder img {
width: 100%;
}
.bookmark,
.share {
padding: 5px;
position: relative;
display: inline-block;
font-family: "Glyphicons Halflings" !important;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.layout1-detail .bookmark {
position: relative;
}
.layout1 .bookmark.unmarked,
.layout4 .bookmark.unmarked {
color: #fff;
}
.layout1 .bookmark,
.layout4 .bookmark {
color: #fff;
right: 0;
}
.layout1 .list-item .list-media-holder::before,
.layout2 .list-item .list-media-holder::before,
.layout4 .list-item .list-media-holder::before {
display: block;
position: absolute;
top: 0;
content: "";
z-index: 1;
width: 100%;
height: 100%;
background: -moz-linear-gradient(
top,
rgba(0, 0, 0, 0.5) 0%,
rgba(0, 0, 0, 0) 60%,
rgba(0, 0, 0, 0) 100%
); /* FF3.6-15 */
background: -webkit-linear-gradient(
top,
rgba(0, 0, 0, 0.5) 0%,
rgba(0, 0, 0, 0) 60%,
rgba(0, 0, 0, 0) 100%
); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.5) 0%,
rgba(0, 0, 0, 0) 60%,
rgba(0, 0, 0, 0) 100%
); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}
.layout1 .list-item .li-actions,
.layout4 .list-item .li-actions {
z-index: 2;
position: absolute;
font-size: 2rem;
border-radius: 40px;
width: 100%;
height: 40px;
}
.layout1 .li-actions i,
.layout4 .li-actions i {
position: absolute;
}
.ellipsis {
display: block;
}
/*///////////////// Share Icon /////////////////*/
.li-actions i {
font-size: 20px;
display: inline-block;
}
.layout1 .li-actions .share,
.layout4 .li-actions .share {
color: #fff !important;
left: 0;
}
.layout3 .list-item-copy a {
display: block;
}
.layout3 .li-actions {
width: auto;
}
/*///////////////// Item Detail View /////////////////*/
.layout1-detail .main-title {
font-size: 18px;
font-weight: bolder;
line-height: 1.25em;
margin-bottom: 0;
}
.layout1-detail .li-actions {
display: flex;
position: relative;
}
.item-actions {
margin: 16px 0;
padding: 0;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.layout1-detail .item-actions{
opacity: 0;
position: relative;
transition: opacity 0.5s ease;
}
.layout1-detail .item-actions:after {
content: '';
width: 100%;
height: 100%;
display: block;
position: absolute;
left: 0;
top: 0;
z-index: 100;
}
.layout1-detail .item-actions.enabled:after{
content: '';
display: none;
}
.layout1-detail .item-actions.enabled{
opacity: 1;
}
.layout1-detail .li-actions i {
flex-shrink: 0;
position: relative;
display: block;
padding: 16px;
flex-shrink: 0;
top: 0;
}
.plugin-slider img,
.plugin-slider {
max-height: none !important;
}
/* Layout 2 */
.layout2 .list-layout .list-item-copy {
padding: 0;
width: 100%;
}
.layout2 .list-layout .list-item {
background: none;
display: flex;
width: 100%;
padding: .75rem;
}
.layout2 .list-item .list-item-copy{
display: flex;
flex: auto;
}
.layout2 .list-media-holder {
width: 110px;
height: 60px;
border-radius: 4px;
margin-right: 10px;
flex-shrink: 0;
border-radius: .25rem;
overflow: hidden;
}
.layout2 .li-actions .share {
color: #fff !important;
}
.layout2 .list-media-holder .li-actions {
position: absolute;
top: 0;
left: 0;
z-index: 2;
}
.layout2 .li-actions i {
margin-left: 8px;
position: relative;
}
.layout2 .list-media-holder .li-actions i {
margin-left: 0;
}
/* Layout 3 */
.layout3 .list-item-copy {
display: flex;
padding: 16px;
position: relative;
}
.layout3 .list-item-copy .li-copy {
width: 100%;
}
.layout3 .li-actions {
position: relative;
flex-shrink: 0;
}
.layout3 .li-actions i {
margin-left: 8px;
position: relative;
}
.layout3 .list-item-date {
font-size: 0.8em;
flex: 1;
}
.layout3 .info-group,
.layout2 .info-group {
display: flex;
align-items: center;
}
.layout2 .info-group .list-item-date {
flex: 1;
}
/* Layout 4 */
.layout4 .list-item-container {
padding: 0 8px;
}
.keep-spaces {
white-space: pre-wrap;
}
/* Flex Classes */
.flex{
display: flex;
}
.flex-auto{
flex: auto;
}
:not(.layout3) .list-media-holder{
border-radius: .25rem;
overflow: hidden;
}
#emptyContainer {
background-image: url('../images/empty_page.svg');
background-repeat: no-repeat;
background-position: center;
height: 100vh;
}
|
static/snapshots/snapshot-2014-10-01-2030/tag/basingstoke.html | verily-org/verily | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Search Questions · Verily</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- FB open graph tags -->
<meta property="og:site_name" content="Verily"/>
<meta property="og:url" content="https://veri.ly" />
<meta property="og:image" content="https://efe8ea3fb0a1c1b.s3.amazonaws.com/images/verily-v-logo.png"/>
<meta property="og:title" content="Verily"/>
<meta property="og:description" content="We live in the Information Age... or the Disinformation Age. Finding out the truth in the vast amount of contradictory information is becoming increasingly difficult for everyone. Join the Verily Challenge to search for the truth."/>
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- TODO Use bower and modify Bootstrap to our needs -->
<link href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Cinzel+Decorative:900" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="../static/images/favicon.png">
<link rel="apple-touch-icon-precomposed" href="../static/images/favicon.png" >
<link href="../static/css/style.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/plug-ins/be7019ee387/integration/bootstrap/3/dataTables.bootstrap.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<![endif]-->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- Jquery Datatable -->
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.0/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" language="javascript" src="https://cdn.datatables.net/plug-ins/be7019ee387/integration/bootstrap/3/dataTables.bootstrap.js"></script>
<!-- Common JS -->
<script type="text/javascript" src="../static/js/common.js"></script>
<!-- Latest compiled and minified Bootstrap JavaScript -->
<script src="https://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- Load general functions JS -->
<script type="text/javascript" src="../static/js/load.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-52527080-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script type="text/javascript">
var sc_project=9897798;
var sc_invisible=1;
var sc_security="741aa466";
var scJsHost = (("https:" == document.location.protocol) ?
"https://secure." : "http://www.");
document.write("<sc"+"ript type='text/javascript' src='" +
scJsHost+
"statcounter.com/counter/counter.js'></"+"script>");
</script>
</head>
<body class="">
<!-- provisional user confirm login modal -->
<div class="modal fade" id="provisionalUserConfirmLoginModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Are you sure you want to withdraw from <strong>user-185179dc</strong>?</h4>
</div>
<div class="modal-body">
Submissions made under your provisional username, <strong>user-185179dc</strong>, will be lost if you log in now. To transfer your content, <a href="../register/index.html">sign up</a>.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<a href="../login%3Fvia=%252Flogout.html" type="button" class="btn btn-danger">Withdraw and log in</a>
</div>
</div>
</div>
</div>
<!-- / provisional user confirm login modal -->
<div id="login-register" class="modal auth-modal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<div class="login-aside-button text-center">
<a href="../auth/facebook.html" class="btn btn-default btn-lg facebook-button"><i class="fa fa-facebook"></i> Login with Facebook</a>
</div>
<div class="row">
<div class="col-sm-6">
<p class="lead">
Login
</p>
<form class="login-form" role="form" action="../user.html" method="POST" novalidate>
<input type="hidden" name="_csrf" value="9V61i2JflEf8oWssUQ3/8g+XxaNp1E3CC0F/Q=" />
<!-- <input type="hidden" name="_method" value="POST">
<input type="hidden" id="form-question-type" name="type"> -->
<div class="form-group" >
<input type="email" class="form-control input-lg form-email" name="email" placeholder="Email" tabindex="1">
</div>
<div class="form-group">
<input type="password" class="form-control input-lg form-password" name="password" placeholder="Password" tabindex="2">
</div>
<div class="form-group">
<label>
<input type="checkbox" id="form-transfer-from-provisional" name="transferFromProvisional" checked value="true">
Associate content posted as a guest user under user-185179dc with this account.
</label>
</div>
<div>
<a href="../forgot.html">Forgot Password</a>
</div>
<button type="submit" class="btn btn-primary btn-lg pull-right centre-when-viewport-narrowed" id="login-button">Login</button>
</form>
<script type="text/javascript">
var loginForm = $('.login-form');
loginForm.on('submit', function(e) {
var valid = true;
var message;
var formSubmitted = $(e.currentTarget);
var loginAlert = formSubmitted.find('.login-alert')
if (formSubmitted.find('.form-email').val() === '' || formSubmitted.find('.form-password').val() === '') {
valid = false;
message = 'Enter your login details.';
}
if (valid) {
// Whole form is valid, submit form to endpoint
return;
} else {
// The form is not valid, don't submit form.
e.preventDefault();
loginAlert.text(message);
loginAlert.css('display', 'block');
}
})
</script>
</div>
<div class="col-sm-6">
<p class="lead">
Signup
</p>
<form id="signup" role="form" action="../user.html" method="POST">
<input type="hidden" name="_csrf" value="9V61i2JflEf8oWssUQ3/8g+XxaNp1E3CC0F/Q=" />
<!-- <input type="hidden" name="_method" value="POST">
<input type="hidden" id="form-question-type" name="type"> -->
<div class="form-group">
<input type="email" class="form-control input-lg" id="form-email" name="email" placeholder="Email">
</div>
<div class="form-group">
<input type="text" class="form-control input-lg" id="form-name" name="name" placeholder="Choose a username">
</div>
<div class="form-group">
<input type="password" class="form-control input-lg" id="form-password" name="password" placeholder="Create a password">
</div>
<div class="form-group">
<input type="password" class="form-control input-lg" id="form-verifyPassword" name="verifyPassword" placeholder="Enter password again">
</div>
<div class="form-group">
<label>
<input type="checkbox" id="terms-agreement" name="termsAgreement">
I agree with the <a href="../terms.html" target="_blank">Terms and Conditions</a>.
</label>
</div>
<button type="submit" class="btn btn-primary btn-lg pull-right" id="submit-button">Signup with Email</button>
<div class="form-group">
<label>
<input type="checkbox" id="form-transfer-from-provisional" name="transferFromProvisional" checked value="true">
Associate content posted as a guest user under user-185179dc with the new account.
</label>
</div>
<b>IMPORTANT :</b> This website is part of an academic research project at the University of Southampton (Ethics reference number: ERGO/FPSE/10709).
Your data will be used only for academic research purposes and it will be treated in accordance to the UK Data Protection Act 1998.
Full details in our <a href="../terms.html" target="_blank">Terms and Conditions</a>.
</form>
</div>
</div>
</div>
<div class="modal-footer">
<a class="btn btn-default" data-dismiss="modal">Cancel</a>
</div>
</div>
</div>
</div>
<div id="alert-window" style="display:none; position:fixed;" class="alert alert-warning alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
<h4 class="alert-title"></h4>
<span class="alert-message"></span>
</div>
<a href="basingstoke.html#content" class="sr-only">Skip to main content</a>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#vly-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand active logo " href="../index.html" title="Home">
<span class="first-char">V</span>erily
</a>
<ul class="nav navbar-nav pull-right">
<li>
<a href="../user.html" class="username" title="provisional username">
<i class="fa fa-ticket"></i>
user-185179dc
</a>
</li>
</ul>
</div>
<div class="collapse navbar-collapse" id="vly-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="../crisis/1.html">All questions</a></li>
<li>
<form action="https://veri.ly/search" method="POST" class="navbar-form nav-search">
<input type="hidden" name="_csrf" value="9V61i2JflEf8oWssUQ3/8g+XxaNp1E3CC0F/Q=" />
<div class="input-group">
<input type="search" class="form-control" name="search" id="search" data-placeholder="Search Questions">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</li>
<script>
$('#search').focus(function(e) {
var headerWidth = $('.navbar-header').css('width');
var searchBoxWidth = $('.nav-search .input-group').css('width');
$('#search').attr('placeholder', $('#search').data('placeholder'));
$('.nav-search button').toggleClass('focused');
if (headerWidth !== searchBoxWidth) {
// search box is not full viewport width,
// so not on mobile or xs devices.
$('.nav-search .input-group').width('20vw');
}
});
$('#search').blur(function(e) {
$('#search').attr('placeholder', '');
$('.nav-search button').toggleClass('focused');
if (!e.relatedTarget || e.relatedTarget.nodeName != 'BUTTON') {
$('.nav-search .input-group').removeAttr('style');
}
});
</script>
</ul>
<ul class="nav navbar-nav pull-right">
<li>
<a href="../register/index.html">
Signup
</a>
</li>
<li><a href="../user.html">Login</a></li>
</ul>
</div>
</div>
</nav>
<main role="main" id="content" class="container">
<!-- <ol class="breadcrumb"> -->
<!-- <li>
<a href="/" title="Home">Home</a>
</li> -->
<!-- -->
<!-- </ol> -->
<h2 class="title">
Search Results
</h2>
<div class="row">
<div class="pull-right">
<label for="select_filter_questions">View questions:</label>
<select id="select_filter_questions">
<option value="Relevant">Relevance (most relevant first)</option>
<option value="Recent">Recent (most recent first)</option>
<option value="Popular">Popular (most popular first)</option>
</select>
</div>
</div>
<div class="row question-answers crisis-questions">
<div class="col-sm-4 crisis-question-wrapper" data-date="Sun, 13 Jul 2014 13:28:12" data-popularity="0" data-relevance="7">
<div class="panel panel-default question-answer crisis-question-border border-not-available">
<div class="panel-heading">
<div class="">
<i class="fa fa-map-marker"></i>
<span class="sr-only">Locality:</span>
<span id="question-locality">Basingstoke, UK</span>
</div>
<h3 class="panel-title">
<a href="../crisis/1/question/62.html">
In Festival Place in Basingstoke, is it possible to purchase a pillow of a crying woman?
</a>
</h3>
<div class="crisis-question-metrics">
<!-- <span class="label metric crisis-question-metric important success" title="Marked as important"><i class="fa fa-star"></i> </span>-->
<span class="label metric crisis-question-metric" title="Answers that state this is true"><i class="fa fa-check success"></i> <span class="success">0</span></span>
<span class="label metric crisis-question-metric danger" title="Answers that state this is false"><i class="fa fa-times danger"></i> <span class="danger">0</span></span>
</div>
</div>
<div class="panel-body">
<div class="">
<i class="fa fa-bullhorn"></i>
<span class=""><abbr title="Sun, 13 Jul 2014 13:28:12 GMT">2014-07-13 13:28:12</abbr></span>
by verily
</div>
</div>
</div>
</div>
<!-- / .col-sm-4 -->
<div class="col-sm-4 crisis-question-wrapper" data-date="Sun, 13 Jul 2014 01:25:39" data-popularity="0" data-relevance="1">
<div class="panel panel-default question-answer crisis-question-border border-not-available">
<div class="panel-heading">
<h3 class="panel-title">
<a href="../crisis/1/question/48.html">
Are England flags still displayed in the Game store in Festival Place in Basingstoke?
</a>
</h3>
<div class="crisis-question-metrics">
<!-- <span class="label metric crisis-question-metric important success" title="Marked as important"><i class="fa fa-star"></i> </span>-->
<span class="label metric crisis-question-metric" title="Answers that state this is true"><i class="fa fa-check success"></i> <span class="success">0</span></span>
<span class="label metric crisis-question-metric danger" title="Answers that state this is false"><i class="fa fa-times danger"></i> <span class="danger">0</span></span>
</div>
</div>
<div class="panel-body">
<div class="row">
<img src="https://efe8ea3fb0a1c1b.s3.amazonaws.com/images/submissions/14052147399774d3cd2f73f97d3c7.JPG" class="img-responsive center-block">
</div>
<div class="">
<i class="fa fa-bullhorn"></i>
<span class=""><abbr title="Sun, 13 Jul 2014 01:25:39 GMT">2014-07-13 01:25:39</abbr></span>
by verily
</div>
</div>
</div>
</div>
<!-- / .col-sm-4 -->
<div class="col-sm-4 crisis-question-wrapper" data-date="Sun, 13 Jul 2014 11:44:36" data-popularity="0" data-relevance="6">
<div class="panel panel-default question-answer crisis-question-border border-not-available">
<div class="panel-heading">
<div class="">
<i class="fa fa-map-marker"></i>
<span class="sr-only">Locality:</span>
<span id="question-locality">Basingstoke</span>
</div>
<h3 class="panel-title">
<a href="../crisis/1/question/56.html">
Is the Season shop open in Festival Place?
</a>
</h3>
<div class="crisis-question-metrics">
<!-- <span class="label metric crisis-question-metric important success" title="Marked as important"><i class="fa fa-star"></i> </span>-->
<span class="label metric crisis-question-metric" title="Answers that state this is true"><i class="fa fa-check success"></i> <span class="success">0</span></span>
<span class="label metric crisis-question-metric danger" title="Answers that state this is false"><i class="fa fa-times danger"></i> <span class="danger">0</span></span>
</div>
</div>
<div class="panel-body">
<div class="row">
<img src="https://efe8ea3fb0a1c1b.s3.amazonaws.com/images/submissions/14052518765577f31b9ed0544e43a.JPG" class="img-responsive center-block">
</div>
<div class="">
<i class="fa fa-bullhorn"></i>
<span class=""><abbr title="Sun, 13 Jul 2014 11:44:36 GMT">2014-07-13 11:44:36</abbr></span>
by verily
</div>
</div>
</div>
</div>
<!-- / .col-sm-4 -->
</div>
<script type="text/javascript">
//This script will get each video-wrapper class in the DOM and using its data-video-url attribute
//will try to retrieve the html of the video and display it
$(function(){
$('.video-wrapper-ajax').each(function(){
getVideoAjax($(this).data('video-url'), this);
});
});
</script>
<script type="text/javascript">
//Using ajax, this functions are used to retrieve the html needed to display a video from a URL
//The video_wrapper must be parent of divs with classes fa-spin, video-container and video-error-message
function getVideoAjax(target_url, video_wrapper){
$(video_wrapper).show();
$(video_wrapper).find('.video-spinner').show();
$(video_wrapper).find('.video-container').hide();
$(video_wrapper).find('.video-error-message').hide();
$.post('/getVideoHtml',
{
videoUrl: target_url,
_csrf: "9V61i2JflEf8oWssUQ3/8g+XxaNp1E3CC0F/Q="
},
function(result){
if(result.html){
var video_html = result.html;
video_html = video_html.replace('http:', 'https:');
update_container(video_html, $(video_wrapper));
}
else{
video_error_message(target_url, $(video_wrapper));
}
}).fail(function(){
video_error_message( target_url, $(video_wrapper));
});
}
var update_container = function(video_html, video_wrapper){
video_wrapper.find('.video-spinner').hide();
video_wrapper.find('.video-container').show();
video_wrapper.find('.video-container').html(video_html);
}
var video_error_message = function( target_url, video_wrapper){
video_wrapper.find('.video-spinner').hide();
video_wrapper.find('.video-container').hide();
video_wrapper.find('.video-error-message a').html(target_url).attr('href', target_url);
video_wrapper.find('.video-error-message').show();
}
</script>
<script type="text/javascript">
var rearrange_children = function(parent, sort_function){
// parent.fadeOut('fast', function(){
var children = [];
parent.children('div.row').each(function(){
$(this).children('div').each(function(){
children.push(this);
$(this).remove();
});
});
children.sort(sort_function);
for (var i in children) {
var parent_row_index = Math.floor(i/3);
var parent_row = parent.children('div.row')[parent_row_index];
$(parent_row).append(children[i]);
}
// parent.fadeIn('slow');
// });
}
</script>
<script src="http://openlayers.org/api/OpenLayers.js"></script>
<script src="../static/js/maps.js"></script>
<script type="text/javascript">
var map, layer;
map = map_init('map');
$(function(){
$(".mark-important-crisis-btn").click(function(){
var button = $(this);
$.post('/crisis/'+button.attr('data-crisis-id')+'/markImportant',
{_csrf: "9V61i2JflEf8oWssUQ3/8g+XxaNp1E3CC0F/Q=" },
function(data){
var crisis = data;
update_markedImportant(crisis, button);
}).fail(function(){
var error_message = 'There was an unknown error, please try again later.';
if (!common.challengePublished()) {
error_message = 'The Verily Challenge has now closed. Thank you for taking part!';
}
show_alert_message('danger', 5000, "Error", error_message);
});
});
$('#select_filter_questions').change(function(){
if($('#select_filter_questions').val() == "Recent"){
rearrange_children($('.crisis-questions'), function(a,b){
return new Date($(b).data('date')) - new Date($(a).data('date'));
});
}
else if($('#select_filter_questions').val() == "Popular"){
rearrange_children($('.crisis-questions'), function(a,b){
return $(b).data('popularity') - $(a).data('popularity') ;
});
}
else if($('#select_filter_questions').val() == "Relevant"){
rearrange_children($('.crisis-questions'), function(a,b){
return $(b).data('relevance') - $(a).data('relevance') ;
});
}
});
if($('#select_filter_questions').prop("selectedIndex") != 0){
//trigger change if the initial selected index is not 0
$('#select_filter_questions').change();
}
});
var update_markedImportant = function(crisis, element){
element.next('a.action-button-count').text(crisis.importanceCount);
element.addClass('active').addClass('disabled');
}
</script>
<footer>
<div class="pull-left">
<div class="text-muted">
<a href="../terms.html#copyright">© 2014 Verily</a>
</div>
<div class="text-muted">
<a href="../about.html">About</a>
·
<a href="../terms.html">Terms & Privacy</a>
·
<a href="../help.html">Contact</a>
</div>
</div>
</footer>
</main>
</body>
</html>
|
test/index.html | davidlukerice/asNEAT | <!doctype html>
<html>
<head>
<meta charset='UTF-8' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<title>Test Runner</title>
<link rel='stylesheet' href='vendor/qunit-1.14.0.css'>
<!-- add any external libraries your code needs -->
<script src="../vendor/lodash/dist/lodash.min.js"></script>
<script src="../vendor/loader.js"></script>
<script src='../dist/asNEAT.js'></script>
<!-- add any JS files under test (or put them in different .html files) -->
<script src='vendor/qunit-1.14.0.js'></script>
<!-- your tests, any and all to run with the given fixtures below -->
<script src='tests/utilTests.js'></script>
<script src='tests/nodeTests.js'></script>
<script src='tests/networkTests.js'></script>
<script src='tests/populationTests.js'></script>
</head>
<body>
<div id="qunit"></div> <!-- QUnit fills this with results, etc -->
<div id='qunit-fixture'>
<!-- any HTML you want to be present in each test (will be reset for each test) -->
</div>
</body>
</html>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/2b9288928f5c1b50cd7ba2a5652c0c6c1d9768425625c77d59281dc243e75b81.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="./e0d2bf6979eee3ab15ef76b643e657e05243c1aa0c247ac4ec7ddac435e6cc9e.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> |
app/doc/angular_module.demoApp.demoControllers.html | towersxu/ajs-demo | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Namespace: demoControllers</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">Namespace: demoControllers</h1>
<section>
<header>
<h2>
<span class="ancestors"><a href="angular_module.demoApp.html">.demoApp</a>.</span>
demoControllers
</h2>
</header>
<article>
<div class="container-overview">
<dl class="details">
<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="controllers.js.html">controllers.js</a>, <a href="controllers.js.html#line3">line 3</a>
</li></ul></dd>
</dl>
</div>
<h3 class="subsection-title">Namespaces</h3>
<dl>
<dt><a href="namespaces.html#angular_module.demoApp.demoControllers.DeviceList"><a href="angular_module.demoApp.demoControllers.DeviceList.html">DeviceList</a></a></dt>
<dd></dd>
<dt><a href="namespaces.html#angular_module.demoApp.demoControllers.HomeCtrl"><a href="angular_module.demoApp.demoControllers.HomeCtrl.html">HomeCtrl</a></a></dt>
<dd></dd>
</dl>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Index</a></h2><h3>Namespaces</h3><ul><li><a href="angular_module.demoApp.html">demoApp</a></li><li><a href="angular_module.demoApp.demoControllers.html">demoControllers</a></li><li><a href="angular_module.demoApp.demoControllers.DeviceList.html">DeviceList</a></li><li><a href="angular_module.demoApp.demoControllers.HomeCtrl.html">HomeCtrl</a></li><li><a href="angular_module.demoApp.demoDirectives.html">demoDirectives</a></li><li><a href="angular_module.demoApp.demoDirectives.header.html">header</a></li><li><a href="angular_module.demoApp.demoDirectives.NavDirectiveCtrl.html">NavDirectiveCtrl</a></li></ul><h3>Global</h3><ul><li><a href="global.html#karamControllers">karamControllers</a></li></ul>
</nav>
<br clear="both">
<footer>
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.2</a> on Fri Jun 12 2015 13:23:05 GMT+0800 (CST)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html> |
app/assets/stylesheets/demo.css | equallevel/grapple-demo | body {
padding: 0;
margin: 0;
font: 13px/1.231 arial,helvetica,clean,sans-serif;
}
.header {
background-color: #F5F5F5;
border-bottom: 1px solid #E5E5E5;
height: 50px;
font-size: 30px;
padding-left: 10px;
}
.container-fluid {
padding-top: 10px;
padding-bottom: 10px;
}
.CodeMirror {
height: auto;
}
|
www/app/components/setting/setting.html | jackie-z/baoxian-app | <ion-view title="用户信息设置">
<ion-nav-bar class="bar-stable">
<ion-nav-buttons side="left">
<button class="button button-icon button-clear ion-arrow-left-c" ng-click="back()">
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content has-header="true" >
</ion-content>
</ion-view>
|
example.html | WartClaes/Validate | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jQuery Validate script</title>
</head>
<body>
<div class="container">
<form>
<div class="input-wrapper">
<label>
<input type="checkbox" name="test1" value="0" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="checkbox" name="test1" value="1" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="checkbox" name="test1" value="2" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="checkbox" name="test1" value="3" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="checkbox" name="test1" value="4" >
Lorem ipsum dolor.
</label>
<br/><br/><br/>
</div>
<div class="input-wrapper">
<label>
<input type="radio" name="test2" value="0" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="radio" name="test2" value="1" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="radio" name="test2" value="2" >
Lorem ipsum dolor.
</label>
<br/>
<label>
<input type="radio" name="test2" value="3" >
Lorem ipsum dolor.
</label>
<br/><br/><br/>
</div>
<div class="input-wrapper required">
<input type="text" name="test3" >
</div>
<div class="input-wrapper required">
<select name="test3B">
<option>--</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
<div class="input-wrapper required">
<input type="email" name="test4" >
</div>
<input type="submit" value="Send" />
</form>
</div>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="src/validate.js"></script>
<script>
$('input[type=submit').bind('click', function(event){
event.preventDefault();
$('form').validate(function(err){
console.log(err);
});
});
</script>
</body>
</html>
|
rdoc/RubyXL/CT_BlendEffect.html | svishniakov/rubyXL-3.1.0 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>class RubyXL::CT_BlendEffect - rubyXL 3.1.0</title>
<link href="../fonts.css" rel="stylesheet">
<link href="../rdoc.css" rel="stylesheet">
<script type="text/javascript">
var rdoc_rel_prefix = "../";
</script>
<script src="../js/jquery.js"></script>
<script src="../js/navigation.js"></script>
<script src="../js/search_index.js"></script>
<script src="../js/search.js"></script>
<script src="../js/searcher.js"></script>
<script src="../js/darkfish.js"></script>
<body id="top" role="document" class="class">
<nav role="navigation">
<div id="project-navigation">
<div id="home-section" role="region" title="Quick navigation" class="nav-section">
<h2>
<a href="../index.html" rel="home">Home</a>
</h2>
<div id="table-of-contents-navigation">
<a href="../table_of_contents.html#pages">Pages</a>
<a href="../table_of_contents.html#classes">Classes</a>
<a href="../table_of_contents.html#methods">Methods</a>
</div>
</div>
<div id="search-section" role="search" class="project-section initially-hidden">
<form action="#" method="get" accept-charset="utf-8">
<div id="search-field-wrapper">
<input id="search-field" role="combobox" aria-label="Search"
aria-autocomplete="list" aria-controls="search-results"
type="text" name="search" placeholder="Search" spellcheck="false"
title="Type to search, Up and Down to navigate, Enter to load">
</div>
<ul id="search-results" aria-label="Search Results"
aria-busy="false" aria-expanded="false"
aria-atomic="false" class="initially-hidden"></ul>
</form>
</div>
</div>
<div id="class-metadata">
<div id="parent-class-section" class="nav-section">
<h3>Parent</h3>
<p class="link"><a href="OOXMLObject.html">RubyXL::OOXMLObject</a>
</div>
</div>
</nav>
<main role="main" aria-labelledby="class-RubyXL::CT_BlendEffect">
<h1 id="class-RubyXL::CT_BlendEffect" class="class">
class RubyXL::CT_BlendEffect
</h1>
<section class="description">
</section>
<section id="5Buntitled-5D" class="documentation-section">
</section>
</main>
<footer id="validator-badges" role="contentinfo">
<p><a href="http://validator.w3.org/check/referer">Validate</a>
<p>Generated by <a href="http://rdoc.rubyforge.org">RDoc</a> 4.1.1.
<p>Based on <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>
|
frontend/index.de.html | 123RF/search-demo | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>123rf Such-Demo</title>
<script type="text/javascript">
window['123RF_LANGUAGE'] = 'de';
window['123RF_DEFAULT_TERM'] = 'sonne';
</script>
<script type="text/javascript" src="jquery-2.1.3.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div class="languages">
<a href="index.de.html"><img src="de.gif"/></a>
<a href="index.en.html"><img src="en.gif"/></a>
</div>
<a href="https://github.com/123RF/search-demo"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<div class="tabs">
<ul class="tabs">
<li class="active" data-key="search">Suchen</li><li data-key="browse">Stöbern</li>
</ul>
<ul class="content">
<li class="active" data-key="search">
<div class="search">
<label>Hier können Sie einen Suchbegriff zu einem von Ihnen gewünschten Motiv eingeben: <input type="text" value=""></label>
<button>Suche</button>
</div>
<div class="mediatype">
<label>
Wählen Sie einen Medientyp:
<select class="mediaType">
<option selected value="all">beliebig</option>
<option value="0">Photographie</option>
<option value="1">Illustration</option>
</select>
</label>
</div>
</li>
<li data-key="browse">
<div class="categories">
<label>Natürlich haben Sie auch die Möglichkeit, sich mit ausgewählten Themen inspirieren zu lassen: <select class="primary"></select></label>
<select class="secondary"></select>
<select class="tertiary"></select>
</div>
</li>
</ul>
</div>
<div style="clear: both"></div>
<div class="color">
<label>
Wählen Sie ein Farbe:
<ul>
<li data-value="any" style="background-color: rgba(0, 0, 0, 0.2);" class="selected" title="kein Farbfilter"><div>×</div></li>
<li data-value="" style="background-color: #ffffff;"></li>
<li data-value="0" style="background-color: #000000;"></li>
<li data-value="1" style="background-color: #996100;"></li>
<li data-value="2" style="background-color: #636300;"></li>
<li data-value="3" style="background-color: #006300;"></li>
<li data-value="4" style="background-color: #006366;"></li>
<li data-value="5" style="background-color: #000080;"></li>
<li data-value="6" style="background-color: #636399;"></li>
<li data-value="7" style="background-color: #636363;"></li>
<li data-value="8" style="background-color: #800000;"></li>
<li data-value="9" style="background-color: #FF6600;"></li>
<li data-value="10" style="background-color: #808000;"></li>
<li data-value="11" style="background-color: #8000FF;"></li>
<li data-value="12" style="background-color: #008080;"></li>
<li data-value="13" style="background-color: #0000FF;"></li>
<li data-value="14" style="background-color: #666699;"></li>
<li data-value="15" style="background-color: #808080;"></li>
<li data-value="16" style="background-color: #FF0000;"></li>
<li data-value="17" style="background-color: #FF9900;"></li>
<li data-value="18" style="background-color: #99CC00;"></li>
<li data-value="19" style="background-color: #639966;"></li>
<li data-value="20" style="background-color: #63CCCC;"></li>
<li data-value="21" style="background-color: #6366FF;"></li>
<li data-value="22" style="background-color: #800080;"></li>
<li data-value="23" style="background-color: #999999;"></li>
<li data-value="24" style="background-color: #FF00FF;"></li>
<li data-value="25" style="background-color: #FFCC00;"></li>
<li data-value="26" style="background-color: #FFFF00;"></li>
<li data-value="27" style="background-color: #00FF00;"></li>
<li data-value="28" style="background-color: #00FFFF;"></li>
<li data-value="29" style="background-color: #00CCFF;"></li>
<li data-value="30" style="background-color: #996366;"></li>
<li data-value="31" style="background-color: #C0C0C0;"></li>
<li data-value="32" style="background-color: #FF99CC;"></li>
<li data-value="33" style="background-color: #FFCC99;"></li>
<li data-value="34" style="background-color: #FFFF99;"></li>
<li data-value="35" style="background-color: #CCFFCC;"></li>
<li data-value="36" style="background-color: #CCFFFF;"></li>
<li data-value="37" style="background-color: #99CCFF;"></li>
<li data-value="38" style="background-color: #CC99FF;"></li>
</ul>
</label>
</div>
<div class="result-container">
</div>
<div class="pagination">
<button class="previous">zurück</button>
<span>Seite <span class="current"></span> von <span class="total"></span></span>
<button class="next">weiter</button>
</div>
</body>
</html>
|
people/zj7ts6jt.html | slowe/panelshows | <html>
<head>
<title>Nick Xenophon's panel show appearances</title>
<script type="text/javascript" src="../common.js"></script>
<link rel="stylesheet" media="all" href="../style.css" type="text/css"/>
<script type="text/javascript" src="../people.js"></script>
<!--#include virtual="head.txt" -->
</head>
<body>
<!--#include virtual="nav.txt" -->
<div class="page">
<h1>Nick Xenophon's panel show appearances</h1>
<p>Nick Xenophon (born 1959-01-29<sup><a href="https://en.wikipedia.org/wiki/Nick_Xenophon">[ref]</a></sup>) has appeared in <span class="total">4</span> episodes between 2008-2015. <a href="https://en.wikipedia.org/wiki/Nick_Xenophon">Nick Xenophon on Wikipedia</a>.</p>
<div class="performerholder">
<table class="performer">
<tr style="vertical-align:bottom;">
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2008</span></td>
<td><div style="height:0px;" class="performances male" title=""></div><span class="year">2009</span></td>
<td><div style="height:0px;" class="performances male" title=""></div><span class="year">2010</span></td>
<td><div style="height:0px;" class="performances male" title=""></div><span class="year">2011</span></td>
<td><div style="height:0px;" class="performances male" title=""></div><span class="year">2012</span></td>
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2013</span></td>
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2014</span></td>
<td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2015</span></td>
</tr>
</table>
</div>
<ol class="episodes">
<li><strong>2015-11-16</strong> / <a href="../shows/qanda.html">Q&A</a></li>
<li><strong>2014-11-05</strong> / <a href="../shows/media-circus.html">The Chaser's Media Circus</a></li>
<li><strong>2013-09-16</strong> / <a href="../shows/qanda.html">Q&A</a></li>
<li><strong>2008-07-24</strong> / <a href="../shows/qanda.html">Q&A</a></li>
</ol>
</div>
</body>
</html>
|
index.html | xurei/xurei.github.io | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Xurei Blog</title>
<meta name="description" content="" />
<meta name="HandheldFriendly" content="True" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="//xurei.github.io/themes/Casper/favicon.ico">
<link rel="stylesheet" type="text/css" href="//xurei.github.io/themes/Casper/assets/css/screen.css?v=1.0.0" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Merriweather:300,700,700italic,300italic|Open+Sans:700,400" />
<link rel="canonical" href="https://xurei.github.io" />
<meta name="generator" content="Ghost ?" />
<link rel="alternate" type="application/rss+xml" title="Xurei Blog" href="https://xurei.github.io/rss" />
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/styles/default.min.css">
</head>
<body class="home-template">
<header class="main-header no-cover">
<nav class="main-nav overlay clearfix">
<!-- <a class="subscribe-button icon-feed" href="https://xurei.github.io/rss/">Subscribe</a> -->
</nav>
<div class="vertical">
<div class="main-header-content inner">
<h1 class="page-title">Xurei Blog</h1>
<h2 class="page-description"></h2>
</div>
</div>
<a class="scroll-down icon-arrow-left" href="#content" data-offset="-45"><span class="hidden">Scroll Down</span></a>
</header>
<main id="content" class="content" role="main">
<div class="extra-pagination inner">
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</div>
<article class="post">
<header class="post-header">
<h2 class="post-title"><a href="https://xurei.github.io/2015/11/13/This-is-a-test.html">This is a test</a></h2>
</header>
<section class="post-excerpt">
<p>Hello World ! <a class="read-more" href="https://xurei.github.io/2015/11/13/This-is-a-test.html">»</a></p>
</section>
<footer class="post-meta">
<time class="post-date" datetime="2015-11-13">13 November 2015</time>
</footer>
</article>
<nav class="pagination" role="navigation">
<span class="page-number">Page 1 of 1</span>
</nav>
</main>
<footer class="site-footer clearfix">
<section class="copyright"><a href="https://xurei.github.io">Xurei Blog</a> © 2015</section>
<section class="poweredby">Proudly published with <a href="http://hubpress.io">HubPress</a></section>
</footer>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.9.0/moment-with-locales.min.js?v="></script> <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.4/highlight.min.js?v="></script>
<script type="text/javascript">
jQuery( document ).ready(function() {
// change date with ago
jQuery('ago.ago').each(function(){
var element = jQuery(this).parent();
element.html( moment(element.text()).fromNow());
});
});
hljs.initHighlightingOnLoad();
</script>
<script type="text/javascript" src="//xurei.github.io/themes/Casper/assets/js/jquery.fitvids.js?v=1.0.0"></script>
<script type="text/javascript" src="//xurei.github.io/themes/Casper/assets/js/index.js?v=1.0.0"></script>
</body>
</html>
|
doc/api-reference.html | elalaouifaris/elixir-dplyr | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="ExDoc v0.15.1">
<title>API Reference – dplyr v0.1.0</title>
<link rel="stylesheet" href="dist/app-af302bfcc4.css" />
<script src="dist/sidebar_items-a404ce26f1.js"></script>
</head>
<body data-type="extras">
<script>try { if(localStorage.getItem('night-mode')) document.body.className += ' night-mode'; } catch (e) { }</script>
<div class="main">
<button class="sidebar-toggle">
<i class="icon-menu"></i>
</button>
<section class="sidebar">
<a href="api-reference.html" class="sidebar-projectLink">
<div class="sidebar-projectDetails">
<h1 class="sidebar-projectName">
dplyr
</h1>
<h2 class="sidebar-projectVersion">
v0.1.0
</h2>
</div>
</a>
<div class="sidebar-search">
<i class="icon-search"></i>
<input type="text" class="sidebar-searchInput" placeholder="search" autocomplete="off" />
</div>
<ul class="sidebar-listNav">
<li><a id="extras-list" href="#full-list">Pages</a></li>
<li><a id="modules-list" href="#full-list">Modules</a></li>
</ul>
<div class="gradient"></div>
<ul id="full-list" class="sidebar-fullList"></ul>
</section>
<section class="content">
<div class="content-outer">
<div id="content" class="content-inner">
<h1>
<small class="visible-xs">dplyr v0.1.0</small>
API Reference
</h1>
<section class="details-list">
<h2 id="modules" class="section-heading">
<a href="#modules" class="hover-link"><i class="icon-link"></i></a>
Modules
</h2>
<div class="summary">
<div class="summary-row">
<div class="summary-signature"><a href="Dplyr.html">Dplyr</a></div>
<div class="summary-synopsis"><p>test doc</p>
</div>
</div>
<div class="summary-row">
<div class="summary-signature"><a href="Dplyr.Tibble.html">Dplyr.Tibble</a></div>
<div class="summary-synopsis"><p>Tibble contains the implementation of dplyr dataframe data structure</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<p>
<span class="line">
Built using
<a href="https://github.com/elixir-lang/ex_doc" title="ExDoc" rel="help" target="_blank">ExDoc</a> (v0.15.1),
</span>
<span class="line">
designed by
<a href="https://twitter.com/dignifiedquire" target="_blank" title="@dignifiedquire">Friedel Ziegelmayer</a>.
</span>
</p>
<button class="night-mode-toggle" />
</footer>
</div>
</div>
</section>
</div>
<script src="dist/app-e9767fa739.js"></script>
</body>
</html>
|
Ext/log4net-1.2.11/doc/release/sdk/log4net.Appender.BufferingForwardingAppender.GetAppender.html | npruehs/slash-framework | <html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
<title>BufferingForwardingAppender.GetAppender Method</title>
<xml>
</xml>
<link rel="stylesheet" type="text/css" href="MSDN.css" />
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead">log4net SDK Documentation - Microsoft .NET Framework 4.0</td>
<td class="product">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">BufferingForwardingAppender.GetAppender Method </h1>
</div>
</div>
<div id="nstext">
<p> Looks for the appender with the specified name. </p>
<div class="syntax">
<span class="lang">[Visual Basic]</span>
<br />Overridable Public Function GetAppender( _<br /> ByVal <i>name</i> As <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemStringClassTopic.htm">String</a> _<br />) As <a href="log4net.Appender.IAppender.html">IAppender</a> _<div> Implements <a href="log4net.Core.IAppenderAttachable.GetAppender.html">IAppenderAttachable.GetAppender</a></div></div>
<div class="syntax">
<span class="lang">[C#]</span>
<br />public virtual <a href="log4net.Appender.IAppender.html">IAppender</a> GetAppender(<br /> <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemStringClassTopic.htm">string</a> <i>name</i><br />);</div>
<h4 class="dtH4">Parameters</h4>
<dl>
<dt>
<i>name</i>
</dt>
<dd>The name of the appender to lookup.</dd>
</dl>
<h4 class="dtH4">Return Value</h4>
<p> The appender with the specified name, or <code>null</code>. </p>
<h4 class="dtH4">Implements</h4>
<p>
<a href="log4net.Core.IAppenderAttachable.GetAppender.html">IAppenderAttachable.GetAppender</a>
</p>
<h4 class="dtH4">Remarks</h4>
<p> Get the named appender attached to this buffering appender. </p>
<h4 class="dtH4">See Also</h4><p><a href="log4net.Appender.BufferingForwardingAppender.html">BufferingForwardingAppender Class</a> | <a href="log4net.Appender.html">log4net.Appender Namespace</a></p><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"><param name="Keyword" value="GetAppender method"></param><param name="Keyword" value="GetAppender method, BufferingForwardingAppender class"></param><param name="Keyword" value="BufferingForwardingAppender.GetAppender method"></param></object><hr /><div id="footer"><p><a href="http://logging.apache.org/log4net">Copyright 2004-2011 The Apache Software Foundation.</a></p><p></p></div></div>
</body>
</html> |
Ext/log4net-1.2.11/doc/release/sdk/log4net.Appender.FileAppender.WriteFooter.html | npruehs/slash-framework | <html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
<title>FileAppender.WriteFooter Method</title>
<xml>
</xml>
<link rel="stylesheet" type="text/css" href="MSDN.css" />
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead">log4net SDK Documentation - Microsoft .NET Framework 4.0</td>
<td class="product">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">FileAppender.WriteFooter Method </h1>
</div>
</div>
<div id="nstext">
<p> Writes a footer as produced by the embedded layout's <a href="log4net.Layout.ILayout.Footer.html">Footer</a> property. </p>
<div class="syntax">
<span class="lang">[Visual Basic]</span>
<br />Overrides Protected Sub WriteFooter()</div>
<div class="syntax">
<span class="lang">[C#]</span>
<br />protected override <a href="ms-help://MS.NETFrameworkSDKv1.1/cpref/html/frlrfSystemVoidClassTopic.htm">void</a> WriteFooter();</div>
<h4 class="dtH4">Remarks</h4>
<p> Writes a footer as produced by the embedded layout's <a href="log4net.Layout.ILayout.Footer.html">Footer</a> property. </p>
<h4 class="dtH4">See Also</h4><p><a href="log4net.Appender.FileAppender.html">FileAppender Class</a> | <a href="log4net.Appender.html">log4net.Appender Namespace</a></p><object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"><param name="Keyword" value="WriteFooter method"></param><param name="Keyword" value="WriteFooter method, FileAppender class"></param><param name="Keyword" value="FileAppender.WriteFooter method"></param></object><hr /><div id="footer"><p><a href="http://logging.apache.org/log4net">Copyright 2004-2011 The Apache Software Foundation.</a></p><p></p></div></div>
</body>
</html> |
place/latvia/weather/2013/index.html | okfn/opendataindex-2015 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Open Knowledge">
<meta name="description" content="The Global Open Data Index assesses the state of open government data around the world.
">
<meta name="keywords" content="Open Government, Open Data, Government Transparency, Open Knowledge
">
<meta property="og:type" content="website"/>
<meta property="og:title" content="Open Data Index - Open Knowledge"/>
<meta property="og:site_name" content="Open Data Index"/>
<meta property="og:description"
content="The Global Open Data Index assesses the state of open government data around the world."/>
<meta property="og:image" content="/static/images/favicon.ico"/>
<title>Latvia / Weather forecast (2013) | Global Open Data Index by Open Knowledge</title>
<base href="/">
<!--[if lt IE 9]>
<script src="/static/vendor/html5shiv.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="/static/css/site.css">
<link rel="icon" href="/static/images/favicon.ico">
<script>
var siteUrl = '';
</script>
</head>
<body class="na">
<div class="fixed-ok-panel">
<div id="ok-panel" class="closed">
<iframe src="http://assets.okfn.org/themes/okfn/okf-panel.html" scrolling="no"></iframe>
</div>
<a class="ok-ribbon"><img src="http://okfnlabs.org/ok-panel/assets/images/ok-ribbon.png" alt="Open Knowledge"></a>
</div>
<header id="header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div>
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="logo">
<a href="/">
<img src="/static/images/logo2.png">
<span>Global<br/>Open Data Index</span>
</a>
</div>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav" style="margin-right: 132px;">
<li>
<a href="/place/" title="About the Open Data Index project">
Places
</a>
</li>
<li>
<a href="/dataset/" title="About the Open Data Index project">
Datasets
</a>
</li>
<li>
<a href="/download/" title="Download Open Data Index data">
Download
</a>
</li>
<li>
<a href="/insights/" title="Insights">
Insights
</a>
</li>
<li>
<a href="/methodology/"
title="The methodology behind the Open Data Index">
Methodology
</a>
</li>
<li>
<a href="/about/" title="About the Open Data Index project">
About
</a>
</li>
<li>
<a href="/press/"
title="Press information for the Open Data Index">
Press
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
</header>
<div class="container">
<div class="content">
<div class="row">
<div class="col-md-12">
<ol class="breadcrumb">
<li>
<a href="/">Home</a>
</li>
<li class="active">Latvia / Weather forecast (2013)</li>
</ol>
<header class="page-header">
<h1>Latvia / Weather forecast (2013)</h1>
</header>
<h3>Sorry</h3>
<p>
There is no data available for Latvia / Weather forecast (2013) in the Index.
</p>
</div>
</div>
</div>
</div>
<footer id="footer">
<div class="container">
<div class="row">
<div class="footer-main col-md-8">
<div class="footer-attribution">
<p>
<a href="http://opendefinition.org/ossd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/os_80x15_orange_grey.png" alt=""
border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Online Software Service">
<img src="http://assets.okfn.org/images/ok_buttons/od_80x15_blue.png" alt="" border=""/>
</a>
<a href="http://opendefinition.org/okd/" title="Open Content">
<img src="http://assets.okfn.org/images/ok_buttons/oc_80x15_blue.png" alt="" border=""/>
</a>
–
<a href="http://creativecommons.org/licenses/by/3.0/"
title="Content Licensed under a CC Attribution"></a>
<a href="http://opendatacommons.org/licenses/pddl/1.0"
title="Data License (Public Domain)">Data License (Public
Domain)</a>
</p>
</div>
<div class="footer-meta">
<p>
This service is run by <a href="https://okfn.org/" title="Open Knowledge">Open Knowledge</a>
</p> <a class="naked" href="http://okfn.org/" title="Open Knowledge"><img
src="http://assets.okfn.org/p/okfn/img/okfn-logo-landscape-black-s.png" alt="" height="28"></a>
</div>
</div>
<div class="footer-links col-md-2">
<li><a href="http://okfn.org/" title="Open Knowledge">Open Knowledge</a></li>
<li><a href="http://okfn.org/opendata/" title="What is Open Data?">What is
Open Data?</a></li>
<li><a href="http://census.okfn.org/" title="Run your own Index">Run your
own Index</a></li>
<li><a href="https://github.com/okfn/opendataindex" title="The source code for Open Data Index">Source Code</a></li>
</div>
<div class="footer-links col-md-2">
<li><a href="/" title="Open Data Index home">Home</a></li>
<li><a href="/download/" title="Download data">Download</a></li>
<li><a href="/methodology/"
title="The methodology behind the Open Data Index">Methodology</a></li>
<li><a href="/faq/" title=" Open Data Index FAQ">FAQ</a></li>
<li><a href="/about/" title="About the Open Data Index">About</a></li>
<li><a href="/about/" title="Contact us">Contact</a></li>
<li><a href="/press/" title="Press">Press</a></li>
</div>
</div>
</div>
</footer>
<script data-main="/static/scripts/site" src="/static/scripts/require.js"></script>
</body>
</html> |
_includes/author_bubble.html | Eun/lib.rs | <div class="tip"><!--
--><a href="{{ site.url }}/authors/{{ include.author | url_encode }}/" class="bbl">{{ include.author }}</a><!--
-->{% include get-author-details name=include.author %}<!--
-->{% if author_details %}<!--
--><div class="author"><!--
--><a href="{{ site.url }}/authors/{{ include.author | url_encode }}/"></a><!--
-->{% capture fileExists %}{% file_exists assets/authors/{{include.author}}.jpg %}{% endcapture %}<!--
-->{% if fileExists=="true" %}<!--
--><span class="image" style="background-image: url('{{ site.url }}/assets/authors/{{ include.author | url_encode }}.jpg')"></span><!--
-->{% endif %}<!--
--><span class="info"><b>{{ include.author }}</b><!--
-->{% if author_details.website %}<!--
--><a href="{{author_details.website}}">Website</a><!--
-->{% endif %}<!--
-->{% if author_details.email %}<!--
--><a href="mailto:{{author_details.email}}">Mail</a><!--
-->{% endif %}<!--
--></span><!--
--></div><!--
-->{% endif %}<!--
--></div> |
dokumentaatio/cobertura/frame-summary-graafinenkali.html | saranas/Tanssigeneraattori | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>Coverage Report</title>
<link title="Style" type="text/css" rel="stylesheet" href="css/main.css"/>
<link title="Style" type="text/css" rel="stylesheet" href="css/sortabletable.css"/>
<script type="text/javascript" src="js/popup.js"></script>
<script type="text/javascript" src="js/sortabletable.js"></script>
<script type="text/javascript" src="js/customsorttypes.js"></script>
</head>
<body>
<h5>Coverage Report - graafinenkali</h5>
<div class="separator"> </div>
<table class="report" id="packageResults">
<thead><tr> <td class="heading">Package</td> <td class="heading"># Classes</td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Line Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Branch Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Complexity</a></td></tr></thead>
<tbody>
<tr><td><a href="frame-summary-graafinenkali.html" onclick='parent.sourceFileList.location.href="frame-sourcefiles-graafinenkali.html"'>graafinenkali</a></td><td class="value">8</td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/197</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/22</span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.5263157894736843;</span>1,526</td></tr>
</tbody>
</table>
<script type="text/javascript">
var packageTable = new SortableTable(document.getElementById("packageResults"),
["String", "Number", "Percentage", "Percentage", "FormattedNumber"]);
packageTable.sort(0);
</script>
<div class="separator"> </div>
<table class="report" id="classResults">
<thead><tr> <td class="heading">Classes in this Package</td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Line Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Branch Coverage</a></td> <td class="heading"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">Complexity</a></td></tr></thead>
<tbody>
<tr><td><a href="graafinenkali.ArvonnanKuuntelija.html">ArvonnanKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/23</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/4</span></div></div></td></tr></table></td><td class="value"><span class="hidden">2.0;</span>2</td></tr>
<tr><td><a href="graafinenkali.GraafinenKayttoliittyma.html">GraafinenKayttoliittyma</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/81</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.0;</span>1</td></tr>
<tr><td><a href="graafinenkali.LajinvalintaKuuntelija.html">LajinvalintaKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/7</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.0;</span>1</td></tr>
<tr><td><a href="graafinenkali.LatauksenKuuntelija.html">LatauksenKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/27</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/6</span></div></div></td></tr></table></td><td class="value"><span class="hidden">2.5;</span>2,5</td></tr>
<tr><td><a href="graafinenkali.LiikkeenlisayksenKuuntelija.html">LiikkeenlisayksenKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/17</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/4</span></div></div></td></tr></table></td><td class="value"><span class="hidden">2.0;</span>2</td></tr>
<tr><td><a href="graafinenkali.LiikkeenpoistonKuuntelija.html">LiikkeenpoistonKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/14</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/2</span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.5;</span>1,5</td></tr>
<tr><td><a href="graafinenkali.TallennuksenKuuntelija.html">TallennuksenKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/19</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/6</span></div></div></td></tr></table></td><td class="value"><span class="hidden">2.0;</span>2</td></tr>
<tr><td><a href="graafinenkali.TanssinNimiKuuntelija.html">TanssinNimiKuuntelija</a></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40">0%</td><td class="percentgraph"><div class="percentgraph"><div class="greenbar" style="width:0px"><span class="text">0/9</span></div></div></td></tr></table></td><td><table cellpadding="0px" cellspacing="0px" class="percentgraph"><tr class="percentgraph"><td align="right" class="percentgraph" width="40"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></td><td class="percentgraph"><div class="percentgraph"><div class="na" style="width:100px"><span class="text"><a class="dfn" href="help.html" onclick="popupwindow('help.html'); return false;">N/A</a></span></div></div></td></tr></table></td><td class="value"><span class="hidden">1.0;</span>1</td></tr>
</tbody>
</table>
<script type="text/javascript">
var classTable = new SortableTable(document.getElementById("classResults"),
["String", "Percentage", "Percentage", "FormattedNumber"]);
classTable.sort(0);
</script>
<div class="footer">Report generated by <a href="http://cobertura.sourceforge.net/" target="_top">Cobertura</a> 2.0.3 on 11.1.2015 2:29.</div>
</body>
</html>
|
Angular-Ionic-Demo-master/AngularIonicPhoneGapApp/www/css/style.css | sam408130/Ionic-Demos | /* Empty. Add your own CSS if you like */
.itemSpacing {
margin-left: 2%;
margin-right: 2%;
}
.loginMsg {
color : red;
}
.inputCross {
float: right;
}
.listTopMargin {
margin-top: 40px;
}
|
src/Viteloge/CoreBundle/Resources/descriptions/83104.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Rians est
une commune située dans le département de Var en Provence-Alpes-Côte d'Azur. Elle comptait 4 194 habitants en 2008.</p>
<p>Le nombre de logements, à Rians, était réparti en 2011 en 292 appartements et 1 939 maisons soit
un marché plutôt équilibré.</p>
<p>À proximité de Rians sont localisées les communes de
<a href="{{VLROOT}}/immobilier/ginasservis_83066/">Ginasservis</a> située à 10 km, 1 382 habitants,
<a href="{{VLROOT}}/immobilier/esparron_83052/">Esparron</a> à 7 km, 223 habitants,
<a href="{{VLROOT}}/immobilier/pourrieres_83097/">Pourrières</a> localisée à 11 km, 4 389 habitants,
<a href="{{VLROOT}}/immobilier/saint-martin_83114/">Saint-Martin</a> située à 10 km, 193 habitants,
<a href="{{VLROOT}}/immobilier/jouques_13048/">Jouques</a> localisée à 10 km, 3 925 habitants,
<a href="{{VLROOT}}/immobilier/artigues_83006/">Artigues</a> localisée à 4 km, 222 habitants,
entre autres. De plus, Rians est située à seulement 26 km de <a href="{{VLROOT}}/immobilier/aix-en-provence_13001/">Aix-en-Provence</a>.</p>
<p>La ville compte quelques équipements sportifs, elle dispose, entre autres, de un bassin de natation, un terrain de tennis et un terrain de sport.</p>
<p>À Rians, le prix moyen à l'achat d'un appartement se situe à 2 005 € du m² en vente. La valeur moyenne d'une maison à l'achat se situe à 2 154 € du m². À la location la valorisation moyenne se situe à 11,6 € du m² par mois.</p>
<p>À Rians le salaire moyen par mois par habitant est situé à approximativement 2 146 € net. C'est au dessus de la moyenne nationale.</p>
</div>
|
data science/machine_learning_for_the_web/chapter_4/movie/25597.html | xianjunzhengbackup/code | <HTML><HEAD>
<TITLE>Review for Hollow Man (2000)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0164052">Hollow Man (2000)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Mark+R.+Leeper">Mark R. Leeper</A></H3><HR WIDTH="40%" SIZE="4">
<PRE> HOLLOW MAN
A film review by Mark R. Leeper</PRE>
<PRE> Capsule: Really disappointing is this films
complete failure of originality and imagination.
Now that filmmakers have visual special effects
sufficient to do an invisible man story on the
screen, they no longer have writers who can
think of intriguing things to do with the idea.
Some incredible special effects cannot save a
pedestrian and overly familiar plot. Rating: 3
(0 to 10), -1 (-4 to +4)</PRE>
<P> If Hollywood's makers of summer films can be said to show any
creativity and imagination--admittedly a difficult point of view to
defend--it is in how they manage to takes such a variety of film
premises and turn them into standard borrowed endings. It is truly
remarkable how many different films build to cliches like the
sympathetic underdogs winning the big game. The other standard
ending, which if you think about it is only a variation on the first
one, is the sympathetic heroes in a confined space facing and
defeating something that wants to kill, perhaps already has, but
cannot itself be killed. We saw it in IT! THE TERROR FROM BEYOND
SPACE, ALIEN, ALIENS, HALLOWEEN, and who knows how many more films.
Of the eight films playing currently at my local multiplex three
have unkillable killer endings. One of them is HOLLOW MAN which
begins as a revisiting of concepts from H. G. Wells's THE INVISIBLE
MAN but in the end is just two people being chased by a perfectly
visible monster and killing him several times only to have him keep
on coming. The once-respectable Paul Verhoeven should have rejected
the script as inferior, but instead let it be just another step in
his decline. Besides its striking lack of originality HOLLOW MAN
wastes some of the most interesting convention of the Invisible Man.</P>
<P> Most invisible man films are all based on H. G. Wells's novel
THE INVISIBLE MAN. That novel is itself a reframing of the story of
Gyges, which today we remember best through its reference in Plato's
REPUBLIC. Gyges, a shepherd who comes into possession of a ring of
invisibility, uses it unscrupulously to make himself king. In the
dialog of THE REPUBLIC Glaucon suggests that god-like power, like
that of Gyges, of necessity corrupts. These stories look at the
power an invisible man has and frequently examine whether that power
really does necessarily corrupt the person who has that power. One
important aspect is that he can be virtually anywhere unseen, using
his power in clever ways. But since this film places the invisible
man in an inescapable deep lab complex (with the exception of one
short sequence) most of the imaginative power of the concept is
thrown away. There is just too much haste to get to the secure
territory of cliches and ultra-familiar plotting.</P>
<P> Sebastian Caine (Kevin Bacon) heads up a super secret
government project. With his ingenious process he already can make
animals invisible. Ironically his most difficult problem is making
them visible again. (Perhaps this is also an idea borrowed from
Wells. As the novel begins Griffin has already made himself
invisible and struggles to find the way back to visibility. The old
Universal Invisible Man series stretches this quest over multiple
films.) For Sebastian's discoveries he expects to win a Nobel
Prize. (Why does every cinematic mad scientist who can grow a
three-foot-long blood-sucking garden slug think that is what they
give Nobel prizes for?) The military is ready to cut his funding
for lack of usable results so Sebastian decides to experiment on
himself. He already is a bit of a jerk, will the power that
invisibility gives him exaggerate his character flaws into madness?
Was this plot built from a kit or what?</P>
<P> This is a film that could have risen to the level of mediocre,
but blows it in the cliched final reel. Sure, there is a tradition
in films that the hero and the villain survive hazards and
situations that really should have killed them. The final sequences
of this film go beyond any reasonable suspension of disbelief. The
writers confuse the concepts of "invisible" and "invincible."
Sebastian goes through a gauntlet that should have reduced him to
the consistency of tapioca pudding, made even worse by him running
around without the protection of clothing, but he keeps on fighting.
The heroes themselves survive treatment only a little gentler.</P>
<P> The script by Andrew W. Marlowe seems oblivious to the most
basic technical issues about invisibility. H. G. Wells gave more
thought to the technical questions of invisibility than went into
this film. This film uses Star-Trek-style double-talk physics to
explain the invisibility in the first place, something like a
"quantum phase shift," but then apparently is going to use chemical
and biological means to bring the guy back. At one point Sebastian
eats a Twinkie and it is immediately invisible. Wells knew better.
Sebastian is totally invisible and yet his eyes are apparently still
focusing. Again Wells knew better. Even the opportunities for
prurient voyeurism, while absent from Wells, have been handled
considerably better elsewhere. Jerry Goldsmith probably saw little
effort on the part of the filmmakers to exercise much imagination
and followed suit with what is one of his least memorable scores.</P>
<P> Not to be totally negative and to give the film its due, the
special effects are uniformly dazzling. The original series used a
few simple effects that were not entirely convincing. Most notably
I believe they filmed in a black room an actor with clothing over a
black velvet suit that totally covered him. Only the clothing shows
and it gives them an image they could lay on top of another shot.
The computer has changed a very great deal. The visuals here are
flawless and delightful. Also as is ironically if frequently the
case, even a very bad horror film can have a very good first scene.
(MARS ATTACKS is a prime example. Most of what is good in that film
is in the pre-credit sequence.) The horror potential of concept of
an invisible predator has never been captured on film so well as in
the first scene of HOLLOW MAN. That makes it all the more
disappointing how the filmmakers so badly blew the rest of the film.</P>
<P> For the same budget this film could have brought the invisible
man film into the modern age. Instead if will hopefully quickly
sink from sight. I rate this a 3 on the 0 to 10 scale and a -1 on
the -4 to +4 scale.</P>
<PRE> Mark R. Leeper
<A HREF="mailto:mleeper@lucent.com">mleeper@lucent.com</A>
Copyright 2000 Mark R. Leeper</PRE>
<HR><P CLASS=flush><SMALL>The review above was posted to the
<A HREF="news:rec.arts.movies.reviews">rec.arts.movies.reviews</A> newsgroup (<A HREF="news:de.rec.film.kritiken">de.rec.film.kritiken</A> for German reviews).<BR>
The Internet Movie Database accepts no responsibility for the contents of the
review and has no editorial control. Unless stated otherwise, the copyright
belongs to the author.<BR>
Please direct comments/criticisms of the review to relevant newsgroups.<BR>
Broken URLs inthe reviews are the responsibility of the author.<BR>
The formatting of the review is likely to differ from the original due
to ASCII to HTML conversion.
</SMALL></P>
<P ALIGN=CENTER>Related links: <A HREF="/Reviews/">index of all rec.arts.movies.reviews reviews</A></P>
</P></BODY></HTML>
|
data science/machine_learning_for_the_web/chapter_4/movie/8094.html | xianjunzhengbackup/code | <HTML><HEAD>
<TITLE>Review for Silence of the Lambs, The (1991)</TITLE>
<LINK REL="STYLESHEET" TYPE="text/css" HREF="/ramr.css">
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1 ALIGN="CENTER" CLASS="title"><A HREF="/Title?0102926">Silence of the Lambs, The (1991)</A></H1><H3 ALIGN=CENTER>reviewed by<BR><A HREF="/ReviewsBy?Chad+Polenz">Chad Polenz</A></H3><HR WIDTH="40%" SIZE="4">
<P>The Silence Of The Lambs
Chad'z rating: **** (out of 4 = excellent)
1991, R, 118 minutes [1 hour, 58 minutes]
[mystery/thriller]
Starring: Jodie Foster (Clarice Starling), Anthony Hopkins (Dr. Hannibal
Lector), Scott Glenn (Jack Crawford), written by Ted Tally, produced by
Edward Saxon, Kenneth Utt, Ron Bozman, directed by Jonathan Demme, based on
the novel by Thomas Harris.</P>
<P>There have been a lot of mystery movies over the years, but none so grim and
calculated as "The Silence Of The Lambs." This is one of the most suspenseful
films I've ever seen, as we are placed into the investigators' shoes and try
to put the pieces together. The film also adds a strange, but powerful
element of taking us inside the mind of one psychopath to study another. The
fact such difficult storytelling devices are used as well as they are here is
a sign of genius.</P>
<P>Jodie Foster stars as Clarice Starling, a potential FBI agent who is about
to complete her training. Because of her impressive records she is called in
to help out on the case of serial killer known as "Buffalo Bill." Her
superior, Jack Crawford (Glenn), informs her of the facts surrounding the
case, and right from the get-go it seems like a scary and dangerous project.
But the film does not have a straight "thriller" mood to it, its hook is its
off-camera graphicness. Just hearing what Buffalo Bill has done establishes
everything. Not only does this create a great desire for justice, but it also
makes for a subtle Gothic mood.</P>
<P>Starling is sent to interview the infamous Dr. Hannibal Lector (Hopkins), a
psychiatrist who has a fetish for cannibalism. The way Hopkins portrays him
is very frightening because it is so believable. The atmosphere itself adds
to the drama, as we are just as afraid of him as Clarice is. Lector analyzes
the case and sends Clarice away with hints and clues. He is purposely making
her do more work than she has to do just to experiment with her mind.</P>
<P>Most of the film involves detailed detective work by Starling and the FBI.
We do meet the killer, but he does not become a vital character because he
isn't nearly as cunning or vile as Lector. It's interesting to watch Starling
track down clues and sources, and most of those on slim leads and hunches. </P>
<P>Starling thinks Lector knows who Buffalo Bill is, but in order to get him to
talk she must tell him about her own life. Lector gets inside her mind by
analyzing all the details of her life. If anything, the film works as a great
character study and terrific interaction between these two actors and their
characters.</P>
<P>Although the film had been a great drama and mystery, the actual ending tops
it off and and defines the genre of "thriller." Of course justice is
ultimately served in the end, but perhaps something even worse than Buffalo
Bill happens...</P>
<P>"The Silence Of The Lambs" works so well because of its mood factor alone.
Films that can be this emotional, disturbing, and exciting by using typical
mainstream mystery elements don't come along everyday. </P>
<P>Please visit Chad'z Movie Page @ <A HREF="http://members.aol.com/ChadPolenz">http://members.aol.com/ChadPolenz</A>
E-mail: <A HREF="mailto:ChadPolenz@aol.com">ChadPolenz@aol.com</A>
(C)1997 Chad Polenz</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>
|
docs/theme/_layouts/homepage.html | bih/spotify-ruby | ---
layout: compress
---
<!DOCTYPE html>
<html>
<head>
{% include site-head.html %}
</head>
<body class="{{ site.doks.color_theme }}">
<div class="hero-subheader{% if page.grid_navigation %} hero-subheader--before-out{% endif %}">
<div class="container">
<div class="row">
<div class="col-md-7">
<div class="align-container" data-mh>
<div class="align-inner">
{% if page.title %}
<h1 class="hero-subheader__title">{{ page.title }}</h1>
{% endif %}
{% if page.description %}
<p class="hero-subheader__desc">{{ page.description }}</p>
{% endif %}
{% for button in page.buttons %}
{% if button.external_url == true %}
<a href="{{ button.url }}" class="btn btn--dark btn--rounded btn--w-icon">
{% if button.icon %}<i class="icon icon--{{ button.icon }}"></i>{% endif %}
{{ button.content }}
</a>
{% else %}
<a href="{% if jekyll.environment == 'production' %}{{ site.doks.baseurl }}{% endif %}{{ button.url }}" class="btn btn--dark btn--rounded btn--w-icon">
{% if button.icon %}<i class="icon icon--{{ button.icon }}"></i>{% endif %}
{{ button.content }}
</a>
{% endif %}
{% endfor %}
</div><!-- /.align-inner -->
</div><!-- /.align-container -->
</div><!-- /.col -->
{% if page.author.title and page.author.description and page.author.title_url %}
<div class="col-md-4 col-md-offset-1 hidden-xs hidden-sm">
<div class="align-container" data-mh>
<div class="align-inner">
<div class="hero-subheader__author">
<p class="hero-subheader__author-title">
{% if page.author.external_url == true %}
<a href="{{ page.author.title_url }}" class="btn btn--read-more">
{{ page.author.title }}
<i class="icon icon--arrow-right"></i>
</a>
{% else %}
<a href="{% if jekyll.environment == 'production' %}{{ site.doks.baseurl }}{% endif %}{{ page.author.title_url }}" class="btn btn--read-more">
{{ page.author.title }}
<i class="icon icon--arrow-right"></i>
</a>
{% endif %}
</p><!-- /.hero-subheader__author-title -->
<p>{{ page.author.description }}</p>
</div><!-- /.hero-subheader__author -->
</div><!-- /.align-inner -->
</div><!-- /.align-container -->
</div><!-- /.col -->
{% endif %}
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.hero-subheader -->
{% if page.grid_navigation %}
<div class="section section--darker-theme-color-bg">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="nav-grid nav-grid--out">
<div class="row">
{% for item in page.grid_navigation %}
<div class="col-sm-6 col-lg-4">
<a href="{% if jekyll.environment == 'production' and item.external_url != true %}{{ site.doks.baseurl }}{% endif %}{{ item.url }}" class="nav-grid__item">
<div class="nav-grid__content" data-mh>
<h2 class="nav-grid__title">{{ item.title }}</h2>
<p>{{ item.excerpt }}</p>
</div><!-- /.nav-grid__content -->
<p class="nav-grid__btn">
{{ item.cta }}
<i class="icon icon--arrow-right"></i>
</p>
</a><!-- /.nav-grid__item -->
</div><!-- /.col -->
{% endfor %}
</div><!-- /.row -->
</div><!-- /.nav-grid -->
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.section -->
{% endif %}
{% include site-footer.html %}
</body>
</html>
|
course-cotrain-data/fulltext/course/http:^^www.cs.wisc.edu^~cs640-1^cs640.html | ML-SWAT/Web2KnowledgeBase | <html>
<head>
<title>
UW CS Computer Networking Courses (Professor Landweber)
</title>
</head>
<body>
<h1 align=center>UW CS Computer Networking Courses</h1>
<ul>
<li><a href="#640">CS 640 - Introduction to Computer Networks</a></li>
<li><a href="#740">CS 740 - Advanced Computer Networks</a></li>
</ul>
<hr>
<a name="640">
<h2 align=center>Introduction to Computer Networks - CS 640</h2>
<h3>Table of Contents</h3>
<ul>
<li><a href="#Connectivity">International Connectivity Map</a></li>
<li><a href="#Networking">About UW Networking Courses Offered</a></li>
<li><a href="#Information">Course Information</a></li>
<li><a href="#Instructor">Instructor</a></li>
<li><a href="#TAs">Teaching Assistants</a></li>
<li><a href="#Syllabus">Course Syllabus</a></li>
<li><a href="#Mail_Archive">Mail Archives</a></li>
<li><a href="#Assignments">Assignments</a></li>
<li><a href="#References">Programming References</a></li>
<li><a href="#Readings">Selected Readings</a></li>
</ul>
<hr>
<a name="Connectivity">
<a href="ftp://ftp.cs.wisc.edu/connectivity_table/Connectivity_Map.color.ps">
<img src="http://www.cs.wisc.edu/~cs640-1/gif/Connectivity.June96.gif" alt="Internet Connectivity Map">
</a>
<p>
<i>Click
<a href="ftp://ftp.cs.wisc.edu/connectivity_table/Connectivity_Table.text">here</a>
to get the latest text version.
<br>
</i>
</p>
<hr>
<a name="Networking">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/connect.gif" alt="-- "><a name="course" href="http://www.cs.wisc.edu/~cs640-1/course-toc.html"> Networking
courses at UW-Madison</a></h3>
<hr>
<a name="Information">
<h2>Course Information</h2>
<h3>Lecture</h3>
<pre>
Time: 8:00 - 9:15 MWF
Place: 1221 Comp Sci & Stat
Class email: cs640-1list
</pre>
<a name="Instructor">
<h3>Instructor: <a href="http://www.cs.wisc.edu/~lhl/lhl.html">Lawrence H. Landweber</a></h3>
<pre>
Office: 7397 Comp Sci & Stat
Phone: 263-7442
Email: lhl@cs.wisc.edu
Office hours: M,W,F 9:30-11:00
</pre>
<a name="TAs">
<h3>Teaching Assistant: <a href="http://www.cs.wisc.edu/~nsp">Srinivasa Narayanan</a></h3>
<pre>
Office: 3360
Phone: 262-9275
Email: nsp@cs.wisc.edu
Office hours:
Monday 2:00p - 4:00p
Wednesday 3:00p - 5:00p
If these times are not convenient, feel free to email me at
nsp@cs.wisc.edu for an appointment.
</pre>
<h3>Teaching Assistant: <a href="http://www.cs.wisc.edu/~ben">Ben Teitelbaum</a></h3>
<pre>
Office: 3310
Phone: NA
Email: ben@cs.wisc.edu
Office hours:
Tuesday 1:00p - 3:00p
Thursday 2:00p - 4:00p
If these times are not convenient, feel free to email me at
ben@cs.wisc.edu for an appointment.
</pre>
<hr>
<a name="Syllabus">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/chklist.gif" alt="-- "><a href="http://www.cs.wisc.edu/~cs640-1/syllabus.html"> Fall 1996 Course Syllabus</a></h3>
<a name="Mail_Archive">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/smstats.gif" alt="-- "><a href="http://www.cs.wisc.edu/~cs640-1/mail-archive.html"> Fall 1996 Mail Archive (moderated)</a></h3>
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/hypermail.gif" alt="-- "><a href="http://www.cs.wisc.edu/~lists/classes/cs640-1list"> CSL Mail Archive (complete)</a></h3>
<a name="Assignments">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/bug.gif" alt="-- "> Assignments - Fall 1996 </h3>
<ol>
<li><a href="http://www.cs.wisc.edu/~cs640-1/fall96/program1/toc.html">Programming Assignment 1</a> (<a href="http://www.cs.wisc.edu/~cs640-1/fall96/program1/errors.html">Error/Warning Codes</a>)
<li>Class Project - <i>Implementation of ATM Network Layer and Reliable ATM Adaptation Layer</i>
<ul>
<li>Handout <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/project.ps">(PostScript)</a>
<li>Project overview slides <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/talk.ps"> (PostScript)</a> <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/talk.ppt"> (Powerpoint)</a>
<li>"Software Engineering 101" slides <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/SW_ENG.ps"> (PostScript)</a> <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/sw_eng.ppt"> (Powerpoint)</a>
<li> Design Document Evaluation Form <a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/criteria.ps">(PostScript)</a>
<!-- <li><a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/project.html">HTML Version (w/o pictures)</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/projsl.ps">Project Slides</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/fall96/project/criteria.ps">Document Grading Criteria</a>
-->
</ul>
</li>
</ol>
<hr>
<a name="Grading">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/chklist.gif" alt="-- "> Grading</a></h3>
<pre>
Midterm Exam: 25%
Final Exam: 25%
Assignment 1: 5%
Term Project: 45%
</pre>
<a name="Prior Exams">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/bug.gif" alt="-- "> Prior Midterms</h3>
<ol>
<li><a href="http://www.cs.wisc.edu/~cs640-1/f92-midterm">Fall '92 Midterm</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/f94-midterm">Fall '94 Midterm</a>
</li>
</ol>
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/book.gif" alt="-- ">Optional Reference Book for Project</h3>
<pre>
UNIX Network Programming
Stevens, W. Richard
Prentice Hall
ISBN 0-13-949876-1
</pre>
<a name="References">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/source.gif" alt="-- "> Programming References</h3>
<ul plain>
<li><a href="http://www.cs.wisc.edu/~cs640-1/sock.ps">BSD Socket Interface</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/olsen.sock.ps">Socket Interface Lecture</a>
<!--li><!--a href="olsen.proj.ps"><!--Project Lecture #1></a>
<!--li><!--a href="olsen.proj2.ps"><!--Project Lecture #2></a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/garb.html">The Garbler Package</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/book.html">Annotated Bibliography</a>
</ul>
<a name="Readings">
<h3><img src="http://www.cs.wisc.edu/~cs640-1/gif/book.gif" alt="-- ">Readings (Partial Set)</h3>
<ul plain>
<li><a href="http://www.cs.wisc.edu/~cs640-1/TCP-793">TCP RFC-793</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/IP-791">IP RFC-791</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/ICMP-792">ICMP RFC-792</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/OSPF-1583">OSPF RFC-1583</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/BGP4-1771">BGP4 RFC-1771</a>
<li><a href="http://www.cs.wisc.edu/~cs640-1/IPNG-1752">IPNG RFC-1752</a>
</ul>
<!--h3><!--img src="gif/bug.gif" alt="-- "><!-- Assignments - Fall 1994></h3>
<!--ol>
<!--li><!--a name="f94" href="f94-toc.html"><!--Programming Assignment 1></a>
<!--li><!--a href="project.ps"><!--Course Project></a>
</ol>
<hr>
<a name="740">
<h2 align=center>Advanced Computer Networks - CS 740</h2>
<h3><a href= "http://www.cs.wisc.edu/~cs640-1/s96-schedule.html">Lecture Schedule Spring 1996</a></h3>
<h3><a href= "http://www.cs.wisc.edu/~cs640-1/forms">Review Form</a></h3>
<hr>
</body>
</html>
|
public/Windows 10 x64 (19041.388)/_XSDT.html | epikcraw/ggool | <html><body>
<h4>Windows 10 x64 (19041.388)</h4><br>
<h2>_XSDT</h2>
<font face="arial"> +0x000 Header : <a href="./_DESCRIPTION_HEADER.html">_DESCRIPTION_HEADER</a><br>
+0x024 Tables : [1] <a href="./_LARGE_INTEGER.html">_LARGE_INTEGER</a><br>
</font></body></html> |
app/views/projects/digital_land_charges/beta/sprint6v3/lc_stored_list.html | LandRegistry/lc-prototype | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<title>Digital Land Charges</title>
<head>
<link rel="stylesheet" href="/public/stylesheets/styles.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:300,400,700' rel='stylesheet' type='text/css'>
</head>
<body>
{{>includes/header}}
<div id="content">
<div id="breadcrumb">
<ol>
<li><a class="links" href="home">Home</a></li>
<li><span>Land Charges</span></li>
</ol>
</div>
<div class="spacer_5"></div>
<div class="column-quarter" style="height: 100%">
<ul id="side-nav">
<li><a href="home">Home</a></li>
<li><a href="bankruptcy">Bankruptcy Applications</a></li>
<li><a class="active" href="land_charge">Land Charge Applications</a></li>
<li><a href="search">Searches</a></li>
<li><a href="cancellation">Cancellations</a></li>
<li><a href="uc">Office Copies</a></li>
<li><a href="enquiries">Enquiries</a></li>
<li><a href="int_func">Internal Functions</a></li>
<li><a href="uc">General Information</a></li>
</ul>
</div>
<div class="column-two-thirds">
<h1 class="title_36">Land Charges</h1>
<div class="spacer_10"></div>
<div class="column-quarter">
<div id="subservice_box_3">
<a class="no_link_style" href="lc_reg_list">
<div class="spacer_15"></div>
<p class="text_16_bold">Registrations</p>
<div class="spacer_15"></div>
<div class="indicator"><p class="indicator_middle_2">13</p></div>
</a>
</div>
</div>
<div class="column-quarter">
<div id="subservice_box_3">
<a class="no_link_style" href="lc_pn_list">
<div class="spacer_15"></div>
<p class="text_16_bold">Priority notices</p>
<div class="spacer_15"></div>
<div class="indicator"><p class="indicator_middle">6</p></div>
</a>
</div>
</div>
<div class="column-quarter">
<div id="subservice_box_3">
<a class="no_link_style" href="lc_rc_list">
<div class="spacer_15"></div>
<p class="text_16_bold">Rectifications</p>
<div class="spacer_15"></div>
<div class="indicator"><p class="indicator_middle">1</p></div>
</a>
</div>
</div>
<div class="column-quarter">
<div id="subservice_box_3">
<a class="no_link_style" href="lc_rn_list">
<div class="spacer_15"></div>
<p class="text_16_bold">Renewals</p>
<div class="spacer_15"></div>
<div class="indicator"><p class="indicator_middle">3</p></div>
</a>
</div>
</div>
<div class="column-quarter">
<div class="active_subservice_box_3">
<a class="no_link_style" href="lc_stored_list">
<div class="spacer_15"></div>
<p class="text_16_bold">Stored</p>
<div class="spacer_15"></div>
<div class="indicator"><p class="indicator_middle">4</p></div>
</a>
</div>
</div>
<div class="spacer_30"></div>
</div>
<div class="column-two-thirds">
<h2 class="title_24">Stored applications</h2>
<table style="width:100%">
<tr>
<th class="table_text_black">Date and time received <a href="#"><img src="../../../../../public/images/arrow_down_2.png"></a></th>
<th class="table_text_black">Form type <a href="#"><img src="../../../../../public/images/arrow_down_2.png"></a></th>
<th class="table_text_black">Stored by <a href="#"><img src="../../../../../public/images/arrow_down_2.png"></a></th>
<th class="table_text_black">Reason</th>
</tr>
<tr>
<td width="29%" valign="top">22 October 2015 9:12</td>
<td width="16%" valign="top">K1</td>
<td width="15%" valign="top">LC123AB</td>
<td>Need to confirm something with the court; awaiting a call back</td>
</tr>
<tr>
<td width="29%" valign="top">22 October 2015 9:23</td>
<td width="16%" valign="top">K6</td>
<td width="15%" valign="top">LC753WE</td>
<td>Form is missing information</td>
</tr>
</table>
</div>
</div>
{{>includes/footer}}
</body>
</html>
|
assets/css/style.css | bhaskarsaraogi/insta-tag-explorer | * { margin: 0; padding: 0; outline: none; }
html { height: 105%; }
body { font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif; }
small { display: block; color: #555; padding: 10px 0px; }
#container { margin: 0 auto; width: 960px; }
#form { width: 710px; margin: 0 auto; margin-top: 25px; margin-bottom: 35px; }
#form #search {
padding: 10px 11px;
padding-left: 60px;
color: #999;
width: 600px;
border: 1px solid #ddd;
font-size: 22px;
/* icon source: http://modmyi.com/forums/iphone-4-new-skins-themes-launches/723225-buuf-iphone-4-a-398.html#post6275581 */
transition: box-shadow 0.15s linear 0s, color 0.15s linear 0s;
-webkit-transition: box-shadow 0.25s linear 0s, color 0.15s linear 0s;
-moz-transition: box-shadow 0.25s linear 0s, color 0.15s linear 0s;
-o-transition: box-shadow 0.25s linear 0s, color 0.15s linear 0s;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
font-family: Optima, Segoe, "Segoe UI", Candara, Calibri, Arial, sans-serif;
}
#form #search:focus {
color: #767676;
border-color: #c5d7ee;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(170, 200, 240, 0.9);
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(170, 200, 240, 0.9);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) inset, 0 0 8px rgba(170, 200, 240, 0.9);
}
#form #search.loading {
background: url('../img/loader.gif') 10px 7px no-repeat;
}
#photos { margin-left: 80px; text-align: center; }
#photos .p { float: left; width: 170px; display: inline-block; position: relative; margin-right: 20px; margin-bottom: 12px; }
#photos .p img { border-radius: 4px; -webkit-border-radius: 4px; -moz-border-radius: 4px; }
#photos .p .fullsize { width: 48px; height: 48px; display: block; margin-left: 70px; margin-bottom: 5px; } |
src/index.html | embengineering/kyfl-rock | <!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>Rock</title>
</head>
<body>
<div id="app"></div>
<script src="vendors.js"></script>
<script src="app.js"></script>
</body>
</html>
|
lib/assets/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/jquery.form.js.html | user-tony/photon-rails | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login Page - Photon Admin Panel Theme</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<link rel="shortcut icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/favicon.ico"/>
<link rel="apple-touch-icon" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/iosicon.png"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-min.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-min-part2.css?v1.1" media="all"/>
<link rel="stylesheet" href="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/css/css_compiled/photon-responsive-min.css?v1.1" media="all"/>
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie-only-min.css?v1.1" />
<![endif]-->
<!--[if lt IE 9]>
<link rel="stylesheet" type="text/css" href="css/css_compiled/ie8-only-min.css?v1.1" />
<script type="text/javascript" src="js/plugins/excanvas.js"></script>
<script type="text/javascript" src="js/plugins/html5shiv.js"></script>
<script type="text/javascript" src="js/plugins/respond.min.js"></script>
<script type="text/javascript" src="js/plugins/fixFontIcons.js"></script>
<![endif]-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/bootstrap/bootstrap.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/modernizr.custom.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.pnotify.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/less-1.3.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/xbreadcrumbs.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.maskedinput-1.3.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.autotab-1.1b.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/charCount.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.textareaCounter.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/elrte.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/elrte.en.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/select2.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery-picklist.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.validate.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/additional-methods.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.form.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.metadata.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mockjax.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.uniform.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.tagsinput.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.rating.pack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/farbtastic.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.timeentry.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.jstree.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/dataTables.bootstrap.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mousewheel.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.mCustomScrollbar.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.stack.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.pie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.flot.resize.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/raphael.2.1.0.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/justgage.1.0.1.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.clock.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.countdown.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.jqtweet.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/jquery.cookie.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/bootstrap-fileupload.min.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/prettify/prettify.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/bootstrapSwitch.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/plugins/mfupload.js"></script>
<script type="text/javascript" src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/js/common.js"></script>
</head>
<body class="body-login">
<div class="nav-fixed-topright" style="visibility: hidden">
<ul class="nav nav-user-menu">
<li class="user-sub-menu-container">
<a href="javascript:;">
<i class="user-icon"></i><span class="nav-user-selection">Theme Options</span><i class="icon-menu-arrow"></i>
</a>
<ul class="nav user-sub-menu">
<li class="light">
<a href="javascript:;">
<i class='icon-photon stop'></i>Light Version
</a>
</li>
<li class="dark">
<a href="javascript:;">
<i class='icon-photon stop'></i>Dark Version
</a>
</li>
</ul>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon mail"></i>
</a>
</li>
<li>
<a href="javascript:;">
<i class="icon-photon comment_alt2_stroke"></i>
<div class="notification-count">12</div>
</a>
</li>
</ul>
</div>
<script>
$(function(){
setTimeout(function(){
$('.nav-fixed-topright').removeAttr('style');
}, 300);
$(window).scroll(function(){
if($('.breadcrumb-container').length){
var scrollState = $(window).scrollTop();
if (scrollState > 0) $('.nav-fixed-topright').addClass('nav-released');
else $('.nav-fixed-topright').removeClass('nav-released')
}
});
$('.user-sub-menu-container').on('click', function(){
$(this).toggleClass('active-user-menu');
});
$('.user-sub-menu .light').on('click', function(){
if ($('body').is('.light-version')) return;
$('body').addClass('light-version');
setTimeout(function() {
$.cookie('themeColor', 'light', {
expires: 7,
path: '/'
});
}, 500);
});
$('.user-sub-menu .dark').on('click', function(){
if ($('body').is('.light-version')) {
$('body').removeClass('light-version');
$.cookie('themeColor', 'dark', {
expires: 7,
path: '/'
});
}
});
});
</script>
<div class="container-login">
<div class="form-centering-wrapper">
<div class="form-window-login">
<div class="form-window-login-logo">
<div class="login-logo">
<img src="http://photonui.orangehilldev.com/images/photon/plugins/elrte/js/bootstrap/js/plugins/prettify/js/js/plugins/images/photon/login-logo@2x.png" alt="Photon UI"/>
</div>
<h2 class="login-title">Welcome to Photon UI!</h2>
<div class="login-member">Not a Member? <a href="jquery.form.js.html#">Sign Up »</a>
<a href="jquery.form.js.html#" class="btn btn-facebook"><i class="icon-fb"></i>Login with Facebook<i class="icon-fb-arrow"></i></a>
</div>
<div class="login-or">Or</div>
<div class="login-input-area">
<form method="POST" action="dashboard.php">
<span class="help-block">Login With Your Photon Account</span>
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<button type="submit" class="btn btn-large btn-success btn-login">Login</button>
</form>
<a href="jquery.form.js.html#" class="forgot-pass">Forgot Your Password?</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-1936460-27']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>
|
src/main/webapp/resources/engebras/styles/layout.css | adalberto-java/samtWebAlpha | /* TOPBAR */
.aw-topbar {
position: fixed;
top: 0;
right: 0;
left: 0;
min-height: 50px;
z-index: 9999;
background-color: #1e94d2;
}
.aw-topbar > img {
margin-top: 10px;
margin-left: 5px;
}
/* SIDEBAR */
.aw-sidebar {
position: fixed;
top: 60px;
bottom: 0;
left: 0;
width: 220px;
margin-left: -221px;
z-index: 9998;
transition: margin-left 0.5s;
overflow-y: auto;
background-color: #f6f6f6;
border-right: 1px solid #eaeaea;
}
.aw-sidebar.is-toggled {
margin-left: 0px;
}
@media (min-width: 960px) {
.aw-sidebar {
margin-left: 0px;
}
.aw-sidebar.is-toggled {
margin-left: -221px;
}
}
/* CONTENT */
.aw-content {
padding: 0 15px;
margin-top: 60px;
transition: margin-left 0.5s;
}
@media (min-width: 960px) {
.aw-content {
margin-left: 220px;
}
.aw-content.is-toggled {
margin-left: 0;
}
}
/* FOOTER */
.aw-footer {
padding: 0 15px;
margin-top: 20px;
transition: margin-left 0.5s;
}
@media (min-width: 960px) {
.aw-footer {
margin-left: 220px;
}
.aw-footer.is-toggled {
margin-left: 0;
}
}
.colunaTopo {
vertical-align: top;
} |
ocr_extracted/W28807_text/page18.html | datamade/elpc_bakken |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W28807_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page17.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 1540px; margin-top: 82px;">
<p class="styleSans12000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 137px; margin-top: 192px;">
<p class="styleSans697.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">HORIZONTAL SECTION PLAT CONTINENTAL RESOURCES INC. SECTION 14, T152N, RIOOW <br/>MCKENZIE COUNTY, NORTH DAKOTA <br/>COMPUTED (IN WATER) <br/> <br/>_ Imam 04‘ <br/>1.37.3.5 <br/> <br/> <br/> <br/>ALL CORNERS SHOWN ON THIS PLAT WERE FOUND IN THE FIELD DISTANCES TO ALL OTHERS ARE CALCULATED. ALL BEARINGS SHOWN ARE ASSUMED. <br/> ORRECTL)’ REPRESENTS R UNDER MY RESPONSIBLE 5190.57 iWC'l/VEJ'RI/VC’ [IVE A D CORRECT r0 THE BEST OF BOX 357 <br/>I BOWMAN, ND. 58625 <br/>PHONE: 70 I —52.3—3.34O FAX: 701—525—5245 <br/>PROJECT NO. 13-10 <br/> </p>
</div>
</body>
</html>
|
utils/pmd-bin-5.2.2/docs/pmd-vm/testapidocs/help-doc.html | byronka/xenos | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_65) on Wed Dec 03 20:29:44 CET 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>API Help (PMD Velocity 5.2.2 Test API)</title>
<meta name="date" content="2014-12-03">
<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="API Help (PMD Velocity 5.2.2 Test 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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li class="navBarCell1Rev">Help</li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
<li><a href="help-doc.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 class="title">How This API Document Is Organized</h1>
<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<h2>Overview</h2>
<p>The <a href="overview-summary.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</p>
</li>
<li class="blockList">
<h2>Package</h2>
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:</p>
<ul>
<li>Interfaces (italic)</li>
<li>Classes</li>
<li>Enums</li>
<li>Exceptions</li>
<li>Errors</li>
<li>Annotation Types</li>
</ul>
</li>
<li class="blockList">
<h2>Class/Interface</h2>
<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p>
<ul>
<li>Class inheritance diagram</li>
<li>Direct Subclasses</li>
<li>All Known Subinterfaces</li>
<li>All Known Implementing Classes</li>
<li>Class/interface declaration</li>
<li>Class/interface description</li>
</ul>
<ul>
<li>Nested Class Summary</li>
<li>Field Summary</li>
<li>Constructor Summary</li>
<li>Method Summary</li>
</ul>
<ul>
<li>Field Detail</li>
<li>Constructor Detail</li>
<li>Method Detail</li>
</ul>
<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p>
</li>
<li class="blockList">
<h2>Annotation Type</h2>
<p>Each annotation type has its own separate page with the following sections:</p>
<ul>
<li>Annotation Type declaration</li>
<li>Annotation Type description</li>
<li>Required Element Summary</li>
<li>Optional Element Summary</li>
<li>Element Detail</li>
</ul>
</li>
<li class="blockList">
<h2>Enum</h2>
<p>Each enum has its own separate page with the following sections:</p>
<ul>
<li>Enum declaration</li>
<li>Enum description</li>
<li>Enum Constant Summary</li>
<li>Enum Constant Detail</li>
</ul>
</li>
<li class="blockList">
<h2>Use</h2>
<p>Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</p>
</li>
<li class="blockList">
<h2>Tree (Class Hierarchy)</h2>
<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.</p>
<ul>
<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li>
<li>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</li>
</ul>
</li>
<li class="blockList">
<h2>Deprecated API</h2>
<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p>
</li>
<li class="blockList">
<h2>Index</h2>
<p>The <a href="index-all.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p>
</li>
<li class="blockList">
<h2>Prev/Next</h2>
<p>These links take you to the next or previous class, interface, package, or related page.</p>
</li>
<li class="blockList">
<h2>Frames/No Frames</h2>
<p>These links show and hide the HTML frames. All pages are available with or without frames.</p>
</li>
<li class="blockList">
<h2>All Classes</h2>
<p>The <a href="allclasses-noframe.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p>
</li>
<li class="blockList">
<h2>Serialized Form</h2>
<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p>
</li>
<li class="blockList">
<h2>Constant Field Values</h2>
<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p>
</li>
</ul>
<em>This help file applies to API documentation generated using the standard doclet.</em></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>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="index-all.html">Index</a></li>
<li class="navBarCell1Rev">Help</li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li>
<li><a href="help-doc.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 © 2002–2014 <a href="http://pmd.sourceforge.net/">InfoEther</a>. All rights reserved.</small></p>
</body>
</html>
|
skin/ui-nestable-list.html | ufowiner/ci303 | <!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="UTF-8" />
<title>UI Nestable | Nadhif - Responsive Admin Template</title>
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Import google fonts -->
<link href="http://fonts.useso.com/css?family=Open+Sans:300,400,600,700,800|Shadows+Into+Light" rel="stylesheet" type="text/css" />
<!-- Favicon and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="assets/ico/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="assets/ico/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="assets/ico/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/ico/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="assets/ico/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="assets/ico/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="assets/ico/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="assets/ico/apple-touch-icon-152x152.png" />
<!-- start: CSS file-->
<!-- Vendor CSS-->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/skycons/css/skycons.css" rel="stylesheet" />
<link href="assets/vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<!-- Plugins CSS-->
<link href="assets/plugins/bootkit/css/bootkit.css" rel="stylesheet" />
<link href="assets/plugins/fullcalendar/css/fullcalendar.css" rel="stylesheet" />
<link href="assets/plugins/jquery-ui/css/jquery-ui-1.10.4.min.css" rel="stylesheet" />
<!-- Theme CSS -->
<link href="assets/css/jquery.mmenu.css" rel="stylesheet" />
<!-- Page CSS -->
<link href="assets/css/style.css" rel="stylesheet" />
<link href="assets/css/add-ons.min.css" rel="stylesheet" />
<!-- end: CSS file-->
<!-- Head Libs -->
<script src="assets/plugins/modernizr/js/modernizr.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>
<!-- Start: Header -->
<div class="navbar" role="navigation">
<div class="container-fluid container-nav">
<!-- Navbar Action -->
<ul class="nav navbar-nav navbar-actions navbar-left">
<li class="visible-md visible-lg"><a href="ui-nestable-list.html#" id="main-menu-toggle"><i class="fa fa-th-large"></i></a></li>
<li class="visible-xs visible-sm"><a href="ui-nestable-list.html#" id="sidebar-menu"><i class="fa fa-navicon"></i></a></li>
</ul>
<!-- Navbar Left -->
<div class="navbar-left">
<!-- Search Form -->
<form class="search navbar-form">
<div class="input-group input-search">
<input type="text" class="form-control" name="q" id="q" placeholder="Search...">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
</div>
<!-- Navbar Right -->
<div class="navbar-right">
<!-- Notifications -->
<ul class="notifications hidden-sm hidden-xs">
<li>
<a href="#" class="dropdown-toggle notification-icon" data-toggle="dropdown">
<i class="fa fa-tasks"></i>
<span class="badge">10</span>
</a>
<ul class="dropdown-menu update-menu" role="menu">
<li><a href="#"><i class="fa fa-database bk-fg-primary"></i> Database </a></li>
<li><a href="#"><i class="fa fa-bar-chart-o bk-fg-primary"></i> Connection </a></li>
<li><a href="#"><i class="fa fa-bell bk-fg-primary"></i> Notification </a></li>
<li><a href="#"><i class="fa fa-envelope bk-fg-primary"></i> Message </a></li>
<li><a href="#"><i class="fa fa-flash bk-fg-primary"></i> Traffic </a></li>
<li><a href="#"><i class="fa fa-credit-card bk-fg-primary"></i> Invoices </a></li>
<li><a href="#"><i class="fa fa-dollar bk-fg-primary"></i> Finances </a></li>
<li><a href="#"><i class="fa fa-thumbs-o-up bk-fg-primary"></i> Orders </a></li>
<li><a href="#"><i class="fa fa-folder bk-fg-primary"></i> Directories </a></li>
<li><a href="#"><i class="fa fa-users bk-fg-primary"></i> Users </a></li>
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle notification-icon" data-toggle="dropdown">
<i class="fa fa-envelope"></i>
<span class="badge">5</span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-menu-header">
<strong>Messages</strong>
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
60%
</div>
</div>
</li>
<li class="avatar">
<a href="page-inbox.html">
<img class="avatar" src="assets/img/avatar1.jpg" alt="" />
<div><div class="point point-primary point-lg"></div>New message</div>
<span><small>1 minute ago</small></span>
</a>
</li>
<li class="avatar">
<a href="page-inbox.html">
<img class="avatar" src="assets/img/avatar2.jpg" alt="" />
<div><div class="point point-primary point-lg"></div>New message</div>
<span><small>3 minute ago</small></span>
</a>
</li>
<li class="avatar">
<a href="page-inbox.html">
<img class="avatar" src="assets/img/avatar3.jpg" alt="" />
<div><div class="point point-primary point-lg"></div>New message</div>
<span><small>4 minute ago</small></span>
</a>
</li>
<li class="avatar">
<a href="page-inbox.html">
<img class="avatar" src="assets/img/avatar4.jpg" alt="" />
<div><div class="point point-primary point-lg"></div>New message</div>
<span><small>30 minute ago</small></span>
</a>
</li>
<li class="avatar">
<a href="page-inbox.html">
<img class="avatar" src="assets/img/avatar5.jpg" alt="" />
<div><div class="point point-primary point-lg"></div>New message</div>
<span><small>1 hours ago</small></span>
</a>
</li>
<li class="dropdown-menu-footer text-center">
<a href="page-inbox.html">View all messages</a>
</li>
</ul>
</li>
<li>
<a href="#" class="dropdown-toggle notification-icon" data-toggle="dropdown">
<i class="fa fa-bell"></i>
<span class="badge">3</span>
</a>
<ul class="dropdown-menu list-group">
<li class="dropdown-menu-header">
<strong>Notifications</strong>
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
60%
</div>
</div>
</li>
<li class="list-item">
<a href="page-inbox.html">
<div class="pull-left">
<i class="fa fa-envelope-o bk-fg-primary"></i>
</div>
<div class="media-body clearfix">
<div>Unread Message</div>
<h6>You have 10 unread message</h6>
</div>
</a>
</li>
<li class="list-item">
<a href="#">
<div class="pull-left">
<i class="fa fa-cogs bk-fg-primary"></i>
</div>
<div class="media-body clearfix">
<div>New Settings</div>
<h6>There are new settings available</h6>
</div>
</a>
</li>
<li class="list-item">
<a href="#">
<div class="pull-left">
<i class="fa fa-fire bk-fg-primary"></i>
</div>
<div class="media-body clearfix">
<div>Update</div>
<h6>There are new updates available</h6>
</div>
</a>
</li>
<li class="list-item-last">
<a href="#">
<h6>Unread notifications</h6>
<span class="badge">15</span>
</a>
</li>
</ul>
</li>
</ul>
<!-- End Notifications -->
<!-- Userbox -->
<div class="userbox">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<div class="profile-info">
<span class="name">John Smith Doe</span>
<span class="role">Developer</span>
</div>
<i class="fa custom-caret"></i>
</a>
<div class="dropdown-menu">
<ul class="list-unstyled">
<li class="dropdown-menu-header bk-bg-white bk-margin-top-15">
<div class="progress progress-xs progress-striped active">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
60%
</div>
</div>
</li>
<li>
<a href="page-profile.html"><i class="fa fa-user"></i> Profile</a>
</li>
<li>
<a href="#"><i class="fa fa-wrench"></i> Settings</a>
</li>
<li>
<a href="page-invoice"><i class="fa fa-usd"></i> Payments</a>
</li>
<li>
<a href="#"><i class="fa fa-file"></i> File</a>
</li>
<li>
<a href="page-login.html"><i class="fa fa-power-off"></i> Logout</a>
</li>
</ul>
</div>
</div>
<!-- End Userbox -->
</div>
<!-- End Navbar Right -->
</div>
</div>
<!-- End: Header -->
<!-- Start: Content -->
<div class="container-fluid content">
<div class="row">
<!-- Sidebar -->
<div class="sidebar">
<div class="sidebar-collapse">
<!-- Sidebar Header Logo-->
<div class="sidebar-header">
<img src="assets/img/logo.png" class="img-responsive" alt="" />
</div>
<!-- Sidebar Menu-->
<div class="sidebar-menu">
<nav id="menu" class="nav-main" role="navigation">
<ul class="nav nav-sidebar">
<div class="panel-body text-center">
<div class="bk-avatar">
<img src="assets/img/avatar.jpg" class="img-circle bk-img-60" alt="" />
</div>
<div class="bk-padding-top-10">
<i class="fa fa-circle text-success"></i> <small>Administrator</small>
</div>
</div>
<div class="divider2"></div>
<li>
<a href="index.html">
<i class="fa fa-laptop" aria-hidden="true"></i><span>Dashboard</span>
</a>
</li>
<li>
<a href="page-inbox.html">
<span class="pull-right label label-primary">165</span>
<i class="fa fa-envelope" aria-hidden="true"></i><span>Mail</span>
</a>
</li>
<li class="nav-parent">
<a>
<i class="fa fa-copy" aria-hidden="true"></i><span>Pages</span>
</a>
<ul class="nav nav-children">
<li><a href="page-activity.html"><span class="text"> Activity</span></a></li>
<li><a href="page-invoice.html"><span class="text"> Invoice</span></a></li>
<li><a href="page-profile.html"><span class="text"> Profile</span></a></li>
<li><a href="page-pricing-tables.html"><span class="text"> Pricing Tables</span></a></li>
<li><a href="page-404.html"><span class="text"> 404</span></a></li>
<li><a href="page-500.html"><span class="text"> 500</span></a></li>
<li><a href="page-lockscreen.html"><span class="text"> LockScreen1</span></a></li>
<li><a href="page-lockscreen2.html"><span class="text"> LockScreen2</span></a></li>
<li><a href="page-login.html"><span class="text"> Login Page</span></a></li>
<li><a href="page-register.html"><span class="text"> Register Page</span></a></li>
</ul>
</li>
<li class="nav-parent">
<a>
<i class="fa fa-list-alt" aria-hidden="true"></i><span>Forms</span>
</a>
<ul class="nav nav-children">
<li><a href="form-elements.html"><span class="text"> Form elements</span></a></li>
<li><a href="form-wizard.html"><span class="text"> Wizard</span></a></li>
<li><a href="form-dropzone.html"><span class="text"> Dropzone Upload</span></a></li>
<li><a href="form-x-editable.html"><span class="text"> X-editable</span></a></li>
<li><a href="form-editors.html"><span class="text"> Editors</span></a></li>
</ul>
</li>
<li>
<a href="table.html">
<i class="fa fa-table" aria-hidden="true"></i><span>Tables</span>
</a>
</li>
<li class="nav-parent">
<a>
<i class="fa fa-random" aria-hidden="true"></i><span>Visual Chart</span>
</a>
<ul class="nav nav-children">
<li><a href="chart-flot.html"><span class="text"> Flot Chart</span></a></li>
<li><a href="chart-xchart.html"><span class="text"> xChart</span></a></li>
<li><a href="chart-other.html"><span class="text"> Other</span></a></li>
</ul>
</li>
<li class="nav-parent nav-expanded active">
<a>
<i class="fa fa-tasks" aria-hidden="true"></i>
<span>UI Elements</span>
</a>
<ul class="nav nav-children">
<li><a href="ui-progress-bars.html"><span class="text"> Progress bars</span></a></li>
<li><a href="ui-nestable-list.html"><span class="text"> Nestable Lists</span></a></li>
<li><a href="ui-elements.html"><span class="text"> Elements</span></a></li>
<li><a href="ui-panels.html"><span class="text"> Panels</span></a></li>
<li><a href="ui-buttons.html"><span class="text"> Buttons</span></a></li>
</ul>
</li>
<li>
<a href="widgets.html">
<i class="fa fa-life-bouy" aria-hidden="true"></i><span>Widgets</span>
</a>
</li>
<li>
<a href="typography.html">
<i class="fa fa-font" aria-hidden="true"></i><span>Typography</span>
</a>
</li>
<li class="nav-parent">
<a>
<i class="fa fa-bolt" aria-hidden="true"></i><span>Icons</span>
</a>
<ul class="nav nav-children">
<li><a href="icons-font-awesome.html"><span class="text"> Font Awesome</span></a></li>
<li><a href="icons-weathericons.html"><span class="text"> Weather Icons</span></a></li>
<li><a href="icons-glyphicons.html"><span class="text"> Glyphicons</span></a></li>
</ul>
</li>
<li>
<a href="gallery.html">
<i class="fa fa-picture-o" aria-hidden="true"></i><span>Gallery</span>
</a>
</li>
<li>
<a href="calendar.html">
<i class="fa fa-calendar" aria-hidden="true"></i><span>Calendar</span>
</a>
</li>
</ul>
</nav>
</div>
<!-- End Sidebar Menu-->
</div>
<!-- Sidebar Footer-->
<div class="sidebar-footer">
<ul class="sidebar-terms">
<li><a href="index.html#">Terms</a></li>
<li><a href="index.html#">Privacy</a></li>
<li><a href="index.html#">Help</a></li>
<li><a href="index.html#">About</a></li>
</ul>
<div class="copyright text-center">
<small>Nadhif <i class="fa fa-coffee"></i> Collect from <a href="http://www.cssmoban.com/" title="网页模板" target="_blank">网页模板</a> - More Templates <a href="http://www.cssmoban.com/" target="_blank" title="模板之家">模板之家</a></small>
</div>
</div>
<!-- End Sidebar Footer-->
</div>
<!-- End Sidebar -->
<!-- Main Page -->
<div class="main ">
<!-- Page Header -->
<div class="page-header">
<div class="pull-left">
<ol class="breadcrumb visible-sm visible-md visible-lg">
<li><a href="index.html"><i class="icon fa fa-home"></i>Home</a></li>
<li><a href="#"><i class="fa fa-briefcase"></i>UI Features</a></li>
<li class="active"><i class="fa fa-outdent"></i>Nestable</li>
</ol>
</div>
<div class="pull-right">
<h2>Nestable</h2>
</div>
</div>
<!-- End Page Header -->
<div class="row">
<div class="col-sm-6">
<div class="panel bk-bg-white">
<div class="panel-heading bk-bg-primary">
<h6><i class="fa fa-outdent red"></i>Nestable List</h6>
<div class="panel-actions">
<a href="ui-nestable-list.html#" class="btn-setting"><i class="fa fa-rotate-right black"></i></a>
<a href="ui-nestable-list.html#" class="btn-minimize"><i class="fa fa-chevron-up black"></i></a>
<a href="ui-nestable-list.html#" class="btn-close"><i class="fa fa-times black"></i></a>
</div>
</div>
<div class="panel-body clearfix">
<div class="dd" id="nestable">
<ol class="dd-list">
<li class="dd-item" data-id="1">
<div class="dd-handle">Item 1<a href="ui-nestable-list.html#" class="icon icon-trash"></a></div>
</li>
<li class="dd-item" data-id="2">
<div class="dd-handle">Item 2<a href="ui-nestable-list.html#" class="icon icon-trash"></a><a href="ui-nestable-list.html#" class="icon icon-pencil"></a></div>
<ol class="dd-list">
<li class="dd-item" data-id="3"><div class="dd-handle">Item 3</div></li>
<li class="dd-item" data-id="4"><div class="dd-handle">Item 4</div></li>
<li class="dd-item" data-id="5">
<div class="dd-handle">Item 5</div>
<ol class="dd-list">
<li class="dd-item" data-id="6"><div class="dd-handle">Item 6</div></li>
<li class="dd-item" data-id="7"><div class="dd-handle">Item 7</div></li>
<li class="dd-item" data-id="8"><div class="dd-handle">Item 8</div></li>
</ol>
</li>
<li class="dd-item" data-id="9"><div class="dd-handle">Item 9</div></li>
<li class="dd-item" data-id="10"><div class="dd-handle">Item 10</div></li>
</ol>
</li>
<li class="dd-item" data-id="11">
<div class="dd-handle">Item 11</div>
</li>
<li class="dd-item" data-id="12">
<div class="dd-handle">Item 12</div>
</li>
</ol>
</div>
<div class="dd" id="nestable2">
<ol class="dd-list">
<li class="dd-item" data-id="13">
<div class="dd-handle">Item 13</div>
</li>
<li class="dd-item" data-id="14">
<div class="dd-handle">Item 14</div>
</li>
<li class="dd-item" data-id="15">
<div class="dd-handle">Item 15</div>
<ol class="dd-list">
<li class="dd-item" data-id="16"><div class="dd-handle">Item 16</div></li>
<li class="dd-item" data-id="17"><div class="dd-handle">Item 17</div></li>
<li class="dd-item" data-id="18"><div class="dd-handle">Item 18</div></li>
</ol>
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="panel bk-bg-white">
<div class="panel-heading bk-bg-primary">
<h6><i class="fa fa-outdent red"></i>Nestable List With Icon</h6>
<div class="panel-actions">
<a href="ui-nestable-list.html#" class="btn-setting"><i class="fa fa-rotate-right black"></i></a>
<a href="ui-nestable-list.html#" class="btn-minimize"><i class="fa fa-chevron-up black"></i></a>
<a href="ui-nestable-list.html#" class="btn-close"><i class="fa fa-times black"></i></a>
</div>
</div>
<div class="panel-body clearfix">
<div class="dd" id="nestable3">
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="13">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 13</div>
</li>
<li class="dd-item dd3-item" data-id="14">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 14</div>
</li>
<li class="dd-item dd3-item" data-id="15">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 15</div>
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="16">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 16</div>
</li>
<li class="dd-item dd3-item" data-id="17">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 17</div>
</li>
<li class="dd-item dd3-item" data-id="18">
<div class="dd-handle dd3-handle"><i class="fa fa-bars"></i></div><div class="dd3-content">Item 18</div>
</li>
</ol>
</li>
</ol>
</div>
<div class="dd" id="nestable4">
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="19">
<div class="dd-handle dd3-handle"><i class="fa fa-bookmark-o"></i></div><div class="dd3-content">Item 19</div>
</li>
<li class="dd-item dd3-item" data-id="20">
<div class="dd-handle dd3-handle"><i class="fa fa-bullseye"></i></div><div class="dd3-content">Item 14</div>
</li>
<li class="dd-item dd3-item" data-id="21">
<div class="dd-handle dd3-handle"><i class="fa fa-reply-all"></i></div>
<div class="dd3-content">Item 20</div>
<ol class="dd-list">
<li class="dd-item dd3-item" data-id="22">
<div class="dd-handle dd3-handle"><i class="fa fa-star-o"></i></div><div class="dd3-content">Item 21</div>
</li>
<li class="dd-item dd3-item" data-id="23">
<div class="dd-handle dd3-handle"><i class="fa fa-tint"></i></div><div class="dd3-content">Item 22</div>
</li>
<li class="dd-item dd3-item" data-id="24">
<div class="dd-handle dd3-handle"><i class="fa fa-cut"></i></div><div class="dd3-content">Item 23</div>
</li>
</ol>
</li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End Main Page -->
<!-- Usage -->
<div id="usage">
<ul>
<li>
<div class="title">Memory</div>
<div class="bar">
<div class="progress progress-md progress-striped active">
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%"></div>
</div>
</div>
<div class="desc">4GB of 8GB</div>
</li>
<li>
<div class="title">HDD</div>
<div class="bar">
<div class="progress progress-md progress-striped active">
<div class="progress-bar progress-bar-primary" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"></div>
</div>
</div>
<div class="desc">250GB of 1TB</div>
</li>
<li>
<div class="title">SSD</div>
<div class="bar">
<div class="progress progress-md progress-striped active">
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%"></div>
</div>
</div>
<div class="desc">700GB of 1TB</div>
</li>
<li>
<div class="title">Bandwidth</div>
<div class="bar">
<div class="progress progress-md progress-striped active">
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 90%"></div>
</div>
</div>
<div class="desc">90TB of 100TB</div>
</li>
</ul>
</div>
<!-- End Usage -->
</div>
</div><!--/container-->
<!-- Modal Dialog -->
<div class="modal fade" id="myModal">
<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 bk-fg-primary">Modal title</h4>
</div>
<div class="modal-body">
<p class="bk-fg-danger">Here settings can be configured...</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div><!-- End Modal Dialog -->
<div class="clearfix"></div>
<!-- start: JavaScript-->
<!-- Vendor JS-->
<script src="assets/vendor/js/jquery.min.js"></script>
<script src="assets/vendor/js/jquery-2.1.1.min.js"></script>
<script src="assets/vendor/js/jquery-migrate-1.2.1.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/vendor/skycons/js/skycons.js"></script>
<!-- Plugins JS-->
<script src="assets/plugins/jquery-ui/js/jquery-ui-1.10.4.min.js"></script>
<script src="assets/plugins/moment/js/moment.min.js"></script>
<script src="assets/plugins/fullcalendar/js/fullcalendar.min.js"></script>
<!-- Theme JS -->
<script src="assets/js/jquery.mmenu.min.js"></script>
<script src="assets/js/core.min.js"></script>
<!-- Pages JS -->
<script src="assets/js/pages/nestable.js"></script>
<!-- end: JavaScript-->
</body>
</html> |
clean/Linux-x86_64-4.07.1-2.0.6/released/8.8.1/coquelicot/2.1.1.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>coquelicot: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.8.1 / coquelicot - 2.1.1</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
coquelicot
<small>
2.1.1
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-10 07:56:43 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-10 07:56:43 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 2 Virtual package relying on perl
coq 8.8.1 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.07.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.07.1 Official release 4.07.1
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.3 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "guillaume.melquiond@inria.fr"
homepage: "http://coquelicot.saclay.inria.fr/"
dev-repo: "git+https://gitlab.inria.fr/coquelicot/coquelicot.git"
bug-reports: "https://gitlab.inria.fr/coquelicot/coquelicot/issues"
license: "LGPL-3.0-or-later"
build: [
["./configure"]
["./remake" "-j%{jobs}%"]
]
install: ["./remake" "install"]
depends: [
"coq" {>= "8.4pl4" & < "8.6~"}
"coq-mathcomp-ssreflect" {>= "1.6"}
]
tags: [ "keyword:real analysis" "keyword:topology" "keyword:filters" "keyword:metric spaces" "category:Mathematics/Real Calculus and Topology" ]
authors: [ "Sylvie Boldo <sylvie.boldo@inria.fr>" "Catherine Lelay <catherine.lelay@inria.fr>" "Guillaume Melquiond <guillaume.melquiond@inria.fr>" ]
synopsis: "A Coq formalization of real analysis compatible with the standard library"
url {
src: "https://coquelicot.gitlabpages.inria.fr/releases/coquelicot-2.1.1.tar.gz"
checksum: "md5=bd648a43a06f422ee6ba886f93d0a534"
}
</pre>
<h2>Lint</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Dry install 🏜️</h2>
<p>Dry install with the current Coq version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam install -y --show-action coq-coquelicot.2.1.1 coq.8.8.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.8.1).
The following dependencies couldn't be met:
- coq-coquelicot -> coq < 8.6~ -> ocaml < 4.06.0
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-coquelicot.2.1.1</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>0 s</dd>
</dl>
<h2>Installation size</h2>
<p>No files were installed.</p>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
clean/Linux-x86_64-4.13.1-2.0.10/released/8.13.0/mathcomp-field/1.12.0.html | coq-bench/coq-bench.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>mathcomp-field: 10 m 27 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.13.0 / mathcomp-field - 1.12.0</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-field
<small>
1.12.0
<span class="label label-success">10 m 27 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-02-11 02:59:41 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-02-11 02:59:41 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
conf-gmp 4 Virtual package relying on a GMP lib system installation
coq 8.13.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.13.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.13.1 Official release 4.13.1
ocaml-config 2 OCaml Switch Configuration
ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled
ocamlfind 1.9.3 A library manager for OCaml
zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers
# opam file:
opam-version: "2.0"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "https://math-comp.github.io/"
bug-reports: "https://github.com/math-comp/math-comp/issues"
dev-repo: "git+https://github.com/math-comp/math-comp.git"
license: "CECILL-B"
build: [ make "-C" "mathcomp/field" "-j" "%{jobs}%" "COQEXTRAFLAGS+=-native-compiler yes" {coq-native:installed & coq:version < "8.13~" } ]
install: [ make "-C" "mathcomp/field" "install" ]
depends: [ "coq-mathcomp-solvable" { = version } ]
tags: [ "keyword:algebra" "keyword:field" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" "logpath:mathcomp.field" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on Fields"
description:"""
This library contains definitions and theorems about field extensions,
galois theory, algebraic numbers, cyclotomic polynomials...
"""
url {
src: "https://github.com/math-comp/math-comp/archive/mathcomp-1.12.0.tar.gz"
checksum: "sha256=a57b79a280e7e8527bf0d8710c1f65cde00032746b52b87be1ab12e6213c9783"
}
</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-mathcomp-field.1.12.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-mathcomp-field.1.12.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>18 m 57 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 8h opam install -y -v coq-mathcomp-field.1.12.0 coq.8.13.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>10 m 27 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 9 M</p>
<ul>
<li>1 M <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.vo</code></li>
<li>790 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.vo</code></li>
<li>683 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.vo</code></li>
<li>543 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.glob</code></li>
<li>514 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.vo</code></li>
<li>491 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.glob</code></li>
<li>477 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.vo</code></li>
<li>456 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.glob</code></li>
<li>437 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.vo</code></li>
<li>426 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.vo</code></li>
<li>398 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.glob</code></li>
<li>385 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.vo</code></li>
<li>383 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.vo</code></li>
<li>381 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.glob</code></li>
<li>349 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.glob</code></li>
<li>320 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.glob</code></li>
<li>299 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.glob</code></li>
<li>233 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.glob</code></li>
<li>140 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.vo</code></li>
<li>109 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.glob</code></li>
<li>69 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/galois.v</code></li>
<li>67 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/fieldext.v</code></li>
<li>52 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algebraics_fundamentals.v</code></li>
<li>49 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algC.v</code></li>
<li>47 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/falgebra.v</code></li>
<li>44 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/separable.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/closed_field.v</code></li>
<li>39 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/algnum.v</code></li>
<li>32 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/finfield.v</code></li>
<li>22 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/cyclotomic.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.13.1/lib/coq/user-contrib/mathcomp/field/all_field.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-mathcomp-field.1.12.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Missing removes</dt>
<dd>
none
</dd>
<dt>Wrong removes</dt>
<dd>
none
</dd>
</dl>
</div>
</div>
</div>
<hr/>
<div class="footer">
<p class="text-center">
Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣
</p>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="../../../../../bootstrap.min.js"></script>
</body>
</html>
|
example.html | justinribeiro/jquery-websocket-callback | <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>jquery-websocket-callback example</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>jquery-websocket-callback example</h1>
<p>This example has no page output; all the action happens in the console. You may also check the Network Panel in DevTools to see the frames sent/received by the websocket.</p>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="jquery.websocket.callback.js"></script>
<script>
$( document ).ready(function() {
var myBrokerEcho = $.websocket({
url: "ws://echo.websocket.org/"
});
myBrokerEcho.topic( "websocket.onOpen" ).subscribe( onOpen );
myBrokerEcho.topic( "websocket.onMessage" ).subscribe( onMessage );
var dfd = $.Deferred();
var topic = myBrokerEcho.topic( "websocket.send" );
dfd.done( topic.publish );
function onOpen( value ) {
console.log("Connection Open!", value);
dfd.resolve( "I'm resolved and sending a message that should echo back" );
}
function onMessage( value ) {
console.log("Incoming Message!", value);
}
});
</script>
</body>
</html>
|
docs/picturepark-sdk-v1-angular/api/classes/contentdownloadseditable.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>ContentDownloadsEditable | @picturepark/sdk-v1-angular API</title>
<meta name="description" content="Documentation for @picturepark/sdk-v1-angular 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-angular 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="contentdownloadseditable.html">ContentDownloadsEditable</a>
</li>
</ul>
<h1>Class ContentDownloadsEditable</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>
<span class="target">ContentDownloadsEditable</span>
</li>
</ul>
</section>
<section class="tsd-panel">
<h3>Implements</h3>
<ul class="tsd-hierarchy">
<li><a href="../interfaces/icontentdownloadseditable.html" class="tsd-signature-type">IContentDownloadsEditable</a></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>Constructors</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#constructor" class="tsd-kind-icon">constructor</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-external">
<h3>Properties</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#embed" class="tsd-kind-icon">embed</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#share" class="tsd-kind-icon">share</a></li>
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#total" class="tsd-kind-icon">total</a></li>
</ul>
</section>
<section class="tsd-index-section tsd-is-external">
<h3>Methods</h3>
<ul class="tsd-index-list">
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#init" class="tsd-kind-icon">init</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-external"><a href="contentdownloadseditable.html#tojson" class="tsd-kind-icon">toJSON</a></li>
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-static tsd-is-external"><a href="contentdownloadseditable.html#fromjs" class="tsd-kind-icon">fromJS</a></li>
</ul>
</section>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Constructors</h2>
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
<a name="constructor" class="tsd-anchor"></a>
<h3>constructor</h3>
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
<li class="tsd-signature tsd-kind-icon">new <wbr>Content<wbr>Downloads<wbr>Editable<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><a href="../interfaces/icontentdownloadseditable.html" class="tsd-signature-type">IContentDownloadsEditable</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="contentdownloadseditable.html" class="tsd-signature-type">ContentDownloadsEditable</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78544">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78544</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <a href="../interfaces/icontentdownloadseditable.html" class="tsd-signature-type">IContentDownloadsEditable</a></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <a href="contentdownloadseditable.html" class="tsd-signature-type">ContentDownloadsEditable</a></h4>
</li>
</ul>
</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-class tsd-is-external">
<a name="embed" class="tsd-anchor"></a>
<h3>embed</h3>
<div class="tsd-signature tsd-kind-icon">embed<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/icontentdownloadseditable.html">IContentDownloadsEditable</a>.<a href="../interfaces/icontentdownloadseditable.html#embed">embed</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78544">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78544</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Downloads of content through embed</p>
</div>
</div>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a name="share" class="tsd-anchor"></a>
<h3>share</h3>
<div class="tsd-signature tsd-kind-icon">share<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/icontentdownloadseditable.html">IContentDownloadsEditable</a>.<a href="../interfaces/icontentdownloadseditable.html#share">share</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78542">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78542</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Downloads of content through basic Share</p>
</div>
</div>
</section>
<section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a name="total" class="tsd-anchor"></a>
<h3>total</h3>
<div class="tsd-signature tsd-kind-icon">total<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
<aside class="tsd-sources">
<p>Implementation of <a href="../interfaces/icontentdownloadseditable.html">IContentDownloadsEditable</a>.<a href="../interfaces/icontentdownloadseditable.html#total">total</a></p>
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78540">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78540</a></li>
</ul>
</aside>
<div class="tsd-comment tsd-typography">
<div class="lead">
<p>Total downloads of content (regardless of formats, single download of multiple formats is counted once)</p>
</div>
</div>
</section>
</section>
<section class="tsd-panel-group tsd-member-group tsd-is-external">
<h2>Methods</h2>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a name="init" class="tsd-anchor"></a>
<h3>init</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
<li class="tsd-signature tsd-kind-icon">init<span class="tsd-signature-symbol">(</span>_data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78555">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78555</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> _data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a name="tojson" class="tsd-anchor"></a>
<h3>toJSON</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-external">
<li class="tsd-signature tsd-kind-icon">toJSON<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78570">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78570</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5><span class="tsd-flag ts-flagOptional">Optional</span> data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4>
</li>
</ul>
</section>
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static tsd-is-external">
<a name="fromjs" class="tsd-anchor"></a>
<h3><span class="tsd-flag ts-flagStatic">Static</span> fromJS</h3>
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static tsd-is-external">
<li class="tsd-signature tsd-kind-icon">fromJS<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="contentdownloadseditable.html" class="tsd-signature-type">ContentDownloadsEditable</a></li>
</ul>
<ul class="tsd-descriptions">
<li class="tsd-description">
<aside class="tsd-sources">
<ul>
<li>Defined in <a href="https://github.com/Picturepark/Picturepark.SDK.TypeScript/blob/01b219ac2/src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts#L78563">src/picturepark-sdk-v1-angular/projects/picturepark-sdk-v1-angular/src/lib/services/api-services.ts:78563</a></li>
</ul>
</aside>
<h4 class="tsd-parameters-title">Parameters</h4>
<ul class="tsd-parameters">
<li>
<h5>data: <span class="tsd-signature-type">any</span></h5>
</li>
</ul>
<h4 class="tsd-returns-title">Returns <a href="contentdownloadseditable.html" class="tsd-signature-type">ContentDownloadsEditable</a></h4>
</li>
</ul>
</section>
</section>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class="globals ">
<a href="../globals.html"><em>Globals</em></a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
<ul class="current">
<li class="current tsd-kind-class tsd-is-external">
<a href="contentdownloadseditable.html" class="tsd-kind-icon">Content<wbr>Downloads<wbr>Editable</a>
<ul>
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#constructor" class="tsd-kind-icon">constructor</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#embed" class="tsd-kind-icon">embed</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#share" class="tsd-kind-icon">share</a>
</li>
<li class=" tsd-kind-property tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#total" class="tsd-kind-icon">total</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#init" class="tsd-kind-icon">init</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-external">
<a href="contentdownloadseditable.html#tojson" class="tsd-kind-icon">toJSON</a>
</li>
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static tsd-is-external">
<a href="contentdownloadseditable.html#fromjs" class="tsd-kind-icon">fromJS</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">
</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> |
_site/scopemount-theme-palomar/index.html | montecruiseto/blog | <!--
Side-wide varible assigns
-->
<!-- Page author meta -->
<!--
Site-wide captures
-->
<!-- Site title -->
<!-- Site description -->
<!-- Feed URL -->
<!-- Page title -->
<!-- Page URL -->
<!-- Page type (used by Open Graph) -->
<!-- Page language tag -->
<!-- Page custom CSS -->
<!-- Page thumbnail -->
<!doctype html>
<meta charset=utf-8>
<title>
Scopemount 4/21 • Palomar
· Montecruiseto
</title>
<meta name=viewport content="width=device-width, initial-scale=1">
<!-- Define a description for better SEO result -->
<meta name=description content="
The fourth Scopemount theme for Telescope is out today. Telescope is an open-source Meteor-based web app that makes it easy for anybody to launch their own community. Go check it out!
">
<link rel=alternate href="/feed.xml" type=application/atom+xml>
<link rel=stylesheet href="/assets/css/app.css">
<!-- Canonical links, avoid duplicate content problems -->
<link rel=canonical href="http://scopemount-blog.surge.sh/scopemount-theme-palomar/">
<!-- DNS prefetching for static files -->
<!-- browser-sync, don't remove this -->
<!-- BS_INSERT -->
<!-- Head hooks -->
<!-- Open Graph and Twitter Cards support, more info: https://dev.twitter.com/docs/cards -->
<meta property="og:type" content="
article
">
<meta property="og:site_name" content="Montecruiseto">
<meta property="og:title" content="Scopemount 4/21 • Palomar">
<meta property="og:url" content="http://scopemount-blog.surge.sh/scopemount-theme-palomar/">
<meta property="og:description" content="
The fourth Scopemount theme for Telescope is out today. Telescope is an open-source Meteor-based web app that makes it easy for anybody to launch their own community. Go check it out!
">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Scopemount 4/21 • Palomar">
<meta name="twitter:url" content="http://scopemount-blog.surge.sh/scopemount-theme-palomar/">
<meta name="twitter:description" content="
The fourth Scopemount theme for Telescope is out today. Telescope is an open-source Meteor-based web app that makes it easy for anybody to launch their own community. Go check it out!
">
<meta name="twitter:site" content="@montecruiseto">
<meta name="twitter:creator" content="@montecruiseto">
<!-- Post / page specified styles -->
<!-- Post specified styles -->
<style>
body {
color: black;
background-color: white;
}
a,
button {
color: black;
}
::selection {
color: black;
}
body:before, .logo {
background: black;
}
.logo:hover {
background: black;
}
.navigation li a:hover,
.navigation li a:focus {
color: black;
}
.current a {
color: black;
}
.content a {
color: black;
}
.content ul li:before,
.content ol li:before {
box-shadow: inset 0 0 0 3px black, inset 0 0 0 5px white, inset 0 0 0 7px black;
}
.note,
.store,
.download {
border-left-color: black;
}
.external span {
background: black;
}
:target [rev=footnote],
:target [rel=footnote] {
color: black;
}
</style>
<!-- Header, just a logo at the moment -->
<header>
<a href="/" class=logo accesskey=x>
<h1>Montecruiseto</h1>
</a>
</header>
<!-- Main navigation with current page / category highlighted -->
<nav class=navigation>
<ul>
<li >
<a href="/">
Home
</a>
</li>
<li >
<a href="/about/">
About
</a>
</li>
</ul>
</nav>
<!-- Main content wrap -->
<main class="content
intense-wrap
" role=main>
<!--
Side-wide varible assigns
-->
<!-- Page author meta -->
<!--
Site-wide captures
-->
<!-- Site title -->
<!-- Site description -->
<!-- Feed URL -->
<!-- Page title -->
<!-- Page URL -->
<!-- Page type (used by Open Graph) -->
<!-- Page language tag -->
<!-- Page custom CSS -->
<!-- Page thumbnail -->
<!-- Post-wide custom CSS -->
<!-- Prepare for image headers -->
<!-- Prepare for SVG header -->
<!-- Prepare for SVG header styles -->
<!-- Article wrapper, limit width -->
<article
>
<!-- Community gestures -->
<!-- <div class="communication-panel">
<div class="panel-ridge">
<div class="communication-content">
<p>Stay tuned for Telescope theme releases</p>
<form action="http://startrack.us10.list-manage.com/subscribe/post" method="POST">
<input type="hidden" name="u" value="64c33b4b4bf4e8a5650bc6864">
<input type="hidden" name="id" value="bd295317fa">
<div class="input-group">
<input type="email" class="form-control" name="MERGE0" id="MERGE0" placeholder="Enter your email...">
<span class="input-group-btn">
<button type="submit" name="submit" class="btn" type="button">Subscribe</button>
</span>
</div>
</div>
</form>
</div>
</div> -->
<!-- Post title -->
<header>
<iframe src="https://ghbtns.com/github-btn.html?user=montecruiseto&repo=scopemount&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px" id="gstars1">
</iframe>
<h1>
Scopemount 4/21 • Palomar <span></span>
</h1>
<small>
By <span rel=author>Montecruiseto</span>
on <time datetime="2015-05-31T00:00:00+07:00">May 31, 2015</time>
</small>
</header>
<!-- Post content -->
<div class=post-content>
<p>The fourth <a href="http://scopemount.surge.sh/">Scopemount</a> theme for Telescope is out today. <a href="http://www.telescopeapp.org/">Telescope</a> is an open-source Meteor-based web app that makes it easy for anybody to launch their own community. Go check it out!</p>
<h1 id="look">Look</h1>
<p>Palomar is a theme that’s great for a travel or photography community, putting an emphasis on large imagery. As usual, a lot of creative borrowing has been done. This time from the likes of <a href="http://www.tripexpert.com">TripExpert</a> and <a href="https://itunes.apple.com/us/app/jelly/id685652528?mt=8">Jelly app</a>.</p>
<p>
<img src="/assets/img/Palomar.png" class="nointense" alt="Image">
</p>
<p>Mobile views have miniature cards, and care has been taken to provide admins with the necessary stats in a compact layout.</p>
<p>
<img src="/assets/img/Palomar2.png" class="nointense" alt="Image">
</p>
<h1 id="quick-links">Quick Links</h1>
<p><a href="http://sm-palomar.meteor.com/">Demo</a></p>
<p><a href="https://atmospherejs.com/montecruiseto/telescope-theme-sm-palomar">Atmosphere</a></p>
<p><a href="http://scopemount.surge.sh/">Scopemount</a></p>
<h1 id="install">Install</h1>
<p><strong><em>Note:</em></strong> <em>Remember to set your Telescope admin settings to post ‘grid’ mode and include Embedly thumbs with a width of 700px and height of 350px.</em></p>
<p>You can install Palomar automagically through <a href="https://atmospherejs.com/montecruiseto/telescope-theme-sm-palomar">Atmosphere</a>:</p>
<div class="highlight"><pre><code class="language-bash" data-lang="bash"><span class="nv">$ </span>meteor add montecruiseto:telescope-theme-sm-palomar
</code></pre></div>
<p>Alternatively if you want to customize the theme: <a href="https://github.com/montecruiseto/scopemount">Download</a> and extract the theme of your choice to your Telescope package directory and run the same command as above. Telescope will look for the local package first and use that one.</p>
<h1 id="palomar">Palomar</h1>
<p>This theme was named after the <a href="http://en.wikipedia.org/wiki/Palomar_Observatory">Palomar Observatory</a>, built in 1928 and located in San Diego County, California, US, in the Palomar Mountain Range.</p>
<p>
<img src="/assets/img/PalomarT.jpg" class="nointense" alt="Image">
</p>
<p>If you want to be notified of theme updates or new releases, you can leave your email on the <a href="http://scopemount.surge.sh/">Scopemount</a> homepage. Have fun with Telescope and keep tracking the stars!</p>
<iframe src="https://ghbtns.com/github-btn.html?user=montecruiseto&repo=scopemount&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px" id="gstars1"></iframe>
</div>
<!-- Disqus -->
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES * * */
var disqus_shortname = 'startrack';
/* * * 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>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
</article>
</main>
<!-- Footer section -->
<footer class=footer>
<ul>
<li><a href="http://twitter.com/montecruiseto" target="_blank">@montecruiseto</a></li>
<li><a href="http://github.com/montecruiseto" target="_blank">Github</a></li>
</ul>
</footer>
<!-- Insert scripts here -->
<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-63290162-1', 'auto');
ga('send', 'pageview');
</script>
<!-- The following code is an example use of including external JavaScript libraries -->
<script src="/assets/js/intense.js"></script>
<script>
window.onload = function() {
var fx = document.querySelectorAll('p > img:not(.nointense)');
var el = document.body;
var cl = 'loaded'
if (el.classList)
el.classList.add(cl);
else
el.className += ' ' + cl;
Intense(fx);
}
</script>
<!-- Foot hooks -->
|
css/post.css | jeffreysu1355/FreeWiFi | @import url(https://fonts.googleapis.com/css?family=Lato:100,300,400);
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #aca49c;
font-size: 0.875em;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
color: #bbb5af;
}
input::-moz-placeholder, textarea::-moz-placeholder {
color: #aca49c;
font-size: 0.875em;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
color: #bbb5af;
}
input::placeholder, textarea::placeholder {
color: #aca49c;
font-size: 0.875em;
}
input:focus::placeholder, textarea::focus:placeholder {
color: #bbb5af;
}
input::-ms-placeholder, textarea::-ms-placeholder {
color: #aca49c;
font-size: 0.875em;
}
input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
color: #bbb5af;
}
/* on hover placeholder */
input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
color: #e2dedb;
font-size: 0.875em;
}
input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
color: #cbc6c1;
}
input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
color: #e2dedb;
font-size: 0.875em;
}
input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
color: #cbc6c1;
}
input:hover::placeholder, textarea:hover::placeholder {
color: #e2dedb;
font-size: 0.875em;
}
input:hover:focus::placeholder, textarea:hover:focus::placeholder {
color: #cbc6c1;
}
input:hover::placeholder, textarea:hover::placeholder {
color: #e2dedb;
font-size: 0.875em;
}
input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
color: #cbc6c1;
}
body {
font-family: 'Lato', sans-serif;
/*background: #e2dedb;*/
background: #545353;
color: #b3aca7;
}
header {
position: relative;
margin: 100px 0 25px 0;
font-size: 2.3em;
text-align: center;
letter-spacing: 7px;
}
#form {
position: relative;
width: 500px;
margin: 50px auto 100px auto;
}
input {
font-family: 'Lato', sans-serif;
font-size: 0.875em;
width: 470px;
height: 50px;
padding: 0px 15px 0px 15px;
background: transparent;
outline: none;
color: #726659;
border: solid 1px #b3aca7;
border-bottom: none;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
}
input:hover {
/*background: #b3aca7;*/
background: #7c7c7c;
color: #e2dedb;
/*color: #7c7c7c;*/
}
textarea {
width: 470px;
max-width: 470px;
height: 110px;
max-height: 110px;
padding: 15px;
background: transparent;
outline: none;
color: #726659;
font-family: 'Lato', sans-serif;
font-size: 0.875em;
border: solid 1px #b3aca7;
transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
}
textarea:hover {
/*background: #b3aca7;*/
background: #7c7c7c;
color: #e2dedb;
}
#submit {
width: 502px;
padding: 0;
margin: -5px 0px 0px 0px;
font-family: 'Lato', sans-serif;
font-size: 0.875em;
color: #b3aca7;
outline:none;
cursor: pointer;
border: solid 1px #b3aca7;
border-top: none;
text-align: center;
}
hover #submit:hover {
color: #e2dedb;
} |
0.8.57/html-doc/skel/webApp/templates/bs3/js/respond.min.js.html | EDortta/YeAPF | <div class='section'><div class='row'><div class='col-md-12'><a name='6f3e29a35278d71c7f65495871231324'></a><h3>function __anonymousFunction__1230 (a)</h3></div><div class='col-md-12'>doc...</div></div></div><div class='section'><div class='row'><div class='col-md-12'><a name='2df45244f09369e16ea3f9117ca45157'></a><h3>function __anonymousFunction__1233 (a)</h3></div><div class='col-md-12'>doc...</div></div></div> |
src/main/resources/static/src/src/views/dashboard/pages/summary/usage.html | szumszym/boo_KING | <md-content ng-controller="UsageController as vm" class="md-padding" layout="row">
<div flex>
<nvd3 options="vm.chartOptions" data="vm.ramChartData"></nvd3>
<h4 class="donut-chart-title">RAM</h4>
</div>
<div flex>
<nvd3 options="vm.chartOptions" data="vm.storageChartData"></nvd3>
<h4 class="donut-chart-title">Storage</h4>
</div>
</md-content>
|
src/index.html | aehsu/pentimento-web | <!DOCTYPE html>
<html>
<head>
<title>Capture Widget/Sketchpad</title>
<style>
canvas {
border: 1px solid black;
cursor: crosshair;
}
button {
padding: 10px;
}
#slider{
width:300px;
float:left;
margin-top:-5px;
border-radius:0;
height:5px;
position:absolute;
}
#slider .tick {
z-index:1;
background: #4f3;
border: none;
position: absolute;
height: 100%;
width: 2px;
left: 0%;
opacity: .3;
}
#slider .ui-slider-handle {
width: 0.6em;
border: none;
background: #999;
height: 300%;
margin-top:-5px;
top: 0;
margin-left: -0.3em;
}
#slider .ui-slider-range {
background:green;
}
.hidden {
display:none;
}
</style>
<script src='jquery-1.10.2.min.js'></script>
<script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css">
<script type='text/javascript'>
$(document).ready(function(){
$('#slider').width($('canvas').width());
$('#ticker').css('position', 'absolute'); //so many bad things.
$('#ticker').css('left', parseInt($('#slider').width())+20 + 'px'); //holy shit.
$('#ticker').css('top', parseInt($('#slider').position().top)-10 + 'px'); //oh god.
$('#slider').slider({
disabled: true,
step:1,
range: 'min'
});
//temporary one-time off's to do initialization correctly..."correctly"
})
</script>
<!--<script type='text/javascript' src='pentimento_loader.js'></script>-->
<script type='text/javascript'>
pentimento = {};
function global_time() { return (new Date()).getTime(); }
</script>
<script type='text/javascript' src='pentimento_model_lecture.js'></script>
<script type='text/javascript' src='pentimento_model_state.js'></script>
<script type='text/javascript' src='pentimento_controller_lecture.js'></script>
<script type='text/javascript' src='pentimento_controller_uiux_helpers.js'></script>
<script type='text/javascript' src='pentimento_controller_uiux.js'></script>
<script type='text/javascript' src='pentimento_controller_tools_helpers.js'></script>
<script type='text/javascript' src='pentimento_controller_tools.js'></script>
</head>
<body>
<div>
<button class="recording-tool" data-label='begin'>Record</button>
<button class="recording-tool hidden" data-label='stop'>Stop Record</button>
<button class="live-tool" data-toolname="clear">Clear</button>
<button class="live-tool" data-toolname="pen">Pen</button>
<button class="live-tool" data-toolname="dots">Dots</button>
</div>
<div>
<canvas id='sketchpad'></canvas>
</div>
<br/>
<div id="slider"></div><span id="ticker">00:00.00</span>
</body>
</html>
|
templates/modals/frontendgroupmanagementmodal.html | izkasi/simple-file-exchange | {{define "frontendgroupmanagementmodal"}}
<div id="GroupManagementModal" class="modal fade" role="dialog">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Manage Users of group: <span id="title" /></h4>
</div>
<div class="modal-body">
<form class="form" role="form" action="/addusertogroup" method="POST">
<div class="input-group">
<span class="input-group-addon">Email:</span>
<input type="text" class="form-control" id="email" name="email" data-autocomplete="/data/users">
<input id="group" class="hidden" value="" name="group">
<span class="input-group-addon">Role:</span>
<select class="form-control" id="sel1" name="role">
<option value="0">Read-Only</option>
<option value="1">Read-Write</option>
<option value="2">Admin</option>
</select>
<div class="input-group-btn">
<button class="btn btn-default" type="submit">
Add
</button>
</div>
</div>
</form>
<div style="margin-top:45px"></div>
<table id="groupsusers" class="table table-striped table-bordered" cellspacing="0" width="100%" style="margin-top:15px;">
<thead>
<tr>
<th>Username</th>
<th>Role</th>
<th>Actions</th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$('#GroupManagementModal').on('show.bs.modal', function(e) {
var id = $(e.relatedTarget).data('groupid');
document.getElementById("group").value=id;
var name = $(e.relatedTarget).data('groupname');
document.getElementById("title").textContent=name;
var table = $('#groupsusers').DataTable( {
"ajax": "data/groupsusers/"+id,
"columnDefs": [ {
"targets": -1,
"data": null,
"defaultContent": "<button>Click!</button>",
}],
"columns": [
{ "data": "Username" },
{ "data": "Role" },
{ "data": null, "bSortable": false}
]
});
$('#groupsusers tbody').on( 'click', 'button', function (e) {
data = $('#groupsusers').DataTable().row( $(this).parents('tr') ).data();
$.post('/data/deleteuserfromgroup',
{ id: data["UserId"] ,
gid: data["GroupId"] }
);
});
$('#GroupManagementModal').on('hidden.bs.modal', function () {
table = $('#groupsusers').DataTable();
table.destroy();
});
});
</script>
{{end}}
|
modules/OpenSSL/VS/html/man3/SSL_SESSION_get0_peer.html | chronoxor/CppServer | <?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>SSL_SESSION_get0_peer</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:" />
</head>
<body>
<ul id="index">
<li><a href="#NAME">NAME</a></li>
<li><a href="#SYNOPSIS">SYNOPSIS</a></li>
<li><a href="#DESCRIPTION">DESCRIPTION</a></li>
<li><a href="#RETURN-VALUES">RETURN VALUES</a></li>
<li><a href="#SEE-ALSO">SEE ALSO</a></li>
<li><a href="#COPYRIGHT">COPYRIGHT</a></li>
</ul>
<h1 id="NAME">NAME</h1>
<p>SSL_SESSION_get0_peer - get details about peer's certificate for a session</p>
<h1 id="SYNOPSIS">SYNOPSIS</h1>
<pre><code> <span class="comment">#include <openssl/ssl.h></span>
<span class="variable">X509</span> <span class="variable">*SSL_SESSION_get0_peer</span><span class="operator">(</span><span class="variable">SSL_SESSION</span> <span class="variable">*s</span><span class="operator">);</span>
</code></pre>
<h1 id="DESCRIPTION">DESCRIPTION</h1>
<p>SSL_SESSION_get0_peer() returns the peer certificate associated with the session <b>s</b> or NULL if no peer certificate is available. The caller should not free the returned value (unless <a href="../man3/X509_up_ref.html">X509_up_ref(3)</a> has also been called).</p>
<h1 id="RETURN-VALUES">RETURN VALUES</h1>
<p>SSL_SESSION_get0_peer() returns a pointer to the peer certificate or NULL if no peer certificate is available.</p>
<h1 id="SEE-ALSO">SEE ALSO</h1>
<p><a href="../man7/ssl.html">ssl(7)</a></p>
<h1 id="COPYRIGHT">COPYRIGHT</h1>
<p>Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.</p>
<p>Licensed under the OpenSSL license (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <a href="https://www.openssl.org/source/license.html">https://www.openssl.org/source/license.html</a>.</p>
</body>
</html>
|
addons/ewei_shopv2/template/mobile/default/verify/page.html | Broomspun/shanque | {template '_header'}
<div class='fui-page fui-page-current'>
<div class="fui-header">
<div class="fui-header-left">
</div>
<div class="title">核销台</div>
<div class="fui-header-right"> </div>
</div>
<div class='fui-content navbar'>
{if !empty($store)}
<div class='fui-list-group' >
<div class='fui-list'>
<div class='fui-list-media'><i class='icon icon-shop'></i></div>
<div class='fui-list-inner'>
<div class='title'>{$store['storename']}</div>
</div>
</div>
</div>
{/if}
<div class='fui-list-group' >
<div class='fui-list'>
<div class='fui-list-media'><img src='{$member['avatar']}' /></div>
<div class='fui-list-inner'>
<div class='title'>{$saler['salername']}</div>
<div class='text'>{$member['nickname']}</div>
</div>
</div>
</div>
<div class='fui-cell-group'>
<div class='fui-cell-title'>请输入消费码或自提码</div>
<div class='fui-cell'>
<div class='fui-cell-info'>
<input type='text' class='fui-input' id='verifycode' placeholder='消费码或自提码'/>
</div>
<div class='fui-cell-remark noremark'>
<div class='btn btn-danger btn-sm btn-search'>查询订单</div>
</div>
</div>
</div>
<div id='container'></div>
</div>
<div class='fui-footer' style='display:none'>
<div class="btn btn-danger order-verify block" data-orderid="{$order['id']}" data-verifytype="{$order['verifytype']}">
<i class="icon icon-check"></i>
<span>确定使用</span>
</div>
</div>
<script id='tpl_container' type='text/html'>
<div class='fui-list-group'>
<div class='fui-list order-status'>
<div class='fui-list-inner'>
<div class='title'><%order.ordersn%></div>
<div class='text'>订单金额: ¥<%order.price%><span></div>
</div>
</div>
</div>
<div class='fui-list-group' >
<div class='fui-list'>
<div class='fui-list-media'><i class='icon icon-person2'></i></div>
<div class='fui-list-inner'>
<div class='title'><%carrier.carrier_realname%> <%carrier.carrier_mobile%></div>
</div>
</div>
</div>
<div class="fui-list-group goods-list-group">
<div class="fui-list-group-title"><i class="icon icon-shop"></i><%shop.name%></div>
<%each allgoods as g%>
<a href="{php echo mobileUrl('goods/detail')}&id=<%g.goodsid%>">
<div class="fui-list goods-list">
<div class="fui-list-media">
<img src="<%g.thumb%>" class="round">
</div>
<div class="fui-list-inner">
<div class="text goodstitle"><%g.title%></div>
<%if g.optionid!='0'%><div class='subtitle'><%g.optiontitle%></div><%/if%>
</div>
<div class='fui-list-angle'>
¥<span class='marketprice'><%g.price%><br/> x<%g.total%>
</div>
</div>
</a>
<%/each%>
</div>
</script>
<script language='javascript'>require(['biz/verify/page'], function (modal) {
modal.init();
});</script>
</div>
{template '_footer'} |
Reports/bi/biztalkcomponents.pipelinecomponents.setcharset.1.5.0/BizTalkComponents.PipelineComponents.SetCharset-net40.html | kuhlenh/port-to-core |
<!DOCTYPE html>
<html xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-16" http-equiv="Content-Type" />
<title _locid="PortabilityAnalysis0">.NET Portability Report</title>
<style>
/* Body style, for the entire document */
body {
background: #F3F3F4;
color: #1E1E1F;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
padding: 0;
margin: 0;
}
/* Header1 style, used for the main title */
h1 {
padding: 10px 0px 10px 10px;
font-size: 21pt;
background-color: #E2E2E2;
border-bottom: 1px #C1C1C2 solid;
color: #201F20;
margin: 0;
font-weight: normal;
}
/* Header2 style, used for "Overview" and other sections */
h2 {
font-size: 18pt;
font-weight: normal;
padding: 15px 0 5px 0;
margin: 0;
}
/* Header3 style, used for sub-sections, such as project name */
h3 {
font-weight: normal;
font-size: 15pt;
margin: 0;
padding: 15px 0 5px 0;
background-color: transparent;
}
h4 {
font-weight: normal;
font-size: 12pt;
margin: 0;
padding: 0 0 0 0;
background-color: transparent;
}
/* Color all hyperlinks one color */
a {
color: #1382CE;
}
/* Paragraph text (for longer informational messages) */
p {
font-size: 10pt;
}
/* Table styles */
table {
border-spacing: 0 0;
border-collapse: collapse;
font-size: 10pt;
}
table th {
background: #E7E7E8;
text-align: left;
text-decoration: none;
font-weight: normal;
padding: 3px 6px 3px 6px;
}
table td {
vertical-align: top;
padding: 3px 6px 5px 5px;
margin: 0px;
border: 1px solid #E7E7E8;
background: #F7F7F8;
}
.NoBreakingChanges {
color: darkgreen;
font-weight:bold;
}
.FewBreakingChanges {
color: orange;
font-weight:bold;
}
.ManyBreakingChanges {
color: red;
font-weight:bold;
}
.BreakDetails {
margin-left: 30px;
}
.CompatMessage {
font-style: italic;
font-size: 10pt;
}
.GoodMessage {
color: darkgreen;
}
/* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */
.localLink {
color: #1E1E1F;
background: #EEEEED;
text-decoration: none;
}
.localLink:hover {
color: #1382CE;
background: #FFFF99;
text-decoration: none;
}
/* Center text, used in the over views cells that contain message level counts */
.textCentered {
text-align: center;
}
/* The message cells in message tables should take up all avaliable space */
.messageCell {
width: 100%;
}
/* Padding around the content after the h1 */
#content {
padding: 0px 12px 12px 12px;
}
/* The overview table expands to width, with a max width of 97% */
#overview table {
width: auto;
max-width: 75%;
}
/* The messages tables are always 97% width */
#messages table {
width: 97%;
}
/* All Icons */
.IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded {
min-width: 18px;
min-height: 18px;
background-repeat: no-repeat;
background-position: center;
}
/* Success icon encoded */
.IconSuccessEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==);
}
/* Information icon encoded */
.IconInfoEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=);
}
/* Warning icon encoded */
.IconWarningEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==);
}
/* Error icon encoded */
.IconErrorEncoded {
/* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */
/* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=);
}
</style>
</head>
<body>
<h1 _locid="PortabilityReport">.NET Portability Report</h1>
<div id="content">
<div id="submissionId" style="font-size:8pt;">
<p>
<i>
Submission Id
b96bac08-dd62-4afe-8b6f-257c15c8e5ef
</i>
</p>
</div>
<h2 _locid="SummaryTitle">
<a name="Portability Summary"></a>Portability Summary
</h2>
<div id="summary">
<table>
<tbody>
<tr>
<th>Assembly</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
</tr>
<tr>
<td><strong><a href="#BizTalkComponents.PipelineComponents.SetCharset">BizTalkComponents.PipelineComponents.SetCharset</a></strong></td>
<td class="text-center">93.92 %</td>
<td class="text-center">91.22 %</td>
<td class="text-center">100.00 %</td>
<td class="text-center">83.78 %</td>
</tr>
</tbody>
</table>
</div>
<div id="details">
<a name="BizTalkComponents.PipelineComponents.SetCharset"><h3>BizTalkComponents.PipelineComponents.SetCharset</h3></a>
<table>
<tbody>
<tr>
<th>Target type</th>
<th>ASP.NET 5,Version=v1.0</th>
<th>Windows,Version=v8.1</th>
<th>.NET Framework,Version=v4.6</th>
<th>Windows Phone,Version=v8.1</th>
<th>Recommended changes</th>
</tr>
<tr>
<td>System.ApplicationException</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use other exception types.</td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td>Use other exception types.</td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DataAnnotations.ValidationAttribute</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DataAnnotations.ValidationContext</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.Object,System.IServiceProvider,System.Collections.Generic.IDictionary{System.Object,System.Object})</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Items</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_MemberName</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DataAnnotations.ValidationResult</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String,System.Collections.Generic.IEnumerable{System.String})</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ErrorMessage</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_MemberNames</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DataAnnotations.Validator</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">TryValidateObject(System.Object,System.ComponentModel.DataAnnotations.ValidationContext,System.Collections.Generic.ICollection{System.ComponentModel.DataAnnotations.ValidationResult},System.Boolean)</td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DescriptionAttribute</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.ComponentModel.DisplayNameAttribute</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">#ctor(System.String)</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Text.Encoding</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">GetEncodings</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Text.EncodingInfo</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_Name</td>
<td class="IconErrorEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td>System.Threading.Thread</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_CurrentThread</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td style="padding-left:2em">get_ManagedThreadId</td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td class="IconSuccessEncoded"></td>
<td class="IconErrorEncoded"></td>
<td></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<p>
<a href="#Portability Summary">Back to Summary</a>
</p>
</div>
</div>
</body>
</html> |
clean/Linux-x86_64-4.05.0-2.0.1/released/8.10.2/mathcomp-algebra/1.6.4.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>mathcomp-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 / mathcomp-algebra - 1.6.4</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
mathcomp-algebra
<small>
1.6.4
<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"
name: "coq-mathcomp-algebra"
version: "1.6.4"
maintainer: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
homepage: "http://math-comp.github.io/math-comp/"
bug-reports: "Mathematical Components <mathcomp-dev@sympa.inria.fr>"
license: "CeCILL-B"
build: [ make "-C" "mathcomp/algebra" "-j" "%{jobs}%" ]
install: [ make "-C" "mathcomp/algebra" "install" ]
remove: [ "sh" "-c" "rm -rf '%{lib}%/coq/user-contrib/mathcomp/algebra'" ]
depends: [
"ocaml"
"coq-mathcomp-fingroup" {= "1.6.4"}
]
tags: [ "keyword:algebra" "keyword:small scale reflection" "keyword:mathematical components" "keyword:odd order theorem" ]
authors: [ "Jeremy Avigad <>" "Andrea Asperti <>" "Stephane Le Roux <>" "Yves Bertot <>" "Laurence Rideau <>" "Enrico Tassi <>" "Ioana Pasca <>" "Georges Gonthier <>" "Sidi Ould Biha <>" "Cyril Cohen <>" "Francois Garillot <>" "Alexey Solovyev <>" "Russell O'Connor <>" "Laurent Théry <>" "Assia Mahboubi <>" ]
synopsis: "Mathematical Components Library on Algebra"
description: """
This library contains definitions and theorems about discrete
(i.e. with decidable equality) algebraic structures : ring, fields,
ordered fields, real fields, modules, algebras, integers, rational
numbers, polynomials, matrices, vector spaces..."""
url {
src: "http://github.com/math-comp/math-comp/archive/mathcomp-1.6.4.tar.gz"
checksum: "md5=29362a734d183301e2ce839b0ad14bd9"
}
</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-mathcomp-algebra.1.6.4 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-mathcomp-algebra -> coq-mathcomp-fingroup = 1.6.4 -> coq-mathcomp-ssreflect = 1.6.4 -> coq < 8.8~ -> ocaml < 4.03.0
base of this switch (use `--unlock-base' to force)
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-mathcomp-algebra.1.6.4</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>
|
src/Viteloge/CoreBundle/Resources/descriptions/76584.html | donaldinou/frontend | <div class="commune_descr limited">
<p>
Saint-Germain-sur-Eaulne est
un village
localisé dans le département de Seine-Maritime en Haute-Normandie. On dénombrait 217 habitants en 2008.</p>
<p>Si vous pensez demenager à Saint-Germain-sur-Eaulne, vous pourrez aisément trouver une maison à acheter. </p>
<p>La commune propose quelques équipements, elle propose entre autres un terrain de sport.</p>
<p>Le parc de logements, à Saint-Germain-sur-Eaulne, était réparti en 2011 en deux appartements et 90 maisons soit
un marché plutôt équilibré.</p>
<p>À proximité de Saint-Germain-sur-Eaulne sont positionnées géographiquement les villes de
<a href="{{VLROOT}}/immobilier/fesques_76262/">Fesques</a> située à 3 km, 119 habitants,
<a href="{{VLROOT}}/immobilier/bouelles_76130/">Bouelles</a> à 5 km, 227 habitants,
<a href="{{VLROOT}}/immobilier/sainte-beuve-en-riviere_76567/">Sainte-Beuve-en-Rivière</a> à 1 km, 180 habitants,
<a href="{{VLROOT}}/immobilier/auvilliers_76042/">Auvilliers</a> localisée à 4 km, 91 habitants,
<a href="{{VLROOT}}/immobilier/callengeville_76122/">Callengeville</a> à 5 km, 470 habitants,
<a href="{{VLROOT}}/immobilier/menonval_76424/">Ménonval</a> située à 1 km, 185 habitants,
entre autres. De plus, Saint-Germain-sur-Eaulne est située à seulement six km de <a href="{{VLROOT}}/immobilier/neufchatel-en-bray_76462/">Neufchâtel-en-Bray</a>.</p>
</div>
|
pages/cloud-automation.html | itsacloudlife/itsacloudlife.github.io | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Cloudlife Consulting</title>
<link rel="shortcut icon" href="../img/favicon.ico">
<!-- Bootstrap Core CSS -->
<link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="../css/freelancer.min.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic" rel="stylesheet" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="../css/banner/custom.css" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-50824093-2', 'auto');
ga('send', 'pageview');
</script>
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav id="mainNav" class="inner-nav navbar navbar-default navbar-custom criticalnavi">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<!-- <span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i> -->
<img src="../img/1.png" class="img-responsive" alt="mobile-icon">
</button>
<a class="logo" href="../index.html"><img src="../img/logo.png" class="img-responsive" alt="Cloudlife Consulting Logo"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li class="page-scroll">
<a href="../index.html">Home</a>
</li>
<li class="page-scroll">
<a href="../index.html#portfolio">what we do</a>
</li>
<li class="page-scroll">
<a href="../index.html#about">Our Mission</a>
</li>
<li class="page-scroll">
<a href="../index.html#customers">satisfied customers</a>
</li>
<li class="page-scroll">
<a href="../index.html#contact">contact us</a>
</li>
<li class="page-scroll">
<a href="../index.html#blog">blog</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Portfolio Grid Section -->
<section class="cloud-inner critical">
<div class="container-fluid">
<div class="row">
<div class="inner-banner">
<div class="transparent blue"></div>
<img src="../img/inner-pages/cloud_auto1.jpg" class="img-responsive" alt="banner">
<div class="banner-txt">
<h1>cloud automation</h1>
</div>
</div>
</div>
</div>
<div class="clear"> </div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="top-statement">
<p>Automation allows businesses to truly unlock the power of the cloud, turning a monolithic application into a mesh of easy-to-maintain parts that can be scaled, tested and updated independently.</p>
</div>
</div>
</div>
</div>
<div class="clear"> </div>
<div class="cloud-storage decoupling">
<div class="container-fluid">
<div class="row row-eq-height">
<div class="col-md-4 col-sm-4">
<div class="row">
<div class="content">
<h3>Decoupling</h3>
<p>A common challenge, facing many of our customers, is breaking down their existing monolithic infrastructure, running on just one server, into manageable individual parts. We’re often called on to deliver this decoupling process for our clients, and have a track record of delivering solutions that:</p>
</div>
</div>
</div>
<div class="col-md-8 col-sm-8">
<div class="row">
<img src="../img/inner-pages/cloud_auto2.jpg" alt="inner-image" class="img-responsive">
</div>
</div>
</div>
</div>
<div class="clear"> </div>
<div class="container">
<div class="row">
<div class="col-md-2 hidden-sm hidden-xs"></div>
<div class="col-md-4 col-sm-6">
<div class="scale">
<h3>Scale Independently:</h3>
<p>As business needs change, different parts of your infrastructure will require increased capacity, or upgrades to code. A decoupled application allows you to apply that extra resource to the specific bottlenecks, and keep the entire process running smoothly.</p>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="scale">
<h3>Scale Automatically:</h3>
<p>Through the power of Chef (<a href="www.chef.io">www.chef.io</a>) we’re able to automate both building servers, and bringing servers into the computer pool on the fly. This means that as user demand increases, servers are added gracefully and without the need for any intervention or additional planning. We call this <i>‘host level automation’</i>.</p>
</div>
</div>
<div class="col-md-2 hidden-sm hidden-xs"></div>
</div>
</div>
</div>
<div class="clear"> </div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="top-statement middle-content">
<p>Maintaining two identical production environments, where only one is live at any given time, significantly reduces downtime risk for your business. Automation in the cloud can simplify these deployments, allowing you to update your infrastructure safely, and quickly.</p>
</div>
</div>
</div>
</div>
<div class="instant-backup deployment">
<div class="container-fluid">
<div class="row">
<img src="../img/inner-pages/cloud_auto4.png" alt="inner-image" class="img-responsive">
</div>
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="content">
<h3>Blue green deployment</h3>
<p>We combine our experience working with the powerful AWS CloudFormation platform, used to build the larger parts of your infrastructure, with CloudFront to manage smaller parts, to ensure your cloud infrastructure is ideally suited to your development requirements.</p>
<p>In a typical blue-green deployment, CloudFormation would be used to build out an elastic load balancer, and a number of servers to support the front end servers. Chef is then used to configure those machines, and slot them into the live environment.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="remote-backup breach nobg">
<div class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-4">
<div class="row">
<img src="../img/inner-pages/cloud_auto6.jpg" alt="icon" class="img-responsive">
</div>
</div>
<div class="col-md-6 col-sm-8">
<h3>Continuous Delivery and Integration</h3>
<p>Developing in an automated cloud environment allows code updates, pushed by one of your team, to go through testing automatically. Only if the tests are passed is that code then pushed directly to a production environment.</p>
<p>This automated delivery is among the latest cloud innovations, that we’re excited to be bringing to our clients’ projects.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-above">
<div class="container">
<div class="row">
<!-- <div class="col-md-3 col-sm-3 footer-col col-xs-6">
<h3>who we are</h3>
<ul>
<li><a href="our-history.html">our history</a></li>
<li><a href="our-mission.html">our mission</a></li>
<li><a href="our-team.html">our team</a></li>
</ul>
</div> -->
<div class="col-md-4 col-sm-4 footer-col col-xs-6">
<h3>what we do</h3>
<ul>
<li><a href="cloud-architecture.html">cloud architecture</a></li>
<li><a href="cloud-migration.html">cloud migrations</a></li>
<li><a href="cloud-automation.html">cloud automation</a></li>
<li><a href="managed-services.html">managed services</a></li>
</ul>
</div>
<div class="col-md-4 col-sm-4 footer-col col-xs-6">
<h3>Info</h3>
<ul>
<li><a href="healthcare.html">healthcare in the cloud</a></li>
<li><a href="critical-system.html">backup & recovery of mission critical systems</a></li>
<li><a href="driving-manufacturing.html">driving manufacturing efficiency</a></li>
<li><a href="fleet-management.html">revolutionizing fleet management</a></li>
<li><a href="legal-directory.html">applications for the legal industry</a></li>
</ul>
</div>
<div class="col-md-4 col-sm-4 footer-col col-xs-6">
<h3>contact us</h3>
<ul>
<li><a href="contact.html">Get in touch</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-md-6">
©2017 CloudLife Consulting All rights reserved.
</div>
<div class="col-md-6 text-right">
<a href="https://twitter.com/itsacloudlife99" target="_blank"><img src="../img/tweet-footer.png" class="img-responsive" alt="twitter"></a>
<a href="https://plus.google.com/u/0/105922719332670658556/about" target="_blank"><img src="../img/gplus-footer.png" class="img-responsive" alt="gplus"></a>
<a href="https://www.linkedin.com/profile/view?id=10828186&trk=spm_pic" target="_blank"><img src="../img/linked-footer.png" class="img-responsive" alt="linkedin"></a>
</div>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="../vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="../vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="../js/jqBootstrapValidation.js"></script>
<!-- Theme JavaScript -->
<script src="../js/freelancer.min.js"></script>
</body>
</html>
|
src/Skobbler.Binding/Jars/docs/com/skobbler/ngx/package-frame.html | TrekDev/Xamarin.Android.Skobbler | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0_80) on Thu Oct 27 12:13:59 EEST 2016 -->
<title>com.skobbler.ngx (SKMaps Framework)</title>
<meta name="date" content="2016-10-27">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<h1 class="bar"><a href="../../../com/skobbler/ngx/package-summary.html" target="classFrame">com.skobbler.ngx</a></h1>
<div class="indexContainer">
<h2 title="Interfaces">Interfaces</h2>
<ul title="Interfaces">
<li><a href="SKMapsDownloadListener.html" title="interface in com.skobbler.ngx" target="classFrame"><i>SKMapsDownloadListener</i></a></li>
<li><a href="SKMapsInitializationListener.html" title="interface in com.skobbler.ngx" target="classFrame"><i>SKMapsInitializationListener</i></a></li>
</ul>
<h2 title="Classes">Classes</h2>
<ul title="Classes">
<li><a href="Config.html" title="class in com.skobbler.ngx" target="classFrame">Config</a></li>
<li><a href="SKCategories.html" title="class in com.skobbler.ngx" target="classFrame">SKCategories</a></li>
<li><a href="SKCoordinate.html" title="class in com.skobbler.ngx" target="classFrame">SKCoordinate</a></li>
<li><a href="SKMaps.html" title="class in com.skobbler.ngx" target="classFrame">SKMaps</a></li>
<li><a href="SKMapsInitSettings.html" title="class in com.skobbler.ngx" target="classFrame">SKMapsInitSettings</a></li>
<li><a href="SKMercatorCoordinate.html" title="class in com.skobbler.ngx" target="classFrame">SKMercatorCoordinate</a></li>
<li><a href="SKProxySettings.html" title="class in com.skobbler.ngx" target="classFrame">SKProxySettings</a></li>
<li><a href="SKStorageManager.html" title="class in com.skobbler.ngx" target="classFrame">SKStorageManager</a></li>
</ul>
<h2 title="Enums">Enums</h2>
<ul title="Enums">
<li><a href="SKCategories.SKPOICategory.html" title="enum in com.skobbler.ngx" target="classFrame">SKCategories.SKPOICategory</a></li>
<li><a href="SKCategories.SKPOIMainCategory.html" title="enum in com.skobbler.ngx" target="classFrame">SKCategories.SKPOIMainCategory</a></li>
<li><a href="SKMaps.SKDistanceUnitType.html" title="enum in com.skobbler.ngx" target="classFrame">SKMaps.SKDistanceUnitType</a></li>
<li><a href="SKMaps.SKLanguage.html" title="enum in com.skobbler.ngx" target="classFrame">SKMaps.SKLanguage</a></li>
</ul>
<h2 title="Exceptions">Exceptions</h2>
<ul title="Exceptions">
<li><a href="SKDeveloperKeyException.html" title="class in com.skobbler.ngx" target="classFrame">SKDeveloperKeyException</a></li>
<li><a href="SKMapsInitializationException.html" title="class in com.skobbler.ngx" target="classFrame">SKMapsInitializationException</a></li>
<li><a href="SKMapsPathsNotInitializedException.html" title="class in com.skobbler.ngx" target="classFrame">SKMapsPathsNotInitializedException</a></li>
</ul>
</div>
</body>
</html>
|
generators/app/templates/src/main/webapp/app/primeng/menu/contextmenu/contextmenudemo.component.html | sudheerj/generator-jhipster-primeng | <pe-steps [(activeIndex)]="activeIndex" (change)="onChangeStep($event);">
<!-- Basic -->
<pe-step label="Basic" [styleClass]="'container-format'">
<p-contextMenu [global]="true" [model]="documentItems" appendTo="body"></p-contextMenu>
</pe-step>
<!-- Customization -->
<pe-step label="Customization">
<p-contextMenu [target]="image" [model]="targetItems" appendTo="body"></p-contextMenu>
<img #image src="/content/primeng/assets/data/images/logos/primeng.png" alt="Logo">
</pe-step>
<!-- Table Integration-->
<pe-step label="Table Integration">
<p-contextMenu #contextmenu [model]="tableItems" appendTo="body"></p-contextMenu>
<p-table [value]="employees" [(contextMenuSelection)]="selectedEmployee" [contextMenu]="contextmenu">
<ng-template pTemplate="caption">
Employee Information
</ng-template>
<ng-template pTemplate="header">
<tr>
<th>Employee ID</th>
<th>Name</th>
<th>Email</th>
<th>Telephone</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-employee>
<tr>
<td>{{employee.id}}</td>
<td>{{employee.name}}</td>
<td>{{employee.email}}</td>
<td>{{employee.contact}}</td>
</tr>
</ng-template>
</p-table>
</pe-step>
</pe-steps>
<p-toast [style]="{marginTop: '80px'}"></p-toast>
|
docs/javadoc/ca/teamTen/recitopia/models/class-use/ApplicationManager.html | CMPUT301W13T10/Team10RecipeFinder | <!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_27) on Tue Apr 02 12:50:53 MDT 2013 -->
<TITLE>
Uses of Class ca.teamTen.recitopia.models.ApplicationManager
</TITLE>
<META NAME="date" CONTENT="2013-04-02">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class ca.teamTen.recitopia.models.ApplicationManager";
}
}
</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="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models"><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?ca/teamTen/recitopia/models//class-useApplicationManager.html" target="_top"><B>FRAMES</B></A>
<A HREF="ApplicationManager.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>ca.teamTen.recitopia.models.ApplicationManager</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">
Packages that use <A HREF="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models">ApplicationManager</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><A HREF="#ca.teamTen.recitopia.models"><B>ca.teamTen.recitopia.models</B></A></TD>
<TD> </TD>
</TR>
</TABLE>
<P>
<A NAME="ca.teamTen.recitopia.models"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
Uses of <A HREF="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models">ApplicationManager</A> in <A HREF="../../../../../ca/teamTen/recitopia/models/package-summary.html">ca.teamTen.recitopia.models</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">Methods in <A HREF="../../../../../ca/teamTen/recitopia/models/package-summary.html">ca.teamTen.recitopia.models</A> that return <A HREF="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models">ApplicationManager</A></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static <A HREF="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models">ApplicationManager</A></CODE></FONT></TD>
<TD><CODE><B>ApplicationManager.</B><B><A HREF="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html#getInstance(Application)">getInstance</A></B>(Application application)</CODE>
<BR>
Singleton-pattern getter</TD>
</TR>
</TABLE>
<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="../../../../../ca/teamTen/recitopia/models/ApplicationManager.html" title="class in ca.teamTen.recitopia.models"><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?ca/teamTen/recitopia/models//class-useApplicationManager.html" target="_top"><B>FRAMES</B></A>
<A HREF="ApplicationManager.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>
|
src/index.html | sisay82/RifugiCAI | <!DOCTYPE html>
<html>
<head>
<base href="/">
<title>Rifugi CAI</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Management system of shelters for Club Alpino Italiano">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<link href="/assets/css/rifugiCai.css" rel="stylesheet">
</head>
<body>
<bc-app-component>Loading rifugi CAI...</bc-app-component>
</body>
</html> |
src/building-blocks/rounded-social-buttons/rounded-social-buttons.html | zurb/building-blocks | <div class="rounded-social-buttons">
<a class="social-button facebook" href="#"></a>
<a class="social-button twitter" href="#"></a>
<a class="social-button linkedin" href="#"></a>
<a class="social-button youtube" href="#"></a>
<a class="social-button instagram" href="#"></a>
<a class="social-button pinterest" href="#"></a>
<a class="social-button google-plus" href="#"></a>
<a class="social-button github" href="#"></a>
<a class="social-button tumblr" href="#"></a>
</div>
|
doc/java/jdk7/javax/swing/class-use/JTree.DynamicUtilTreeNode.html | fbiville/annotation-processing-ftw | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.6.0_18) on Thu Dec 18 17:18:40 PST 2014 -->
<title>Uses of Class javax.swing.JTree.DynamicUtilTreeNode (Java Platform SE 7 )</title>
<meta name="date" content="2014-12-18">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class javax.swing.JTree.DynamicUtilTreeNode (Java Platform SE 7 )";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../javax/swing/JTree.DynamicUtilTreeNode.html" title="class in javax.swing">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javax/swing/class-use/JTree.DynamicUtilTreeNode.html" target="_top">Frames</a></li>
<li><a href="JTree.DynamicUtilTreeNode.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 javax.swing.JTree.DynamicUtilTreeNode" class="title">Uses of Class<br>javax.swing.JTree.DynamicUtilTreeNode</h2>
</div>
<div class="classUseContainer">No usage of javax.swing.JTree.DynamicUtilTreeNode</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="../../../javax/swing/JTree.DynamicUtilTreeNode.html" title="class in javax.swing">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><strong>Java™ Platform<br>Standard Ed. 7</strong></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?javax/swing/class-use/JTree.DynamicUtilTreeNode.html" target="_top">Frames</a></li>
<li><a href="JTree.DynamicUtilTreeNode.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small><font size="-1"> <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a> <br>For further API reference and developer documentation, see <a href="http://docs.oracle.com/javase/7/docs/index.html" target="_blank">Java SE Documentation</a>. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.<br> <a href="../../../../legal/cpyr.html">Copyright</a> © 1993, 2015, Oracle and/or its affiliates. All rights reserved. </font></small></p>
</body>
</html>
|
app/src/assets/css/modals.css | piRstone/monopoly-money | /* line 1, ../../sass/configuration.scss */
body {
font-family: Helvetica;
font-size: 14px;
background-color: whitesmoke;
}
/* line 13, ../../sass/configuration.scss */
.clear {
clear: both;
}
/* line 3, ../../sass/modals.scss */
.modalBackground {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 5;
background-color: rgba(0, 0, 0, 0.6);
}
/* line 11, ../../sass/modals.scss */
.modalBackground.transparent {
background-color: transparent;
}
/* line 15, ../../sass/modals.scss */
.modalCard {
position: absolute;
background-color: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
z-index: 6;
top: 50%;
left: 50%;
transform: translate(-50%, -40%);
padding: 10px;
border-radius: 5px;
border: 1px solid #CACACA;
width: 80%;
}
/* line 27, ../../sass/modals.scss */
.modalCard .m-box {
border: 1px solid #000;
padding: 2px;
}
/* line 31, ../../sass/modals.scss */
.modalCard .m-box .terrain .m-title {
padding: 10px;
text-align: center;
border: 1px solid #000;
text-transform: uppercase;
}
/* line 36, ../../sass/modals.scss */
.modalCard .m-box .terrain .m-title.white {
color: #fff;
}
/* line 39, ../../sass/modals.scss */
.modalCard .m-box .terrain .m-title p:nth-child(1) {
font-size: 14px;
}
/* line 42, ../../sass/modals.scss */
.modalCard .m-box .terrain .m-title p:nth-child(2) {
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
/* line 48, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices {
padding: 10px 0;
}
/* line 50, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices table {
width: 100%;
}
/* line 52, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices table tr {
margin-bottom: 4px;
}
/* line 54, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices table tr.bold {
font-weight: bold;
color: #8BC34A;
}
/* line 58, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices table tr td {
padding: 2px 0;
}
/* line 60, ../../sass/modals.scss */
.modalCard .m-box .terrain .prices table tr td:nth-child(1) {
text-align: center;
}
/* line 67, ../../sass/modals.scss */
.modalCard .m-box .terrain .info {
text-align: center;
border-top: 1px solid;
border-bottom: 1px solid;
padding: 10px;
margin: 0 4px;
}
/* line 74, ../../sass/modals.scss */
.modalCard .m-box .terrain .info p span {
font-weight: bold;
}
/* line 79, ../../sass/modals.scss */
.modalCard .m-box .terrain .houses {
padding: 10px;
}
/* line 81, ../../sass/modals.scss */
.modalCard .m-box .terrain .houses table {
width: 100%;
}
/* line 84, ../../sass/modals.scss */
.modalCard .m-box .terrain .houses table tr td {
font-weight: bold;
}
/* line 86, ../../sass/modals.scss */
.modalCard .m-box .terrain .houses table tr td span {
font-weight: normal;
}
/* line 93, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell, .modalCard .m-box .terrain .hypothec {
text-align: center;
padding: 50px 0;
}
/* line 96, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell p, .modalCard .m-box .terrain .hypothec p {
font-size: 16px;
}
/* line 99, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div, .modalCard .m-box .terrain .hypothec div {
padding: 20px 0;
}
/* line 101, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div button, .modalCard .m-box .terrain .hypothec div button {
border: none;
color: #fff;
padding: 15px;
font-size: 18px;
}
/* line 106, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div button:nth-child(1), .modalCard .m-box .terrain .hypothec div button:nth-child(1) {
background-color: #8BC34A;
}
/* line 108, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div button:nth-child(1):active, .modalCard .m-box .terrain .hypothec div button:nth-child(1):active {
background-color: #71a436;
}
/* line 112, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div button:nth-child(2), .modalCard .m-box .terrain .hypothec div button:nth-child(2) {
background-color: #F44336;
}
/* line 114, ../../sass/modals.scss */
.modalCard .m-box .terrain .confirm-buy-or-sell div button:nth-child(2):active, .modalCard .m-box .terrain .hypothec div button:nth-child(2):active {
background-color: #ea1c0d;
}
/* line 121, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses {
width: 100%;
}
/* line 125, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul.full-houses li {
width: 20%;
}
/* line 130, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul.hotel li {
width: 100%;
}
/* line 134, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul li {
float: left;
width: 25%;
height: 40px;
cursor: pointer;
box-sizing: border-box;
background-image: url("../img/house.png");
background-size: 40px 33px;
background-repeat: no-repeat;
background-position: center;
opacity: .3;
}
/* line 145, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul li.hotel {
background-image: url("../img/hotel.png");
background-size: 50px 43px;
}
/* line 148, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul li.hotel.red {
background-image: url("../img/hotel_red.png");
opacity: 1;
}
/* line 153, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul li.green {
background-image: url("../img/house_green.png");
opacity: 1;
}
/* line 157, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses ul li:last-child {
background: none;
display: none;
}
/* line 163, ../../sass/modals.scss */
.modalCard .m-box .terrain .add-houses p {
color: red;
margin: 5px 0;
text-align: center;
}
/* line 170, ../../sass/modals.scss */
.modalCard .m-box .gare, .modalCard .m-box .company {
text-align: center;
}
/* line 172, ../../sass/modals.scss */
.modalCard .m-box .gare img, .modalCard .m-box .company img {
width: 60%;
}
/* line 175, ../../sass/modals.scss */
.modalCard .m-box .gare h4, .modalCard .m-box .company h4 {
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
}
/* line 181, ../../sass/modals.scss */
.modalCard .m-box .gare p, .modalCard .m-box .company p {
margin-bottom: 10px;
}
/* line 184, ../../sass/modals.scss */
.modalCard .m-box .gare .table, .modalCard .m-box .company .table {
text-align: center;
padding: 10px 5px;
}
/* line 187, ../../sass/modals.scss */
.modalCard .m-box .gare .table table, .modalCard .m-box .company .table table {
width: 100%;
}
/* line 190, ../../sass/modals.scss */
.modalCard .m-box .gare .table table tr.bold, .modalCard .m-box .company .table table tr.bold {
font-weight: bold;
color: #8BC34A;
}
/* line 194, ../../sass/modals.scss */
.modalCard .m-box .gare .table table tr td, .modalCard .m-box .company .table table tr td {
padding: 2px 0;
}
/* line 196, ../../sass/modals.scss */
.modalCard .m-box .gare .table table tr td:nth-child(1), .modalCard .m-box .company .table table tr td:nth-child(1) {
text-align: left;
}
/* line 199, ../../sass/modals.scss */
.modalCard .m-box .gare .table table tr td:nth-child(2), .modalCard .m-box .company .table table tr td:nth-child(2) {
font-weight: bold;
}
/* line 207, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property {
text-align: center;
padding: 50px 0;
}
/* line 210, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property p {
font-size: 16px;
}
/* line 213, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div {
padding: 20px 0;
}
/* line 215, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div button {
border: none;
color: #fff;
padding: 15px;
font-size: 18px;
}
/* line 220, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div button:nth-child(1) {
background-color: #8BC34A;
}
/* line 222, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div button:nth-child(1):active {
background-color: #71a436;
}
/* line 226, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div button:nth-child(2) {
background-color: #F44336;
}
/* line 228, ../../sass/modals.scss */
.modalCard .m-box .hypothec-property div button:nth-child(2):active {
background-color: #ea1c0d;
}
/* line 235, ../../sass/modals.scss */
.modalCard .m-box .swap-property {
text-align: center;
padding: 50px 0;
}
/* line 238, ../../sass/modals.scss */
.modalCard .m-box .swap-property p {
font-size: 16px;
font-weight: bold;
}
/* line 241, ../../sass/modals.scss */
.modalCard .m-box .swap-property p.sub {
font-size: 12px;
font-weight: 100;
}
/* line 247, ../../sass/modals.scss */
.modalCard .m-box .swap-property ul li {
background-color: whitesmoke;
padding: 10px;
margin: 10px;
font-weight: bold;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
transition: box-shadow .1s ease;
}
/* line 254, ../../sass/modals.scss */
.modalCard .m-box .swap-property ul li:active {
box-shadow: 0 0 0 #000;
}
/* line 259, ../../sass/modals.scss */
.modalCard .m-box .swap-property div {
padding: 20px 0;
}
/* line 261, ../../sass/modals.scss */
.modalCard .m-box .swap-property div button {
border: none;
color: #fff;
padding: 8px;
font-size: 15px;
background-color: #F44336;
}
/* line 267, ../../sass/modals.scss */
.modalCard .m-box .swap-property div button:active {
background-color: #ea1c0d;
}
/* line 273, ../../sass/modals.scss */
.modalCard .m-box .hypo {
text-align: center;
}
/* line 276, ../../sass/modals.scss */
.modalCard .m-box .hypo p span {
font-weight: bold;
}
/* line 281, ../../sass/modals.scss */
.modalCard .m-box .pay {
text-align: center;
padding: 20px 0;
box-sizing: border-box;
margin: 10px;
border: 1px dashed #000;
}
/* line 287, ../../sass/modals.scss */
.modalCard .m-box .pay p {
font-size: 20px;
}
/* line 289, ../../sass/modals.scss */
.modalCard .m-box .pay p span {
font-weight: bold;
}
/* line 292, ../../sass/modals.scss */
.modalCard .m-box .pay p.doubled {
font-size: 13px;
}
/* line 294, ../../sass/modals.scss */
.modalCard .m-box .pay p.doubled span {
height: 10px;
width: 10px;
border: 1px solid #000;
display: inline-block;
}
/* line 303, ../../sass/modals.scss */
.modalCard .m-box .compagnie-ask {
padding: 20px 0;
margin: 10px;
box-sizing: border-box;
border: 1px dashed #000;
text-align: center;
}
/* line 309, ../../sass/modals.scss */
.modalCard .m-box .compagnie-ask p {
margin: 10px 0;
}
/* line 313, ../../sass/modals.scss */
.modalCard .m-box .compagnie-ask form input {
display: inline-block;
padding: 10px;
border: 1px solid #eee;
width: 50%;
font-size: 14px;
}
/* line 320, ../../sass/modals.scss */
.modalCard .m-box .compagnie-ask form button {
display: inline-block;
padding: 10px;
background-color: #8BC34A;
border: none;
color: #fff;
font-size: 14px;
vertical-align: middle;
}
/* line 331, ../../sass/modals.scss */
.modalCard .m-box .free-parking {
text-align: center;
}
/* line 333, ../../sass/modals.scss */
.modalCard .m-box .free-parking img {
width: 50%;
}
/* line 336, ../../sass/modals.scss */
.modalCard .m-box .free-parking h3 {
font-size: 22px;
}
/* line 339, ../../sass/modals.scss */
.modalCard .m-box .free-parking h4 {
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
}
/* line 345, ../../sass/modals.scss */
.modalCard .m-box .free-parking div {
padding: 20px 0;
margin: 10px;
background-color: whitesmoke;
border: 1px dashed;
}
/* line 350, ../../sass/modals.scss */
.modalCard .m-box .free-parking div p {
margin-bottom: 10px;
font-size: 16px;
}
/* line 353, ../../sass/modals.scss */
.modalCard .m-box .free-parking div p span {
font-weight: bold;
}
/* line 357, ../../sass/modals.scss */
.modalCard .m-box .free-parking div button {
border: none;
color: #fff;
padding: 15px;
font-size: 18px;
}
/* line 362, ../../sass/modals.scss */
.modalCard .m-box .free-parking div button.yes {
background-color: #8BC34A;
}
/* line 364, ../../sass/modals.scss */
.modalCard .m-box .free-parking div button.yes:active {
background-color: #71a436;
}
/* line 368, ../../sass/modals.scss */
.modalCard .m-box .free-parking div button.no {
background-color: #F44336;
}
/* line 370, ../../sass/modals.scss */
.modalCard .m-box .free-parking div button.no:active {
background-color: #ea1c0d;
}
/* line 377, ../../sass/modals.scss */
.modalCard .m-box .action {
text-align: center;
padding: 10px;
}
/* line 380, ../../sass/modals.scss */
.modalCard .m-box .action .hypothec {
height: 40px;
width: 40px;
display: inline-block;
margin-right: 20px;
background-image: url("../img/hypothec.png");
background-size: 35px 35px;
background-position: center;
background-repeat: no-repeat;
vertical-align: middle;
}
/* line 391, ../../sass/modals.scss */
.modalCard .m-box .action button {
border: none;
color: #fff;
padding: 15px;
font-size: 18px;
vertical-align: middle;
}
/* line 397, ../../sass/modals.scss */
.modalCard .m-box .action button:nth-child(1) {
background-color: #8BC34A;
}
/* line 399, ../../sass/modals.scss */
.modalCard .m-box .action button:nth-child(1):active {
background-color: #71a436;
}
/* line 403, ../../sass/modals.scss */
.modalCard .m-box .action button:nth-child(2) {
background-color: #F44336;
}
/* line 405, ../../sass/modals.scss */
.modalCard .m-box .action button:nth-child(2):active {
background-color: #ea1c0d;
}
/* line 409, ../../sass/modals.scss */
.modalCard .m-box .action button.green {
background-color: #8BC34A;
}
/* line 411, ../../sass/modals.scss */
.modalCard .m-box .action button.green:active {
background-color: #71a436;
}
/* line 416, ../../sass/modals.scss */
.modalCard .m-box .action .swap {
height: 40px;
width: 40px;
display: inline-block;
margin-left: 20px;
background-image: url("../img/swap.png");
background-size: 35px 35px;
background-position: center;
background-repeat: no-repeat;
vertical-align: middle;
}
/* line 426, ../../sass/modals.scss */
.modalCard .m-box .action .swap.disabled {
opacity: .3;
cursor: default;
}
/* line 434, ../../sass/modals.scss */
.modalAddMoney, .modalDelMoney {
position: fixed;
bottom: 60px;
left: 50%;
transform: translate(-50%, -50%);
width: 95%;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 5px;
box-sizing: border-box;
padding: 10px;
z-index: 6;
}
/* line 447, ../../sass/modals.scss */
.modalAddMoney .m form input, .modalDelMoney .m form input {
height: 40px;
border: 1px solid #fff;
width: 70%;
font-size: 30px;
color: #757575;
vertical-align: middle;
}
/* line 455, ../../sass/modals.scss */
.modalAddMoney .m form button, .modalDelMoney .m form button {
border-radius: 50%;
border: none;
box-sizing: border-box;
color: #fff;
font-size: 30px;
height: 50px;
width: 50px;
padding-bottom: 9px;
vertical-align: middle;
}
/* line 465, ../../sass/modals.scss */
.modalAddMoney .m form button.add-money, .modalDelMoney .m form button.add-money {
background-color: #8BC34A;
}
/* line 467, ../../sass/modals.scss */
.modalAddMoney .m form button.add-money:active, .modalDelMoney .m form button.add-money:active {
background-color: #71a436;
}
/* line 471, ../../sass/modals.scss */
.modalAddMoney .m form button.del-money, .modalDelMoney .m form button.del-money {
background-color: #F44336;
}
/* line 473, ../../sass/modals.scss */
.modalAddMoney .m form button.del-money:active, .modalDelMoney .m form button.del-money:active {
background-color: #ea1c0d;
}
/* line 477, ../../sass/modals.scss */
.modalAddMoney .m form button.start, .modalDelMoney .m form button.start {
border-radius: 4px;
width: 100%;
background-color: #DAE9D4;
background-image: url("../img/start.png");
background-size: 180px;
background-position: center;
background-repeat: no-repeat;
text-shadow: 2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000, 1px 1px #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000;
text-align: left;
}
/* line 487, ../../sass/modals.scss */
.modalAddMoney .m form button.start:active, .modalDelMoney .m form button.start:active {
background-color: #bdd8b2;
}
/* line 495, ../../sass/modals.scss */
.modalBirthday {
position: absolute;
background-color: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
z-index: 6;
top: 50%;
left: 50%;
transform: translate(-50%, -40%);
padding: 10px;
border-radius: 5px;
border: 1px solid #CACACA;
width: 80%;
}
/* line 507, ../../sass/modals.scss */
.modalBirthday .b {
text-align: center;
}
/* line 509, ../../sass/modals.scss */
.modalBirthday .b img {
width: 40%;
}
/* line 512, ../../sass/modals.scss */
.modalBirthday .b h3 {
font-size: 22px;
}
/* line 515, ../../sass/modals.scss */
.modalBirthday .b h4 {
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 10px;
}
/* line 521, ../../sass/modals.scss */
.modalBirthday .b p {
margin: 30px 0;
}
/* line 524, ../../sass/modals.scss */
.modalBirthday .b button {
border: none;
color: #fff;
padding: 15px;
font-size: 18px;
background-color: #2196F3;
}
/* line 530, ../../sass/modals.scss */
.modalBirthday .b button:active {
background-color: #51adf6;
}
/* line 536, ../../sass/modals.scss */
.modalSetUser {
position: fixed;
top: 50%;
left: 50%;
z-index: 6;
transform: translate(-50%, -50%);
width: 95%;
background-color: rgba(0, 0, 0, 0.7);
border-radius: 5px;
box-sizing: border-box;
padding: 10px;
}
|
ocr_extracted/W29385_text/page3.html | datamade/elpc_bakken |
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>W29385_text</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;">
<div style="float: left;">
<a href="page2.html">«</a>
</div>
<div style="float: right;">
</div>
</div>
<hr/>
<div style="position: absolute; margin-left: 687px; margin-top: 137px;">
<p class="styleSans20.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">HALLIBURTDN <br/>6360 EAST YELLOWSTONE va - EVANSVILLE, WY 82636 </p>
</div>
<div style="position: absolute; margin-left: 880px; margin-top: 357px;">
<p class="styleSans8.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">TEL: 307-472-5757 ' FAX: 307-232-2097 </p>
</div>
<div style="position: absolute; margin-left: 770px; margin-top: 659px;">
<p class="styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Cefified </p>
</div>
<div style="position: absolute; margin-left: 1175px; margin-top: 659px;">
<p class="styleSans18.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Survey Sheet </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 990px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Customer: </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 1155px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Well: </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 1320px;">
<p class="styleSans17.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Legak </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 1512px;">
<p class="styleSans16.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">County: </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 1677px;">
<p class="styleSans12.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">State: </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 1842px;">
<p class="styleSans14.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Calculation Method: </p>
</div>
<div style="position: absolute; margin-left: 357px; margin-top: 2200px;">
<p class="styleSans15.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">I certify that the attached survey is true and correct to the best of my knowledge. </p>
</div>
<div style="position: absolute; margin-left: 1155px; margin-top: 2447px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>"></p>
</div>
<div style="position: absolute; margin-left: 962px; margin-top: 2585px;">
<p class="styleSans2.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">_—l——_ GINA“ ‘Alnllnnn </p>
</div>
<div style="position: absolute; margin-left: 1100px; margin-top: 2640px;">
<p class="styleSans11.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">OUUll VVdIIdUU <br/>Well P|anner </p>
</div>
<div style="position: absolute; margin-left: 990px; margin-top: 3162px;">
<p class="styleSans6.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">HALLIBURTON ROCKIES DIVISION </p>
</div>
<div style="position: absolute; margin-left: 1127px; margin-top: 990px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Petro Hunt </p>
</div>
<div style="position: absolute; margin-left: 1100px; margin-top: 1155px;">
<p class="styleSans14.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">State 159-94-253-36-1 H </p>
</div>
<div style="position: absolute; margin-left: 1100px; margin-top: 1320px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Sec. 25-T159N-R94W </p>
</div>
<div style="position: absolute; margin-left: 1127px; margin-top: 1512px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Burke </p>
</div>
<div style="position: absolute; margin-left: 1127px; margin-top: 1677px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">North Dakota </p>
</div>
<div style="position: absolute; margin-left: 1127px; margin-top: 1842px;">
<p class="styleSans10.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Minimum </p>
</div>
<div style="position: absolute; margin-left: 1451px; margin-top: 1842px;">
<p class="styleSans13.0000<enum PANGO_WEIGHT_NORMAL of type PangoWeight><enum PANGO_STYLE_NORMAL of type PangoStyle>">Curvature </p>
</div>
</body>
</html>
|
Integra-0.2/index.html | sergioloss/angular | <!DOCTYPE html>
<html ng-app="Integra-0.1" ng-controller="mainController">
<head>
<meta charset="utf-8" />
<title>{{ Page.Title() }}</title>
<!--script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic">
<style type="text/css">
header, section, footer, aside, nav, article, figure, audio, video, canvas { display:block; }
</style>
<link rel="stylesheet" type="text/css" href="/content/angular-material.css" />
<link rel="stylesheet" type="text/css" href="/content/ui-grid.css" />
<link rel="stylesheet" type="text/css" href="/content/main.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<div id="div-container">
<div class='inner'>
<header>
<div ui-view="header" id="div-header"></div>
<div ui-view="main-menu" id="main-menu"></div>
</header>
<nav>
<div ui-view="nav" id="div-nav"></div>
</nav>
<section id="content">
<!--
<h2>{{ Page.Subtitle() != "" ? Page.Title() + " - " + Page.Subtitle() : Page.Title() }}</h2>
-->
<div ui-view="content" id="div-content">Content</div>
</section>
<footer>
<div ui-view="footer" id="div-footer">Footer</div>
</footer>
</div>
</div>
<!-- scripts -->
<script src="scripts/angular.js"></script>
<script src="scripts/angular-ui-router.js"></script>
<script src="scripts/underscore.js"></script>
<script src="scripts/angular-messages.js"></script>
<script src="scripts/angular-aria.js"></script>
<script src="scripts/angular-animate.js"></script>
<script src="scripts/angular-material.js"></script>
<script src="scripts/ngStorage.js"></script>
<!--
<script src="scripts/ui-grid.js"></script>
-->
<script src="scripts/angular-auto-scroll.js"></script>
<!-- scripts-controllers -->
<script src="scripts/main.js"></script>
<script src="controllers/AuthenticationController.js"></script>
<script src="controllers/HomeController.js"></script>
<script src="controllers/MainMenuController.js"></script>
<script src="controllers/IntegratorsController.js"></script>
<!-- scripts for fake backend -->
<script src="scripts/angular-mocks.js"></script>
<script src="scripts/fakeBackend.js"></script>
</body>
</html> |
docs/api/ZptSharp.Expressions.IGetsExpressionType.html | csf-dev/ZPT-Sharp | <!DOCTYPE html>
<!--[if IE]><![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Interface IGetsExpressionType
</title>
<meta name="viewport" content="width=device-width">
<meta name="title" content="Interface IGetsExpressionType
">
<meta name="generator" content="docfx 2.56.6.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" data-offset="120">
<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" data-uid="ZptSharp.Expressions.IGetsExpressionType">
<h1 id="ZptSharp_Expressions_IGetsExpressionType" data-uid="ZptSharp.Expressions.IGetsExpressionType" class="text-break">Interface IGetsExpressionType
</h1>
<div class="markdown level0 summary"><p>An object which can determine the string identifier which indicates an expression type.
This is typically a prefix to the expression body.</p>
</div>
<div class="markdown level0 conceptual"></div>
<h6><strong>Namespace</strong>: <a class="xref" href="ZptSharp.Expressions.html">ZptSharp.Expressions</a></h6>
<h6><strong>Assembly</strong>: ZptSharp.Abstractions.dll</h6>
<h5 id="ZptSharp_Expressions_IGetsExpressionType_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IGetsExpressionType</code></pre>
</div>
<h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/csf-dev/ZPT-Sharp/new/master/apiSpec/new?filename=ZptSharp_Expressions_IGetsExpressionType_GetExpressionType_System_String_.md&value=---%0Auid%3A%20ZptSharp.Expressions.IGetsExpressionType.GetExpressionType(System.String)%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/csf-dev/ZPT-Sharp/blob/production/ZptSharp.Abstractions/Expressions/IGetsExpressionType.cs/#L14">View Source</a>
</span>
<a id="ZptSharp_Expressions_IGetsExpressionType_GetExpressionType_" data-uid="ZptSharp.Expressions.IGetsExpressionType.GetExpressionType*"></a>
<h4 id="ZptSharp_Expressions_IGetsExpressionType_GetExpressionType_System_String_" data-uid="ZptSharp.Expressions.IGetsExpressionType.GetExpressionType(System.String)">GetExpressionType(String)</h4>
<div class="markdown level1 summary"><p>Gets the expression type for the specified <code data-dev-comment-type="paramref" class="paramref">expression</code>.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">string GetExpressionType(string expression)</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.String</span></td>
<td><span class="parametername">expression</span></td>
<td><p>An expression.</p>
</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.String</span></td>
<td><p>The expression type.</p>
</td>
</tr>
</tbody>
</table>
</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/csf-dev/ZPT-Sharp/new/master/apiSpec/new?filename=ZptSharp_Expressions_IGetsExpressionType.md&value=---%0Auid%3A%20ZptSharp.Expressions.IGetsExpressionType%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/csf-dev/ZPT-Sharp/blob/production/ZptSharp.Abstractions/Expressions/IGetsExpressionType.cs/#L7" class="contribution-link">View Source</a>
</li>
</ul>
</div>
<nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
<h5>In This Article</h5>
<div></div>
</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>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>
|
a1710dk.html | a1710dk/team_project | <BODY>
<title> VERSION 2 </title>
<h1>
<b>Hi ALL.</b>
</h1>
</BODY>
|
views/template.html | honger05/mui | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="../css/mui.min.css">
</head>
<body>
<header class="mui-bar mui-bar-nav">
<a id="back" class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
<a id="menu" class="mui-action-menu mui-icon mui-icon-bars mui-pull-right" style="display: none;"></a>
<h1 id="title" class="mui-title"></h1>
</header>
<div class="mui-loader">加载中...</div>
</body>
<script src="../js/mui.min.js"></script>
<script>
mui.init({
gestureConfig: {
doubletap: true
}
})
var contentWebview, self;
var titleEl = document.getElementById('title');
mui.plusReady(function() {
self = plus.webview.currentWebview();
})
mui.back = function() {
var current = plus.webview.currentWebview();
current.hide('auto');
setTimeout(function() {
titleEl.className = 'mui-title mui-fadeout';
titleEl.innerText = '';
if (contentWebview == null) {
contentWebview = current.children()[0];
}
contentWebview.hide('none');
}, 350)
}
var menuEl = document.getElementById('menu');
window.addEventListener('header:update', function(e) {
var title = e.detail.title;
var showMenu = e.detail.showMenu;
var href = e.detail.target;
var aniShow = e.detail.aniShow;
titleEl.innerHTML = title;
titleEl.className = 'mui-title mui-fadein';
var display = showMenu ? '' : 'none';
if (showMenu) {
mui.options.keyEventBind.menubutton = true;
} else {
mui.options.keyEventBind.menubutton = false;
}
menuEl.style.display = display;
if (mui.os.android && parseFloat(mui.os.version) >= 4.4) {
if (contentWebview == null) {
contentWebview = self.children()[0];
}
if (contentWebview.getURL() != href) {
contentWebview.loadURL(href);
} else {
contentWebview.show();
}
setTimeout(function() {
self.show(aniShow);
}, 10)
}
})
document.getElementById("menu").addEventListener('tap', function(e) {
e.stopPropagation();
if(contentWebview==null){
contentWebview = plus.webview.currentWebview().children()[0];
}
contentWebview.evalJS('mui("#topPopover").popover("toggle")');
});
document.querySelector('header').addEventListener('doubletap',function () {
if(contentWebview==null){
contentWebview = plus.webview.currentWebview().children()[0];
}
contentWebview.evalJS('mui.scrollTo(0, 100)');
});
</script>
</html>
|
_content/85-events/2017-03-29-event-college-of-dupage-homeland-security-training-institute-live-countering-violent-extremism.html | ICJIA/icjia-public-website | ---
title: 'Event: College of Dupage Homeland Security Training Institute Live - Countering Violent Extremism'
_template: event
siteLink: 'https://www.eventbrite.com/e/college-of-dupage-presents-hsti-live-countering-violent-extremism-registration-28539248661?utm-medium=discovery&utm-campaign=social&utm-content=attendeeshare&aff=escb&utm-source=cp&utm-term=listing'
---
<p>Dr. Megan Alderden, Director of Research at the Illinois Criminal Justice Information Authority's Research & Analysis Unit, will be serving on a panel to discuss prevention techniques aimed at reducing the opportunities for recruitment of vulnerable individuals in the community to ideologically inspired targeted violence at the College of Dupage's Homeland Security Training Institute's "Countering Violent Extremism" symposium. Dr. Alderden will share information and insights from ICJIA's Targeted Violence Prevention Program work in Illinois. Dr. Alderden will be joined by Dr. Jennifer Hesterman (Colonel, USAF, retired) who is an expert on the terror-crime nexus, and Dr. Daveed Gartenstein-Ross, CEO of Valens Global, a private company that consults on counterterrorism. The event is free and open to the public, but advanced registration is required. Attendees may participate in person or via a live online webcast.</p>
<p>Date: Wednesday, March 29, 2017<br>
Time: 10am to 3pm<br>
Location: College of DuPage, Homeland Education Center, 425 Fawell Road, Glen Ellyn, IL 60137</p>
<p><a href="https://www.eventbrite.com/e/college-of-dupage-presents-hsti-live-countering-violent-extremism-registration-28539248661?utm-medium=discovery&utm-campaign=social&utm-content=attendeeshare&aff=escb&utm-source=cp&utm-term=listing">Click here to register >></a></p> |
Rust/share/doc/rust/html/rustc/middle/privacy/type.ExternalExports.html | ArcherSys/ArcherSys | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="generator" content="rustdoc">
<meta name="description" content="API documentation for the Rust `ExternalExports` type in crate `rustc`.">
<meta name="keywords" content="rust, rustlang, rust-lang, ExternalExports">
<title>rustc::middle::privacy::ExternalExports - Rust</title>
<link rel="stylesheet" type="text/css" href="../../../main.css">
<link rel="shortcut icon" href="http://www.rust-lang.org/favicon.ico">
</head>
<body class="rustdoc">
<!--[if lte IE 8]>
<div class="warning">
This old browser is unsupported and will most likely display funky
things.
</div>
<![endif]-->
<section class="sidebar">
<a href='../../../rustc/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a>
<p class='location'><a href='../../index.html'>rustc</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>privacy</a></p><script>window.sidebarCurrent = {name: 'ExternalExports', ty: 'type', relpath: ''};</script><script defer src="sidebar-items.js"></script>
</section>
<nav class="sub">
<form class="search-form js-only">
<div class="search-container">
<input class="search-input" name="search"
autocomplete="off"
placeholder="Click or press 'S' to search, '?' for more options..."
type="search">
</div>
</form>
</nav>
<section id='main' class="content type">
<h1 class='fqn'><span class='in-band'><a href='../../index.html'>rustc</a>::<wbr><a href='../index.html'>middle</a>::<wbr><a href='index.html'>privacy</a>::<wbr><a class='type' href=''>ExternalExports</a><wbr><a class='stability Unstable' title=''>Unstable</a></span><span class='out-of-band'><span id='render-detail'>
<a id="collapse-all" href="#">[-]</a> <a id="expand-all" href="#">[+]</a>
</span><a id='src-127641' href='../../../src/rustc/middle/privacy.rs.html#28'>[src]</a></span></h1>
<pre class='rust typedef'>type ExternalExports = <a class='type' href='../../../rustc/util/nodemap/type.DefIdSet.html' title='rustc::util::nodemap::DefIdSet'>DefIdSet</a>;</pre><div class='docblock'><p>A set containing all exported definitions from external crates.
The set does not contain any entries from local crates.</p>
</div></section>
<section id='search' class="content hidden"></section>
<section class="footer"></section>
<div id="help" class="hidden">
<div class="shortcuts">
<h1>Keyboard shortcuts</h1>
<dl>
<dt>?</dt>
<dd>Show this help dialog</dd>
<dt>S</dt>
<dd>Focus the search field</dd>
<dt>⇤</dt>
<dd>Move up in search results</dd>
<dt>⇥</dt>
<dd>Move down in search results</dd>
<dt>⏎</dt>
<dd>Go to active search result</dd>
</dl>
</div>
<div class="infos">
<h1>Search tricks</h1>
<p>
Prefix searches with a type followed by a colon (e.g.
<code>fn:</code>) to restrict the search to a given type.
</p>
<p>
Accepted types are: <code>fn</code>, <code>mod</code>,
<code>struct</code>, <code>enum</code>,
<code>trait</code>, <code>typedef</code> (or
<code>tdef</code>).
</p>
</div>
</div>
<script>
window.rootPath = "../../../";
window.currentCrate = "rustc";
window.playgroundUrl = "";
</script>
<script src="../../../jquery.js"></script>
<script src="../../../main.js"></script>
<script async src="../../../search-index.js"></script>
</body>
</html> |
6.1.7/item-play-mixin.html | K15t/k15t-website-styleguide | <!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>K15t Theme Styleguide</title>
<meta name="description" content="">
<meta name="generator" content="kss-node">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="kss-assets/kss.css">
<link rel="stylesheet" href="base.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css">
</head>
<body id="kss-node" class="kss-fullscreen-mode">
<div class="kss-sidebar kss-style">
<header class="kss-header">
<h1 class="kss-doc-title">K15t Theme Styleguide</h1>
</header>
<nav class="kss-nav">
<ul class="kss-nav__menu">
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="./">
<span class="kss-nav__ref">0</span
><span class="kss-nav__name">Overview</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-admonition.html">
<span class="kss-nav__ref">1</span><span class="kss-nav__name">Admonition</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-anchor.html">
<span class="kss-nav__ref">2</span><span class="kss-nav__name">Anchor</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-avatar.html">
<span class="kss-nav__ref">3</span><span class="kss-nav__name">Avatar</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-badge.html">
<span class="kss-nav__ref">4</span><span class="kss-nav__name">Badge</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-benefit.html">
<span class="kss-nav__ref">5</span><span class="kss-nav__name">Benefit</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-button.html">
<span class="kss-nav__ref">6</span><span class="kss-nav__name">Button</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-card.html">
<span class="kss-nav__ref">7</span><span class="kss-nav__name">Card</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-expander.html">
<span class="kss-nav__ref">8</span><span class="kss-nav__name">Expander</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-hero.html">
<span class="kss-nav__ref">9</span><span class="kss-nav__name">Hero</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-image.html">
<span class="kss-nav__ref">10</span><span class="kss-nav__name">Image</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-introduction.html">
<span class="kss-nav__ref">11</span><span class="kss-nav__name">Introduction</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-list.html">
<span class="kss-nav__ref">12</span><span class="kss-nav__name">List</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-navigation.html">
<span class="kss-nav__ref">13</span><span class="kss-nav__name">Navigation</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-play.html">
<span class="kss-nav__ref">14</span><span class="kss-nav__name">Play</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-pointer.html">
<span class="kss-nav__ref">15</span><span class="kss-nav__name">Pointer</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-pricing.html">
<span class="kss-nav__ref">16</span><span class="kss-nav__name">Pricing</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-shareicons.html">
<span class="kss-nav__ref">17</span><span class="kss-nav__name">ShareIcons</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-stripe.html">
<span class="kss-nav__ref">18</span><span class="kss-nav__name">Stripe</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-teaser.html">
<span class="kss-nav__ref">19</span><span class="kss-nav__name">Teaser</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-text.html">
<span class="kss-nav__ref">20</span><span class="kss-nav__name">Text</span>
</a>
</li>
<li class="kss-nav__menu-item">
<a class="kss-nav__menu-link" href="section-text-stripe.html">
<span class="kss-nav__ref">21</span><span class="kss-nav__name">Text Stripe</span>
</a>
</li>
</ul>
</nav>
</div>
<article role="main" class="kss-main">
<div id="kssref-play-mixin" class="kss-section kss-section--depth-2 is-fullscreen">
<div class="kss-style">
<h2 class="kss-title kss-title--level-2">
<a class="kss-title__permalink" href="#kssref-play-mixin">
<span class="kss-title__ref">
14.1
<span class="kss-title__permalink-hash">
#Play - Mixin
</span>
</span>
c-play()
</a>
</h2>
<div class="kss-description">
<p>Creates a Play Button</p>
</div>
</div>
<div class="kss-source kss-style">
Source: <code>components/play.less</code>, line 1
</div>
</div>
</article>
<!-- SCRIPTS -->
<script src="kss-assets/kss.js"></script>
<script src="kss-assets/scrollspy.js"></script>
<script src="kss-assets/prettify.js"></script>
<script src="kss-assets/kss-fullscreen.js"></script>
<script src="kss-assets/kss-guides.js"></script>
<script src="kss-assets/kss-markup.js"></script>
<script>
prettyPrint();
var spy = new ScrollSpy('#kss-node', {
nav: '.kss-nav__menu-child > li > a',
className: 'is-in-viewport'
});
var kssFullScreen = new KssFullScreen({
idPrefix: 'kss-fullscreen-',
bodyClass: 'kss-fullscreen-mode',
elementClass: 'is-fullscreen'
});
var kssGuides = new KssGuides({
bodyClass: 'kss-guides-mode'
});
var kssMarkup = new KssMarkup({
bodyClass: 'kss-markup-mode',
detailsClass: 'kss-markup'
});
</script>
<script src="base.js"></script>
<!-- Automatically built using <a href="https://github.com/kss-node/kss-node">kss-node</a>. -->
</body>
</html>
|
all-data/1000-1999/1767-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">shù shǒu wú cuò</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%22CW0000000419%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%22CW0000000419%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%22CW0000000419%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">shù shǒu wú cè</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>
|
clean/Linux-x86_64-4.03.0-2.0.5/released/8.5.2/ipc/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>ipc: Not compatible 👼</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.5.2 / ipc - 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>
ipc
<small>
8.7.0
<span class="label label-info">Not compatible 👼</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2022-01-22 05:26:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-22 05:26:13 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-num base Num library distributed with the OCaml compiler
base-threads base
base-unix base
camlp5 7.14 Preprocessor-pretty-printer of OCaml
conf-findutils 1 Virtual package relying on findutils
conf-perl 1 Virtual package relying on perl
coq 8.5.2 Formal proof management system
num 0 The Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.03.0 The OCaml compiler (virtual package)
ocaml-base-compiler 4.03.0 Official 4.03.0 release
ocaml-config 1 OCaml Switch Configuration
# opam file:
opam-version: "2.0"
maintainer: "Hugo.Herbelin@inria.fr"
homepage: "https://github.com/coq-contribs/ipc"
license: "Unknown"
build: [make "-j%{jobs}%"]
install: [make "install"]
remove: ["rm" "-R" "%{lib}%/coq/user-contrib/IPC"]
depends: [
"ocaml"
"coq" {>= "8.7" & < "8.8~"}
]
tags: [
"keyword: intuitionistic logic"
"keyword: proof search"
"keyword: proof-as-programs"
"keyword: correct-by-construction"
"keyword: program verification"
"keyword: program extraction"
"category: Mathematics/Logic/Foundations"
"category: Computer Science/Decision Procedures and Certified Algorithms/Decision procedures"
"category: Miscellaneous/Extracted Programs/Decision procedures"
]
authors: [ "Klaus Weich" ]
bug-reports: "https://github.com/coq-contribs/ipc/issues"
dev-repo: "git+https://github.com/coq-contribs/ipc.git"
synopsis: "Intuitionistic Propositional Checker"
description: """
This development treats proof search in intuitionistic propositional logic,
a fragment of any constructive type theory. We present new and more
efficient decision procedures for intuitionistic propositional
logic. They themselves are given by (non-formal) constructive proofs.
We take one of them to demonstrate that constructive type theory can
be used in practice to develop a real, efficient, but error-free proof
searcher. This was done by formally proving the decidability of
intuitionistic propositional logic in Coq; the proof searcher was
automatically extracted."""
flags: light-uninstall
url {
src: "https://github.com/coq-contribs/ipc/archive/v8.7.0.tar.gz"
checksum: "md5=2decb894bffbd256b5b0e6d042da2ae1"
}
</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-ipc.8.7.0 coq.8.5.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.5.2).
The following dependencies couldn't be met:
- coq-ipc -> coq >= 8.7 -> ocaml >= 4.05.0
base of this switch (use `--unlock-base' to force)
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-ipc.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">
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>
|
spark-bin/R/lib/SparkR/html/quarter.html | alec-heif/MIT-Thesis | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>R: quarter</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="R.css">
</head><body>
<table width="100%" summary="page for quarter {SparkR}"><tr><td>quarter {SparkR}</td><td align="right">R Documentation</td></tr></table>
<h2>quarter</h2>
<h3>Description</h3>
<p>Extracts the quarter as an integer from a given date/timestamp/string.
</p>
<h3>Usage</h3>
<pre>
## S4 method for signature 'Column'
quarter(x)
quarter(x)
</pre>
<h3>Arguments</h3>
<table summary="R argblock">
<tr valign="top"><td><code>x</code></td>
<td>
<p>Column to compute on.</p>
</td></tr>
</table>
<h3>Note</h3>
<p>quarter since 1.5.0
</p>
<h3>See Also</h3>
<p>Other datetime_funcs: <code><a href="add_months.html">add_months</a></code>,
<code><a href="add_months.html">add_months</a></code>,
<code><a href="add_months.html">add_months,Column,numeric-method</a></code>;
<code><a href="date_add.html">date_add</a></code>, <code><a href="date_add.html">date_add</a></code>,
<code><a href="date_add.html">date_add,Column,numeric-method</a></code>;
<code><a href="date_format.html">date_format</a></code>, <code><a href="date_format.html">date_format</a></code>,
<code><a href="date_format.html">date_format,Column,character-method</a></code>;
<code><a href="date_sub.html">date_sub</a></code>, <code><a href="date_sub.html">date_sub</a></code>,
<code><a href="date_sub.html">date_sub,Column,numeric-method</a></code>;
<code><a href="datediff.html">datediff</a></code>, <code><a href="datediff.html">datediff</a></code>,
<code><a href="datediff.html">datediff,Column-method</a></code>;
<code><a href="dayofmonth.html">dayofmonth</a></code>, <code><a href="dayofmonth.html">dayofmonth</a></code>,
<code><a href="dayofmonth.html">dayofmonth,Column-method</a></code>;
<code><a href="dayofyear.html">dayofyear</a></code>, <code><a href="dayofyear.html">dayofyear</a></code>,
<code><a href="dayofyear.html">dayofyear,Column-method</a></code>;
<code><a href="from_unixtime.html">from_unixtime</a></code>, <code><a href="from_unixtime.html">from_unixtime</a></code>,
<code><a href="from_unixtime.html">from_unixtime,Column-method</a></code>;
<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>,
<code><a href="from_utc_timestamp.html">from_utc_timestamp</a></code>,
<code><a href="from_utc_timestamp.html">from_utc_timestamp,Column,character-method</a></code>;
<code><a href="hour.html">hour</a></code>, <code><a href="hour.html">hour</a></code>,
<code><a href="hour.html">hour,Column-method</a></code>; <code><a href="last_day.html">last_day</a></code>,
<code><a href="last_day.html">last_day</a></code>,
<code><a href="last_day.html">last_day,Column-method</a></code>;
<code><a href="minute.html">minute</a></code>, <code><a href="minute.html">minute</a></code>,
<code><a href="minute.html">minute,Column-method</a></code>;
<code><a href="months_between.html">months_between</a></code>,
<code><a href="months_between.html">months_between</a></code>,
<code><a href="months_between.html">months_between,Column-method</a></code>;
<code><a href="month.html">month</a></code>, <code><a href="month.html">month</a></code>,
<code><a href="month.html">month,Column-method</a></code>;
<code><a href="next_day.html">next_day</a></code>, <code><a href="next_day.html">next_day</a></code>,
<code><a href="next_day.html">next_day,Column,character-method</a></code>;
<code><a href="second.html">second</a></code>, <code><a href="second.html">second</a></code>,
<code><a href="second.html">second,Column-method</a></code>;
<code><a href="to_date.html">to_date</a></code>, <code><a href="to_date.html">to_date</a></code>,
<code><a href="to_date.html">to_date,Column-method</a></code>;
<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
<code><a href="to_utc_timestamp.html">to_utc_timestamp</a></code>,
<code><a href="to_utc_timestamp.html">to_utc_timestamp,Column,character-method</a></code>;
<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp,Column,character-method</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp,Column,missing-method</a></code>,
<code><a href="unix_timestamp.html">unix_timestamp,missing,missing-method</a></code>;
<code><a href="weekofyear.html">weekofyear</a></code>, <code><a href="weekofyear.html">weekofyear</a></code>,
<code><a href="weekofyear.html">weekofyear,Column-method</a></code>;
<code><a href="window.html">window</a></code>, <code><a href="window.html">window</a></code>,
<code><a href="window.html">window,Column-method</a></code>; <code><a href="year.html">year</a></code>,
<code><a href="year.html">year</a></code>, <code><a href="year.html">year,Column-method</a></code>
</p>
<h3>Examples</h3>
<pre>
## Not run: quarter(df$c)
</pre>
<hr><div align="center">[Package <em>SparkR</em> version 2.1.0 <a href="00Index.html">Index</a>]</div>
</body></html>
|
tags/go/page/1/index.html | benmezger/benmezger.github.io | <!doctype html><html><head><title>https://benmezger.github.io/tags/go/</title><link rel=canonical href=https://benmezger.github.io/tags/go/><meta name=robots content="noindex"><meta charset=utf-8><meta http-equiv=refresh content="0; url=https://benmezger.github.io/tags/go/"></head></html> |
css/style.css | glyzatate/inventory | p{
margin: 6px 0;
}
.side-nav{
height: 95%;
}
.clear {
clear: both;
}
.form-signup {
float: left;
width: 100%;
padding: 15px;
margin: 0 auto;
}
.form-signup input, .form-signup select, .form-signup textarea {
margin-bottom: 4px;
width: 100%;
}
.form-signup div {
border: 1px solid #DDD;
min-height: 24px;
}
.form-signup textarea {
height: 360px;
}
.error{
color: #FF0000;
}
.success{
font-weight: bold;
color: #5CB85C;
}
.warning{
color: #EC971F;
}
.hand{
cursor: hand;
cursor: pointer;
} |
docs/javadoc/slender/services/core/projects/impl/ProjectsProgressServiceImpl.html | Slenderware/SlenderCoreServices | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (version 1.7.0) on Sat Nov 15 18:03:27 CAT 2014 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>ProjectsProgressServiceImpl</title>
<meta name="date" content="2014-11-15">
<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="ProjectsProgressServiceImpl";
}
//-->
</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/ProjectsProgressServiceImpl.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../slender/services/core/projects/impl/ProjectListsServiceImpl.html" title="class in slender.services.core.projects.impl"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../slender/services/core/projects/impl/ProjectsServiceImpl.html" title="class in slender.services.core.projects.impl"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?slender/services/core/projects/impl/ProjectsProgressServiceImpl.html" target="_top">Frames</a></li>
<li><a href="ProjectsProgressServiceImpl.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><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </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">slender.services.core.projects.impl</div>
<h2 title="Class ProjectsProgressServiceImpl" class="title">Class ProjectsProgressServiceImpl</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>slender.services.core.projects.impl.ProjectsProgressServiceImpl</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../slender/services/core/projects/ProjectsProgressService.html" title="interface in slender.services.core.projects">ProjectsProgressService</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">ProjectsProgressServiceImpl</span>
extends java.lang.Object
implements <a href="../../../../../slender/services/core/projects/ProjectsProgressService.html" title="interface in slender.services.core.projects">ProjectsProgressService</a></pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../../slender/services/core/projects/impl/ProjectsProgressServiceImpl.html#ProjectsProgressServiceImpl()">ProjectsProgressServiceImpl</a></strong>()</code> </td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd"> </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>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../slender/services/core/projects/impl/ProjectsProgressServiceImpl.html#getProjectProgress(java.lang.Integer)">getProjectProgress</a></strong>(java.lang.Integer projId)</code>
<div class="block">Get the overall progress of a projet in hours.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class java.lang.Object</h3>
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="ProjectsProgressServiceImpl()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>ProjectsProgressServiceImpl</h4>
<pre>public ProjectsProgressServiceImpl()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getProjectProgress(java.lang.Integer)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getProjectProgress</h4>
<pre>public int getProjectProgress(java.lang.Integer projId)</pre>
<div class="block">Get the overall progress of a projet in hours.</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../slender/services/core/projects/ProjectsProgressService.html#getProjectProgress(java.lang.Integer)">getProjectProgress</a></code> in interface <code><a href="../../../../../slender/services/core/projects/ProjectsProgressService.html" title="interface in slender.services.core.projects">ProjectsProgressService</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>projId</code> - The ID of the project</dd>
<dt><span class="strong">Returns:</span></dt><dd>The amount of hours</dd></dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/ProjectsProgressServiceImpl.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../index-files/index-1.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../slender/services/core/projects/impl/ProjectListsServiceImpl.html" title="class in slender.services.core.projects.impl"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../../slender/services/core/projects/impl/ProjectsServiceImpl.html" title="class in slender.services.core.projects.impl"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?slender/services/core/projects/impl/ProjectsProgressServiceImpl.html" target="_top">Frames</a></li>
<li><a href="ProjectsProgressServiceImpl.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><a href="#constructor_summary">Constr</a> | </li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail: </li>
<li>Field | </li>
<li><a href="#constructor_detail">Constr</a> | </li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
post/2012/identificacion-biometrica.html | cont3mpo/cont3mpo.github.io | <!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Identificación biométrica • Contempo</title>
<script src="../../js/head-article.js"></script>
</head>
<body>
<div class="container">
<header>
<script src="../../js/header.js"></script>
</header>
<article>
<h1>Identificación biométrica</h1>
<p>Los métodos para confirmar identidad, como contraseñas o tarjetas, no las considero parte de una interfaz natural/biometría, esos caracteres y medios artificiales requieren de razonamiento lógico y cultural.</p>
<h2>Métodos artificiales</h2>
<p>Para confirmar identidad se requiere de métodos tradicionales, o como me gusta llamarlos Identificación artificial.</p>
<p>El inconveniente con las contraseñas es que hay que recordar cifras/palabras en distintos servicios para confirmar identificación. Hay usuarios que utilizan la misma para todo, pero eso los dejaría desprotegidos ya que son transferibles. También hay algunos que manejan varias contraseñas y las guardan digitalmente ¿bajo otra contraseña? Claro, por temas de seguridad es así para encriptar caracteres. Lo bueno es que las contraseñas se pueden cambiar si se cree que han sido copiadas, pero el inconveniente es que cualquiera puede usar la contraseña de otro, no son únicas para el usuario.</p>
<p>Las tarjetas magnéticas tienen el inconveniente de perderse o descomponerse y hasta ahí llegarían en su utilidad, aunque lo bueno es que se pueden bloquear si se pierden o son robadas, pero tu información seguiría en manos de otro. Además son un medio portable, como el pagar con un dispositivo móvil, y eso es otro tema. También forma parte de los documentos de identificación como la cédula de identidad, en donde hay que portar los documentos por todos lados y se pierden.</p>
<p>La vinculación de identificación (una cuenta central y única) para iniciar sesión en servicios de terceros suena ideal (por medio del móvil por ejemplo), pero primero se necesita de una confirmación antes de todo eso, y nos llevaría de nuevo al tema de la contraseña. También este es un medio, así que enfoquémonos en la identificación para confirmar.</p>
<h2>Métodos biométricos</h2>
<p>A la <a href="https://es.wikipedia.org/wiki/Biometr%C3%ADa">biometría</a> o identificación biométrica, me gusta llamarla Identificación natural.</p>
<p>La <a href="https://es.wikipedia.org/wiki/Sistema_de_reconocimiento_facial">identificación de rostro</a> detecta patrones faciales. Pero hay algunos contratiempos, como similitudes con otro rostro o emular otro rostro, y hay que optimizar el escaneo de profundidad tridimensional.</p>
<p>La identificación por <a href="https://es.wikipedia.org/wiki/Huellas_dactilares">huella dactilar</a> cubre mejor este campo que la confirmación por contraseña. Tu huella no puede ser usada por otra persona y siempre estará contigo, salvo a que sufra un daño en la superficie del dedo. El proceso no utiliza un razonamiento mayor que el de una interfaz natural en donde los gestos táctiles, reconocimiento de voz y movimiento ocular son parte de la interacción. El escáner tiene que detectar profundidad tridimensional de las crestas de la huella para ser confiable, o si no, podrían ser emuladas hasta con una simple imagen.</p>
<p>El <a href="https://es.wikipedia.org/wiki/Reconocimiento_de_iris">reconocimiento de retina o iris</a> pasa a ser otro método único de confirmación de identidad, no hay otra retina igual a otra, y algunos la consideran más seguro que el dactilar. Pero el equipo empleado para ello es grande y costoso.</p>
<p>El <a href="https://en.wikipedia.org/wiki/Voice_analysis">análisis de voz</a> es demasiado débil, como método para ordenes de voz funciona, pero la voz se puede emular fácilmente. La firma es otro medio natural débil como identificador.</p>
<p>También se puede utilizar la <a href="https://en.wikipedia.org/wiki/Vein_matching">detección por venas</a>, la cual detecta las venas especificas de un dedo y una mano. La geometría de la palma de la mano también sirve como identificador pero se necesita un gran equipo.</p>
<p>En los métodos que existen me inclino por la confirmación por huella dactilar, al ser la más simple. Estar comprando con tu dispositivo móvil y para confirmar compra con una cuenta central solo se requiera la huella dactilar en vez de una contraseña. Solo presionar en la pantalla y confirmaría la compra. Hay servicios como el médico, que ya están utilizando la lectura de huella dactilar, pero también hay servicios que requieren de uso excesivo de contraseñas con limitaciones entre letras, números y cantidad, una complejidad que el usuario no tendría por qué vivir. Mi queja va directo a los dispositivos con interfaz natural, la contraseña es solo una piedra en el camino hacia una mejor interacción.</p>
<h2>Sus contras</h2>
<p>También surgen puntos negativos con el tema de la privacidad y seguridad como en Estados Unidos o el Reino Unido, en donde ni siquiera tienen una cédula de identidad. Que tu cuerpo confirme tu identidad en diferentes servicios en vez de una cédula podría ser bueno y malo a la vez. Que sea lo más natural posible y que los entes artificiales sean dejados de lado afectan esos dos puntos.</p>
<p>Lo malo de los métodos biométricos es que si los datos de huella o retina han sido robados no se pueden cambiar. Aquí entra el tema de seguridad y detección de identificación. ¿Si se obtienen los parámetros de tu huella dactilar se podría emular? ¿La <a href="https://en.wikipedia.org/wiki/Private_biometrics">encriptación biométrica</a> protegerá los datos? ¿Que hacer si tus datos son robados?</p>
<p>Muchas preguntas por responder antes de implementar una identificación natural que entregue confianza al usuario.</p>
<p>Quién sabe si más adelante las cosas sean como en <a href="http://www.imdb.com/title/tt0181689/">Minority Report</a>, en donde la identificación por retina era primordial, nada de tarjetas o recordar contraseñas.</p>
<time datetime="2012-07-30">30 de julio, 2012</time>
</article>
</div>
</body>
</html>
|
_site/2010/04/17/t12409343096.html | craigwmcclellan/craigwmcclellan.github.io | <!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, initial-scale=1">
<meta content="Craig McClellan" name="author">
<title>Craig McClellan - T12409343096 </title>
<link href="/assets/css/style.css" rel="stylesheet">
<link href="/assets/css/highlight.css" rel="stylesheet">
<link rel="stylesheet" href="/custom.css">
<link rel="shortcut icon" href="https://micro.blog/craigmcclellan/favicon.png" type="image/x-icon" />
<link rel="alternate" type="application/rss+xml" title="Craig McClellan" href="http://craigmcclellan.com/feed.xml" />
<link rel="alternate" type="application/json" title="Craig McClellan" href="http://craigmcclellan.com/feed.json" />
<link rel="EditURI" type="application/rsd+xml" href="/rsd.xml" />
<link rel="me" href="https://micro.blog/craigmcclellan" />
<link rel="me" href="https://twitter.com/craigmcclellan" />
<link rel="me" href="https://github.com/craigwmcclellan" />
<link rel="authorization_endpoint" href="https://micro.blog/indieauth/auth" />
<link rel="token_endpoint" href="https://micro.blog/indieauth/token" />
<link rel="micropub" href="https://micro.blog/micropub" />
<link rel="webmention" href="https://micro.blog/webmention" />
<link rel="subscribe" href="https://micro.blog/users/follow" />
</head>
<body>
<nav class="main-nav">
<a class="normal" href="/"> <span class="arrow">←</span> Home</a>
<a href="/archive/">Archive</a>
<a href="/about/">About</a>
<a href="/tools-of-choice/">Tools of Choice</a>
<a class="cta" href="https://micro.blog/craigmcclellan" rel="me">Also on Micro.blog</a>
</nav>
<section id="wrapper">
<article class="h-entry post">
<header>
<h2 class="headline">
<time class="dt-published" datetime="2010-04-17 19:00:00 -0500">
<a class="u-url dates" href="/2010/04/17/t12409343096.html">April 17, 2010</a>
</time>
</h2>
</header>
<section class="e-content post-body">
<p>Great service at Fellowship, now in the van headed to KY for an acoustic show with @carlcartee. Excited for the J-45’s first gig.</p>
</section>
</article>
<section id="post-meta" class="clearfix">
<a href="/">
<img class="u-photo avatar" src="https://micro.blog/craigmcclellan/avatar.jpg">
<div>
<span class="p-author h-card dark">Craig McClellan</span>
<span><a href="https://micro.blog/craigmcclellan">@craigmcclellan</a></span>
</div>
</a>
</section>
</section>
<footer id="footer">
<section id="wrapper">
<ul>
<li><a href="/feed.xml">RSS</a></li>
<li><a href="/feed.json">JSON Feed</a></li>
<li><a href="https://micro.blog/craigmcclellan" rel="me">Micro.blog</a></li>
<!-- <li><a class="u-email" href="mailto:" rel="me">Email</a></li> -->
</ul>
<form method="get" id="search" action="https://duckduckgo.com/">
<input type="hidden" name="sites" value="http://craigmcclellan.com"/>
<input type="hidden" name="k8" value="#444444"/>
<input type="hidden" name="k9" value="#ee4792"/>
<input type="hidden" name="kt" value="h"/>
<input class="field" type="text" name="q" maxlength="255" placeholder="To search, type and hit Enter…"/>
<input type="submit" value="Search" style="display: none;" />
</form>
</section>
</footer>
</body>
</html>
|
example/index.html | hypomodern/jquery.messageBox | <!DOCTYPE html>
<html>
<head>
<title>MessageBox: a JQuery messenger plugin</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script src="jquery.closure.js"></script>
<script src="underscore.js" type="text/javascript"></script>
<script src="mustache.js" type="text/javascript"></script>
<script src="../lib/jquery.messageBox.js"></script>
<link rel="stylesheet" href="styles.css" type="text/css" media="screen">
<script>
jQuery(function() {
jQuery("#the_codez").hide();
// a mustache template wrapper
function soupcatcher(template) {
return function(data) {
return Mustache.to_html(template, data);
}
}
// the message boxes themselves:
jQuery("#footer_messages").messageBox({
messageTypes: [ 'debug', 'info', 'warn', 'error' ],
template: soupcatcher("<li>Heyaz, I got a message-type thingy: {{messageType}}. It had a number, too: {{a_number}}</li>"),
});
jQuery("#mfd_messages").messageBox({
messageTypes: [ 'warn', 'error' ],
template: _.template("<li>Ach, mein <span class=\"negative\"><%= messageType %></span>! The Magic Number was <span class=\"magic\"><%= a_number %></span>.</li>"),
});
});
// event handling on the buttons that will trigger the messages
jQuery(".button").live("click", function(e) {
var $this = jQuery(this);
$this.trigger({
type: "message:sent",
messageType: this.id,
messageData: { a_number: Math.round(Math.random() * 100) }
});
return false;
});
jQuery("#the_codez_revealer").live("click", function() {
jQuery("#the_codez").toggle();
return false;
});
</script>
</head>
<body>
<div id="wrapper">
<div id="mfd" class="scrollable">
<h5>srs msgs</h5>
<ul id="mfd_messages">
</ul>
</div>
<div id="main">
<h1>Welcome!</h1>
<p>This here is a quick demo of the jquery.messageBox plugin. On this page we have two elements bound to the message pipeline. On your right you should see an "MFD" which will should only print the warnings and errors. Below is a generalized hopper that should get everything. Events of a variety of types and severities can be generated by mashing the buttons below at your leisure.</p>
<div class="buttons">
<a href="#" id="debug" class="button positive">Debug!</a>
<a href="#" id="info" class="button">Info!</a>
<a href="#" id="warn" class="button notice">Warn!</a>
<a href="#" id="error" class="button negative">Error!</a>
</div>
<p>The necessary code to handle all this is pretty simple: <a href="#" id="the_codez_revealer">Show me</a></p>
<pre id="the_codez"><code>jQuery(function() {
// a mustache template wrapper
function soupcatcher(template) {
return function(data) {
return Mustache.to_html(template, data);
}
}
// the message boxes themselves:
jQuery("#footer_messages").messageBox({
messageTypes: [ 'debug', 'info', 'warn', 'error' ],
template: soupcatcher("<li>Heyaz, I got a message-type thingy: {{messageType}}. It had a number, too: {{a_number}}</li>"),
});
jQuery("#mfd_messages").messageBox({
messageTypes: [ 'warn', 'error' ],
template: _.template("<li>Ach, mein <span class=\"negative\"><%= messageType %></span>!" +
"The Magic Number was <span class=\"magic\"><%= a_number %></span>.</li>")
});
});</code></pre>
</div>
</div>
<div id="footer" class="scrollable">
<h5>all msgs</h5>
<ul id="footer_messages">
</ul>
</div>
</body>
</html> |
tag/產品/json/index.html | sunnyKiwi/JustCopy | {
"posts": [
{
"url": "/3c/pc_shopping/2018/01/01/PC_ShoppingM.1514808611.A.C83.html",
"title": "Intel宣佈在未來CPU中內建TB3",
"image": "https://i.ytimg.com/vi/yR0Q3_5HaBE/maxresdefault.jpg",
"push": "21",
"boo": "0",
"date": "2018-01-01 20:10:06 +0800",
"boardName": "電蝦 (PC_Shopping)",
"boardLink": "/category/pc-shopping"
} ,
{
"url": "/3c/pc_shopping/2018/01/01/PC_ShoppingM.1514808187.A.1E0.html",
"title": "CannonLake前先到WhiskeyLake,Intel產品",
"image": "https://img.technews.tw/wp-content/uploads/2016/10/19110524/intel-e1476846331513.jpg",
"push": "43",
"boo": "0",
"date": "2018-01-01 20:03:04 +0800",
"boardName": "電蝦 (PC_Shopping)",
"boardLink": "/category/pc-shopping"
}
]
}
|
_includes/shim.html | albertogallego/albertogallego.github.io | <!--[if lt IE 10]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]--> |
public/modules/fentoracrf/views/pages/treatmentDetails3.html | Aldriel/SurveyApp | <section class="surveyDisplay">
<div class="surveySection">
PATIENT {{fentoraCRF.currentPatientNumber +1}} - FENTORA TREATMENT DETAILS
</div>
<ng-form name="pageForm">
<div class="question-header">
Please indicate below other opioid treatments received by the patient prior to FENTORA®
(fentanyl buccal/sublingual effervescent tablets) or concomitantly (including the dosage):
</div>
<table class="opioids">
<tr>
<th class="opioidFirstCol"></th>
<th>Name</th>
<th>Daily Dosage(mg)</th>
<th>Start Date</th>
<th>Still active</th>
<th>End Date</th>
</tr>
<tr data-ng-repeat="x in Opioids">
<td class="opioidFirstCol">Opioid {{$index + 1}}</td>
<td><input type="text" ng-model="currentCRF.otherOpioids[$index].name" placeholder=" opioid name" required></td>
<td><input type="number" ng-model="currentCRF.otherOpioids[$index].dailyDosage" placeholder=" Daily dosage" min="1" required></td>
<td><input type="date" ng-model="currentCRF.otherOpioids[$index].startDate" placeholder="yyyy-MM-dd" required></td>
<td><input type="checkbox" ng-model="currentCRF.otherOpioids[$index].isOngoing"></td>
<td><input ng-disabled="currentCRF.otherOpioids[$index].isOngoing" type="date" ng-model="currentCRF.otherOpioids[$index].endDate" placeholder="yyyy-MM-dd"></td>
</tr>
</table>
<div class ="newRow">
<button ng-click="addOpioid()" class="btn btn-primary" >Add new row</button>
</div>
<div class ="crfButtons">
<a href="/auth/signout" class="btn btn-primary">Save and exit</a>
<button ng-click="submitPage()" class="btn btn-primary right" ng-disabled="pageForm.$invalid">Next page</button>
</div>
</ng-form>
<div id="footer">
Confidential. For research purposes only.
</div>
</section>
|
_site/categories/index.html | litiblue/litiblue.github.io | <!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<title>Categories | 모험으로 사는 인생</title>
<meta name="description" content="A website with blog posts and pages">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-Frame-Options" content="sameorigin">
<!-- CSS -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/solarized-dark.css">
<!--
-->
<!--Favicon-->
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<!-- Canonical -->
<link rel="canonical" href="http://localhost:4000/categories/">
<!-- RSS -->
<link rel="alternate" type="application/atom+xml" title="모험으로 사는 인생" href="http://localhost:4000/feed.xml" />
<!-- Font Awesome -->
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Google Fonts -->
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,700italic,400italic" rel="stylesheet" type="text/css">
<!-- KaTeX -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min.js"></script>
<!-- Google Analytics -->
</head>
<body>
<header class="site-header">
<div class="branding">
<h1 class="site-title">
<a href="/">모험으로 사는 인생</a>
</h1>
</div>
<nav class="site-nav">
<ul>
<li>
<a class="page-link" href="/about/">
About
</a>
</li>
<!-- Social icons from Font Awesome, if enabled -->
<li>
<a href="mailto:litiblue@gmail.com" title="Email">
<i class="fa fa-fw fa-envelope"></i>
</a>
</li>
<li>
<a href="https://www.facebook.com/litiblue" title="Follow on Facebook">
<i class="fa fa-fw fa-facebook"></i>
</a>
</li>
<li>
<a href="https://github.com/litiblue" title="Follow on GitHub">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
<li>
<a href="https://twitter.com/litiblue" title="Follow on Twitter">
<i class="fa fa-fw fa-twitter"></i>
</a>
</li>
</ul>
</nav>
</header>
<div class="content">
<article >
<header style="background-image: url('/')">
<h1 class="title">Categories</h1>
</header>
<section class="post-content"><div id="archives">
<div class="archive-group">
<div id="#dev"></div>
<p></p>
<h3 class="category-head">dev</h3>
<a name="dev"></a>
<article class="archive-item">
<li><span>13 Dec 2019</span> <a href="/dev/2019/12/13/Book-Object-2.html">독서노트 - 오브젝트 (2)</a></li>
</article>
<article class="archive-item">
<li><span>06 Dec 2019</span> <a href="/dev/2019/12/06/Book-Object.html">독서노트 - 오브젝트 (1)</a></li>
</article>
<article class="archive-item">
<li><span>03 Jul 2018</span> <a href="/dev/2018/07/03/BlockchainQuiz.html">온더 서류 전형 블록체인 문제 풀이</a></li>
</article>
<article class="archive-item">
<li><span>27 Apr 2018</span> <a href="/dev/2018/04/27/KubernetesNFS.html">AWS에서 Kubernetes클러스터 구축하기 (2) - NFS</a></li>
</article>
<article class="archive-item">
<li><span>14 Mar 2018</span> <a href="/dev/2018/03/14/KubernetesOnAWS.html">AWS에서 Kubernetes클러스터 구축하기 (1)</a></li>
</article>
<article class="archive-item">
<li><span>05 Jan 2018</span> <a href="/dev/2018/01/05/MachineLearningAWS.html">AWS의 머신 러닝 서비스 알아보기</a></li>
</article>
<article class="archive-item">
<li><span>21 Dec 2017</span> <a href="/dev/2017/12/21/FindCauseStoppedPythonProcess.html">멈춰있는 Python 프로세스 원인 찾기</a></li>
</article>
<article class="archive-item">
<li><span>19 Aug 2015</span> <a href="/dev/2015/08/19/GitBestPractices.html">Git 베스트 프랙티스</a></li>
</article>
<article class="archive-item">
<li><span>17 Aug 2015</span> <a href="/dev/2015/08/17/BetterGit.html">더 나은 Git 사용을 위한 명령어</a></li>
</article>
</div>
</div>
</section>
</article>
</div>
<script src="/js/katex_init.js"></script>
<footer class="site-footer">
<p class="text">Powered by <a href="http://jekyllrb.com">Jekyll</a> with <a href="https://rohanchandra.github.io/project/type/">Type Theme</a>
</p>
</footer>
</body>
</html>
|
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/2873b6344ada01ad87d8657453811610d23ab5df81de83f15b40fb55090e4efd.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="./7a064354d1d944055524e77196c6b7a19301412057aa6e162c74086309321766.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> |
src/static/css/styles.css | theTechnoWeenie/letsPlay | body{
color:#ecf0f1;
background-color: #222;
}
.lefty {
float:left;
margin-left:4px;
margin-top:2px;
min-width:150px;
min-height:64px;
}
.righty{
float:right;
margin-right:4px;
margin-top:4px;
min-width:150px;
min-height:64px;
}
.ambidex{
width:100px;
float:none;
clear:both;
}
.wrap_content {
width:auto !important;
min-width:0px;
}
.steamify{
overflow:hidden;
padding:10px 10px 10px 10px;
display:inline-block;
}
.bordered{
border-radius: 15px;
border-style:solid;
border-width:4px;
border-color: #27ae60;
background-color: #444;
}
.centered {
text-align:center;
margin: 5px;
}
.hidden{
display:none;
width:0px !important;
height:0px !important;
}
button, input {
color: #ecf0f1;
background-color: #444;
border: 1px solid #2980b9;
padding: 10px;
}
|
app/index.html | unixmonkey/notely-summer2015 | <!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" ng-app="notely" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" ng-app="notely" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" ng-app="notely" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html lang="en" ng-app="notely" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<base href="/">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Notely</title>
<meta name="description" content="Note taking to the next level">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/normalize.css">
<link rel="stylesheet" href="bower_components/html5-boilerplate/dist/css/main.css">
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Merriweather:400,300,300italic|Oxygen:400,300,700">
<link rel="stylesheet" href="app.css">
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="bower_components/textAngular/src/textAngular.css">
<script src="bower_components/html5-boilerplate/dist/js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<main-body></main-body>
<!-- In production use:
<script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script>
-->
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-cookies/angular-cookies.min.js"></script>
<script src="bundle.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/textAngular/dist/textAngular-rangy.min.js"></script>
<script src="bower_components/textAngular/dist/textAngular-sanitize.min.js"></script>
<script src="bower_components/textAngular/dist/textAngular.min.js"></script>
</body>
</html>
|
css/main.css | prjain/Food_Blog | /*
* HTML5 Boilerplate
*
* 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,
button,
input,
select,
textarea {
color: #222;
}
body {
font-size: 1em;
line-height: 1.4;
}
/*
* Remove text-shadow in selection highlight: h5bp.com/i
* 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 images and the bottom of their containers: h5bp.com/i/440
*/
img {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Chrome Frame prompt
========================================================================== */
.chromeframe {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Image replacement
*/
.ir {
background-color: transparent;
border: 0;
overflow: hidden;
/* IE 6/7 fallback */
*text-indent: -9999px;
}
.ir:before {
content: "";
display: block;
width: 0;
height: 150%;
}
/*
* Hide from both screenreaders and browsers: h5bp.com/u
*/
.hidden {
display: none !important;
visibility: hidden;
}
/*
* Hide only visually, but have it available for screenreaders: h5bp.com/v
*/
.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: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/*
* Hide visually and from screenreaders, 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;
}
/*
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.clearfix {
*zoom: 1;
}
/* ==========================================================================
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,
(-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid required HTTP connection: h5bp.com/r
========================================================================== */
@media print {
* {
background: transparent !important;
color: #000 !important; /* Black prints faster: h5bp.com/s */
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 for images, or javascript/internal links
*/
.ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group; /* h5bp.com/t */
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
@page {
margin: 0.5cm;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
|
files/default/test_rack_app/public/tacos/index.html | sportngin-cookbooks/opsworks-passenger | tacos |
clean/Linux-x86_64-4.06.1-2.0.5/released/8.10.0/ext-lib/0.11.4.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>ext-lib: 1 m 17 s 🏆</title>
<link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" />
<link href="../../../../../bootstrap.min.css" rel="stylesheet">
<link href="../../../../../bootstrap-custom.css" rel="stylesheet">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<script src="../../../../../moment.min.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="../..">clean / released</a></li>
<li class="active"><a href="">8.10.0 / ext-lib - 0.11.4</a></li>
</ul>
</div>
</div>
</div>
<div class="article">
<div class="row">
<div class="col-md-12">
<a href="../..">« Up</a>
<h1>
ext-lib
<small>
0.11.4
<span class="label label-success">1 m 17 s 🏆</span>
</small>
</h1>
<p>📅 <em><script>document.write(moment("2021-12-09 07:56:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-09 07:56:05 UTC)</em><p>
<h2>Context</h2>
<pre># Packages matching: installed
# Name # Installed # Synopsis
base-bigarray base
base-threads base
base-unix base
conf-findutils 1 Virtual package relying on findutils
coq 8.10.0 Formal proof management system
num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic
ocaml 4.06.1 The OCaml compiler (virtual package)
ocaml-base-compiler 4.06.1 Official 4.06.1 release
ocaml-config 1 OCaml Switch Configuration
ocamlfind 1.9.1 A library manager for OCaml
# opam file:
opam-version: "2.0"
maintainer: "gmalecha@gmail.com"
homepage: "https://github.com/coq-community/coq-ext-lib"
dev-repo: "git+https://github.com/coq-community/coq-ext-lib.git"
bug-reports: "https://github.com/coq-community/coq-ext-lib/issues"
authors: ["Gregory Malecha"]
license: "BSD-2-Clause-FreeBSD"
build: [
[make "-j%{jobs}%" "theories"]
]
run-test: [
[make "-j%{jobs}%" "examples"]
]
install: [
[make "install"]
]
depends: [
"ocaml"
"coq" {>= "8.8" < "8.15~"}
]
synopsis: "A library of Coq definitions, theorems, and tactics"
description: """
A collection of theories and plugins that may be useful in other Coq developments."""
tags: [
"logpath:ExtLib"
]
url {
src: "https://github.com/coq-community/coq-ext-lib/archive/v0.11.4.tar.gz"
checksum: "sha512=8fc9c6983968d18c1d9806146d85c147232e834e5dc79290d8e553f514b6a1fad0beaa566dca687ef2d5127a6d777e81008362b904435f85070ce7c07132b47e"
}
</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-ext-lib.0.11.4 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>true</code></dd>
<dt>Return code</dt>
<dd>0</dd>
</dl>
<h2>Install dependencies</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-ext-lib.0.11.4 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>11 s</dd>
</dl>
<h2>Install 🚀</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-ext-lib.0.11.4 coq.8.10.0</code></dd>
<dt>Return code</dt>
<dd>0</dd>
<dt>Duration</dt>
<dd>1 m 17 s</dd>
</dl>
<h2>Installation size</h2>
<p>Total: 4 M</p>
<ul>
<li>218 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.vo</code></li>
<li>105 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.glob</code></li>
<li>81 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.vo</code></li>
<li>66 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.vo</code></li>
<li>64 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.vo</code></li>
<li>61 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.vo</code></li>
<li>59 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.vo</code></li>
<li>56 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.vo</code></li>
<li>55 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.vo</code></li>
<li>54 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.vo</code></li>
<li>53 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.vo</code></li>
<li>48 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.vo</code></li>
<li>45 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.vo</code></li>
<li>44 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.vo</code></li>
<li>43 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.vo</code></li>
<li>42 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.vo</code></li>
<li>41 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.vo</code></li>
<li>40 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.vo</code></li>
<li>39 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.vo</code></li>
<li>38 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.vo</code></li>
<li>37 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.vo</code></li>
<li>35 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.vo</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.glob</code></li>
<li>34 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.vo</code></li>
<li>32 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.vo</code></li>
<li>31 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/HList.v</code></li>
<li>30 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.vo</code></li>
<li>29 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.vo</code></li>
<li>28 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.vo</code></li>
<li>27 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.glob</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Decision.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.vo</code></li>
<li>26 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.vo</code></li>
<li>25 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.glob</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.vo</code></li>
<li>24 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.vo</code></li>
<li>23 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.vo</code></li>
<li>22 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.vo</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.glob</code></li>
<li>21 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.vo</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.glob</code></li>
<li>20 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.glob</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/TwoThreeTrees.v</code></li>
<li>19 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.glob</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.vo</code></li>
<li>18 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.vo</code></li>
<li>17 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.vo</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.glob</code></li>
<li>16 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.glob</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.vo</code></li>
<li>15 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.vo</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.glob</code></li>
<li>14 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.vo</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.glob</code></li>
<li>13 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.vo</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.v</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.glob</code></li>
<li>12 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.vo</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.glob</code></li>
<li>11 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.glob</code></li>
<li>10 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.vo</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.glob</code></li>
<li>9 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapPositive.v</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.glob</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.vo</code></li>
<li>8 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PList.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapAList.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/List.v</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.glob</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.vo</code></li>
<li>7 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Vector.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Data.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Map/FMapTwoThreeK.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/WriterMonad.v</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.glob</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.vo</code></li>
<li>6 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Show.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/String.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Ind.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Option.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SumN.v</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.vo</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.glob</code></li>
<li>5 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/RelDec.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/TransitiveClosure.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Consider.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Le.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Member.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Pair.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/StateMonad.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Parametric.v</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.vo</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.glob</code></li>
<li>4 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Decision.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Sum.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fin.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/EitherMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonad.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Sets.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/Func.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Hide.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.glob</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.vo</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PPair.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Maps.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Prop.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Eq/UIP_trans.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/EqDep.v</code></li>
<li>3 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadLaws.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Generic/DerivingData.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/POption.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Nat.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListNth.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Extras.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/ListFirstnSkipn.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Reducible.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/ListSet.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAdjList.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/BoolTac.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadFix.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Eqv.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Char.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.vo</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/CmpDec.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonad.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/With.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/GraphAlgos.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.v</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.glob</code></li>
<li>2 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Tuple.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Fun.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Z.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Positive.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/BuildGraph.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Forward.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/EqDep.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/GenRec.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/SigT.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadWriter.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Measure.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Checked.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Foldable.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadState.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Applicative.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadReader.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Relation.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Lazy.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Decision.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Traversable.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Injection.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoFunctor.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Hide.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/BinOps.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Reify.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonadLaws.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Programming/Injection.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monoid.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadPlus.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Bool.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/CoMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Recur/Facts.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Monads.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/FunctorLaws.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/Functor.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ListMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/FuelMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/OptionMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/EquivDec.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Hide.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonad.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/PreFun.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadZero.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/IdentityMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ReaderMonadLaws.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/LazyList.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Cases.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Core/Any.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Unit.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Graph/Graph.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadExc.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Stream.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadCont.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Structures/MonadTrans.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Relations/Compose.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/MonadTac.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Set/SetMap.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/Monads/ContMonad.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Tactics/Equality.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.glob</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/ExtLib.v</code></li>
<li>1 K <code>../ocaml-base-compiler.4.06.1/lib/coq/user-contrib/ExtLib/Data/N.v</code></li>
</ul>
<h2>Uninstall 🧹</h2>
<dl class="dl-horizontal">
<dt>Command</dt>
<dd><code>opam remove -y coq-ext-lib.0.11.4</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>
|
site/index.html | force-net/knockProxy | <!DOCTYPE html>
<html>
<head>
<title>knockProxy</title>
<style>
html
{
overflow-y: auto;
height: 100%;
}
body, button, input,label {
margin: auto auto;
padding: 0;
font-family: 'Segoe UI', 'Tahoma';
height: 100%;
}
h1,h2,h3 {
font-family: 'Segoe UI Light';
}
button {
background: #2982CC;
color: white;
border: 0;
padding-right: 13px;
padding-left: 13px;
box-shadow: 2px 2px darkgray;
outline: 0;
height: 31px;
}
button:active,button:active:focus {
box-shadow: none;
margin-left: 1px;
margin-top: 1px;
}
button:focus {
outline: 1px dotted lightblue;
outline-offset: -1px;
}
input[type="text"],input[type="password"] {
padding: 5px;
width: 80%;
display: inline-block;
border: 1px solid #2982CC;
}
input[type="text"]:focus,input[type="password"]:focus {
box-shadow: 0 0 5px #2982CC;
/*outline-color: #bf0000;
outline-width: 2px;
outline-style: solid;
outline-offset: -1px;*/
}
.button-div {
width: 100%; text-align: right;margin-top: 10px;
}
label {
color: black;
text-shadow: 1px 1px white;
}
.content {
background: #f0faff;
background-image: repeating-linear-gradient(135deg, transparent, transparent 5px, rgba(255,255,255,.5) 5px, rgba(255,255,255,.5) 10px);
}
</style>
<script src="scripts/jquery-1.11.3.min.js"></script>
<script src="scripts/json2.min.js"></script>
<script src="scripts/sha256.js"></script>
<script src="scripts/main.js"></script>
</head>
<body>
<div style="margin: 0;display: table;width: 100%;height: 100%;">
<div style="display: table-cell;vertical-align: middle;text-align: center;" class="content">
<div style="width: 500px;margin:auto;">
<form>
<div id="divExtender"> </div>
<div id="divWrongPassword" style="color: darkred; display: none">Неверный логин или пароль</div>
<div id="divSuccess" style="color: green; display: none">Созданный для вас биндинг: <span id="spBinding"></span> (<span id="spBindingRemain"></span> сек.)</div>
<div style="width: auto">
<div class="button-div">
<label for="tbLogin">Логин:</label>
<input type="text" id="tbLogin" />
</div>
<div class="button-div">
<label for="tbPassword">Пароль:</label>
<input type="password" id="tbPassword" />
</div>
<div class="button-div" style="height: 40px">
<button id="btnLogin">Войти</button>
</div>
</div>
</form>
</div>
</div>
<div style="position: absolute;right: 0;bottom: 3px;background: white;width: 100%;text-align: right;padding: 3px;padding-right: 10px;font-style: italic;font-family: 'Consolas'">knockProxy by <b>force</b></div>
</div>
</body>
</html>
|
web/docs/Net/MultilayerNet.FileManager.writeFloatToTextFile.html | teichgraf/MuLaPeGASim | <html dir="LTR">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252" />
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" />
<title>FileManager.writeFloatToTextFile Method</title>
<xml>
</xml>
<link rel="stylesheet" type="text/css" href="MSDN.css" />
</head>
<body id="bodyID" class="dtBODY">
<div id="nsbanner">
<div id="bannerrow1">
<table class="bannerparthead" cellspacing="0">
<tr id="hdr">
<td class="runninghead">Multilayer Perzeptron and Learning Algorhims</td>
<td class="product">
</td>
</tr>
</table>
</div>
<div id="TitleRow">
<h1 class="dtH1">FileManager.writeFloatToTextFile Method </h1>
</div>
</div>
<div id="nstext">
<p> Appends a float value to a text file. <seealso cref="T:MultilayerNet.NeuralNet"></seealso></p>
<div class="syntax">public <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemVoidClassTopic.asp">void</a> writeFloatToTextFile(<br /> <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemStringClassTopic.asp">string</a> <i>filename</i>,<br /> <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfSystemSingleClassTopic.asp">float</a> <i>val</i><br />);</div>
<h4 class="dtH4">Parameters</h4>
<dl>
<dt>
<i>filename</i>
</dt>
<dd>the file name where to store</dd>
<dt>
<i>val</i>
</dt>
<dd>the value to write</dd>
</dl>
<h4 class="dtH4">See Also</h4>
<p>
<a href="MultilayerNet.FileManager.html">FileManager Class</a> | <a href="MultilayerNet.html">MultilayerNet Namespace</a> | <a href="MultilayerNet.NeuralNet.html">NeuralNet</a></p>
<object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;">
<param name="Keyword" value="writeFloatToTextFile method">
</param>
<param name="Keyword" value="writeFloatToTextFile method, FileManager class">
</param>
<param name="Keyword" value="FileManager.writeFloatToTextFile method">
</param>
</object>
<hr />
<div id="footer">
<p>
<a href="mailto:mlp@rene-schulte.info?subject=Multilayer%20Perzeptron%20and%20Learning%20Algorhims%20Documentation%20Feedback:%20FileManager.writeFloatToTextFile Method ">Send comments on this topic.</a>
</p>
<p>
<a>(c) 2004 Rene Schulte and Torsten Baer</a>
</p>
<p>
</p>
</div>
</div>
</body>
</html> |
doc/jdk6_cn/java/sql/ResultSetMetaData.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 18:25:32 CST 2007 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
ResultSetMetaData (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="ResultSetMetaData (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="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>类</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ResultSetMetaData.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </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">
<A HREF="../../java/sql/ResultSet.html" title="java.sql 中的接口"><B>上一个类</B></A>
<A HREF="../../java/sql/RowId.html" title="java.sql 中的接口"><B>下一个类</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?java/sql/ResultSetMetaData.html" target="_top"><B>框架</B></A>
<A HREF="ResultSetMetaData.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>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
摘要: 嵌套 | <A HREF="#field_summary">字段</A> | 构造方法 | <A HREF="#method_summary">方法</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
详细信息: <A HREF="#field_detail">字段</A> | 构造方法 | <A HREF="#method_detail">方法</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
java.sql</FONT>
<BR>
接口 ResultSetMetaData</H2>
<DL>
<DT><B>所有超级接口:</B> <DD><A HREF="../../java/sql/Wrapper.html" title="java.sql 中的接口">Wrapper</A></DD>
</DL>
<DL>
<DT><B>所有已知子接口:</B> <DD><A HREF="../../javax/sql/RowSetMetaData.html" title="javax.sql 中的接口">RowSetMetaData</A></DD>
</DL>
<DL>
<DT><B>所有已知实现类:</B> <DD><A HREF="../../javax/sql/rowset/RowSetMetaDataImpl.html" title="javax.sql.rowset 中的类">RowSetMetaDataImpl</A></DD>
</DL>
<HR>
<DL>
<DT><PRE>public interface <B>ResultSetMetaData</B><DT>extends <A HREF="../../java/sql/Wrapper.html" title="java.sql 中的接口">Wrapper</A></DL>
</PRE>
<P>
可用于获取关于 <code>ResultSet</code> 对象中列的类型和属性信息的对象。以下代码片段创建 <code>ResultSet</code> 对象 rs,创建 <code>ResultSetMetaData</code> 对象 rsmd,并使用 rsmd 查找 rs 有多少列,以及 rs 中的第一列是否可以在 <code>WHERE</code> 子句中使用。
<PRE>
ResultSet rs = stmt.executeQuery("SELECT a, b, c FROM TABLE2");
ResultSetMetaData rsmd = rs.getMetaData();
int numberOfColumns = rsmd.getColumnCount();
boolean b = rsmd.isSearchable(1);
</PRE>
<P>
<P>
<HR>
<P>
<!-- =========== FIELD SUMMARY =========== -->
<A NAME="field_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>字段摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#columnNoNulls">columnNoNulls</A></B></CODE>
<BR>
指示列不允许使用 <code>NULL</code> 值的常量。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#columnNullable">columnNullable</A></B></CODE>
<BR>
指示列允许使用 <code>NULL</code> 值的常量。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#columnNullableUnknown">columnNullableUnknown</A></B></CODE>
<BR>
指示不知道列的值是否可为 null 的常量。</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>方法摘要</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getCatalogName(int)">getCatalogName</A></B>(int column)</CODE>
<BR>
获取指定列的表目录名称。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnClassName(int)">getColumnClassName</A></B>(int column)</CODE>
<BR>
如果调用方法 <code>ResultSet.getObject</code> 从列中获取值,则返回构造其实例的 Java 类的完全限定名称。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnCount()">getColumnCount</A></B>()</CODE>
<BR>
返回此 <code>ResultSet</code> 对象中的列数。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnDisplaySize(int)">getColumnDisplaySize</A></B>(int column)</CODE>
<BR>
指示指定列的最大标准宽度,以字符为单位。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnLabel(int)">getColumnLabel</A></B>(int column)</CODE>
<BR>
获取用于打印输出和显示的指定列的建议标题。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnName(int)">getColumnName</A></B>(int column)</CODE>
<BR>
获取指定列的名称。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnType(int)">getColumnType</A></B>(int column)</CODE>
<BR>
获取指定列的 SQL 类型。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getColumnTypeName(int)">getColumnTypeName</A></B>(int column)</CODE>
<BR>
获取指定列的数据库特定的类型名称。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getPrecision(int)">getPrecision</A></B>(int column)</CODE>
<BR>
获取指定列的指定列宽。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getScale(int)">getScale</A></B>(int column)</CODE>
<BR>
获取指定列的小数点右边的位数。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getSchemaName(int)">getSchemaName</A></B>(int column)</CODE>
<BR>
获取指定列的表模式。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> <A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#getTableName(int)">getTableName</A></B>(int column)</CODE>
<BR>
获取指定列的名称。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isAutoIncrement(int)">isAutoIncrement</A></B>(int column)</CODE>
<BR>
指示是否自动为指定列进行编号。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isCaseSensitive(int)">isCaseSensitive</A></B>(int column)</CODE>
<BR>
指示列的大小写是否有关系。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isCurrency(int)">isCurrency</A></B>(int column)</CODE>
<BR>
指示指定的列是否是一个哈希代码值。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isDefinitelyWritable(int)">isDefinitelyWritable</A></B>(int column)</CODE>
<BR>
指示在指定的列上进行写操作是否明确可以获得成功。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> int</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isNullable(int)">isNullable</A></B>(int column)</CODE>
<BR>
指示指定列中的值是否可以为 null。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isReadOnly(int)">isReadOnly</A></B>(int column)</CODE>
<BR>
指示指定的列是否明确不可写入。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isSearchable(int)">isSearchable</A></B>(int column)</CODE>
<BR>
指示是否可以在 where 子句中使用指定的列。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isSigned(int)">isSigned</A></B>(int column)</CODE>
<BR>
指示指定列中的值是否带正负号。</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> boolean</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../java/sql/ResultSetMetaData.html#isWritable(int)">isWritable</A></B>(int column)</CODE>
<BR>
指示在指定的列上进行写操作是否可以获得成功。</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.sql.Wrapper"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>从接口 java.sql.<A HREF="../../java/sql/Wrapper.html" title="java.sql 中的接口">Wrapper</A> 继承的方法</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><A HREF="../../java/sql/Wrapper.html#isWrapperFor(java.lang.Class)">isWrapperFor</A>, <A HREF="../../java/sql/Wrapper.html#unwrap(java.lang.Class)">unwrap</A></CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<A NAME="field_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>字段详细信息</B></FONT></TH>
</TR>
</TABLE>
<A NAME="columnNoNulls"><!-- --></A><H3>
columnNoNulls</H3>
<PRE>
static final int <B>columnNoNulls</B></PRE>
<DL>
<DD>指示列不允许使用 <code>NULL</code> 值的常量。
<P>
<DL>
<DT><B>另请参见:</B><DD><A HREF="../../constant-values.html#java.sql.ResultSetMetaData.columnNoNulls">常量字段值</A></DL>
</DL>
<HR>
<A NAME="columnNullable"><!-- --></A><H3>
columnNullable</H3>
<PRE>
static final int <B>columnNullable</B></PRE>
<DL>
<DD>指示列允许使用 <code>NULL</code> 值的常量。
<P>
<DL>
<DT><B>另请参见:</B><DD><A HREF="../../constant-values.html#java.sql.ResultSetMetaData.columnNullable">常量字段值</A></DL>
</DL>
<HR>
<A NAME="columnNullableUnknown"><!-- --></A><H3>
columnNullableUnknown</H3>
<PRE>
static final int <B>columnNullableUnknown</B></PRE>
<DL>
<DD>指示不知道列的值是否可为 null 的常量。
<P>
<DL>
<DT><B>另请参见:</B><DD><A HREF="../../constant-values.html#java.sql.ResultSetMetaData.columnNullableUnknown">常量字段值</A></DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>方法详细信息</B></FONT></TH>
</TR>
</TABLE>
<A NAME="getColumnCount()"><!-- --></A><H3>
getColumnCount</H3>
<PRE>
int <B>getColumnCount</B>()
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>返回此 <code>ResultSet</code> 对象中的列数。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>返回:</B><DD>列数
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isAutoIncrement(int)"><!-- --></A><H3>
isAutoIncrement</H3>
<PRE>
boolean <B>isAutoIncrement</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示是否自动为指定列进行编号。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isCaseSensitive(int)"><!-- --></A><H3>
isCaseSensitive</H3>
<PRE>
boolean <B>isCaseSensitive</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示列的大小写是否有关系。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isSearchable(int)"><!-- --></A><H3>
isSearchable</H3>
<PRE>
boolean <B>isSearchable</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示是否可以在 where 子句中使用指定的列。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isCurrency(int)"><!-- --></A><H3>
isCurrency</H3>
<PRE>
boolean <B>isCurrency</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示指定的列是否是一个哈希代码值。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isNullable(int)"><!-- --></A><H3>
isNullable</H3>
<PRE>
int <B>isNullable</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示指定列中的值是否可以为 null。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>给定列的状态是否可以为 null 的判断,此状态值是 <code>columnNoNulls</code>、<code>columnNullable</code> 或 <code>columnNullableUnknown</code> 之一
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isSigned(int)"><!-- --></A><H3>
isSigned</H3>
<PRE>
boolean <B>isSigned</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示指定列中的值是否带正负号。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnDisplaySize(int)"><!-- --></A><H3>
getColumnDisplaySize</H3>
<PRE>
int <B>getColumnDisplaySize</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示指定列的最大标准宽度,以字符为单位。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>允许作为指定列宽度的最大标准字符数
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnLabel(int)"><!-- --></A><H3>
getColumnLabel</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getColumnLabel</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取用于打印输出和显示的指定列的建议标题。建议标题通常由 SQL <code>AS</code> 子句来指定。如果未指定 SQL <code>AS</code>,则从 <code>getColumnLabel</code> 返回的值将和 <code>getColumnName</code> 方法返回的值相同。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>建立列标题
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnName(int)"><!-- --></A><H3>
getColumnName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getColumnName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的名称。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>列名称
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getSchemaName(int)"><!-- --></A><H3>
getSchemaName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getSchemaName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的表模式。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>模式名称;如果没有可应用的名称,则返回 ""
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getPrecision(int)"><!-- --></A><H3>
getPrecision</H3>
<PRE>
int <B>getPrecision</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的指定列宽。对于数值型数据,是指最大精度。对于字符型数据,是指字符串长度。对于日期时间的数据类型,是指 String 表示形式的字符串长度(假定为最大允许的小数秒组件)。对于二进制型数据,是指字节长度。对于 ROWID 数据类型,是指字节长度。对于其列大小不可用的数据类型,则返回 0。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>精度
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getScale(int)"><!-- --></A><H3>
getScale</H3>
<PRE>
int <B>getScale</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的小数点右边的位数。对于其标度不可用的数据类型,则返回 0。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>标度
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getTableName(int)"><!-- --></A><H3>
getTableName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getTableName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的名称。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>表名称;如果没有可应用的名称,则返回 ""
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getCatalogName(int)"><!-- --></A><H3>
getCatalogName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getCatalogName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的表目录名称。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>在其中显示给定列的表的目录名称;如果可应用的名称,则返回 ""
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnType(int)"><!-- --></A><H3>
getColumnType</H3>
<PRE>
int <B>getColumnType</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的 SQL 类型。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>来自 java.sql.Types 的 SQL 类型
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误<DT><B>另请参见:</B><DD><A HREF="../../java/sql/Types.html" title="java.sql 中的类"><CODE>Types</CODE></A></DL>
</DD>
</DL>
<HR>
<A NAME="getColumnTypeName(int)"><!-- --></A><H3>
getColumnTypeName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getColumnTypeName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>获取指定列的数据库特定的类型名称。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>数据库使用的类型名称。如果列类型是用户定义的类型,则返回完全限定的类型名称。
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isReadOnly(int)"><!-- --></A><H3>
isReadOnly</H3>
<PRE>
boolean <B>isReadOnly</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示指定的列是否明确不可写入。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isWritable(int)"><!-- --></A><H3>
isWritable</H3>
<PRE>
boolean <B>isWritable</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示在指定的列上进行写操作是否可以获得成功。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="isDefinitelyWritable(int)"><!-- --></A><H3>
isDefinitelyWritable</H3>
<PRE>
boolean <B>isDefinitelyWritable</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD>指示在指定的列上进行写操作是否明确可以获得成功。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>如果是这样,则返回 <code>true</code>;否则返回 <code>false</code>
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误</DL>
</DD>
</DL>
<HR>
<A NAME="getColumnClassName(int)"><!-- --></A><H3>
getColumnClassName</H3>
<PRE>
<A HREF="../../java/lang/String.html" title="java.lang 中的类">String</A> <B>getColumnClassName</B>(int column)
throws <A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></PRE>
<DL>
<DD><p>如果调用方法 <code>ResultSet.getObject</code> 从列中获取值,则返回构造其实例的 Java 类的完全限定名称。<code>ResultSet.getObject</code> 可能返回此方法所返回的类的子类。
<P>
<DD><DL>
</DL>
</DD>
<DD><DL>
<DT><B>参数:</B><DD><CODE>column</CODE> - 第一列是 1,第二个列是 2,……
<DT><B>返回:</B><DD>Java 编程语言中类的完全限定名称,方法 <code>ResultSet.getObject</code> 将使用该名称获取指定列中的值。此名称为用于自定义映射关系的类名称。
<DT><B>抛出:</B>
<DD><CODE><A HREF="../../java/sql/SQLException.html" title="java.sql 中的类">SQLException</A></CODE> - 如果发生数据库访问错误<DT><B>从以下版本开始:</B></DT>
<DD>1.2</DD>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="跳过导航链接"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>概述</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><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="class-use/ResultSetMetaData.html"><FONT CLASS="NavBarFont1"><B>使用</B></FONT></A> </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">
<A HREF="../../java/sql/ResultSet.html" title="java.sql 中的接口"><B>上一个类</B></A>
<A HREF="../../java/sql/RowId.html" title="java.sql 中的接口"><B>下一个类</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../index.html?java/sql/ResultSetMetaData.html" target="_top"><B>框架</B></A>
<A HREF="ResultSetMetaData.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>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
摘要: 嵌套 | <A HREF="#field_summary">字段</A> | 构造方法 | <A HREF="#method_summary">方法</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
详细信息: <A HREF="#field_detail">字段</A> | 构造方法 | <A HREF="#method_detail">方法</A></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>
|
public/sass/main.css | stuckyi/menstrualcup | @charset "UTF-8";
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
/* Document
========================================================================== */
@import url(http://fonts.googleapis.com/earlyaccess/kopubbatang.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(//fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
@import url(http://fonts.googleapis.com/earlyaccess/kopubbatang.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(//fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
@import url(http://fonts.googleapis.com/earlyaccess/kopubbatang.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(//fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
@import url(http://fonts.googleapis.com/earlyaccess/kopubbatang.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url(//fonts.googleapis.com/earlyaccess/nanummyeongjo.css);
html {
font-size: 17px;
font-family: sans-serif;
/* 1 */
line-height: 1.764;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0; }
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block; }
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block; }
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px; }
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */ }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */ }
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit; }
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder; }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic; }
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000; }
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block; }
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none; }
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden; }
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */ }
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible; }
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none; }
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */ }
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto; }
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */ }
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block; }
/**
* Add the correct display in IE.
*/
template {
display: none; }
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none; }
ul {
list-style-type: none; }
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
/* for rem*/
html:lang(ko) {
font-size: 17px;
line-height: 30px;
line-height: 17.6470588rem; }
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
/* typo */
html:lang(ko) {
font-size: 18px; }
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
.spritebox {
position: fixed;
right: 20%;
top: 40%; }
.spritebox [class^="sprite-"], .spritebox [class*=" sprite-"] {
position: absolute;
width: 198px;
height: 200px;
display: none;
background-image: url("./img/gif/astro.png");
background-position: 0 0;
background-repeat: no-repeat; }
.spritebox .sprite-1 {
background-position: -0px 0;
border: none; }
.spritebox .sprite-2 {
background-position: -200px 0;
border: none; }
.spritebox .sprite-3 {
background-position: -400px 0;
border: none; }
.spritebox .sprite-4 {
background-position: -600px 0;
border: none; }
.spritebox .sprite-5 {
background-position: -800px 0;
border: none; }
.spritebox .sprite-6 {
background-position: -1000px 0;
border: none; }
.spritebox .sprite-7 {
background-position: -1200px 0;
border: none; }
.spritebox .sprite-8 {
background-position: -1400px 0;
border: none; }
.spritebox .sprite-9 {
background-position: -1600px 0;
border: none; }
.spritebox .sprite-10 {
background-position: -1800px 0;
border: none; }
.spritebox .sprite-11 {
background-position: -2000px 0;
border: none; }
.spritebox .sprite-12 {
background-position: -2200px 0;
border: none; }
.spritebox .sprite-13 {
background-position: -2400px 0;
border: none; }
.spritebox .sprite-14 {
background-position: -2600px 0;
border: none; }
.spritebox .sprite-15 {
background-position: -2800px 0;
border: none; }
.spritebox .sprite-16 {
background-position: -3000px 0;
border: none; }
.spritebox .sprite-17 {
background-position: -3200px 0;
border: none; }
.spritebox .sprite-18 {
background-position: -3400px 0;
border: none; }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeOut {
from {
opacity: 1; }
to {
opacity: 0; } }
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
/* Document
========================================================================== */
html {
font-size: 17px;
font-family: sans-serif;
/* 1 */
line-height: 1.764;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0; }
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block; }
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block; }
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px; }
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */ }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */ }
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit; }
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder; }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic; }
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000; }
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block; }
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none; }
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden; }
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */ }
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible; }
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none; }
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */ }
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto; }
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */ }
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block; }
/**
* Add the correct display in IE.
*/
template {
display: none; }
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none; }
ul {
list-style-type: none; }
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
/* for rem*/
html:lang(ko) {
font-size: 17px;
line-height: 30px;
line-height: 17.6470588rem; }
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
/* typo */
html:lang(ko) {
font-size: 18px; }
#sideNav {
display: flex;
flex-flow: column nowrap;
width: 100%;
height: auto;
overflow: hidden; }
#sideNav .index {
z-index: 500;
display: flex;
flex-flow: row nowrap;
width: 100%;
height: auto;
margin-top: 20px;
border-top: 1px solid #EEEEEE; }
#sideNav .index a {
width: 80%;
height: auto; }
#sideNav .index i {
width: 20%;
height: auto; }
#sideNav .index:nth-of-type(1) {
border-top: none; }
#sideNav .item-container {
margin-left: 4px;
overflow: hidden; }
#sideNav .items span {
font-size: 90%; }
#sideNav span {
color: black;
font-weight: 400;
margin-left: 10px; }
#sideNav span.selected {
color: black;
font-weight: 500; }
#sideNav i {
color: black;
vertical-align: middle; }
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
/* Document
========================================================================== */
html {
font-size: 17px;
font-family: sans-serif;
/* 1 */
line-height: 1.764;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0; }
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block; }
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block; }
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px; }
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */ }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */ }
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit; }
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder; }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic; }
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000; }
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block; }
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none; }
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden; }
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */ }
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible; }
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none; }
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */ }
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto; }
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */ }
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block; }
/**
* Add the correct display in IE.
*/
template {
display: none; }
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none; }
ul {
list-style-type: none; }
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
/* for rem*/
html:lang(ko) {
font-size: 17px;
line-height: 30px;
line-height: 17.6470588rem; }
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
/* typo */
html:lang(ko) {
font-size: 18px; }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeOut {
from {
opacity: 1; }
to {
opacity: 0; } }
form.party {
margin: 20px; }
form.party label {
font-size: 14px; }
form.party button {
width: 30px;
height: auto;
font-weight: 100;
font-size: 18px;
border: .5px solid black;
background: none; }
#forum-container {
width: 100%;
height: auto;
display: flex;
flex-flow: column nowrap; }
#forum-container div.forum-header {
width: 100%;
height: auto;
display: flex;
flex-flow: row nowrap;
margin-top: 20px;
font-size: 14px;
text-align: center;
background-color: #F5F5F5; }
#forum-container div.forum-header span {
width: 32%;
height: auto; }
#forum-container div.forum-header span:last-of-type {
width: 4%;
height: auto; }
#forum-container div.forum-row {
margin-top: 2px;
font-size: 14px;
width: 100%;
height: auto;
display: flex;
flex-flow: row nowrap;
border: none; }
#forum-container div.forum-row span {
border: none;
width: 32%;
height: auto;
display: flex;
flex-flow: row nowrap;
padding: 4px; }
#forum-container div.forum-row button {
width: 4%;
height: 30px;
font-weight: 100;
font-size: 18px;
border: .5px solid black;
background: none; }
#loading {
display: inline-block;
background-color: magenta;
left: 50%;
top: 50%;
position: fixed;
width: 50px;
height: 50px;
border: 3px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: #fff;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite; }
@keyframes spin {
to {
-webkit-transform: rotate(360deg); } }
@-webkit-keyframes spin {
to {
-webkit-transform: rotate(360deg); } }
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Correct the line height in all browsers.
* 3. Prevent adjustments of font size after orientation changes in
* IE on Windows Phone and in iOS.
*/
/* Document
========================================================================== */
html {
font-size: 17px;
font-family: sans-serif;
/* 1 */
line-height: 1.764;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */ }
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0; }
/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
display: block; }
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0; }
/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption,
figure,
main {
/* 1 */
display: block; }
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px; }
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box;
/* 1 */
height: 0;
/* 1 */
overflow: visible;
/* 2 */ }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent;
/* 1 */
-webkit-text-decoration-skip: objects;
/* 2 */ }
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0; }
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none;
/* 1 */
text-decoration: underline;
/* 2 */
text-decoration: underline dotted;
/* 2 */ }
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit; }
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder; }
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace;
/* 1 */
font-size: 1em;
/* 2 */ }
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic; }
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000; }
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%; }
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
sub {
bottom: -0.25em; }
sup {
top: -0.5em; }
/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
display: inline-block; }
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0; }
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none; }
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden; }
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: sans-serif;
/* 1 */
font-size: 100%;
/* 1 */
line-height: 1.15;
/* 1 */
margin: 0;
/* 2 */ }
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
/* 1 */
overflow: visible; }
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
/* 1 */
text-transform: none; }
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
/* 2 */ }
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0; }
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText; }
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em; }
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box;
/* 1 */
color: inherit;
/* 2 */
display: table;
/* 1 */
max-width: 100%;
/* 1 */
padding: 0;
/* 3 */
white-space: normal;
/* 1 */ }
/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
display: inline-block;
/* 1 */
vertical-align: baseline;
/* 2 */ }
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto; }
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box;
/* 1 */
padding: 0;
/* 2 */ }
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto; }
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield;
/* 1 */
outline-offset: -2px;
/* 2 */ }
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none; }
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button;
/* 1 */
font: inherit;
/* 2 */ }
/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
display: block; }
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item; }
/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
display: inline-block; }
/**
* Add the correct display in IE.
*/
template {
display: none; }
/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
display: none; }
ul {
list-style-type: none; }
* {
margin: 0;
padding: 0;
box-sizing: border-box; }
/* for rem*/
html:lang(ko) {
font-size: 17px;
line-height: 30px;
line-height: 17.6470588rem; }
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn; }
/* typo */
html:lang(ko) {
font-size: 18px; }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeOut {
from {
opacity: 1; }
to {
opacity: 0; } }
#backToTop {
z-index: 400;
position: fixed;
bottom: 4%;
right: 2%;
width: 40px;
height: 40px;
-webkit-border-radius: 10px;
border-radius: 10px;
background-clip: padding-box;
/* stops bg color from leaking outside the border: */
background-color: #F7FF8D;
text-align: center; }
#backToTop i {
padding: 8px;
color: white;
vertical-align: middle; }
/*space*/
/*style reset*/
* {
box-sizing: border-box; }
/*styling*/
html {
font-size: 100%;
font-family: "Noto Sans KR", sans-serif;
line-height: 1.8; }
body {
font-size: 100%;
line-height: 1.8; }
p {
margin-top: 30px;
margin-bottom: 15px; }
h1 {
font-size: 300%; }
h2 {
margin-top: 90px;
font-size: 200%;
font-weight: bold; }
/*h3요소가 앞에 존재하는 h2를 선택*/
h3 ~ h2 {
margin-top: 0; }
h3 {
font-size: 100%;
margin-top: 15px; }
blockquote {
font-family: darkgray;
font-size: 120%;
font-weight: 400;
color: darkgray;
line-height: 2;
letter-spacing: -0.04rem;
margin-bottom: 60px; }
a {
text-decoration: none; }
a:visited,
a:link {
color: #8FFFC4; }
a.link {
text-decoration: underline;
-moz-text-decoration-color: #8FFFC4;
/* Code for Firefox */
text-decoration-color: #8FFFC4; }
/* 스타일링 */
.header {
z-index: 1000;
background-color: #F7FF8D;
top: 0;
display: flex;
flex-flow: row nowrap;
width: 100%;
height: auto;
min-width: 960px;
min-height: auto; }
.header .logo {
width: 10%;
height: auto;
min-width: 100px;
min-height: auto; }
.header .logo > a {
margin-left: 20px;
margin-top: 20px;
font-weight: bold;
color: black; }
.header .nav {
width: 90%;
height: auto;
display: flex;
flex-flow: row nowrap;
justify-content: flex-end;
margin-right: 20px;
/* for develop */ }
.header .nav div {
margin-left: 14px;
/* for develop */ }
.header .nav div a {
font-weight: bold;
color: black; }
.fixed-menu {
margin: 0 auto;
width: 780px;
height: 40px;
display: flex;
flex-flow: row nowrap;
background-color: #F5F5F5; }
.fixed-menu div {
width: 200px;
height: 100%;
background-color: #E0E0E0;
text-align: center; }
.fixed-menu .selected {
border-bottom: 2px solid red; }
.fixed-top {
top: 0; }
#wrap {
z-index: 300;
position: relative;
width: 100%;
height: auto;
min-width: 960px; }
.intro {
position: relative;
width: 100%;
height: 450px;
background-color: #F7FF8D; }
.page_title {
width: 620px;
height: auto;
margin: 0 auto; }
.dot {
width: 50px;
height: 50px;
margin: 0 auto;
margin-top: 30px;
padding-top: 5px;
background-image: url(./img/170118circle.png);
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
text-align: center;
font-weight: 700;
font-size: 110%; }
.small_title {
width: 620px;
height: auto;
margin: 0 auto;
padding-top: 5px;
text-align: center;
font-weight: 700;
font-size: 110%;
letter-spacing: -0.05rem; }
.contents {
margin: 0 auto;
width: 780px;
height: auto; }
.contents .text {
width: 620px;
height: auto;
margin: 0 auto; }
.contents .text:nth-of-type(1) {
margin: 30px auto; }
.contents .whole_img {
width: 780px;
height: auto;
margin: 0 auto; }
.contents .middle_img {
width: 620px;
height: auto;
margin: 0 auto; }
/* footer */
.footer {
display: flex;
flex-flow: column nowrap;
width: 100%;
height: 200px;
margin-top: 300px; }
.footer div.footer-top {
width: 100%;
height: 90%;
display: flex;
flex-flow: row nowrap;
justify-content: flex-end;
/* 주축의 끝점으로 붙인다 */
align-items: center;
padding-right: 30px;
background-color: #F7FF8D; }
.footer div.footer-top div.contents-link {
width: 66%;
height: 80%;
display: flex;
flex-flow: row nowrap;
color: black; }
.footer div.footer-top div.contents-link div {
display: flex;
flex-flow: column nowrap;
width: 100%;
height: auto; }
.footer div.footer-top div.contents-link div a {
line-height: 2;
text-decoration: none;
font-size: 11px;
color: #9E9E9E; }
.footer div.footer-top div.contents-link div a:hover {
color: black; }
.footer div.footer-top div.contents-link div a:nth-of-type(1) {
margin-bottom: 4px;
font-weight: 500;
font-size: 14px;
color: black; }
.footer div.footer-top div.contents-link div a:nth-of-type(1):hover {
font-weight: bold; }
.footer div.footer-top div.social {
width: 10%;
height: 80%; }
.footer div.footer-top div.social img.social-icons {
width: 22px;
height: 22px;
opacity: 0.8; }
.footer div.footer-top div.social img.social-icons:hover {
opacity: 1;
width: 24px;
height: 24px; }
.footer div.footer-bottom {
width: 100%;
height: 10%;
background-color: #F7FF8D;
text-align: center;
font-size: 70%; }
/* 접는 방법에 대한 표*/
.fold {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
margin: 60px 0 60px 0;
width: 100%;
height: auto; }
.fold > div {
width: 180px;
height: 280px;
margin-top: 60px;
display: flex;
flex-flow: column nowrap;
/* background-image: url(../img/161218_c-fold_trans_bg.png);*/
background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/986441/161218_c-fold_trans_bg.png);
background-repeat: no-repeat;
background-position: center;
justify-content: space-around; }
.fold > div > div {
width: auto;
height: 40%; }
.fold_name {
pointer-events: none;
text-align: center;
font-weight: bold; }
.fold_explain {
pointer-events: none;
display: flex;
flex-flow: row nowrap; }
.fold_explain div {
width: 50%;
height: auto; }
.value_index {
font-size: 80%;
font-weight: bold;
line-height: 1.5;
text-align: left;
padding: 10px 0 10px 20px; }
.value_data {
font-size: 80%;
line-height: 1.5;
text-align: right;
padding: 10px 20px 10px 0; }
.instruction {
font-size: 90%;
margin: 30px 0 60px 0;
padding: 15px 20px 15px 20px;
background-color: #efefef;
border-radius: 0.5rem; }
.step {
margin-top: 90px;
border-top: 6px dotted #F7FF8D; }
/* 여기부터 카드 슬라이드 */
.cards {
display: flex;
flex-flow: row nowrap;
width: 960px;
height: 280px;
border: 2px solid #F7FF8D;
overflow: hidden; }
.usageCard {
margin-top: 30px;
display: flex;
flex-flow: column nowrap;
flex: 0 0 180px;
justify-content: space-around;
width: 180px;
height: 100%;
border: 2px solid #F7FF8D;
background-image: url(../img/161218_c-fold_trans_bg.png);
background-repeat: no-repeat;
background-position: center; }
.history_box2 {
margin-top: 60px;
width: 620px;
height: auto;
display: flex;
flex-flow: row nowrap;
justify-content: space-between; }
.history_box2 > .year {
width: 80px;
height: auto;
padding-top: 2px;
/* background-image: url('../img/161223_year_bg03.svg'); */
background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/986441/161223_year_bg03.svg");
background-repeat: no-repeat;
background-position: left top;
background-size: 80px;
color: white;
font-size: 1.2rem;
font-weight: bold;
text-align: center; }
.history_box2 > .img {
width: 120px;
height: 200px; }
.history_box2 > .img > img {
max-width: 120px; }
.history_box2 > .explain {
width: 380px;
height: auto;
display: flex;
flex-flow: column nowrap; }
.history_box2 > .explain > .title {
width: 380px;
height: auto;
font-size: 1.2rem;
margin-bottom: 15px; }
.history_box2 > .explain > .text {
width: 380px;
height: auto; }
.text {
animation-name: fadeIn;
animation-duration: 1.75s; }
/*-- 01 intro --*/
.intro_definition {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
width: 620px;
height: auto; }
.intro_definition > div:first-child {
width: 320px;
height: auto; }
.intro_definition > div:first-child > img {
width: 100%; }
.intro_definition > div:last-child {
width: 300px;
height: auto; }
.cup_structure {
background-color: #efefef;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
margin: 0 auto;
width: 640px; }
.cup_structure div {
padding: 15px 10px; }
.cup_structure :first-child {
width: 60%; }
.cup_structure :first-child > img {
width: 100%; }
.cup_structure :last-child {
width: 30%;
font-size: 90%;
font-color: darkgray; }
.cups_compare {
margin: 0 auto;
width: 649px; }
.cups_compare > img {
width: 100%; }
.cupinbody {
width: 780px;
height: auto;
margin: 0 auto; }
.cupinbody > img {
width: 100%; }
/*# sourceMappingURL=main.css.map */
|
docs/class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload-members.html | Shopify/unity-buy-sdk | <!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>Shopify SDK for Unity: 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">Shopify SDK for Unity
</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_shopify.html">Shopify</a></li><li class="navelem"><a class="el" href="namespace_shopify_1_1_unity.html">Unity</a></li><li class="navelem"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">CheckoutCustomerDisassociatePayload</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">Shopify.Unity.CheckoutCustomerDisassociatePayload Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html#ac2f90ee414ff0eb0a3d7498a60216ffa">checkout</a>()</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html#a391bc78134bd3901afab8af0505e761a">CheckoutCustomerDisassociatePayload</a>(Dictionary< string, object > dataJSON)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr class="even"><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html#a2cf6da0053883d211adf3ab64863a1ef">checkoutUserErrors</a>()</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>Clone</b>() (defined in <a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Data</b> (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
<tr bgcolor="#f0f0f0"><td class="entry"><b>DataJSON</b> (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"></td></tr>
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Get< T ></b>(string field, string alias=null) (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr>
<tr><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html#a41f47c4268b45a6b48b498f77924acf2">userErrors</a>()</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_checkout_customer_disassociate_payload.html">Shopify.Unity.CheckoutCustomerDisassociatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr>
</table></div><!-- contents -->
<address class="footer"><small>
<a href="https://www.shopify.ca/">
<img class="footer" height="50" src="https://camo.githubusercontent.com/10d580ddb06e6e6ff66ae43959842201195c6269/68747470733a2f2f63646e2e73686f706966792e636f6d2f73686f706966792d6d61726b6574696e675f6173736574732f6275696c64732f31392e302e302f73686f706966792d66756c6c2d636f6c6f722d626c61636b2e737667" alt="Shopify">
</a>
</small></address> |
HTML - Homework/HTML Forms and Frames-Homework/Problem 4 Grid component/index.html | ilian1902/TelerikAcademy | <!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Grid Component</title>
<link rel="stylesheet"
href="styles/style.css" />
</head>
<body>
<table>
<thead>
<tr>
<th colspan="6" id="top-header-cell">Drag a column header and drop it here to group by that column</th>
</tr>
<tr>
<th>ProductID</th>
<th>Product name</th>
<th>Unit price</th>
<th>Quantity per unit</th>
<th>Units in stock</th>
<th>Discontinued</th>
</tr>
<tr>
<th><input type="text" size="1" /></th>
<th><input type="text" /></th>
<th>
<input type="text" />
<img src="images/0.png"
alt="0" />
<th><input type="text" /></th>
<th>
<input type="text" />
<img src="images/0.png"
alt="0" />
</th>
<th>
<input type="checkbox" />
<img src="images/0.png"
alt="0" />
</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="6">
<img src="images/1.png"
alt="1" />
<img src="images/2.png"
alt="2" />
<span id="one">1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
<span>6</span>
<span>7</span>
<span>8</span>
<span>9</span>
<span>10</span>
<span>...</span>
<img src="images/3.png"
alt="3" />
<img src="images/4.png"
alt="4" />
Page size: <input type="number" value="10" />
<span id="all-items">335104 items in 33511 pages</span>
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>1</td>
<td>Chai</td>
<td>$18.00</td>
<td>10 boxes x 20 bags</td>
<td>39</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>2</td>
<td>Chang</td>
<td>$19.00</td>
<td>24 - 12 oz bottles</td>
<td>17</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>3</td>
<td>Aniseed Syrup</td>
<td>$10.00</td>
<td>12 - 550 ml bottles</td>
<td>13</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>4</td>
<td>Chef Anton's Cajun Seasoning</td>
<td>$22.00</td>
<td>48 - 6 oz jars</td>
<td>53</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>5</td>
<td>Chef Anton's Gumbo Mix</td>
<td>$21.35</td>
<td>36 boxes</td>
<td>0</td>
<td><input type="checkbox" checked disabled /></td>
</tr>
<tr>
<td>6</td>
<td>Grandma's Boysenberry Spread</td>
<td>$25.00</td>
<td>12 - 8 oz chars</td>
<td>120</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>7</td>
<td>Uncle Bob's Organic Dried Pears</td>
<td>$30.00</td>
<td>12 - 1 lb pkgs.</td>
<td>15</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>8</td>
<td>Northwoods Cranberry Sauce</td>
<td>$40.00</td>
<td>12 - 12 oz jars</td>
<td>6</td>
<td><input type="checkbox" disabled /></td>
</tr>
<tr>
<td>9</td>
<td>Mishi Kobe Niku</td>
<td>$97.00</td>
<td>18 - 500 g pkgs.</td>
<td>29</td>
<td><input type="checkbox" checked disabled /></td>
</tr>
<tr>
<td>10</td>
<td>Ikura</td>
<td>$31.00</td>
<td>12 - 200 ml jars</td>
<td>31</td>
<td><input type="checkbox" disabled /></td>
</tr>
</tbody>
</table>
</body>
|
imports/ui/components/clock/flipclock.html | dlnl/QRGMain | <template name="clock">
<div class="clock"></div>
</template> |
app/css/breakpoint/tests/tests/35_memoization.css | gin280/jimao_c | /*
Error: File to import not found or unreadable: memo.
Load paths:
Compass::SpriteImporter
F:/jimao/jimao_c/app/sass
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets
on line 2 of F:/jimao/jimao_c/app/sass/breakpoint/tests/tests/35_memoization.scss
1: $Memoization-Table: ();
2: @import "memo";
3: @import "variables";
4:
5:
6: $loops: 100;
7:
Backtrace:
F:/jimao/jimao_c/app/sass/breakpoint/tests/tests/35_memoization.scss:2
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/import_node.rb:67:in `rescue in import'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/import_node.rb:45:in `import'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/import_node.rb:28:in `imported_file'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/import_node.rb:37:in `css_import?'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:311:in `visit_import'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:36:in `visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/stack.rb:79:in `block in with_base'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/stack.rb:115:in `with_frame'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/stack.rb:79:in `with_base'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:158:in `visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:52:in `map'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:52:in `visit_children'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:36:in `block in visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/base.rb:36:in `visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:157:in `visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/visitors/perform.rb:8:in `visit'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/root_node.rb:36:in `css_tree'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/tree/root_node.rb:20:in `render'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/engine.rb:278:in `render'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/plugin/compiler.rb:492:in `update_stylesheet'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/plugin/compiler.rb:209:in `each'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/sass-3.4.19/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/sass_compiler.rb:40:in `compile!'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/commands/update_project.rb:49:in `perform'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/commands/base.rb:18:in `execute'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/commands/project_base.rb:19:in `execute'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/exec/sub_command_ui.rb:43:in `perform!'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/lib/compass/exec/sub_command_ui.rb:15:in `run!'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/bin/compass:30:in `block in <top (required)>'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/bin/compass:44:in `call'
C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-1.0.3/bin/compass:44:in `<top (required)>'
C:/Ruby22-x64/bin/compass:23:in `load'
C:/Ruby22-x64/bin/compass:23:in `<main>'
*/
body:before {
white-space: pre;
font-family: monospace;
content: "Error: File to import not found or unreadable: memo.\A Load paths:\A Compass::SpriteImporter\A F:/jimao/jimao_c/app/sass\A C:/Ruby22-x64/lib/ruby/gems/2.2.0/gems/compass-core-1.0.3/stylesheets\A on line 2 of F:/jimao/jimao_c/app/sass/breakpoint/tests/tests/35_memoization.scss\A \A 1: $Memoization-Table: ();\A 2: @import \"memo\";\A 3: @import \"variables\";\A 4: \A 5: \A 6: $loops: 100;\A 7: "; }
|
_site/blog/2015/02/01/some-impressions.html | phyLearn/phyLearn.github.io | <!DOCTYPE html>
<html lang="zh-cmn-Hans" prefix="og: http://ogp.me/ns#" class="han-init">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>生活这件小事,烦请费思量 — </title>
<link rel="stylesheet" href="/assets/vendor/primer-css/css/primer.css">
<link rel="stylesheet" href="/assets/vendor/primer-markdown/dist/user-content.min.css">
<link rel="stylesheet" href="/assets/vendor/octicons/octicons/octicons.css">
<link rel="stylesheet" href="/assets/css/components/collection.css">
<link rel="stylesheet" href="/assets/css/components/repo-card.css">
<link rel="stylesheet" href="/assets/css/sections/repo-list.css">
<link rel="stylesheet" href="/assets/css/sections/mini-repo-list.css">
<link rel="stylesheet" href="/assets/css/components/boxed-group.css">
<link rel="stylesheet" href="/assets/css/globals/common.css">
<link rel="stylesheet" href="/assets/vendor/share.js/dist/css/share.min.css">
<link rel="stylesheet" href="/assets/css/globals/responsive.css">
<link rel="stylesheet" href="/assets/css/posts/index.css">
<!-- Latest compiled and minified CSS -->
<link rel="alternate" type="application/atom+xml" title="" href="">
<link rel="shortcut icon" href="/favicon.ico">
<meta property="og:title" content="生活这件小事,烦请费思量">
<meta name="keywords" content="生活感悟">
<meta name="og:keywords" content="生活感悟">
<meta name="description" content="我不生产鸡汤,我只是源自心灵的鸡汤的搬运工。">
<meta name="og:description" content="我不生产鸡汤,我只是源自心灵的鸡汤的搬运工。">
<meta property="og:url" content="/blog/2015/02/01/some-impressions.html">
<meta property="og:site_name" content="">
<meta property="og:type" content="article">
<meta property="og:locale" content="zh_CN" />
<meta property="article:published_time" content="2015-02-01">
<script src="/assets/vendor/jquery/dist/jquery.min.js"></script>
<script src="/assets/js/jquery-ui.js"></script>
<script type="text/javascript">
function toggleMenu() {
var nav = document.getElementsByClassName("site-header-nav")[0];
if (nav.style.display == "inline-flex") {
nav.style.display = "none";
} else {
nav.style.display = "inline-flex";
}
}
</script>
</head>
<body class="" data-mz="">
<header class="site-header">
<div class="container">
<h1><a href="/" title=""><span class="octicon octicon-mark-github"></span> </a></h1>
<button class="collapsed mobile-visible" type="button" onclick="toggleMenu();">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<nav class="site-header-nav" role="navigation">
</nav>
</div>
</header>
<!-- / header -->
<section class="collection-head small geopattern" data-pattern-id="生活这件小事,烦请费思量">
<div class="container">
<div class="columns">
<div class="column three-fourths">
<div class="collection-title">
<h1 class="collection-header">生活这件小事,烦请费思量</h1>
<div class="collection-info">
<span class="meta-info">
<span class="octicon octicon-calendar"></span> 2015/02/01
</span>
<span class="meta-info">
<span class="octicon octicon-file-directory"></span>
<a href="/categories/#Blog" title="Blog">Blog</a>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- / .banner -->
<section class="container content">
<div class="columns">
<div class="column three-fourths" >
<article class="article-content markdown-body">
<p><em>我不生产鸡汤,我只是源自心灵的鸡汤的搬运工。</em></p>
<p>人都是有惰性的,如果不主动去思考更多,脑子里每天装的仅仅就是工作生活里必须去做的那些事,那逐渐就会麻木了情感,沉溺于身边的一方小世界里成了井底之蛙。</p>
<p>所以——</p>
<h3 id="section">做一个有意识的人</h3>
<ol>
<li>
<p>要有眼界意识。</p>
<p>眼界决定生活层次,连见都没见过的生活当然不知道怎么努力去过上了。记住这个故事:</p>
<blockquote>
<p>两个农妇聊天,其中一个农妇问,你说皇后娘娘早上吃什么?另一个农妇回答:肯定是大饼卷大葱,酱想蘸多少就蘸多少,一点都不心疼;刚好她们的男人也在聊天,一个男人说,如果我是皇帝,就把整个村的牛粪全包下来,不许别人捡,只能我自己一个人捡;另一个人说,愚昧!皇帝哪还用捡牛粪?他老人家肯定是拿个蒲扇,吃着西瓜,坐在树荫底下看着人们捡呢!</p>
</blockquote>
<p>怎么拓宽眼界呢?多经历,多探索,多交流。书本和网络应当成为好工具,与有营养的人交流也能受益匪浅。</p>
<p>当然,当发现自己的能力支撑不了与自己的眼界相匹配的生活的时候,就是该沉淀下来好好学习的时候了。</p>
</li>
<li>
<p>要有危机意识。</p>
<p>世上能一直保持一成不变的,怕是只有变化本身了吧。既然如此,那生活中的每一环,都存在断裂的可能。想一想自己在某一方面最倚重的,比如经济上最倚重的工作,你的位子坐的真的安稳吗?如果失去它你的生活将何以为继?能否顺利地找到下一个满意的饭碗?</p>
<p>希望细想之下的你,能够对生活各个方面最倚重的那一环对应的这些问题都自信满满。如果不能,那就想想怎么样能让自己朝那个方向前进。</p>
</li>
<li>
<p>要有奋斗意识。</p>
<p>有时候觉得自己挺勤奋挺俭省的了,但是细想之下,可能却是如MacTalk里所说的:</p>
<blockquote>
<p>学英语学编程是痛苦的,有时候你甚至会有意识地去避免开始这件事情,先干点这个,再干点那个,熬到最后,发现没时间,再拿起来读一会,困了,今天先睡吧。就这样,一天天很快过去了,你发现自己似乎每天都在坚持,但依然没效果。但事实是,你既没坚持,也没效率,这根本不是刻意练习。</p>
</blockquote>
<p>不要沉浸在自以为是的励志与悲情里,逆水行舟不进则退,醒醒看看事实:</p>
<blockquote>
<p>你花十六块买个便当吃,觉得很节省,有人在路边买了七毛钱馒头吞咽后步履匆匆;你八点起床看书,觉得很勤奋,上朋友圈发现曾经的同学八点就已经在面对繁重的工作;你周六学点新技术,觉得很累,看看微信群才知道许多朋友都连续加班了一个月。亲爱的,你真的还不够苦,不够勤奋和努力。</p>
</blockquote>
</li>
<li>
<p>要有目标意识。</p>
<p>也许你要说,我一直没定过什么长期的目标,日子也就这么过下来了,而且活得也不错啊。</p>
<p>那当然很好,这个时候试着问一句自己,有没有这样的时候:看一眼身边跟自己一起出道的小伙伴,觉得有些人比自己过得好,羡慕嫉妒恨呢?如果没有,那恭喜你,你的幸福指数应该是挺高的(原谅我肤浅地把幸福弄成比较出来的了)。如果有,那可能事实就是,他其实也没有比你努力更多,只是更明确自己要走的路,在你把那么多的努力无意识地散落于生活各方面的时候,他把和你一样多的努力集中铺在了朝特定目标前进的路上。</p>
</li>
</ol>
<h3 id="more">MORE</h3>
<p>当然,除了想做一个有意识的人,我还想做一个帅气的人,一个富有的人……</p>
</article>
<div class="share">
<div class="share-component"></div>
</div>
<div class="comment">
</div>
</div>
<div class="column one-fourth">
<h3>Search</h3>
<div id="site_search">
<input type="text" id="search_box" placeholder="Search">
<button class="btn btn-default" id="site_search_do"><span class="octicon octicon-search"></span></button>
</div>
<ul id="search_results"></ul>
<link rel="stylesheet" type="text/css" href="/assets/css/modules/sidebar-search.css">
<script src="/assets/js/lunr.min.js"></script>
<script src="/assets/js/search.js"></script>
<h3>Post Directory</h3>
<div id="post-directory-module" class="mobile-hidden">
<section class="post-directory">
<!-- Links that trigger the jumping -->
<!-- Added by javascript below -->
<dl></dl>
</section>
</div>
<script src="/assets/js/jquery.toc.js"></script>
</div>
</div>
</section>
<!-- /section.content -->
<footer class="container">
<div class="site-footer" role="contentinfo">
<div class="copyright left mobile-block">
© 2015
<span title=""></span>
<a href="javascript:window.scrollTo(0,0)" class="right mobile-visible">TOP</a>
</div>
<ul class="site-footer-links right mobile-hidden">
<li>
<a href="javascript:window.scrollTo(0,0)" >TOP</a>
</li>
</ul>
<a href="" target="_blank" aria-label="view source code">
<span class="mega-octicon octicon-mark-github" title="GitHub"></span>
</a>
<ul class="site-footer-links mobile-hidden">
<li><a href=""><span class="octicon octicon-rss" style="color:orange;"></span></a></li>
</ul>
</div>
</footer>
<!-- / footer -->
<script src="/assets/vendor/share.js/dist/js/share.min.js"></script>
<script src="/assets/js/geopattern.js"></script>
<script src="/assets/js/prism.js"></script>
<link rel="stylesheet" href="/assets/css/globals/prism.css">
<script>
jQuery(document).ready(function($) {
// geopattern
$('.geopattern').each(function(){
$(this).geopattern($(this).data('pattern-id'));
});
// hljs.initHighlightingOnLoad();
});
</script>
</body>
</html>
|
issues/templates/issues/project_detail.html | encorehu/django-issues | {% extends 'issues/base_project.html' %}
{% block title %}{{ project }}{% endblock title %}
{% block article_content %}
<h1>{{ project }}</h1>
<div id="newsLists">
<p>{{ project.description }}</p>
<ul>
{% if project.url %}
<li>项目网址: <a href="{{ project.url }}">{{ project.url }}</a></li>
{% endif %}
<li><a href="{{ project.creator.get_absolute_url }}">{{ project.creator.username }}</a> 创建于 {{ project.date_added|date:"Y-m-d f" }}</li>
</ul>
<div id="issues">
<h2><a href="{% url 'issue_list' project.slug %}">问题/Bug报告</a> (<a href="{% url 'create_issue' project.slug %}">提交Issue</a>)</h2>
{% if project.issues.count %}
<ul>
{% for issue in project.issues.all %}
<li><span class='issue_status'>({{ issue.get_status_display }})</span> <a href="{{ issue.get_absolute_url }}">{{ issue }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>暂无问题/Bug报告</p>
{% endif %}
</div>
<div id="milestones">
<h2><a href="{% url 'milestone_list' project.slug %}">里程碑</a></h2>
{% if project.milestone_set.all %}
<ul>
{% for milestone in project.milestone_set.all %}
<li><a href="{{ milestone.get_absolute_url }}">{{ milestone }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>暂无需要处理的里程碑.</p>
{% endif %}
</div>
<div id="timeline">
<h2><a href="{% url 'timeline_list' project.slug %}">时间线</a></h2>
{% for event in project.timeline_set.all %}
<p>{{ event.date|date:'Y-m-d H:i' }} <a href="{{ event.content_object.get_absolute_url }}">{{ event.content_object }}</a> {{ event.description|safe }} </p>
{% endfor %}
</div>
<div id="members">
<h2><a href="{% url 'member_list' project.slug %}">项目成员</a></h2>
{% if project.members.count %}
<ul>
{% for member in project.members.all %}
<li><a href="{{ member.get_absolute_url }}">{{ member.username }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>该项目暂无成员</p>
{% endif %}
</div>
</div>
{% endblock article_content %}
{% block js.extra %}
{% endblock js.extra %}
|
doxygen/output/html/_fs_curve3_action_8h_source.html | FSource/FDesign-Document | <!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.8"/>
<title>Faeris: E:/CodeSpace/Faeris/lib/libfaeris/src/stage/action/FsCurve3Action.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { searchBox.OnSelectItem(0); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">Faeris
 <span id="projectnumber">v3.2</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<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="annotated.html"><span>Classes</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="files.html"><span>File List</span></a></li>
</ul>
</div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Classes</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_c56faf4613ee661aba496b7591fae654.html">Faeris</a></li><li class="navelem"><a class="el" href="dir_324fd5173578ee2630711a79d9c748a1.html">lib</a></li><li class="navelem"><a class="el" href="dir_4ff4c6203fc9bcb7d3e6bbdf07a207a1.html">libfaeris</a></li><li class="navelem"><a class="el" href="dir_f1695f691b26c838a9b54d1eb8cc475a.html">src</a></li><li class="navelem"><a class="el" href="dir_a99e3426979cb1bb347039efd9f7ba37.html">stage</a></li><li class="navelem"><a class="el" href="dir_5e1de351f11117ceb393c03997989b3b.html">action</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">FsCurve3Action.h</div> </div>
</div><!--header-->
<div class="contents">
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="comment">/*************************************************************************/</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="comment">/* FsCurve3Action.h */</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="comment">/*************************************************************************/</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="comment">/* Copyright (C) 2012-2014 nosiclin@foxmail.com */</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="comment">/* Copyright (C) 2014-2015 www.fsource.cn */</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="comment">/* */</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="comment">/* http://www.fsource.cn */</span></div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="comment">/* */</span></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="comment">/* Permission is hereby granted, free of charge, to any person obtaining */</span></div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span> <span class="comment">/* a copy of this software and associated documentation files (the */</span></div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span> <span class="comment">/* "Software"), to deal in the Software without restriction, including */</span></div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span> <span class="comment">/* without limitation the rights to use, copy, modify, merge, publish, */</span></div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span> <span class="comment">/* distribute, sublicense, and/or sell copies of the Software, and to */</span></div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span> <span class="comment">/* permit persons to whom the Software is furnished to do so, subject to */</span></div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span> <span class="comment">/* the following conditions: */</span></div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="comment">/* */</span></div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span> <span class="comment">/* The above copyright notice and this permission notice shall be */</span></div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> <span class="comment">/* included in all copies or substantial portions of the Software. */</span></div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span> <span class="comment">/* */</span></div>
<div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="comment">/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */</span></div>
<div class="line"><a name="l00021"></a><span class="lineno"> 21</span> <span class="comment">/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */</span></div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span> <span class="comment">/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/</span></div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span> <span class="comment">/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */</span></div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="comment">/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */</span></div>
<div class="line"><a name="l00025"></a><span class="lineno"> 25</span> <span class="comment">/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */</span></div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span> <span class="comment">/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */</span></div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span> <span class="comment">/*************************************************************************/</span></div>
<div class="line"><a name="l00028"></a><span class="lineno"> 28</span> </div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span> </div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span> <span class="preprocessor">#ifndef _FS_CURVE3_ACTION_H_</span></div>
<div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="preprocessor">#define _FS_CURVE3_ACTION_H_</span></div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span> </div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span> <span class="preprocessor">#include "FsMacros.h"</span></div>
<div class="line"><a name="l00034"></a><span class="lineno"> 34</span> <span class="preprocessor">#include "FsFixTimeAction.h"</span></div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span> <span class="preprocessor">#include "math/curve/FsCurve.h"</span></div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span> </div>
<div class="line"><a name="l00037"></a><span class="lineno"> 37</span> NS_FS_BEGIN</div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span> <span class="keyword">namespace </span><a class="code" href="namespace_curve_used_mark_bit.html">CurveUsedMarkBit</a></div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span> {</div>
<div class="line"><a name="l00040"></a><span class="lineno"> 40</span>  <span class="keyword">enum</span>{</div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>  USED_X=0x1,</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>  USED_Y=0x2,</div>
<div class="line"><a name="l00043"></a><span class="lineno"> 43</span>  USED_Z=0x4,</div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span>  USED_W=0x8,</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>  USED_XYZ=USED_X|USED_Y|USED_Z,</div>
<div class="line"><a name="l00046"></a><span class="lineno"> 46</span>  };</div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span> };</div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span> </div>
<div class="line"><a name="l00049"></a><span class="lineno"> 49</span> </div>
<div class="line"><a name="l00050"></a><span class="lineno"><a class="line" href="class_curve3_action.html"> 50</a></span> <span class="keyword">class </span><a class="code" href="class_curve3_action.html">Curve3Action</a>:<span class="keyword">public</span> <a class="code" href="class_fix_time_action.html">FixTimeAction</a> </div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span> {</div>
<div class="line"><a name="l00052"></a><span class="lineno"> 52</span>  <span class="keyword">public</span>:</div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>  <span class="keyword">virtual</span> <span class="keyword">const</span> <span class="keywordtype">char</span>* className();</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span> </div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>  <span class="keyword">public</span>:</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>  <span class="keywordtype">void</span> setCurveMarkBit(uint32_t bit){m_markBit=bit;}</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>  uint32_t getCurveMarkBit(){<span class="keywordflow">return</span> m_markBit;}</div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span> </div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>  <span class="keywordtype">void</span> setCurve(<a class="code" href="class_t_curve.html">Curve3</a>* curve){FS_SAFE_ASSIGN(m_curve,curve);}</div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>  <a class="code" href="class_t_curve.html">Curve3</a>* getCurve(){<span class="keywordflow">return</span> m_curve;}</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span> </div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>  <span class="keyword">protected</span>:</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>  <a class="code" href="class_curve3_action.html">Curve3Action</a>();</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>  ~<a class="code" href="class_curve3_action.html">Curve3Action</a>();</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span> </div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>  <a class="code" href="class_t_vector3.html">Vector3</a> getCurveValue(<span class="keywordtype">float</span> t);</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>  <span class="keywordtype">void</span> init(<a class="code" href="class_t_curve.html">Curve3</a>* curve,<span class="keywordtype">float</span> time);</div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>  <span class="keywordtype">void</span> destruct();</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span> </div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>  <span class="keyword">protected</span>:</div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>  <a class="code" href="class_t_curve.html">Curve3</a>* m_curve;</div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>  uint32_t m_markBit;</div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span> };</div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span> </div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span> </div>
<div class="line"><a name="l00076"></a><span class="lineno"> 76</span> </div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span> NS_FS_END </div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span> </div>
<div class="line"><a name="l00079"></a><span class="lineno"> 79</span> </div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span> <span class="preprocessor">#endif </span><span class="comment">/*_FS_CURVE3_ACTION_H_*/</span><span class="preprocessor"></span></div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span> </div>
<div class="ttc" id="class_t_curve_html"><div class="ttname"><a href="class_t_curve.html">TCurve< Vector3 ></a></div></div>
<div class="ttc" id="class_curve3_action_html"><div class="ttname"><a href="class_curve3_action.html">Curve3Action</a></div><div class="ttdef"><b>Definition:</b> <a href="_fs_curve3_action_8h_source.html#l00050">FsCurve3Action.h:50</a></div></div>
<div class="ttc" id="class_fix_time_action_html"><div class="ttname"><a href="class_fix_time_action.html">FixTimeAction</a></div><div class="ttdef"><b>Definition:</b> <a href="_fs_fix_time_action_8h_source.html#l00041">FsFixTimeAction.h:41</a></div></div>
<div class="ttc" id="namespace_curve_used_mark_bit_html"><div class="ttname"><a href="namespace_curve_used_mark_bit.html">CurveUsedMarkBit</a></div><div class="ttdef"><b>Definition:</b> <a href="_fs_curve3_action_8h_source.html#l00038">FsCurve3Action.h:38</a></div></div>
<div class="ttc" id="class_t_vector3_html"><div class="ttname"><a href="class_t_vector3.html">TVector3< float ></a></div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Fri Jan 23 2015 17:21:21 for Faeris by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.8
</small></address>
</body>
</html>
|
client/main.html | momday/mchat | <head>
<!--Either set it here or in the in the router-->
<!--<title>Chatchatchat</title>-->
<!--Need this to have bootstrap responsive on mobile as suggested on:
http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-dont-forget-the-viewport-meta-tag/-->
<meta name="viewport" content="initial-scale=1">
</head>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.