path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/8528105f5423529d5649326168b9b2b0369c23c88b635d46a5ac3e0dfb7c4c68.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="./10d2800d86b45f1d5406352d02c98b5fbb36e5d286e17081f0dd1791b32b17f4.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>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/8a9a0c9b9fc17b874b7b4a3ba7271ba30c17a38742562dd1830ae732a5b628c5.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="./6bf0a09c900b2ff17a0e51390b2e842f3db0fba2f4be7aad840d3a074919b07a.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>
js/ext/angular/test/tabs.html
Web5design/ionic
<html ng-app="tabsTest"> <head> <meta charset="utf-8"> <title>Tab Bars</title> <meta name="viewport" content="width=device-width,initial-scale=1, maximum-scale=1, user-scalable=no"> <link rel="stylesheet" href="../../../../dist/css/ionic.css"> <style> .fade-out > .ng-enter, .fade-out > .ng-leave, .fade-out > .ng-move { -webkit-transition: 0.2s linear all; transition: 0.4s ease-out all; position:relative; } .fade-out > .ng-enter { left:-10px; opacity:0; } .fade-out > .ng-enter.ng-enter-active { left:0; opacity:1; } .fade-out > .ng-leave { left:0; opacity:1; } .fade-out > .ng-leave.ng-leave-active { left:-10px; opacity:0; } .fade-out > .ng-move { opacity:0.5; } .fade-out > .ng-move.ng-move-active { opacity:1; } .completed { text-decoration: line-through; } </style> <script src="../../../../dist/js/ionic.js"></script> <script src="../../../../dist/js/angular/angular.js"></script> <script src="../../../../dist/js/angular/angular-animate.js"></script> <script src="../../../../dist/js/angular/angular-route.js"></script> <script src="../../../../dist/js/angular/angular-touch.js"></script> <script src="../../../../dist/js/angular/angular-sanitize.js"></script> <script src="../../../../dist/js/ionic-angular.js"></script> </head> <body ng-controller="RootCtrl"> <tabs animation="fade-in-out" tabs-type="tabs-icon-only" tabs-style="tabs-positive" controller-changed="onControllerChanged(oldController, oldIndex, newController, newIndex)"> <tab title="Home" icon-on="icon ion-ios7-filing" icon-off="icon ion-ios7-filing-outline" ng-controller="HomeCtrl"> <header class="bar bar-header bar-positive"> <button class="button button-clear button-primary" ng-click="newTask()">New</button> <h1 class="title">Tasks</h1> <button class="button button-clear button-primary" ng-click="isEditingItems = !isEditingItems">Edit</button> </header> <content has-header="true" has-tabs="true" on-refresh="onRefresh()"> <refresher></refresher> <list scroll="false" on-refresh="onRefresh()" on-reorder="onReorder(el, start, end)" is-editing="isEditingItems" animation="fade-out" delete-icon="icon ion-minus-circled" reorder-icon="icon ion-navicon"> <item ng-repeat="item in items" item="item" buttons="item.buttons" can-delete="true" can-reorder="true" can-swipe="true" on-delete="deleteItem(item)" ng-class="{completed: item.isCompleted}" > {{item.title}} <i class="{{item.icon}}"></i> </list-item> </list> </content> </tab> <tab title="About" icon-on="icon ion-ios7-clock" icon-off="icon ion-ios7-clock-outline"> <header class="bar bar-header bar-positive"> <h1 class="title">Deadlines</h1> </header> <content has-header="true"> <h1>Deadlines</h1> </content> </tab> <tab title="Settings" icon-on="icon ion-ios7-gear" icon-off="icon ion-ios7-gear-outline"> <header class="bar bar-header bar-positive"> <h1 class="title">Settings</h1> </header> <content has-header="true"> <h1>Settings</h1> </content> </tab> <tab title="Settings" icon-on="icon ion-ios7-gear" icon-off="icon ion-ios7-gear-outline"> <header class="bar bar-header bar-positive"> <h1 class="title">Settings</h1> </header> <content has-header="true"> <h1>Settings</h1> </content> </tab> <tab title="Settings" icon-on="icon ion-ios7-gear" icon-off="icon ion-ios7-gear-outline"> <header class="bar bar-header bar-positive"> <h1 class="title">Settings</h1> </header> <content has-header="true"> <h1>Settings</h1> </content> </tab> </tabs> <script id="newTask.html" type="text/ng-template"> <div id="task-view" class="modal slide-in-up" ng-controller="TaskCtrl"> <header class="bar bar-header bar-secondary"> <h1 class="title">New Task</h1> <button class="button button-clear button-primary" ng-click="close()">Done</button> </header> <main class="content padding has-header"> <input type="text" placeholder="I need to do this..."> </main> </div> </script> <script> angular.module('tabsTest', ['ionic']) .controller('RootCtrl', function($scope) { $scope.onControllerChanged = function(oldController, oldIndex, newController, newIndex) { console.log('Controller changed', oldController, oldIndex, newController, newIndex); console.log(arguments); }; }) .controller('HomeCtrl', function($scope, $timeout, Modal, ActionSheet) { $scope.items = []; Modal.fromTemplateUrl('newTask.html', function(modal) { $scope.settingsModal = modal; }); var removeItem = function(item, button) { ActionSheet.show({ buttons: [], destructiveText: 'Delete Task', cancelText: 'Cancel', cancel: function() { return true; }, destructiveButtonClicked: function() { $scope.items.splice($scope.items.indexOf(item), 1); return true; } }); }; var completeItem = function(item, button) { item.isCompleted = true; }; $scope.onReorder = function(el, start, end) { ionic.Utils.arrayMove($scope.items, start, end); }; $scope.onRefresh = function() { console.log('ON REFRESH'); $timeout(function() { $scope.$broadcast('scroll.refreshComplete'); }, 1000); } $scope.removeItem = function(item) { removeItem(item); }; $scope.newTask = function() { $scope.settingsModal.show(); }; // Create the items for(var i = 0; i < 25; i++) { $scope.items.push({ title: 'Task ' + (i + 1), buttons: [{ text: 'Done', type: 'button-success', onButtonClicked: completeItem, }, { text: 'Delete', type: 'button-danger', onButtonClicked: removeItem, }] }); } }) .controller('TaskCtrl', function($scope) { $scope.close = function() { $scope.modal.hide(); } }); </script> </body> </html>
src/html/heroes.component.html
prerial/angular2.nongo.myheroes
<h2>My Heroes</h2> <div> <label>Hero name:</label> <input #heroName /> <button (click)="add(heroName.value); heroName.value=''"> Add </button> </div> <ul class="heroes"> <li *ngFor="let hero of heroes" [class.selected]="hero === selectedHero" (click)="onSelect(hero)"> <span class="badge">{{hero.id}}</span> {{hero.name}} <button class="delete" (click)="delete(hero); $event.stopPropagation()">x</button> </li> </ul> <my-hero-detail [hero]="selectedHero"></my-hero-detail> <div *ngIf="selectedHero"> <h2> {{selectedHero.name | uppercase}} is my hero </h2> <button (click)="gotoDetail()">View Details</button> </div>
public/database--storage/key-value/redis/index.html
NiceToKnow/IT
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="UTF-8"> <title>redis &middot; Nice To Know IT</title> <link rel="stylesheet" href="https://nicetoknow.github.io/IT/css.css" type="text/css" > </head> <body > <nav class="breadcrumb"> <a href='https://nicetoknow.github.io'>Nice To Know</a><a href='https://nicetoknow.github.io/IT/'>IT</a> <a href='https://nicetoknow.github.io/IT/database--storage/Database%20&%20Storage/'>Database & Storage</a><a href='https://nicetoknow.github.io/IT/database--storage/key-value/Key-Value/'>Key-Value</a><a href='https://nicetoknow.github.io/IT/database--storage/key-value/redis/'>redis</a> </nav> <div class="topics"> </div> <div class="content"> <p><img src="http://redis.io/images/redis-white.png" alt="" /></p> <ul> <li>&ldquo;<em>re</em> mote <em>di</em> ctionary <em>s</em> erver&rdquo;</li> <li><a href="http://redis.io">http://redis.io</a></li> <li>in-memory database / cache / message broker</li> <li>key-value structure</li> </ul> </div> </body> </html>
app/template/all_pages.html
konzuk/BIS_Web_School_Version1
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="A fully featured admin theme which can be used to build CRM, CMS, etc."> <meta name="author" content="Coderthemes"> <link rel="shortcut icon" href="images/favicon_1.ico"> <title>GRYP - Admin Dashboard</title> <!-- Base Css Files --> <link href="css/bootstrap.min.css" rel="stylesheet" /> <!-- Font Icons --> <link href="assets/font-awesome/css/font-awesome.min.css" rel="stylesheet" /> <link href="assets/ionicon/css/ionicons.min.css" rel="stylesheet" /> <link href="css/material-design-iconic-font.min.css" rel="stylesheet"> <!-- animate css --> <link href="css/animate.css" rel="stylesheet" /> <!-- Waves-effect --> <link href="css/waves-effect.css" rel="stylesheet"> <!-- sweet alerts --> <link href="assets/sweet-alert/sweet-alert.min.css" rel="stylesheet"> <!-- DataTables --> <link href="assets/datatables/jquery.dataTables.min.css" rel="stylesheet" type="text/css" /> <!-- Custom Files --> <link href="css/helper.css" rel="stylesheet" type="text/css" /> <link href="css/style.css" 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.3.0/respond.min.js"></script> <![endif]--> <script src="js/modernizr.min.js"></script> </head> <body class="fixed-left"> <!-- Begin page --> <div id="wrapper"> <!-- Top Bar Start --> <div class="topbar"> <!-- LOGO --> <div class="topbar-left"> <div class="text-center"> <a href="index.html" class="logo"><i class="md md-terrain"></i> <span>User Admin </span></a> </div> </div> <!-- Button mobile view to collapse sidebar menu --> <div class="navbar navbar-default" role="navigation"> <div class="container"> <div class=""> <div class="pull-left"> <button class="button-menu-mobile open-left"> <i class="fa fa-bars"></i> </button> <span class="clearfix"></span> </div> <form class="navbar-form pull-left" role="search"> <div class="form-group"> <input type="text" class="form-control search-bar" placeholder="Type here for search..."> </div> <button type="submit" class="btn btn-search"><i class="fa fa-search"></i></button> </form> <ul class="nav navbar-nav navbar-right pull-right"> <li class="dropdown hidden-xs"> <a href="#" data-target="#" class="dropdown-toggle waves-effect waves-light" data-toggle="dropdown" aria-expanded="true"> <i class="md md-notifications"></i> <span class="badge badge-xs badge-danger">3</span> </a> <ul class="dropdown-menu dropdown-menu-lg"> <li class="text-center notifi-title">Notification</li> <li class="list-group"> <!-- list item--> <a href="javascript:void(0);" class="list-group-item"> <div class="media"> <div class="pull-left"> <em class="fa fa-user-plus fa-2x text-info"></em> </div> <div class="media-body clearfix"> <div class="media-heading">New user registered</div> <p class="m-0"> <small>You have 10 unread messages</small> </p> </div> </div> </a> <!-- list item--> <a href="javascript:void(0);" class="list-group-item"> <div class="media"> <div class="pull-left"> <em class="fa fa-diamond fa-2x text-primary"></em> </div> <div class="media-body clearfix"> <div class="media-heading">New settings</div> <p class="m-0"> <small>There are new settings available</small> </p> </div> </div> </a> <!-- list item--> <a href="javascript:void(0);" class="list-group-item"> <div class="media"> <div class="pull-left"> <em class="fa fa-bell-o fa-2x text-danger"></em> </div> <div class="media-body clearfix"> <div class="media-heading">Updates</div> <p class="m-0"> <small>There are <span class="text-primary">2</span> new updates available</small> </p> </div> </div> </a> <!-- last list item --> <a href="javascript:void(0);" class="list-group-item"> <small>See all notifications</small> </a> </li> </ul> </li> <li class="hidden-xs"> <a href="#" id="btn-fullscreen" class="waves-effect waves-light"><i class="md md-crop-free"></i></a> </li> <li class="hidden-xs"> <a href="#" class="right-bar-toggle waves-effect waves-light"><i class="md md-chat"></i></a> </li> <li class="dropdown"> <a href="" class="dropdown-toggle profile" data-toggle="dropdown" aria-expanded="true"><img src="images/avatar-1.jpg" alt="user-img" class="img-circle"> </a> <ul class="dropdown-menu"> <li><a href="javascript:void(0)"><i class="md md-face-unlock"></i> Profile</a></li> <li><a href="javascript:void(0)"><i class="md md-settings"></i> Settings</a></li> <li><a href="javascript:void(0)"><i class="md md-lock"></i> Lock screen</a></li> <li><a href="javascript:void(0)"><i class="md md-settings-power"></i> Logout</a></li> </ul> </li> </ul> </div> <!--/.nav-collapse --> </div> </div> </div> <!-- Top Bar End --> <!-- ========== Left Sidebar Start ========== --> <div class="left side-menu"> <div class="sidebar-inner slimscrollleft"> <div class="user-details"> <div class="pull-left"> <img src="images/users/avatar-1.jpg" alt="" class="thumb-md img-circle"> </div> <div class="user-info"> <div class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Sean Vit <span class="caret"></span></a> <ul class="dropdown-menu"> <li><a href="javascript:void(0)"><i class="md md-face-unlock"></i> Profile<div class="ripple-wrapper"></div></a></li> <li><a href="javascript:void(0)"><i class="md md-settings"></i> Settings</a></li> <li><a href="javascript:void(0)"><i class="md md-lock"></i> Lock screen</a></li> <li><a href="javascript:void(0)"><i class="md md-settings-power"></i> Logout</a></li> </ul> </div> <p class="text-muted m-0">Administrator</p> </div> </div> <!--- Divider --> <div id="sidebar-menu"> <ul> <li> <a href="index.html" class="waves-effect active"><i class="md md-home"></i><span> Dashboard </span></a> </li> <li> <a href="#" class="waves-effect"><i class="md md-home"></i><span> Admin Panel </span></a> <ul class="list-unstyled"> <li><a href="manage_user.html"><i class="fa fa-arrow-circle-right"></i><span>Manage User</span></a></li> <li><a href="add_user.html"><i class="fa fa-arrow-circle-right"></i><span>Add New User</span></a></li> </ul> </li> <li class="has_sub"> <a href="#" class="waves-effect"><i class="md md-palette"></i> <span> Manage Depositor </span> <span class="pull-right"><i class="md md-add"></i></span></a> <ul class="list-unstyled"> <li><a href="all_depositor.html">All Depositor</a></li> <li><a href="add_deposit_money.html">Create Account</a></li> <!-- <li><a href="add_depositor.html">Add Depositor</a></li> <li><a href="deposit_money.html">Deposit Money</a></li> --> </ul> </li> <li class="has_sub"> <a href="#" class="waves-effect"><i class="md md-invert-colors-on"></i><span> Manage Student </span><span class="pull-right"><i class="md md-add"></i></span></a> <ul class="list-unstyled"> <li><a href="all_student.html">All Students</a></li> <li><a href="student_profile.html">Create Student</a></li> </ul> </li> <li class="has_sub"> <a href="#" class="waves-effect"><i class="md md-invert-colors-on"></i><span> Manage Lesson </span><span class="pull-right"><i class="md md-add"></i></span></a> <ul class="list-unstyled"> <li><a href="all_lesson.html">All Lesson</a></li> <li><a href="add_lesson_post.html">Add Lesson</a></li> <li><a href="add_category_lesson.html">Categories</a></li> </ul> </li> <li class="has_sub"> <a href="#" class="waves-effect"><i class="md md-redeem"></i> <span> Posts </span> <span class="pull-right"><i class="md md-add"></i></span></a> <ul class="list-unstyled"> <li><a href="all_posts.html">All Posts</a></li> <li><a href="add_new_post.html">Add New Post</a></li> <li><a href="add_category_post.html">Categories</a></li> <li><a href="add_tag.html">Tags</a></li> </ul> </li> <li class="has_sub"> <a href="#" class="waves-effect"><i class="md md-now-widgets"></i><span> Pages </span><span class="pull-right"><i class="md md-add"></i></span></a> <ul class="list-unstyled"> <li><a href="all_pages.html">All Pages</a></li> <li><a href="add_new_page.html">Add Page</a></li> </ul> </li> </ul> <div class="clearfix"></div> </div> <div class="clearfix"></div> </div> </div> <!-- Left Sidebar End --> <!-- ============================================================== --> <!-- Start right Content here --> <!-- ============================================================== --> <div class="content-page"> <!-- Start content --> <div class="content"> <div class="container"> <!-- ========== table Depositor ========== --> <div class="row"> <div class="col-lg-12"> <div class="panel panel-border panel-success"> <div class="panel-heading"> <h3 class="panel-title">List Pages</h3> </div> <div class="panel-body table-rep-plugin"> <div class="row"> <div class="col-sm-6"> <div class="m-b-30"> <a href="add_new_page.html"><button id="addToTable" class="btn btn-success waves-effect waves-light">Add New Page<i class="fa fa-plus"></i></button></a> </div> </div> </div> <div class="table-responsive" data-pattern="priority-columns"> <table id="datatable" class="table table-small-font table-bordered table-striped"> <thead> <tr> <th>Tittle</th> <th data-priority="1">Author</th> <th data-priority="3">Date</th> <th data-priority="4">Option</th> </tr> </thead> <tbody> <tr> <!--<th>GOOG <span class="co-name">Google Inc.</span></th>--> <td>About Us</td> <td>Admin</td> <td>12/12/2015</td> <td> <a href="add_new_page.html" class="btn btn-warning btn-xs">Edit</a> <a href="#" onclick="return confirm('Are you sure you want to perform this action?')" class="btn btn-danger btn-xs">Delete</a> </td> </tr> <tr> <td>Contact Us</td> <td>Admin</td> <td>12/12/2015</td> <td> <a href="add_new_page.html" class="btn btn-warning btn-xs">Edit</a> <a href="#" onclick="return confirm('Are you sure you want to perform this action?')" class="btn btn-danger btn-xs">Delete</a> </td> </tr> </tbody> </table> </div> </div> </div> </div> </div> <!-- end row --> </div> <!-- container --> </div> <!-- content --> <footer class="footer text-right"> 2015 © MTO IT SOLUTION. </footer> </div> <!-- ============================================================== --> <!-- End Right content here --> <!-- ============================================================== --> </div> <!-- END wrapper --> <script> var resizefunc = []; </script> <!-- jQuery --> <script src="js/jquery.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/waves.js"></script> <script src="js/wow.min.js"></script> <script src="js/jquery.nicescroll.js" type="text/javascript"></script> <script src="js/jquery.scrollTo.min.js"></script> <script src="assets/jquery-detectmobile/detect.js"></script> <script src="assets/fastclick/fastclick.js"></script> <script src="assets/jquery-slimscroll/jquery.slimscroll.js"></script> <script src="assets/jquery-blockui/jquery.blockUI.js"></script> <!-- CUSTOM JS --> <script src="js/jquery.app.js"></script> <script src="assets/datatables/jquery.dataTables.min.js"></script> <script src="assets/datatables/dataTables.bootstrap.js"></script> <script type="text/javascript"> $(document).ready(function() { $('#datatable').dataTable(); } ); </script> </body> </html>
libs/boost_1_50_0/doc/html/boost/property_tree/info_parser/read_info_id1098655.html
djsedulous/namecoind
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Function template read_info</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../../property_tree/reference.html#header.boost.property_tree.info_parser_hpp" title="Header &lt;boost/property_tree/info_parser.hpp&gt;"> <link rel="prev" href="read_info_id1098608.html" title="Function template read_info"> <link rel="next" href="write_info_id1098705.html" title="Function template write_info"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="read_info_id1098608.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../property_tree/reference.html#header.boost.property_tree.info_parser_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="write_info_id1098705.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.property_tree.info_parser.read_info_id1098655"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function template read_info</span></h2> <p>boost::property_tree::info_parser::read_info</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../property_tree/reference.html#header.boost.property_tree.info_parser_hpp" title="Header &lt;boost/property_tree/info_parser.hpp&gt;">boost/property_tree/info_parser.hpp</a>&gt; </span> <span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> Ptree<span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">read_info</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <span class="special">&amp;</span> filename<span class="special">,</span> <span class="identifier">Ptree</span> <span class="special">&amp;</span> pt<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">Ptree</span> <span class="special">&amp;</span> default_ptree<span class="special">,</span> <span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">locale</span> <span class="special">&amp;</span> loc <span class="special">=</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">locale</span><span class="special">(</span><span class="special">)</span><span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="id2570708"></a><h2>Description</h2> <p>Read INFO from a the given file and translate it to a property tree. The tree's key type must be a string type, i.e. it must have a nested value_type typedef that is a valid parameter for basic_ifstream. </p> <div class="note"><table border="0" summary="Note"> <tr> <td rowspan="2" align="center" valign="top" width="25"><img alt="[Note]" src="../../../../../doc/src/images/note.png"></td> <th align="left">Note</th> </tr> <tr><td align="left" valign="top"><p>Replaces the existing contents. Strong exception guarantee. </p></td></tr> </table></div> <p> </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody><tr> <td><p><span class="term">Parameters:</span></p></td> <td><div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody><tr> <td><p><span class="term"><code class="computeroutput">default_ptree</code></span></p></td> <td><p>If parsing fails, pt is set to a copy of this tree. </p></td> </tr></tbody> </table></div></td> </tr></tbody> </table></div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2008 Marcin Kalicinski<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="read_info_id1098608.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../property_tree/reference.html#header.boost.property_tree.info_parser_hpp"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="write_info_id1098705.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
docs/api/org/springframework/remoting/rmi/package-use.html
dachengxi/spring1.1.1_source
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_05) on Thu Sep 30 22:15:56 GMT+01:00 2004 --> <TITLE> Uses of Package org.springframework.remoting.rmi (Spring Framework) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Package org.springframework.remoting.rmi (Spring Framework)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Package<br>org.springframework.remoting.rmi</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> Packages that use <A HREF="../../../../org/springframework/remoting/rmi/package-summary.html">org.springframework.remoting.rmi</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.springframework.remoting.rmi"><B>org.springframework.remoting.rmi</B></A></TD> <TD>Remoting classes for conventional RMI and transparent remoting via RMI invokers. &nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.springframework.remoting.rmi"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> Classes in <A HREF="../../../../org/springframework/remoting/rmi/package-summary.html">org.springframework.remoting.rmi</A> used by <A HREF="../../../../org/springframework/remoting/rmi/package-summary.html">org.springframework.remoting.rmi</A></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../org/springframework/remoting/rmi/class-use/JndiRmiClientInterceptor.html#org.springframework.remoting.rmi"><B>JndiRmiClientInterceptor</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interceptor for accessing RMI services from JNDI. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../org/springframework/remoting/rmi/class-use/RmiClientInterceptor.html#org.springframework.remoting.rmi"><B>RmiClientInterceptor</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interceptor for accessing conventional RMI services or RMI invokers. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../org/springframework/remoting/rmi/class-use/RmiInvocationHandler.html#org.springframework.remoting.rmi"><B>RmiInvocationHandler</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Interface for RMI invocation handlers instances on the server, wrapping exported services. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../org/springframework/remoting/rmi/class-use/RmiServiceExporter.html#org.springframework.remoting.rmi"><B>RmiServiceExporter</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RMI exporter that exposes the specified service as RMI object with the specified name. </TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright (C) 2003-2004 The Spring Framework Project.</i> </BODY> </HTML>
src/app/html/app.component.html
LaurentColoma/urshi
<div id="title"></div> <nav> <a routerLink="/dashboard">Dashboard</a> <a routerLink="/heroes">Heroes</a> <a routerLink="/about-me">About Me</a> </nav> <router-outlet></router-outlet>
static/docs/generated/module/submergence/property/submergence/module/configuration/property/_links_/spare/summary/index.html
shenanigans/node-sublayer
<!DOCTYPE html> <html> <head> <title>submergence.submergence:Configuration.&quot;Links&quot;~summary documentation</title> <link rel="stylesheet" type="text/css" href="../../../../../../../../../../index.css" /> <link rel="stylesheet" type="text/css" href="../../../../../../../../../../highlight.css" /> <script type="text/javascript" src="../../../../../../../../../../index.js"></script> </head> <body class="spare" id="component_1275"> <div id="outer"> <div id="header"> <a class="ctype" href="../../../../../../../../../../index.html">spare</a> <span></span> <span class="breadcrumbs"> <span class="delimiter">:</span><a href="../../../../../../../../index.html" class="breadcrumb module">submergence</a><span class="delimiter">.</span><a href="../../../../../../index.html" class="breadcrumb property">submergence</a><span class="delimiter">.</span><a href="../../../../index.html" class="breadcrumb struct">Configuration</a><span class="delimiter">.</span><a href="../../index.html" class="breadcrumb property">&quot;Links&quot;</a><span class="delimiter">~</span><a href="index.html" class="breadcrumb spare">summary</a> </span> </div> <div id="content"> <!-- basic document info --> <div id="details"> <div class="markdown"><p>Database collection name for storing &quot;link tokens&quot; which are used to pass WebRTC connection traffic after the initial connection has been allowed.</p> </div> <div class="clear"></div> </div> <div class="children"> </div> </div> </div> <div id="footer"> This document was generated with <a href="https://github.com/shenanigans/node-doczar">doczar</a> at <span class="time">2:40pm</span> on <span class="date">8/11/2015</span> </div> </body> </html>
people/qvfyfsq4.html
slowe/panelshows
<html> <head> <title>Shingai Shoniwa'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>Shingai Shoniwa's panel show appearances</h1> <p>Shingai Shoniwa (born 1981-09-01<sup><a href="https://en.wikipedia.org/wiki/Shingai_Shoniwa">[ref]</a></sup>) has appeared in <span class="total">2</span> episodes between 2009-2012. <a href="http://www.imdb.com/name/nm3518136">Shingai Shoniwa on IMDB</a>. <a href="https://en.wikipedia.org/wiki/Shingai_Shoniwa">Shingai Shoniwa on Wikipedia</a>.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2009</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2010</span></td> <td><div style="height:0px;" class="performances female" title=""></div><span class="year">2011</span></td> <td><div style="height:100px;" class="performances female" title="1"></div><span class="year">2012</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2012-11-12</strong> / <a href="../shows/never-mind-the-buzzcocks.html">Never Mind The Buzzcocks</a></li> <li><strong>2009-11-11</strong> / <a href="../shows/never-mind-the-buzzcocks.html">Never Mind The Buzzcocks</a></li> </ol> </div> </body> </html>
template/layout/dev.html
mfrager/note-dev
<!DOCTYPE html> <html> <head> <title>[% title %]</title> <link href="/css/bootstrap.css" rel="stylesheet" media="screen"> <link href="/css/dev.css" rel="stylesheet" media="screen"> </head> <body> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="#">/\/073</a> </div> <ul class="nav navbar-nav"> [% INCLUDE layout/menu.html %] </ul> <p class="navbar-text"> <span class="label label-primary">[% user %]</span> </p> </div> </div> [% content %] <script src="/js/jquery-2.0.3.min.js"></script> <script src="/js/bootstrap.js"></script> <script src="/js/dev.js"></script> </body> </html>
blog/templates/blog/entry_list.html
wlonk/django-basic-blog
{% extends "base.html" %} {% block content %} <div class='row' id='entry-list'> {% for entry in entry_list %} {% include "blog/_entry.html" %} {% endfor %} </div> {% endblock content %}
kettle-data-integration/docs/api/org/pentaho/di/trans/steps/mailinput/package-frame.html
ColFusion/PentahoKettle
<!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 Wed Nov 21 16:03:52 EST 2012 --> <TITLE> org.pentaho.di.trans.steps.mailinput </TITLE> <META NAME="date" CONTENT="2012-11-21"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../../../org/pentaho/di/trans/steps/mailinput/package-summary.html" target="classFrame">org.pentaho.di.trans.steps.mailinput</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="MailInput.html" title="class in org.pentaho.di.trans.steps.mailinput" target="classFrame">MailInput</A> <BR> <A HREF="MailInputData.html" title="class in org.pentaho.di.trans.steps.mailinput" target="classFrame">MailInputData</A> <BR> <A HREF="MailInputField.html" title="class in org.pentaho.di.trans.steps.mailinput" target="classFrame">MailInputField</A> <BR> <A HREF="MailInputMeta.html" title="class in org.pentaho.di.trans.steps.mailinput" target="classFrame">MailInputMeta</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
css/Hex_Grid2.css
philipagardner/IRIS_Site
/* working */ *, *:after, *:before { box-sizing: border-box; } * {margin:0;padding:0;border: 0 none; position: relative;} :root { --sinSerif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; --Nhexa: 4; --gap: 2vw; --size: calc(calc(100vw / var(--Nhexa)) - var(--gap)); } @media only screen and (min-width: 1100px) { :root { --Nhexa: 6; } } @media only screen and (max-width: 600px) { :root { --Nhexa: 2; } } section { /* margin: calc(var(--size) * .5) auto 0; */ margin-left:8%; margin-top:6%; width: calc(var(--size) * calc(var(--Nhexa) - .5)); display: grid; grid-template-columns: repeat(var(--Nhexa), 1fr); grid-gap: var(--gap); } article { background: cadetblue; width: var(--size); height: calc(var(--size) / 1.1111111); clip-path: url(#hexagono); clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); margin-right: calc(var(--size) / 2); color: #fff; overflow: hidden; } article:nth-child(2n) { margin: calc(var(--size) * -.5) calc(var(--size) * -.25) 0 calc(var(--size) * -.75); } #hex1 { background-image: url("Hex_imgs/ALLEN VALLEY_OVP_Hex (2).jpg"); } article::before { content: ''; float: left; width: 25%; height: 100%; clip-path: polygon(0% 0%, 100% 0%, 0% 50%, 100% 100%, 0% 100%); shape-outside: polygon(0% 0%, 100% 0%, 0% 50%, 100% 100%, 0% 100%); } article::after { content: ''; float: right; width: 25%; height: 100%; clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 100% 0%); shape-outside: polygon(75% 0%, 100% 0%, 100% 100%, 100% 0%); } .hex_img { width: var(--size); height: var(--size); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transform-origin: 0% 50%; transition: .75s; clip-path: url(#hexagono); clip-path: inherit; z-index: 10; } article:hover { -webkit-transform:scale(1.2); transform:scale(1.2); -webkit-transition: all 0.7s ease; transition: all 0.7s ease; } figure { display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: center; max-width: 50%; height: 100%; font-size: calc(9 / var(--Nhexa) * 1vw); line-height: 1; color: #fff; transition: .75s .05s; hyphens: auto; text-align: center; }
components/todolist/cms/todolist.html
keleko34/Konnekt
<!-- todolist_cms Created by keleko34, the main list for the todo app -->
dist/email/index.html
thetanman/wipreport
<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Welcome!</title> <style type="text/css"> /* Based on The MailChimp Reset INLINE: Yes. */ /* Client-specific Styles */ #outlook a {padding:0;} /* Force Outlook to provide a "view in browser" menu link. */ body{width:100% !important; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%; margin:0; padding:0;} /* Prevent Webkit and Windows Mobile platforms from changing default font sizes.*/ .ExternalClass {width:100%;} /* Force Hotmail to display emails at full width */ .ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {line-height: 100%;} /* Forces Hotmail to display normal line spacing. More on that: http://www.emailonacid.com/forum/viewthread/43/ */ #backgroundTable {margin:0; padding:0; width:100% !important; line-height: 100% !important;} /* End reset */ /* Some sensible defaults for images Bring inline: Yes. */ img {outline:none; text-decoration:none; -ms-interpolation-mode: bicubic;} a img {border:none;} .image_fix {display:block;} /* Yahoo paragraph fix Bring inline: Yes. */ p {margin: 1em 0;} /* Hotmail header color reset Bring inline: Yes. */ h1, h2, h3, h4, h5, h6 {color: black !important;} h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {color: blue !important;} h1 a:active, h2 a:active, h3 a:active, h4 a:active, h5 a:active, h6 a:active { color: red !important; /* Preferably not the same color as the normal header link color. There is limited support for psuedo classes in email clients, this was added just for good measure. */ } h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited { color: purple !important; /* Preferably not the same color as the normal header link color. There is limited support for psuedo classes in email clients, this was added just for good measure. */ } /* Outlook 07, 10 Padding issue fix Bring inline: No.*/ table td {border-collapse: collapse;} /* Remove spacing around Outlook 07, 10 tables Bring inline: Yes */ table { border-collapse:collapse; mso-table-lspace:0pt; mso-table-rspace:0pt; } /* Styling your links has become much simpler with the new Yahoo. In fact, it falls in line with the main credo of styling in email and make sure to bring your styles inline. Your link colors will be uniform across clients when brought inline. Bring inline: Yes. */ a {color: blue;} /*************************************************** **************************************************** MOBILE TARGETING **************************************************** ***************************************************/ @media screen and (max-width: 480px), screen and (max-device-width: 480px) { /* Part one of controlling phone number linking for mobile. */ a[href^="tel"], a[href^="sms"] { text-decoration: none; color: #FFFFFF; /* or whatever your want */ pointer-events: none; cursor: default; } .mobile_link a[href^="tel"], .mobile_link a[href^="sms"] { text-decoration: default; color: #FFFFFF !important; pointer-events: auto; cursor: default; } /* CSS Styles by github@thetanman */ table[class="m480"], td[class="m480"] {width: 100% !important; max-width: 480px !important;} img[class="m480"] {width: 100% !important; max-width: 480px !important; height: auto !important;} table[id="card"] {border-radius: 3px !important;} td[class="gutter"] {padding-left: 20px !important; padding-right: 20px !important;} td[class="content"] {width: 100% !important; max-width: 480px !important; padding: 0px 20px !important; border-left: 2px solid #efefef; border-right: 2px solid #efefef;} td[class="footer-content"] {width: 100% !important; max-width: 480px !important; padding: 0px 20px !important; border-left: 2px solid #17a4d8; border-right: 2px solid #17a4d8;} *[class].hide {display: none !important;} img[class="spacer"] {width: 100% !important; max-width: 480px !important;} *[class].preheader {display: none !important;} /* Preheader removed from mobile version */ span[class="button"] {width: 240px !important; margin-right: auto !important; margin-left: auto !important; margin-bottom: 10px !important; display: inline-block !important; padding: 10px 20px !important; background-color: #99c739 !important; text-align: center !important; border-radius: 3px !important; border:1px solid #7ea613 !important;} } /* More Specific Targeting */ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) { /* You guessed it, ipad (tablets, smaller screens, etc) */ /* repeating for the ipad */ a[href^="tel"], a[href^="sms"] { text-decoration: none; color: #FFFFFF; /* or whatever your want */ pointer-events: none; cursor: default; } .mobile_link a[href^="tel"], .mobile_link a[href^="sms"] { text-decoration: default; color: #FFFFFF !important; pointer-events: auto; cursor: default; } } </style> <!-- Targeting Windows Mobile --> <!--[if IEMobile 7]> <style type="text/css"> </style> <![endif]--> <!-- *********************************************** **************************************************** END MOBILE TARGETING **************************************************** ************************************************ --> <!--[if gte mso 9]> <style> /* Target Outlook 2007 and 2010 */ </style> <![endif]--> </head> <body bgcolor="#EFEFEF"> <div class="preheader" height="1" style="display: none; height: 1px; font-size: 1px; line-height: 1px; color: #FFFFFF;"> Message in confidence </div> <table cellpadding="0" cellspacing="0" border="0" id="backgroundTable"> <tr> <td valign="top" height="20" style="font-size: 1px; line-height: 20px;" class="gutter"> &nbsp; </td> </tr> <tr> <td valign="top" class="gutter"> <table cellpadding="0" cellspacing="0" border="0" class="m480" id="card" align="center" bgcolor="#FFFFFF"> <tr> <td width="600" height="40" colspan="3" style="font-size: 1px; line-height: 40px; border-top: 2px solid #ECECEC; border-left: 2px solid #ECECEC; border-right: 2px solid #ECECEC" class="m480"> &nbsp; </td> </tr> <tr> <td width="20" style="font-size: 1px; line-height: 20px; border-left: 2px solid #ECECEC;" class="hide"> &nbsp; </td> <td width="560" height="15" style="font-family: Arial, Helvetica, sans-serif; font-size: 24px; line-height: 30px; color: #888888; text-align: center; font-weight: bold;" class="content"> Your report is ready to download, Catherine :) <table cellpadding="0" cellspacing="0" border="0" class="m480" align="center" bgcolor="#FFFFFF"> <tr> <td width="15" height="15" style="font-size: 1px; line-height: 15px;" class="m480"> &nbsp; </td> </tr> </table> <div><!--[if mso]> <v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://" style="height:38px;v-text-anchor:middle;width:200px;" arcsize="9%" strokecolor="#7ea613" fill="t"> <v:fill type="tile" src="http://imgur.com/clZqdfM.gif" color="#99c739" /> <w:anchorlock/> <center style="color:#ffffff;font-family:sans-serif;font-size:14px;font-weight:bold;">Download report</center> </v:roundrect> <![endif]--><a href="http://" style="background-color:#99c739;border:1px solid #7ea613;border-radius:none;color:#ffffff;display:inline-block;font-family:sans-serif;font-size:14px;font-weight:bold;line-height:38px;text-align:center;text-decoration:none;width:200px;-webkit-text-size-adjust:none;mso-hide:all;">Download report</a></div> </td> <td width="20" style="font-size: 1px; line-height: 20px; border-right: 2px solid #ECECEC;" class="hide"> &nbsp; </td> </tr> <tr> <td width="600" height="40" colspan="3" style="font-size: 1px; line-height: 40px; border-left: 2px solid #ECECEC; border-right: 2px solid #ECECEC;" class="m480"> &nbsp; </td> </tr> <tr> <td width="600" colspan="3" style="border-left: 2px solid #ECECEC; border-right: 2px solid #ECECEC;" class="m480-content"> <center><img src="../assets/img/report-sm.gif" width="400" height="200" border="0" style="display: block;" class="m480"></center> </td> </tr> </table> </td> </tr> <tr> <td valign="top" class="gutter"> <table cellpadding="0" cellspacing="0" border="0" class="480" align="center" bgcolor="#17a4d8"> <tr> <td width="600" height="20" colspan="3" style="font-size: 1px; line-height: 20px; border-left: 2px solid #ECECEC; border-right: 2px solid #ECECEC" class="m480"> <img src="../assets/img/spacer.gif" width="600" height="1" border="0" alt="Image" style="display: block; max-width: 600px;" class="spacer" /> </td> </tr> <tr> <td width="20" style="font-size: 1px; line-height: 20px; border-left: 2px solid #ECECEC;" class="hide"> &nbsp; </td> <td width="560" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; line-height: 20px; color: #FFFFFF;" class="content"> <span style="font-size: 18px; line-height: 26px; font-weight: bold;">Need assistance?</span> <table cellpadding="0" cellspacing="0" border="0" class="m480" align="center" bgcolor="#17a4d8"> <tr> <td width="15" height="5" style="font-size: 1px; line-height: 5px;" class="m480"> &nbsp; </td> </tr> </table> If there's anything you need help with or have any general inquiries then contact us on <strong>+612 9700 9707</strong> or send us an <a href="mailto:ben@taoscreative.com.au" style="color: #FFFFFF; font-weight: bold;">email</a>. </td> <td width="20" style="font-size: 1px; line-height: 20px; border-right: 2px solid #ECECEC;" class="hide"> &nbsp; </td> </tr> <tr> <td width="600" height="20" colspan="3" style="font-size: 1px; line-height: 20px; border-left: 2px solid #ECECEC; border-right: 2px solid #ECECEC;" class="m480"> &nbsp; </td> </tr> </table> </td> </tr> </table> </body> </html>
clean/Linux-x86_64-4.07.1-2.0.6/extra-dev/dev/paradoxes/dev.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>paradoxes: Error 🔥</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">dev / paradoxes - dev</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> paradoxes <small> dev <span class="label label-danger">Error 🔥</span> </small> </h1> <p>📅 <em><script>document.write(moment("2021-12-29 01:31:58 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-12-29 01:31:58 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 ocaml-config 1 OCaml Switch Configuration ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler ocamlfind 1.9.1 A library manager for OCaml ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;dev@clarus.me&quot; homepage: &quot;https://github.com/coq-contribs/paradoxes&quot; license: &quot;LGPL 2&quot; build: [ [&quot;coq_makefile&quot; &quot;-f&quot; &quot;Make&quot; &quot;-o&quot; &quot;Makefile&quot;] [make &quot;-j%{jobs}%&quot;] ] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Paradoxes&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {= &quot;dev&quot;} ] tags: [ &quot;keyword:reynolds paradox&quot; &quot;keyword:burali forti paradox&quot; &quot;keyword:diaconescu paradox&quot; &quot;keyword:set theory&quot; &quot;keyword:system u&quot; &quot;keyword:inconsistency&quot; &quot;keyword:hurkens paradox&quot; &quot;category:Mathematics/Logic/Foundations&quot; ] authors: [ &quot;Bruno Barras &lt;&gt;&quot; &quot;Benjamin Werner &lt;&gt;&quot; &quot;Hugo Herbelin &lt;&gt;&quot; &quot;Thierry Coquand &lt;&gt;&quot; ] synopsis: &quot;Paradoxes in Set Theory and Type Theory.&quot; description: &quot;&quot;&quot; A formalisation of Burali-Forti paradox in system U (the existence of an ordinal of ordinals is inconsistent), of Diaconescu paradox (axiom of choice implies excluded-middle), of Reynolds paradox (there is no set-theoretic model of system F) and Hurkens paradox in system U (adapted by H. Geuvers to show the inconsistency of Excluded-Middle in impredicative-Set Calculus of Inductive Constructions).&quot;&quot;&quot; flags: light-uninstall url { src: &quot;git+https://github.com/coq-contribs/paradoxes.git#master&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-paradoxes.dev coq.dev</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-paradoxes.dev coq.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>12 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y coq-paradoxes.dev coq.dev</code></dd> <dt>Return code</dt> <dd>7936</dd> <dt>Duration</dt> <dd>23 s</dd> <dt>Output</dt> <dd><pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq dev Formal proof management system dune 2.9.1 Fast, portable, and opinionated build system ocaml 4.07.1 The OCaml compiler (virtual package) ocaml-base-compiler 4.07.1 Official release 4.07.1 ocaml-config 1 OCaml Switch Configuration ocaml-secondary-compiler 4.08.1-1 OCaml 4.08.1 Secondary Switch Compiler ocamlfind 1.9.1 A library manager for OCaml ocamlfind-secondary 1.9.1 Adds support for ocaml-secondary-compiler to ocamlfind zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers [NOTE] Package coq is already installed (current version is dev). The following actions will be performed: - install coq-paradoxes dev &lt;&gt;&lt;&gt; Gathering sources &gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt; [coq-paradoxes.dev] synchronised from git+https://github.com/coq-contribs/paradoxes.git#master &lt;&gt;&lt;&gt; Processing actions &lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt; [ERROR] The compilation of coq-paradoxes failed at &quot;/home/bench/.opam/opam-init/hooks/sandbox.sh build coq_makefile -f Make -o Makefile&quot;. #=== ERROR while compiling coq-paradoxes.dev ==================================# # context 2.0.6 | linux/x86_64 | ocaml-base-compiler.4.07.1 | file:///home/bench/run/opam-coq-archive/extra-dev # path ~/.opam/ocaml-base-compiler.4.07.1/.opam-switch/build/coq-paradoxes.dev # command ~/.opam/opam-init/hooks/sandbox.sh build coq_makefile -f Make -o Makefile # exit-code 1 # env-file ~/.opam/log/coq-paradoxes-3021-e4db2f.env # output-file ~/.opam/log/coq-paradoxes-3021-e4db2f.out ### output ### # [...] # [-Q physicalpath logicalpath]: look for Coq dependencies starting from # &quot;physicalpath&quot;. The logical path associated to the physical path # is &quot;logicalpath&quot;. # [VARIABLE = value]: Add the variable definition &quot;VARIABLE=value&quot; # [-arg opt]: send option &quot;opt&quot; to coqc # [-docroot path]: Install the documentation in this folder, relative to # &quot;user-contrib&quot;. # [-f file]: take the contents of file as arguments # [-o file]: output should go in file file (recommended) # Output file outside the current directory is forbidden. # [-h]: print this usage summary # [--help]: equivalent to [-h] &lt;&gt;&lt;&gt; Error report &lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&gt; +- The following actions failed | - build coq-paradoxes dev +- - No changes have been performed # Run eval $(opam env) to update the current shell environment </pre></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>
ghstats/index.html
neelance/neelance.github.io
<!DOCTYPE html> <meta charset="utf-8"> <html> <head> <title>GitHub statistics</title> <meta property="og:title" content="GitHub statistics" /> <meta property="og:image" content="http://www.richard-musiol.de/ghstats/screenshot4.png" /> <style> body { font: 10px sans-serif; } .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .x.axis path { display: none; } .line { fill: none; stroke-width: 1.5px; } </style> </head> <body> <script src="d3.v3.js"></script> <script> var margin = {top: 20, right: 100, bottom: 50, left: 50}; var width = window.innerWidth; var height = window.innerHeight; var parseDate = d3.time.format("%Y-%m-%d").parse; var x = d3.time.scale() .range([0, width - margin.left - margin.right]); var y = d3.scale.log() .range([height - margin.top - margin.bottom, 0]); var color = d3.scale.category10(); var line = d3.svg.line() .interpolate("basis") .x(function(d) { return x(d.date); }) .y(function(d) { return y(d.value); }); var svg = d3.select("body").append("svg"); svg.attr("width", width); svg.attr("height", height); svg = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")"); d3.tsv("output.tsv", function(error, data) { var domain = d3.keys(data[0]).filter(function(name) { return name !== "date"; }); color.domain(domain); var languages = domain.map(function(name) { return { name: name, values: data.map(function(d) { return { date: parseDate(d.date), value: +d[name] }; }) }; }); x.domain(d3.extent(data, function(d) { return parseDate(d.date); })); y.domain([0.45, d3.max(languages, function(c) { return d3.max(c.values, function(v) { return v.value; }); })]); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + (height - margin.top - margin.bottom) + ")") .call(d3.svg.axis().scale(x).orient("bottom")); svg.append("g") .attr("class", "y axis") .call(d3.svg.axis().scale(y).orient("left").tickFormat(d3.format(".1f"))) .append("text") .attr("transform", "rotate(-90)") .attr("y", 6) .attr("dy", ".71em") .style("text-anchor", "end") .text("% GitHub Repositories With At Least 500 Stars"); var language = svg.selectAll() .data(languages) .enter().append("g") language.append("path") .attr("class", "line") .attr("d", function(d) { return line(d.values); }) .style("stroke", function(d) { return color(d.name); }); language.append("text") .datum(function(d) { return {name: d.name, value: d.values[d.values.length - 1]}; }) .attr("transform", function(d) { return "translate(" + x(d.value.date) + "," + y(d.value.value) + ")"; }) .attr("x", 3) .attr("dy", ".35em") .style("fill", function(d) { return color(d.name); }) .text(function(d) { return d.name; }); }); </script> <a href="https://github.com/neelance/neelance.github.io/tree/master/ghstats">Source Code</a> </body> </html>
course-cotrain-data/inlinks/non-course/http:^^www.cs.cornell.edu^Info^People^nikosc^nikosc.html
ML-SWAT/Web2KnowledgeBase
Nikos Chrisochoides Nikos Chrisochoides Nikos Chrisochoides Nikos Chrisochoides Nikos Chrisochoides Nikos P. Chrisochoides Nikos Chrisochoides Nikos P. Chrisochoides Nikos Chrisochoides Nikos P. Chrisochoides
src/index.html
almirfilho/grunt-workshop
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Grunt Workshop</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link rel="stylesheet" href="styles/foundation.min.css" /> <link rel="stylesheet" href="styles/custom.min.css" /> </head> <body> <section class="container"> <h1 class="grunt-title"><strong>Grunt</strong> é puro Rock n' Roll!</h1> <div class="grunt-page grunt-show"> <img class="grunt-logo left" src="images/grunt.png" /> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Poterat autem inpune; An hoc usque quaque, aliter in vita? Aufert enim sensus actionemque tollit omnem. Tu vero, inquam, ducas licet, si sequetur; Solum praeterea formosum, solum liberum, solum civem, stultost; Duo Reges: constructio interrete. Cur id non ita fit? Te enim iudicem aequum puto, modo quae dicat ille bene noris. Ergo id est convenienter naturae vivere, a natura discedere. Primum Theophrasti, Strato, physicum se voluit. <a class="label round success" href="#">#grunt</a> <a class="label round" href="#">#daveEhDev</a></p> <p><a id="grunt-button" href="#">Leia mais</a></p> </div> <div class="grunt-page" id="grunt-read-more"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Poterat autem inpune; An hoc usque quaque, aliter in vita? Aufert enim sensus actionemque tollit omnem. Tu vero, inquam, ducas licet, si sequetur; Solum praeterea formosum, solum liberum, solum civem, stultost; Duo Reges: constructio interrete. Cur id non ita fit? Te enim iudicem aequum puto, modo quae dicat ille bene noris. Ergo id est convenienter naturae vivere, a natura discedere. Primum Theophrasti, Strato, physicum se voluit.</p> </div> <pre> Lorem ipsum dolor sit amet com tag pre </pre> </section> <script src="scripts/all.min.js"></script> </body> </html>
_template_metro/monitor.html
tellaw/monitor4u
<!DOCTYPE html> <html class="sidebar_default no-js" lang="en"> <head> <meta charset="utf-8"> <title>Start - Admin Template</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <link rel="shortcut icon" href="css/images/favicon.png"> <!-- Le styles --> <link href="css/twitter/bootstrap.css" rel="stylesheet"> <link href="css/base.css" rel="stylesheet"> <link href="css/twitter/responsive.css" rel="stylesheet"> <link href="css/jquery-ui-1.8.23.custom.css" rel="stylesheet"> <script src="js/plugins/modernizr.custom.32549.js"></script> <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div id="loading"><img src="img/ajax-loader.gif"></div> <div id="responsive_part"> <div class="logo"> <a href="index.html"><span>Dashboard</span><span class="icon"></span></a> </div> <ul class="nav responsive"> <li> <button class="btn responsive_menu icon_item" data-toggle="collapse" data-target=".overview"> <i class="icon-reorder"></i> </button> </li> </ul> </div> <!-- Responsive part --> <div id="sidebar" class=""> <div class="scrollbar"> <div class="track"> <div class="thumb"> <div class="end"></div> </div> </div> </div> <div class="viewport "> <div class="overview collapse"> <div class="search row-fluid container"> <h2>Search</h2> <form class="form-search"> <div class="input-append"> <input type="text" class=" search-query" placeholder=""> <button class="btn_search color_4">Search</button> </div> </form> </div> <ul id="sidebar_menu" class="navbar nav nav-list container full"> <li class="accordion-group active color_4"> <a class="dashboard " href="index.html"><img src="img/menu_icons/dashboard.png"><span>Dashboard</span></a> </li> <li class="accordion-group color_7"> <a class="accordion-toggle widgets collapsed " data-toggle="collapse" data-parent="#sidebar_menu" href="#collapse1"> <img src="img/menu_icons/forms.png"><span>Form Elements</span></a> <ul id="collapse1" class="accordion-body collapse"> <li><a href="forms_general.html">General</a></li> <li><a href="forms_wizard.html">Wizards</a></li> <li><a href="forms_validation.html">Validation</a></li> <li><a href="forms_editor.html">Editor</a></li> </ul> </li> <li class="accordion-group color_3"> <a class="accordion-toggle widgets collapsed" data-toggle="collapse" data-parent="#sidebar_menu" href="#collapse2"> <img src="img/menu_icons/widgets.png"><span>UI Widgets</span></a> <ul id="collapse2" class="accordion-body collapse"> <li><a href="ui_buttons.html">Buttons</a></li> <li><a href="ui_dialogs.html">Dialogs</a></li> <li><a href="ui_icons.html">Icons</a></li> <li><a href="ui_tabs.html">Tabs</a></li> <li><a href="ui_accordion.html">Accordion</a></li> </ul> </li> <li class="color_13"> <a class="widgets" href="calendar2.html"> <img src="img/menu_icons/calendar.png"><span>Calendar</span></a> </li> <li class="color_10"> <a class="widgets"data-parent="#sidebar_menu" href="maps.html"> <img src="img/menu_icons/maps.png"><span>Maps</span></a> </li> <li class="accordion-group color_12"> <a class="accordion-toggle widgets collapsed" data-toggle="collapse" data-parent="#sidebar_menu" href="#collapse3"> <img src="img/menu_icons/tables.png"><span>Tables</span></a> <ul id="collapse3" class="accordion-body collapse"> <li><a href="tables_static.html">Static</a></li> <li><a href="tables_dynamic.html">Dynamics</a></li> </ul> </li> <li class="accordion-group color_19"> <a class="accordion-toggle widgets collapsed" data-toggle="collapse" data-parent="#sidebar_menu" href="#collapse4"> <img src="img/menu_icons/statistics.png"><span>Charts</span></a> <ul id="collapse4" class="accordion-body collapse"> <li><a href="statistics.html">Statistics Elements</a></li> <li><a href="charts.html">Charts</a></li> </ul> </li> <li class="color_24"> <a class="widgets"data-parent="#sidebar_menu" href="grid.html"> <img src="img/menu_icons/grid.png"><span>Grid</span></a> </li> <li class="color_8"> <a class="widgets"data-parent="#sidebar_menu" href="media.html"> <img src="img/menu_icons/gallery.png"><span>Media</span></a> </li> <li class="color_4"> <a class="widgets"data-parent="#sidebar_menu" href="file_explorer.html"> <img src="img/menu_icons/explorer.png"><span>File Explorer</span> <!-- --></a> </li> <li class="accordion-group color_25"> <a class="accordion-toggle widgets collapsed" data-toggle="collapse" data-parent="#sidebar_menu" href="#collapse5"> <img src="img/menu_icons/others.png"><span>Specific Pages</span></a> <ul id="collapse5" class="accordion-body collapse"> <li><a href="profile.html">Profile</a></li> <li><a href="search.html">Search</a></li> <li><a href="index2.html">Login</a></li> <li><a href="404.html">404 Error</a></li> <li ><a href="blog.html">Blog</a></li> </ul> </li> </ul> <div class="menu_states row-fluid container "> <h2 class="pull-left">Menu Settings</h2> <div class="options pull-right"> <button id="menu_state_1" class="color_4" rel="tooltip" data-state ="sidebar_icons" data-placement="top" data-original-title="Icon Menu">1</button> <button id="menu_state_2" class="color_4 active" rel="tooltip" data-state ="sidebar_default" data-placement="top" data-original-title="Fixed Menu">2</button> <button id="menu_state_3" class="color_4" rel="tooltip" data-placement="top" data-state ="sidebar_hover" data-original-title="Floating on Hover Menu">3</button> </div> </div> <!-- End sidebar_box --> </div> </div> </div> <div id="main"> <div class="container"> <div class="header row-fluid"> <div class="logo"> <a href="index.html"><span>Sonde de test 1</span><span class="icon"></span></a> </div> <div class="top_right"> <ul class="nav nav_menu"> <li class="dropdown"> <a class="dropdown-toggle administrator" id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="/page.html"> <div class="title"><span class="name">George</span><span class="subtitle">Future Buyer</span></div> <span class="icon"><img src="img/thumbnail_george.jpg"></span></a> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> <li><a href="profile.html"><i class=" icon-user"></i> My Profile</a></li> <li><a href="forms_general.html"><i class=" icon-cog"></i>Settings</a></li> <li><a href="index2.html"><i class=" icon-unlock"></i>Log Out</a></li> <li><a href="search.html"><i class=" icon-flag"></i>Help</a></li> </ul> </li> </ul> </div> <!-- End top-right --> </div> <div id="main_container"> <div class="row-fluid"> <div class="span12 "> <div class="box title_big height_big paint_hover" style="padding:10px;background-color:#222;"> <div id="chart" style="width:98%;height:98%;margin:10px;"></div> </div> </div> </div> </div> <!-- End .row-fluid --> <div class="row-fluid"> <div class="row-fluid box color_2 title_medium height_medium2 bar_stats paint_hover "> <div class="title hidden-phone"> <h5><span>Statistiques</span></h5> </div> <!-- End .title --> <div class="content row-fluid fluid numbers"> <div class="span3 stats hidden-phone"> <div style="width: 100%; height: 65px; margin-top: 7px; padding: 0px; position: relative;" id="placeholder3"><canvas class="base" width="310" height="65"></canvas><canvas class="overlay" width="310" height="65" style="position: absolute; left: 0px; top: 0px;"></canvas></div> </div> <div class="span2 average_ctr"> <h1 class="value">+ 15<span class="percent">%</span></h1> <div class="description mt15">tendance en hausse</div> </div> <div class="span4 shown_left" style="border-right: 1px dashed rgba(0, 0, 0, 0.2);"> <div class="row-fluid fluid"> <div class="span6"> <div class="description">Max</div> <h2 class="value">155 di(s)</h2> <div class="progress small"> <div style="width: 100%;" class="bar white"></div> </div> <div class="description">Valeurs références</div> </div> <div class="span6 full" style="padding-right:10px"> <div class="description text_color_dark">Min</div> <h2 class="value text_color_dark">15 di(s)</h2> <div class="progress small"> <div style="width: 0%;" class="bar "></div> </div> </div> </div> </div> <div class="span2 total_days"> <div class="row-fluid"> <div class="span12 total_clicks" style="text-align:center"> <h1 class="value">103</h1> <div class="description mt15">di(s) sur la période</div> </div> </div> </div> <div class="span1 stick top right result height_medium2"> <img src="img/arrows_up.png"> <div class="description mt15">Good</div> </div> </div> <!-- End .row-fluid --> <!-- End .content --> <a class="change_color_outside"><i class="paint_bucket"></i></a></div> <!-- End .box --> </div> </div> <!-- End .row-fluid --> <div class="row-fluid"> <div class="span6"> <div class="box color_3"> <table class="table table-bordered table-striped" id="sorting-advanced"> <thead> <tr> <th scope="col">Date de la valeur</th> <th scope="col" width="60" class="align-center">Valeur</th> <th scope="col" width="60" class="align-center">Variation</th> <th scope="col" width="60" class="align-center">Tendance</th> <th scope="col" width="150" class="align-center">Status</th> </tr> </thead> <tbody> <tr> <td>05/01/2013</td> <td class="align-center">16 di</td> <td class="align-center">-68%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>04/01/2013</td> <td class="align-center">50 di</td> <td class="align-center">+100%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag orange-bg">Grande variation!</span></td> </tr> <tr> <td>03/01/2013</td> <td class="align-center">25 di</td> <td class="align-center">+0%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-stable.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>02/01/2013</td> <td class="align-center">25 di</td> <td class="align-center">+257%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag orange-bg">Grande variation!</span></td> </tr> <tr> <td>01/01/2013</td> <td class="align-center">7 di</td> <td class="align-center">-46%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>31/12/2012</td> <td class="align-center">13 di</td> <td class="align-center">-7%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>30/12/2012</td> <td class="align-center">14 di</td> <td class="align-center">+27%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>29/12/2012</td> <td class="align-center">11 di</td> <td class="align-center">-62%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>28/12/2012</td> <td class="align-center">29 di</td> <td class="align-center">+4%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>27/12/2012</td> <td class="align-center">28 di</td> <td class="align-center">-10%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> </tbody> </table> </div> </div> <div class="span6"> <div class="box color_3"> <table class="table table-bordered table-striped" id="sorting-advanced"> <thead> <tr> <th scope="col">Date de la valeur</th> <th scope="col" width="60" class="align-center">Valeur</th> <th scope="col" width="60" class="align-center">Variation</th> <th scope="col" width="60" class="align-center">Tendance</th> <th scope="col" width="150" class="align-center">Status</th> </tr> </thead> <tbody> <tr> <td>05/01/2013</td> <td class="align-center">16 di</td> <td class="align-center">-68%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>04/01/2013</td> <td class="align-center">50 di</td> <td class="align-center">+100%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag orange-bg">Grande variation!</span></td> </tr> <tr> <td>03/01/2013</td> <td class="align-center">25 di</td> <td class="align-center">+0%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-stable.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>02/01/2013</td> <td class="align-center">25 di</td> <td class="align-center">+257%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag orange-bg">Grande variation!</span></td> </tr> <tr> <td>01/01/2013</td> <td class="align-center">7 di</td> <td class="align-center">-46%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>31/12/2012</td> <td class="align-center">13 di</td> <td class="align-center">-7%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>30/12/2012</td> <td class="align-center">14 di</td> <td class="align-center">+27%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>29/12/2012</td> <td class="align-center">11 di</td> <td class="align-center">-62%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>28/12/2012</td> <td class="align-center">29 di</td> <td class="align-center">+4%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-up.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> <tr> <td>27/12/2012</td> <td class="align-center">28 di</td> <td class="align-center">-10%</td> <td class="align-center"><img src="/monitoringU/web/img/arrow-down.png" style="height:20px;" align="absmiddle"/></td> <td class="align-center"><span class="tag green-bg">Ok</span></td> </tr> </tbody> </table> </div> </div> </div> <!-- End .row-fluid --> </div> <!-- End #container --> </div> <div id="footer"> <p> &copy; Tellaw.org </p> <span class="company_logo"><a href="http://www.pixelgrade.com"></a></span> </div> </div> <div class="background_changer dropdown"> <div class="dropdown" id="colors_pallete"> <a data-toggle="dropdown" data-target="drop4" class="change_color"></a> <ul class="dropdown-menu pull-left" role="menu" aria-labelledby="drop4"> <li><a data-color="color_0" class="color_0" tabindex="-1">1</a></li> <li><a data-color="color_1" class="color_1" tabindex="-1">1</a></li> <li><a data-color="color_2" class="color_2" tabindex="-1">2</a></li> <li><a data-color="color_3" class="color_3" tabindex="-1">3</a></li> <li><a data-color="color_4" class="color_4" tabindex="-1">4</a></li> <li><a data-color="color_5" class="color_5" tabindex="-1">5</a></li> <li><a data-color="color_6" class="color_6" tabindex="-1">6</a></li> <li><a data-color="color_7" class="color_7" tabindex="-1">7</a></li> <li><a data-color="color_8" class="color_8" tabindex="-1">8</a></li> <li><a data-color="color_9" class="color_9" tabindex="-1">9</a></li> <li><a data-color="color_10" class="color_10" tabindex="-1">10</a></li> <li><a data-color="color_11" class="color_11" tabindex="-1">10</a></li> <li><a data-color="color_12" class="color_12" tabindex="-1">12</a></li> <li><a data-color="color_13" class="color_13" tabindex="-1">13</a></li> <li><a data-color="color_14" class="color_14" tabindex="-1">14</a></li> <li><a data-color="color_15" class="color_15" tabindex="-1">15</a></li> <li><a data-color="color_16" class="color_16" tabindex="-1">16</a></li> <li><a data-color="color_17" class="color_17" tabindex="-1">17</a></li> <li><a data-color="color_18" class="color_18" tabindex="-1">18</a></li> <li><a data-color="color_19" class="color_19" tabindex="-1">19</a></li> <li><a data-color="color_20" class="color_20" tabindex="-1">20</a></li> <li><a data-color="color_21" class="color_21" tabindex="-1">21</a></li> <li><a data-color="color_22" class="color_22" tabindex="-1">22</a></li> <li><a data-color="color_23" class="color_23" tabindex="-1">23</a></li> <li><a data-color="color_24" class="color_24" tabindex="-1">24</a></li> <li><a data-color="color_25" class="color_25" tabindex="-1">25</a></li> </ul> </div> </div> <!-- End .background_changer --> </div> <!-- /container --> <!-- Le javascript ================================================== --> <!-- General scripts --> <script src="js/jquery.js" type="text/javascript"> </script> <!--[if !IE]> --> <!--[if !IE]> --> <script src="js/plugins/enquire.min.js" type="text/javascript"></script> <!-- <![endif]--> <!-- <![endif]--> <!--[if lt IE 7]> <script src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE7.js"></script> <![endif]--> <script language="javascript" type="text/javascript" src="js/plugins/jquery.sparkline.min.js"></script> <script src="js/plugins/excanvas.compiled.js"></script> <script src="js/bootstrap-transition.js" type="text/javascript"></script> <script src="js/bootstrap-alert.js" type="text/javascript"></script> <script src="js/bootstrap-modal.js" type="text/javascript"></script> <script src="js/bootstrap-dropdown.js" type="text/javascript"></script> <script src="js/bootstrap-scrollspy.js" type="text/javascript"></script> <script src="js/bootstrap-tab.js" type="text/javascript"></script> <script src="js/bootstrap-tooltip.js" type="text/javascript"></script> <script src="js/bootstrap-popover.js" type="text/javascript"></script> <script src="js/bootstrap-button.js" type="text/javascript"></script> <script src="js/bootstrap-collapse.js" type="text/javascript"></script> <script src="js/bootstrap-carousel.js" type="text/javascript"></script> <script src="js/bootstrap-typeahead.js" type="text/javascript"></script> <script src="js/bootstrap-affix.js" type="text/javascript"></script> <script src="js/fileinput.jquery.js" type="text/javascript"></script> <script src="js/jquery-ui-1.8.23.custom.min.js" type="text/javascript"></script> <script src="js/jquery.touchdown.js" type="text/javascript"></script> <script language="javascript" type="text/javascript" src="js/plugins/jquery.uniform.min.js"></script> <script language="javascript" type="text/javascript" src="js/plugins/jquery.tinyscrollbar.min.js"></script> <script language="javascript" type="text/javascript" src="js/jnavigate.jquery.min.js"></script> <script language="javascript" type="text/javascript" src="js/jquery.touchSwipe.min.js"></script> <script language="javascript" type="text/javascript" src="js/plugins/jquery.peity.min.js"></script> <!-- Flot charts --> <script language="javascript" type="text/javascript" src="js/plugins/flot/jquery.flot.js"></script> <script language="javascript" type="text/javascript" src="js/plugins/flot/jquery.flot.resize.js"></script> <!-- Data tables --> <script type="text/javascript" language="javascript" src="js/plugins/datatables/js/jquery.dataTables.js"></script> <!-- Task plugin --> <script language="javascript" type="text/javascript" src="js/plugins/knockout-2.0.0.js"></script> <!-- Custom made scripts for this template --> <script src="js/scripts.js" type="text/javascript"></script> <script> var grahJsonUrl = ""; <!-- Graph JS --> // then fetch the data with jQuery monthNames: ["jan", "feb", "mar", "apr", "maj", "jun", "jul", "aug", "sep", "okt", "nov", "dec"]; function onDataReceived(series) { var data = []; var options = { series: { lines: { show: true }, points: { show: true }, }, xaxis : { mode : "time", timeformat: "%d/%m" // Removed %y }, grid: { hoverable: true, clickable: true, color:"#FFF", borderWidth:0 }, legend: { show: true, margin: 10, backgroundOpacity: 0 } }; for(var i=0;i<series.graphics.length;i++) { data.push (series.graphics[i]); } // and plot all we got $.plot( $("#chart"), data, options); } function showTooltip(x, y, contents) { $('<div id="tooltip">' + contents + '</div>').css( { position: 'absolute', display: 'none', top: y + 5, left: x + 5, border: '1px solid #FAA', padding: '2px', 'background-color': '#FFF', 'z-index':'99', opacity: 0.80 }).appendTo("body").fadeIn(200); } var previousPoint = null; $("#chart").bind("plothover", function (event, pos, item) { $("#x").text(pos.x.toFixed(2)); $("#y").text(pos.y.toFixed(2)); if (item) { if (previousPoint != item.dataIndex) { previousPoint = item.dataIndex; $("#tooltip").remove(); var x = item.datapoint[0].toFixed(2), y = item.datapoint[1].toFixed(2); var d = new Date(item.datapoint[0]); showTooltip(item.pageX, item.pageY, item.series.label + "<br/>Date : " + d.getUTCDate() + "/" + (d.getUTCMonth()+1 ) + "<br/>Valeur :" + y); } } else { $("#tooltip").remove(); previousPoint = null; } }); $("#chart").bind("plotclick", function (event, pos, item) { if (item) { $("#clickdata").text("You clicked point " + item.dataIndex + " in " + item.series.label + "."); plot.highlight(item.series, item.datapoint); } }); $(document).ready( function(){ $.ajax({ url: "/monitoringU/web/app_dev.php/ajax/graph-monitor-json/1", method: 'GET', dataType : 'json', success: onDataReceived }); } ); </script> </body> </html>
www/css/style.css
tairezzzz/defu-ionic-box
.slider { height: 100%; } .slider-slide { padding-top: 80px; color: #000; background-color: #fff; text-align: center; font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; font-weight: 300; } #logo { margin: 30px 0px; } #list { width: 170px; margin: 30px auto; font-size: 20px; } #list ol { margin-top: 30px; } #list ol li { text-align: left; list-style: decimal; margin: 10px 0px; } .country { fill: #E7E7E7; stroke: none; } .country-boundary { fill: none; stroke: #999; } .region { stroke: none; } .region-boundary { fill: none; stroke: #424242; stroke-dasharray: 2 2; stroke-linejoin: round; opacity: 0.5; } .ukraine-boundary { fill: none; stroke: #333; } .river { fill: none; stroke: #fff; } .lake { fill: #fff; stroke: none; } #map { width: 100%; margin: auto; } .score { position: absolute; top: 1%; right: 1%; } invader { position: absolute; top: 1%; left: 1%; font-size: 14vh; width: 16vh; height: 16vh; text-align: center; margin-top: 1vh; } defender { position: absolute; top: 1%; left: 1%; font-size: 14vh; width: 16vh; height: 16vh; text-align: center; margin-top: 1vh; } #i_example { visibility: hidden; position: absolute; top: 1%; left: 1%; font-size: 8vh; width: 16vh; height: 16vh; text-align: center; margin-top: 1vh; } .circle { width: 16vh; height: 16vh; background: red; -moz-border-radius: 8vh; -webkit-border-radius: 8vh; border-radius: 8vh; } defender .circle { width: 16vh; height: 16vh; background: green; -moz-border-radius: 8vh; -webkit-border-radius: 8vh; border-radius: 8vh; } /* .invader-show-hide { -webkit-transition: all linear 0.5s; transition: all linear 0.5s; } .invader-show-hide.ng-hide { opacity: 0; } .defender-show-hide { -webkit-transition: all linear 0.5s; transition: all linear 0.5s; } .defender-show-hide.ng-hide { opacity: 0; } */ .invader-flag { width: 10vh; height: 6vh; position: absolute; top: 2%; left: 2%; background-image: url(/img/125px-Flag_of_Russia.svg.png); background-size: contain; } .center{ text-align:center; }
docs/updated-rules-1.0-beta-2.html
IATI/IATI-Rulesets
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <style TYPE='text/css'> .highlighter .add { background-color: #7fff7f; } .highlighter .remove { background-color: #ff7f7f; } .highlighter td.modify { background-color: #7f7fff; } .highlighter td.conflict { background-color: #f00; } .highlighter .spec { background-color: #aaa; } .highlighter .move { background-color: #ffa; } .highlighter .null { color: #888; } .highlighter table { border-collapse:collapse; } .highlighter td, .highlighter th { border: 1px solid #2D4068; padding: 3px 7px 2px; } .highlighter th, .highlighter .header, .highlighter .meta { background-color: #aaf; font-weight: bold; padding-bottom: 4px; padding-top: 5px; text-align:left; } .highlighter tr.header th { border-bottom: 2px solid black; } .highlighter tr.index td, .highlighter .index, .highlighter tr.header th.index { background-color: white; border: none; } .highlighter .gap { color: #888; } .highlighter td { empty-cells: show; } </style> </head> <body> <div class='highlighter'> <table> <thead> <tr class="header"><th>@@</th><th>Class</th><th>ID</th><th>Severity</th><th>Ruleset(s)</th><th>Message</th><th>Description</th><th>Guidance</th><th>Context (Xpath)</th><th>...</th></tr> </thead> <tbody> <tr class="modify"><td class="modify">→</td><td>iati</td><td>0.0.1</td><td>Information</td><td>iati</td><td class="modify">Congratulations! This IATI activity file has successfully passed validation with no errors!→Congratulations! This IATI file has successfully passed validation with no errors!</td><td></td><td></td><td>/*</td><td>...</td></tr> <tr><td></td><td>iati</td><td>0.1.1</td><td>Critical</td><td>iati</td><td>The file is not a proper XML file. The raw feedback from xmllint: {unparsed-text("/workspace/tmp/xmltestlog/" || $filename)} (not possible to present, maybe a binary file)</td><td></td><td></td><td>/not-an-xml-file</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> <tr><td></td><td>financial</td><td>11.3.1</td><td>Error</td><td>iati</td><td>The budget line value date must be in the budget period.</td><td></td><td>https://drive.google.com/file/d/1mv2Q666tKBOAoiy5JayslmZNetxDM1uu/view</td><td>budget-line/value[@value-date]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>information</td><td>11.4.1</td><td>Error</td><td>iati</td><td>The last-updated-datetime of the organisation must not be in the future.</td><td></td><td class="modify">https://drive.google.com/file/d/1-R-xGMCrAKiadMBIHsNc4Xvl75CB0IV1/view→</td><td>iati-organisation</td><td>...</td></tr> <tr><td></td><td>geo</td><td>12.1.1</td><td>Error</td><td>iati:2.03</td><td>The percentage must be between 0.0 and 100.0 (inclusive).</td><td></td><td>https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view</td><td>(recipient-country|recipient-region)[@percentage]</td><td>...</td></tr> <tr><td></td><td>geo</td><td>12.1.2</td><td>Error</td><td>iati:&lt; 2.03</td><td>The percentage must be 0.0 or positive.</td><td></td><td>https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view</td><td>(recipient-country|recipient-region)[@percentage]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>financial</td><td>12.2.1</td><td>Error</td><td>iati:2.03</td><td>The percentage must be between 0.0 and 100.0 (inclusive).</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/capital-spend/')→{me:iati-url('activity-standard/iati-activities/iati-activity/capital-spend/')}</td><td>(capital-spend|budget-item)[@percentage]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>financial</td><td>12.2.2</td><td>Error</td><td>iati:&lt; 2.03</td><td>The percentage must be 0.0 or positive.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/capital-spend/')→{me:iati-url('activity-standard/iati-activities/iati-activity/capital-spend/')}</td><td>(capital-spend|budget-item)[@percentage]</td><td>...</td></tr> <tr><td></td><td>classifications</td><td>12.3.1</td><td>Error</td><td>iati:2.03</td><td>The percentage must be between 0.0 and 100.0 (inclusive).</td><td></td><td>https://drive.google.com/file/d/1GNnjeqDIyWwuuIkJ8pMjLhE99R_olSJP/view</td><td>sector[@percentage]</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> <tr><td></td><td>classifications</td><td>2.1.1</td><td></td><td></td><td>Percentages are missing for one or more sectors, within a vocabulary (e.g. 1 - OECD DAC).</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/1GNnjeqDIyWwuuIkJ8pMjLhE99R_olSJP/view)}</td><td>iati-activity[sector]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>classifications</td><td>2.1.2</td><td></td><td></td><td class="modify">Percentages for sectors, within a vocabulary (e.g. 1 - OECD DAC) must add up to 100%.→Percentages for sectors, within a vocabulary (e.g. 1 - OECD DAC), must add up to 100%.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/1GNnjeqDIyWwuuIkJ8pMjLhE99R_olSJP/view)}</td><td>iati-activity[sector]</td><td>...</td></tr> <tr><td></td><td>classifications</td><td>2.1.4</td><td></td><td></td><td>For a single sector, the percentage must either be omitted, or set to 100.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/1GNnjeqDIyWwuuIkJ8pMjLhE99R_olSJP/view)}</td><td>iati-activity[sector]</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> <tr><td></td><td>geo</td><td>3.1.1</td><td></td><td>2.0x</td><td>Percentages are missing for one or more recipient countries.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[(recipient-country and not(recipient-region))]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>geo</td><td>3.1.2</td><td></td><td>2.0x</td><td class="modify">Percentages for recipient countries must add up to 100%.→Percentages for recipient countries, must add up to 100%.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[(recipient-country and not(recipient-region))]</td><td>...</td></tr> <tr><td></td><td>geo</td><td>3.1.4</td><td></td><td>2.0x</td><td>For a single recipient country, the percentage must either be omitted, or set to 100.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[(recipient-country and not(recipient-region))]</td><td>...</td></tr> <tr><td></td><td>geo</td><td>3.4.1</td><td></td><td>2.0x</td><td>Percentages are missing for one or more recipient countries or regions.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[recipient-region]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>geo</td><td>3.4.2</td><td></td><td>2.0x</td><td class="modify">Percentages for recipient countries or regions must add up to 100%.→Percentages for recipient countries or regions, must add up to 100%.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[recipient-region]</td><td>...</td></tr> <tr><td></td><td>geo</td><td>3.4.4</td><td></td><td>2.0x</td><td>For a single recipient country or region, the percentage must either be omitted, or set to 100.</td><td></td><td>{me:iati-url(https://drive.google.com/file/d/18P3vSUKK2iWCnXCrORDVAHR8K_EIg8Pp/view)}</td><td>iati-activity[recipient-region]</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> <tr><td></td><td>information</td><td>4.1.1</td><td>Error</td><td>iati</td><td>The activity should specify a default language, or the language must be specified for each narrative element.</td><td></td><td>{me:iati-url('codelists/Language/')}</td><td>iati-activity</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>information</td><td>4.3.1</td><td>Error</td><td></td><td>The title has no narrative content.</td><td></td><td class="modify">me:iati-url('{activity-standard/iati-activities/iati-activity/title/}')→{me:iati-url('{activity-standard/iati-activities/iati-activity/title/}')}</td><td>title</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>information</td><td>4.4.1</td><td>Error</td><td></td><td>The description has no narrative content.</td><td></td><td class="modify">me:iati-url('{activity-standard/iati-activities/iati-activity/title/}')→{me:iati-url('{activity-standard/iati-activities/iati-activity/title/}')}</td><td>description</td><td>...</td></tr> <tr><td></td><td>organisation</td><td>4.5.1</td><td>Error</td><td>iati</td><td>The organisation should specify a default language, or the language should be specified for each narrative element.</td><td></td><td>{me:iati-url('codelists/Language/')}</td><td>iati-organisation</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> <tr><td></td><td>financial</td><td>7.5.2</td><td>Error</td><td>iati</td><td>Budget Value must include a Value Date.</td><td></td><td>https://drive.google.com/file/d/1vB3vk7gbnADwG1S8A1bRDd8mK-nOfwCh/view?usp=drive_open</td><td>budget</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>financial</td><td>7.5.3</td><td>Error</td><td>iati</td><td>Budget Period must not be longer than one year.</td><td></td><td class="modify">https://drive.google.com/file/d/1vB3vk7gbnADwG1S8A1bRDd8mK-nOfwCh/view?usp=drive_open→https://drive.google.com/file/d/1JhMfO-f3Mldrs15OMlHTAUF9KixTUq5G/view</td><td>budget|total-budget|total-expenditure|recipient-country-budget|recipient-region-budget|recipient-org-budget</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>financial</td><td>7.8.1</td><td>Error</td><td>iati</td><td>The Value must have a specified Currency, or the Activity must have a default Currency.</td><td></td><td class="modify">me:iati-url('codelists/Currency/')→{me:iati-url('codelists/Currency/')}</td><td>value|loan-status|forecast</td><td>...</td></tr> <tr><td></td><td>financial</td><td>7.9.1</td><td></td><td></td><td>Percentages are missing for one or more country budget items, within a vocabulary (e.g. 4 - Reporting Organisation).</td><td></td><td>{me:iati-url(activity-standard/iati-activities/iati-activity/country-budget-items/budget-item/)}</td><td>iati-activity[country-budget-items]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>financial</td><td>7.9.2</td><td></td><td></td><td class="modify">Percentages for country budget items, within a vocabulary (e.g. 4 - Reporting Organisation) must add up to 100%.→Percentages for country budget items, within a vocabulary (e.g. 4 - Reporting Organisation), must add up to 100%.</td><td></td><td>{me:iati-url(activity-standard/iati-activities/iati-activity/country-budget-items/budget-item/)}</td><td>iati-activity[country-budget-items]</td><td>...</td></tr> <tr><td></td><td>financial</td><td>7.9.4</td><td></td><td></td><td>For a single country budget item, the percentage must either be omitted, or set to 100.</td><td></td><td>{me:iati-url(activity-standard/iati-activities/iati-activity/country-budget-items/budget-item/)}</td><td>iati-activity[country-budget-items]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.10.1</td><td>Error</td><td>iati:2.03</td><td>The actual must have a value when indicator measure is unit (1), percentage (2), nominal (3) or ordinal (4).</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')}</td><td>actual[../../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.10.2</td><td>Warning</td><td>iati:2.03</td><td>The @value should be a valid number for all non-qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')}</td><td>actual[../../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.10.3</td><td>Warning</td><td>iati:2.03</td><td>The @value should be omitted for qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/actual/')}</td><td>actual[../../@measure=('5')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.11.1</td><td>Error</td><td>iati</td><td>If a result has a reference code, the indicator must not have a reference code.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/reference/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/reference/')}</td><td>indicator[reference]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.6.1</td><td>Error</td><td>iati</td><td>The start of the period must be before the end of the period.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/period-start/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/period-start/')}</td><td>period</td><td>...</td></tr> <tr><td></td><td>financial</td><td>8.6.3</td><td>Error</td><td>iati</td><td>The start of the period must be before the end of the period.</td><td></td><td>https://drive.google.com/file/d/1mv2Q666tKBOAoiy5JayslmZNetxDM1uu/view</td><td>budget|total-budget|total-expenditure|recipient-org-budget|recipient-country-budget|recipient-region-budget|planned-disbursement</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.8.1</td><td>Error</td><td>iati:2.03</td><td>The baseline must have a value when indicator measure is unit (1), percentage (2), nominal (3) or ordinal (4).</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')}</td><td>baseline[../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.8.2</td><td>Warning</td><td>iati:2.03</td><td>The @value should be a valid number for all non-qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')}</td><td>baseline[../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.8.3</td><td>Warning</td><td>iati:2.03</td><td>The @value should be omitted for qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/baseline/')}</td><td>baseline[../@measure=('5')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.9.1</td><td>Error</td><td>iati:2.03</td><td>The target must have a value when indicator measure is unit (1), percentage (2), nominal (3) or ordinal (4).</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')}</td><td>target[../../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.9.2</td><td>Warning</td><td>iati:2.03</td><td>The @value should be a valid number for all non-qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')}</td><td>target[../../@measure=('1', '2', '3', '4')]</td><td>...</td></tr> <tr class="modify"><td class="modify">→</td><td>performance</td><td>8.9.3</td><td>Warning</td><td>iati:2.03</td><td>The @value should be omitted for qualitative measures.</td><td></td><td class="modify">me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')→{me:iati-url('activity-standard/iati-activities/iati-activity/result/indicator/period/target/')}</td><td>target[../../@measure=('5')]</td><td>...</td></tr> <tr><td></td><td>iati</td><td>9.1.1</td><td>Error</td><td>iati</td><td>The IATI version of the dataset is not a valid version number.</td><td></td><td>{me:iati-url('codelists/Version/')}</td><td>//iati-activities/@version</td><td>...</td></tr> <tr class="gap"><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td><td>...</td></tr> </tbody> </table> </div> </body> </html>
jlpt/288807773129079274432992910168785584342.html
xiangzhuyuan/cron-jlpt
version https://git-lfs.github.com/spec/v1 oid sha256:d5cc128e23de4db1491cefafea31b5214603d86c06f1a6748cde6e53907b6a95 size 4880
javadoc/casimir/cryptoAPI/package-frame.html
thehobbit85/coinpowers
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Sun Jun 29 05:13:55 IDT 2014 --> <TITLE> casimir.cryptoAPI </TITLE> <META NAME="date" CONTENT="2014-06-29"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../casimir/cryptoAPI/package-summary.html" target="classFrame">casimir.cryptoAPI</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="BitcoinAPI.html" title="class in casimir.cryptoAPI" target="classFrame">BitcoinAPI</A> <BR> <A HREF="MastercoinAPI.html" title="class in casimir.cryptoAPI" target="classFrame">MastercoinAPI</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
template/public/css/home/index.css
francoiscolas/vane
#home { border: 2px solid #CCCCCC; background-color: #DDDDDD; margin: 42px auto; padding: 21px; width: 42%; }
_core_docs/5.0.21/classes/state.statematcher.html
ui-router/ui-router.github.io
--- --- <!doctype html> <html class="default no-js"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>StateMatcher | @uirouter/core</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/uirouter.css"> <script src="../assets/js/modernizr.js"></script> <script src="../assets/js/reset.js"></script> </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.js" 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">@uirouter/core</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">Internal UI-Router API</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="../index.html">@uirouter/core</a> </li> <li> <a href="../modules/state.html">state</a> </li> <li> <a href="state.statematcher.html">StateMatcher</a> </li> </ul> <h1>Class StateMatcher</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">StateMatcher</span> </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 "> <h3>Constructors</h3> <ul class="tsd-index-list"> <li class="tsd-kind-constructor tsd-parent-kind-class"><a href="state.statematcher.html#constructor" class="tsd-kind-icon">constructor</a></li> </ul> </section> <section class="tsd-index-section tsd-is-private tsd-is-private-protected"> <h3>Properties</h3> <ul class="tsd-index-list"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><a href="state.statematcher.html#_states" class="tsd-kind-icon">_states</a></li> </ul> </section> <section class="tsd-index-section "> <h3>Methods</h3> <ul class="tsd-index-list"> <li class="tsd-kind-method tsd-parent-kind-class"><a href="state.statematcher.html#find" class="tsd-kind-icon">find</a></li> <li class="tsd-kind-method tsd-parent-kind-class"><a href="state.statematcher.html#isrelative" class="tsd-kind-icon">is<wbr>Relative</a></li> <li class="tsd-kind-method tsd-parent-kind-class"><a href="state.statematcher.html#resolvepath" class="tsd-kind-icon">resolve<wbr>Path</a></li> </ul> </section> </div> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Constructors</h2> <section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"> <a name="constructor" class="tsd-anchor"></a> <!-- <h3>constructor</h3> --> <ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">new <wbr>State<wbr>Matcher<span class="tsd-signature-symbol">(</span>_states<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">object</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="state.statematcher.html" class="tsd-signature-type">StateMatcher</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>_states <span class="tsd-signature-type">object</span></h5> <ul class="tsd-parameters"> <li class="tsd-parameter-index-signature"> <h5><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="state.stateobject.html" class="tsd-signature-type">StateObject</a></h5> </li> </ul> </li> </ul> <div class="tsd-returns"> <h4 class="tsd-returns-title">Returns <a href="state.statematcher.html" class="tsd-signature-type">StateMatcher</a></h4> </div> <hr> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/ui-router/core/blob/8ed691b/src/state/stateMatcher.ts#L7">state/stateMatcher.ts:7</a></li> </ul> </aside> </li> </ul> </section> </section> <section class="tsd-panel-group tsd-member-group tsd-is-private tsd-is-private-protected"> <h2>Properties</h2> <section class="tsd-panel tsd-member tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a name="_states" class="tsd-anchor"></a> <!-- <h3><span class="tsd-flag ts-flagPrivate">Private</span> _states</h3> --> <div class="tsd-signature tsd-kind-icon">_states<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">object</span></div> <div class="tsd-declaration"> </div> <div class="tsd-type-declaration"> <h4>Type declaration</h4> <ul class="tsd-parameters"> <li class="tsd-parameter-index-signature"> <h5><span class="tsd-signature-symbol">[</span>key: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">]: </span><a href="state.stateobject.html" class="tsd-signature-type">StateObject</a></h5> </li> </ul> </div> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/ui-router/core/blob/8ed691b/src/state/stateMatcher.ts#L8">state/stateMatcher.ts:8</a></li> </ul> </aside> </section> </section> <section class="tsd-panel-group tsd-member-group "> <h2>Methods</h2> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="find" class="tsd-anchor"></a> <!-- <h3>find</h3> --> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">find<span class="tsd-signature-symbol">(</span>stateOrName<span class="tsd-signature-symbol">: </span><a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a>, base<span class="tsd-signature-symbol">?: </span><a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a>, matchGlob<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="state.stateobject.html" class="tsd-signature-type">StateObject</a></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>stateOrName <a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a></h5> </li> <li> <h5>base: <span class="tsd-flag ts-flagOptional">Optional</span>&nbsp; <a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a></h5> </li> <li> <h5>matchGlob: <span class="tsd-flag ts-flagDefault value">Default value</span>&nbsp; <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> =&nbsp;true</span></h5> </li> </ul> <div class="tsd-returns"> <h4 class="tsd-returns-title">Returns <a href="state.stateobject.html" class="tsd-signature-type">StateObject</a></h4> </div> <hr> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/ui-router/core/blob/8ed691b/src/state/stateMatcher.ts#L15">state/stateMatcher.ts:15</a></li> </ul> </aside> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="isrelative" class="tsd-anchor"></a> <!-- <h3>is<wbr>Relative</h3> --> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">is<wbr>Relative<span class="tsd-signature-symbol">(</span>stateName<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>stateName <span class="tsd-signature-type">string</span></h5> </li> </ul> <div class="tsd-returns"> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4> </div> <hr> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/ui-router/core/blob/8ed691b/src/state/stateMatcher.ts#L10">state/stateMatcher.ts:10</a></li> </ul> </aside> </li> </ul> </section> <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class"> <a name="resolvepath" class="tsd-anchor"></a> <!-- <h3>resolve<wbr>Path</h3> --> <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class"> <li class="tsd-signature tsd-kind-icon">resolve<wbr>Path<span class="tsd-signature-symbol">(</span>name<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, base<span class="tsd-signature-symbol">: </span><a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li> </ul> <ul class="tsd-descriptions"> <li class="tsd-description"> <h4 class="tsd-parameters-title">Parameters</h4> <ul class="tsd-parameters"> <li> <h5>name <span class="tsd-signature-type">string</span></h5> </li> <li> <h5>base <a href="../modules/state.html#stateorname" class="tsd-signature-type">StateOrName</a></h5> </li> </ul> <div class="tsd-returns"> <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4> </div> <hr> <aside class="tsd-sources"> <ul> <li>Defined in <a href="https://github.com/ui-router/core/blob/8ed691b/src/state/stateMatcher.ts#L43">state/stateMatcher.ts:43</a></li> </ul> </aside> </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="../index.html"><em>@uirouter/core</em></a> </li> <li class="label tsd-is-external"> <span>Public API</span> </li> <li class=" tsd-kind-external-module"> <a href="../modules/common.html">common</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/core.html">core</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/params.html">params</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/resolve.html">resolve</a> </li> <li class="current tsd-kind-external-module"> <a href="../modules/state.html">state</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/transition.html">transition</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/url.html">url</a> </li> <li class=" tsd-kind-external-module"> <a href="../modules/view.html">view</a> </li> <li class="label tsd-is-external"> <span>Internal UI-<wbr><wbr>Router API</span> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/common_hof.html">common_<wbr>hof</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/common_predicates.html">common_<wbr>predicates</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/common_strings.html">common_<wbr>strings</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/hooks.html">hooks</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/path.html">path</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/trace.html">trace</a> </li> <li class=" tsd-kind-external-module tsd-is-external"> <a href="../modules/vanilla.html">vanilla</a> </li> </ul> </nav> <nav class="tsd-navigation secondary menu-sticky"> <ul class="before-current"> <li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external"> <a href="state.statebuilder.html" class="tsd-kind-icon">State<wbr>Builder</a> </li> </ul> <ul class="current"> <li class="current tsd-kind-class tsd-parent-kind-external-module"> <a href="state.statematcher.html" class="tsd-kind-icon">State<wbr>Matcher</a> <ul> <li class=" tsd-kind-constructor tsd-parent-kind-class"> <a href="state.statematcher.html#constructor" class="tsd-kind-icon">constructor</a> </li> <li class=" tsd-kind-property tsd-parent-kind-class tsd-is-private"> <a href="state.statematcher.html#_states" class="tsd-kind-icon">_states</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="state.statematcher.html#find" class="tsd-kind-icon">find</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="state.statematcher.html#isrelative" class="tsd-kind-icon">is<wbr>Relative</a> </li> <li class=" tsd-kind-method tsd-parent-kind-class"> <a href="state.statematcher.html#resolvepath" class="tsd-kind-icon">resolve<wbr>Path</a> </li> </ul> </li> </ul> <ul class="after-current"> <li class=" tsd-kind-class tsd-parent-kind-external-module"> <a href="state.stateobject.html" class="tsd-kind-icon">State<wbr>Object</a> </li> <li class=" tsd-kind-class tsd-parent-kind-external-module tsd-is-external"> <a href="state.statequeuemanager.html" class="tsd-kind-icon">State<wbr>Queue<wbr>Manager</a> </li> <li class=" tsd-kind-class tsd-parent-kind-external-module"> <a href="state.stateregistry.html" class="tsd-kind-icon">State<wbr>Registry</a> </li> <li class=" tsd-kind-class tsd-parent-kind-external-module"> <a href="state.stateservice.html" class="tsd-kind-icon">State<wbr>Service</a> </li> <li class=" tsd-kind-class tsd-parent-kind-external-module"> <a href="state.targetstate.html" class="tsd-kind-icon">Target<wbr>State</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../interfaces/state.builders.html" class="tsd-kind-icon">Builders</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module"> <a href="../interfaces/state.hrefoptions.html" class="tsd-kind-icon">Href<wbr>Options</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module"> <a href="../interfaces/state.lazyloadresult.html" class="tsd-kind-icon">Lazy<wbr>Load<wbr>Result</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module"> <a href="../interfaces/state.statedeclaration.html" class="tsd-kind-icon">State<wbr>Declaration</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module"> <a href="../interfaces/state.targetstatedef.html" class="tsd-kind-icon">Target<wbr>State<wbr>Def</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external"> <a href="../interfaces/state.transitionpromise.html" class="tsd-kind-icon">Transition<wbr>Promise</a> </li> <li class=" tsd-kind-interface tsd-parent-kind-external-module tsd-is-external"> <a href="../interfaces/state._viewdeclaration.html" class="tsd-kind-icon">_<wbr>View<wbr>Declaration</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#builderfunction" class="tsd-kind-icon">Builder<wbr>Function</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#oninvalidcallback" class="tsd-kind-icon">On<wbr>Invalid<wbr>Callback</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#redirecttoresult" class="tsd-kind-icon">Redirect<wbr>ToResult</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#resolvetypes" class="tsd-kind-icon">Resolve<wbr>Types</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#stateorname" class="tsd-kind-icon">State<wbr>OrName</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#stateregistrylistener" class="tsd-kind-icon">State<wbr>Registry<wbr>Listener</a> </li> <li class=" tsd-kind-type-alias tsd-parent-kind-external-module"> <a href="../modules/state.html#_statedeclaration" class="tsd-kind-icon">_<wbr>State<wbr>Declaration</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#databuilder" class="tsd-kind-icon">data<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#getnavigablebuilder" class="tsd-kind-icon">get<wbr>Navigable<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#getparamsbuilder" class="tsd-kind-icon">get<wbr>Params<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#geturlbuilder" class="tsd-kind-icon">get<wbr>Url<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#includesbuilder" class="tsd-kind-icon">includes<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#namebuilder" class="tsd-kind-icon">name<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#parseurl" class="tsd-kind-icon">parse<wbr>Url</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#pathbuilder" class="tsd-kind-icon">path<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module"> <a href="../modules/state.html#resolvablesbuilder" class="tsd-kind-icon">resolvables<wbr>Builder</a> </li> <li class=" tsd-kind-function tsd-parent-kind-external-module tsd-is-not-exported"> <a href="../modules/state.html#selfbuilder" class="tsd-kind-icon">self<wbr>Builder</a> </li> </ul> </nav> </div> </div> </div> <footer class="with-border-bottom"> <div class="container"> <h2>Legend</h2> <div class="tsd-legend-group"> <ul class="tsd-legend"> <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li> <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li> <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li> <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li> <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li> <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li> <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li> <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li> <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li> <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li> <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li> <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li> <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li> <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li> <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li> <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li> </ul> <ul class="tsd-legend"> <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li> <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li> </ul> </div> </div> </footer> <div class="container tsd-generator"> <p>Generated using <a href="http://typedoc.io" target="_blank">TypeDoc</a></p> </div> <div class="overlay"></div> <script src="../assets/js/main.js"></script> <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script> </body> </html>
doc/widget types/stepper.html
airstruck/luigi
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <head> <title>Reference</title> <link rel="stylesheet" href="../ldoc.css" type="text/css" /> </head> <body> <div id="container"> <div id="product"> <div id="product_logo"></div> <div id="product_name"><big><b></b></big></div> <div id="product_description"></div> </div> <!-- id="product" --> <div id="main"> <!-- Menu --> <div id="navigation"> <br/> <h1>LUIGI</h1> <ul> <li><a href="../index.html">Index</a></li> </ul> <h2>Widget Types</h2> <ul class="$(kind=='Topics' and '' or 'nowrap'"> <li><a href="../widget types/button.html">button</a></li> <li><a href="../widget types/check.html">check</a></li> <li><a href="../widget types/menu.html">menu</a></li> <li><a href="../widget types/menu.item.html">menu.item</a></li> <li><a href="../widget types/progress.html">progress</a></li> <li><a href="../widget types/radio.html">radio</a></li> <li><a href="../widget types/sash.html">sash</a></li> <li><a href="../widget types/slider.html">slider</a></li> <li><a href="../widget types/status.html">status</a></li> <li><strong>stepper</strong></li> <li><a href="../widget types/text.html">text</a></li> </ul> <h2>Modules</h2> <ul class="$(kind=='Topics' and '' or 'nowrap'"> <li><a href="../modules/attribute.html">attribute</a></li> </ul> <h2>Classes</h2> <ul class="$(kind=='Topics' and '' or 'nowrap'"> <li><a href="../classes/Event.html">Event</a></li> <li><a href="../classes/Layout.html">Layout</a></li> <li><a href="../classes/Widget.html">Widget</a></li> </ul> </div> <div id="content"> <h1>Widget <code>stepper</code></h1> <p>A stepper.</p> <p>This widget is composed of two buttons and a content area. Upon creation, this widget's children are moved into an <code>items</code> property. The items are displayed one at a time in the content area. Pressing the buttons cycles through the item displayed in the content area.</p> <br/> <br/> </div> <!-- id="content" --> </div> <!-- id="main" --> <div id="about"> <i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.3</a></i> <i style="float:right;">Last updated 2015-12-05 16:15:11 </i> </div> <!-- id="about" --> </div> <!-- id="container" --> </body> </html>
mylike.html
SCU-Newest/Newest
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>newest</title> <link rel="stylesheet" media="screen" href="css/index.css"> <link rel="stylesheet" type="text/css" href="font/font.css"> <script src="js/jquery-3.2.1.min.js"></script> <script src="js/jquery.cookie.js"></script> <script src="js/GlobalValue.js"></script> <style> .review{ float: left; font-size: 13px; height: 30px; line-height: 30px; } ul img{ height: 20px; margin: 5px; float: left; } #right-container .review{ height: 20px; font-size: 14px; line-height: 20px; margin-left: 10px; } </style> <!-- 作者:731275785@qq.com 时间:2017-07-22 描述:验证登录与加载用户数据 --> <script> if($.cookie('newestUserId')==null || $.cookie('newestUserName')==null){ window.location.href = "login-register.html"; } </script> </head> <body> <div id="index-container"> <div id="index-head"> <div id="index-head-inner"> <a href="index.html"><img style="height: 50px; float: left;" src="pic/title.png"></a> <ul id="index-head-nav"> <li><a href="index.html">新鲜事</a> <ul> <li><a href="publish-post.html">发布</a></li> <li><a href="mypost.html">我的</a></li> </ul> </li> <li><a>新闻</a> <ul> <li><a id="new-tech">要闻</a></li> <li><a id="new-science">科学</a></li> <li><a id="new-soft">软件</a></li> <li><a id="new-game">游戏</a></li> <li><a id="new-movie">影视</a></li> <li><a id="new-comic">动漫</a></li> <li><a id="new-funny">趣闻</a></li> </ul> </li> </ul> <div class="search-bar"> <div id="popver"> <div id="search-bar-container"> <input id="search-bar-input" type="text" placeholder="搜索你感兴趣的内容"> <button id="search-bar-button"></button> </div> </div> </div> <button class="search-button" id="search">搜索</button> </div> </div> <div style="padding: 0 16px;margin: 65px auto auto auto"> <div id="new-content"> <div id="mylike"> <div style="padding-left: 20px;">我的喜欢</div> </div> <div id="new-container"> <div id="content-main"> <ul id="ul-for-new"> </ul> <div id="none">没有更多啦</div> </div> </div> </div> <div id="index-right"> <div id="right-container"> <div class="person-head" id="myHeadPic"></div> <div class="person-name" id="myName"></div> <div class="person-piece"> <img height="20px" style="float: left;" src="pic/review.png"> <div class="review" id="myReview">@我的</div> </div> <div class="person-piece"> <img height="20px" style="float: left;" src="pic/like.png"> <div class="review" id="myLike">我的喜欢</div> </div> <div class="person-piece"> <img height="20px" style="float: left;" src="pic/setup.png"> <div class="review" id="mySetting">我的设置</div> </div> <button id="log-out">注 销</button> </div> </div> </div> </div> <!-- 作者:731275785@qq.com 时间:2017-07-21 描述:全局变量 --> <script> var u1 = u + "my-like"; var u3 = u + "like"; var u4 = "news.html?postId="; var ajaxobj; var list = '<li class="list-news">' + '<div class="list-news-top">' + '<div class="media-head"></div>' + '<div class="media-name"></div>' + '<div class="news-classify">'+ '<div class="review" style="margin-right:4px;"></div>' + '</div>' + '</div>' + '<div class="new-item-content">' + '<h3><a></a></h3>' + '<div class="new-item-content-inner"></div>' + '</div>' + '<div class="list-news-action">' + '<div class="list-news-action-review">' + '<img src="pic/review.png">' + '<a class="review" style="padding: 0;">评论</a>' + '</div>' + '<div class="list-news-action-like">' + '<img>' + '<div class="review"></div>' + '<div class="review">喜欢</div>' + '</div>' + '<div class="list-news-action-time"></div>' + '</div>' + '</li>'; </script> <!-- 作者:731275785@qq.com 时间:2017-07-21 描述:喜欢的切换 --> <script> function sendAddLike(dataId){ $.ajax({ type:"post", url:u3, async:true, contentType: "application/x-www-form-urlencoded; charset=utf-8", data:{ post_id: dataId, user_id: $.cookie('newestUserId'), liked: +1 } }); } function sendSubLike(dataId){ $.ajax({ type:"post", url:u3, async:true, contentType: "application/x-www-form-urlencoded; charset=utf-8", data:{ post_id: dataId, user_id: $.cookie('newestUserId'), liked: -1 } }); } $("body").on("click","img", function(){ if($(this).attr("src") == "pic/like.png" && $(this).attr("id") == null){ $(this).attr("src","pic/like-click.png"); var likeNum = $(this).next().html(); $(this).next().html(Number(likeNum)+1); sendAddLike($(this).parent().parent().parent().data("postId")); } else if($(this).attr("src") == "pic/like-click.png" && $(this).attr("id") == null){ $(this).attr("src","pic/like.png"); var likeNum = $(this).next().html(); $(this).next().html(Number(likeNum)-1); sendSubLike($(this).parent().parent().parent().data("postId")); $(this).parent().parent().parent().remove(); } else{ //do nothing } }); </script> <!-- 作者:731275785@qq.com 时间:2017-07-22 描述:点击查看详情 --> <script> $("body").on("click","h3 a:first-child", function(){ window.location.href = u4 + $(this).parent().parent().parent().data("postId") + "=category=" + $(this).parent().parent().parent().data("category"); }); $("body").on("click",".new-item-content-inner", function(){ window.location.href = u4 + $(this).parent().parent().data("postId") + "=category=" + $(this).parent().parent().parent().data("category"); }); $("body").on("click",".list-news-action-review", function(){ window.location.href = u4 + $(this).parent().parent().data("postId") + "=category=" + $(this).parent().parent().data("category") + "=reviews"; }); </script> <!-- 作者:731275785@qq.com 时间:2017-07-22 描述:验证登录与加载用户数据 --> <script> function sendMyLike(){ $.ajax({ type:"post", url:u1, async:true, contentType: "application/x-www-form-urlencoded; charset=utf-8", data:{ user_id: $.cookie('newestUserId') }, success:function(data){ ajaxobj = JSON.parse(data); if(ajaxobj.isOk == true){ if(ajaxobj.posts.length > 0){ for(var i=0; i<ajaxobj.posts.length; i++){ appendList(ajaxobj.posts[i].post_id,ajaxobj.posts[i].author_name, ajaxobj.posts[i].author_id,ajaxobj.posts[i].title, ajaxobj.posts[i].content,ajaxobj.posts[i].time, ajaxobj.posts[i].author_pic, ajaxobj.posts[i].category, ajaxobj.posts[i].isLiked,ajaxobj.posts[i].liked); } } } } }); } if($.cookie('newestUserId') && $.cookie('newestUserName')){ $("#myName").html($.cookie('newestUserName')); $("#myHeadPic").css("background-image","url("+$.cookie('newestUserPic')+")"); $("#myHeadPic").css("background-size","100px 100px"); sendMyLike(); } </script> <!-- 作者:731275785@qq.com 时间:2017-07-22 描述:注销 --> <script> function logOut(){ // $.cookie('newestUserId', null, { // expires : -1, // }); $.cookie('newestUserPassword', null, { expires : -1, }); $.cookie('newestUserName',null, { expires : -1, }); $.cookie('newestUserPic',null, { expires : -1, }); } $("#log-out").click(function(){ logOut(); window.location.reload(); }) </script> <!-- 作者:731275785@qq.com 时间:2017-07-21 描述:动态添加 --> <script> function appendList(postId,authorName,authorId,title,content,time,author_pic,category,isLiked,liked){ $("#ul-for-new").append(list); $("#ul-for-new li:last-child").data("postId",postId); $("#ul-for-new li:last-child").data("category",category); $("#ul-for-new li:last-child").children(".list-news-top").children(".media-head").css("background-image","url("+author_pic+")"); $("#ul-for-new li:last-child").children(".list-news-top").children(".media-head").css("background-size","26px 26px"); $("#ul-for-new li:last-child").children(".list-news-top").children(".media-name").html(authorName); if(category == "game"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("游戏"); } else if(category == "science"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("科学"); } else if(category == "tech"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("要闻"); } else if(category == "soft"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("软件"); } else if(category == "funny"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("趣闻"); } else if(category == "comic"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("动漫"); } else if(category == "新鲜事"){ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("新鲜事"); } else{ $("#ul-for-new li:last-child").children(".list-news-top").children(".news-classify").children(".review").html("影视"); } $("#ul-for-new li:last-child").children(".new-item-content").children("h3").children("a").html(title); $("#ul-for-new li:last-child").children(".new-item-content").children(".new-item-content-inner").html(content); $("#ul-for-new li:last-child").children(".list-news-action").children(".list-news-action-like").children(".review").first().html(liked); if(isLiked){ $("#ul-for-new li:last-child").children(".list-news-action").children(".list-news-action-like").children("img").attr("src","pic/like-click.png"); } else{ $("#ul-for-new li:last-child").children(".list-news-action").children(".list-news-action-like").children("img").attr("src","pic/like.png"); } $("#ul-for-new li:last-child").children(".list-news-action").children(".list-news-action-time").html(time); } </script> <!-- 作者:731275785@qq.com 时间:2017-07-24 描述:选择新闻种类 --> <script> $("#new-funny").click(function(){ window.location.href = "subnew.html?category=funny"; }); $("#new-game").click(function(){ window.location.href = "subnew.html?category=game"; }); $("#new-movie").click(function(){ window.location.href = "subnew.html?category=movie"; }); $("#new-comic").click(function(){ window.location.href = "subnew.html?category=comic"; }); $("#new-soft").click(function(){ window.location.href = "subnew.html?category=soft"; }); $("#new-tech").click(function(){ window.location.href = "subnew.html?category=tech"; }); $("#new-science").click(function(){ window.location.href = "subnew.html?category=science"; }) </script> <!-- 作者:731275785@qq.com 时间:2017-07-25 描述:@我的 --> <script> $("#myReview").click(function(){ window.location.href = "review-list.html"; }); </script> <!-- 作者:731275785@qq.com 时间:2017-07-25 描述:我的设置 --> <script> $("#mySetting").click(function(){ window.location.href = "setup.html"; }); $("#myLike").click(function(){ window.location.href = "mylike.html"; }); </script> <!-- 作者:731275785@qq.com 时间:2017-07-26 描述:搜索 --> <script> $("#search").click(function(){ if($("#search-bar-input").val() != ""){ window.location.href = "search-user.html?keyword=" + $("#search-bar-input").val(); } }); </script> </body> </html>
user_guide_zh_tw/index.html
pulipulichen/php-file-converter
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="description" content="HTTrack is an easy-to-use website mirror utility. It allows you to download a World Wide website from the Internet to a local directory,building recursively all structures, getting html, images, and other files from the server to your computer. Links are rebuiltrelatively so that you can freely browse to the local site (works with any browser). You can mirror several sites together so that you can jump from one toanother. You can, also, update an existing mirror site, or resume an interrupted download. The robot is fully configurable, with an integrated help" /> <meta name="keywords" content="httrack, HTTRACK, HTTrack, winhttrack, WINHTTRACK, WinHTTrack, offline browser, web mirror utility, aspirateur web, surf offline, web capture, www mirror utility, browse offline, local site builder, website mirroring, aspirateur www, internet grabber, capture de site web, internet tool, hors connexion, unix, dos, windows 95, windows 98, solaris, ibm580, AIX 4.0, HTS, HTGet, web aspirator, web aspirateur, libre, GPL, GNU, free software" /> <title>List of available projects - HTTrack Website Copier</title> <!-- Mirror and index made by HTTrack Website Copier/3.47-21 [XR&CO'2013] --> <style type="text/css"> <!-- body { margin: 0; padding: 0; margin-bottom: 15px; margin-top: 8px; background: #77b; } body, td { font: 14px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; } #subTitle { background: #000; color: #fff; padding: 4px; font-weight: bold; } #siteNavigation a, #siteNavigation .current { font-weight: bold; color: #448; } #siteNavigation a:link { text-decoration: none; } #siteNavigation a:visited { text-decoration: none; } #siteNavigation .current { background-color: #ccd; } #siteNavigation a:hover { text-decoration: none; background-color: #fff; color: #000; } #siteNavigation a:active { text-decoration: none; background-color: #ccc; } a:link { text-decoration: underline; color: #00f; } a:visited { text-decoration: underline; color: #000; } a:hover { text-decoration: underline; color: #c00; } a:active { text-decoration: underline; } #pageContent { clear: both; border-bottom: 6px solid #000; padding: 10px; padding-top: 20px; line-height: 1.65em; background-image: url(backblue.gif); background-repeat: no-repeat; background-position: top right; } #pageContent, #siteNavigation { background-color: #ccd; } .imgLeft { float: left; margin-right: 10px; margin-bottom: 10px; } .imgRight { float: right; margin-left: 10px; margin-bottom: 10px; } hr { height: 1px; color: #000; background-color: #000; margin-bottom: 15px; } h1 { margin: 0; font-weight: bold; font-size: 2em; } h2 { margin: 0; font-weight: bold; font-size: 1.6em; } h3 { margin: 0; font-weight: bold; font-size: 1.3em; } h4 { margin: 0; font-weight: bold; font-size: 1.18em; } .blak { background-color: #000; } .hide { display: none; } .tableWidth { min-width: 400px; } .tblRegular { border-collapse: collapse; } .tblRegular td { padding: 6px; background-image: url(fade.gif); border: 2px solid #99c; } .tblHeaderColor, .tblHeaderColor td { background: #99c; } .tblNoBorder td { border: 0; } // --> </style> </head> <body> <table width="76%" border="0" align="center" cellspacing="0" cellpadding="3" class="tableWidth"> <tr> <td id="subTitle">HTTrack Website Copier - Open Source offline browser</td> </tr> </table> <table width="76%" border="0" align="center" cellspacing="0" cellpadding="0" class="tableWidth"> <tr class="blak"> <td> <table width="100%" border="0" align="center" cellspacing="1" cellpadding="0"> <tr> <td colspan="6"> <table width="100%" border="0" align="center" cellspacing="0" cellpadding="10"> <tr> <td id="pageContent"> <!-- ==================== End prologue ==================== --> <h1 ALIGN=Center>Index of locally available projects:</H1> <table border="0" width="100%" cellspacing="1" cellpadding="0"> <TH> <BR/> No categories </TH> <TR> <TD BACKGROUND="fade.gif"> &middot; <A HREF="CodeIgniter%202.1.4/index.html">CodeIgniter 2.1.4</A> </TD> </TR> </TABLE> <BR> <H6 ALIGN="RIGHT"> <I>Mirror and index made by HTTrack Website Copier [XR&CO'2008]</I> </H6> <!-- Mirror and index made by HTTrack Website Copier/3.47-21 [XR&CO'2013] --> <!-- Thanks for using HTTrack Website Copier! --> <!-- ==================== Start epilogue ==================== --> </td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <table width="76%" border="0" align="center" valign="bottom" cellspacing="0" cellpadding="0"> <tr> <td id="footer"><small>&copy; 2008 Xavier Roche & other contributors - Web Design: Leto Kauler.</small></td> </tr> </table> </body> </html>
_assets/css/sidebar.css
LetsnetHungary/sinalisal
@import "n.css"; * { box-sizing: border-box; } body{ padding-left: 30px; } .sidebar-place{ flex-grow: 1; flex-shrink: 0; } .main-flex{ flex-grow: 5; flex-shrink: 3; } .big-container { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 70%; } .list-container { width:80%; display: flex; /* border-bottom: 1px solid orange; border-top: 1px solid orange; */ } .inside-container { display: flex; flex-direction: column; width: 100%; } .sidebar-p { margin: 0; font-size: 20px; color: #ff8732; letter-spacing: 2px; font-weight: bold; display: flex; font-family: 'Roboto', sans-serif; } .p-container { display: flex; width: 100%; } .sidebar-items{ margin: 0 auto; width: 100%; height: 100%; padding: 3px 0; padding-left: 8px; font-size: 17px; letter-spacing: 0.8px; text-decoration: none; color: black; } .sidebar-items:hover{ color: #ff8732; } .sidebar-section{ margin-bottom: 10px; width: 100%; } .sidebar-hr { border-color: #ff8732; width: 75%; float: left; margin: 10px 0 7px 0!important; }
books/templates/book_detail.html
oliverroick/django-tests
<h1>Book Detail</h1> {% if book %} Title: {{ book.name }} {% else % } Book not found: {{ error }} {% endif %}
styles/reset.css
ninamutty/ninamutty.github.io
/* This is a default that will override the browser pages, and then your page will style from there */ /* Theme Name: Theme URI: Description: Version: 1.0 Author: Author URI: */ /* reset styles */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; } :focus { outline: 0; } ins { text-decoration: none; } del { text-decoration: line-through; } table { border-collapse: collapse; border-spacing: 0; } body { font-size: 62.5%; text-align: left; color: #000000; } /* container - place inside each section or around the entire page depending on your layout */ .container { width: 960px; margin: 0 auto; text-align: left; position: relative; } /* for clearing any floats <br class=&quot;clearfloat&quot; /> */ .clearfloat { clear:both; height:0; font-size: 1px; line-height: 0px; }
web/app/components/comp-notifications/template.html
Chillybyte/GlobalComments
<div class="notifications"> <!-- _ASSIGN_ MSN --> <div class="notifications-inner" ng-repeat="notification in notifications track by notification.id"> <comp-notification notification=notification></comp-notification> </div> </div>
index.html
jawerty/mygithubpage
--- layout: layout title: "Jared Wright" --- <br> <title>Jared Wright</title> <section class="content"> <p>Hi, I'm <b>Jared</b> <span style="font-style:italic"><br><br> Developer, Student, and (aspiring) Entrepreneur <br><br></span> All of my open source projects are hosted on Github <a href='http://github.com/jawerty'>@jawerty</a> </p> <br><br> <h2>* Articles</h2> {% for post in site.posts %} <a href="{{ post.url }}">{{ post.title }}</a><span> - {{ post.date | date: "%B %e, %Y" }}</span> <br> <br> {% endfor %} </section>
public/styles/bootstrap.css
iranianpep/code-jetter
/*! * Bootstrap v3.3.5 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { margin: .67em 0; font-size: 2em; } mark { color: #000; background: #ff0; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sup { top: -.5em; } sub { bottom: -.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { height: 0; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { margin: 0; font: inherit; color: inherit; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { padding: 0; border: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; -webkit-appearance: textfield; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { padding: .35em .625em .75em; margin: 0 2px; border: 1px solid #c0c0c0; } legend { padding: 0; border: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-spacing: 0; border-collapse: collapse; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { color: #000 !important; text-shadow: none !important; background: transparent !important; -webkit-box-shadow: none !important; box-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\2a"; } .glyphicon-plus:before { content: "\2b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-btc:before { content: "\e227"; } .glyphicon-xbt:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-jpy:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-rub:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333; background-color: #fff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #337ab7; text-decoration: none; } a:hover, a:focus { color: #23527c; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { display: inline-block; max-width: 100%; height: auto; padding: 4px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eee; } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: inherit; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #777; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } mark, .mark { padding: .2em; background-color: #fcf8e3; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #777; } .text-primary { color: #337ab7; } a.text-primary:hover, a.text-primary:focus { color: #286090; } .text-success { color: #3c763d; } a.text-success:hover, a.text-success:focus { color: #2b542c; } .text-info { color: #31708f; } a.text-info:hover, a.text-info:focus { color: #245269; } .text-warning { color: #8a6d3b; } a.text-warning:hover, a.text-warning:focus { color: #66512c; } .text-danger { color: #a94442; } a.text-danger:hover, a.text-danger:focus { color: #843534; } .bg-primary { color: #fff; background-color: #337ab7; } a.bg-primary:hover, a.bg-primary:focus { background-color: #286090; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover, a.bg-info:focus { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover, a.bg-warning:focus { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover, a.bg-danger:focus { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; margin-left: -5px; list-style: none; } .list-inline > li { display: inline-block; padding-right: 5px; padding-left: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; overflow: hidden; clear: left; text-align: right; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #777; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #777; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; text-align: right; border-right: 5px solid #eee; border-left: 0; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #c7254e; background-color: #f9f2f4; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #fff; background-color: #333; border-radius: 3px; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; -webkit-box-shadow: none; box-shadow: none; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; color: #333; word-break: break-all; word-wrap: break-word; background-color: #f5f5f5; border: 1px solid #ccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { margin-right: -15px; margin-left: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0; } } table { background-color: transparent; } caption { padding-top: 8px; padding-bottom: 8px; color: #777; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #ddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #ddd; } .table .table { background-color: #fff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #ddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover > tbody > tr:hover { background-color: #f5f5f5; } table col[class*="col-"] { position: static; display: table-column; float: none; } table td[class*="col-"], table th[class*="col-"] { position: static; display: table-cell; float: none; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } .table-responsive { min-height: .01%; overflow-x: auto; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #ddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 7px; font-size: 14px; line-height: 1.42857143; color: #555; } .form-control { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555; background-color: #fff; background-image: none; border: 1px solid #ccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); } .form-control::-moz-placeholder { color: #999; opacity: 1; } .form-control:-ms-input-placeholder { color: #999; } .form-control::-webkit-input-placeholder { color: #999; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #eee; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 34px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 46px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-top: 4px \9; margin-left: -20px; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; font-weight: normal; vertical-align: middle; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { min-height: 34px; padding-top: 7px; padding-bottom: 7px; margin-bottom: 0; } .form-control-static.input-lg, .form-control-static.input-sm { padding-right: 0; padding-left: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-lg { height: 46px; line-height: 46px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 46px; line-height: 46px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 46px; min-height: 38px; padding: 11px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 42.5px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 34px; height: 34px; line-height: 34px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 46px; height: 46px; line-height: 46px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #3c763d; } .has-success .form-control { border-color: #3c763d; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-success .form-control:focus { border-color: #2b542c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; } .has-success .input-group-addon { color: #3c763d; background-color: #dff0d8; border-color: #3c763d; } .has-success .form-control-feedback { color: #3c763d; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #8a6d3b; } .has-warning .form-control { border-color: #8a6d3b; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-warning .form-control:focus { border-color: #66512c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; } .has-warning .input-group-addon { color: #8a6d3b; background-color: #fcf8e3; border-color: #8a6d3b; } .has-warning .form-control-feedback { color: #8a6d3b; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #a94442; } .has-error .form-control { border-color: #a94442; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); } .has-error .form-control:focus { border-color: #843534; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; } .has-error .input-group-addon { color: #a94442; background-color: #f2dede; border-color: #a94442; } .has-error .form-control-feedback { color: #a94442; } .has-feedback label ~ .form-control-feedback { top: 25px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { padding-top: 7px; margin-top: 0; margin-bottom: 0; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 27px; } .form-horizontal .form-group { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { padding-top: 7px; margin-bottom: 0; text-align: right; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 14.333333px; font-size: 18px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: normal; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #333; text-decoration: none; } .btn:active, .btn.active { background-image: none; outline: 0; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; opacity: .65; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-primary { color: #fff; background-color: #337ab7; border-color: #2e6da4; } .btn-primary:focus, .btn-primary.focus { color: #fff; background-color: #286090; border-color: #122b40; } .btn-primary:hover { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #fff; background-color: #286090; border-color: #204d74; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #fff; background-color: #204d74; border-color: #122b40; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active { background-color: #337ab7; border-color: #2e6da4; } .btn-primary .badge { color: #337ab7; background-color: #fff; } .btn-success { color: #fff; background-color: #5cb85c; border-color: #4cae4c; } .btn-success:focus, .btn-success.focus { color: #fff; background-color: #449d44; border-color: #255625; } .btn-success:hover { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #fff; background-color: #449d44; border-color: #398439; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #fff; background-color: #398439; border-color: #255625; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background-color: #5cb85c; border-color: #4cae4c; } .btn-success .badge { color: #5cb85c; background-color: #fff; } .btn-info { color: #fff; background-color: #5bc0de; border-color: #46b8da; } .btn-info:focus, .btn-info.focus { color: #fff; background-color: #31b0d5; border-color: #1b6d85; } .btn-info:hover { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #fff; background-color: #31b0d5; border-color: #269abc; } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #fff; background-color: #269abc; border-color: #1b6d85; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active { background-color: #5bc0de; border-color: #46b8da; } .btn-info .badge { color: #5bc0de; background-color: #fff; } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #eea236; } .btn-warning:focus, .btn-warning.focus { color: #fff; background-color: #ec971f; border-color: #985f0d; } .btn-warning:hover { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #fff; background-color: #ec971f; border-color: #d58512; } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #fff; background-color: #d58512; border-color: #985f0d; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active { background-color: #f0ad4e; border-color: #eea236; } .btn-warning .badge { color: #f0ad4e; background-color: #fff; } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d43f3a; } .btn-danger:focus, .btn-danger.focus { color: #fff; background-color: #c9302c; border-color: #761c19; } .btn-danger:hover { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #fff; background-color: #c9302c; border-color: #ac2925; } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #fff; background-color: #ac2925; border-color: #761c19; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active { background-color: #d9534f; border-color: #d43f3a; } .btn-danger .badge { color: #d9534f; background-color: #fff; } .btn-link { font-weight: normal; color: #337ab7; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #23527c; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #777; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity .15s linear; -o-transition: opacity .15s linear; transition: opacity .15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-timing-function: ease; -o-transition-timing-function: ease; transition-timing-function: ease; -webkit-transition-duration: .35s; -o-transition-duration: .35s; transition-duration: .35s; -webkit-transition-property: height, visibility; -o-transition-property: height, visibility; transition-property: height, visibility; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid \9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; font-size: 14px; text-align: left; list-style: none; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); box-shadow: 0 6px 12px rgba(0, 0, 0, .175); } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { color: #262626; text-decoration: none; background-color: #f5f5f5; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #fff; text-decoration: none; background-color: #337ab7; outline: 0; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #777; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; cursor: not-allowed; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropdown-menu-left { right: auto; left: 0; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #777; white-space: nowrap; } .dropdown-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { content: ""; border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid \9; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { right: 0; left: auto; } .navbar-right .dropdown-menu-left { right: auto; left: 0; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-right: 8px; padding-left: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-right: 12px; padding-left: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { display: table-cell; float: none; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-right: 0; padding-left: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 46px; padding: 10px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 46px; line-height: 46px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 6px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #555; text-align: center; background-color: #eee; border: 1px solid #ccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 10px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { padding-left: 0; margin-bottom: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eee; } .nav > li.disabled > a { color: #777; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #777; text-decoration: none; cursor: not-allowed; background-color: transparent; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eee; border-color: #337ab7; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #ddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eee #eee #ddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #555; cursor: default; background-color: #fff; border: 1px solid #ddd; border-bottom-color: transparent; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #fff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #fff; background-color: #337ab7; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { margin-bottom: 5px; text-align: center; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #ddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #ddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #fff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { padding-right: 15px; padding-left: 15px; overflow-x: visible; -webkit-overflow-scrolling: touch; border-top: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-right: 0; padding-left: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; height: 50px; padding: 15px 15px; font-size: 18px; line-height: 20px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; padding: 9px 10px; margin-top: 8px; margin-right: 15px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; -webkit-box-shadow: none; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } } .navbar-form { padding: 10px 15px; margin-top: 8px; margin-right: -15px; margin-bottom: 8px; margin-left: -15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; padding-top: 0; padding-bottom: 0; margin-right: 0; margin-left: 0; border: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 8px; margin-bottom: 8px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-right: 15px; margin-left: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #f8f8f8; border-color: #e7e7e7; } .navbar-default .navbar-brand { color: #777; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #5e5e5e; background-color: transparent; } .navbar-default .navbar-text { color: #777; } .navbar-default .navbar-nav > li > a { color: #777; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #ccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #ddd; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #ddd; } .navbar-default .navbar-toggle .icon-bar { background-color: #888; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #e7e7e7; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { color: #555; background-color: #e7e7e7; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #777; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #333; background-color: transparent; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #555; background-color: #e7e7e7; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #ccc; background-color: transparent; } } .navbar-default .navbar-link { color: #777; } .navbar-default .navbar-link:hover { color: #333; } .navbar-default .btn-link { color: #777; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #333; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #ccc; } .navbar-inverse { background-color: #222; border-color: #080808; } .navbar-inverse .navbar-brand { color: #9d9d9d; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-text { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #444; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #333; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #333; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #fff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #101010; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { color: #fff; background-color: #080808; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #9d9d9d; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #fff; background-color: transparent; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #fff; background-color: #080808; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #444; background-color: transparent; } } .navbar-inverse .navbar-link { color: #9d9d9d; } .navbar-inverse .navbar-link:hover { color: #fff; } .navbar-inverse .btn-link { color: #9d9d9d; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #fff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #444; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { padding: 0 5px; color: #ccc; content: "/\00a0"; } .breadcrumb > .active { color: #777; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; /* removed */ /* color: #337ab7; */ text-decoration: none; background-color: #fff; border: 1px solid #ddd; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-top-right-radius: 4px; border-bottom-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { z-index: 3; color: #23527c; background-color: #eee; /* removed */ /* border-color: #ddd; */ } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 2; color: #fff; cursor: default; /* removed */ /* background-color: #337ab7; border-color: #337ab7; */ } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #777; cursor: not-allowed; background-color: #fff; border-color: #ddd; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 10px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-top-left-radius: 3px; border-bottom-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; text-align: center; list-style: none; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #fff; border: 1px solid #ddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #777; cursor: not-allowed; background-color: #fff; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #fff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #777; } .label-default[href]:hover, .label-default[href]:focus { background-color: #5e5e5e; } .label-primary { background-color: #337ab7; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #286090; } .label-success { background-color: #5cb85c; } .label-success[href]:hover, .label-success[href]:focus { background-color: #449d44; } .label-info { background-color: #5bc0de; } .label-info[href]:hover, .label-info[href]:focus { background-color: #31b0d5; } .label-warning { background-color: #f0ad4e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #ec971f; } .label-danger { background-color: #d9534f; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #c9302c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; line-height: 1; color: #fff; text-align: center; white-space: nowrap; vertical-align: middle; background-color: #777; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #fff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #337ab7; background-color: #fff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; background-color: #eee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron > hr { border-top-color: #d5d5d5; } .container .jumbotron, .container-fluid .jumbotron { border-radius: 6px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-right: 60px; padding-left: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #fff; border: 1px solid #ddd; border-radius: 4px; -webkit-transition: border .2s ease-in-out; -o-transition: border .2s ease-in-out; transition: border .2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-right: auto; margin-left: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #337ab7; } .thumbnail .caption { padding: 9px; color: #333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #2b542c; } .alert-info { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #245269; } .alert-warning { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .alert-warning hr { border-top-color: #f7e1b5; } .alert-warning .alert-link { color: #66512c; } .alert-danger { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .alert-danger hr { border-top-color: #e4b9c0; } .alert-danger .alert-link { color: #843534; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @-o-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { height: 20px; margin-bottom: 20px; overflow: hidden; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); } .progress-bar { float: left; width: 0; height: 100%; font-size: 12px; line-height: 20px; color: #fff; text-align: center; background-color: #337ab7; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); -webkit-background-size: 40px 40px; background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #5cb85c; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #5bc0de; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #f0ad4e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #d9534f; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { overflow: hidden; zoom: 1; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { padding-left: 0; margin-bottom: 20px; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #fff; border: 1px solid #ddd; } .list-group-item:first-child { border-top-left-radius: 4px; border-top-right-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } a.list-group-item, button.list-group-item { color: #555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { color: #555; text-decoration: none; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { color: #777; cursor: not-allowed; background-color: #eee; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #777; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #fff; background-color: #337ab7; border-color: #337ab7; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #c7ddef; } .list-group-item-success { color: #3c763d; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #3c763d; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #3c763d; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #3c763d; border-color: #3c763d; } .list-group-item-info { color: #31708f; background-color: #d9edf7; } a.list-group-item-info, button.list-group-item-info { color: #31708f; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #31708f; background-color: #c4e3f3; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #31708f; border-color: #31708f; } .list-group-item-warning { color: #8a6d3b; background-color: #fcf8e3; } a.list-group-item-warning, button.list-group-item-warning { color: #8a6d3b; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #8a6d3b; background-color: #faf2cc; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #8a6d3b; border-color: #8a6d3b; } .list-group-item-danger { color: #a94442; background-color: #f2dede; } a.list-group-item-danger, button.list-group-item-danger { color: #a94442; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #a94442; background-color: #ebcccc; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #a94442; border-color: #a94442; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #fff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); box-shadow: 0 1px 1px rgba(0, 0, 0, .05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #ddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-right: 15px; padding-left: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #ddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { margin-bottom: 0; border: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #ddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #ddd; } .panel-default { border-color: #ddd; } .panel-default > .panel-heading { color: #333; background-color: #f5f5f5; border-color: #ddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ddd; } .panel-primary { border-color: #337ab7; } .panel-primary > .panel-heading { color: #fff; background-color: #337ab7; border-color: #337ab7; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #337ab7; } .panel-primary > .panel-heading .badge { color: #337ab7; background-color: #fff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #337ab7; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #3c763d; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #dff0d8; background-color: #3c763d; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #31708f; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #31708f; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #faebcc; } .panel-warning > .panel-heading { color: #8a6d3b; background-color: #fcf8e3; border-color: #faebcc; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #faebcc; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #8a6d3b; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #faebcc; } .panel-danger { border-color: #ebccd1; } .panel-danger > .panel-heading { color: #a94442; background-color: #f2dede; border-color: #ebccd1; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #ebccd1; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #a94442; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #ebccd1; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, .15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; filter: alpha(opacity=20); opacity: .2; } .close:hover, .close:focus { color: #000; text-decoration: none; cursor: pointer; filter: alpha(opacity=50); opacity: .5; } button.close { -webkit-appearance: none; padding: 0; cursor: pointer; background: transparent; border: 0; } .modal-open { overflow: hidden; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; -o-transition: -o-transform .3s ease-out; transition: transform .3s ease-out; -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #999; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; outline: 0; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); box-shadow: 0 3px 9px rgba(0, 0, 0, .5); } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { filter: alpha(opacity=0); opacity: 0; } .modal-backdrop.in { filter: alpha(opacity=50); opacity: .5; } .modal-header { min-height: 16.42857143px; padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 15px; } .modal-footer { padding: 15px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-bottom: 0; margin-left: 5px; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); box-shadow: 0 5px 15px rgba(0, 0, 0, .5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 12px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; filter: alpha(opacity=0); opacity: 0; line-break: auto; } .tooltip.in { filter: alpha(opacity=90); opacity: .9; } .tooltip.top { padding: 5px 0; margin-top: -3px; } .tooltip.right { padding: 0 5px; margin-left: 3px; } .tooltip.bottom { padding: 5px 0; margin-top: 3px; } .tooltip.left { padding: 0 5px; margin-left: -3px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #fff; text-align: center; background-color: #000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-left .tooltip-arrow { right: 5px; bottom: 0; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; font-style: normal; font-weight: normal; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; word-wrap: normal; white-space: normal; background-color: #fff; -webkit-background-clip: padding-box; background-clip: padding-box; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); box-shadow: 0 5px 10px rgba(0, 0, 0, .2); line-break: auto; } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { padding: 8px 14px; margin: 0; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { content: ""; border-width: 10px; } .popover.top > .arrow { bottom: -11px; left: 50%; margin-left: -11px; border-top-color: #999; border-top-color: rgba(0, 0, 0, .25); border-bottom-width: 0; } .popover.top > .arrow:after { bottom: 1px; margin-left: -10px; content: " "; border-top-color: #fff; border-bottom-width: 0; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-right-color: #999; border-right-color: rgba(0, 0, 0, .25); border-left-width: 0; } .popover.right > .arrow:after { bottom: -10px; left: 1px; content: " "; border-right-color: #fff; border-left-width: 0; } .popover.bottom > .arrow { top: -11px; left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999; border-bottom-color: rgba(0, 0, 0, .25); } .popover.bottom > .arrow:after { top: 1px; margin-left: -10px; content: " "; border-top-width: 0; border-bottom-color: #fff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999; border-left-color: rgba(0, 0, 0, .25); } .popover.left > .arrow:after { right: 1px; bottom: -10px; content: " "; border-right-width: 0; border-left-color: #fff; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-inner > .item { position: relative; display: none; -webkit-transition: .6s ease-in-out left; -o-transition: .6s ease-in-out left; transition: .6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform .6s ease-in-out; -o-transition: -o-transform .6s ease-in-out; transition: transform .6s ease-in-out; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { left: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { left: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { left: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; bottom: 0; left: 0; width: 15%; font-size: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); filter: alpha(opacity=50); opacity: .5; } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); background-repeat: repeat-x; } .carousel-control.right { right: 0; left: auto; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); background-repeat: repeat-x; } .carousel-control:hover, .carousel-control:focus { color: #fff; text-decoration: none; filter: alpha(opacity=90); outline: 0; opacity: .9; } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; z-index: 5; display: inline-block; margin-top: -10px; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; font-family: serif; line-height: 1; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; padding-left: 0; margin-left: -30%; text-align: center; list-style: none; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); border: 1px solid #fff; border-radius: 10px; } .carousel-indicators .active { width: 12px; height: 12px; margin: 0; background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, .6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -15px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -15px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -15px; } .carousel-caption { right: 20%; left: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-footer:before, .modal-footer:after { display: table; content: " "; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-right: auto; margin-left: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } /*# sourceMappingURL=bootstrap.css.map */
_layouts/post-list.html
quido3/quido3.github.io
--- layout: compress --- <!DOCTYPE html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"><!--<![endif]--> <head> {% include head.html %} </head> <body> {% include nav.html %} <!-- Header --> <header class="header" role="banner"> <div class="wrapper animated fadeIn"> <div class="content"> <div class="post-title"> <h1>{{ page.title }}</h1> <a class="btn zoombtn" href="{{site.url}}"> <i class="fa fa-home"></i> </a> </div> <div class="post-list"> {% for post in site.posts %} {% if post.project == null and post.experience == null%} <ul> <li class="wow fadeInLeft" data-wow-duration="1.5s"> <a class="zoombtn" href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> <p>{{ post.excerpt }}</p> <a href="{{ site.url }}{{ post.url }}" class="btn zoombtn">Read More</a> </li> </ul> {% endif %} {% endfor %} </div> </div> </div> </header> {% include scripts.html %} <script src="{{ site.url }}/assets/js/wow.min.js"></script> <script type="text/javascript">(new WOW).init();</script> </body> </html>
14417fd/html/classv8_1_1_isolate_1_1_scope.html
v8-dox/v8-dox.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.9.1"/> <title>V8 API Reference Guide for node.js v0.10.2 - v0.10.3: v8::Isolate::Scope Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v0.10.2 - v0.10.3 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.9.1 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacev8.html">v8</a></li><li class="navelem"><a class="el" href="classv8_1_1_isolate.html">Isolate</a></li><li class="navelem"><a class="el" href="classv8_1_1_isolate_1_1_scope.html">Scope</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="classv8_1_1_isolate_1_1_scope-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::Isolate::Scope Class Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="v8_8h_source.html">v8.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a43889336478a5625e095c4444b9dd684"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a43889336478a5625e095c4444b9dd684"></a> &#160;</td><td class="memItemRight" valign="bottom"><b>Scope</b> (<a class="el" href="classv8_1_1_isolate.html">Isolate</a> *isolate)</td></tr> <tr class="separator:a43889336478a5625e095c4444b9dd684"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Stack-allocated class which sets the isolate for all operations executed within a local scope. </p> </div><hr/>The documentation for this class was generated from the following file:<ul> <li>deps/v8/include/<a class="el" href="v8_8h_source.html">v8.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Aug 11 2015 23:45:04 for V8 API Reference Guide for node.js v0.10.2 - v0.10.3 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.9.1 </small></address> </body> </html>
all-data/3000-3999/3698-34.html
BuzzAcademy/idioms-moe-unformatted-data
<table width="90%" border="0"><tr><td><script>function openfile(url) {fullwin = window.open(url, "fulltext", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes");}</script><div class="layoutclass_pic"><div class="layoutclass_first_pic"><table class="ztable"><tr><th class="ztd1"><b>成語&nbsp;</b></th><td class="ztd2">罪不容宥</td></tr> <tr><th class="ztd1"><b>注音&nbsp;</b></th><td class="ztd2">ㄗㄨㄟ<sup class="subfont">ˋ</sup> ㄅㄨ<sup class="subfont">ˋ</sup> ㄖㄨㄥ<sup class="subfont">ˊ</sup> |ㄡ<sup class="subfont">ˋ</sup></td></tr> <tr><th class="ztd1"><b>漢語拼音&nbsp;</b></th><td class="ztd2"><font class="english_word">zuì bù róng yòu</font></td></tr> <tr><th class="ztd1"><b>釋義&nbsp;</b></th><td class="ztd2"> 義參「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000000772%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%22CW0000000772%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%22CW0000000772%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> ㄓㄨ</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">zuì bù róng zhū</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>
checkstyle-5.5/site/apidocs/com/puppycrawl/tools/checkstyle/checks/coding/class-use/MissingCtorCheck.html
kentwang/algs4
<!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_26) on Sat Nov 05 23:16:32 EST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class com.puppycrawl.tools.checkstyle.checks.coding.MissingCtorCheck (checkstyle 5.5 API) </TITLE> <META NAME="date" CONTENT="2011-11-05"> <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 com.puppycrawl.tools.checkstyle.checks.coding.MissingCtorCheck (checkstyle 5.5 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MissingCtorCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.coding"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/puppycrawl/tools/checkstyle/checks/coding/\class-useMissingCtorCheck.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingCtorCheck.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.puppycrawl.tools.checkstyle.checks.coding.MissingCtorCheck</B></H2> </CENTER> No usage of com.puppycrawl.tools.checkstyle.checks.coding.MissingCtorCheck <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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../com/puppycrawl/tools/checkstyle/checks/coding/MissingCtorCheck.html" title="class in com.puppycrawl.tools.checkstyle.checks.coding"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/puppycrawl/tools/checkstyle/checks/coding/\class-useMissingCtorCheck.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MissingCtorCheck.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2001-2011. All Rights Reserved. </BODY> </HTML>
tags/最短路径/index.html
boyfaceone/boyfaceone.github.io
<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>最短路径 | chenfy27的博客</title> <meta name="author" content="chenfy27"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta property="og:site_name" content="chenfy27的博客"/> <meta property="og:image" content=""/> <link href="/favicon.png" rel="icon"> <!-- CSS --> <link rel="stylesheet" href="/css/themes/yeti.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/font-awesome.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/style.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/responsive.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/highlight.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/highlight-default.min.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/google-fonts.css" media="screen" type="text/css"> <link rel="stylesheet" href="/css/comment.css" media="screen" type="text/css"> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.9/es5-shim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.7/es5-sham.min.js"></script> <![endif]--> <script src="/js/jquery-2.0.3.min.js"></script> <script src="/js/marked.js"></script> <script src="/js/comment.js"></script> <script src="/js/timeago.min.js"></script> <script src="/js/highlight.min.js"></script> <script src="/js/spin.min.js"></script> <!-- analytics --> </head> <body> <nav id="main-nav" class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <button type="button" class="navbar-header navbar-toggle" 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> <a class="navbar-brand" href="/">chenfy27的博客</a> <div class="collapse navbar-collapse nav-menu"> <ul class="nav navbar-nav"> <li> <a href="/archives" title="All the articles."> <i class="fa fa-archive"></i>归档 </a> </li> <li> <a href="/categories" title="All the categories."> <i class="fa fa-folder"></i>分类 </a> </li> <li> <a href="/tags" title="All the tags."> <i class="fa fa-tags"></i>标签 </a> </li> <li> <a href="/about" title="About me."> <i class="fa fa-user"></i>关于 </a> </li> </ul> </div> </div> <!-- container --> </nav> <div class="clearfix"></div> <div class="container"> <div class="content"> <!-- title --> <div class="page-header "> <h1 class="archive-title-tag title ">最短路径</h1> </div> <div class="row page"> <!-- cols --> <div class="col-md-9"> <div id="top_search"></div> <!-- display as entry --> <div class="mypage"> <!-- display as entry --> <h3 class="title"> <div class="date"> 2016-08-29 </div> <div class="article-title"><a href="/2016/08/29/shortest-path/" >常用的最短路径算法</a></div> </h3> <div class="entry"> <div class="row"> <h3 id="floyd算法"><a href="#floyd算法" class="headerlink" title="floyd算法"></a>floyd算法</h3><p>floyd算法用于求加权图中任意两点之间的最短路径,即多源最短路,是动态规划思想的一个典型应用。</p> <h4 id="算法流程"><a href="#算法流程" class="headerlink" title="算法流程"></a>算法流程</h4><ul> <li>初始化任意两点之间的距离为正无穷;</li> <li>加入一个点,遍历任意两点的距离,检查两点之间如果经过新加点的话路径是否会缩短,如果会则更新;</li> <li>重复上一步直到所有点都加完;</li> </ul> </div> <a type="button" href="/2016/08/29/shortest-path/#more" class="btn btn-default more">阅读此文</a> </div> </div> <div> <center> <div class="pagination"> <ul class="pagination"> </ul> </div> </center> </div> </div> <!-- col-md-9/col-md-12 --> <div class="col-md-3"> <div id="sidebar"> <div id="site_search"> <div class="form-group"> <input type="text" id="local-search-input" name="q" results="0" placeholder="搜索" class="st-search-input st-default-search-input form-control"/> </div> <div id="local-search-result"></div> </div> <div class="widget"> <h4>分类</h4> <ul class="tag_box inline list-unstyled"> <li><a href="/categories/平台/">平台<span>17</span></a></li> <li><a href="/categories/算法/">算法<span>13</span></a></li> <li><a href="/categories/运维/">运维<span>1</span></a></li> </ul> </div> <div class="widget"> <h4>标签云</h4> <ul class="tag_box inline list-unstyled"> <li><a href="/tags/algorithm/">algorithm<span>13</span></a></li> <li><a href="/tags/二分图/">二分图<span>1</span></a></li> <li><a href="/tags/多线程/">多线程<span>8</span></a></li> <li><a href="/tags/多进程/">多进程<span>6</span></a></li> <li><a href="/tags/select/">select<span>2</span></a></li> <li><a href="/tags/gcd/">gcd<span>1</span></a></li> <li><a href="/tags/xml/">xml<span>1</span></a></li> <li><a href="/tags/c/">c<span>1</span></a></li> <li><a href="/tags/log/">log<span>1</span></a></li> <li><a href="/tags/hexdump/">hexdump<span>1</span></a></li> <li><a href="/tags/openssl/">openssl<span>1</span></a></li> <li><a href="/tags/cpp/">cpp<span>2</span></a></li> <li><a href="/tags/python/">python<span>2</span></a></li> <li><a href="/tags/快速幂/">快速幂<span>1</span></a></li> <li><a href="/tags/shell/">shell<span>1</span></a></li> <li><a href="/tags/最短路径/">最短路径<span>1</span></a></li> <li><a href="/tags/字符串/">字符串<span>1</span></a></li> <li><a href="/tags/kmp/">kmp<span>1</span></a></li> <li><a href="/tags/哈希/">哈希<span>1</span></a></li> <li><a href="/tags/平台/">平台<span>1</span></a></li> <li><a href="/tags/网络/">网络<span>2</span></a></li> <li><a href="/tags/epoll/">epoll<span>1</span></a></li> <li><a href="/tags/tcp/">tcp<span>1</span></a></li> <li><a href="/tags/udp/">udp<span>1</span></a></li> <li><a href="/tags/stl/">stl<span>1</span></a></li> </ul> </div> <div class="widget"> <h4>链接</h4> <ul class="blogroll list-unstyled"> <li><i class=""></i><a href="http://www.github.com/chenfy27" title="" target="_blank"]);">Github</a></li> <li><i class=""></i><a href="https://theboostcpplibraries.com" title="" target="_blank"]);">Boost库</a></li> <li><i class=""></i><a href="https://deerchao.net/tutorials/regex/regex.htm" title="" target="_blank"]);">正则表达式</a></li> <li><i class=""></i><a href="https://docs.python.org/3/library/index.html" title="" target="_blank"]);">python标准库</a></li> <li><i class=""></i><a href="http://www.cplusplus.com/reference" title="" target="_blank"]);">C++标准库</a></li> <li><i class=""></i><a href="https://www.jb51.net/shouce/autoit" title="" target="_blank"]);">AutoIt参考</a></li> <li><i class=""></i><a href="https://chenfy27.gitee.io/blog" title="" target="_blank"]);">旧版博客</a></li> </ul> </div> <div class="widget"> <h4 class="dsq-widget-title">最新留言</h4> <div id="recent-comments"></div> <script type="text/javascript"> getRecentCommentsList({ type: "github" ? "github" : "github", user: "chenfy27", repo: "chenfy27.github.io", client_id: "9debc16a49221a5c03d3", client_secret: "6fa5f9d947d5b1cbcd91f2cb16636553b13a5a33", count: "10" ? "10" : 5, recent_comments_target: "#recent-comments" }); </script> </div> </div> <!-- sidebar --> </div> <!-- col-md-3 --> </div> </div> <div class="container-narrow"> <footer> <p> &copy; 2019 chenfy27 with help from <a href="http://hexo.io/" target="_blank">Hexo</a> and <a href="http://getbootstrap.com/" target="_blank">Twitter Bootstrap</a>. Theme by <a href="http://github.com/wzpan/hexo-theme-freemind/">Freemind</a>. </p> </footer> </div> <!-- container-narrow --> <a id="gotop" href="#"> <span>▲</span> </a> <script src="/js/jquery.imagesloaded.min.js"></script> <script src="/js/gallery.js"></script> <script src="/js/bootstrap.min.js"></script> <script src="/js/main.js"></script> <script src="/js/search.js"></script> <script type="text/javascript"> var search_path = "search.xml"; if (search_path.length == 0) { search_path = "search.xml"; } var path = "/" + search_path; searchFunc(path, 'local-search-input', 'local-search-result'); </script> <!-- syntax highlighting --> <script> marked.setOptions({ highlight: function (code, lang) { return hljs.highlightAuto(code).value; } }); function Highlighting(){ var markdowns = document.getElementsByClassName('markdown'); for(var i=0;i<markdowns.length;i++){ if(markdowns[i].innerHTML) markdowns[i].innerHTML =marked(markdowns[i].innerHTML); } } window.addEventListener('DOMContentLoaded', Highlighting, false); window.addEventListener('load', Highlighting, false); </script> </body> </html>
blog/demo.html
anna-podhajska/anna-podhajska.github.io
<!DOCTYPE html> <html> <head> <title> demo </title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.css"> <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.css"> <link rel="stylesheet" type"text/css" href="../styles/demo.css"> <link rel="shortcut icon" href="favicon.ico" type="favicon.ico"> <link rel="icon" href="favicon.ico" type="favicon.ico"> </head> <body> <header class="blogHeader"> <!-- ..............MENU ...............--> <nav class="container row"> <ul> <li> <a href="../index.html" class="active">home</a> <a href="a-work.html">school work</a> <a href="a-index.html">blog</a> <a href="a-contact-me.html">contact</a> </li> </ul> <ul class="mobileIndex"> <li> <a href="../index.html" class="active">home</a> <a href="a-index.html">blog</a> <a href="a-contact-me.html">contact</a> </li> </ul> </nav> <!-- ..............MENU ...............--> </header> <div class="table-container"> <div class="table-block footer-push"> <!-- Primary Page Layout –––––––––––––––––––––––––––––––––––––––––––––––––– --> <div class="container"> <div class="row"> <div class="twelve column Hulk"> <h4>mybcito app</h4> <h6>quick demo from development environment for internal purposes</h6> <p> This gif shows captures from myBcito app registration process, adding student work projects, marking those projects as completed, adding qualifications to the profile page. It also shows how all those actions are reflected on achieving badges by the user. </p> <p> Please note that the video may be lagging a bit and is made for internal purposes. </p> <img class= "demoImg" src="../images/myBcitoDemoGif_normalSpeed.gif"></img> <p class="tag reflection"> #demo #davanti <p> </div> </div> </div> <!-- end primary div.container --> </div> <!-- end primary div.table-block --> <div class="table-block"> <!-- Page Footer Layout –––––––––––––––––––––––––––––––––––––––––––––––––– --> <div class="container"> <footer class="blogFooter" class="twelve columns"> <ul> <li><a id="footerParrotLink" href="../index.html"><img src="../images/Parrot_Icon.png"></a></li> <!-- <li> <a href="https://www.facebook.com">facebook</a> <a href="https://www.instagram.com/ania_podh/">instagram</a> <a href="tel:333 444 333"> call me</a> </li> --> </footer> </div> <!-- end footer div.container --> </div> <!-- end footer div.table-block --> </div> <!-- End Document –––––––––––––––––––––––––––––––––––––––––––––––––– --> <!-- <iframe width="0" height="0" src="https://www.youtube.com/embed/1frLJSKKCx8?rel=0&autoplay=1&controls=0&showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> --> <iframe width="100%" height="166" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/345676171&color=%23ff5500&auto_play=true&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true"></iframe> </body> </html>
src/Skobbler.Binding/Jars/docs/com/skobbler/ngx/map/class-use/SKAnimationSettings.SKAnimationType.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>Uses of Class com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType (SKMaps Framework)</title> <meta name="date" content="2016-10-27"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType (SKMaps Framework)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/skobbler/ngx/map/class-use/SKAnimationSettings.SKAnimationType.html" target="_top">Frames</a></li> <li><a href="SKAnimationSettings.SKAnimationType.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType" class="title">Uses of Class<br>com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.skobbler.ngx.map">com.skobbler.ngx.map</a></td> <td class="colLast"> <div class="block">Constains classses needed to show the map and information on the map.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.skobbler.ngx.map"> <!-- --> </a> <h3>Uses of <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a> in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a> that return <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></code></td> <td class="colLast"><span class="strong">SKAnimationSettings.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.html#getAnimationType()">getAnimationType</a></strong>()</code> <div class="block">Gets the annotation animation type</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></code></td> <td class="colLast"><span class="strong">SKAnimationSettings.SKAnimationType.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a>[]</code></td> <td class="colLast"><span class="strong">SKAnimationSettings.SKAnimationType.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a> with parameters of type <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">SKAnimationSettings.</span><code><strong><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.html#setAnimationType(com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType)">setAnimationType</a></strong>(<a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a>&nbsp;animationType)</code> <div class="block">Sets the annotation animation type</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../com/skobbler/ngx/map/package-summary.html">com.skobbler.ngx.map</a> with parameters of type <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.html#SKAnimationSettings(com.skobbler.ngx.map.SKAnimationSettings.SKAnimationType,%20com.skobbler.ngx.map.SKAnimationSettings.SKEasingType,%20int)">SKAnimationSettings</a></strong>(<a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKAnimationType</a>&nbsp;animationType, <a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKEasingType.html" title="enum in com.skobbler.ngx.map">SKAnimationSettings.SKEasingType</a>&nbsp;animationEasingType, int&nbsp;duration)</code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../com/skobbler/ngx/map/SKAnimationSettings.SKAnimationType.html" title="enum in com.skobbler.ngx.map">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/skobbler/ngx/map/class-use/SKAnimationSettings.SKAnimationType.html" target="_top">Frames</a></li> <li><a href="SKAnimationSettings.SKAnimationType.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> <i>Copyright &#169 2014 skobbler GmbH, Luisenstr. 41, 10117 Berlin, Germany. All rights reserved.</i></small></p> </body> </html>
index.html
JohnDivina0908/Blog
<!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>Quotes Blog</title> <!-- Bootstrap Core CSS --> <link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <!-- Theme CSS --> <link href="css/clean-blog.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=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i> </button> <a class="navbar-brand" href="index.html">Quotes Blog</a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <li> <a href="index.html">Home</a> </li> <li> <a href="about.html">About</a> </li> <li> <a href="contact.html">Contact</a> </li> </ul> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <!-- Page Header --> <!-- Set your background image for this header on the line below. --> <header class="intro-header" style="background-image: url('https://px.multiscreensite.com/index.php?url=http%3A%2F%2Fwallpapercave.com%2Fwp%2FC6Vvy9v.jpg')"> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="site-heading"> <h1>Quotes Blog</h1> <hr class="small"> <span class="subheading">A collection of great quotes I have encountered in a form of a Blogging Website :) By John Ivan R. Divina</span> </div> </div> </div> </div> </header> <!-- Main Content --> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="post-preview"> <a href="post1.html"> <h2 class="post-title">Yesterday is history, tomorrow is a mystery, and today is a gift that's why they call it the present </h2> <h3 class="post-subtitle"> A quote from Kung-fu Panda that teaches us that we should never let the past define who we are </h3> </a> <p class="post-meta">Posted by <a href="#">John Divina</a> on October 28, 2016</p> </div> <hr> <div class="post-preview"> <a href="post2.html"> <h2 class="post-title"> "You gave me forever within a number of days and I'm grateful for that " </h2> <h3 class="post-subtitle"> One of the quotes that seriously broke my heart; it is about and from an anime called "Your lie in April" or Shigatsu Wa Kami. The quote is about maximizing the time with a person you love before they are gone. </h3> </a> <p class="post-meta">Posted by <a href="#">John Divina</a> on October 29, 2016</p> </div> <hr> <div class="post-preview"> <a href="post3.html"> <h2 class="post-title"> "Have a nice life, I am done trying to be in it" </h2> <h3 class="post-subtitle"> We sometimes fall inlove with the people we can't have, we should realize that some may just be a chapter or our life, we can't turn back the pages of time or rewrite our story with them, We eventually get tired of chase and we somehow learn to let go. </h3> </a> <p class="post-meta">Posted by <a href="#">John Divina</a> on October 29, 2016</p> </div> </div> </div> </div> <hr> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-twitter fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-facebook fa-stack-1x fa-inverse"></i> </span> </a> </li> <li> <a href="#"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> <p class="copyright text-muted">Copyright JohnDivina 2016</p> </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> <!-- Contact Form JavaScript --> <script src="js/jqBootstrapValidation.js"></script> <script src="js/contact_me.js"></script> <!-- Theme JavaScript --> <script src="js/clean-blog.min.js"></script> </body> </html>
public/modules/core/views/home.client.view.html
lwhiteley/superfly
<!-- <section data-ng-controller="HomeController"> --> <div ng-include=" '/modules/core/views/partials/page1.view.html' "></div> <!--END HEADER SECTION --> <div ng-include=" '/modules/core/views/partials/orderform.view.html' "></div> <div ng-include=" '/modules/core/views/partials/paralax2.view.html' "></div> <div class="space-bottom"></div> <!-- ABOUT SECTION --> <div ng-include=" '/modules/core/views/partials/page2.view.html' "></div> <div class="space-bottom"></div> <!--END ABOUT SECTION --> <!--PARALLAX SECTION ONE--> <!--<div ng-include=" '/modules/core/views/partials/paralax1.view.html' "></div>--> <!-- END PARALLAX SECTION ONE --> <!--PARALLAX SECTION TWO --> <!--PRICE SECTION --> <!--<div ng-include=" '/modules/core/views/partials/page3.view.html' "></div>--> <!--END PRICE SECTION --> <!--END PARALLAX SECTION TWO --> <!--CONTACT SECTION --> <div ng-include=" '/modules/core/views/partials/page4.view.html' "></div> <div class="space-bottom"></div> <!--END CONTACT SECTION --> <!--FOOTER SECTION --> <div ng-include=" '/modules/core/views/partials/footer.view.html' "></div> <!-- </section> -->
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/6b5ba6626f729d3a74196f8609b00d92e3a15c98f72a5a0628d0ce632059e5ef.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="./42b41b3f1eada6aad6c6c3276a9cc0e06849ff9ca0619de07e48f43e03dfbafa.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>
MSRMiningChallenge2017/coverage-report_basex-api/org/basex/http/rest/RESTQuery.html
hideshis/scripts_for_research
<!DOCTYPE html> <html> <head> <title>RESTQuery.java</title> <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'/> <link rel='stylesheet' type='text/css' href='../../../../coverage.css'/> <link rel='shortcut icon' type='image/png' href='../../../../logo.png'/> <script type='text/javascript' src='../../../../coverage.js'></script> <script type='text/javascript' src='../../../../prettify.js'></script> </head> <body onload='prettyPrint()'> <table cellpadding='0' cellspacing='1'> <caption>basex-api/src/main/java/org/basex/http/rest/RESTQuery.java</caption> <tr> <td class='line'>1</td><td>&nbsp;</td> <td><pre class='prettyprint'>package org.basex.http.rest;</pre></td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'></td><td>&nbsp;</td> <td><pre class='imports prettyprint' onclick='showHideLines(this)'><div>import java.io.*; import java.util.*; import java.util.Map.Entry; import org.basex.core.*; import org.basex.core.cmd.*; import org.basex.http.*; import org.basex.query.value.type.*; </div><span>import ...</span></pre></td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'></td><td>&nbsp;</td> <td class='comment' onclick='showHideLines(this)'><div>/** * Evaluate queries via REST. * * @author BaseX Team 2005-16, BSD License * @author Christian Gruen */</div><span>/*...*/</span></td> </tr> <tr> <td class='line'>18</td><td>&nbsp;</td> <td><pre class='prettyprint'>class RESTQuery extends RESTCmd {</pre></td> </tr> <tr> <td class='line'>19</td><td>&nbsp;</td> <td><pre class='comment'> /** External variables. */</pre></td> </tr> <tr> <td class='line'>20</td><td>&nbsp;</td> <td><pre class='prettyprint'> private final Map&lt;String, String[]> vars;</pre></td> </tr> <tr> <td class='line'>21</td><td>&nbsp;</td> <td><pre class='comment'> /** Optional context value. */</pre></td> </tr> <tr> <td class='line'>22</td><td>&nbsp;</td> <td><pre class='prettyprint'> private final String value;</pre></td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'></td><td>&nbsp;</td> <td class='comment' onclick='showHideLines(this)'><div> /** * Constructor. * @param session REST Session * @param vars external variables * @param value context value */</div><span> /*...*/</span></td> </tr> <tr> <td class='line'>30</td><td>&nbsp;</td> <td><pre class='prettyprint'> RESTQuery(final RESTSession session, final Map&lt;String, String[]> vars, final String value) {</pre></td> </tr> <tr> <td class='line'>31</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l31s0'> super(session);</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>32</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l32s0'> this.vars = vars;</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>33</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l33s0'> this.value = value;</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>34</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l34s0'> }</pre> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'>36</td><td>&nbsp;</td> <td><pre class='prettyprint'> @Override</pre></td> </tr> <tr> <td class='line'>37</td><td>&nbsp;</td> <td><pre class='prettyprint'> protected void run0() throws IOException {</pre></td> </tr> <tr> <td class='line'>38</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l38s0'> query(session.context.soptions.get(StaticOptions.WEBPATH));</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>39</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l39s0'> }</pre> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'></td><td>&nbsp;</td> <td class='comment' onclick='showHideLines(this)'><div> /** * Evaluates the specified query. * @param path query path * @throws HTTPException REST exception * @throws IOException I/O exception */</div><span> /*...*/</span></td> </tr> <tr> <td class='line'>47</td><td>&nbsp;</td> <td><pre class='prettyprint'> final void query(final String path) throws IOException {</pre></td> </tr> <tr> <td class='line'>48</td><td>&nbsp;</td> <td><pre class='comment'> // set base path and serialization parameters</pre></td> </tr> <tr> <td class='line'>49</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l49s0'> final HTTPContext http = session.http;</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>50</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l50s0'> context.options.set(MainOptions.QUERYPATH, path);</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>51</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l51s0'> context.options.set(MainOptions.SERIALIZER, http.sopts());</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>52</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l52s0'> http.initResponse();</pre> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'>54</td><td class='count'>20</td> <td><pre class='prettyprint jmp'> <span id='l54s0' title='Executions: 20' class='covered'>for(final Command cmd</span> : <span id='l54s1' title='Executions: 21' class='covered'>session.commands)</span> {</pre> <ol style='display:none'></ol> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>55</td><td class='count'>21</td> <td><pre class='prettyprint jmp'> <span id='l55s0' title='Executions: 21' class='covered'>if(cmd instanceof XQuery)</span> {</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>56</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l56s0'> final XQuery xq = (XQuery) cmd;</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>57</td><td>&nbsp;</td> <td><pre class='comment'> // create query instance</pre></td> </tr> <tr> <td class='line'>58</td><td class='count'>20</td> <td><pre class='prettyprint jmp'> <span id='l58s0' title='Executions: 20' class='covered'>if(value != null)</span> <span id='l58s1' title='Executions: 0' class='uncovered'>xq.bind(null, value, NodeType.DOC.toString());</span></pre> <ol style='display:none'></ol> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'>60</td><td>&nbsp;</td> <td><pre class='comment'> // bind HTTP context and external variables</pre></td> </tr> <tr> <td class='line'>61</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l61s0'> xq.http(http);</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>62</td><td class='count'>20</td> <td><pre class='prettyprint jmp'> <span id='l62s0' title='Executions: 20' class='covered'>for(final Entry&lt;String, String[]> e</span> : <span id='l62s1' title='Executions: 6' class='covered'>vars.entrySet())</span> {</pre> <ol style='display:none'></ol> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>63</td><td class='count'>6</td> <td><pre class='prettyprint covered' id='l63s0'> final String key = e.getKey();</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>64</td><td class='count'>6</td> <td><pre class='prettyprint covered' id='l64s0'> final String[] val = e.getValue();</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>65</td><td class='count'>6</td> <td><pre class='prettyprint jmp'> <span id='l65s0' title='Executions: 6' class='covered'>if(val.length == 2)</span> <span id='l65s1' title='Executions: 0' class='uncovered'>xq.bind(key, val[0], val[1]);</span></pre> <ol style='display:none'></ol> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>66</td><td class='count'>6</td> <td><pre class='prettyprint jmp'> <span id='l66s0' title='Executions: 6' class='covered'>if(val.length == 1)</span> <span id='l66s1' title='Executions: 6' class='covered'>xq.bind(key, val[0]);</span></pre> <ol style='display:none'></ol> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>67</td><td class='count'>6</td> <td><pre class='prettyprint covered' id='l67s0'> }</pre> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'>69</td><td>&nbsp;</td> <td><pre class='comment'> // initializes the response with query serialization options</pre></td> </tr> <tr> <td class='line'>70</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l70s0'> http.sopts().assign(xq.parameters(context));</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>71</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l71s0'> http.initResponse();</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>72</td><td>&nbsp;</td> <td><pre class='prettyprint'> }</pre></td> </tr> <tr> <td class='line'>73</td><td>&nbsp;</td> <td><pre class='comment'> // run command</pre></td> </tr> <tr> <td class='line'>74</td><td class='count'>21</td> <td><pre class='prettyprint covered' id='l74s0'> run(cmd, http.res.getOutputStream());</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>75</td><td class='count'>21</td> <td><pre class='prettyprint covered' id='l75s0'> }</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>76</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l76s0'> }</pre> <ol style='display:none'></ol> </td> </tr> <tr><td class='line'></td><td colspan='2'>&nbsp;</td></tr> <tr> <td class='line'></td><td>&nbsp;</td> <td class='comment' onclick='showHideLines(this)'><div> /** * Creates a new instance of this command. * @param session REST session * @param query query * @param vars external variables * @param val context value * @return command * @throws IOException I/O exception */</div><span> /*...*/</span></td> </tr> <tr> <td class='line'>87</td><td>&nbsp;</td> <td><pre class='prettyprint'> @SuppressWarnings("unused")</pre></td> </tr> <tr> <td class='line'>88</td><td>&nbsp;</td> <td><pre class='prettyprint'> static RESTQuery get(final RESTSession session, final String query,</pre></td> </tr> <tr> <td class='line'>89</td><td>&nbsp;</td> <td><pre class='prettyprint'> final Map&lt;String, String[]> vars, final String val) throws IOException {</pre></td> </tr> <tr> <td class='line'>90</td><td class='count'>20</td> <td><pre class='prettyprint covered' id='l90s0'> return new RESTQuery(session.add(new XQuery(query)), vars, val);</pre> <ol style='display:none'></ol> </td> </tr> <tr> <td class='line'>91</td><td>&nbsp;</td> <td><pre class='prettyprint'> }</pre></td> </tr> <tr> <td class='line'>92</td><td>&nbsp;</td> <td><pre class='prettyprint'>}</pre></td> </tr> </table> </body> </html>
2016/1109-知乎登录页/index.html
wangyongtan/H5
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>知乎 - 与世界分享你的知识、经验和见解</title> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script> <style> body{padding: 0;margin: 0;background: #F7FAFC;} a{text-decoration: none;} .index-box{width:300px;height: auto;margin:0 auto;margin-top: 40px;} .logo{background: url(QQ截图20161109160412.png) no-repeat;;width: 185px;height: 90px;margin:0 auto} .title{font-size: 18px;text-align: center;color: #707171;font-weight: bold;margin: 30px auto;} .index-body{text-align: center;} .nav-sliders{position: relative;display: inline-block;margin-bottom: 20px;} .nav-sliders>a{font-size: 20px;display: inline-block;width:60px ;font-family: "微软雅黑";color: #999;cursor: pointer;float: left;$width} .nav-sliders>a.active{color: #0f88eb;} .nav-sliders>span{position: absolute;height: 2px;background:#0f88eb;display:block;left: 5px;width: 50px;bottom:-8px;} .login-box{width: 300px;display: none;} .wrap{border:1px solid #d5d5d5;border-radius: 5px;background: #fff;} .wrap>div{position: relative;overflow: hidden;} .wrap>div>input{width: 95%;border:none;padding:17px 2.5%;border-radius: 5px;} .wrap>div>label.error{position: absolute;color: #c33;top: 0;line-height: 50px;transform: translate(25px,0);transition: all 0.5s ease-out;-webkit-transform: translate(25px,0);-moz-transform: translate(25px,0);opacity: 0;visibility:hidden;cursor: text;} .wrap>div>label.move{transform: translate(0,0);transition: all 0.5s ease-out;-webkit-transform: translate(0,0);-moz-transform: translate(0,0);opacity: 1;visibility: visible;} .password{border-top: solid 1px #d5d5d5 ;} .code{right:115px ;} .button{height: 40px;background:#0f88eb;text-align: center;line-height: 40px;border-radius: 5px;margin-top: 25px;color: #fff;font-family: "微软雅黑";cursor: pointer;} .remember{text-align: left;margin-top: 20px;font-family: "微软雅黑";color: #666666;} .remember>a{float:right;cursor: pointer;color: #666666;} .other{text-align: left;margin-top: 20px;font-family: "微软雅黑";color: #666666;overflow: hidden;} .other>span{font-size: 14px;float: left;margin-top: 2px;cursor: pointer;} .other>div{float: left; transition: all 1s ease-in;-webkit-transition: all 0.3s ease-in;opacity: 0;transform: translateX(-20px);-webkit-transform: translateX(-18px);-moz-transform: translateX(-18px);visibility: hidden;} .other>div>a{margin-left: 20px;color: #666666;font-size: 15px;} .other>.hidden{ transition: all 1s ease-in;display: block;-webkit-transition: all 0.3s ease-in;opacity: 1;transform: translateX(0);-webkit-transform: translateX(0);-moz-transform: translateX(0);visibility: visible;} .download{border:solid 1px #0f88eb;height: 40px;line-height: 40px;border-radius: 5px;color:#0f88eb ;font-family: "微软雅黑";margin-top: 50px;cursor: pointer;position: relative;} .download>.close{display: none;} .download .pic{display:none;position: absolute;background: #fff;bottom: 78px;width: 310px;left: -10px;z-index: 5;padding: 40px 0;border-radius: 8px;box-shadow: 0 0 8px 0 rgba(0,0,0,.15);} .registered-box{width: 300px;} .text{font-size: 14px;margin-top: 20px;font-family: "微软雅黑";color: #666666;} .text>a{color: #0f88eb;} .verification-code{position: absolute;right:22px;top: 14px;font-family: "微软雅黑";font-size: 18px;cursor: pointer;} #register:hover{opacity: 0.7;} #login:hover{opacity: 0.7;} </style> </head> <body> <div class="index-box"> <div class="index-header"> <h1 class="logo"></h1> <h2 class="title">与世界分享你的知识、经验和见解</h2> </div> <div class="index-body"> <div class="nav-sliders"> <a class="registered active">注册</a> <a class="login">登录</a> <span class="on"></span> </div> <div class="change"> <!--注册开始--> <div class="registered-box"> <div class="wrap"> <div class="phone"> <input type="text" name="" value="" id="name" placeholder="姓名"> <label class="error name">请输入姓名</label> </div> <div class="password"> <input type="tel" id="phone" value="" placeholder="手机号" max="11"> <label class="error phone restet">请输入手机号</label> </div> <div class="password"> <input type="password" id="passwor" name="" maxlength="6" value="" placeholder="密码(不少于6位)"> <label class="error passwor" >请输入密码</label> </div> <div class="password"> <input type="text" id="code" name="" maxlength="6" value="" placeholder="验证码"> <label class="error passwor code">请输入验证码</label> <div class="verification-code" id="createCade"></div> </div> </div> <div class="button" id="register">注册</div> <div class="text">点击「注册」按钮,即代表你同意<a href="/terms" target="_blank">《知乎协议》</a></div> <div class="download"> <span>下载知乎app</span> <span class="close">关闭二维码</span> <div class="pic"><img src="QQ截图20161109160031.png"></div> </div> </div> <!--注册结束--> <!--登录开始--> <div class="login-box"> <div class="wrap"> <div class="phone"> <input type="text" name="" id="login-phone" value="" placeholder="手机号或邮箱"> <label class="error phone restet">请输入手机号</label> </div> <div class="password"> <input type="password" name="" id="login-password" placeholder="密码" maxlength="6"> <label class="error phone">请输入密码</label> </div> </div> <div class="button" id="login">登录</div> <div class="remember"> <label><input type="checkbox">记住我:</label> <a>无法登陆?</a> </div> <div class="other"> <span>社交账号登录</span> <div class="other-login"> <a href="#">扣扣</a> <a href="#">微信</a> <a href="#">微博</a> </div> </div> <div class="download"> <span>下载知乎app</span> <span class="close">关闭二维码</span> <div class="pic"><img src="QQ截图20161109160031.png"></div> </div> </div> <!--登录结束--> </div> </div> </div> <script> var code;//定义一个全局验证码 $(function(){ jcPublic.register(); jcPublic.Tab(); jcPublic.login(); jcPublic.downLoad(); jcPublic.createCode(); jcPublic.clickCode(); $(".wrap>div>input").focus(function(){ $(this).css({"outline": "none" }); var $this = $(this); $this.next("label").removeClass("move")//隐藏提示信息 }) $(".other>span").on("click",function(){ $(this).parent().children("div").toggleClass("hidden"); }) }) var jcPublic = { register:function(){//注册 var currentThis = this//当前对象 $("#register").on("click",function(){ var $this = $(this); var name = $("#name").val();//姓名 var phone = $("#phone").val();//电话 var passwor = $("#passwor").val(); var Code = $("#code").val();//验证码 var p_reg = /^0{0,1}(13[0-9]|15[0-9]|153|156|18[0-9])[0-9]{8}$/;//电话验证 if(name.length==0 && phone.length==0 && passwor.length==0){//同时为空 $this.prev(".wrap").find("label").addClass("move"); return false; }else if(name == "" || name == "undefined" || name == "null"){ $this.prev(".wrap").find(".name").addClass("move"); return false; }else if(phone == "" || phone == "undefined" || phone == "null"){ $this.prev(".wrap").find(".phone").addClass("move"); return false; }else if(passwor == "" || passwor == "undefined" || passwor == null ){ $this.prev(".wrap").find(".passwor").addClass("move"); return false; }else if(Code == "" || Code == "undefined" || Code == null ){ $this.prev(".wrap").find(".code").addClass("move"); return false; }else if(code !== Code ){ $this.prev(".wrap").find(".code").html("验证码有误").addClass("move"); return currentThis.createCode();//验证码输入有误就刷新验证码重新输入 }else if(!p_reg.test(phone)){ $this.prev(".wrap").find(".restet").html("手机号码格式不正确").addClass("move"); return false; } }) }, Tab:function(){//切换注册和登录 $(".nav-sliders>a").on("click",function(){ $(this).addClass("active").siblings().removeClass("active"); var $width = $(this).width();//当前a的宽度 var $index = $(this).index();//索引 $(".on").stop(true,true).animate({"left":$width*$index+5+"px"},300); $(this).parents(".index-body").children(".change").children().eq($index).stop(true,false).show().siblings().hide(); }) }, login:function(){ $("#login").on("click",function(){ var $this = $(this); var phone = $("#login-phone").val();//电话 var passwor = $("#login-password").val(); var p_reg = /^0{0,1}(13[0-9]|15[0-9]|153|156|18[0-9])[0-9]{8}$/;//电话验证 if(phone.length==0 && passwor.length==0){//同时为空 $this.prev(".wrap").find("label").addClass("move"); return false; }else if(phone == "" || phone == "undefined" || phone == "null"){ $this.prev(".wrap").find(".phone").addClass("move"); return false; }else if(passwor == "" || passwor == "undefined" || passwor == null ){ $this.prev(".wrap").find(".passwor").addClass("move"); return false; }else if(!p_reg.test(phone)){ $this.prev(".wrap").find(".restet").html("手机号码格式不正确").addClass("move"); return false; } }) }, downLoad:function(){ $(".download").on("click",function(){ $(this).children(".pic").toggle(300); }) }, createCode:function(){//验证码 var selectChar = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9,'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z');//所有候选组成验证码的字符,也可以用中文的 code=""; var codeLength=4;//验证码的长度 for(var i =0;i<codeLength;i++){ var index = Math.floor(Math.random()*selectChar.length)//随机数 code +=selectChar[index]; //$("#createCade").html(code) } return $("#createCade").html(code) }, clickCode:function(){//切换验证码 var $this = this; $("#createCade").on("click",function(){ return $this.createCode(); }) } } </script> </body> </html>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/36ad9dfde804dc007212275b0d841509d8b8b89803049dbb722857e5e7eb1f96.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="./b1990c652889aea27b93c1bb3778412399d0673cda53efcd892bf98991711d89.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/stylesheets/modules/footer.css
fs/backbone-base
.footer { position: relative; clear: both; box-sizing: border-box; height: 60px; margin-top: -60px; padding: 15px; border-top: 1px solid #e7e7e7; line-height: 30px; p { color: #777; } }
_site/wiki/Configuration.html
vahid-dan/ipop-project.github.io
<!doctype html> <!-- Minimal Mistakes Jekyll Theme 4.5.1 by Michael Rose Copyright 2017 Michael Rose - mademistakes.com | @mmistakes Free for personal and commercial use under the MIT license https://github.com/mmistakes/minimal-mistakes/blob/master/LICENSE.txt --> <html lang="en" class="no-js"> <head> <meta charset="utf-8"> <!-- begin SEO --> <title>IPOP</title> <meta name="description" content="IP-Over-P2P, Open-source User-centric Software Virtual Network"> <meta name="author" content=""> <meta property="og:locale" content="en"> <meta property="og:site_name" content="IPOP"> <meta property="og:title" content="IPOP"> <script type="application/ld+json"> { "@context" : "http://schema.org", "@type" : "Person", "name" : "IPOP", "url" : null, "sameAs" : null } </script> <!-- end SEO --> <link href="/feed.xml" type="application/atom+xml" rel="alternate" title="IPOP Feed"> <!-- http://t.co/dKP3o1e --> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script> document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + ' js '; </script> <!-- For all browsers --> <link rel="stylesheet" href="/assets/css/main.css"> <!--[if lte IE 9]> <style> /* old IE unsupported flexbox fixes */ .greedy-nav .site-title { padding-right: 3em; } .greedy-nav button { position: absolute; top: 0; right: 0; height: 100%; } </style> <![endif]--> <meta http-equiv="cleartype" content="on"> <!-- start custom head snippets --> <!-- insert favicons. use http://realfavicongenerator.net/ --> <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> <meta name="theme-color" content="#ffffff"> <!-- end custom head snippets --> </head> <body class="layout--wiki"> <!--[if lt IE 9]> <div class="notice--danger align-center" style="margin: 0;">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</div> <![endif]--> <div class="masthead"> <div class="masthead__inner-wrap"> <div class="masthead__menu"> <nav id="site-nav" class="greedy-nav"> <a class="site-title" href="/">IPOP</a> <ul class="visible-links"> <li class="masthead__menu-item"><a href="/about/">About</a></li> <li class="masthead__menu-item"><a href="/wiki/Quick-Start">Quick Start</a></li> <li class="masthead__menu-item"><a href="/download">Download</a></li> <li class="masthead__menu-item"><a href="/learn/">Learn</a></li> <li class="masthead__menu-item"><a href="/wiki/">Wiki</a></li> <li class="masthead__menu-item"><a href="/whitepaper/">White Paper</a></li> <li class="masthead__menu-item"><a href="/contribute/">Contribute</a></li> <li class="masthead__menu-item"><a href="/contact/">Contact</a></li> </ul> <button><div class="navicon"></div></button> <ul class="hidden-links hidden"></ul> </nav> </div> </div> </div> <div id="main" role="main"> <article class="page" itemscope itemtype="http://schema.org/CreativeWork"> <div class="page__inner-wrap"> <section class="page__content" itemprop="text"> <aside class="sidebar__right"> <nav class="toc"> <header><h4 class="nav__title"><i class="fa fa-file-text"></i> On This Page</h4></header> <ul class="section-nav"> <li class="toc-entry toc-h1"><a href="#configuration">Configuration</a> <ul> <li class="toc-entry toc-h2"><a href="#required-external-configuration-file-keys">Required External Configuration File Keys</a></li> <li class="toc-entry toc-h2"><a href="#optionaldefault-keys">Optional/Default Keys</a></li> </ul> </li> </ul> </nav> </aside> <h1 id="configuration">Configuration</h1> <p>An external configuration file is needed when running IPOP. A <a href="https://github.com/ipop-project/Controllers/blob/master/controller/sample-gvpn-config.json">sample configuration file</a> is provided with the Controllers source code. Default configuration settings are provided in <a href="https://github.com/ipop-project/Controllers/blob/master/controller/framework/fxlib.py">fxlib.py</a>.</p> <p>The external configuration file and the settings in fxlib.py are merged. If a key is provided in both files, the key in the external configuration file will take precedence.</p> <h2 id="required-external-configuration-file-keys">Required External Configuration File Keys</h2> <table> <thead> <tr> <th>Qualified Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>XmppClient.XmppDetails[0].AddressHost</td> <td>XMPP server domain or IP address</td> </tr> <tr> <td>XmppClient.XmppDetails[0].Port</td> <td>XMPP port</td> </tr> <tr> <td>XmppClient.XmppDetails[0].TapName</td> <td>Tap device name used matching one specified in TincanInterface.Vnets</td> </tr> <tr> <td>XmppClient.XmppDetails[0].AuthenticationMethod</td> <td>Node authentication mode (values: “password” or “x509”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].Username</td> <td>XMPP credential user ID (AuthenticationMethod=”password”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].Password</td> <td>XMPP credential password (AuthenticationMethod=”password”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].TrustStore</td> <td>Truststore path containing XMPP server certificate file (AuthenticationMethod=”x509”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].CertDirectory</td> <td>IPOP node certificate directory (AuthenticationMethod=”x509”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].CertFile</td> <td>IPOP node public key filename (AuthenticationMethod=”x509”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].keyfile</td> <td>IPOP node private key filename (AuthenticationMethod=”x509”)</td> </tr> <tr> <td>XmppClient.XmppDetails[0].AcceptUntrustedServer</td> <td>Trusted XMPP server</td> </tr> <tr> <td>TincanInterface.Vnets[0].Name</td> <td>Name of Tap Device</td> </tr> <tr> <td>TincanInterface.Vents[0].IP4</td> <td>Virtual ipv4 address given to the node</td> </tr> <tr> <td>TincanInterface.Vnets[0].IP4PrefixLen</td> <td>Virtual ipv4 address prefix</td> </tr> <tr> <td>TincanInteface.Vnets[0].MTU4</td> <td>Maximum Transmission Unit for Virtual net</td> </tr> <tr> <td>TincanInteface.Vnets[0].XMPPModuleName</td> <td>Name of XMPP Module to use</td> </tr> <tr> <td>TincanInteface.Vnets[0].TapName</td> <td>Name of Tap Device</td> </tr> <tr> <td>TincanInteface.Vnets[0].Description</td> <td> </td> </tr> <tr> <td>TincanInteface.Vnets[0].IgnoredNetworkInterfaces</td> <td> </td> </tr> <tr> <td>TincanInteface.Vnets[0].L2TunnellingEnabled</td> <td> </td> </tr> <tr> <td>CFx.Model</td> <td>Type of VPN (“SocialVPN” or “GroupVPN”)</td> </tr> </tbody> </table> <h2 id="optionaldefault-keys">Optional/Default Keys</h2> <table> <thead> <tr> <th>Qualified Name</th> <th>Default Value</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td>XmppClient.Enabled</td> <td>true</td> <td>Enable XmppClient module(Required by current codebase)</td> </tr> <tr> <td>XmppClient.TimerInterval</td> <td>10</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>XmppClient.MessagePerIntervalDelay</td> <td>10</td> <td>No. of XMPP messages after which the delay has to be increased</td> </tr> <tr> <td>XmppClient.InitialAdvertismentDelay</td> <td>5</td> <td>Intitial delay for Peer XMPP messages</td> </tr> <tr> <td>XmppClient.XmppAdvrtDelay</td> <td>5</td> <td>Incremental delay for XMPP messages</td> </tr> <tr> <td>XmppClient.MaxAdvertismentDelay</td> <td>30</td> <td>Max XMPP Message delay</td> </tr> <tr> <td>XmppClient.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface", "XmppClient"]</code></td> <td>XMPP module dependencies</td> </tr> <tr> <td>TincanInterface.buf_size</td> <td>65507</td> <td>Max buffer size for Tincan Messages</td> </tr> <tr> <td>TincanInterface.SocketReadWaitTime</td> <td>15</td> <td>Socket read wait time for Tincan Messages</td> </tr> <tr> <td>TincanInterface.ctr_recv_port</td> <td>5801</td> <td>Controller UDP Listening Port</td> </tr> <tr> <td>TincanInterface.ip6_prefix</td> <td>“fd50:0dbc:41f2:4a3c”</td> <td> </td> </tr> <tr> <td>TincanInterface.ctrl_send_port</td> <td>5800</td> <td>Tincan UDP Listening Port</td> </tr> <tr> <td>TincanInterface.localhost</td> <td>“127.0.0.1”</td> <td> </td> </tr> <tr> <td>TincanInterface.localhost6</td> <td>”::1”</td> <td> </td> </tr> <tr> <td>TincanInterface.dependencies</td> <td><code class="highlighter-rouge">["Logger"]</code></td> <td>dependencies of TincanInterface module</td> </tr> <tr> <td>TincanInterface.Stun</td> <td>None</td> <td>List of usable STUN servers e.g.: <code class="highlighter-rouge">["stun.l.google.com:19302"]</code></td> </tr> <tr> <td>TincanInterface.Turn</td> <td>None</td> <td>List of usable TURN servers with transport address, username, and password in format <code class="highlighter-rouge">[{ "Address": "***:19302", "User": "***", "Password": "***"}]</code></td> </tr> <tr> <td>Logger.LogLevel</td> <td>“WARNING”</td> <td>Level of logging verbosity (values: “ERROR”, “INFO”, “DEBUG”, “WARNING”)</td> </tr> <tr> <td>Logger.LogOption</td> <td>“FILE”</td> <td>Method of Logging output (values: “FILE”, “CONSOLE”)</td> </tr> <tr> <td>Logger.LogFilePath</td> <td>”./logs/”</td> <td>If LogOption=”FILE”, specify path log files will output</td> </tr> <tr> <td>Logger.CtrlLogFileName</td> <td>“ctrl.log”</td> <td>If LogOption=”FILE”, specify file name of Controller log</td> </tr> <tr> <td>Logger.TincanLogFileName</td> <td>“tincan.log”</td> <td>If LogOption=”FILE”, specify file name of Tincan log</td> </tr> <tr> <td>Logger.LogFileSize</td> <td>1000000</td> <td>Log file size specified in bytes</td> </tr> <tr> <td>Logger.ConsoleLevel</td> <td>None</td> <td> </td> </tr> <tr> <td>Logger.BackupFileCount</td> <td>5</td> <td># of files to hold logging history</td> </tr> <tr> <td>CFx.local_uid</td> <td>””</td> <td>Attribute to store node UID needed by Statereport and SVPN</td> </tr> <tr> <td>CFx.uid_size</td> <td>40</td> <td># of bytes for node UID</td> </tr> <tr> <td>CFx.ipopVerRel</td> <td>ipopVerRel (Variable in fxlib.py)</td> <td>Release Version String</td> </tr> <tr> <td>LinkManager.Enabled</td> <td>true</td> <td>Enables LinkManager module (Required by current codebase)</td> </tr> <tr> <td>LinkManager.TimerInterval</td> <td>10</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>LinkManager.InitialLinkTTL</td> <td>120</td> <td>Intial Time to Live for a p2p link in seconds</td> </tr> <tr> <td>LinkManager.LinkPulse</td> <td>180</td> <td>Time to Live for an online p2p link in seconds</td> </tr> <tr> <td>LinkManager.MaxConnRetry</td> <td>5</td> <td>Max connection retry attempts for each p2p link</td> </tr> <tr> <td>LinkManager.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface"]</code></td> <td>LinkManager module dependencies</td> </tr> <tr> <td>BroadcastForwarder.Enabled</td> <td>true</td> <td>Enables BroadcastForwarder module</td> </tr> <tr> <td>BroadcastForwarder.TimerInterval</td> <td>10</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>BroadcastForwarder.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface", "LinkManager"]</code></td> <td>BroadcastForwarder module dependencies</td> </tr> <tr> <td>ArpCache.Enabled</td> <td>true</td> <td>Enables ArpCache module</td> </tr> <tr> <td>ArpCache.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface", "LinkManager"]</code></td> <td>ArpCache module dependencies</td> </tr> <tr> <td>IPMulticast.Enabled</td> <td>false</td> <td>Enables IPMulticast module</td> </tr> <tr> <td>IPMulticast.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface", "LinkManager"]</code></td> <td>IPMulticast module dependencies</td> </tr> <tr> <td>BaseTopologyManager.Enabled</td> <td>true</td> <td>Enables BaseTopologyManager module</td> </tr> <tr> <td>BaseTopologyManager.TimerInterval</td> <td>10</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>BaseTopologyManager.dependencies</td> <td><code class="highlighter-rouge">["Logger", "TincanInterface", "XmppClient"]</code></td> <td>BaseTopologyManager module dependencies</td> </tr> <tr> <td>OverlayVisualizer.Enabled</td> <td>false</td> <td>Enables OverlayVisualizer module</td> </tr> <tr> <td>OverlayVisualizer.TimerInterval</td> <td>5</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>OverlayVisualizer.WebServiceAddress</td> <td>“:8080/insertdata”</td> <td>Visualizer webservice URL</td> </tr> <tr> <td>OverlayVisualizer.NodeName</td> <td>””</td> <td>Interval to send data to the visualizer</td> </tr> <tr> <td>OverlayVisualizer.dependencies</td> <td><code class="highlighter-rouge">["Logger", "BaseTopologyManager"]</code></td> <td>OverlayVisualizer module dependencies</td> </tr> <tr> <td>StatReport.Enabled</td> <td>false</td> <td>Enables StatReport module</td> </tr> <tr> <td>StatReport.TimerInterval</td> <td>200</td> <td>Timer thread interval in seconds</td> </tr> <tr> <td>StatReport.StatServerAddress</td> <td>“metrics.ipop-project.org”</td> <td>Webservice to send stats</td> </tr> <tr> <td>StatReport.StatServerPort</td> <td>8080</td> <td>Port of StatReport webservice</td> </tr> <tr> <td>StatReport.dependencies</td> <td><code class="highlighter-rouge">["Logger"]</code></td> <td>StatReport module dependencies</td> </tr> </tbody> </table> </section> </div> </article> <div class="sidebar"> <nav class="nav__list"> <div class="wiki-top-links"> <a href="../wiki" class="display-unset">Wiki Home</a> / <a href="../wikipages" class="display-unset">Wiki Pages</a> </div> <ul> <li><strong>Deploying IPOP-VPN</strong> <ul> <li><a href="Quick-Start">Quick Start</a></li> <li><a href="Use-IPOP,-Intro">Installation</a></li> <li> <table> <tbody> <tr> <td>[[Configuration</td> <td>Understanding the IPOP Configuration]]</td> </tr> </tbody> </table> </li> </ul> </li> <li><strong>Development Guide</strong> <ul> <li><a href="Development-Workflow">Development Workflow</a></li> <li><a href="Coding-Guidelines">Coding Guidelines</a></li> <li><a href="Build-IPOP,-Intro">Building the Code</a></li> <li><a href="IPOP-Scale-test-Walkthrough">Testing Your Build</a></li> <li><a href="Controller-Framework">Controller Framework</a></li> <li><a href="Controller-API">Controller API</a></li> <li><a href="Build-WebRTC-Libraries,-Intro">Building WebRTC Libraries</a></li> </ul> </li> <li><strong>General Documentation</strong> <ul> <li><a href="FAQs">FAQs</a></li> <li><a href="Troubleshooting">Troubleshooting</a></li> <li><a href="Planning-Your-Network">Planning Your Network</a></li> <li><a href="Coding-Challenges">Coding Challenges</a></li> <li><a href="Known-Issues">Known Issues</a></li> <li><a href="Getting-Help">Getting Help</a></li> <li><a href="How-to-Contribute">How to Contribute</a></li> </ul> </li> </ul> </section> </div> </article> </div> </nav> </div> </div> <div class="page__footer"> <footer> <!-- start custom footer snippets --> <!-- end custom footer snippets --> <!-- <div class="page__footer-follow"> <ul class="social-icons"> <li><strong>Follow:</strong></li> --> <!-- <li><a href="/feed.xml"><i class="fa fa-fw fa-rss-square" aria-hidden="true"></i> Feed</a></li> --> <!-- </ul> </div> --> <div class="page__footer-copyright footer-address"> <div class="float-left"> <img src="/assets/images/uf_small.png" class="padding-bottom-right" /><img src="/assets/images/nsf_small.png" class="padding-bottom-right" /> </div> <i class="fa fa-address-card-o" aria-hidden="true"></i> <a href="http://www.acis.ufl.edu" rel="nofollow" target="_blank">ACIS Lab</a>, P.O. Box 116200, 339 Larsen Hall, Gainesville, FL 32611-6200; 352.392.4964<br /> <a href="http://www.ece.ufl.edu/" rel="nofollow" target="_blank">Department of Electrical & Computer Engineering</a><br /> <a href="http://www.eng.ufl.edu/" rel="nofollow" target="_blank">College of Engineering</a>, <a href="http://www.ufl.edu/" rel="nofollow" target="_blank">University of Florida</a> </div> <div class="page__footer-copyright footer-links"> <div> <a href="/contact">Contact</a> | <a href="/contact/#mailing-list-subscription">Mailing List</a> | <a href="https://ipopvpn.slack.com/">Slack Channel</a> | <a href="/sitemap">Sitemap</a><br /> <div>Powered by <a href="http://jekyllrb.com" rel="nofollow" target="_blank">Jekyll</a> &amp; <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow" target="_blank">Minimal Mistakes</a><br /> &copy; 2019 IPOP - <a href="http://www.acis.ufl.edu" rel="nofollow" target="_blank">ACIS Lab</a> </div> </div> </div> <div class="page__footer-copyright footer-sponsor clear-both">This material is based upon work supported in part by the National Science Foundation under Grants No. 1234983, 1339737 and 1527415.</div> </footer> </div> <script src="/assets/js/main.min.js"></script> </body> </html>
server/views/login.html
trantuanckc/ogilvyone-blog
<!DOCTYPE html> <html ng-app="OgilvyOne"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Log in</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <!-- Theme style --> <link rel="stylesheet" href="/ng-dist/dist/admin.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/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body class="hold-transition login-page" ng-cloak> <div ng-view></div> <script src="/ng-dist/dist/lib.js"></script> <script src="/ng-dist/dist/app.js"></script> <script src="/ng-dist/dist/admin.js"></script> </body> </html>
src/MovieDatabase_NetCoreApp/wwwroot/app/components/register/register.component.html
antonsirocka/angular2-moviedb
<div class="form-group"> <label for="Username" class="control-label">Username</label> <input class="form-control" #name type="text" autofocus placeholder="Username"> </div> <div class="form-group"> <label for="Password" class="control-label">Password</label> <input class="form-control" #pwd type="password" placeholder="Password"> </div> <div class="form-group"> <label for="SecretKey" class="control-label">Secret Key</label> <p> Secret key (supplied by admin) has to be provided in order to register. </p> <input class="form-control" #key type="password" placeholder="SecretKey"> </div> <div class="form-group"> </div> <div class="form-group"> <button type="button" (click)="register(name.value, pwd.value, key.value)" class="btn btn-success custom-btn">Register</button> </div> <error-notification [errorMessage]="errorMessage"></error-notification>
_site/optimization/2016/11/07/CH2.1/index.html
Rothdyt/rothdyt.github.com
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="google-site-verification" content="xBT4GhYoi5qRD5tr338pgPM5OWHHIDR6mNg1a3euekI" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="It is only with the heart that one can see rightly; what is essentiall is invisiable to the eye."> <meta name="keywords" content=""> <meta name="theme-color" content="#000000"> <title>凸集优化(1) - 鱼叔叔写字的地方 | Roth's Blog</title> <!-- Web App Manifest --> <link rel="manifest" href="/pwa/manifest.json"> <!-- Favicon --> <link rel="shortcut icon" href="/img/myicon.ico"> <!-- Canonical URL --> <link rel="canonical" href="http://localhost:4000/optimization/2016/11/07/CH2.1/"> <!-- Bootstrap Core CSS --> <link rel="stylesheet" href="/css/bootstrap.min.css"> <!-- Custom CSS --> <link rel="stylesheet" href="/css/hux-blog.min.css"> <!-- Pygments Github CSS --> <link rel="stylesheet" href="/css/syntax.css"> <!-- search --> <link rel="stylesheet" href="//cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css"> <!-- Custom Fonts --> <!-- <link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css"> --> <!-- Hux change font-awesome CDN to qiniu --> <link href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"> </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [['$','$'], ['\\(','\\)']], displayMath: [ ['$$', '$$'], ["\[", "\]"] ], skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'], processEscapes: true }, displayAlign: "center", displayIndent: "2em", TeX: { equationNumbers: { autoNumber: ["AMS"], useLabelIds: true } }, "HTML-CSS": { linebreaks: { automatic: true }, scale: 85 }, SVG: { linebreaks: { automatic: true } } }); </script> <!-- Hux Delete, sad but pending in China <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/ css'> --> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <!-- ga & ba script hoook --> <script></script> </head> <!-- hack iOS CSS :active style --> <body ontouchstart=""> <!-- Navigation --> <nav class="navbar navbar-default navbar-custom navbar-fixed-top"> <div class="container-fluid"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header page-scroll"> <button type="button" class="navbar-toggle"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/"></a> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div id="huxblog_navbar"> <div class="navbar-collapse"> <ul class="nav navbar-nav navbar-right"> <li> <a href="/">Home</a> </li> <li> <a href="/about/">It's me</a> </li> <li> <a href="/Projects/">Projetcs</a> </li> <li> <a href="/RMD/">Rmarkdown Posts</a> </li> <li> <a href="/tags/">Tags</a> </li> </ul> </div> </div> <!-- /.navbar-collapse --> </div> <!-- /.container --> </nav> <script> // Drop Bootstarp low-performance Navbar // Use customize navbar with high-quality material design animation // in high-perf jank-free CSS3 implementation var $body = document.body; var $toggle = document.querySelector('.navbar-toggle'); var $navbar = document.querySelector('#huxblog_navbar'); var $collapse = document.querySelector('.navbar-collapse'); var __HuxNav__ = { close: function(){ $navbar.className = " "; // wait until animation end. setTimeout(function(){ // prevent frequently toggle if($navbar.className.indexOf('in') < 0) { $collapse.style.height = "0px" } },400) }, open: function(){ $collapse.style.height = "auto" $navbar.className += " in"; } } // Bind Event $toggle.addEventListener('click', function(e){ if ($navbar.className.indexOf('in') > 0) { __HuxNav__.close() }else{ __HuxNav__.open() } }) /** * Since Fastclick is used to delegate 'touchstart' globally * to hack 300ms delay in iOS by performing a fake 'click', * Using 'e.stopPropagation' to stop 'touchstart' event from * $toggle/$collapse will break global delegation. * * Instead, we use a 'e.target' filter to prevent handler * added to document close HuxNav. * * Also, we use 'click' instead of 'touchstart' as compromise */ document.addEventListener('click', function(e){ if(e.target == $toggle) return; if(e.target.className == 'icon-bar') return; __HuxNav__.close(); }) </script> <!-- Image to hack wechat --> <!-- <img src="/img/icon_wechat.png" width="0" height="0"> --> <!-- <img src="/img/home-bg.jpg" width="0" height="0"> --> <script> (function () { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"; document.getElementsByTagName("head")[0].appendChild(script); })(); </script> <!-- Post Header --> <style type="text/css"> header.intro-header{ position: relative; background-image: url('/img/home-bg.jpg') } </style> <header class="intro-header" > <div class="header-mask"></div> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <div class="post-heading"> <div class="tags"> <a class="tag" href="/tags/#optimization" title="optimization">optimization</a> </div> <h1>凸集优化(1)</h1> <h2 class="subheading"></h2> <span class="meta">Posted by 鱼叔叔|Roth on November 7, 2016</span> </div> </div> </div> </div> </header> <!-- Post Content --> <article> <div class="container"> <div class="row"> <!-- Post Container --> <div class=" col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 post-container"> <p>该系列posts是笔者学习Dimitri .P Bertsekas所写的 Nonlinear Programming 2ed 中文版时整理的笔记。 下面是关于第二章无约束优化内容的整理。</p> <p>这一章打算分成二篇posts来展现,分别讨论</p> <ul> <li>约束优化问题的最优性条件</li> <li>可行方向法求解凸集上的优化问题</li> </ul> <p>本文讨论约束优化问题的最优性条件。</p> <ul id="markdown-toc"> <li><a href="#section" id="markdown-toc-section">约束优化问题</a> <ul> <li><a href="#section-1" id="markdown-toc-section-1">最优解的存在性</a></li> <li><a href="#section-2" id="markdown-toc-section-2">最优解的充要条件</a></li> <li><a href="#section-3" id="markdown-toc-section-3">凸集上的投影</a></li> </ul> </li> </ul> <p>这一章我们考虑带约束的优化问题</p> <script type="math/tex; mode=display">\mathop{min}_{x\in X}\qquad f(x)</script> <p>其中</p> <ul> <li>X是非空凸集</li> <li>函数 $f$ 是连续可微的</li> </ul> <p>另外我们称$X$为可行域,里面的点$x$为可行解。</p> <h2 id="section">约束优化问题</h2> <h3 id="section-1">最优解的存在性</h3> <p>不像在无约束优化问题,在一定条件下我们可以使用Weisterass保证最优解的存在性,带约束的问题中往往不能满足这些条件。所幸的是Marguerite Frank and Philip Wolfe给出了如下定理:</p> <p>If a quadratic function $f$ is bounded below on a nonempty polyhedron $X$, then $f$ attains its infimum on $X$. (That is, there exists a vector $x_* \in X$ such that $f(x_* )\leq f(x),\forall x\in X$.)</p> <p>其中$f$形如</p> <script type="math/tex; mode=display">f(x)=x^TQx+c^Tx+d</script> <p>且只要求$Q$是对称矩阵,不需要半正定。</p> <h3 id="section-2">最优解的充要条件</h3> <p>【最优解的一阶必要性条件】如果 $x_* $ 是 $f$ 在 凸集$X$ 上的局部最小值点,那么$\forall x\in X$有</p> <script type="math/tex; mode=display">\nabla f(x_* )(x-x_* )\geq 0</script> <p>【最优解的一阶充要条件】如果 $f$ 是 凸集$X$ 上的凸函数,那么$x_* $ 是 $f$ 在 $X$ 上的全局最小值点$\Leftrightarrow$$\forall x\in X$有</p> <script type="math/tex; mode=display">\nabla f(x_* )(x-x_* )\geq 0</script> <p>【最优解的二阶必要性条件】如果 $x_* $ 是二阶可微连续函数 $f$ 在 凸集$X$ 上的局部最小值点,那么对一切满足$\nabla f(x_* )(x-x_* )\geq 0$的$x$,有</p> <script type="math/tex; mode=display">(x-x_* )^T\nabla^2 f(x_* )(x-x_* )\geq 0</script> <p>【最优解的二阶充分性条件】如果 $f$ 是 凸集$X$ 上的二阶连续可导凸函数,且存在$x_* \in X$,使得对于任意的$x\in X$,$\nabla f(x_* )(x-x_* )\geq 0$。若下面任意条件成立,则$x_* $是局部最小值点:</p> <ul> <li>X是一个多面体,并且对于一切满足$\nabla f(x_* )(x-x_* )\geq 0$及$x\neq x_* $的$x\in X$,成立</li> </ul> <script type="math/tex; mode=display">(x-x_* )^T\nabla^2 f(x_* )(x-x_* )>0</script> <ul> <li>存在$a&gt;0$,使得对于任意$x\in X$,成立</li> </ul> <script type="math/tex; mode=display">(x-x_* )^T\nabla^2 f(x_* )(x-x_* )\geq a\vert \vert x-x_* \vert \vert ^2</script> <p><strong>Remark</strong></p> <ol> <li> <p><code class="highlighter-rouge">最优解的一阶必要性条件</code>的几何解释: 在局部最小值点$x_* $处的梯度$\nabla f(x_* )$与所有的可行变分,$x-x_* ,x\in X$,的夹角都小于等于$90^\circ$。 特别当约束集 $X$ 非凸时,最优性的必要条件不成立。 <img src="http://ogfa13jyv.bkt.clouddn.com/Snip20161109_9.png" alt="Snip20161109_9" /> <img src="http://ogfa13jyv.bkt.clouddn.com/Snip20161109_11.png" alt="Snip20161109_11" /></p> </li> <li> <p><code class="highlighter-rouge">最优解的一阶充要条件</code>中,运用了平行于Chapter 1中的结论,即:令 $f:X\vert \rightarrow R$为凸集 $X$ 上的一个凸函数,则在 $X$上的 $f$最小值点也是 $X$上的全局最小值点。</p> </li> </ol> <p><strong>例: 带边界约束的优化问题</strong></p> <p>考虑带边界的优化问题</p> <script type="math/tex; mode=display">\mathop{min}_{x\in X}\qquad f(x)</script> <p>其中可行域$X={x\in R^n\vert a_i\leq x\leq b_i, i=1,2,..,n}$, $a_i,b_i$是给定的常数,下面分三种情况讨论:</p> <ul> <li> <p>最小值点$x_* $在下边界点处取到,即${x_* }_i=a_i$</p> <p>利用最优解的一阶必要性条件,我们可以得到</p> <script type="math/tex; mode=display">\sum_{i=1}^n \frac{\partial f(x_* )}{\partial x_i}(x_i-{x_* }_i) \geq 0</script> <p>固定$i$, 构造如下的$x$: $x_i=a_i+\delta_i$,其中$\delta_i&gt;0$ ,且对一切$j\neq i,x_j={x_* }_j$。</p> <p>则有$\frac{\partial f(x_* )}{\partial x_i}\delta_i\geq 0$,进而推出</p> <script type="math/tex; mode=display">\frac{\partial f(x_* )}{\partial x_i}\geq 0</script> </li> <li> <p>最小值点$x_* $在上边界点处取到,即${x_* }_i=b_i$</p> <p>与上例类似,只需取$x_i=b_j-\delta_j$,其中$\delta_i&gt;0$, 易得</p> <script type="math/tex; mode=display">\frac{\partial f(x_* )}{\partial x_i}\leq 0</script> </li> <li> <p>最小值点$x_* $在内部取到,即$a_i &lt;{x_* }_i &lt;b_i$</p> <p>固定$i$, 构造如下的$x$:</p> <script type="math/tex; mode=display">x_i={x_* }_i+\delta_i</script> <p>其中$\delta_i&gt;0$且保证$x_i ={x_* }_i+\delta_i&lt;b_i$.同时对一切$j\neq i$</p> <script type="math/tex; mode=display">x_j={x_* }_j</script> <p>则有$\frac{\partial f(x_* )}{\partial x_i }\geq 0$; 如果构造$x$为</p> <script type="math/tex; mode=display">x_i={x_*}_i -\delta_i</script> <p>其中$\delta_i&gt;0$且保证$x_i ={x_* }_i -\delta_i &gt; a_i$, 且对一切$ j\neq i, x_j ={x*}_j $。则有</p> <script type="math/tex; mode=display">\frac{\partial f(x_* )}{\partial x_i }\leq 0</script> <p>综上可得</p> <script type="math/tex; mode=display">\frac{\partial f(x_* )}{\partial x_i}=0</script> </li> </ul> <h3 id="section-3">凸集上的投影</h3> <p>现在考虑一个有很强直观几何意义的优化问题</p> <script type="math/tex; mode=display">\mathop{min}_{x\in X}\qquad \vert \vert z-x\vert \vert ^2</script> <p>其中 $z\in R^n$。从几何上理解这个问题就是,在$R^n$的子集$X$中找到一个点$x_* \in X$,使得$x_* $与$z$在欧式距离意义下最近,我们称这个优化问题为投影问题</p> <p>为了解决这个,优化问题,我们引入下面这个定理</p> <p>【投影定理】设$X$是$R^n$的非空闭凸子集:</p> <ul> <li>【存在性命题】对每一$z\in R^n$,存在唯一的$x_* \in X$,使得对一切$x\in X,\vert \vert z-x\vert \vert $达到最小。我们称$x_* $为$z$在$X$上的投影,用$[z]^+$表示。</li> <li>【判定条件】给定$z\in R^n$,一个向量$x_* $等于$[z]^+$当且仅当对一切$x\in X$</li> </ul> <script type="math/tex">(z-x_* )(x-x_* )\leq 0</script> <ul> <li>当$X$是一个子空间时,一个向量$x_* $等于$[z]^+$当且仅当$z-x_* $正交于$X$,即对一切$x\in X$</li> </ul> <script type="math/tex; mode=display">x^T(z-x_* )=0</script> <p><strong>Remark</strong></p> <ol> <li> <p><code class="highlighter-rouge">判定条件</code>的几何解释</p> <p><img src="http://ogfa13jyv.bkt.clouddn.com/Snip20161110_4.png" alt="Snip20161110_4" /></p> </li> <li> <p>子空间情形的几何解释</p> <p><img src="http://ogfa13jyv.bkt.clouddn.com/projection.png" alt="projection" /></p> </li> </ol> <p><strong>例子:等式约束的二次问题</strong></p> <p><img src="http://ogfa13jyv.bkt.clouddn.com/Snip20161110_6.png" alt="Snip20161110_6" /></p> <hr style="visibility: hidden;"> <ul class="pager"> <li class="previous"> <a href="/optimization/2016/11/02/CH1.5/" data-toggle="tooltip" data-placement="top" title="无约束优化(5)"> Previous<br> <span>无约束优化(5)</span> </a> </li> <li class="next"> <a href="/optimization/2016/11/14/CH2.2/" data-toggle="tooltip" data-placement="top" title="凸集优化(2)"> Next<br> <span>凸集优化(2)</span> </a> </li> </ul> <!-- 多说评论框 start --> <div class="comment"> <div class="ds-thread" data-thread-key="/optimization/2016/11/07/CH2.1" data-title="凸集优化(1)" data-url="http://localhost:4000/optimization/2016/11/07/CH2.1/" > </div> </div> <!-- 多说评论框 end --> </div> <!-- Side Catalog Container --> <!-- Sidebar Container --> <div class=" col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 sidebar-container"> <!-- Featured Tags --> <section> <hr class="hidden-sm hidden-xs"> <h5><a href="/tags/">FEATURED TAGS</a></h5> <div class="tags"> <a href="/tags/#optimization" title="optimization" rel="12"> optimization </a> </div> </section> <!-- Friends Blog --> </div> </div> </div> </article> <!-- 多说公共JS代码 start (一个网页只需插入一次) --> <script type="text/javascript"> // dynamic User by Hux var _user = 'rothdyt'; // duoshuo comment query. var duoshuoQuery = {short_name: _user }; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> <!-- 多说公共JS代码 end --> <!-- async load function --> <script> function async(u, c) { var d = document, t = 'script', o = d.createElement(t), s = d.getElementsByTagName(t)[0]; o.src = u; if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); } s.parentNode.insertBefore(o, s); } </script> <!-- anchor-js, Doc:http://bryanbraun.github.io/anchorjs/ --> <script> async("//cdnjs.cloudflare.com/ajax/libs/anchor-js/1.1.1/anchor.min.js",function(){ anchors.options = { visible: 'always', placement: 'right', icon: '#' }; anchors.add().remove('.intro-header h1').remove('.subheading').remove('.sidebar-container h5'); }) </script> <style> /* place left on bigger screen */ @media all and (min-width: 800px) { .anchorjs-link{ position: absolute; left: -0.75em; font-size: 1.1em; margin-top : -0.1em; } } </style> <!-- Footer --> <footer> <div class="container"> <div class="row"> <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1"> <ul class="list-inline text-center"> <!-- add Weibo, Zhihu by Hux, add target = "_blank" to <a> by Hux --> <li> <a target="_blank" href="https://github.com/Rothdyt"> <span class="fa-stack fa-lg"> <i class="fa fa-circle fa-stack-2x"></i> <i class="fa fa-github fa-stack-1x fa-inverse"></i> </span> </a> </li> </ul> <p class="copyright text-muted"> Copyright &copy; 2016 <br> Theme by <a href="http://huangxuan.me">Hux</a> | <iframe style="margin-left: 2px; margin-bottom:-5px;" frameborder="0" scrolling="0" width="91px" height="20px" src="https://ghbtns.com/github-btn.html?user=huxpro&repo=huxpro.github.io&type=star&count=true" > </iframe> </p> </div> </div> </div> <div class="cb-search-tool" style="position: fixed; top: 0px ; bottom: 0px; left: 0px; right: 0px; opacity: 0.95; background-color: #111111; z-index: 9999; display: none;"> <input type="text" class="form-control cb-search-content" id="cb-search-content" style="position: fixed; top: 60px" placeholder="Tittle Date Tags" > <div style="position: fixed; top: 16px; right: 16px;"> <img src="/search/img/cb-close.png" id="cb-close-btn"/> </div> </div> <div style="position: fixed; right: 16px; bottom: 20px;"> <img src="/search/img/cb-search.png" id="cb-search-btn" title="双击ctrl试一下"/> </div> <link rel="stylesheet" href="/search/css/cb-search.css"> <!-- jQuery --> <script src="//cdn.bootcss.com/jquery/2.2.2/jquery.min.js"></script> <script src="/search/js/bootstrap3-typeahead.min.js"></script> <script src="/search/js/cb-search.js"></script> </footer> <!-- Bootstrap Core JavaScript --> <script src="/js/bootstrap.min.js "></script> <!-- Bootstrap Core JavaScript --> <script src="//cdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <!-- Custom Theme JavaScript --> <script src="/js/hux-blog.min.js "></script> <!-- Service Worker --> <script type="text/javascript"> if(navigator.serviceWorker){ // For security reasons, a service worker can only control the pages that are in the same directory level or below it. That's why we put sw.js at ROOT level. navigator.serviceWorker .register('/sw.js') .then((registration) => {console.log('Service Worker Registered. ', registration)}) .catch((error) => {console.log('ServiceWorker registration failed: ', error)}) } </script> <!-- async load function --> <script> function async(u, c) { var d = document, t = 'script', o = d.createElement(t), s = d.getElementsByTagName(t)[0]; o.src = u; if (c) { o.addEventListener('load', function (e) { c(null, e); }, false); } s.parentNode.insertBefore(o, s); } </script> <!-- Because of the native support for backtick-style fenced code blocks right within the Markdown is landed in Github Pages, From V1.6, There is no need for Highlight.js, so Huxblog drops it officially. - https://github.com/blog/2100-github-pages-now-faster-and-simpler-with-jekyll-3-0 - https://help.github.com/articles/creating-and-highlighting-code-blocks/ - https://github.com/jneen/rouge/wiki/list-of-supported-languages-and-lexers --> <!-- <script> async("http://cdn.bootcss.com/highlight.js/8.6/highlight.min.js", function(){ hljs.initHighlightingOnLoad(); }) </script> <link href="http://cdn.bootcss.com/highlight.js/8.6/styles/github.min.css" rel="stylesheet"> --> <!-- jquery.tagcloud.js --> <script> // only load tagcloud.js in tag.html if($('#tag_cloud').length !== 0){ async('/js/jquery.tagcloud.js',function(){ $.fn.tagcloud.defaults = { //size: {start: 1, end: 1, unit: 'em'}, color: {start: '#bbbbee', end: '#0085a1'}, }; $('#tag_cloud a').tagcloud(); }) } </script> <!--fastClick.js --> <script> async("//cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js", function(){ var $nav = document.querySelector("nav"); if($nav) FastClick.attach($nav); }) </script> <!-- Google Analytics --> <!-- Baidu Tongji --> <!-- Side Catalog --> <!-- Image to hack wechat --> <img src="/img/icon_wechat.png" width="0" height="0" /> <!-- Migrate from head to bottom, no longer block render and still work --> </body> </html>
Application/Home/View/default/Usersj/sj_zhaq.html
h136799711/201506bbjie
<extend name="template/base_index" /> <block name="area_header"> <link rel="stylesheet" href="__CSS__/shangjia.css"> </block> <block name="area_body"> <include file='Widget/sjtop' /> <div class="seller_main clearfix" controller="seller/common"> <div class="seller_content_wrap"> <div class="seller_content" style="padding-top: 10px;"> <div class="content"> <h1> 账户安全 </h1> <div> <table class="renzheng-table"> <colgroup> <col width="100px"> <col width="620px"> <col width="120px"> </colgroup> <tbody> <tr> <td> <div style="width: 520px; padding: 50px;"> <if condition="$entity['email'] eq ''"> <i class="am-icon-envelope-o" font-size: 60px;width: 80px; margin-left: 15px;></i> <span class="text-warning">你尚未绑定邮箱</span> <else/> <i class="am-icon-envelope-o" style="color: deeppink; font-size: 60px;width: 80px; margin-left: 15px;"></i> <span class="text-success">你已绑定邮箱[ {$entity['email']}]</span> </if> </div> </td> <td> <div class="am-modal am-modal-no-btn" tabindex="-1" id="doc-modal-1" > <div class="am-modal-dialog"> <div class="am-modal-hd">邮箱验证 <a href="javascript: void(0)" class="am-close am-close-spin" data-am-modal-close>&times;</a> </div> <form action="{:U('Home/Usersj/email')}" method="post"> <div class="am-modal-bd"> <input type="hidden" name="id" value="{$entity['id']}" /> <input type="text" name="email" value="{$entity['email']}"> <input style="font-family: '微软雅黑'; font-size: 13px; border-radius:5px ; margin-top: -8px;" class="am-btn-danger am-btn-xs" type="submit" value="确认" /> </div> </form> </div> </div> <div class="am-modal am-modal-no-btn" tabindex="-1" id="doc-modal-2" > <div class="am-modal-dialog"> <div class="am-modal-hd">手机更换 <a href="javascript: void(0)" class="am-close am-close-spin" data-am-modal-close>&times;</a> </div> <form action="{:U('Home/Usersj/phone')}" method="post"> <div class="am-modal-bd"> <input type="hidden" name="id" value="{$entity['id']}" /> <input type="text" class="email" name="phone" value="{$entity['mobile']}"> <input style="font-family: '微软雅黑'; font-size: 13px; border-radius:5px ; margin-top: -8px;" class="am-btn-danger am-btn-xs" type="submit" value="确认" /> </div> </form> </div> </div> <button class="am-btn am-btn-primary am-btn-xs" style="font-family: '微软雅黑'; font-size: 13px; width: 60px; height: 30px;line-height: 10px; padding: 10px; border-radius:5px ;" data-am-modal="{target: '#doc-modal-1', closeViaDimmer: 0, width: 400, height: 225}">修改</button> </tr> </tbody> </table> <table class="renzheng-table"> <colgroup> <col width="100px"> <col width="620px"> <col width="120px"> </colgroup> <tbody> <tr> <td> <div style="width: 520px; padding: 50px;"> <if condition="$entity['mobile'] eq ''"> <i class="am-icon-mobile" style="font-size: 60px;width: 80px; margin-left: 15px;"></i> <span class="text-warning">你尚未绑定手机</span> <else/> <i class="am-icon-mobile" style="color: deeppink; font-size: 60px; width: 80px; margin-left: 15px;"></i> <span class="text-success">你已绑定手机[ {$entity['mobile']}]</span> </if> </div> </td> <td> <button class="am-btn am-btn-primary am-btn-xs" style="font-family: '微软雅黑'; font-size: 13px; width: 60px; height: 30px;line-height: 10px; padding: 10px; border-radius:5px ;" data-am-modal="{target: '#doc-modal-2', closeViaDimmer: 0, width: 400, height: 225}">更换</button> </tr> </tbody> </table> </div> </div> </div> </div> <include file='Widget/sjleft' /> </div> </block> <block name="area_footer"> </block>
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4pl4/contrib:railroad-crossing/8.4.dev/2014-12-05_05-10-05.html
coq-bench/coq-bench.github.io-old
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">8.4pl4 / contrib:railroad-crossing 8.4.dev</a></li> <li class="active"><a href="">2014-12-05 05:10:05</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:railroad-crossing <small> 8.4.dev <span class="label label-success">5 s</span> </small> </h1> <p><em><script>document.write(moment("2014-12-05 05:10:05 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2014-12-05 05:10:05 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:railroad-crossing/coq:contrib:railroad-crossing.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:railroad-crossing.8.4.dev coq.8.4pl4</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.4pl4). The following actions will be performed: - install coq:contrib:railroad-crossing.8.4.dev === 1 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq:contrib:railroad-crossing.8.4.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:railroad-crossing.8.4.dev. </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --deps-only coq:contrib:railroad-crossing.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --verbose coq:contrib:railroad-crossing.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>5 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - install coq:contrib:railroad-crossing.8.4.dev === 1 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= [coq:contrib:railroad-crossing] Fetching https://gforge.inria.fr/git/coq-contribs/railroad-crossing.git#v8.4 Initialized empty Git repository in /home/bench/.opam/packages.dev/coq:contrib:railroad-crossing.8.4.dev/.git/ [master (root-commit) 315f366] opam-git-init From https://gforge.inria.fr/git/coq-contribs/railroad-crossing * [new branch] v8.4 -&gt; opam-ref * [new branch] v8.4 -&gt; origin/v8.4 LICENSE Make Makefile TemporalOperators.v bench.log description railroad_crossing.v time_clocks.v HEAD is now at 201c2b0 Sauvegarde des bench.log =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq:contrib:railroad-crossing.8.4.dev: coq_makefile -f Make -o Makefile make -j4 make install coqdep -c -slash -R . RailroadCrossing &quot;railroad_crossing.v&quot; &gt; &quot;railroad_crossing.v.d&quot; || ( RV=$?; rm -f &quot;railroad_crossing.v.d&quot;; exit ${RV} ) coqdep -c -slash -R . RailroadCrossing &quot;time_clocks.v&quot; &gt; &quot;time_clocks.v.d&quot; || ( RV=$?; rm -f &quot;time_clocks.v.d&quot;; exit ${RV} ) coqc -q -R . RailroadCrossing time_clocks coqc -q -R . RailroadCrossing railroad_crossing for i in time_clocks.vo railroad_crossing.vo; do \ install -d `dirname /home/bench/.opam/system/lib/coq/user-contrib/RailroadCrossing/$i`; \ install -m 0644 $i /home/bench/.opam/system/lib/coq/user-contrib/RailroadCrossing/$i; \ done Installing coq:contrib:railroad-crossing.8.4.dev. </pre></dd> </dl> <h2>Installation size</h2> <p>Total: 508 K</p> <ul> <li>494 K <code>/home/bench/.opam/system/lib/coq/user-contrib/RailroadCrossing/railroad_crossing.vo</code></li> <li>14 K <code>/home/bench/.opam/system/lib/coq/user-contrib/RailroadCrossing/time_clocks.vo</code></li> <li>1 K <code>/home/bench/.opam/system/lib/coq:contrib:railroad-crossing/opam.config</code></li> <li>1 K <code>/home/bench/.opam/system/install/coq:contrib:railroad-crossing.install</code></li> </ul> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq:contrib:railroad-crossing.8.4.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq:contrib:railroad-crossing.8.4.dev === 1 to remove === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= [coq:contrib:railroad-crossing] Fetching https://gforge.inria.fr/git/coq-contribs/railroad-crossing.git#v8.4 =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq:contrib:railroad-crossing.8.4.dev. rm -R /home/bench/.opam/system/lib/coq/user-contrib/RailroadCrossing </pre></dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
vendor/poi-3.6/doc/apidocs/org/apache/poi/hssf/usermodel/class-use/HSSFFontFormatting.html
tobyclemson/msci-project
<!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_13) on Mon Dec 14 15:25:07 MSK 2009 --> <TITLE> Uses of Class org.apache.poi.hssf.usermodel.HSSFFontFormatting (POI API Documentation) </TITLE> <META NAME="date" CONTENT="2009-12-14"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.hssf.usermodel.HSSFFontFormatting (POI API Documentation)"; } } </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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hssf/usermodel/\class-useHSSFFontFormatting.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HSSFFontFormatting.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.poi.hssf.usermodel.HSSFFontFormatting</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="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel">HSSFFontFormatting</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.hssf.usermodel"><B>org.apache.poi.hssf.usermodel</B></A></TD> <TD>usermodel package maps HSSF low level strutures to familiar workbook/sheet model&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.hssf.usermodel"><!-- --></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="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel">HSSFFontFormatting</A> in <A HREF="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A></FONT></TH> </TR> </TABLE> &nbsp; <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="../../../../../../org/apache/poi/hssf/usermodel/package-summary.html">org.apache.poi.hssf.usermodel</A> that return <A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel">HSSFFontFormatting</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel">HSSFFontFormatting</A></CODE></FONT></TD> <TD><CODE><B>HSSFConditionalFormattingRule.</B><B><A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFConditionalFormattingRule.html#createFontFormatting()">createFontFormatting</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;create a new font formatting structure if it does not exist, otherwise just return existing object.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel">HSSFFontFormatting</A></CODE></FONT></TD> <TD><CODE><B>HSSFConditionalFormattingRule.</B><B><A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFConditionalFormattingRule.html#getFontFormatting()">getFontFormatting</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=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>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hssf/usermodel/HSSFFontFormatting.html" title="class in org.apache.poi.hssf.usermodel"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hssf/usermodel/\class-useHSSFFontFormatting.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="HSSFFontFormatting.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2009 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
app/mod_pages/_show.html
ramainen/doit-cms
<h1>{.title} {{edit}}</h1> {.text}
app/partials/review-form.html
tgrud/stb_suwa
<form name="reviewForm" class="form-horizontal" ng-submit="reviewFormCtrl.addReview(reviewForm, reviewFormCtrl.book)"> <section class="row well live-preview" ng-show="reviewFormCtrl.book.isbn"> <aside class="col-sm-3"> <!-- no, no! <book-cover></book-cover> --> <a href="http://www.amazon.com/gp/product/{{reviewFormCtrl.book.isbn}}"> <img ng-src="http://images.amazon.com/images/P/{{reviewFormCtrl.book.isbn}}.01.ZTZZZZZZ.jpg" alt="Cover of {{reviewFormCtrl.book.title}}" class="full"> </a> <p>{{reviewFormCtrl.book.rating}}/5</p> </aside> <div class="col-sm-9"> <h3> <a href="http://www.amazon.com/gp/product/{{reviewFormCtrl.book.isbn}}"> {{reviewFormCtrl.book.title}} </a> </h3> <cite class="text-muted">Written by {{reviewFormCtrl.book.author}}</cite> <p>{{reviewFormCtrl.book.review}}</p> <ul class="list-unstyled"> <li ng-repeat="(genre, state) in reviewFormCtrl.book.genres"> <span class="label label-primary" ng-show="state">{{genre}}</span> </li> </ul> </div> </section> <div class="input-container"> <fieldset class="form-group"> <label for="title" class="col-sm-2 control-label">Title:</label> <span class="col-sm-9"> <input type="text" class="form-control" id="title" placeholder="Book Title" ng-model="reviewFormCtrl.book.title"> </span> </fieldset> <fieldset class="form-group"> <label for="isbn" class="control-label col-sm-2">ISBN:</label> <span class="col-sm-9"> <input type="text" id="isbn" class="form-control" maxLength="10" placeholder="ISBN-10" ng-model="reviewFormCtrl.book.isbn"> </span> </fieldset> <fieldset class="form-group"> <label class="control-label col-sm-2" for="author">Author</label> <span class="col-sm-9"> <input type="text" id="author" class="form-control" placeholder="Name of the Author" ng-model="reviewFormCtrl.book.author"></span> </fieldset> <fieldset class="form-group"> <label class="control-label col-sm-2" for="review">Review</label> <span class="col-sm-9"> <textarea id="review" class="form-control" cols="30" rows="3" placeholder="Book Review" ng-model="reviewFormCtrl.book.review"></textarea> </span> </fieldset> <fieldset class="form-group"> <label for="rating" class="control-label col-sm-2">Rating:</label> <span class="col-sm-9"> <select class="form-control" id="rating" value="5" ng-model="reviewFormCtrl.book.rating"> <option>5</option> <option>4</option> <option>3</option> <option>2</option> <option>1</option> </select> </span> </fieldset> <fieldset class="form-group"> <label class="control-label col-sm-2" >Genre:</label> <div class="genre"> <label for="{{genre}}" class="genre-label form-control" ng-repeat="genre in genres"> <input type="checkbox" name="genre" id="{{genre}}" ng-model="reviewFormCtrl.book.genres[genre]"/> {{genre}} </label> </div> </fieldset> <fieldset class="form-group"> <span class="col-sm-9 col-sm-offset-2 button-from-hell"> <button class="btn btn-primary">Save Review</button> </span> </fieldset> </div> </form>
TAIHAO2019/pub/SmallGame/AsFastAsYouCan2/ee973c9984ea417cd31ac27f49065918de4bd82acc2bf17bb5353a48435e4427.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="./a4b6b685941f3271cfbc32c80586ac1143811d797b6345e9623db4cf2dadf676.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>
docs/builtin/string/stringreplace/index.html
corywalker/expreduce-docs
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="no-js ie6"><![endif]--> <!--[if IE 7 ]><html class="no-js ie7"><![endif]--> <!--[if IE 8 ]><html class="no-js ie8"><![endif]--> <!--[if IE 9 ]><html class="no-js ie9"><![endif]--> <!--[if (gt IE 9)|!(IE)]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1"> <title>StringReplace - Expreduce</title> <meta property="og:url" content="None"> <meta property="og:title" content="Expreduce"> <meta property="og:image" content="None/../../../assets/images/logo.png"> <meta name="apple-mobile-web-app-title" content="Expreduce"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <link rel="apple-touch-icon" href="../../../assets/images/logo.png"> <link rel="shortcut icon" type="image/x-icon" href="../../../assets/images/favicon-e565ddfa3b.ico"> <link rel="icon" type="image/x-icon" href="../../../assets/images/favicon-e565ddfa3b.ico"> <style> @font-face { font-family: 'Icon'; src: url('../../../assets/fonts/icon.eot?52m981'); src: url('../../../assets/fonts/icon.eot?#iefix52m981') format('embedded-opentype'), url('../../../assets/fonts/icon.woff?52m981') format('woff'), url('../../../assets/fonts/icon.ttf?52m981') format('truetype'), url('../../../assets/fonts/icon.svg?52m981#icon') format('svg'); font-weight: normal; font-style: normal; } </style> <link rel="stylesheet" href="../../../assets/stylesheets/application-a422ff04cc.css"> <link rel="stylesheet" href="../../../assets/stylesheets/mma.css"> <link rel="stylesheet" href="../../../assets/stylesheets/palettes-05ab2406df.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700|Roboto+Mono"> <style> body, input { font-family: 'Roboto', Helvetica, Arial, sans-serif; } pre, code { font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace; } </style> <script src="../../../assets/javascripts/modernizr-4ab42b99fd.js"></script> </head> <body class="palette-primary-red palette-accent-light-blue"> <div class="backdrop"> <div class="backdrop-paper"></div> </div> <input class="toggle" type="checkbox" id="toggle-drawer"> <input class="toggle" type="checkbox" id="toggle-search"> <label class="toggle-button overlay" for="toggle-drawer"></label> <header class="header"> <nav aria-label="Header"> <div class="bar default"> <div class="button button-menu" role="button" aria-label="Menu"> <label class="toggle-button icon icon-menu" for="toggle-drawer"> <span></span> </label> </div> <div class="stretch"> <div class="title"> <span class="path"> Language reference <i class="icon icon-link"></i> </span> StringReplace </div> </div> <div class="button button-search" role="button" aria-label="Search"> <label class="toggle-button icon icon-search" title="Search" for="toggle-search"></label> </div> </div> <div class="bar search"> <div class="button button-close" role="button" aria-label="Close"> <label class="toggle-button icon icon-back" for="toggle-search"></label> </div> <div class="stretch"> <div class="field"> <input class="query" type="text" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck> </div> </div> <div class="button button-reset" role="button" aria-label="Search"> <button class="toggle-button icon icon-close" id="reset-search"></button> </div> </div> </nav> </header> <main class="main"> <div class="drawer"> <nav aria-label="Navigation"> <a href="https://github.com/corywalker/expreduce" class="project"> <div class="banner"> <div class="logo"> <img src="../../../assets/images/logo.png"> </div> <div class="name"> <strong> Expreduce <span class="version"> </span> </strong> <br> corywalker/expreduce </div> </div> </a> <div class="scrollable"> <div class="wrapper"> <ul class="repo"> <li class="repo-download"> <a href="https://github.com/corywalker/expreduce/archive/master.zip" target="_blank" title="Download" data-action="download"> <i class="icon icon-download"></i> Download </a> </li> <li class="repo-stars"> <a href="https://github.com/corywalker/expreduce/stargazers" target="_blank" title="Stargazers" data-action="star"> <i class="icon icon-star"></i> Stars <span class="count">&ndash;</span> </a> </li> </ul> <hr> <div class="toc"> <ul> <li> <a class="" title="Home" href="../../.."> Home </a> </li> <li> <span class="section">Language reference</span> <ul> <li> <a class="" title="combinatorics" href="../../combinatorics/"> combinatorics </a> </li> <li> <a class="" title="calculus" href="../../calculus/"> calculus </a> </li> <li> <a class="" title="comparison" href="../../comparison/"> comparison </a> </li> <li> <a class="" title="atoms" href="../../atoms/"> atoms </a> </li> <li> <a class="" title="functional" href="../../functional/"> functional </a> </li> <li> <a class="" title="expression" href="../../expression/"> expression </a> </li> <li> <a class="" title="equationdata" href="../../equationdata/"> equationdata </a> </li> <li> <a class="" title="solve" href="../../solve/"> solve </a> </li> <li> <a class="" title="flowcontrol" href="../../flowcontrol/"> flowcontrol </a> </li> <li> <a class="" title="list" href="../../list/"> list </a> </li> <li> <a class="" title="matrix" href="../../matrix/"> matrix </a> </li> <li> <a class="" title="arithmetic" href="../../arithmetic/"> arithmetic </a> </li> <li> <a class="" title="specialsyms" href="../../specialsyms/"> specialsyms </a> </li> <li> <a class="" title="power" href="../../power/"> power </a> </li> <li> <a class="" title="random" href="../../random/"> random </a> </li> <li> <a class="" title="replacement" href="../../replacement/"> replacement </a> </li> <li> <a class="" title="sort" href="../../sort/"> sort </a> </li> <li> <a class="" title="system" href="../../system/"> system </a> </li> <li> <a class="" title="trig" href="../../trig/"> trig </a> </li> <li> <a class="" title="plot" href="../../plot/"> plot </a> </li> <li> <a class="" title="string" href="../"> string </a> </li> <li> <a class="" title="time" href="../../time/"> time </a> </li> <li> <a class="" title="pattern" href="../../pattern/"> pattern </a> </li> <li> <a class="" title="boolean" href="../../boolean/"> boolean </a> </li> <li> <a class="" title="simplify" href="../../simplify/"> simplify </a> </li> <li> <a class="" title="numbertheory" href="../../numbertheory/"> numbertheory </a> </li> <li> <a class="" title="stats" href="../../stats/"> stats </a> </li> <li> <a class="" title="manip" href="../../manip/"> manip </a> </li> <li> <a class="" title="rubi" href="../../rubi/"> rubi </a> </li> <li> <a class="" title="tests" href="../../tests/"> tests </a> </li> </ul> </li> </ul> </div> </div> </div> </nav> </div> <article class="article"> <div class="wrapper"> <h1 id="stringreplace">StringReplace</h1> <p><code>StringReplace[str, before-&gt;after]</code> replaces any occurrence of <code>before</code> with <code>after</code> in <code>str</code>.</p> <p><code>Attributes[StringReplace] := {Protected}</code></p> <h2 id="simple-examples">Simple examples</h2> <div class="language-wl"><pre><span></span><span class="nb">In</span><span class="p">[</span><span class="m">1</span><span class="p">]</span><span class="o">:=</span><span class="w"> </span><span class="nb">StringReplace</span><span class="p">[</span><span class="s">&quot;hello world&quot;</span><span class="p">,</span><span class="w"> </span><span class="s">&quot;world&quot;</span><span class="w"> </span><span class="o">-&gt;</span><span class="w"> </span><span class="s">&quot;foo&quot;</span><span class="p">]</span><span class="w"></span> <span class="nb">Out</span><span class="p">[</span><span class="m">1</span><span class="p">]</span><span class="o">=</span><span class="w"> </span><span class="s">&quot;hello foo&quot;</span><span class="w"></span> </pre></div> <aside class="copyright" role="note"> Documentation built with <a href="http://www.mkdocs.org" target="_blank">MkDocs</a> using the <a href="http://squidfunk.github.io/mkdocs-material/" target="_blank"> Material </a> theme. </aside> <footer class="footer"> <nav class="pagination" aria-label="Footer"> <div class="previous"> <a href="../stringtake/" title="StringTake "> <span class="direction"> Previous </span> <div class="page"> <div class="button button-previous" role="button" aria-label="Previous"> <i class="icon icon-back"></i> </div> <div class="stretch"> <div class="title"> StringTake </div> </div> </div> </a> </div> <div class="next"> <a href="../exportstring/" title="ExportString "> <span class="direction"> Next </span> <div class="page"> <div class="stretch"> <div class="title"> ExportString </div> </div> <div class="button button-next" role="button" aria-label="Next"> <i class="icon icon-forward"></i> </div> </div> </a> </div> </nav> </footer> </div> </article> <div class="results" role="status" aria-live="polite"> <div class="scrollable"> <div class="wrapper"> <div class="meta"></div> <div class="list"></div> </div> </div> </div> </main> <script> var base_url = '../../..'; var repo_id = 'corywalker/expreduce'; </script> <script src="../../../assets/javascripts/application-997097ee0c.js"></script> </body> </html>
docs/vector/data.m.html
karimbahgat/PythonGis
<!doctype html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /> <title>pythongis.vector.data API documentation</title> <meta name="description" content="Module containing the data structures and interfaces for operating with vector datasets." /> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,300' rel='stylesheet' type='text/css'> <style type="text/css"> * { box-sizing: border-box; } /*! normalize.css v1.1.1 | MIT License | git.io/normalize */ /* ========================================================================== HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /** * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. */ audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. * Known issue: no IE 6 support. */ [hidden] { display: none; } /* ========================================================================== Base ========================================================================== */ /** * 1. Prevent system color scheme's background color being used in Firefox, IE, * and Opera. * 2. Prevent system color scheme's text color being used in Firefox, IE, and * Opera. * 3. Correct text resizing oddly in IE 6/7 when body `font-size` is set using * `em` units. * 4. Prevent iOS text size adjust after orientation change, without disabling * user zoom. */ html { background: #fff; /* 1 */ color: #000; /* 2 */ font-size: 100%; /* 3 */ -webkit-text-size-adjust: 100%; /* 4 */ -ms-text-size-adjust: 100%; /* 4 */ } /** * Address `font-family` inconsistency between `textarea` and other form * elements. */ html, button, input, select, textarea { font-family: sans-serif; } /** * Address margins handled incorrectly in IE 6/7. */ body { margin: 0; } /* ========================================================================== Links ========================================================================== */ /** * Address `outline` inconsistency between Chrome and other browsers. */ a:focus { outline: thin dotted; } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* ========================================================================== Typography ========================================================================== */ /** * Address font sizes and margins set differently in IE 6/7. * Address font sizes within `section` and `article` in Firefox 4+, Safari 5, * and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } h2 { font-size: 1.5em; margin: 0.83em 0; } h3 { font-size: 1.17em; margin: 1em 0; } h4 { font-size: 1em; margin: 1.33em 0; } h5 { font-size: 0.83em; margin: 1.67em 0; } h6 { font-size: 0.67em; margin: 2.33em 0; } /** * Address styling not present in IE 7/8/9, Safari 5, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. */ b, strong { font-weight: bold; } blockquote { margin: 1em 40px; } /** * Address styling not present in Safari 5 and Chrome. */ dfn { font-style: italic; } /** * Address differences between Firefox and other browsers. * Known issue: no IE 6/7 normalization. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** * Address styling not present in IE 6/7/8/9. */ mark { background: #ff0; color: #000; } /** * Address margins set differently in IE 6/7. */ p, pre { margin: 1em 0; } /** * Correct font family set oddly in IE 6, Safari 4/5, and Chrome. */ code, kbd, pre, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; } /** * Improve readability of pre-formatted text in all browsers. */ pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; } /** * Address CSS quotes not supported in IE 6/7. */ q { quotes: none; } /** * Address `quotes` property not supported in Safari 4. */ q:before, q:after { content: ''; content: none; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* ========================================================================== Lists ========================================================================== */ /** * Address margins set differently in IE 6/7. */ dl, menu, ol, ul { margin: 1em 0; } dd { margin: 0 0 0 40px; } /** * Address paddings set differently in IE 6/7. */ menu, ol, ul { padding: 0 0 0 40px; } /** * Correct list images handled incorrectly in IE 7. */ nav ul, nav ol { list-style: none; list-style-image: none; } /* ========================================================================== Embedded content ========================================================================== */ /** * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. * 2. Improve image quality when scaled in IE 7. */ img { border: 0; /* 1 */ -ms-interpolation-mode: bicubic; /* 2 */ } /** * Correct overflow displayed oddly in IE 9. */ svg:not(:root) { overflow: hidden; } /* ========================================================================== Figures ========================================================================== */ /** * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. */ figure { margin: 0; } /* ========================================================================== Forms ========================================================================== */ /** * Correct margin displayed oddly in IE 6/7. */ form { margin: 0; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct color not being inherited in IE 6/7/8/9. * 2. Correct text not wrapping in Firefox 3. * 3. Correct alignment displayed oddly in IE 6/7. */ legend { border: 0; /* 1 */ padding: 0; white-space: normal; /* 2 */ *margin-left: -7px; /* 3 */ } /** * 1. Correct font size not being inherited in all browsers. * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, * and Chrome. * 3. Improve appearance and consistency in all browsers. */ button, input, select, textarea { font-size: 100%; /* 1 */ margin: 0; /* 2 */ vertical-align: baseline; /* 3 */ *vertical-align: middle; /* 3 */ } /** * Address Firefox 3+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ button, input { line-height: normal; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. * Correct `select` style inheritance in Firefox 4+ and Opera. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. * 4. Remove inner spacing in IE 7 without affecting normal text inputs. * Known issue: inner spacing remains in IE 6. */ button, html input[type="button"], /* 1 */ input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ *overflow: visible; /* 4 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * 1. Address box sizing set to content-box in IE 8/9. * 2. Remove excess padding in IE 8/9. * 3. Remove excess padding in IE 7. * Known issue: excess padding remains in IE 6. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ *height: 13px; /* 3 */ *width: 13px; /* 3 */ } /** * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome * (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** * Remove inner padding and search cancel button in Safari 5 and Chrome * on OS X. */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Remove inner padding and border in Firefox 3+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * 1. Remove default vertical scrollbar in IE 6/7/8/9. * 2. Improve readability and alignment in all browsers. */ textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ } /* ========================================================================== Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } </style> <style type="text/css"> html, body { margin: 0; padding: 0; min-height: 100%; } body { background: #fff; font-family: "Source Sans Pro", "Helvetica Neueue", Helvetica, sans; font-weight: 300; font-size: 16px; line-height: 1.6em; } #content { width: 70%; max-width: 850px; float: left; padding: 30px 60px; border-left: 1px solid #ddd; } #sidebar { width: 25%; float: left; padding: 30px; overflow: hidden; } #nav { font-size: 130%; margin: 0 0 15px 0; } #top { display: block; position: fixed; bottom: 5px; left: 5px; font-size: .85em; text-transform: uppercase; } #footer { font-size: .75em; padding: 5px 30px; border-top: 1px solid #ddd; text-align: right; } #footer p { margin: 0 0 0 30px; display: inline-block; } h1, h2, h3, h4, h5 { font-weight: 300; } h1 { font-size: 2.5em; line-height: 1.1em; margin: 0 0 .50em 0; } h2 { font-size: 1.75em; margin: 1em 0 .50em 0; } h3 { margin: 25px 0 10px 0; } h4 { margin: 0; font-size: 105%; } a { color: #058; text-decoration: none; transition: color .3s ease-in-out; } a:hover { color: #e08524; transition: color .3s ease-in-out; } pre, code, .mono, .name { font-family: "Ubuntu Mono", "Cousine", "DejaVu Sans Mono", monospace; } .title .name { font-weight: bold; } .section-title { margin-top: 2em; } .ident { color: #900; } code { background: #f9f9f9; } pre { background: #fefefe; border: 1px solid #ddd; box-shadow: 2px 2px 0 #f3f3f3; margin: 0 30px; padding: 15px 30px; } .codehilite { margin: 0 30px 10px 30px; } .codehilite pre { margin: 0; } .codehilite .err { background: #ff3300; color: #fff !important; } table#module-list { font-size: 110%; } table#module-list tr td:first-child { padding-right: 10px; white-space: nowrap; } table#module-list td { vertical-align: top; padding-bottom: 8px; } table#module-list td p { margin: 0 0 7px 0; } .def { display: table; } .def p { display: table-cell; vertical-align: top; text-align: left; } .def p:first-child { white-space: nowrap; } .def p:last-child { width: 100%; } #index { list-style-type: none; margin: 0; padding: 0; } ul#index .class_name { /* font-size: 110%; */ font-weight: bold; } #index ul { margin: 0; } .item { margin: 0 0 15px 0; } .item .class { margin: 0 0 25px 30px; } .item .class ul.class_list { margin: 0 0 20px 0; } .item .name { background: #fafafa; margin: 0; font-weight: bold; padding: 5px 10px; border-radius: 3px; display: inline-block; min-width: 40%; } .item .name:hover { background: #f6f6f6; } .item .empty_desc { margin: 0 0 5px 0; padding: 0; } .item .inheritance { margin: 3px 0 0 30px; } .item .inherited { color: #666; } .item .desc { padding: 0 8px; margin: 0; } .item .desc p { margin: 0 0 10px 0; } .source_cont { margin: 0; padding: 0; } .source_link a { background: #ffc300; font-weight: 400; font-size: .75em; text-transform: uppercase; color: #fff; text-shadow: 1px 1px 0 #f4b700; padding: 3px 8px; border-radius: 2px; transition: background .3s ease-in-out; } .source_link a:hover { background: #FF7200; text-shadow: none; transition: background .3s ease-in-out; } .source { display: none; max-height: 600px; overflow-y: scroll; margin-bottom: 15px; } .source .codehilite { margin: 0; } .desc h1, .desc h2, .desc h3 { font-size: 100% !important; } .clear { clear: both; } @media all and (max-width: 950px) { #sidebar { width: 35%; } #content { width: 65%; } } @media all and (max-width: 650px) { #top { display: none; } #sidebar { float: none; width: auto; } #content { float: none; width: auto; padding: 30px; } #index ul { padding: 0; margin-bottom: 15px; } #index ul li { display: inline-block; margin-right: 30px; } #footer { text-align: left; } #footer p { display: block; margin: inherit; } } /*****************************/ </style> <style type="text/css"> /* ========================================================================== 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; } } </style> <script type="text/javascript"> function toggle(id, $link) { $node = document.getElementById(id); if (!$node) return; if (!$node.style.display || $node.style.display == 'none') { $node.style.display = 'block'; $link.innerHTML = 'Hide source &nequiv;'; } else { $node.style.display = 'none'; $link.innerHTML = 'Show source &equiv;'; } } </script> </head> <body> <a href="#" id="top">Top</a> <div id="container"> <div id="sidebar"> <h1>Index</h1> <ul id="index"> <li class="set"><h3><a href="#header-functions">Functions</a></h3> <ul> <li class="mono"><a href="#pythongis.vector.data.ID_generator">ID_generator</a></li> <li class="mono"><a href="#pythongis.vector.data.Name_generator">Name_generator</a></li> <li class="mono"><a href="#pythongis.vector.data.is_missing">is_missing</a></li> </ul> </li> <li class="set"><h3><a href="#header-classes">Classes</a></h3> <ul> <li class="mono"> <span class="class_name"><a href="#pythongis.vector.data.Feature">Feature</a></span> <ul> <li class="mono"><a href="#pythongis.vector.data.Feature.__init__">__init__</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.copy">copy</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.dataset">dataset</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.get_shapely">get_shapely</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.iter_points">iter_points</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.map">map</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.transform">transform</a></li> <li class="mono"><a href="#pythongis.vector.data.Feature.view">view</a></li> </ul> </li> <li class="mono"> <span class="class_name"><a href="#pythongis.vector.data.VectorData">VectorData</a></span> <ul> <li class="mono"><a href="#pythongis.vector.data.VectorData.__init__">__init__</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.add_feature">add_feature</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.add_field">add_field</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.aggregate">aggregate</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.browse">browse</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.compute">compute</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.convert_field">convert_field</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.copy">copy</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.create_spatial_index">create_spatial_index</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.describe">describe</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.drop_field">drop_field</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.drop_fields">drop_fields</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.duplicates">duplicates</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.field_type">field_type</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.field_values">field_values</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.get">get</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.group">group</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.has_geometry">has_geometry</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.histogram">histogram</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.interpolate">interpolate</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.join">join</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.keep_fields">keep_fields</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.map">map</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.moving_window">moving_window</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.quick_disjoint">quick_disjoint</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.quick_nearest">quick_nearest</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.quick_overlap">quick_overlap</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.rename_field">rename_field</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.save">save</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.select">select</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.sort">sort</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.summarystats">summarystats</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.tab">tab</a></li> <li class="mono"><a href="#pythongis.vector.data.VectorData.view">view</a></li> </ul> </li> </ul> </li> </ul> </div> <article id="content"> <header id="section-intro"> <h1 class="title"><span class="name">pythongis.vector.data</span> module</h1> <p>Module containing the data structures and interfaces for operating with vector datasets.</p> </header> <section id="section-items"> <h2 class="section-title" id="header-functions">Functions</h2> <div class="item"> <div class="name def" id="pythongis.vector.data.ID_generator"> <p>def <span class="ident">ID_generator</span>(</p><p>)</p> </div> <div class="desc"><p>Used internally for ensuring default feature IDs are unique for each VectorData instance. TODO: Maybe make private.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Name_generator"> <p>def <span class="ident">Name_generator</span>(</p><p>)</p> </div> <div class="desc"><p>Used internally for ensuring default data names are unique for each Python session. TODO: Maybe make private.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.is_missing"> <p>def <span class="ident">is_missing</span>(</p><p>val)</p> </div> <div class="source_cont"> </div> </div> <h2 class="section-title" id="header-classes">Classes</h2> <div class="item"> <p id="pythongis.vector.data.Feature" class="name">class <span class="ident">Feature</span></p> <div class="desc"><p>Class representing a vector data feature. A feature object contains attributes/properties describing the feature, equivalent to a row in a table, and a geometry describing its spatial representation. </p> <p>Supports getting and setting feature properties/attributes via indexing, e.g. feat["name"] gets or sets the feature's value for the name field. Raises an error if no such field name exists. </p> <p>Supports the <strong>geo_interface</strong> protocol, returning a GeoJSON feature object dictionary. </p> <p>TODO: - Change the geometry property, represented as a Geometry class instead of a pure GeoJSON dictinoary. - Move all geometry calculations such as length, area, etc., to the geometry class. </p> <p>Attributes: row: A list of values describing the feature properties as listed in the parent dataset's fields. geometry: A GeoJSON dictionary describing the feature geometry, or None for features without geometry. bbox: The bounding box of the feature, as a list of [xmin,ymin,xmax,ymax]. _cached_bbox: A cached version of the feature's bounding box, to avoid having to repeat the calculation each time. All methods that change the feature's geometry should reset this cache to None in order to recalculate the bbox. In case of errors, the user may reset this themselves by setting it to None. </p> <pre><code> TODO: - Make sure all methods that alter the geometry indeed does reset the cache. length: Returns the cartesian length of the feature geometry, expressed in units of the coordinate system. See Shapely docs for more. geodetic_length: Returns the geodetic length of the feature geometry, expressed as km distance as calculated by the vincenty algorithm. area: Returns the cartesian area of the feature geometry, expressed in units of the coordinate system. See Shapely docs for more. id: The feature's ID in the parent vector dataset. _data: The parent vector dataset to which the feature belongs. </code></pre></div> <div class="source_cont"> </div> <div class="class"> <h3>Ancestors (in MRO)</h3> <ul class="class_list"> <li><a href="#pythongis.vector.data.Feature">Feature</a></li> </ul> <h3>Methods</h3> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.__init__"> <p>def <span class="ident">__init__</span>(</p><p>self, data, row=None, geometry=None, id=None)</p> </div> <div class="desc"><p>Creates new feature class. Mostly used internally by the VectorData class. The user should instead use the VectorData's add_feature() method. </p> <p>Args: data: The parent vector dataset to which the feature belongs. Necessary in order to access the feature row's field names. row (optional): A list or dictionary of values describing the feature properties as listed in the parent dataset's fields. Lists must be of the same sequence and length as the dataset fields. Dictionaries sets only the specified fields, the rest defaulting to None. geometry (optional): A GeoJSON dictionary describing the feature geometry, or None. id (optional): If given, manually sets the feature's ID in the parent vector dataset. Otherwise, automatically assigned.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.copy"> <p>def <span class="ident">copy</span>(</p><p>self)</p> </div> <div class="desc"><p>Copies the feature and returns a new instance.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.dataset"> <p>def <span class="ident">dataset</span>(</p><p>self)</p> </div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.get_shapely"> <p>def <span class="ident">get_shapely</span>(</p><p>self)</p> </div> <div class="desc"><p>Creates and returns the shapely object of the feature geometry. </p> <p>NOTE: - Repeated calling of this method can cause considerable overhead. - Will be depreceated once all geometry operations are outsourced to a Geometry class.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.iter_points"> <p>def <span class="ident">iter_points</span>(</p><p>self)</p> </div> <div class="desc"><p>Yields every point in the geometry as a flat generator, useful for quick inspecting of dimensions so don't have to worry about nested coordinates and geometry types. For polygons this includes the coordinates of both exterior and holes.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.map"> <p>def <span class="ident">map</span>(</p><p>self, width=None, height=None, bbox=None, title=&#39;&#39;, background=None, **styleoptions)</p> </div> <div class="desc"><p>Shortcut for easily creating a Map instance containing this feature as a layer.</p> <p>Args: width/height (optional): Desired width/height of the map. This can be changed again later. bbox (optional): If given, only renders the given bbox, specified as (xmin,ymin,xmax,ymax). title (optional): Title to be shown on the map. background (optional): Background color of the map. **styleoptions (optional): How to style the feature geometry, as documented in "renderer.VectorLayer".</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.transform"> <p>def <span class="ident">transform</span>(</p><p>self, func)</p> </div> <div class="desc"><p>Transforms the feature geometry in place. Func is a function that takes a flat list of coordinates, does something, and returns them. For points, the function is applied to a list containing a single coordinate, separately for each multipart. For linestrings, the function is applied to each multipart. For polygons, the function is applied to the exterior, and to each hole if any.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.Feature.view"> <p>def <span class="ident">view</span>(</p><p>self, bbox=None, title=&#39;&#39;, background=None, **styleoptions)</p> </div> <div class="desc"><p>Opens a Tkinter window for viewing and interacting with the feature on a map.</p> <p>Args are same as for "map()".</p></div> <div class="source_cont"> </div> </div> </div> </div> <div class="item"> <p id="pythongis.vector.data.VectorData" class="name">class <span class="ident">VectorData</span></p> <div class="desc"><p>Class representing a vector dataset. </p> <p>Calling len() returns the number of features in the dataset, and iterating over the dataset loops through the dataset features one by one. </p> <p>Supports getting and setting feature instances via indexing, e.g. feat[13] gets or sets the feature located at the given index position. </p> <p>Supports the <strong>geo_interface</strong> protocol, returning a GeoJSON feature collection object dictionary. </p> <p>TODO: - Currently, loads all features into memory. Maybe outsource to format-specific classes that iterate over each feature without loading into memory (or allow via streaming option or a separate Streaming class). </p> <p>Attributes: filepath: name: type: fields: features: crs: bbox: </p> <pre><code>manage: Access all methods from the manager module, passing self as first arg. analyze: Access all methods from the analyzer module, passing self as first arg. convert: Access all methods from the converter module, passing self as first arg. </code></pre></div> <div class="source_cont"> </div> <div class="class"> <h3>Ancestors (in MRO)</h3> <ul class="class_list"> <li><a href="#pythongis.vector.data.VectorData">VectorData</a></li> </ul> <h3>Methods</h3> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.__init__"> <p>def <span class="ident">__init__</span>(</p><p>self, filepath=None, type=None, name=None, fields=None, rows=None, geometries=None, features=None, crs=None, **kwargs)</p> </div> <div class="desc"><p>A vector dataset can be created in several ways. </p> <p>To create an empty dataset, simply initiate the class with no args. A list of field names can be set with the fields arg, or set after creation. </p> <p>To load from a file, specify the filepath argument. The "select" option can be used to only populate the data with a subsample of features instead of the entire dataset. When loading non-spatial file formats, the "x/yfield" and "geokey" args can be set to calculate the geometry based on the attributes of each row. Optional **kwargs can be used to pass on format-specific loading options. Supported reading fileformats include: - fdsfds...</p> <p>TODO: - Ensure that select applies to all file formats, not just the non-spatial ones. </p> <p>To initiate from a list of existing Feature instances, pass in to the features arg. Alternatively, to load a dataset from separate lists of row values and geometry GeoJSON dictionaries, pass in the rows and geometries args as lists of equal length. </p> <p>Optional metadata can also be specified with args such as name, type, and crs. </p> <p>Args: fields: List of field names. </p> <pre><code>rows: List of row lists to load from, of equal length and sequence as geometries. geometries: List of GeoJSON dictionaries to load from, of equal length and sequence as rows. features: List of Feature instances to load from. filepath: Filepath of the dataset to load. name (optional): Gives the dataset a name, which is used mostly for esthetic reasons and identification in visual lists. TODO: Make this more meaningful, so that various functions can make use of the names to reference specific datasets. type (optional): Geometry type of the dataset. If set, will make the features ensure that all geometries are of the specified type. Otherwise, type enforcement will be based on first geometry found. crs (optional): The coordinate system specified as a Proj4 string, defaults to unprojected WGS84. TODO: Currently holds no meaning, makes no difference for any methods or functions. Maybe add on-the-fly reprojection? select (optional): Function that takes a fieldname-value dictionary mapping and returns True for features that should be loaded. x/yfield (optional): Specifies the field name containing the x/y coordinates of each feature, used for creating the feature geometries of non-spatial fileformat point data. geokey (optional): Function for creating more advanced types of geometries of non-spatial fileformats. The function takes a fieldname-value dictionary mapping and returns a GeoJSON dictionary, or None for null-geometries. **kwargs: File-format specific loading options. See `vector.loader` for details. </code></pre></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.add_feature"> <p>def <span class="ident">add_feature</span>(</p><p>self, row=None, geometry=None)</p> </div> <div class="desc"><p>Adds and returns a new feature, given a row list or dict, and a geometry GeoJSON dictionary. If neither are set, populates row with None values, and empty geometry.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.add_field"> <p>def <span class="ident">add_field</span>(</p><p>self, field, index=None)</p> </div> <div class="desc"><p>Adds a new field by the name of 'field', optionally at the specified index position. All existing feature rows are updated accordingly.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.aggregate"> <p>def <span class="ident">aggregate</span>(</p><p>self, key, geomfunc=None, fieldmapping=[])</p> </div> <div class="desc"><p>Aggregate values and geometries within key groupings.</p> <p>Arguments: key: List of field names or a function to group by. geomfunc (optional): Specifies how to aggregate geometries, either intersection, union, difference, or a function that takes all geometries to aggregate. If not set (default), does not aggregate geometries, returning a non-spatial table with only null-geometries. fieldmapping: Specifies a set of aggregation rules used to calculate the new value for each group. Specified as a list of (outfield,valuefield,stat) tuples, where outfield is the field name of a new or existing field to write, valuefield is the field name or function that retrieves the value to calculate statistics on, and stat is the name of the statistic to calculate or a function that takes the list of values from the group as defined by valuefield. Valid stat values include: - fdsf...</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.browse"> <p>def <span class="ident">browse</span>(</p><p>self, limit=None)</p> </div> <div class="desc"><p>Opens a Tkinter window for viewing and interacting with the rows contained in this dataset.</p> <p>Args: limit (optional): Limits the number of rows to be displayed, in case of very large datasets.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.compute"> <p>def <span class="ident">compute</span>(</p><p>self, field, value, by=None, stat=None)</p> </div> <div class="desc"><p>Loops through all features and sets the row field to the given value. If the value is a function, it will take each Feature object as input and uses it to calculate and return a new value. If the field name does not already exist, one will be created. If by and stat is given, 'by' will be used to group features, and for each group, 'stat' will be used to calculate a statistic and write the results to the members of the group. </p> <p>Arguments: field: Name of the field to compute. Existing name will overwrite all values, new name will create new field. value: Any value or object to be written to the field, or a callable that expects a Feature as its input and outputs the value to write. by: A field name by which to group, or a callable that expects a Feature as its input and outputs the group-by value. stat: The name of a summary statistic to calculate and write for each by-group, or a callable that expects a list of Feature instances as input and returns the aggregated value to write. Valid stat values include: - fdsf...</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.convert_field"> <p>def <span class="ident">convert_field</span>(</p><p>self, field, valfunc)</p> </div> <div class="desc"><p>Applies the given valfunc function to force convert all values in a field.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.copy"> <p>def <span class="ident">copy</span>(</p><p>self)</p> </div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.create_spatial_index"> <p>def <span class="ident">create_spatial_index</span>(</p><p>self, type=None, backend=None, **kwargs)</p> </div> <div class="desc"><p>Creates spatial index to allow quick overlap search methods. If features are changed, added, or dropped, the index must be created again.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.describe"> <p>def <span class="ident">describe</span>(</p><p>self)</p> </div> <div class="desc"><p>Prints a description of the dataset, such as geometry type, length, bbox, and lists each field along with their name, type, valid, and missing.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.drop_field"> <p>def <span class="ident">drop_field</span>(</p><p>self, field)</p> </div> <div class="desc"><p>Drops the specified field, changing the dataset in-place.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.drop_fields"> <p>def <span class="ident">drop_fields</span>(</p><p>self, fields)</p> </div> <div class="desc"><p>Drops all of the specified fields, changing the dataset in-place.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.duplicates"> <p>def <span class="ident">duplicates</span>(</p><p>self, subkey=None, fieldmapping=[])</p> </div> <div class="desc"><p>Removes duplicate geometries by grouping and aggregating their values.</p> <p>Arguments: subkey (optional): If specified, for each set of duplicate geometries will perform separate aggregations for each subgroup defined by subkey. Geometry duplicates will continue to exist if they have more than one subkey grouping. fieldmapping: Defines the value aggregations. See aggregate().</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.field_type"> <p>def <span class="ident">field_type</span>(</p><p>self, field)</p> </div> <div class="desc"><p>Determines and returns field type of field based on its values (ignoring missing values). For now, only detects int, float, and text.</p> <p>TODO: also detect other types eg datetime, etc.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.field_values"> <p>def <span class="ident">field_values</span>(</p><p>self, field)</p> </div> <div class="desc"><p>Returns sorted list of all the unique values in this field.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.get"> <p>def <span class="ident">get</span>(</p><p>self, func)</p> </div> <div class="desc"><p>Iterates over features that meet filter conditions. Func takes a Feature instance as input and yield only those where it returns True.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.group"> <p>def <span class="ident">group</span>(</p><p>self, key)</p> </div> <div class="desc"><p>Iterates over keyvalue-group pairs based on key</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.has_geometry"> <p>def <span class="ident">has_geometry</span>(</p><p>self)</p> </div> <div class="desc"><p>Returns True if at least one feature has non-null geometry.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.histogram"> <p>def <span class="ident">histogram</span>(</p><p>self, field, width=None, height=None, bins=10)</p> </div> <div class="desc"><p>Renders the value distribution of a given field in a histogram plot, returned as a PyAgg Canvas of size width/height. This canvas can be used to call "save()" or "view()". Default histogram bins is 10.</p> <p>TODO: - Should it return Canvas, or just straight view() it?</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.interpolate"> <p>def <span class="ident">interpolate</span>(</p><p>self, step)</p> </div> <div class="desc"><p>Interpolates missing values between known values.</p> <p>NOT YET IMPLEMENTED.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.join"> <p>def <span class="ident">join</span>(</p><p>self, other, key, fieldmapping=[], collapse=False, keepall=True)</p> </div> <div class="desc"><p>Matches and joins the features in this dataset with the features in another dataset. Returns a new joined dataset.</p> <p>Note: if the other dataset has fields with the same name as the main dataset, those will not be joined, keeping only the ones in the main dataset. </p> <p>Arguments: other: The other VectorData dataset to join to this one. key: Can be a single fieldname, multiple fieldnames, or function that returns the link for both tables.</p> <pre><code> TODO: - Maybe introduce separate lkey and rkey args... collapse (optional): If True, collapses and aggregates all matching features in the other dataset (default), otherwise adds a new row for each matching pair. fieldmapping (optional): If collapse is True, this determines the aggregation rules. See aggregate(). keepall (optional): If True, keeps all features in the main dataset regardless (default), otherwise only keeps the ones that match. </code></pre></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.keep_fields"> <p>def <span class="ident">keep_fields</span>(</p><p>self, fields)</p> </div> <div class="desc"><p>Keeps only the fields specified, changing the dataset in-place.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.map"> <p>def <span class="ident">map</span>(</p><p>self, width=None, height=None, bbox=None, title=&#39;&#39;, background=None, crs=None, **styleoptions)</p> </div> <div class="desc"><p>Shortcut for easily creating a Map instance containing this dataset as a layer.</p> <p>Args: width/height (optional): Desired width/height of the map. This can be changed again later. bbox (optional): If given, only renders the given bbox, specified as (xmin,ymin,xmax,ymax). title (optional): Title to be shown on the map. background (optional): Background color of the map. **styleoptions (optional): How to style the feature geometry, as documented in "renderer.VectorLayer".</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.moving_window"> <p>def <span class="ident">moving_window</span>(</p><p>self, n, fieldmapping, groupby=None)</p> </div> <div class="desc"><p>Loops through the features in the dataset, and calculates one or more new values based on aggregate statistics of a moving window of previously visited rows.</p> <p>Arguments: n: Size of the moving window specified as number of rows. fieldmapping: Specifies a set of aggregation rules used to calculate the new values based on the moving window. Specified as a list of (outfield,valuefield,stat) tuples, where outfield is the field name of a new or existing field to write, valuefield is the field name or function that retrieves the value to calculate statistics on, and stat is the name of the statistic to calculate or a function that takes the list of values from the moving window as defined by valuefield. Valid stat values include: - fdsf... groupby (optional): If specified, the moving window will run separately for each group of features as defined by the groupby field name or grouping function.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.quick_disjoint"> <p>def <span class="ident">quick_disjoint</span>(</p><p>self, bbox)</p> </div> <div class="desc"><p>Quickly get features whose bbox do -not- overlap the specified bbox via the spatial index.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.quick_nearest"> <p>def <span class="ident">quick_nearest</span>(</p><p>self, bbox, n=None, radius=None)</p> </div> <div class="desc"><p>Quickly get n features whose bbox are nearest the specified bbox via the spatial index.</p> <p>TODO: radius option not yet implemented.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.quick_overlap"> <p>def <span class="ident">quick_overlap</span>(</p><p>self, bbox)</p> </div> <div class="desc"><p>Quickly get features whose bbox overlap the specified bbox via the spatial index.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.rename_field"> <p>def <span class="ident">rename_field</span>(</p><p>self, oldname, newname)</p> </div> <div class="desc"><p>Changes the name of a field from oldname to newname.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.save"> <p>def <span class="ident">save</span>(</p><p>self, savepath, **kwargs)</p> </div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.select"> <p>def <span class="ident">select</span>(</p><p>self, func)</p> </div> <div class="desc"><p>Returns new filtered VectorData instance. Func takes a Feature instance as input and keeps only those where it returns True.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.sort"> <p>def <span class="ident">sort</span>(</p><p>self, key, reverse=False)</p> </div> <div class="desc"><p>Sorts the feature order in-place using a key function and optional reverse flag.</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.summarystats"> <p>def <span class="ident">summarystats</span>(</p><p>self, *fields)</p> </div> <div class="desc"><p>Prints summary statistics for all fields. If specified, only calculates for the fields listed in *fields.</p> <p>TODO: maybe also return a dict?</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.tab"> <p>def <span class="ident">tab</span>(</p><p>self, field)</p> </div> <div class="desc"><p>Prints a frequency count of the unique values for a single field.</p> <p>TODO: split into multiple methods, eg field_stats vs field_values/frequencies TODO: standardize table string formatting, eg as a vectordata.stringformat() method, and simply populate a stats vectordata table and call its method TODO: sort freq table by percentages TODO: fix unicode print error TODO: maybe also return a dict?</p></div> <div class="source_cont"> </div> </div> <div class="item"> <div class="name def" id="pythongis.vector.data.VectorData.view"> <p>def <span class="ident">view</span>(</p><p>self, width=None, height=None, bbox=None, title=&#39;&#39;, background=None, crs=None, **styleoptions)</p> </div> <div class="desc"><p>Opens a Tkinter window for viewing and interacting with the dataset on a map.</p> <p>Args are same as for "map()".</p></div> <div class="source_cont"> </div> </div> </div> </div> </section> </article> <div class="clear"> </div> <footer id="footer"> <p> Documentation generated by <a href="https://github.com/BurntSushi/pdoc">pdoc 0.3.2</a> </p> <p>pdoc is in the public domain with the <a href="http://unlicense.org">UNLICENSE</a></p> <p>Design by <a href="http://nadh.in">Kailash Nadh</a></p> </footer> </div> </body> </html>
clean/Linux-x86_64-4.12.0-2.0.8/released/8.13.2/pi-agm/1.2.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>pi-agm: 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.13.2 / pi-agm - 1.2.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> pi-agm <small> 1.2.0 <span class="label label-info">Not compatible</span> </small> </h1> <p><em><script>document.write(moment("2021-11-05 09:57:39 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2021-11-05 09:57:39 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-gmp 3 Virtual package relying on a GMP lib system installation coq 8.13.2 Formal proof management system num 1.4 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.12.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.12.0 Official release 4.12.0 ocaml-config 2 OCaml Switch Configuration ocaml-options-vanilla 1 Ensure that OCaml is compiled with no special options enabled ocamlfind 1.9.1 A library manager for OCaml zarith 1.12 Implements arithmetic and logical operations over arbitrary-precision integers # opam file: opam-version: &quot;2.0&quot; name: &quot;coq-pi-agm&quot; version: &quot;1.2.0&quot; maintainer: &quot;yves.bertot@inria.fr&quot; homepage: &quot;http://www-sop.inria.fr/members/Yves.Bertot/&quot; bug-reports: &quot;yves.bertot@inria.fr&quot; license: &quot;CeCILL-B&quot; build: [[&quot;coq_makefile&quot; &quot;-f&quot; &quot;_CoqProject&quot; &quot;-o&quot; &quot;Makefile&quot; ] [ make &quot;-j&quot; &quot;%{jobs}%&quot; ]] install: [ make &quot;install&quot; &quot;DEST=&#39;%{lib}%/coq/user-contrib/pi_agm&#39;&quot; ] remove: [ &quot;sh&quot; &quot;-c&quot; &quot;rm -rf &#39;%{lib}%/coq/user-contrib/pi_agm&#39;&quot; ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.6&quot; &amp; &lt; &quot;8.7~&quot;} &quot;coq-coquelicot&quot; {&gt;= &quot;3&quot; &amp; &lt; &quot;4~&quot;} &quot;coq-interval&quot; {&gt;= &quot;3&quot;} ] tags: [ &quot;keyword:real analysis&quot; &quot;keyword:pi&quot; &quot;category:Mathematics/Real Calculus and Topology&quot; ] authors: [ &quot;Yves Bertot &lt;yves.bertot@inria.fr&gt;&quot; ] synopsis: &quot;Computing thousands or millions of digits of PI with arithmetic-geometric means&quot; description: &quot;&quot;&quot; This is a proof of correctness for two algorithms to compute PI to high precision using arithmetic-geometric means. A first file contains the calculus-based proofs for an abstract view of the algorithm, where all numbers are real numbers. A second file describes how to approximate all computations using large integers. Other files describe the second algorithm which is close to the one used in mpfr, for instance. The whole development can be used to produce mathematically proved and formally verified approximations of PI.&quot;&quot;&quot; url { src: &quot;https://github.com/ybertot/pi-agm/archive/v1.1.9.tar.gz&quot; checksum: &quot;md5=59bb22e2081c7f5dd200a4b35726acfe&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-pi-agm.1.2.0 coq.8.13.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.13.2). The following dependencies couldn&#39;t be met: - coq-pi-agm -&gt; coq &lt; 8.7~ -&gt; ocaml &lt; 4.06.0 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-pi-agm.1.2.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
_site/lrthw/2016/06/28/lrhw-22.html
Ljzn/ljzn.github.io
<!DOCTYPE html> <html> <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"> <link rel="shortcut icon" href="/static/img/ruby.ico" /> <title>笨方法学Ruby第二十二天 - LJZN</title> <meta name="author" content="LJZN" /> <meta name="description" content="笨方法学Ruby第二十二天" /> <meta name="keywords" content="笨方法学Ruby第二十二天, LJZN, LRTHW" /> <link rel="alternate" type="application/rss+xml" title="RSS" href="/feed.xml"> <!-- syntax highlighting CSS --> <link rel="stylesheet" href="/static/css/syntax.css"> <!-- Bootstrap core CSS --> <link href="/static/css/bootstrap.min.css" rel="stylesheet"> <!-- Custom CSS --> <link rel="stylesheet" href="/static/css/main.css"> </head> <body> <div class="container"> <div class="col-sm-3"> <a href="/"><img id="about" src="/static/img/ruby.png" height="75px" width="75px" /></a> <h1 class="author-name">LJZN</h1> <div id="about"> 每天更新Rails练习项目到Github~ </div> <hr size=2> &raquo; <a href="/">Home</a> <br /> &raquo; <a href="/category/original">Category</a> <br /> &raquo; <a class="about" href="/about/">About Me</a><br /> &raquo; <a class="about" href="https://github.com/ljzn">Github</a><br /> </div> <div class="col-sm-8 col-offset-1"> <h1>笨方法学Ruby第二十二天</h1> <span class="time">28 Jun 2016</span> <span class="categories"> &raquo; <a href="/category/LRTHW">LRTHW</a> </span> <div class="content"> <div class="post"> <figure class="highlight"><pre><code class="language-ruby" data-lang="ruby"><span class="nb">puts</span> <span class="s2">"复习之前所学的代码。"</span></code></pre></figure> </div> </div> <div class="panel-body"> <h4>Related Posts</h4> <ul> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/10/lrhw-50.html">50sinatra建造网站</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/09/lrhw-49.html">49创建句子</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/08/lrhw-48.html">48进阶用户输入</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/08/lrhw-47.html">47自动化测试</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/06/lrhw-46.html">46项目骨架</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> <li class="relatedPost"> <a href="https://ljzn.github.io/lrthw/2016/07/05/lrhw-45.html">45制作一个游戏</a> (Categories: <a href="/category/LRTHW">LRTHW</a>) </li> </ul> </div> <div class="PageNavigation"> <a class="prev" href="/lrthw/2016/06/28/lrhw-21.html">&laquo; 笨方法学Ruby第二十一天</a> <a class="next" href="/lrthw/2016/06/28/lrhw-23.html">笨方法学Ruby第二十三天 &raquo;</a> </div> <div class="disqus-comments"> <div id="disqus_thread"></div> <script> (function() { // DON'T EDIT BELOW THIS LINE var d = document, s = d.createElement('script'); s.src = '//ljzn.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript> </div> <footer> &copy; LJZN - <a href="https://github.com/ljzn">https://github.com/ljzn</a> - Powered by Jekyll. </footer> </div><!-- end /.col-sm-8 --> </div><!-- end /.container --> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="//cdn.bootcss.com/jquery/1.11.0/jquery.min.js"></script> <script src="/static/js/bootstrap.min.js"></script> <script id="dsq-count-scr" src="//ljzn.disqus.com/count.js" async></script> </body> </html>
public/Windows 10 x64 (18362.329)/_FAULT_INFORMATION_ARM64_TYPE.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18362.329)</h4><br> <h2>_FAULT_INFORMATION_ARM64_TYPE</h2> <font face="arial"> UnsupportedUpstreamTransaction = 0n0<br> AddressSizeFault = 0n1<br> TlbMatchConflict = 0n2<br> ExternalFault = 0n3<br> PermissionFault = 0n4<br> AccessFlagFault = 0n5<br> TranslationFault = 0n6<br> MaxFaultType = 0n7<br> </font></body></html>
doc/ddm/IntegrationTests/package-summary.html
JordiCorbilla/DDM
<!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_05) on Tue Jun 10 20:54:55 BST 2014 --> <title>ddm.IntegrationTests</title> <meta name="date" content="2014-06-10"> <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="ddm.IntegrationTests"; } //--> </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 class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../deprecated-list.html">Deprecated</a></li> <li><a href="../../index-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="../../ddm/factory/classifiers/package-summary.html">Prev Package</a></li> <li><a href="../../ddm/jade/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../index.html?ddm/IntegrationTests/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;ddm.IntegrationTests</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../ddm/IntegrationTests/TestClassifierFactory.html" title="class in ddm.IntegrationTests">TestClassifierFactory</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../ddm/IntegrationTests/TestConfiguration.html" title="class in ddm.IntegrationTests">TestConfiguration</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../ddm/IntegrationTests/TestDatasetManager.html" title="class in ddm.IntegrationTests">TestDatasetManager</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../ddm/IntegrationTests/TestDecisionMaker.html" title="class in ddm.IntegrationTests">TestDecisionMaker</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../deprecated-list.html">Deprecated</a></li> <li><a href="../../index-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="../../ddm/factory/classifiers/package-summary.html">Prev Package</a></li> <li><a href="../../ddm/jade/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../index.html?ddm/IntegrationTests/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
woof.html
stevekrouse/rose
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Rose</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous"> <link rel="stylesheet" href="./vendor/codemirror/codemirror.css"> <script type="text/javascript" src="./vendor/codemirror/codemirror.js"></script> <script type="text/javascript" src="./vendor/codemirror/javascript.js"></script> <script type="text/javascript" src="./vendor/codemirror/closebrackets.js"></script> <script type="text/javascript" src="./vendor/codemirror/javascript-hint.js"></script> <script type="text/javascript" src="./vendor/codemirror/javascript-lint.js"></script> <script type="text/javascript" src="./vendor/codemirror/matchbrackets.js"></script> <script type="text/javascript" src="./vendor/codemirror/search.js"></script> <script type="text/javascript" src="./vendor/codemirror/searchcursor.js"></script> <script type="text/javascript" src="./vendor/codemirror/show-hint.js"></script> <script type="text/javascript" src="./vendor/codemirror/comment.js"></script> <script type="text/javascript" src="./vendor/codemirror/sublime.js"></script> <script type="text/javascript" src="./vendor/codemirror/foldcode.js"></script> <link rel="stylesheet" href="./vendor/codemirror/foldgutter.css" /> <script src="./vendor/codemirror/foldcode.js"></script> <script src="./vendor/codemirror/foldgutter.js"></script> <script src="./vendor/codemirror/brace-fold.js"></script> <script src="./vendor/codemirror/comment-fold.js"></script> <link rel="stylesheet" href="./vendor/codemirror/dialog.css"> <link rel="stylesheet" href="./vendor/codemirror/show-hint.css"> <script src="./vendor/codemirror/dialog.js"></script> <link rel="stylesheet" href="./vendor/codemirror/lint.css"> <script src="./vendor/codemirror/jshint.min.js"></script> <script src="./vendor/codemirror/lint.js"></script> <style> html { height: 100%; } body { display: flex; font-size: 16px; height: 100%; } #preview { border: none; outline: none; width: 50%; height: 100%; } </style> </head> <body> <div id="app"></div> <iframe id="preview"></iframe> <script src="dist/woof-bundle.js"></script> </body> </html>
index.html
KillerKodersKode/captain_slayer
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Phaser - ES6 - Webpack</title> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta http-equiv="cleartype" content="on"> <link rel="stylesheet" type="text/css" href="fonts.css"> <style> html, body { margin: 0; padding: 0; } </style> </head> <body> <div id="content"></div> <script src="dist/vendor.bundle.js"></script> <script src="dist/bundle.js"></script> </body> </html>
assets/css/landing_page/landing_page10.css
akashbachhania/jeet99
@import 'https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz'; /* .bg-landing{ background: url('../../images/bg/518079-background-hd.jpg') fixed; background-position: 50% 50%; background-attachment: fixed; background-color: rgb(0, 0, 0); }*/ .icon_part { width: 30px; position: relative; top: 0px; padding-right:6px; padding-bottom:6px; } .mb1-blog-img{ float: left; margin-right: 5px; } .remove_part { /* background: url('../../images/icon/cancel_2-icon.png') no-repeat;*/ width: 20px; height: 20px; position: absolute; right: 2px; top: 6px; cursor: pointer; display: none; z-index: 99; color:#fff; } .remove_padding { padding: 0px; } .padding_left { padding-left: 0px; } .header_new_style .tt a{ color: #fff; } .liner_landing { display: block; width: 100%; border-bottom: 1px solid #080808; box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); -webkit-box-shadow: 0 1px 0 rgba(34, 34, 34, 0.8); margin: -1px 0 15px; } .jp-video-270p{ width: 100%; } .jp-type-playlist img{ } .header_new_style{ margin: 8px 0; overflow: hidden; } .jp-type-playlist .jp-jplayer{ width: 100% !important; text-align: center; } .header_new_style .panel-heading .panel-title a { text-transform: uppercase; color: #eee; } .header_new_style .panel-group .panel, .header_new_style .panel-heading { border-radius: 0px; } .panel-default > .panel-heading{ background: #fb6060; } div.jp-type-playlist div.jp-playlist a{ color: #888; } div.jp-type-playlist div.jp-playlist a.jp-playlist-current, div.jp-type-playlist div.jp-playlist a:hover{ color: #3b5998; } .image_fix_value { width: 200px; height: 200px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; } .image_fix_value_video{ width: 300px; height: 300px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; margin: 0px auto; } .image_fix_value_event{ width: 200px; height: 200px; background-position: 50% 25% !important; background-size: cover !important; transition-duration: 500ms; transition-property: width, height; cursor: pointer; margin: 0px auto; } figure.effect-bubba:hover .image_fix_value_event{ opacity: 0.4 } .text-justify a{ margin: 0px 7px; } .text-justify{ text-align: center; margin-top: 7px; margin-bottom: 7px; } .header_new_style .wp_content_list{ margin-bottom: 10px; margin-top: 2px; border-bottom: solid 1px #967219; color: #ccc; padding-bottom: 6px; } .wp_content_list{ overflow: hidden; } .comment_list a img{ width: 100%; } .list_member{ margin: 5px 0; padding: 0px; } .bg-lg-ct{ background: none; } .background_landing{ } .header_new_style h2.text_caplock{ margin-left: 0px; border-bottom: 1px solid #ffb976; display: inline-block; margin-bottom: 0px; } .header_new_style{ background: rgba(0, 0, 0, 0.78); border-radius: 6px; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.04); -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15), 0 1px 0 rgba(255, 255, 255, .04); -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.04); padding: 0px 10px 10px 10px; } .BorNone { border-bottom:none !important; } /* 31 August */ .ProfilePic { background:whitesmoke; height:176px; width:176px; border:6px solid #fff; box-shadow:0px 6px 16px #000; border-radius:50%; } .ProfileGrid { margin-top:-156px; } .ProfileGrid h1 { font-size:36px; margin:16px 0px 6px 0px; text-align:center; font-weight:bold; color:#fff; } .ProfileGrid span { font-size:18px; margin:70px 0px 6px 0px; text-align:center; } .ProfileGrid p { font-size:18px; margin:0px 0px 0px 0px; text-align:center; color:#fff; } .profile-landing2 { width: 100%; position: absolute; bottom: 0px; left: 0px; height: 164px; padding-top: 7px; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='); } .sc-pro-img { height: 500px!important; } .PhotoPic img { border: 3px solid #fb6060; } h2.ProfileHed { font-weight: 400; font-size:26px; font-family: sans-serif; color:#ffb976 !important; font-family: 'Yanone Kaffeesatz', sans-serif; } h2.ProfileHed a { color:#ffb976 !important; text-decoration:none; } h2.ProfileHed a:hover { color:#fb6060 !important; } .StarBack { background: hsla(39, 95%, 68%, 0.33); padding: 6px; border-radius: 4px; } .BtnNew { background:#ffb976 !important; color:#000 !important; } .ProfileSocial { margin: 0px auto; text-align: center; width:169px; margin-bottom:66px; } .ProfileSocial ul { padding:0; margin:16px 0px 0px 0px; list-style:none; } .ProfileSocial ul li { float: left; } .ProfileSocial ul li a.fa { display: inline-block; width: 32px; height: 32px; line-height: 30px; color: #fff; border: 2px solid #b5b5b5; border-radius: 100%; margin: 0 10px 0 0; font-size: 14px; overflow: hidden; -webkit-transition-duration: 0.5s; transition-duration: 0.5s; -webkit-transition-property: color, background-color; transition-property: color, background-color; } .ProfileSocial a.fa.fb:hover { color: #fff; background: #3b5999; border: solid 2px #3b5999; } .ProfileSocial a.fa.tw:hover { color: #fff; background: #55acef; border: solid 2px #55acef; } .ProfileSocial a.fa.gp:hover { color: #fff; background: #de4b39; border: solid 2px #de4b39; } .ProfileSocial a.fa.in:hover { color: #fff; background: #156ea2; border: solid 2px #156ea2; } .ProfileSocial a.fa.pin:hover { color: #fff; background: #cf2833; border: solid 2px #cf2833; } .ListData strong { color:#fb6060; font-weight:400; font-size:18px; margin:8px 0px 0px 6px; display:block; } .ListData p { color:#fff; font-weight:400; font-size:16px; margin:-24px 0px 0px 0px; } .ListData span { color:#fff !important; font-weight:400; font-size:16px; margin:-24px 0px 0px 0px; } .carousel-info img { border: 1px solid #ffb976; height: 56px; padding: 3px; width: 56px; } .carousel-info { overflow: hidden; margin-bottom:1em; border-bottom:1px solid #5a5a5a; padding-bottom:12px; } .carousel-info:last-child { border-bottom:none !important; } .carousel-info img { margin-right: 15px; } .carousel-info span { display: block; } .testimonials-name{ color: #e6400c; font-size: 16px; font-weight: 300; margin: 10px 0px 0px 0px; line-height:20px; text-align:left; } .testimonials-name a { color: #ea4335; } .testimonials-name a:hover { text-decoration:none; color:#e00000; } .testimonials-post { color: #fff; font-size: 12px; font-family:Arial, Helvetica, sans-serif; } @media (min-width: 767px){ .profile-landing2 { width: 100%; position: absolute; bottom: 0px; left: 0px; height: 164px; padding-top: 7px; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='); } } @media screen and (max-width: 590px){ .sc-pro-img { height: 400px!important; } .profile-landing2 { width: 100%; position: absolute; bottom: 0px; left: 0px; height: 164px; padding-top: 7px; background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjkwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA='); } }
src/Viteloge/CoreBundle/Resources/descriptions/27354.html
donaldinou/frontend
<div class="commune_descr limited"> <p> Iville est un village localisé dans le département de l'Eure en Haute-Normandie. Elle comptait 452 habitants en 2008.</p> <p>À proximité de Iville sont positionnées géographiquement les villes de <a href="{{VLROOT}}/immobilier/fouqueville_27261/">Fouqueville</a> située à 4&nbsp;km, 409 habitants, <a href="{{VLROOT}}/immobilier/marbeuf_27389/">Marbeuf</a> à 4&nbsp;km, 340 habitants, <a href="{{VLROOT}}/immobilier/epegard_27219/">Épégard</a> localisée à 3&nbsp;km, 415 habitants, <a href="{{VLROOT}}/immobilier/crosville-la-vieille_27192/">Crosville-la-Vieille</a> située à 2&nbsp;km, 555 habitants, <a href="{{VLROOT}}/immobilier/crestot_27185/">Crestot</a> située à 4&nbsp;km, 368 habitants, <a href="{{VLROOT}}/immobilier/amfreville-la-campagne_27011/">Amfreville-la-Campagne</a> située à 4&nbsp;km, 896 habitants, entre autres. De plus, Iville est située à seulement 26&nbsp;km de <a href="{{VLROOT}}/immobilier/saint-pierre_97416/">Saint-Pierre</a>.</p> <p>Si vous pensez venir habiter à Iville, vous pourrez facilement trouver une maison à acheter. </p> <p>Le parc de logements, à Iville, se décomposait en 2011 en quatre appartements et 182 maisons soit un marché plutôt équilibré.</p> </div>
index.html
twxs/dkapstory.js
<!doctype html> <html> <head> <title>D-Kapstory</title> <meta charset="utf-8"> <script src="./vendor/three.js/three.min.js"></script> <script src="./js/dk.js"></script> <link href="css/main.css" rel="stylesheet" /> </head> <body> <div id="container" width="512" height="512"></div> <script type="text/javascript"> /*global THREE getClass DFK*/ // this factory hold some 3D Objects var factory = new DFK.Factory(); factory.add("mesh::caps", function() { var material = new THREE.MeshLambertMaterial({ color: 0xFC0C20 }); var geometry; if(!factory.contains("geom::caps")) { geometry = new THREE.CylinderGeometry(6, 6.2, 2); factory.add("geom::caps", geometry); } var caps = new THREE.Mesh(factory.create("geom::caps"), material); caps.castShadow = true; return caps; }); factory.add("mesh::bottle", function() { var baseradius = 10; var topradius = 5; var baseheight = 30; var topheight = 10; var ringheight = 2; var ringradius = 5.5; var base, top, ring; var material = new THREE.MeshLambertMaterial({ color: 0xCCFCC0 }); var bottle = new THREE.Object3D(); base = new THREE.Mesh(new THREE.CylinderGeometry(baseradius, baseradius, baseheight, 10, 10), material); base.position.y = baseheight / 2; top = new THREE.Mesh(new THREE.CylinderGeometry(topradius, baseradius, topheight, 10, 10), material); top.position.y = baseheight + topheight / 2; ring = new THREE.Mesh(new THREE.CylinderGeometry(ringradius, ringradius, ringheight, 10, 10), material); ring.position.y = baseheight + topheight + ringheight / 2; base.castShadow = true; top.castShadow = true; ring.castShadow = true; base.receiveShadow = true; top.receiveShadow = true; ring.receiveShadow = true; bottle.add(top); bottle.add(base); bottle.add(ring); return bottle; }); factory.add("mesh::floor", function(floorRadius){ var geometry = new THREE.CylinderGeometry(floorRadius, floorRadius, 0.1, 20, 8); var material = new THREE.MeshPhongMaterial({ color: 0x42AF33 }); var mesh = new THREE.Mesh(geometry, material); mesh.receiveShadow = true; return mesh; }); // create a simple gravity particule system with capsCount elements centered on pos function df_caps_animator(capsCount, pos) { var d = {}; d.obj = new THREE.Object3D(); d.particules = []; for (var i = 0; i < capsCount; ++i) { d.obj.add(factory.create("mesh::caps")()); // create the physics engine for each particule var part = new DFK.particule( 0.32, DFK.P, { onDie : function (part) { var min = 5; if (part.v.y < min) // Full reset part.reset(DFK.v3(pos.x + DFK.rnd(-1, 1), pos.y + DFK.rnd(0, 1), pos.z), DFK.v3(Math.sin(DFK.rnd(-3.1415, 3.1415)), 4 + DFK.rnd(-1, 1.5), Math.cos(DFK.rnd(-3.1415, 3.1415)))); else // bounce { part.p.y = min; part.reset(part.p, DFK.v3(2*part.v.x, 0.7*part.v.y, 2*part.v.z)); } }, shouldDie : function(p, v) { return p.y < 0; } }); d.particules.push(part); } d.animate = function (dt) { for (var i = 0; i < d.particules.length; ++i) { // get the new particule position var new_pos = d.particules[i].next(dt); var mesh = d.obj.children[i]; //update the mesh position and little hack on the rotation mesh.position.set(new_pos.x, new_pos.y, new_pos.z); mesh.rotation.x = new_pos.z / 10; mesh.rotation.z = new_pos.y / 10; } } return d; } // create a light and mak sure the the floor kept in the fustrum function df_dlight(lightPos, lightTarget, floorRadius) { var dist = DFK.v3dist(lightPos, lightTarget); var light = new THREE.DirectionalLight(0x444444); light.position.set(lightPos.x, lightPos.y, lightPos.z); light.target.position.set(lightTarget.x, lightTarget.y, lightTarget.z); light.castShadow = true; light.shadowDarkness = 0.5; light.shadowCameraNear = dist - floorRadius; light.shadowCameraFar = dist + floorRadius; light.shadowCameraLeft = -floorRadius; light.shadowCameraRight = floorRadius; light.shadowCameraTop = floorRadius; light.shadowCameraBottom = -floorRadius; return light; } var renderer, scene, camera, animator; init(); animate(); function init() { var width = 512; var height = 512; // on initialise le moteur de rendu renderer = new THREE.WebGLRenderer(); // si WebGL ne fonctionne pas sur votre navigateur vous pouvez utiliser le moteur de rendu Canvas à la place //renderer = new THREE.CanvasRenderer(); renderer.setSize(width, height);//window.innerWidth, window.innerHeight); document.getElementById('container').appendChild(renderer.domElement); // on initialise la scène scene = new THREE.Scene(); // setting up the camera camera = new THREE.PerspectiveCamera(50, width / height, 1, 1000); camera.position.set(0, 150, 250); camera.lookAt(new THREE.Vector3(0.0, 50.0, 0.0)); scene.add(camera); // add a bottle first scene.add(factory.create("mesh::bottle")()); // then create 500 animated caps on top of the bottle animator = new df_caps_animator(500, new THREE.Vector3(0, 48, 0)); // and add them to the scene scene.add(animator.obj); // Finally add a floor to don't lost the others 3D objects in the space var floorRadius = 200; scene.add(factory.create("mesh::floor")(200)); // adding 4 lights around the bottle var lightPos = DFK.v3(floorRadius + 50, 2*floorRadius, 0.5*floorRadius + 50); scene.add(df_dlight(lightPos, DFK.v3(0, 30, 0), floorRadius)); lightPos.x *= -1; scene.add(df_dlight(lightPos, DFK.v3(0, 30, 0), floorRadius)); lightPos.z *= -1; scene.add(df_dlight(lightPos, DFK.v3(0, 30, 0), floorRadius)); lightPos.x *= -1; scene.add(df_dlight(lightPos, DFK.v3(0, 30, 0), floorRadius)); // Enabling the shadow renderer.shadowMapEnabled = true; renderer.shadowMapSoft = true; renderer.shadowCameraNear = camera.near; renderer.shadowCameraFar = camera.far; renderer.shadowCameraFov = 50; renderer.shadowMapBias = 0.0039; renderer.shadowMapDarkness = 0.5; renderer.shadowMapWidth = 1024; renderer.shadowMapHeight = 1024; // on effectue le rendu de la scène //renderer.render( scene, camera ); } var gt = 0; // a global timer function animate() { requestAnimationFrame(animate); // updating the caps animator.animate(0.10510); gt += 0.01;//0.02510; camera.position.set((150 + 50*Math.cos(gt/3))*Math.sin(gt), 150 + 100*(1+Math.sin(gt)), (250 + 50*Math.sin(gt/3))*Math.cos(gt)); camera.lookAt(new THREE.Vector3(0.0, 50.0, 0.0)); render(); } function render() { renderer.setClearColor(0); renderer.render(scene, camera); } </script> </body> </html>
landing.html
startupui/startupui.github.io
--- layout: page title: Landing header: Landing Page tagline: "All the elemets to improve the sites with this theme" group: navigation img : 4.jpg img-mobile : 4-mobile.jpg --- {% include JB/setup %} {% include themes/bootstrap/nav-bar.html %} <div class="page-wrapper"> <!-- header-10 --> <section class="header-10-sub v-center bg-midnight-blue"> <div class="background"> &nbsp; </div> <div> <div class="container"> <div class="hero-unit"> <h1>Startup Framework is a set of components</h1> <p> We’ve created the product that will help your <br/> startup to look even better. </p> </div> </div> </div> <a class="control-btn fui-check" href="#"> </a> </section> <!-- content-7 --> <section class="content-7 v-center"> <div> <div class="container"> <h3>Take a look in our awesome product</h3> <div class="row v-center"> <div class="col-sm-3"> <div> Of course we haven’t forgotten about the responsive layout. Create a website with full mobile support. </div> </div> <div class="col-sm-4"> <div class="col-sm-offset-1"> <div class="screen-wrapper"> <div class="screen"> <img src="{{ BASE_PATH }}/assets/images/screen-popup.png" alt=""> <img src="{{ BASE_PATH }}/assets/images/screen.png" alt=""> </div> </div> </div> </div> <div class="col-sm-3"> <div class="col-sm-offset-2"> <h6>Responsive Layout</h6> Of course we haven’t forgotten about the responsive layout. Full mobile support. <h6>Retina Ready</h6> Startup Framework works fine on devices supporting Retina Display. Feel the clarity! </div> </div> </div> </div> </div> </section> <!-- content-23 --> <section class="content-23 v-center bg-midnight-blue custom-bg"> <div> <div class="container"> <div class="hero-unit hero-unit-bordered"> <h1>Scenic Nature</h1> </div> </div> </div> <a class="control-btn fui-check" href="#"> </a> </section> <!-- content-8 --> <section class="content-8 v-center"> <div> <div class="container"> <img src="{{ BASE_PATH }}/assets/images/img-1@2x.png" width="397" height="193" alt=""> <h3>Take a look to our amazing Kit</h3> <div class="row"> <div class="col-sm-6 col-sm-offset-3"> <p>We have a great surprise for Designmodo fans – our first free HTML user interface kit. Flat UI Free is made on the basis of Twitter Bootstrap in a stunning flat-style. </p> <a class="btn btn-large btn-clear" href="#">TRY IT NOW</a> </div> </div> </div> </div> </section> <!-- content-23 --> <section class="content-23 v-center bg-midnight-blue"> <div id="bgVideo" class="background"></div> <div> <div class="container"> <div class="hero-unit"> <h1>Find a perfect suit for <br class="hidden-phone"> your startup</h1> </div> </div> </div> <a class="control-btn fui-check" href="#sample"> </a> </section> <!-- content-8 --> <section id="sample" class="content-8 v-center"> <div> <div class="container"> <img width="380" height="187" alt="" src="{{ BASE_PATH }}/assets/images/ticket-red@2x.png"/> <h3>Twenty Five Awesome Samples</h3> <div class="row"> <div class="col-sm-6 col-sm-offset-3"> <p> The most important part of the Startup Framework is the samples. The samples form a set of 25 usable pages or you can add new blocks from UI Kit. </p> <a class="btn btn-large btn-clear" href="#">TRY IT NOW</a> </div> </div> </div> </div> </section> <!-- content-11 --> <section class="content-11"> <div class="container"> <span>You have the design, you have the code</span> <a class="btn btn-large btn-danger" href="#">TRY IT NOW</a> </div> </section> <!-- footer-3 --> <footer class="footer-3"> <div class="container"> <div class="row v-center"> <div class="col-sm-2"> <a class="brand" href="#">Startup</a> </div> <div class="col-sm-7"> <div class="additional-links"> Be sure to take a look to our <a href="#">Terms of Use</a> and <a href="#">Privacy Policy</a> </div> </div> <div class="col-sm-3"> <h6>New York, NY</h6> <div class="address"> 62 West 55th Street, Suite 302<br>New York, NY, 10230 </div> </div> </div> </div> </footer> </div>
all-data/9000-9999/9814-22.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="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目&nbsp;</b></th><td class="std2">反掌折枝</td></tr> <tr><th class="std1"><b>注音&nbsp;</b></th><td class="std2">ㄈㄢ<sup class="subfont">ˇ</sup> ㄓㄤ<sup class="subfont">ˇ</sup> ㄓㄜ<sup class="subfont">ˊ</sup> ㄓ</td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">fǎn zhǎng zhé zhī</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2">反轉手掌,折取樹枝。比喻至簡易之事。</td></tr> <tr><th class="std1"><b><font class="fltypefont">附錄</font>&nbsp;</b></th><td class="std2">修訂本參考資料</td></tr> </td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
all-data/10000-10999/10738-22.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="flayoutclass"><div class="flayoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>條目&nbsp;</b></th><td class="std2">歸真反璞</td></tr> <tr><th class="std1"><b>注音&nbsp;</b></th><td class="std2">ㄍㄨㄟ ㄓㄣ ㄈㄢ<sup class="subfont">ˇ</sup> ㄆㄨ<sup class="subfont">ˊ</sup></td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">guī zhēn fǎn pú</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2"><img src=/cydic/dicword/fe59.jpg border=0 alt=* class=fontimg valign=center>除去外飾,回復淳樸的本性。戰國策˙齊策四:<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>歸真反璞,則終身不辱。<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center><img src=/cydic/dicword/fe5a.jpg border=0 alt=* class=fontimg valign=center>死亡。常用於弔喪輓聯。或作<img src=/cydic/dicword/fa40.gif border=0 alt=* class=fontimg valign=center>歸真返璞<img src=/cydic/dicword/fa41.gif border=0 alt=* class=fontimg valign=center>。</td></tr> <tr><th class="std1"><b><font class="fltypefont">附錄</font>&nbsp;</b></th><td class="std2">修訂本參考資料</td></tr> </td></tr></table></div> <!-- flayoutclass_first --><div class="flayoutclass_second"></div> <!-- flayoutclass_second --></div> <!-- flayoutclass --></td></tr></table>
output/categories/support-worker.html
wcmckee/moejobs-site
<!DOCTYPE html> <html prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article# " lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Posts about Support Worker | Minstry Of Education Jobs</title> <link href="../assets/css/bootstrap.min.css" rel="stylesheet" type="text/css"> <link href="../assets/css/bootstrap-responsive.min.css" rel="stylesheet" type="text/css"> <link href="../assets/css/rst.css" rel="stylesheet" type="text/css"> <link href="../assets/css/code.css" rel="stylesheet" type="text/css"> <link href="../assets/css/colorbox.css" rel="stylesheet" type="text/css"> <link href="../assets/css/theme.css" rel="stylesheet" type="text/css"> <link rel="alternate" type="application/rss+xml" title="RSS" href="../rss.xml"> <link rel="canonical" href="http://wcmckee.com/minedujobs/categories/support-worker.html"> <!--[if lt IE 9]><script src="../assets/js/html5.js"></script><![endif]--><link rel="alternate" type="application/rss+xml" title="RSS for tag Support Worker" href="support-worker.xml"> </head> <body class="home blog"> <div id="wrap" style="width:850px"> <div id="container" style="width:560px"> <article class="tagpage"><header><h1>Posts about Support Worker</h1> <div class="metadata"> <p class="feedlink"><a href="support-worker.xml" type="application/rss+xml">RSS feed</a></p> </div> </header><ul class="postlist"> <li> <time class="listdate" datetime="2015-10-01T09:00:00+13:00" title="2015-10-01 09:00">2015-10-01 09:00</time><a href="../posts/1184055.html" class="listtitle">1184055</a><a></a> </li> </ul></article> </div> <div id="sidebar"> <!--Sidebar content--> <h1 id="blog-title"> <a href="http://wcmckee.com/minedujobs/" title="Minstry Of Education Jobs">Minstry Of Education Jobs</a> </h1> <ul class="unstyled"> <li> <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"> <img alt="Creative Commons Attribution 4.0 International License" style="border-width:0; margin-bottom:12px;" src="https://i.creativecommons.org/l/by/4.0/88x31.png"></a> </li> <li> <a href="../archive.html">Archives</a> </li> <li> <a href="index.html">Tags</a> </li> <li> <a href="../rss.xml">RSS feed</a> </li> <li> </ul> </div> <div id="footer"> Contents © 2015 <a href="mailto:joe@demo.site">Ministry Of Education</a> - Powered by <a href="https://getnikola.com" rel="nofollow">Nikola</a> <a rel="license" href="http://creativecommons.org/licenses/by/4.0/"> <img alt="Creative Commons Attribution 4.0 International License" style="border-width:0; margin-bottom:12px;" src="https://i.creativecommons.org/l/by/4.0/88x31.png"></a> </div> </div> <script src="../assets/js/jquery.min.js"></script><script src="../assets/js/bootstrap.min.js"></script><script src="../assets/js/moment-with-locales.min.js"></script><script src="../assets/js/fancydates.js"></script><script src="../assets/js/jquery.colorbox-min.js"></script><script type="text/javascript">jQuery("a.image-reference").colorbox({rel:"gal",maxWidth:"100%",maxHeight:"100%",scalePhotos:true});</script> </body> </html>
_posts/2014-03-13-totem-ruby-without-rails.html
chadrem/chadrem.github.io
--- layout: post title: Totem - Ruby Without Rails comments: false share: false date: 2014-03-13 type: post tags: - jruby - ruby - ruby on rails - totem --- <p><a title="Totem" href="https://github.com/chadrem/totem">Totem</a> is my new Ruby gem for creating Ruby projects without having to depend on Rails.  Some of the features it provides are:</p> <ul> <li>Interactive console</li> <li>Logging</li> <li>Standard folder structure (very Rails like)</li> <li>Environments (development, production, etc)</li> <li>Generators</li> <li>Easy database access (via an add-on)</li> </ul> <p><a title="Totem" href="https://github.com/chadrem/totem">Totem</a> and <a title="Totem - Activerecord" href="https://github.com/chadrem/totem_activerecord">Totem - Activerecord</a> seek to bring these and many other features to your non-Rails application.  Give it a try and feel free to contact me with your feedback.</p>
client/documentation/classes/ExpansionSource.html
OysteinAmundsen/gymsystems
<!doctype html> <html class="no-js" lang=""> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>gymsystems_client documentation</title> <meta name="description" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" type="image/x-icon" href="../images/favicon.ico"> <link rel="stylesheet" href="../styles/style.css"> </head> <body> <div class="navbar navbar-default navbar-fixed-top visible-xs"> <a href="../" class="navbar-brand">gymsystems_client documentation</a> <button type="button" class="btn btn-default btn-menu ion-ios-menu" id="btn-menu"></button> </div> <div class="xs-menu menu" id="mobile-menu"> <div id="book-search-input" role="search"><input type="text" placeholder="Type to search"></div> <compodoc-menu></compodoc-menu> </div> <div class="container-fluid main"> <div class="row main"> <div class="hidden-xs menu"> <compodoc-menu mode="normal"></compodoc-menu> </div> <!-- START CONTENT --> <div class="content class"> <div class="content-data"> <ol class="breadcrumb"> <li>Classes</li> <li>ExpansionSource</li> </ol> <ul class="nav nav-tabs" role="tablist"> <li class="active"> <a href="#info" role="tab" id="info-tab" data-toggle="tab" data-link="info">Info</a> </li> <li > <a href="#source" role="tab" id="source-tab" data-toggle="tab" data-link="source">Source</a> </li> </ul> <div class="tab-content"> <div class="tab-pane fade active in" id="c-info"> <p class="comment"> <h3>File</h3> </p> <p class="comment"> <code>src/app/shared/services/expansion-source.ts</code> </p> <p class="comment"> <h3>Extends</h3> </p> <p class="comment"> <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </p> <section> <h3 id="index">Index</h3> <table class="table table-sm table-bordered index-table"> <tbody> <tr> <td class="col-md-4"> <h6><b>Properties</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <span class="modifier">Private</span> <a href="#alternateSubject">alternateSubject</a> </li> <li> <a href="#currentSort">currentSort</a> </li> <li> <a href="#isExpansionDetailRow">isExpansionDetailRow</a> </li> <li> <span class="modifier">Public</span> <a href="#subject">subject</a> </li> <li> <a href="#sortChanged">sortChanged</a> </li> <li> <span class="modifier">Public</span> <a href="#subject">subject</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Methods</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <a href="#add">add</a> </li> <li> <a href="#clearSelection">clearSelection</a> </li> <li> <a href="#connect">connect</a> </li> <li> <a href="#disconnect">disconnect</a> </li> <li> <a href="#findIndexOf">findIndexOf</a> </li> <li> <a href="#select">select</a> </li> <li> <a href="#sortData">sortData</a> </li> <li> <a href="#add">add</a> </li> <li> <a href="#connect">connect</a> </li> <li> <a href="#disconnect">disconnect</a> </li> <li> <a href="#findIndexOf">findIndexOf</a> </li> <li> <a href="#sortData">sortData</a> </li> </ul> </td> </tr> <tr> <td class="col-md-4"> <h6><b>Accessors</b></h6> </td> </tr> <tr> <td class="col-md-4"> <ul class="index-list"> <li> <a href="#realRows">realRows</a> </li> </ul> </td> </tr> </tbody> </table> </section> <section> <h3 id="constructor">Constructor</h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <code>constructor(subject: BehaviorSubject<T[]>)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="15" class="link-to-prism">src/app/shared/services/expansion-source.ts:15</a></div> </td> </tr> <tr> <td class="col-md-4"> <div> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>subject</td> <td> <code>BehaviorSubject&lt;T[]&gt;</code> </td> <td> No </td> </tr> </tbody> </table> </div> </td> </tr> </tbody> </table> </section> <section> <h3 id="inputs"> Properties </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="alternateSubject"></a> <span class="name"> <b> <span class="modifier">Private</span> alternateSubject</b> <a href="#alternateSubject"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>new BehaviorSubject&lt;T[]&gt;(null)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="12" class="link-to-prism">src/app/shared/services/expansion-source.ts:12</a></div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="currentSort"></a> <span class="name"> <b> currentSort</b> <a href="#currentSort"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>Sort</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="15" class="link-to-prism">src/app/shared/services/expansion-source.ts:15</a></div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="isExpansionDetailRow"></a> <span class="name"> <b> isExpansionDetailRow</b> <a href="#isExpansionDetailRow"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>() &#x3D;&gt; {...}</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="30" class="link-to-prism">src/app/shared/services/expansion-source.ts:30</a></div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="subject"></a> <span class="name"> <b> <span class="modifier">Public</span> subject</b> <a href="#subject"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>BehaviorSubject&lt;T[]&gt;</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="17" class="link-to-prism">src/app/shared/services/expansion-source.ts:17</a></div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="sortChanged"></a> <span class="name"> <b> sortChanged</b> <a href="#sortChanged"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Default value : </i><code>new BehaviorSubject(undefined)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:9</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="subject"></a> <span class="name"> <b> <span class="modifier">Public</span> subject</b> <a href="#subject"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <i>Type : </i> <code>BehaviorSubject&lt;T[]&gt;</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:13</a></code> </div> </td> </tr> </tbody> </table> </section> <section> <h3 id="methods"> Methods </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="add"></a> <span class="name"> <b> add </b> <a href="#add"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>add(element: T)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="37" class="link-to-prism">src/app/shared/services/expansion-source.ts:37</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>element</td> <td> <code>T</code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank" >number</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="clearSelection"></a> <span class="name"> <b> clearSelection </b> <a href="#clearSelection"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>clearSelection()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="55" class="link-to-prism">src/app/shared/services/expansion-source.ts:55</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="connect"></a> <span class="name"> <b> connect </b> <a href="#connect"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>connect()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="26" class="link-to-prism">src/app/shared/services/expansion-source.ts:26</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Returns : </b> <code>Observable&lt;T[]&gt;</code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="disconnect"></a> <span class="name"> <b> disconnect </b> <a href="#disconnect"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>disconnect()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="59" class="link-to-prism">src/app/shared/services/expansion-source.ts:59</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="findIndexOf"></a> <span class="name"> <b> findIndexOf </b> <a href="#findIndexOf"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>findIndexOf(element: T)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="51" class="link-to-prism">src/app/shared/services/expansion-source.ts:51</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>element</td> <td> <code>T</code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="select"></a> <span class="name"> <b> select </b> <a href="#select"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>select(element: T, row?: <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank">number</a>)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="42" class="link-to-prism">src/app/shared/services/expansion-source.ts:42</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>element</td> <td> <code>T</code> </td> <td> No </td> </tr> <tr> <td>row</td> <td> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank" >number</a></code> </td> <td> Yes </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="sortData"></a> <span class="name"> <b> sortData </b> <a href="#sortData"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>sortData($event: Sort, elements?: T[])</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="32" class="link-to-prism">src/app/shared/services/expansion-source.ts:32</a></div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>$event</td> <td> <code>Sort</code> </td> <td> No </td> </tr> <tr> <td>elements</td> <td> <code>T[]</code> </td> <td> Yes </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="add"></a> <span class="name"> <b> add </b> <a href="#add"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>add(element: T)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:40</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>element</td> <td> <code>T</code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/number" target="_blank" >number</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="connect"></a> <span class="name"> <b> connect </b> <a href="#connect"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>connect()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:17</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Returns : </b> <code>Observable&lt;T[]&gt;</code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="disconnect"></a> <span class="name"> <b> disconnect </b> <a href="#disconnect"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>disconnect()</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:51</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="findIndexOf"></a> <span class="name"> <b> findIndexOf </b> <a href="#findIndexOf"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>findIndexOf(element: T)</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:47</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>element</td> <td> <code>T</code> </td> <td> No </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >any</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="sortData"></a> <span class="name"> <b> sortData </b> <a href="#sortData"><span class="icon ion-ios-link"></span></a> </span> </td> </tr> <tr> <td class="col-md-4"> <code>sortData($event: Sort, elements?: T[])</code> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Inherited from <code><a href="../classes/SubjectSource.html" target="_self" >SubjectSource</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <code><a href="../classes/SubjectSource.html#source" target="_self" >SubjectSource:21</a></code> </div> </td> </tr> <tr> <td class="col-md-4"> <div class="io-description"> <b>Parameters :</b> <table class="params"> <thead> <tr> <td>Name</td> <td>Type</td> <td>Optional</td> </tr> </thead> <tbody> <tr> <td>$event</td> <td> <code>Sort</code> </td> <td> No </td> </tr> <tr> <td>elements</td> <td> <code>T[]</code> </td> <td> Yes </td> </tr> </tbody> </table> </div> <div> </div> <div class="io-description"> <b>Returns : </b> <code><a href="https://www.typescriptlang.org/docs/handbook/basic-types.html" target="_blank" >void</a></code> </div> <div class="io-description"> </div> </td> </tr> </tbody> </table> </section> <section> <h3 id="accessors"> Accessors </h3> <table class="table table-sm table-bordered"> <tbody> <tr> <td class="col-md-4"> <a name="realRows"></a> <span class="name"><b>realRows</b><a href="#realRows"><span class="icon ion-ios-link"></span></a></span> </td> </tr> <tr> <td class="col-md-4"> <span class="accessor"><b>get</b><code>realRows()</code></span> </td> </tr> <tr> <td class="col-md-4"> <div class="io-line">Defined in <a href="" data-line="13" class="link-to-prism">src/app/shared/services/expansion-source.ts:13</a></div> </td> </tr> </tbody> </table> </section> </div> <div class="tab-pane fade tab-source-code" id="c-source"> <pre class="line-numbers compodoc-sourcecode"><code class="language-typescript">import { DataSource } from &#x27;@angular/cdk/table&#x27;; import { Observable, BehaviorSubject } from &#x27;rxjs&#x27;; import { Sort } from &#x27;@angular/material&#x27;; import { SubjectSource } from &#x27;app/shared/services/subject-source&#x27;; export interface ExpansionRow&lt;T&gt; { detailRow: boolean; expanded: boolean; T; } export class ExpansionSource&lt;T&gt; extends SubjectSource&lt;T&gt; { private alternateSubject &#x3D; new BehaviorSubject&lt;T[]&gt;(null); private get realRows() { return &lt;(T|ExpansionRow&lt;T&gt;)[]&gt; this.alternateSubject.value; } currentSort: Sort; constructor(public subject: BehaviorSubject&lt;T[]&gt;) { super(subject); this.subject.subscribe(values &#x3D;&gt; { const rows &#x3D; []; values.forEach(element &#x3D;&gt; rows.push(element, {detailRow: true, expanded: false, element})); this.alternateSubject.next(rows); }); } connect(): Observable&lt;T[]&gt; { return this.alternateSubject; } isExpansionDetailRow &#x3D; (row: any) &#x3D;&gt; row.hasOwnProperty(&#x27;detailRow&#x27;); sortData($event: Sort, elements?: T[]) { this.clearSelection(); super.sortData($event, elements); } add(element: T): number { this.clearSelection(); return super.add(element); } select(element: T, row?: number) { this.clearSelection(); if (element !&#x3D; null) { row &#x3D; row || this.alternateSubject.value.findIndex(m &#x3D;&gt; m &#x3D;&#x3D;&#x3D; element); (&lt;ExpansionRow&lt;T&gt;&gt; this.realRows[row + 1]).expanded &#x3D; true; } } findIndexOf(element: T) { return this.alternateSubject.value.findIndex(m &#x3D;&gt; m &#x3D;&#x3D;&#x3D; element); } clearSelection() { this.realRows.filter(r &#x3D;&gt; r.hasOwnProperty(&#x27;detailRow&#x27;)).forEach(r &#x3D;&gt; (&lt;ExpansionRow&lt;T&gt;&gt; r).expanded &#x3D; false ); } disconnect() {} } </code></pre> </div> </div> </div><div class="search-results"> <div class="has-results"> <h1 class="search-results-title"><span class='search-results-count'></span> result-matching "<span class='search-query'></span>"</h1> <ul class="search-results-list"></ul> </div> <div class="no-results"> <h1 class="search-results-title">No results matching "<span class='search-query'></span>"</h1> </div> </div> </div> <!-- END CONTENT --> </div> </div> <script> var COMPODOC_CURRENT_PAGE_DEPTH = 1; var COMPODOC_CURRENT_PAGE_CONTEXT = 'class'; var COMPODOC_CURRENT_PAGE_URL = 'ExpansionSource.html'; </script> <script src="../js/libs/custom-elements.min.js"></script> <script src="../js/libs/lit-html.js"></script> <!-- Required to polyfill modern browsers as code is ES5 for IE... --> <script src="../js/libs/custom-elements-es5-adapter.js" charset="utf-8" defer></script> <script src="../js/menu-wc.js" defer></script> <script src="../js/libs/bootstrap-native.js"></script> <script src="../js/libs/es6-shim.min.js"></script> <script src="../js/libs/EventDispatcher.js"></script> <script src="../js/libs/promise.min.js"></script> <script src="../js/libs/zepto.min.js"></script> <script src="../js/compodoc.js"></script> <script src="../js/tabs.js"></script> <script src="../js/menu.js"></script> <script src="../js/libs/clipboard.min.js"></script> <script src="../js/libs/prism.js"></script> <script src="../js/sourceCode.js"></script> <script src="../js/search/search.js"></script> <script src="../js/search/lunr.min.js"></script> <script src="../js/search/search-lunr.js"></script> <script src="../js/search/search_index.js"></script> <script src="../js/lazy-load-graphs.js"></script> </body> </html>
backoffice/templates/backoffice/bdata3.html
norn/bustime
{% extends "backoffice/base.html" %} {% block active_bdata3 %}active{% endblock %} {% block title %}Bdata Mode 3{% endblock %} {% block title_mini %}{{city.name}}{% endblock %} {% block content %} <div class="space-6"></div> <div class="row-fluid"> <div class="span6"> <div class="widget-box transparent"> <div class="widget-body"> <div class="widget-main no-padding"> <table class="table table-bordered table-striped"> <thead> <tr> <th> <i class="icon-caret-right blue"></i> NBusstop </th> <th class="hidden-phone"> <i class="icon-caret-right blue"></i> Названия маршрутов </th> </tr> </thead> <tbody> {%for k,v in bdata3.items%} <tr> <td>{{k}}</td> <td>{{v}}</td> </tr> {%endfor%} </tbody> </table> </div><!-- /widget-main --> </div><!-- /widget-body --> </div><!-- /widget-box --> </div> </div> <div class="hr hr32 hr-dotted"></div> {% endblock %}
clean/Linux-x86_64-4.01.0-1.2.0/unstable/8.4.dev/contrib:color/dev/2015-01-07_03-53-32.html
coq-bench/coq-bench.github.io-old
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li><a href=".">8.4.dev / contrib:color dev</a></li> <li class="active"><a href="">2015-01-07 03:53:32</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href=".">« Up</a> <h1> contrib:color <small> dev <span class="label label-info">Not compatible with this Coq</span> </small> </h1> <p><em><script>document.write(moment("2015-01-07 03:53:32 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2015-01-07 03:53:32 UTC)</em><p> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>ruby lint.rb unstable ../unstable/packages/coq:contrib:color/coq:contrib:color.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>The package is valid. </pre></dd> </dl> <h2>Dry install</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --dry-run coq:contrib:color.dev coq.8.4.dev</code></dd> <dt>Return code</dt> <dd>768</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.4.dev). The following dependencies couldn&#39;t be met: - coq:contrib:color -&gt; coq &gt;= dev Your request can&#39;t be satisfied: - Conflicting version constraints for coq No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq, to test if the problem was incompatibility with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --dry-run coq:contrib:color.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>3 s</dd> <dt>Output</dt> <dd><pre>The following actions will be performed: - remove coq.8.4.dev === 1 to remove === =-=- Removing Packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Removing coq.8.4.dev. [WARNING] Directory /home/bench/.opam/system/lib/coq is not empty, not removing [WARNING] Directory /home/bench/.opam/system/share/coq is not empty, not removing The following actions will be performed: - install coq.hott [required by coq:contrib:color] - install coq:contrib:color.dev === 2 to install === =-=- Synchronizing package archives -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= =-=- Installing packages =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Building coq.hott: ./configure -configdir /home/bench/.opam/system/lib/coq/config -mandir /home/bench/.opam/system/man -docdir /home/bench/.opam/system/doc -prefix /home/bench/.opam/system -usecamlp5 -camlp5dir /home/bench/.opam/system/lib/camlp5 -coqide no make -j4 make install Installing coq.hott. Building coq:contrib:color.dev: coq_makefile -f Make -o Makefile make -j4 make install Installing coq:contrib:color.dev. </pre></dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
_includes/livere.html
linexjlin/linexjlin.github.io
<!-- 来必力City版安装代码 --> <div id="lv-container" data-id="city" data-uid="MTAyMC80MDcxOC8xNzI0NA=="> <script type="text/javascript"> (function(d, s) { var j, e = d.getElementsByTagName(s)[0]; if (typeof LivereTower === 'function') { return; } j = d.createElement(s); j.src = 'https://cdn-city.livere.com/js/embed.dist.js'; j.async = true; e.parentNode.insertBefore(j, e); })(document, 'script'); </script> <noscript> 为正常使用来必力评论功能请激活JavaScript</noscript> </div> <!-- City版安装代码已完成 -->
_includes/yoga/about-audrey.html
jordanrancie/jordanrancie.github.io
<!--body content start--> <!--about audrey --> <section id= "about-audrey"class="body-content gray-bg" > <div class="container"> <div class="row page-content"> <div class="post-list-aside"> <div class="post-single"> <div class="col-md-6"> <div class="post-slider post-img text-center"> <ul class="slides"> <li data-thumb="/static/img/post/post-pic1.jpg"> <a href="javascript:;" title="Freshness Photo"> <img src="/static/img/post/post-pic1.jpg" alt=""> </a> </li> <li data-thumb="/static/img/post/post-pic2.jpg"> <a href="javascript:;" title="Awesome Lightbox"> <img src="/static/img/post/post-pic2.jpg" alt=""> </a> </li> <li data-thumb="/static/img/post/post-pic3.png"> <a href="javascript:;" title="Massive UI Components"> <img src="/static/img/post/post-pic3.png" alt=""> </a> </li> <li data-thumb="/static/img/post/post-pic4.jpg"> <a href="javascript:;" title="Massive UI Components"> <img src="/static/img/post/post-pic4.jpg" alt=""> </a> </li> </ul> </div> </div> <div class="col-md-6"> <div class=""> <h4 class="text-uppercase"> G'DAY YOGIS </h4> <p> Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. </p> <p> Lid est laborum dolo rumes fugats untras. Etharums ser quidem rerum facilis dolores nemis omnis fugats vitaes nemo minima rerums unsers sadips amets.. </p> </div> </div> </div> </div> </div> </div> </section> <!--who i am --> <section class="body-content"> <!--post--> <div class="page-content "> <div class="container"> <div class="row"> <!--post style 4 start--> <div class="post-list-aside"> <div class="post-single"> <div class="col-md-6"> <div class="post-img m-top-50"> <img src="{{ site.static-image-url }}/audreyprofile.png" alt="" style="border-radius:15px; width:300px; height:250px;"> </div> </div> <div class="col-md-6"> <div class="post-desk"> <div class="m-bot-30"> <span class="post-sub-title text-uppercase">who i am </span> <h4 class="text-uppercase"> I am a traveler yogi </h4> </div> <p> Phasellus fringilla suscipit risus nec eleifend. Pellentesque eu quam sem, ac malesuada leo sem quam pellente. Awesome sliders give you the opportunity to showcase your content. </p> <ul class="m-bot-30 circle-list inline-block"> <li> Lorem ipsum dolor sit amet, consectetur adipisicing elit. </li> <li> Adipisci blanditiis delectus deserunt dolorem </li> <li> Impedit inventore itaque iure libero maiores simso. </li> </ul> <div> <a href="/yoga/#about-audrey" class="btn btn-small btn-dark-solid "> Read More </a> </div> </div> </div> </div> </div> </div> </div> </div> </section> <!-- timeline--> <section class="body-content "> <div class="page-content timeline-parallax-1"> <div class="container"> <div class="row"> <div class="heading-title text-center"> <h3 class="text-uppercase">Timeline </h3> <span class="text-uppercase">Happy life </span> </div> <div class="col-md-12"> <!--time line dark --> <div class="timeline dark-1"> <article class="timeline-item alt"> <div class="timeline-desk"> <div class="panel"> <div class="panel-body"> <span class="timeline-icon"> <i class="icon-mobile"></i> </span> <span class="timeline-date">08:25 am</span> <h1 class="text-uppercase">1 hour ago</h1> <p><a href='http://www.freepik.com/free-vector/world-map-blue-template_718596.htm'>Designed by Freepik</a></p> </div> </div> </div> </article> <article class="timeline-item "> <div class="timeline-desk"> <div class="panel"> <div class="panel-body"> <span class="timeline-icon"> <i class="icon-lightbulb"></i> </span> <span class="timeline-date">10:00 am</span> <h1 class="text-uppercase">2 hours ago</h1> <p>Completed Coffee meeting with <a href="#">Stive Martin</a> regarding the Product Promotion</p> </div> </div> </div> </article> <article class="timeline-item alt"> <div class="timeline-desk"> <div class="panel"> <div class="panel-body"> <span class="timeline-icon"> <i class="icon-strategy"></i> </span> <span class="timeline-date">11:35 am</span> <h1 class="text-uppercase">10 hours ago</h1> <p>3 new photo Uploaded on facebook fan page</p> </div> </div> </div> </article> <article class="timeline-item"> <div class="timeline-desk"> <div class="panel"> <div class="panel-body"> <span class="timeline-icon"> <i class="icon-telescope"></i> </span> <span class="timeline-date">3:20 pm</span> <h1 class="text-uppercase">4:30</h1> <p>Outdoor visit at California State Route 85 with John Boltana & Harry Piterson regarding to setup a new show room.</p> <p> <i class=" fa fa-exclamation-sign"></i> New task added for <span><a href="#" >Denial Collins</a></span> </p> </div> </div> </div> </article> </div> <!--time line dark --> </div> </div> </div> </section> <!--skills--> <section class="body-content" <div class="row m-bot-80"> <div class="col-md-6"> <div class=""> <p></p> <p></p> <p></p> <h4 class="text-uppercase"> who we are </h4> <p> Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. </p> </div> </div> <div class="col-md-6"> <p></p> <p></p> <p></p> <h4 class="text-uppercase"> Massive Skills </h4> <!-- progress bar start --> <div class="progress massive-progress"> <div class="progress-bar" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100"> HTML / CSS / JQUERY <span>80%</span> </div> </div> <!-- progress bar end --> <!-- progress bar start --> <div class="progress massive-progress"> <div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100"> PHOTOSHOP <span>90%</span> </div> </div> <!-- progress bar end --> <!-- progress bar start --> <div class="progress massive-progress"> <div class="progress-bar" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"> GRAPHIC DESIGN <span>75% </span> </div> </div> <!-- progress bar end --> <!-- progress bar start --> <div class="progress massive-progress"> <div class="progress-bar" role="progressbar" aria-valuenow="82" aria-valuemin="0" aria-valuemax="100"> PHP / WORDPRESS <span>82%</span> </div> </div> <!-- progress bar end --> </div> </div> </section> <section class="body-content"> <img src="/static/img/worldtravel-audrey.png" style=" display: block; width:auto; height: 700px;"> <a href='http://www.freepik.com/free-vector/world-map-blue-template_718596.htm'>Designed by Freepik</a> </section> <section class="body-content gray-bg"> <!-- testimonial --> <div class="page-content"> <div class="container"> <div class="row"> <div class="heading-title text-center"> <h3 class="text-uppercase">Testimonial </h3> <span class="text-uppercase">Some testimonials examples</span> </div> <div id="testimonial-centered"class="col-md-6"> <!--testimonial start --> <div id="testimonial-4" class="testimonial-alt"> <div class="item"> <div class="content"> <p> Nam nec dui dolor. Curabitur in laoreet erat. Nam nec dui dolor. Aliquam varius dolor nunc, interdum commodo justoporttitor vitae. Quisque fermentum purus. </p> </div> <div class="testi-auth"> <div class="avatar"> <a href="#"> <img src="/static/img/testimonial/1.jpg" alt="Customer Testimonails"> </a> </div> <div class="testimonial-meta"> Kevin Paige <span>ABC</span> </div> </div> </div> <div class="item"> <div class="content"> <p> Nam nec dui dolor. Curabitur in laoreet erat. Nam nec dui dolor. Aliquam varius dolor nunc, interdum commodo justoporttitor vitae. Quisque fermentum purus. </p> </div> <div class="testi-auth"> <div class="avatar"> <a href="#"> <img src="/static/img/testimonial/2.jpg" alt="Customer Testimonails"> </a> </div> <div class="testimonial-meta"> John Doe <span>DEF</span> </div> </div> </div> <div class="item"> <div class="content"> <p> Nam nec dui dolor. Curabitur in laoreet erat. Nam nec dui dolor. Aliquam varius dolor nunc, interdum commodo justoporttitor vitae. Quisque fermentum purus. </p> </div> <div class="testi-auth"> <div class="avatar"> <a href="#"> <img src="/static/img/testimonial/3.jpg" alt="Customer Testimonails"> </a> </div> <div class="testimonial-meta"> Martin Smith <span>GEF</span> </div> </div> </div> </div> <!--testimonial end--> </div> </div> </div> </div> </div> </div> </section> <!--body content end-->
src/tesisControl/tesisBundle/Resources/public/DataTables-1.10.12/examples/plug-ins/sorting_auto.html
dialv/tesisControl
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <title>DataTables example - Ordering plug-ins (with type detection)</title> <link rel="stylesheet" type="text/css" href="../../media/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../resources/demo.css"> <style type="text/css" class="init"> </style> <script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.3.min.js"> </script> <script type="text/javascript" language="javascript" src="../../media/js/jquery.dataTables.js"> </script> <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"> </script> <script type="text/javascript" language="javascript" src="../resources/demo.js"> </script> <script type="text/javascript" language="javascript" class="init"> $.fn.dataTable.ext.type.detect.unshift( function ( d ) { return d === 'Low' || d === 'Medium' || d === 'High' ? 'salary-grade' : null; } ); $.fn.dataTable.ext.type.order['salary-grade-pre'] = function ( d ) { switch ( d ) { case 'Low': return 1; case 'Medium': return 2; case 'High': return 3; } return 0; }; $(document).ready(function() { $('#example').DataTable(); } ); </script> </head> <body class="dt-example"> <div class="container"> <section> <h1>DataTables example <span>Ordering plug-ins (with type detection)</span></h1> <div class="info"> <p>Although DataTables will automatically order data from a number of different data types using the built in methods, When dealing with more complex formatted data, it can be desirable to define the ordering order yourself. Using plug-in ordering functions, you have have DataTables sort data in any manner you wish.</p> <p>Formatted data of a particular kind can be automatically detected and a suitable ordering plug-in assigned to it by making use of DataTables' plug-in type detection abilities. For complete information about type detection and ordering plug-ins; creating them and their requirements, please refer to the plug-in development documentation.</p> <p>This example shows ordering with using an enumerated type.</p> <p>A wide variety of ready made ordering plug-ins can be found on <a href="//datatables.net/plug-ins/sorting">the DataTables plug-ins page</a>.</p> </div> <table id="example" class="display" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </thead> <tfoot> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </tfoot> <tbody> <tr> <td>Tiger Nixon</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011/04/25</td> <td>Low</td> </tr> <tr> <td>Garrett Winters</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011/07/25</td> <td>Low</td> </tr> <tr> <td>Ashton Cox</td> <td>Junior Technical Author</td> <td>San Francisco</td> <td>66</td> <td>2009/01/12</td> <td>Low</td> </tr> <tr> <td>Cedric Kelly</td> <td>Senior Javascript Developer</td> <td>Edinburgh</td> <td>22</td> <td>2012/03/29</td> <td>Medium</td> </tr> <tr> <td>Airi Satou</td> <td>Accountant</td> <td>Tokyo</td> <td>33</td> <td>2008/11/28</td> <td>Low</td> </tr> <tr> <td>Brielle Williamson</td> <td>Integration Specialist</td> <td>New York</td> <td>61</td> <td>2012/12/02</td> <td>Medium</td> </tr> <tr> <td>Herrod Chandler</td> <td>Sales Assistant</td> <td>San Francisco</td> <td>59</td> <td>2012/08/06</td> <td>Low</td> </tr> <tr> <td>Rhona Davidson</td> <td>Integration Specialist</td> <td>Tokyo</td> <td>55</td> <td>2010/10/14</td> <td>Low</td> </tr> <tr> <td>Colleen Hurst</td> <td>Javascript Developer</td> <td>San Francisco</td> <td>39</td> <td>2009/09/15</td> <td>Low</td> </tr> <tr> <td>Sonya Frost</td> <td>Software Engineer</td> <td>Edinburgh</td> <td>23</td> <td>2008/12/13</td> <td>Low</td> </tr> <tr> <td>Jena Gaines</td> <td>Office Manager</td> <td>London</td> <td>30</td> <td>2008/12/19</td> <td>Low</td> </tr> <tr> <td>Quinn Flynn</td> <td>Support Lead</td> <td>Edinburgh</td> <td>22</td> <td>2013/03/03</td> <td>Low</td> </tr> <tr> <td>Charde Marshall</td> <td>Regional Director</td> <td>San Francisco</td> <td>36</td> <td>2008/10/16</td> <td>Medium</td> </tr> <tr> <td>Haley Kennedy</td> <td>Senior Marketing Designer</td> <td>London</td> <td>43</td> <td>2012/12/18</td> <td>Low</td> </tr> <tr> <td>Tatyana Fitzpatrick</td> <td>Regional Director</td> <td>London</td> <td>19</td> <td>2010/03/17</td> <td>Medium</td> </tr> <tr> <td>Michael Silva</td> <td>Marketing Designer</td> <td>London</td> <td>66</td> <td>2012/11/27</td> <td>Low</td> </tr> <tr> <td>Paul Byrd</td> <td>Chief Financial Officer (CFO)</td> <td>New York</td> <td>64</td> <td>2010/06/09</td> <td>High</td> </tr> <tr> <td>Gloria Little</td> <td>Systems Administrator</td> <td>New York</td> <td>59</td> <td>2009/04/10</td> <td>Low</td> </tr> <tr> <td>Bradley Greer</td> <td>Software Engineer</td> <td>London</td> <td>41</td> <td>2012/10/13</td> <td>Low</td> </tr> <tr> <td>Dai Rios</td> <td>Personnel Lead</td> <td>Edinburgh</td> <td>35</td> <td>2012/09/26</td> <td>Low</td> </tr> <tr> <td>Jenette Caldwell</td> <td>Development Lead</td> <td>New York</td> <td>30</td> <td>2011/09/03</td> <td>Low</td> </tr> <tr> <td>Yuri Berry</td> <td>Chief Marketing Officer (CMO)</td> <td>New York</td> <td>40</td> <td>2009/06/25</td> <td>High</td> </tr> <tr> <td>Caesar Vance</td> <td>Pre-Sales Support</td> <td>New York</td> <td>21</td> <td>2011/12/12</td> <td>Low</td> </tr> <tr> <td>Doris Wilder</td> <td>Sales Assistant</td> <td>Sidney</td> <td>23</td> <td>2010/09/20</td> <td>Low</td> </tr> <tr> <td>Angelica Ramos</td> <td>Chief Executive Officer (CEO)</td> <td>London</td> <td>47</td> <td>2009/10/09</td> <td>High</td> </tr> <tr> <td>Gavin Joyce</td> <td>Developer</td> <td>Edinburgh</td> <td>42</td> <td>2010/12/22</td> <td>Low</td> </tr> <tr> <td>Jennifer Chang</td> <td>Regional Director</td> <td>Singapore</td> <td>28</td> <td>2010/11/14</td> <td>Medium</td> </tr> <tr> <td>Brenden Wagner</td> <td>Software Engineer</td> <td>San Francisco</td> <td>28</td> <td>2011/06/07</td> <td>Low</td> </tr> <tr> <td>Fiona Green</td> <td>Chief Operating Officer (COO)</td> <td>San Francisco</td> <td>48</td> <td>2010/03/11</td> <td>High</td> </tr> <tr> <td>Shou Itou</td> <td>Regional Marketing</td> <td>Tokyo</td> <td>20</td> <td>2011/08/14</td> <td>Low</td> </tr> <tr> <td>Michelle House</td> <td>Integration Specialist</td> <td>Sidney</td> <td>37</td> <td>2011/06/02</td> <td>Low</td> </tr> <tr> <td>Suki Burks</td> <td>Developer</td> <td>London</td> <td>53</td> <td>2009/10/22</td> <td>Low</td> </tr> <tr> <td>Prescott Bartlett</td> <td>Technical Author</td> <td>London</td> <td>27</td> <td>2011/05/07</td> <td>Low</td> </tr> <tr> <td>Gavin Cortez</td> <td>Team Leader</td> <td>San Francisco</td> <td>22</td> <td>2008/10/26</td> <td>Low</td> </tr> <tr> <td>Martena Mccray</td> <td>Post-Sales support</td> <td>Edinburgh</td> <td>46</td> <td>2011/03/09</td> <td>Low</td> </tr> <tr> <td>Unity Butler</td> <td>Marketing Designer</td> <td>San Francisco</td> <td>47</td> <td>2009/12/09</td> <td>Low</td> </tr> <tr> <td>Howard Hatfield</td> <td>Office Manager</td> <td>San Francisco</td> <td>51</td> <td>2008/12/16</td> <td>Low</td> </tr> <tr> <td>Hope Fuentes</td> <td>Secretary</td> <td>San Francisco</td> <td>41</td> <td>2010/02/12</td> <td>Low</td> </tr> <tr> <td>Vivian Harrell</td> <td>Financial Controller</td> <td>San Francisco</td> <td>62</td> <td>2009/02/14</td> <td>Medium</td> </tr> <tr> <td>Timothy Mooney</td> <td>Office Manager</td> <td>London</td> <td>37</td> <td>2008/12/11</td> <td>Low</td> </tr> <tr> <td>Jackson Bradshaw</td> <td>Director</td> <td>New York</td> <td>65</td> <td>2008/09/26</td> <td>Medium</td> </tr> <tr> <td>Olivia Liang</td> <td>Support Engineer</td> <td>Singapore</td> <td>64</td> <td>2011/02/03</td> <td>Low</td> </tr> <tr> <td>Bruno Nash</td> <td>Software Engineer</td> <td>London</td> <td>38</td> <td>2011/05/03</td> <td>Low</td> </tr> <tr> <td>Sakura Yamamoto</td> <td>Support Engineer</td> <td>Tokyo</td> <td>37</td> <td>2009/08/19</td> <td>Low</td> </tr> <tr> <td>Thor Walton</td> <td>Developer</td> <td>New York</td> <td>61</td> <td>2013/08/11</td> <td>Low</td> </tr> <tr> <td>Finn Camacho</td> <td>Support Engineer</td> <td>San Francisco</td> <td>47</td> <td>2009/07/07</td> <td>Low</td> </tr> <tr> <td>Serge Baldwin</td> <td>Data Coordinator</td> <td>Singapore</td> <td>64</td> <td>2012/04/09</td> <td>Low</td> </tr> <tr> <td>Zenaida Frank</td> <td>Software Engineer</td> <td>New York</td> <td>63</td> <td>2010/01/04</td> <td>Low</td> </tr> <tr> <td>Zorita Serrano</td> <td>Software Engineer</td> <td>San Francisco</td> <td>56</td> <td>2012/06/01</td> <td>Low</td> </tr> <tr> <td>Jennifer Acosta</td> <td>Junior Javascript Developer</td> <td>Edinburgh</td> <td>43</td> <td>2013/02/01</td> <td>Low</td> </tr> <tr> <td>Cara Stevens</td> <td>Sales Assistant</td> <td>New York</td> <td>46</td> <td>2011/12/06</td> <td>Low</td> </tr> <tr> <td>Hermione Butler</td> <td>Regional Director</td> <td>London</td> <td>47</td> <td>2011/03/21</td> <td>Medium</td> </tr> <tr> <td>Lael Greer</td> <td>Systems Administrator</td> <td>London</td> <td>21</td> <td>2009/02/27</td> <td>Low</td> </tr> <tr> <td>Jonas Alexander</td> <td>Developer</td> <td>San Francisco</td> <td>30</td> <td>2010/07/14</td> <td>Low</td> </tr> <tr> <td>Shad Decker</td> <td>Regional Director</td> <td>Edinburgh</td> <td>51</td> <td>2008/11/13</td> <td>Low</td> </tr> <tr> <td>Michael Bruce</td> <td>Javascript Developer</td> <td>Singapore</td> <td>29</td> <td>2011/06/27</td> <td>Low</td> </tr> <tr> <td>Donna Snider</td> <td>Customer Support</td> <td>New York</td> <td>27</td> <td>2011/01/25</td> <td>Low</td> </tr> </tbody> </table> <ul class="tabs"> <li class="active">Javascript</li> <li>HTML</li> <li>CSS</li> <li>Ajax</li> <li>Server-side script</li> </ul> <div class="tabs"> <div class="js"> <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$.fn.dataTable.ext.type.detect.unshift( function ( d ) { return d === 'Low' || d === 'Medium' || d === 'High' ? 'salary-grade' : null; } ); $.fn.dataTable.ext.type.order['salary-grade-pre'] = function ( d ) { switch ( d ) { case 'Low': return 1; case 'Medium': return 2; case 'High': return 3; } return 0; }; $(document).ready(function() { $('#example').DataTable(); } );</code> <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p> <ul> <li> <a href="//code.jquery.com/jquery-1.12.3.min.js">//code.jquery.com/jquery-1.12.3.min.js</a> </li> <li> <a href="../../media/js/jquery.dataTables.js">../../media/js/jquery.dataTables.js</a> </li> </ul> </div> <div class="table"> <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p> </div> <div class="css"> <div> <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:</p><code class="multiline language-css"></code> </div> <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p> <ul> <li> <a href="../../media/css/jquery.dataTables.css">../../media/css/jquery.dataTables.css</a> </li> </ul> </div> <div class="ajax"> <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.</p> </div> <div class="php"> <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables documentation</a>.</p> </div> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <h2>Other examples</h2> <div class="toc"> <div class="toc-group"> <h3><a href="../basic_init/index.html">Basic initialisation</a></h3> <ul class="toc"> <li> <a href="../basic_init/zero_configuration.html">Zero configuration</a> </li> <li> <a href="../basic_init/filter_only.html">Feature enable / disable</a> </li> <li> <a href="../basic_init/table_sorting.html">Default ordering (sorting)</a> </li> <li> <a href="../basic_init/multi_col_sort.html">Multi-column ordering</a> </li> <li> <a href="../basic_init/multiple_tables.html">Multiple tables</a> </li> <li> <a href="../basic_init/hidden_columns.html">Hidden columns</a> </li> <li> <a href="../basic_init/complex_header.html">Complex headers (rowspan and colspan)</a> </li> <li> <a href="../basic_init/dom.html">DOM positioning</a> </li> <li> <a href="../basic_init/flexible_width.html">Flexible table width</a> </li> <li> <a href="../basic_init/state_save.html">State saving</a> </li> <li> <a href="../basic_init/alt_pagination.html">Alternative pagination</a> </li> <li> <a href="../basic_init/scroll_y.html">Scroll - vertical</a> </li> <li> <a href="../basic_init/scroll_y_dynamic.html">Scroll - vertical, dynamic height</a> </li> <li> <a href="../basic_init/scroll_x.html">Scroll - horizontal</a> </li> <li> <a href="../basic_init/scroll_xy.html">Scroll - horizontal and vertical</a> </li> <li> <a href="../basic_init/comma-decimal.html">Language - Comma decimal place</a> </li> <li> <a href="../basic_init/language.html">Language options</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../advanced_init/index.html">Advanced initialisation</a></h3> <ul class="toc"> <li> <a href="../advanced_init/events_live.html">DOM / jQuery events</a> </li> <li> <a href="../advanced_init/dt_events.html">DataTables events</a> </li> <li> <a href="../advanced_init/column_render.html">Column rendering</a> </li> <li> <a href="../advanced_init/length_menu.html">Page length options</a> </li> <li> <a href="../advanced_init/dom_multiple_elements.html">Multiple table control elements</a> </li> <li> <a href="../advanced_init/complex_header.html">Complex headers with column visibility</a> </li> <li> <a href="../advanced_init/object_dom_read.html">Read HTML to data objects</a> </li> <li> <a href="../advanced_init/html5-data-options.html">HTML5 data-* attributes - table options</a> </li> <li> <a href="../advanced_init/html5-data-attributes.html">HTML5 data-* attributes - cell data</a> </li> <li> <a href="../advanced_init/language_file.html">Language file</a> </li> <li> <a href="../advanced_init/defaults.html">Setting defaults</a> </li> <li> <a href="../advanced_init/row_callback.html">Row created callback</a> </li> <li> <a href="../advanced_init/row_grouping.html">Row grouping</a> </li> <li> <a href="../advanced_init/footer_callback.html">Footer callback</a> </li> <li> <a href="../advanced_init/dom_toolbar.html">Custom toolbar elements</a> </li> <li> <a href="../advanced_init/sort_direction_control.html">Order direction sequence control</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../styling/index.html">Styling</a></h3> <ul class="toc"> <li> <a href="../styling/display.html">Base style</a> </li> <li> <a href="../styling/no-classes.html">Base style - no styling classes</a> </li> <li> <a href="../styling/cell-border.html">Base style - cell borders</a> </li> <li> <a href="../styling/compact.html">Base style - compact</a> </li> <li> <a href="../styling/hover.html">Base style - hover</a> </li> <li> <a href="../styling/order-column.html">Base style - order-column</a> </li> <li> <a href="../styling/row-border.html">Base style - row borders</a> </li> <li> <a href="../styling/stripe.html">Base style - stripe</a> </li> <li> <a href="../styling/bootstrap.html">Bootstrap 3</a> </li> <li> <a href="../styling/foundation.html">Foundation</a> </li> <li> <a href="../styling/jqueryUI.html">jQuery UI ThemeRoller</a> </li> <li> <a href="../styling/bootstrap4.html">Bootstrap 4 (Tech. preview)</a> </li> <li> <a href="../styling/semanticui.html">Semantic UI (Tech. preview)</a> </li> <li> <a href="../styling/material.html">Material Design (Tech. preview)</a> </li> <li> <a href="../styling/uikit.html">UIKit (Tech. preview)</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../data_sources/index.html">Data sources</a></h3> <ul class="toc"> <li> <a href="../data_sources/dom.html">HTML (DOM) sourced data</a> </li> <li> <a href="../data_sources/ajax.html">Ajax sourced data</a> </li> <li> <a href="../data_sources/js_array.html">Javascript sourced data</a> </li> <li> <a href="../data_sources/server_side.html">Server-side processing</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../api/index.html">API</a></h3> <ul class="toc"> <li> <a href="../api/add_row.html">Add rows</a> </li> <li> <a href="../api/multi_filter.html">Individual column searching (text inputs)</a> </li> <li> <a href="../api/multi_filter_select.html">Individual column searching (select inputs)</a> </li> <li> <a href="../api/highlight.html">Highlighting rows and columns</a> </li> <li> <a href="../api/row_details.html">Child rows (show extra / detailed information)</a> </li> <li> <a href="../api/select_row.html">Row selection (multiple rows)</a> </li> <li> <a href="../api/select_single_row.html">Row selection and deletion (single row)</a> </li> <li> <a href="../api/form.html">Form inputs</a> </li> <li> <a href="../api/counter_columns.html">Index column</a> </li> <li> <a href="../api/show_hide.html">Show / hide columns dynamically</a> </li> <li> <a href="../api/api_in_init.html">Using API in callbacks</a> </li> <li> <a href="../api/tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a> </li> <li> <a href="../api/regex.html">Search API (regular expressions)</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../ajax/index.html">Ajax</a></h3> <ul class="toc"> <li> <a href="../ajax/simple.html">Ajax data source (arrays)</a> </li> <li> <a href="../ajax/objects.html">Ajax data source (objects)</a> </li> <li> <a href="../ajax/deep.html">Nested object data (objects)</a> </li> <li> <a href="../ajax/objects_subarrays.html">Nested object data (arrays)</a> </li> <li> <a href="../ajax/orthogonal-data.html">Orthogonal data</a> </li> <li> <a href="../ajax/null_data_source.html">Generated content for a column</a> </li> <li> <a href="../ajax/custom_data_property.html">Custom data source property</a> </li> <li> <a href="../ajax/custom_data_flat.html">Flat array data source</a> </li> <li> <a href="../ajax/defer_render.html">Deferred rendering for speed</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../server_side/index.html">Server-side</a></h3> <ul class="toc"> <li> <a href="../server_side/simple.html">Server-side processing</a> </li> <li> <a href="../server_side/custom_vars.html">Custom HTTP variables</a> </li> <li> <a href="../server_side/post.html">POST data</a> </li> <li> <a href="../server_side/ids.html">Automatic addition of row ID attributes</a> </li> <li> <a href="../server_side/object_data.html">Object data source</a> </li> <li> <a href="../server_side/row_details.html">Row details</a> </li> <li> <a href="../server_side/select_rows.html">Row selection</a> </li> <li> <a href="../server_side/jsonp.html">JSONP data source for remote domains</a> </li> <li> <a href="../server_side/defer_loading.html">Deferred loading of data</a> </li> <li> <a href="../server_side/pipeline.html">Pipelining data to reduce Ajax calls for paging</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="./index.html">Plug-ins</a></h3> <ul class="toc active"> <li> <a href="./api.html">API plug-in methods</a> </li> <li class="active"> <a href="./sorting_auto.html">Ordering plug-ins (with type detection)</a> </li> <li> <a href="./sorting_manual.html">Ordering plug-ins (no type detection)</a> </li> <li> <a href="./range_filtering.html">Custom filtering - range search</a> </li> <li> <a href="./dom_sort.html">Live DOM ordering</a> </li> </ul> </div> </div> <div class="epilogue"> <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br> Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href= "http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p> <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2016<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
week-2-challenge-5/starting-point.html
valeriesmith/valeriesmith.github.io
<!DOCTYPE html> <html lang="en"> <head> <!-- this tag is necessary to use the emulator --> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="stylesheet.css"> <title>Responsive Design and Fluid Layouts</title> </head> <body> <div id="wrapper"> <div id="header"> HEADER with some other stuff written along the top </div> <div id="container"> <div id="side-a"> <ul> <li><a href="#"> Home </a></li> <li><a href="#"> Profile </a></li> <li><a href="#"> Stuff </a></li> <li><a href="#"> Pictures </a></li> </ul> </div> <div id="content"> <img src='http://placekitten.com/g/800/300'> <p>Veggies es bonus vobis, proinde vos postulo essum magis kohlrabi welsh onion daikon amaranth tatsoi tomatillo melon azuki bean garlic. Gumbo beet greens corn soko endive gumbo gourd. Parsley shallot courgette tatsoi pea sprouts fava bean collard greens dandelion okra wakame tomato. Dandelion cucumber earthnut pea peanut soko zucchini. </p> <img src='http://placekitten.com/g/800/300'> <p>Beetroot water spinach okra water chestnut ricebean pea catsear courgette summer purslane. Water spinach arugula pea tatsoi aubergine spring onion bush tomato kale radicchio turnip chicory salsify pea sprouts fava bean. Dandelion zucchini burdock yarrow chickpea dandelion sorrel courgette turnip greens tigernut soybean radish artichoke wattle seed endive groundnut broccoli arugula. </p> <div class="reflection"> <h2>My Reflection</h2> <p><span class="inline_title">My Reflection:</span>I really enjoyed learning about responsive web design, although I feel as though I have only scratched the surface. I would love to get better at it. I'm still not sure that I am using CSS media queries properly or that I understand the best practices of setting up the CSS.</p> <p>This was a pairing challenge. We initially misunderstood the directions. I didn't understand that we were supposed to create a page that toggled in and out of two states, meaning that the nav bar would move when the browser window was shrunk to a certain width, and so forth. Instead, we implemented the changes in the main part of the CSS. We also got stuck on how to use CSS media queries, even after googling together. We ended up not finishing the challenge, but then working independently later in the day before getting back together on chat in the evening. My pair was lovely to work with and I felt like we were really collaborating during the initial hangout, so that was good.</p> <p>Some notes on pairing: I've identified this as an area where I need improvement. I need to get better at working through ideas WITH my pair, and fighting the urge to just table issues to go back to them later on my own. I need to work on not being afraid to show that I don't know things, and have more confidence in the things I do know. My tendency is to go back and revisit the work on my own, because I feel like this is the best way I learn. I plan on doing some research on pair programming in the coming weeks, and maybe also practicing thinking through things out loud when I am working by myself.</p> <p>I didn't discover the emulator in dev tools until after we had finished. I had a lot of trouble setting it up but once I did, I thought it was the coolest thing ever. </div> </div> </div> <div id="footer"> FOOTER </div> </div> </body> </html>
_includes/profile.html
itsdn/kactus
<div class="profile"> <section id="wrapper"> <header id="header"> {% if site.aboutPage %} <a href="{{ site.baseurl }}/about"> <img id="avatar" class="2x" src="{{ "/assets/images/avatar.png" | prepend: site.baseurl }}"/> </a> {% else %} <img id="avatar" class="2x" src="{{ "/assets/images/avatar.png" | prepend: site.baseurl }}"/> {% endif %} <h1>{{ site.author }}</h1> <h2>{{ site.description }}</h2> </header> </section> </div>
front-end/views/paragalaQuestions/questionnaire/thirteen.html
caninojories/jrc_admin
<div class="panel-heading row"> <h3 class="panel-title text-center">Best Variety Show</h3> </div> <div class="panel-body"> <ul class="list-group"> <li class="list-group-item"> <div class="radio"> <label> <input type="radio" name="BestVarietyShow" ng-model="vm.varietyShow" value="Showtime (ABS-CBN)" ng-change='vm.ngWatchVarietyShow( vm.varietyShow )'/>Showtime (ABS-CBN) </label> </div> </li> <li class="list-group-item"> <div class="radio"> <label> <input type="radio" name="BestVarietyShow" ng-model="vm.varietyShow" value="Eat Bulaga (GMA)" ng-change='vm.ngWatchVarietyShow( vm.varietyShow )'/>Eat Bulaga (GMA) </label> </div> </li> </ul> </div>
requests.html
Visgean/blog
<html> <head> <meta http-equiv="refresh" content="0; url=https://www.dropbox.com/request/gaLlPaZ3avkMlWcikmdr"> <link rel="canonical" href="https://www.dropbox.com/request/gaLlPaZ3avkMlWcikmdr" /> </head> </html>
lib/gft/doc/html/gft__matrix_8h.html
ademirtc/bandeirantes
<!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.6"/> <title>/home/pavm/programming/lib/gft/include/gft_matrix.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <!-- end header part --> <!-- Generated by Doxygen 1.8.6 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> &#124; <a href="#typedef-members">Typedefs</a> &#124; <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">gft_matrix.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &quot;<a class="el" href="gft__common_8h_source.html">gft_common.h</a>&quot;</code><br/> <code>#include &quot;<a class="el" href="gft__image32_8h_source.html">gft_image32.h</a>&quot;</code><br/> </div> <p><a href="gft__matrix_8h_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="nested-classes"></a> Classes</h2></td></tr> <tr class="memitem:"><td class="memItemLeft" align="right" valign="top">struct &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structgft_1_1Matrix_1_1__matrix.html">gft::Matrix::_matrix</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="namespaces"></a> Namespaces</h2></td></tr> <tr class="memitem:namespacegft"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft.html">gft</a></td></tr> <tr class="memdesc:namespacegft"><td class="mdescLeft">&#160;</td><td class="mdescRight">Base namespace for common definitions and prototypes. <br/></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:namespacegft_1_1Matrix"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html">gft::Matrix</a></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="typedef-members"></a> Typedefs</h2></td></tr> <tr class="memitem:aac4dc9ea9c8dc9abade70a84fbea7939"><td class="memItemLeft" align="right" valign="top">typedef struct <a class="el" href="structgft_1_1Matrix_1_1__matrix.html">gft::Matrix::_matrix</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#aac4dc9ea9c8dc9abade70a84fbea7939">gft::Matrix::Matrix</a></td></tr> <tr class="separator:aac4dc9ea9c8dc9abade70a84fbea7939"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions</h2></td></tr> <tr class="memitem:ae6a2a044a2d14349592a86c7c6818617"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#ae6a2a044a2d14349592a86c7c6818617">gft::Matrix::Create</a> (int ncols, int nrows)</td></tr> <tr class="separator:ae6a2a044a2d14349592a86c7c6818617"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3cb60e1ef34405968cd04d0749309cae"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a3cb60e1ef34405968cd04d0749309cae">gft::Matrix::Destroy</a> (Matrix **mat)</td></tr> <tr class="separator:a3cb60e1ef34405968cd04d0749309cae"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a260d70969b2b5d491db627a0f37c840e"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a260d70969b2b5d491db627a0f37c840e">gft::Matrix::Clone</a> (Matrix *mat)</td></tr> <tr class="separator:a260d70969b2b5d491db627a0f37c840e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6f9aec9897cada536ccc04375bb41de6"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a6f9aec9897cada536ccc04375bb41de6">gft::Matrix::Copy</a> (Matrix *dest, Matrix *src)</td></tr> <tr class="separator:a6f9aec9897cada536ccc04375bb41de6"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a35846f5ffcd9e19e3958681e4e399bb7"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a35846f5ffcd9e19e3958681e4e399bb7">gft::Matrix::Invert</a> (Matrix *A)</td></tr> <tr class="separator:a35846f5ffcd9e19e3958681e4e399bb7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afb597972edec29ec6aa64603b30663a7"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#afb597972edec29ec6aa64603b30663a7">gft::Matrix::Transpose</a> (Matrix *A)</td></tr> <tr class="separator:afb597972edec29ec6aa64603b30663a7"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0d1066ccb59072a0577e3ca9c68fb5ae"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a0d1066ccb59072a0577e3ca9c68fb5ae">gft::Matrix::Mult</a> (Matrix *A, Matrix *B)</td></tr> <tr class="separator:a0d1066ccb59072a0577e3ca9c68fb5ae"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad68411dccb25c13df2a15bde1b075511"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#ad68411dccb25c13df2a15bde1b075511">gft::Matrix::MultByScalar</a> (Matrix *A, float k)</td></tr> <tr class="separator:ad68411dccb25c13df2a15bde1b075511"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa0eb01485f2ee434e78d6e8187afe13d"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#aa0eb01485f2ee434e78d6e8187afe13d">gft::Matrix::Sub</a> (Matrix *A, Matrix *B)</td></tr> <tr class="separator:aa0eb01485f2ee434e78d6e8187afe13d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4a6b0a2470987697fe14353484672aea"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a4a6b0a2470987697fe14353484672aea">gft::Matrix::Add</a> (Matrix *A, Matrix *B)</td></tr> <tr class="separator:a4a6b0a2470987697fe14353484672aea"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9ed2b387eef5ab3335c6a23050225355"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a9ed2b387eef5ab3335c6a23050225355">gft::Matrix::GetTrace</a> (Matrix *M)</td></tr> <tr class="separator:a9ed2b387eef5ab3335c6a23050225355"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ada9e9fba8fee3797821a84cd4c574ed1"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#ada9e9fba8fee3797821a84cd4c574ed1">gft::Matrix::Print</a> (Matrix *M)</td></tr> <tr class="separator:ada9e9fba8fee3797821a84cd4c574ed1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab8a4a23e3bb76f54412a6a254e63f6cd"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#ab8a4a23e3bb76f54412a6a254e63f6cd">gft::Matrix::PrintDimension</a> (Matrix *M)</td></tr> <tr class="separator:ab8a4a23e3bb76f54412a6a254e63f6cd"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7ccc9b1d85321f55f60ad2de8afcea03"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a7ccc9b1d85321f55f60ad2de8afcea03">gft::Matrix::ComputeDistanceL2</a> (Matrix *Y, Matrix *X)</td></tr> <tr class="separator:a7ccc9b1d85321f55f60ad2de8afcea03"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abda1b97e822504017275cb46f3e702ec"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#abda1b97e822504017275cb46f3e702ec">gft::Matrix::Fill</a> (Matrix *M, float value)</td></tr> <tr class="separator:abda1b97e822504017275cb46f3e702ec"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aba52e5904870a4e515a8516864ea1f02"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#aba52e5904870a4e515a8516864ea1f02">gft::Matrix::ChangeValue</a> (Matrix *M, float old_value, float new_value)</td></tr> <tr class="separator:aba52e5904870a4e515a8516864ea1f02"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ab48b98d11734286a7b9066253460aa2e"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#ab48b98d11734286a7b9066253460aa2e">gft::Matrix::IsValidEntry</a> (Matrix *M, int i, int j)</td></tr> <tr class="separator:ab48b98d11734286a7b9066253460aa2e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a723e5bc1d8a1d76372cfa52f7097c6fa"><td class="memItemLeft" align="right" valign="top">Image32::Image32 *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a723e5bc1d8a1d76372cfa52f7097c6fa">gft::Matrix::Convert2Image</a> (Matrix *M)</td></tr> <tr class="separator:a723e5bc1d8a1d76372cfa52f7097c6fa"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5ac0577e95b5b062f96501e9d470ca0b"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a5ac0577e95b5b062f96501e9d470ca0b">gft::Matrix::Read</a> (char *filename)</td></tr> <tr class="separator:a5ac0577e95b5b062f96501e9d470ca0b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:abcf44518e519452765be89bfe38e9ba2"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#abcf44518e519452765be89bfe38e9ba2">gft::Matrix::Write</a> (Matrix *M, char *filename)</td></tr> <tr class="separator:abcf44518e519452765be89bfe38e9ba2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a0c79e498a23a2769eea14de3addbbc78"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a0c79e498a23a2769eea14de3addbbc78">gft::Matrix::GetMinimumValue</a> (Matrix *M)</td></tr> <tr class="separator:a0c79e498a23a2769eea14de3addbbc78"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a47e3aeb2a3ea13db9551eda65f3230ff"><td class="memItemLeft" align="right" valign="top">float&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a47e3aeb2a3ea13db9551eda65f3230ff">gft::Matrix::GetMaximumValue</a> (Matrix *M)</td></tr> <tr class="separator:a47e3aeb2a3ea13db9551eda65f3230ff"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aeb27ac9716ff7edc884741481d125da5"><td class="memItemLeft" align="right" valign="top">Image32::Image32 *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#aeb27ac9716ff7edc884741481d125da5">gft::Matrix::Threshold</a> (Matrix *M, float lower, float higher)</td></tr> <tr class="separator:aeb27ac9716ff7edc884741481d125da5"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a9329f1fa07d1f1eeab81e1991ad6eea4"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#a9329f1fa07d1f1eeab81e1991ad6eea4">gft::Matrix::RotationMatrix3</a> (int axis, float th)</td></tr> <tr class="separator:a9329f1fa07d1f1eeab81e1991ad6eea4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af29dec6cfd7cb57b50e3b16b9cd4652d"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#af29dec6cfd7cb57b50e3b16b9cd4652d">gft::Matrix::TranslationMatrix3</a> (float dx, float dy, float dz)</td></tr> <tr class="separator:af29dec6cfd7cb57b50e3b16b9cd4652d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aefbf44b7059c7c386f0f7c85e22207be"><td class="memItemLeft" align="right" valign="top">Matrix *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacegft_1_1Matrix.html#aefbf44b7059c7c386f0f7c85e22207be">gft::Matrix::TransformVoxel</a> (Matrix *m, <a class="el" href="namespacegft.html#a16db894075bb714f877a3c5733772db6">gft::Voxel</a> v)</td></tr> <tr class="separator:aefbf44b7059c7c386f0f7c85e22207be"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Wed Feb 25 2015 10:27:50 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.6 </small></address> </body> </html>
last_release/abapdoc/ZWB_OBJECTS/ZCL_WB_VIEW.html
fabiopagoti/WB-Objects
<HTML> <HEAD> <TITLE> ZCL_WB_VIEW </TITLE> <link rel="stylesheet" type="text/css" href="css/style_class.css" /> <link rel="stylesheet" type="text/css" href="css/style_function_groups.css" /> <link rel="stylesheet" type="text/css" href="css/style_object_list.css" /> </HEAD> <BODY> <H1>ZCL_WB_VIEW</H1> <BR/> Description: Database View <BR/> Visibility: Public <BR/> <H2>Attributes: </H2> <TABLE width="100%"> <TR class="top"> <TD>Name</TD> <TD>Level</TD> <TD>Visibility</TD> <TD>Read-Only</TD> <TD>Typing</TD> <TD>Associated Type</TD> <TD>Description</TD> <TD>Initial Value</TD> </TR> <TR> <TD>NAME</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>DDOBJNAME</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>STATE</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>DDOBJSTATE</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>LANGU</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>SY-LANGU</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>GOTSTATE</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>DDGOTSTATE</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD25V_WA</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>DD25V</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD09L_WA</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>DD09V</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD26V_TAB</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>TY_TT_DD26V</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD27P_TAB</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>TY_TT_DD27P</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD28J_TAB</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>TY_TT_DD28J</TD> <TD></TD> <TD></TD> </TR> <TR> <TD>DD28V_TAB</TD> <TD>Instance Attribute</TD> <TD>Public</TD> <TD>Yes</TD> <TD>Type</TD> <TD>TY_TT_DD28V</TD> <TD></TD> <TD></TD> </TR> </TABLE> <H2>Events: </H2> <BR/> </BODY> </HTML>
node_modules/grunt-contrib-nodeunit/node_modules/nodeunit/node_modules/tap/README.html
quattromani/placewise
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>doc</title> <style> /*github.com style (c) Vasily Polovnyov <vast@whiteants.net>*/ pre code { display: block; padding: 0.5em; color: #333; background: #f8f8ff } pre .comment, pre .template_comment, pre .diff .header, pre .javadoc { color: #998; font-style: italic } pre .keyword, pre .css .rule .keyword, pre .winutils, pre .javascript .title, pre .nginx .title, pre .subst, pre .request, pre .status { color: #333; font-weight: bold } pre .number, pre .hexcolor, pre .ruby .constant { color: #099; } pre .string, pre .tag .value, pre .phpdoc, pre .tex .formula { color: #d14 } pre .title, pre .id { color: #900; font-weight: bold } pre .javascript .title, pre .lisp .title, pre .clojure .title, pre .subst { font-weight: normal } pre .class .title, pre .haskell .type, pre .vhdl .literal, pre .tex .command { color: #458; font-weight: bold } pre .tag, pre .tag .title, pre .rules .property, pre .django .tag .keyword { color: #000080; font-weight: normal } pre .attribute, pre .variable, pre .lisp .body { color: #008080 } pre .regexp { color: #009926 } pre .class { color: #458; font-weight: bold } pre .symbol, pre .ruby .symbol .string, pre .lisp .keyword, pre .tex .special, pre .prompt { color: #990073 } pre .built_in, pre .lisp .title, pre .clojure .built_in { color: #0086b3 } pre .preprocessor, pre .pi, pre .doctype, pre .shebang, pre .cdata { color: #999; font-weight: bold } pre .deletion { background: #fdd } pre .addition { background: #dfd } pre .diff .change { background: #0086b3 } pre .chunk { color: #aaa } </style> </head> <body> <p>This is a mix-and-match set of utilities that you can use to write test harnesses and frameworks that communicate with one another using the Test Anything Protocol.</p> <p>If you don&#39;t yet know what TAP is, <a href="http://testanything.org/">you better ask somebody</a>.</p> <p>Default Usage:</p> <ol> <li>Make a directory. Maybe call it &#39;test&#39;. That&#39;d be nice and obvious.</li> <li>Put a bunch of test scripts in there. If they&#39;re node programs, then they should be &quot;.js&quot;. Anything else is assumed to be some kind of shell script, which should have a shebang line.</li> <li><code>npm install tap</code></li> <li>Update package.json scripts.test to include <code>tap ./test</code> <a href="https://gist.github.com/4469613">example gist</a></li> <li><code>npm test</code></li> </ol> <p>The output will be TAP-compliant.</p> <p>For extra special bonus points, you can do something like this:</p> <pre><code>var test = require(&quot;tap&quot;).test test(&quot;make sure the thingie is a thing&quot;, function (t) { t.equal(thingie, &quot;thing&quot;, &quot;thingie should be thing&quot;) t.deepEqual(array, [&quot;foo&quot;, &quot;bar&quot;], &quot;array has foo and bar elements&quot;) t.deepEqual(object, {foo: 42}, &quot;object has foo property&quot;) t.type(thingie, &quot;string&quot;, &quot;type of thingie is string&quot;) t.ok(true, &quot;this is always true&quot;) t.notOk(false, &quot;this is never true&quot;) t.test(&quot;a child test&quot;, function (t) { t.equal(this, superEasy, &quot;right!?&quot;) t.similar(7, 2, &quot;ever notice 7 is kinda like 2?&quot;, {todo: true}) t.test(&quot;so skippable&quot;, {skip: true}, function (t) { t.plan(1) // only one test in this block t.ok(true, &quot;but when the flag changes, it&#39;ll pass&quot;) // no need to end, since we had a plan. }) t.end() }) t.ok(99, &quot;can also skip individual assertions&quot;, {skip: true}) // end lets it know it&#39;s over. t.end() }) test(&quot;another one&quot;, function (t) { t.plan(1) t.ok(true, &quot;It&#39;s ok to plan, and also end. Watch.&quot;) t.end() // but it must match the plan! })</code></pre> <p>Node-tap is actually a collection of several modules, any of which may be mixed and matched however you please.</p> <p>If you don&#39;t like this test framework, and think you can do much much better, <em>I strongly encourage you to do so!</em> If you use this library, however, at least to output TAP-compliant results when <code>process.env.TAP</code> is set, then the data coming out of your framework will be much more consumable by machines.</p> <p>You can also use this to build programs that <em>consume</em> the TAP data, so this is very useful for CI systems and such.</p> <ul> <li>tap-assert: A collection of assert functions that return TAP result objects.</li> <li>tap-consumer: A stream interface for consuming TAP data.</li> <li>tap-producer: A class that produces a TAP stream by taking in result objects.</li> <li>tap-results: A class for keeping track of TAP result objects as they pass by, counting up skips, passes, fails, and so on.</li> <li>tap-runner: A program that runs through a directory running all the tests in it. (Tests which may or may not be TAP-outputting tests. But it&#39;s better if they are.)</li> <li>tap-test: A class for actually running tests.</li> <li>tap-harness: A class that runs tests. (Tests are also Harnesses, which is how sub-tests run.)</li> <li>tap-global-harness: A default harness that provides the top-level support for running TAP tests.</li> </ul> <h2 id="experimental-code-coverage-with-runforcover-bunker-">Experimental Code Coverage with runforcover &amp; bunker:</h2> <pre><code>TAP_COV=1 tap ./test [--cover=./lib,foo.js] [--coverage-dir=./coverage]</code></pre> <p>This feature is experimental, and will most likely change somewhat before being finalized. Feedback welcome.</p> </body> </html>
docs/3.2/d2/d6d/classcv_1_1FileNodeIterator-members.html
lucasbrsa/OpenCV-3.2
<!-- HTML header for doxygen 1.8.6--> <!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.12"/> <title>OpenCV: Member List</title> <link href="../../opencv.ico" rel="shortcut icon" type="image/x-icon" /> <link href="../../tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../jquery.js"></script> <script type="text/javascript" src="../../dynsections.js"></script> <link href="../../search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="../../search/searchdata.js"></script> <script type="text/javascript" src="../../search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js", "TeX/AMSmath.js", "TeX/AMSsymbols.js"], jax: ["input/TeX","output/HTML-CSS"], }); //<![CDATA[ MathJax.Hub.Config( { TeX: { Macros: { matTT: [ "\\[ \\left|\\begin{array}{ccc} #1 & #2 & #3\\\\ #4 & #5 & #6\\\\ #7 & #8 & #9 \\end{array}\\right| \\]", 9], fork: ["\\left\\{ \\begin{array}{l l} #1 & \\mbox{#2}\\\\ #3 & \\mbox{#4}\\\\ \\end{array} \\right.", 4], forkthree: ["\\left\\{ \\begin{array}{l l} #1 & \\mbox{#2}\\\\ #3 & \\mbox{#4}\\\\ #5 & \\mbox{#6}\\\\ \\end{array} \\right.", 6], vecthree: ["\\begin{bmatrix} #1\\\\ #2\\\\ #3 \\end{bmatrix}", 3], vecthreethree: ["\\begin{bmatrix} #1 & #2 & #3\\\\ #4 & #5 & #6\\\\ #7 & #8 & #9 \\end{bmatrix}", 9], hdotsfor: ["\\dots", 1], mathbbm: ["\\mathbb{#1}", 1], bordermatrix: ["\\matrix{#1}", 1] } } } ); //]]> </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"></script> <link href="../../doxygen.css" rel="stylesheet" type="text/css" /> <link href="../../stylesheet.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <!--#include virtual="/google-search.html"--> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="../../opencv-logo-small.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">OpenCV &#160;<span id="projectnumber">3.2.0</span> </div> <div id="projectbrief">Open Source Computer Vision</div> </td> </tr> </tbody> </table> </div> <script type="text/javascript"> //<![CDATA[ function getLabelName(innerHTML) { var str = innerHTML.toLowerCase(); // Replace all '+' with 'p' str = str.split('+').join('p'); // Replace all ' ' with '_' str = str.split(' ').join('_'); // Replace all '#' with 'sharp' str = str.split('#').join('sharp'); // Replace other special characters with 'ascii' + code for (var i = 0; i < str.length; i++) { var charCode = str.charCodeAt(i); if (!(charCode == 95 || (charCode > 96 && charCode < 123) || (charCode > 47 && charCode < 58))) str = str.substr(0, i) + 'ascii' + charCode + str.substr(i + 1); } return str; } function addToggle() { var $getDiv = $('div.newInnerHTML').last(); var buttonName = $getDiv.html(); var label = getLabelName(buttonName.trim()); $getDiv.attr("title", label); $getDiv.hide(); $getDiv = $getDiv.next(); $getDiv.attr("class", "toggleable_div label_" + label); $getDiv.hide(); } //]]> </script> <!-- end header part --> <!-- Generated by Doxygen 1.8.12 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "../../search",false,'Search'); </script> <script type="text/javascript" src="../../menudata.js"></script> <script type="text/javascript" src="../../menu.js"></script> <script type="text/javascript"> $(function() { initMenu('../../',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="../../d2/d75/namespacecv.html">cv</a></li><li class="navelem"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">FileNodeIterator</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">cv::FileNodeIterator Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a213590d07fed11f1a2a588400e05b8f8">container</a></td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#ad83667c1a044b9638d02c57e165e41bb">cvStartWriteRawData_Base64</a>(::CvFileStorage *fs, const char *name, int len, const char *dt)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#aa048945804bcbd368db919ce3ef775e5">FileNodeIterator</a>()</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a60b85a8659ece30ebf09721bdd16885c">FileNodeIterator</a>(const CvFileStorage *fs, const CvFileNode *node, size_t ofs=0)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a0e43453413ee5ee52b51c4061733aeb1">FileNodeIterator</a>(const FileNodeIterator &amp;it)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#ac674a613a4ed775ae15b55a7aa17c061">fs</a></td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a1e00cee62e8034030ff99abf2b902487">operator!=</a>(const FileNodeIterator &amp;it1, const FileNodeIterator &amp;it2)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a73e4a0844474b25bf254b08c7e4978d6">operator*</a>() const</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a6a06cf1a5b94057476a925f3f758c490">operator++</a>()</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a4daed1197209314a7a9bada1cb21af53">operator++</a>(int)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a77b08ee6b326b9d83ed01de4b30930d2">operator+=</a>(int ofs)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a4ec58573be20ff741b7f4d21bc223635">operator-</a>(const FileNodeIterator &amp;it1, const FileNodeIterator &amp;it2)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a527f6537606d4bd66626a54c814bd610">operator--</a>()</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a6a1d757fdad6bb3ccca73f9f767b90c3">operator--</a>(int)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a6910b1f94c1d9a2f4030fd6deab0b4f4">operator-=</a>(int ofs)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#adc777a683bdadcf17534f4c2c1b1a21c">operator-&gt;</a>() const</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#ada726685b67ed5fa4432cc30fb854d34">operator&lt;</a>(const FileNodeIterator &amp;it1, const FileNodeIterator &amp;it2)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a52f26a2fbe666de1926f67be05ee9dee">operator==</a>(const FileNodeIterator &amp;it1, const FileNodeIterator &amp;it2)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a0e9987928ef46a3fe99b3fe02b659dd4">operator&gt;&gt;</a>(FileNodeIterator &amp;it, _Tp &amp;value)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a1b91e417a7103145b4997e086aec99df">operator&gt;&gt;</a>(FileNodeIterator &amp;it, std::vector&lt; _Tp &gt; &amp;vec)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"><span class="mlabel">related</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#ab8b976a97cc6496a51857ef518027ed0">reader</a></td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a64ef557e066e7a877ee7e376cd0ecd49">readRaw</a>(const String &amp;fmt, uchar *vec, size_t maxCount=(size_t) INT_MAX)</td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html#a5cba97d39d41f0e52d64b677ad392143">remaining</a></td><td class="entry"><a class="el" href="../../d7/d4e/classcv_1_1FileNodeIterator.html">cv::FileNodeIterator</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- HTML footer for doxygen 1.8.6--> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Dec 23 2016 13:00:27 for OpenCV by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/> </a> 1.8.12 </small></address> <script type="text/javascript"> //<![CDATA[ function addButton(label, buttonName) { var b = document.createElement("BUTTON"); b.innerHTML = buttonName; b.setAttribute('class', 'toggleable_button label_' + label); b.onclick = function() { $('.toggleable_button').css({ border: '2px outset', 'border-radius': '4px' }); $('.toggleable_button.label_' + label).css({ border: '2px inset', 'border-radius': '4px' }); $('.toggleable_div').css('display', 'none'); $('.toggleable_div.label_' + label).css('display', 'block'); }; b.style.border = '2px outset'; b.style.borderRadius = '4px'; b.style.margin = '2px'; return b; } function buttonsToAdd($elements, $heading, $type) { if ($elements.length === 0) { $elements = $("" + $type + ":contains(" + $heading.html() + ")").parent().prev("div.newInnerHTML"); } var arr = jQuery.makeArray($elements); var seen = {}; arr.forEach(function(e) { var txt = e.innerHTML; if (!seen[txt]) { $button = addButton(e.title, txt); if (Object.keys(seen).length == 0) { var linebreak1 = document.createElement("br"); var linebreak2 = document.createElement("br"); ($heading).append(linebreak1); ($heading).append(linebreak2); } ($heading).append($button); seen[txt] = true; } }); return; } $("h2").each(function() { $heading = $(this); $smallerHeadings = $(this).nextUntil("h2").filter("h3").add($(this).nextUntil("h2").find("h3")); if ($smallerHeadings.length) { $smallerHeadings.each(function() { var $elements = $(this).nextUntil("h3").filter("div.newInnerHTML"); buttonsToAdd($elements, $(this), "h3"); }); } else { var $elements = $(this).nextUntil("h2").filter("div.newInnerHTML"); buttonsToAdd($elements, $heading, "h2"); } }); $(".toggleable_button").first().click(); var $clickDefault = $('.toggleable_button.label_python').first(); if ($clickDefault.length) { $clickDefault.click(); } $clickDefault = $('.toggleable_button.label_cpp').first(); if ($clickDefault.length) { $clickDefault.click(); } //]]> </script> </body> </html>
index.html
MasoodGit/ngWaitStaffCalculator
<!DOCTYPE html> <html ng-app="waitStaffApp"> <head> <title>WaitStaff Calculator</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="container"> <header> <h1 class="text-center border-bottom">WaitStaff Calculator</h1> </header> <div class="row"> <div class="col-md-12"> <nav> <ul> <li><a href="#/">Home</a></li> <li><a href="#/newMeal">New Meal</a></li> <li><a href="#/myEarnings">My Earnings</a></li> </ul> </nav> <div class="center-content" ng-view></div> </div> </div> </div> <script type="text/javascript" src="angular.js"></script> <script type="text/javascript" src="angular-messages.js"></script> <script type="text/javascript" src="angular-route.js"></script> <script type="text/javascript" src="app.js"></script> <script type="text/javascript" src="myEarningsService.js"></script> <script type="text/ng-template" id="number-error-messages"> <p ng-message="number">Enter a number</p> <p ng-message="required">Number is required.</p> </script> </body> </html>
old/src/external/asio-1.10.2/doc/asio/reference/stream_socket_service/receive.html
dhh1128/intent
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>stream_socket_service::receive</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../stream_socket_service.html" title="stream_socket_service"> <link rel="prev" href="protocol_type.html" title="stream_socket_service::protocol_type"> <link rel="next" href="remote_endpoint.html" title="stream_socket_service::remote_endpoint"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="protocol_type.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../stream_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="remote_endpoint.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.stream_socket_service.receive"></a><a class="link" href="receive.html" title="stream_socket_service::receive">stream_socket_service::receive</a> </h4></div></div></div> <p> <a class="indexterm" name="idp161246352"></a> Receive some data from the peer. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <a class="link" href="../MutableBufferSequence.html" title="Mutable buffer sequence requirements">MutableBufferSequence</a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="identifier">receive</span><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">,</span> <span class="keyword">const</span> <span class="identifier">MutableBufferSequence</span> <span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">socket_base</span><span class="special">::</span><span class="identifier">message_flags</span> <span class="identifier">flags</span><span class="special">,</span> <span class="identifier">asio</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2014 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="protocol_type.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../stream_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="remote_endpoint.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
resources/src/plugins/layer/skin/layer.css
TCL-MIG-FE/velocity-startkit
/*! @Name: layer's style @Author: 贤心 @Blog: sentsin.com */ * html { background-image: url(about:blank); background-attachment: fixed; } html #layui_layer_skinlayercss { display: none; position: absolute; width: 1989px; } /* common */ .layui-layer-shade, .layui-layer { position: fixed; _position: absolute; pointer-events: auto; } .layui-layer-shade { top: 0; left: 0; width: 100%; height: 100%; _height: expression(document.body.offsetHeight+"px"); } .layui-layer { -webkit-overflow-scrolling: touch; } .layui-layer { top: 150px; left: 0; margin: 0; padding: 0; background-color: #fff; -webkit-background-clip: content; box-shadow: 1px 1px 50px rgba(0, 0, 0, .3); } .layui-layer-close { position: absolute; } .layui-layer-content { position: relative; } .layui-layer-border { border: 1px solid #B2B2B2; border: 1px solid rgba(0, 0, 0, .3); box-shadow: 1px 1px 5px rgba(0, 0, 0, .2); } .layui-layer-moves { position: absolute; border: 3px solid #666; border: 3px solid rgba(0, 0, 0, .5); cursor: move; background-color: #fff; background-color: rgba(255, 255, 255, .3); filter: alpha(opacity=50); } .layui-layer-load { background: url(default/loading-0.gif) #fff center center no-repeat; } .layui-layer-ico { background: url(default/icon.png) no-repeat; } .layui-layer-dialog .layui-layer-ico, .layui-layer-setwin a, .layui-layer-btn a { display: inline-block; *display: inline; *zoom: 1; vertical-align: top; } /* 动画 */ .layui-layer { border-radius: 2px; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: .3s; animation-duration: .3s; } @-webkit-keyframes bounceIn { /* 默认 */ 0% { opacity: 0; -webkit-transform: scale(.5); transform: scale(.5) } 100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1) } } @keyframes bounceIn { 0% { opacity: 0; -webkit-transform: scale(.5); -ms-transform: scale(.5); transform: scale(.5) } 100% { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1) } } .layer-anim { -webkit-animation-name: bounceIn; animation-name: bounceIn } @-webkit-keyframes bounceOut { 100% { opacity: 0; -webkit-transform: scale(.7); transform: scale(.7) } 30% { -webkit-transform: scale(1.03); transform: scale(1.03) } 0% { -webkit-transform: scale(1); transform: scale(1); } } @keyframes bounceOut { 100% { opacity: 0; -webkit-transform: scale(.7); -ms-transform: scale(.7); transform: scale(.7) } 30% { -webkit-transform: scale(1.03); -ms-transform: scale(1.03); transform: scale(1.03) } 0% { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1) } } .layer-anim-close { -webkit-animation-name: bounceOut; animation-name: bounceOut; -webkit-animation-duration: .2s; animation-duration: .2s; } @-webkit-keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale(.1) translateY(-2000px); transform: scale(.1) translateY(-2000px); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out } 60% { opacity: 1; -webkit-transform: scale(.475) translateY(60px); transform: scale(.475) translateY(60px); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out } } @keyframes zoomInDown { 0% { opacity: 0; -webkit-transform: scale(.1) translateY(-2000px); -ms-transform: scale(.1) translateY(-2000px); transform: scale(.1) translateY(-2000px); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out } 60% { opacity: 1; -webkit-transform: scale(.475) translateY(60px); -ms-transform: scale(.475) translateY(60px); transform: scale(.475) translateY(60px); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out } } .layer-anim-01 { -webkit-animation-name: zoomInDown; animation-name: zoomInDown } @-webkit-keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translateY(2000px); transform: translateY(2000px) } 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0) } } @keyframes fadeInUpBig { 0% { opacity: 0; -webkit-transform: translateY(2000px); -ms-transform: translateY(2000px); transform: translateY(2000px) } 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0) } } .layer-anim-02 { -webkit-animation-name: fadeInUpBig; animation-name: fadeInUpBig } @-webkit-keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale(.1) translateX(-2000px); transform: scale(.1) translateX(-2000px); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out } 60% { opacity: 1; -webkit-transform: scale(.475) translateX(48px); transform: scale(.475) translateX(48px); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out } } @keyframes zoomInLeft { 0% { opacity: 0; -webkit-transform: scale(.1) translateX(-2000px); -ms-transform: scale(.1) translateX(-2000px); transform: scale(.1) translateX(-2000px); -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out } 60% { opacity: 1; -webkit-transform: scale(.475) translateX(48px); -ms-transform: scale(.475) translateX(48px); transform: scale(.475) translateX(48px); -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out } } .layer-anim-03 { -webkit-animation-name: zoomInLeft; animation-name: zoomInLeft } @-webkit-keyframes rollIn { 0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); transform: translateX(-100%) rotate(-120deg) } 100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); transform: translateX(0px) rotate(0deg) } } @keyframes rollIn { 0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); -ms-transform: translateX(-100%) rotate(-120deg); transform: translateX(-100%) rotate(-120deg) } 100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); -ms-transform: translateX(0px) rotate(0deg); transform: translateX(0px) rotate(0deg) } } .layer-anim-04 { -webkit-animation-name: rollIn; animation-name: rollIn } @keyframes fadeIn { 0% { opacity: 0 } 100% { opacity: 1 } } .layer-anim-05 { -webkit-animation-name: fadeIn; animation-name: fadeIn } @-webkit-keyframes shake { 0%, 100% { -webkit-transform: translateX(0); transform: translateX(0) } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-10px); transform: translateX(-10px) } 20%, 40%, 60%, 80% { -webkit-transform: translateX(10px); transform: translateX(10px) } } @keyframes shake { 0%, 100% { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0) } 10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-10px); -ms-transform: translateX(-10px); transform: translateX(-10px) } 20%, 40%, 60%, 80% { -webkit-transform: translateX(10px); -ms-transform: translateX(10px); transform: translateX(10px) } } .layer-anim-06 { -webkit-animation-name: shake; animation-name: shake } @-webkit-keyframes fadeIn { 0% { opacity: 0 } 100% { opacity: 1 } } /* 标题栏 */ .layui-layer-title { padding: 0 80px 0 20px; height: 42px; line-height: 42px; border-bottom: 1px solid #eee; font-size: 14px; color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background-color: #F8F8F8; border-radius: 2px 2px 0 0; } .layui-layer-setwin { position: absolute; right: 15px; *right: 0; top: 15px; font-size: 0; line-height: initial; } .layui-layer-setwin a { position: relative; width: 16px; height: 16px; margin-left: 10px; font-size: 12px; _overflow: hidden; } .layui-layer-setwin .layui-layer-min cite { position: absolute; width: 14px; height: 2px; left: 0; top: 50%; margin-top: -1px; background-color: #2E2D3C; cursor: pointer; _overflow: hidden; } .layui-layer-setwin .layui-layer-min:hover cite { background-color: #2D93CA; } .layui-layer-setwin .layui-layer-max { background-position: -32px -40px; } .layui-layer-setwin .layui-layer-max:hover { background-position: -16px -40px; } .layui-layer-setwin .layui-layer-maxmin { background-position: -65px -40px; } .layui-layer-setwin .layui-layer-maxmin:hover { background-position: -49px -40px; } .layui-layer-setwin .layui-layer-close1 { background-position: 0 -40px; cursor: pointer; } .layui-layer-setwin .layui-layer-close1:hover { opacity: 0.7; } .layui-layer-setwin .layui-layer-close2 { position: absolute; right: -28px; top: -28px; width: 30px; height: 30px; margin-left: 0; background-position: -149px -31px; *right: -18px; _display: none; } .layui-layer-setwin .layui-layer-close2:hover { background-position: -180px -31px; } /* 按钮栏 */ .layui-layer-btn { text-align: right; padding: 0 10px 12px; pointer-events: auto; } .layui-layer-btn a { height: 28px; line-height: 28px; margin: 0 6px; padding: 0 15px; border: 1px #dedede solid; background-color: #f1f1f1; color: #333; border-radius: 2px; font-weight: 400; cursor: pointer; text-decoration: none; } .layui-layer-btn a:hover { opacity: 0.9; text-decoration: none; } .layui-layer-btn a:active { opacity: 0.7; } .layui-layer-btn .layui-layer-btn0 { border-color: #4898d5; background-color: #2e8ded; color: #fff; } /* 定制化 */ .layui-layer-dialog { min-width: 260px; } .layui-layer-dialog .layui-layer-content { position: relative; padding: 20px; line-height: 24px; word-break: break-all; overflow: hidden; font-size: 14px; overflow-x: hidden; overflow-y: auto; } .layui-layer-dialog .layui-layer-content .layui-layer-ico { position: absolute; top: 16px; left: 15px; _left: -40px; width: 30px; height: 30px; } .layui-layer-ico1 { background-position: -30px 0 } .layui-layer-ico2 { background-position: -60px 0; } .layui-layer-ico3 { background-position: -90px 0; } .layui-layer-ico4 { background-position: -120px 0; } .layui-layer-ico5 { background-position: -150px 0; } .layui-layer-ico6 { background-position: -180px 0; } .layui-layer-rim { border: 6px solid #8D8D8D; border: 6px solid rgba(0, 0, 0, .3); border-radius: 5px; box-shadow: none; } .layui-layer-msg { min-width: 180px; border: 1px solid #D3D4D3; box-shadow: none; } .layui-layer-hui { min-width: 100px; background-color: #000; filter: alpha(opacity=60); background-color: rgba(0, 0, 0, 0.6); color: #fff; border: none; } .layui-layer-hui .layui-layer-content { padding: 12px 25px; text-align: center; } .layui-layer-dialog .layui-layer-padding { padding: 20px 20px 20px 55px; text-align: left; } .layui-layer-page .layui-layer-content { position: relative; overflow: auto; } .layui-layer-page .layui-layer-btn, .layui-layer-iframe .layui-layer-btn { padding-top: 10px; } .layui-layer-nobg { background: none; } .layui-layer-iframe .layui-layer-content { overflow: hidden; } .layui-layer-iframe iframe { display: block; width: 100%; } .layui-layer-loading { border-radius: 100%; background: none; box-shadow: none; border: none; } .layui-layer-loading .layui-layer-content { width: 60px; height: 24px; background: url(default/loading-0.gif) no-repeat; } .layui-layer-loading .layui-layer-loading1 { width: 37px; height: 37px; background: url(default/loading-1.gif) no-repeat; } .layui-layer-loading .layui-layer-loading2, .layui-layer-ico16 { width: 32px; height: 32px; background: url(default/loading-2.gif) no-repeat; } .layui-layer-tips { background: none; box-shadow: none; border: none; } .layui-layer-tips .layui-layer-content { position: relative; line-height: 22px; min-width: 12px; padding: 5px 10px; font-size: 12px; _float: left; border-radius: 3px; box-shadow: 1px 1px 3px rgba(0, 0, 0, .3); background-color: #FF9900; color: #fff; } .layui-layer-tips .layui-layer-close { right: -2px; top: -1px; } .layui-layer-tips i.layui-layer-TipsG { position: absolute; width: 0; height: 0; border-width: 8px; border-color: transparent; border-style: dashed; *overflow: hidden; } .layui-layer-tips i.layui-layer-TipsT, .layui-layer-tips i.layui-layer-TipsB { left: 5px; border-right-style: solid; border-right-color: #FF9900; } .layui-layer-tips i.layui-layer-TipsT { bottom: -8px; } .layui-layer-tips i.layui-layer-TipsB { top: -8px; } .layui-layer-tips i.layui-layer-TipsR, .layui-layer-tips i.layui-layer-TipsL { top: 1px; border-bottom-style: solid; border-bottom-color: #FF9900; } .layui-layer-tips i.layui-layer-TipsR { left: -8px; } .layui-layer-tips i.layui-layer-TipsL { right: -8px; } /* skin */ .layui-layer-lan[type="dialog"] { min-width: 280px; } .layui-layer-lan .layui-layer-title { background: #4476A7; color: #fff; border: none; } .layui-layer-lan .layui-layer-btn { padding: 10px; text-align: right; border-top: 1px solid #E9E7E7 } .layui-layer-lan .layui-layer-btn a { background: #BBB5B5; border: none; } .layui-layer-lan .layui-layer-btn .layui-layer-btn1 { background: #C9C5C5; } .layui-layer-molv .layui-layer-title { background: #009f95; color: #fff; border: none; } .layui-layer-molv .layui-layer-btn a { background: #009f95; } .layui-layer-molv .layui-layer-btn .layui-layer-btn1 { background: #92B8B1; } /** @Name: layer拓展样式 */ .layui-layer-iconext { background: url(default/icon-ext.png) no-repeat; } /* prompt模式 */ .layui-layer-prompt .layui-layer-input { display: block; width: 220px; height: 30px; margin: 0 auto; line-height: 30px; padding: 0 5px; border: 1px solid #ccc; box-shadow: 1px 1px 5px rgba(0, 0, 0, .1) inset; color: #333; } .layui-layer-prompt textarea.layui-layer-input { width: 300px; height: 100px; line-height: 20px; } /* tab模式 */ .layui-layer-tab { box-shadow: 1px 1px 50px rgba(0, 0, 0, .4); } .layui-layer-tab .layui-layer-title { padding-left: 0; border-bottom: 1px solid #ccc; background-color: #eee; overflow: visible; } .layui-layer-tab .layui-layer-title span { position: relative; float: left; min-width: 80px; max-width: 260px; padding: 0 20px; text-align: center; cursor: default; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .layui-layer-tab .layui-layer-title span.layui-layer-tabnow { height: 43px; border-left: 1px solid #ccc; border-right: 1px solid #ccc; background-color: #fff; z-index: 10; } .layui-layer-tab .layui-layer-title span:first-child { border-left: none; } .layui-layer-tabmain { line-height: 24px; clear: both; } .layui-layer-tabmain .layui-layer-tabli { display: none; } .layui-layer-tabmain .layui-layer-tabli.xubox_tab_layer { display: block; } .xubox_tabclose { position: absolute; right: 10px; top: 5px; cursor: pointer; } /* photo模式 */ .layui-layer-photos { -webkit-animation-duration: 1s; animation-duration: 1s; } .layui-layer-photos .layui-layer-content { overflow: hidden; text-align: center; } .layui-layer-photos .layui-layer-phimg img { position: relative; width: 100%; display: inline-block; *display: inline; *zoom: 1; vertical-align: top; } .layui-layer-imguide, .layui-layer-imgbar { display: none; } .layui-layer-imgprev, .layui-layer-imgnext { position: absolute; top: 50%; width: 27px; _width: 44px; height: 44px; margin-top: -22px; outline: none; blr: expression(this.onFocus=this.blur()); } .layui-layer-imgprev { left: 10px; background-position: -5px -5px; _background-position: -70px -5px; } .layui-layer-imgprev:hover { background-position: -33px -5px; _background-position: -120px -5px; } .layui-layer-imgnext { right: 10px; _right: 8px; background-position: -5px -50px; _background-position: -70px -50px; } .layui-layer-imgnext:hover { background-position: -33px -50px; _background-position: -120px -50px; } .layui-layer-imgbar { position: absolute; left: 0; bottom: 0; width: 100%; height: 32px; line-height: 32px; background-color: rgba(0, 0, 0, .8); background-color: #000 \9; filter: Alpha(opacity=80); color: #fff; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; font-size: 0; } .layui-layer-imgtit { /*position:absolute; left:20px;*/ } .layui-layer-imgtit * { display: inline-block; *display: inline; *zoom: 1; vertical-align: top; font-size: 12px; } .layui-layer-imgtit a { max-width: 65%; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; color: #fff; } .layui-layer-imgtit a:hover { color: #fff; text-decoration: underline; } .layui-layer-imgtit em { padding-left: 10px; font-style: normal; }
levels/t4.html
grunfeld/grunfeld.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/x-icon" href="../favicon.ico"> <link rel="stylesheet" type="text/css" href="../css/font-awesome-4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" type="text/css" href="../css/fonts.css"> <link rel="stylesheet" type="text/css" href="../css/sweetalert.css"> <link rel="stylesheet" type="text/css" href="../css/game.css"> <title>C.A.S.E.O.</title> </head> <body> <div class="center-align-container"> <canvas id="myCanvas" class="myCanvas"></canvas> </div> <div class="center-align-container" style="font-size:1.4em;margin-top:0;padding-top:0"> <a href="../menu.html" style="color:rgba(150, 146, 130, 0.7)"><i class="fa fa-bars fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="LOCK_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-lock fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="UNDO_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-times fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a id="BOOKMARK_BTN" style="color:rgba(150, 146, 130, 0.7);cursor:pointer"><i class="fa fa-bookmark-o fa-3x" aria-hidden="true"></i></a> <span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span> <a onclick="ReloadPage()" style="color:#DB7093;cursor:pointer"><i class="fa fa-repeat fa-3x" aria-hidden="true"></i></a> </div> <script src="../js/jquery-3.2.1.min.js"></script> <script src="../js/sweetalert.min.js"></script> <script src="../js/js.cookie.js"></script> <script src="../js/utils.js"></script> <script src="../js/board.js"></script> <script> $(document).ready(function() { let R = 3; let C = 3; let row_data = [[0, 0, 2], [1, 1, 1], [1, 1, 1], [0, 0, 2]]; let col_data = [[0, 1, 0, 0], [2, 1, 1, 0], [0, 1, 1, 0]]; let win_h = $(window).height(); let win_w = $(window).width(); let FONT = "Courier, monospace"; let fh = 2; let font_dim = MeasureText("A", true, FONT, fh); let char_h = font_dim[1]; let char_w = font_dim[0]; let req_h = R * 5 * char_h + (R+1) * char_h + 80; let req_w = C * 11 * char_w + (C+1) * char_w + 80; while (req_h < win_h && req_w < win_w) { ++fh; font_dim = MeasureText("A", true, FONT, fh); char_h = font_dim[1]; char_w = font_dim[0]; req_h = R * 5 * char_h + (R+1) * char_h + 80; req_w = C * 11 * char_w + (C+1) * char_w + 80; } var _b = new board(R, C, "myCanvas", FONT, fh-1); _b.RestoreBookmark(row_data, col_data); function getMousePos(canvas, evt) { let rect = canvas.getBoundingClientRect(); return { x: (evt.clientX-rect.left) / (rect.right-rect.left) * canvas.width, y: (evt.clientY-rect.top) / (rect.bottom-rect.top) * canvas.height }; } var canvas = document.getElementById("myCanvas"); var _ctx = canvas.getContext("2d"); _ctx.strokeStyle = "#E6E6FA"; _ctx.lineWidth = Math.floor(fh*1.33); var _drawing = false; var _mousePos = { x : -1, y : -1 }; var _lastPos = _mousePos; $('body').on('contextmenu', '#myCanvas', function(e) { // Disable default right-click - it is used for creating helper walls return false; }); canvas.addEventListener("mousedown", function (e) { _ctx.beginPath(); _drawing = true; _lastPos = getMousePos(canvas, e); _ctx.lineJoin = _ctx.lineCap = 'round'; }, false); canvas.addEventListener("mouseup", function (e) { if (_drawing) { _ctx.closePath(); _mousePos = getMousePos(canvas, e); if (e.which && e.which == 3) _b.AddHelperWall(_mousePos.x, _mousePos.y); else _b.Clicked(_mousePos.x, _mousePos.y); _lastPos = _mousePos; _drawing = false; } }, false); canvas.addEventListener("mousemove", function (e) { _mousePos = getMousePos(canvas, e); }, false); canvas.addEventListener("mouseout", function (e) { var mouseEvent = new MouseEvent("mouseup", {}); canvas.dispatchEvent(mouseEvent); }, false); function renderCanvas() { if (_drawing) { if (_lastPos.x > 0 && _lastPos.y > 0 && _mousePos.x > 0 && _mousePos.y > 0) { _ctx.moveTo(_lastPos.x, _lastPos.y); _ctx.lineTo(_mousePos.x, _mousePos.y); _ctx.stroke(); } _lastPos = _mousePos; _b.LogDragClick(_mousePos.x, _mousePos.y); } } (function drawLoop () { requestAnimFrame(drawLoop); renderCanvas(); })(); // TOUCH EVENTS // Prevent scrolling when touching the canvas canvas.addEventListener("touchstart", function (e) { e.preventDefault(); var touch = e.touches[0]; var mouseEvent = new MouseEvent("mousedown", { clientX: touch.clientX, clientY: touch.clientY }); canvas.dispatchEvent(mouseEvent); }, false); canvas.addEventListener("touchend", function (e) { var mouseEvent = new MouseEvent("mouseup", {}); canvas.dispatchEvent(mouseEvent); }, false); canvas.addEventListener("touchmove", function (e) { e.preventDefault(); var touch = e.touches[0]; var mouseEvent = new MouseEvent("mousemove", { clientX: touch.clientX, clientY: touch.clientY }); canvas.dispatchEvent(mouseEvent); }, false); $("#LOCK_BTN").click(function() { _b.ToggleLock(); }); $("#UNDO_BTN").click(function() { _b.RestoreLockedState(); }); $("#BOOKMARK_BTN").click(function() { _b.Bookmark(); }); }); </script> </body> </html>
2016/05/Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes/index.html
reneisrael/reneisrael.github.io
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Una modelo nos enseña a saber si una mujer tiene implantes | La Red Semanario</title> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="keywords" content="sexy,senos,implantes" /> <meta name="description" content="Hay ciertas preguntas en la vida que merecen dedicarles un poco de nuestro tiempo para encontrar su respuesta. De vez en cuando nos cuestionamos cosas como: Cuál es nuestro propósito en la vida, si e"> <meta property="og:type" content="article"> <meta property="og:title" content="Una modelo nos enseña a saber si una mujer tiene implantes"> <meta property="og:url" content="https://laredsemanario.com/2016/05/Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes/index.html"> <meta property="og:site_name" content="La Red Semanario"> <meta property="og:description" content="Hay ciertas preguntas en la vida que merecen dedicarles un poco de nuestro tiempo para encontrar su respuesta. De vez en cuando nos cuestionamos cosas como: Cuál es nuestro propósito en la vida, si e"> <meta property="og:image" content="https://laredsemanario.com/images/implantes-senos-1.png"> <meta property="og:updated_time" content="2016-05-06T14:21:51.732Z"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Una modelo nos enseña a saber si una mujer tiene implantes"> <meta name="twitter:description" content="Hay ciertas preguntas en la vida que merecen dedicarles un poco de nuestro tiempo para encontrar su respuesta. De vez en cuando nos cuestionamos cosas como: Cuál es nuestro propósito en la vida, si e"> <meta name="twitter:image" content="https://laredsemanario.com/images/implantes-senos-1.png"> <meta name="twitter:creator" content="@3171117842"> <meta property="fb:app_id" content="956176474392711"> <link rel="icon" href="/favicon.ico" /> <link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" href="/vendor/titillium-web/styles.css"> <link rel="stylesheet" href="/vendor/source-code-pro/styles.css"> <link rel="stylesheet" href="/css/style.css"> <script src="/vendor/jquery/2.0.3/jquery.min.js"></script> <link rel="stylesheet" href="/vendor/fancybox/jquery.fancybox.css"> <link rel="stylesheet" href="/vendor/scrollLoading/style.css"> <script type="text/javascript"> (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-62238178-1', 'auto'); ga('send', 'pageview'); </script> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <script> (adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-4967243132865960", enable_page_level_ads: true }); </script> </head> <body> <div id="wrap"> <header id="header"> <div id="header-outer" class="outer"> <div class="container"> <div class="container-inner"> <div id="header-title"> <h1 class="logo-wrap"> <a href="/" class="logo"></a> </h1> <div id="ads"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- header-lared --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4967243132865960" data-ad-slot="2438400321" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script></div> </div> <div id="header-inner" class="nav-container"> <a id="main-nav-toggle" class="nav-icon fa fa-bars"></a> <div class="nav-container-inner"> <ul id="main-nav"> <li class="main-nav-list-item" > <a class="main-nav-list-link" href="/">Inicio</a> </li> </ul> <nav id="sub-nav"> <div id="search-form-wrap"> <form class="search-form"> <input type="text" class="ins-search-input search-form-input" placeholder="Buscar" /> <button type="submit" class="search-form-submit"></button> </form> <div class="ins-search"> <div class="ins-search-mask"></div> <div class="ins-search-container"> <div class="ins-input-wrapper"> <input type="text" class="ins-search-input" placeholder="Escribe algo..." /> <span class="ins-close ins-selectable"><i class="fa fa-times-circle"></i></span> </div> <div class="ins-section-wrapper"> <div class="ins-section-container"></div> </div> </div> </div> <script> (function (window) { var INSIGHT_CONFIG = { TRANSLATION: { POSTS: 'Entradas', PAGES: 'Pages', CATEGORIES: 'Categorias', TAGS: 'Etiquetas', UNTITLED: '(Sin titulo)', }, ROOT_URL: '/', CONTENT_URL: '/content.json', }; window.INSIGHT_CONFIG = INSIGHT_CONFIG; })(window); </script> <script src="/js/insight.js"></script> </div> </nav> </div> </div> </div> </div> </div> </header> <div class="container"> <div class="main-body container-inner"> <div class="main-body-inner"> <section id="main"> <div class="main-body-header"> <h1 class="header"> <a class="page-title-link" href="/categories/Internacional/">Internacional</a> </h1> </div> <div class="main-body-content"> <article id="post-Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes" class="article article-single article-type-post" itemscope itemprop="blogPost"> <header class="article-header" itemprop="headline"> <h1 class="article-title" itemprop="name"> Una modelo nos enseña a saber si una mujer tiene implantes </h1> </header> <div class="article-subtitle" itemprop="description"> <a href="/2016/05/Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes/" class="article-date"> <time datetime="2016-05-06T14:12:21.000Z" itemprop="datePublished">2016-05-06</time> </a> <ul class="article-tag-list"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/implantes/">implantes</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/senos/">senos</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/sexy/">sexy</a></li></ul> </div> <div class="article-entry" itemprop="articleBody"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- articulos --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4967243132865960" data-ad-slot="5586146720" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <p><img src="/images/implantes-senos-1.png" alt=""></p> <p>Hay ciertas preguntas en la vida que merecen dedicarles un poco de nuestro tiempo para encontrar su respuesta. De vez en cuando nos cuestionamos cosas como: Cuál es nuestro propósito en la vida, si encontraremos el amor o <strong>si la chica que acabamos de ver pasar por la calle tenía implantes de senos</strong>.</p> <p><img src="/images/implantes-senos-3.gif" alt=""></p> <p>Algunas veces es demasiado obvio cuando una chica se hace una cirugía para resaltar sus atributos, pero hay otras en las que el trabajo está tan bien hecho, que es casi imposible darnos cuenta a simple vista. Por eso, hoy <strong>una modelo nos va a enseñar un método práctico para responder a esa gran incógnita</strong>.</p> <p><img src="/images/modelo-implantes-1.jpg" alt=""></p> <p><strong>Wichooda Cheycom</strong>, originaria de Tailandia, es la chica que nos va a mostrar una técnica infalible para saber si una chica se operó el busto, con tan sólo la luz de un celular. En el video que mostraremos a continuación, podremos ver cómo es que <strong>unos implantes de silicona brillan en la oscuridad si encienden la luz de un teléfono</strong>.</p> <iframe width="560" height="315" src="https://www.youtube.com/embed/n2iJwmEywC0" frameborder="0" allowfullscreen></iframe> <p>Obviamente, el video se hizo totalmente viral en toda internet, y es que no todos los días nos damos cuenta de que los senos falsos tienen esa cualidad tan curiosa. Pero bueno, ahora que ya saben cómo detectar este tipo de cosas, <strong>usen este conocimiento con extrema precaución</strong>; más que nada por respeto a quienes han decidido hacerse alguna cirugía de aumento.</p> <p><strong><em>Vía dailymail</em></strong></p> <h6 itemprop="author" itemscope itemtype="https://schema.org/Person"> <span itemprop="name">La Red Semanario</span> </h6> <footer class="article-footer"> <a data-url="https://laredsemanario.com/2016/05/Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes/" data-id="cio2yy4st005e6nkn64nh9je4" class="article-share-link"><i class="fa fa-share"></i>Compartir</a> <script> (function ($) { $('body').on('click', function() { $('.article-share-box.on').removeClass('on'); }).on('click', '.article-share-link', function(e) { e.stopPropagation(); var $this = $(this), url = $this.attr('data-url'), encodedUrl = encodeURIComponent(url), id = 'article-share-box-' + $this.attr('data-id'), offset = $this.offset(), box; if ($('#' + id).length) { box = $('#' + id); if (box.hasClass('on')){ box.removeClass('on'); return; } } else { var html = [ '<div id="' + id + '" class="article-share-box">', '<input class="article-share-input" value="' + url + '">', '<div class="article-share-links">', '<a href="https://twitter.com/intent/tweet?url=' + encodedUrl + '" class="article-share-twitter" target="_blank" title="Twitter"></a>', '<a href="https://www.facebook.com/sharer.php?u=' + encodedUrl + '" class="article-share-facebook" target="_blank" title="Facebook"></a>', '<a href="http://pinterest.com/pin/create/button/?url=' + encodedUrl + '" class="article-share-pinterest" target="_blank" title="Pinterest"></a>', '<a href="https://plus.google.com/share?url=' + encodedUrl + '" class="article-share-google" target="_blank" title="Google+"></a>', '</div>', '</div>' ].join(''); box = $(html); $('body').append(box); } $('.article-share-box.on').hide(); box.css({ top: offset.top + 25, left: offset.left }).addClass('on'); }).on('click', '.article-share-box', function (e) { e.stopPropagation(); }).on('click', '.article-share-box-input', function () { $(this).select(); }).on('click', '.article-share-box-link', function (e) { e.preventDefault(); e.stopPropagation(); window.open(this.href, 'article-share-box-window-' + Date.now(), 'width=500,height=450'); }); })(jQuery); </script> </footer> </div> </article> <section id="comments"> <div id="disqus_thread"> <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </section> </div> </section> <aside id="sidebar"> <a class="sidebar-toggle" title="Expand Sidebar"><i class="toggle icon"></i></a> <div class="sidebar-top"> <p>seguir:</p> <ul class="social-links"> <li> <a class="social-tooltip" title="twitter" href="https://twitter.com/RedSemanario" target="_blank"> <i class="icon fa fa-twitter"></i> </a> </li> <li> <a class="social-tooltip" title="facebook" href="https://www.facebook.com/laredsemanario" target="_blank"> <i class="icon fa fa-facebook"></i> </a> </li> <li> <a class="social-tooltip" title="google-plus" href="https://google.com/+Laredsemanariocom" target="_blank"> <i class="icon fa fa-google-plus"></i> </a> </li> <li> <a class="social-tooltip" title="youtube" href="https://www.youtube.com/channel/UCnaA5qW5xL0WHoABQQRRTSw" target="_blank"> <i class="icon fa fa-youtube"></i> </a> </li> <li> <a class="social-tooltip" title="rss" href="http://feeds.feedburner.com/laredsemanario/huQt" target="_blank"> <i class="icon fa fa-rss"></i> </a> </li> </ul> </div> <nav id="article-nav"> <a href="/2016/05/PRI-quita-registro-a-sus-3-narcocandidatos/" id="article-nav-newer" class="article-nav-link-wrap"> <strong class="article-nav-caption">más nuevo</strong> <p class="article-nav-title"> PRI quita registro a sus 3 “narcocandidatos”; Beltrones debe comparecer ante PGR: PRD </p> <i class="icon fa fa-chevron-right" id="icon-chevron-right"></i> </a> <a href="/2016/05/Emiten-orden-de-aprehension-contra-Gerardo-Ortiz-por-el-video-Fuiste-Mia/" id="article-nav-older" class="article-nav-link-wrap"> <strong class="article-nav-caption">antiguo</strong> <p class="article-nav-title">Emiten orden de aprehensión contra Gerardo Ortiz por el video de Fuiste Mía</p> <i class="icon fa fa-chevron-left" id="icon-chevron-left"></i> </a> </nav> <div class="widgets-container"> <div class="widget-wrap"> <h3 class="widget-title">recientes</h3> <div class="widget"> <ul id="recent-post" class=""> <li> <div class="item-thumbnail"> <a href="/2016/05/Detienen-a-Leopoldo-Duarte-acusado-de-abuso-sexual-en-el-Colegio-Matatena/" class="thumbnail"> <span style="background-image:url(https://res.cloudinary.com/pidmx/image/upload/v1462977034/pederasta_montesori_2_wunyo5.jpg)" alt="Detienen a Leopoldo Duarte, acusado de abuso sexual en el Colegio Matatena" class="thumbnail-image"></span> </a> </div> <div class="item-inner"> <p class="item-category"><a class="article-category-link" href="/categories/Nacional/">Nacional</a></p> <p class="item-title"><a href="/2016/05/Detienen-a-Leopoldo-Duarte-acusado-de-abuso-sexual-en-el-Colegio-Matatena/" class="title">Detienen a Leopoldo Duarte, acusado de abuso sexual en el Colegio Matatena</a></p> <p class="item-date"><time datetime="2016-05-11T14:29:50.000Z" itemprop="datePublished">2016-05-11</time></p> </div> </li> <li> <div class="item-thumbnail"> <a href="/2016/05/Telescopio-espacial-Kepler-descubre-1284-nuevos-planetas-fuera-del-sistema-solar/" class="thumbnail"> <span style="background-image:url(https://res.cloudinary.com/pidmx/image/upload/v1462976759/NASA-nuevos-planetas-e1462972761598_jyf4qz.jpg)" alt="Telescopio espacial Kepler descubre 1284 nuevos planetas fuera del sistema solar" class="thumbnail-image"></span> </a> </div> <div class="item-inner"> <p class="item-category"><a class="article-category-link" href="/categories/Ciencia/">Ciencia</a></p> <p class="item-title"><a href="/2016/05/Telescopio-espacial-Kepler-descubre-1284-nuevos-planetas-fuera-del-sistema-solar/" class="title">Telescopio espacial Kepler descubre 1284 nuevos planetas fuera del sistema solar</a></p> <p class="item-date"><time datetime="2016-05-11T14:24:56.000Z" itemprop="datePublished">2016-05-11</time></p> </div> </li> <li> <div class="item-thumbnail"> <a href="/2016/05/Billy-Alvarez-dejaria-Cruz-Azul/" class="thumbnail"> <span style="background-image:url(https://res.cloudinary.com/pidmx/image/upload/v1462976365/billy-alvarez-cruz-azul_vz32jv.jpg)" alt="Billy Álvarez dejaría Cruz Azul" class="thumbnail-image"></span> </a> </div> <div class="item-inner"> <p class="item-category"><a class="article-category-link" href="/categories/Deportes/">Deportes</a></p> <p class="item-title"><a href="/2016/05/Billy-Alvarez-dejaria-Cruz-Azul/" class="title">Billy Álvarez dejaría Cruz Azul</a></p> <p class="item-date"><time datetime="2016-05-11T14:14:24.000Z" itemprop="datePublished">2016-05-11</time></p> </div> </li> <li> <div class="item-thumbnail"> <a href="/2016/05/Por-ser-desproporcionadas-El-Bronco-cancelara-10-mil-becas-estudiantiles/" class="thumbnail"> <span style="background-image:url(/images/bronco-gobernador.jpg)" alt="Por ser desproporcionadas, El Bronco cancelará 10 mil becas estudiantiles" class="thumbnail-image"></span> </a> </div> <div class="item-inner"> <p class="item-category"><a class="article-category-link" href="/categories/Politica/">Politica</a></p> <p class="item-title"><a href="/2016/05/Por-ser-desproporcionadas-El-Bronco-cancelara-10-mil-becas-estudiantiles/" class="title">Por ser desproporcionadas, El Bronco cancelará 10 mil becas estudiantiles</a></p> <p class="item-date"><time datetime="2016-05-11T14:08:06.000Z" itemprop="datePublished">2016-05-11</time></p> </div> </li> <li> <div class="item-thumbnail"> <a href="/2016/05/Los-11-mandamientos-de-la-Iglesia-de-Satan-son-mucho-mas-sensatos-de-lo-que-imaginarias/" class="thumbnail"> <span style="background-image:url(/images/934606971.jpg)" alt="Los 11 mandamientos de la Iglesia de Satán son mucho más sensatos de lo que imaginarías" class="thumbnail-image"></span> </a> </div> <div class="item-inner"> <p class="item-category"><a class="article-category-link" href="/categories/Cultura/">Cultura</a></p> <p class="item-title"><a href="/2016/05/Los-11-mandamientos-de-la-Iglesia-de-Satan-son-mucho-mas-sensatos-de-lo-que-imaginarias/" class="title">Los 11 mandamientos de la Iglesia de Satán son mucho más sensatos de lo que imaginarías</a></p> <p class="item-date"><time datetime="2016-05-10T14:05:56.000Z" itemprop="datePublished">2016-05-10</time></p> </div> </li> </ul> </div> </div> </div> </aside> </div> </div> </div> <footer id="footer"> <div class="container"> <div class="container-inner"> <a id="back-to-top" href="javascript:;"><i class="icon fa fa-angle-up"></i></a> <div class="credit"> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <!-- Primera página - 1 (www.laredsemanario.com) --> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-4967243132865960" data-ad-slot="4621813528" data-ad-format="auto"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <p>&copy; 2014 - 2016 La Red Semanario</p> </div> </div> <script type="application/ld+json"> { "@context" : "http://schema.org", "@type" : "WebSite", "name" : "La Red Semanario", "alternateName" : "La Red", "url" : "https://www.laredsemanario.com" } </script> </div> </footer> <script> var disqus_shortname = 'laredsemanario'; var disqus_url = 'https://laredsemanario.com/2016/05/Una-modelo-nos-ensena-a-saber-si-una-mujer-tiene-implantes/'; (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> <script src="/vendor/fancybox/jquery.fancybox.pack.js"></script> <script src="/vendor/scrollLoading/jquery.scrollLoading.js"></script> <script src="/vendor/scrollLoading/main.js"></script> <!-- Custom Scripts --> <script src="/js/main.js"></script> </div> </body> </html>
assets/css/hereandnow.css
Josebaseba/HereAndNow
[data-control=chat]{top:0;bottom:0;} [data-control=chat] > header{width:100%} [data-control=chat] > article div > ul > li{list-style:none} [data-control=chat] > article div[data-control=users]{position:fixed} [data-control=chat] textarea{height:54px;resize:none} [data-control=chat] footer{background-color:#d8d8d8;bottom:0;z-index:10;width:100%;padding-bottom:2em} body{background-color:#d8d8d8} section.landing-margin{padding-top:2em !important;padding-bottom:2em !important} input#room-name{text-align:center} div.create-room{margin-top:3em;margin-bottom:3em}
_includes/json-ld/breadcrumblist.html
NSHipster/nshipster.com
<script type="application/ld+json"> { "@context": "https://schema.org", "@type": "BreadcrumbList", "itemListElement": [{ "@type": "ListItem", "position": 1, "item": { "@id": "{{ site.url }}", "name": "Articles" } }, { "@type": "ListItem", "position": 2, "item": { "@id": "{{ page.url | absolute_url }}", "name": "{{ page.title | strip_html }}" } } ] } </script>
noarch/repoview/vboxadditions-download.html
AncientLeGrey/overbox-base-repo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <meta content="text/html; charset=utf-8" http-equiv="content-type" /> <title>RepoView: overbox-base-repo</title> <link href="layout/repostyle.css" type="text/css" rel="stylesheet" /> <meta content="noindex,follow" name="robots" /> </head> <body> <div class="levbar"> <p class="pagetitle">applications/system</p> <ul class="levbarlist"> <li> <a href="applications.system.group.html" class="nlink" title="Back to package listing">« Back to group</a> </li> </ul> </div> <div class="main"> <p class="nav">Jump to letter: [ <span class="letterlist"> <a href="letter_c.group.html" class="nlink">C</a><a href="letter_e.group.html" class="nlink">E</a><a href="letter_j.group.html" class="nlink">J</a><a href="letter_r.group.html" class="nlink">R</a><a href="letter_v.group.html" class="nlink">V</a> </span>] </p> <h2>vboxadditions-download - VirtualBox guest additions downloader and installer</h2> <table cellpadding="2" cellspacing="0" border="0"> <tr> <th>Website:</th> <td><a href="http://www.virtualbox.org/">http://www.virtualbox.org/</a></td> </tr> <tr> <th>License:</th> <td>GPL2</td> </tr> <tr> <th>Vendor:</th> <td>Oracle</td> </tr> </table> <dl> <dt>Description:</dt> <dd><pre>Downloads and installs the VirtualBox guest additions. Installation is done in a first-boot-service. So you can quickly update to the newest kernel in your kickstart file before the guest additions are installed. A shutdown is performed afterwards!</pre></dd> </dl> <h3>Packages</h3> <table cellpadding="0" cellspacing="10" border="0"> <tr> <td valign="top"><a href="../vboxadditions-download-4.1.0-1.noarch.rpm" class="inpage">vboxadditions-download-4.1.0-1.noarch</a> [<span style="white-space: nowrap">2 KiB</span>]</td> <td valign="top"> <strong>Changelog</strong> by <span>https://github.com/AncientLeGrey - 4.1.0-1 (2011-08-07)</span>: <pre style="margin: 0pt 0pt 5pt 5pt">- Update to version 4.1.0</pre> </td> </tr><tr> <td valign="top"><a href="../vboxadditions-download-4.0.8-1.noarch.rpm" class="inpage">vboxadditions-download-4.0.8-1.noarch</a> [<span style="white-space: nowrap">2 KiB</span>]</td> <td valign="top"> <em>(no changelog entry)</em> </td> </tr> </table> <p class="footernote"> Listing created by <a href="https://fedorahosted.org/repoview/" class="repoview">Repoview-0.6.5-1.el5</a> </p> </div> </body> </html>
app/update.html
ainstaller/aInstaller
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>aInstaller - updating...</title> <link rel="stylesheet" type="text/css" href="./app/icons.less"> <link rel="stylesheet" href="./app/index.less"> </head> <body> <div id="loading"> <h4 class="title afont ashadow absolute-center"> updating ainstaller </h4> <div class="spinner absolute-center"> <div class="bounce1"></div> <div class="bounce2"></div> <div class="bounce3"></div> </div> </div> </body> </html>