path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
RTCMultiConnection/demos/remote-stream-forwarding.html
garyfeng/WebRTC-Experiment
<!-- > Muaz Khan - github.com/muaz-khan > MIT License - www.webrtc-experiment.com/licence > Documentation - www.RTCMultiConnection.org --> <!DOCTYPE html> <html lang="en"> <head> <title>WebRTC Remote Stream Forwarding ® Muaz Khan</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <link rel="author" type="text/html" href="https://plus.google.com/+MuazKhan"> <meta name="author" content="Muaz Khan"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <link rel="stylesheet" href="//cdn.webrtc-experiment.com/style.css"> <style> audio, video { -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; -webkit-transition: all 1s ease; transition: all 1s ease; vertical-align: top; width: 40%; } input { border: 1px solid #d9d9d9; border-radius: 1px; font-size: 2em; margin: .2em; width: 30%; } .setup { border-bottom-left-radius: 0; border-top-left-radius: 0; font-size: 102%; height: 47px; margin-left: -9px; margin-top: 8px; position: absolute; } p { padding: 1em; } li { border-bottom: 1px solid rgb(189, 189, 189); border-left: 1px solid rgb(189, 189, 189); padding: .5em; } </style> <script> document.createElement('article'); document.createElement('footer'); </script> <script src="//cdn.webrtc-experiment.com/RTCMultiConnection.js"> </script> <script src="//cdn.webrtc-experiment.com/firebase.js"> </script> </head> <body> <article> <header style="text-align: center;"> <h1> <a href="https://www.webrtc-experiment.com/">WebRTC</a> <a href="https://github.com/muaz-khan/WebRTC-Experiment/issues/2#issuecomment-33593799">remote media stream forwarding</a> using <a href="http://www.rtcmulticonnection.org/docs/">RTCMultiConnection.js</a> </h1> <p> <a href="https://www.webrtc-experiment.com/">HOME</a> <span> &copy; </span> <a href="http://www.MuazKhan.com/" target="_blank">Muaz Khan</a> . <a href="http://twitter.com/WebRTCWeb" target="_blank" title="Twitter profile for WebRTC Experiments">@WebRTCWeb</a> . <a href="https://github.com/muaz-khan?tab=repositories" target="_blank" title="Github Profile">Github</a> . <a href="https://github.com/muaz-khan/WebRTC-Experiment/issues?state=open" target="_blank">Latest issues</a> . <a href="https://github.com/muaz-khan/WebRTC-Experiment/commits/master" target="_blank">What's New?</a> </p> </header> <div class="github-stargazers"></div> <blockquote class="inner" style="text-align: center;"> Chrome is <a href="https://code.google.com/p/webrtc/issues/detail?id=2192#c15">still not supporting</a> remote audio forwarding. It will forward only remote <strong>video</strong> stream. There is another demo: <a href="https://github.com/muaz-khan/WebRTC-Scalable-Broadcast">WebRTC Scalable Broadcast</a> which can broadcast video/screen over unlimited users! </blockquote> <section class="experiment"> <div id="videos-container"></div> <table> <tr> <td> <button id="open-main-session">open main session</button> </td> <td> <button id="forward-main-session" disabled>forward main session</button> </td> </tr> <tr> <td> <button id="join-main-session">join main session</button> </td> <td> <button id="join-forwarded-session">join forwarded session</button> </td> </tr> </table> <h2>How to use?</h2> <ol> <li> Click "open main session" button from 1st computer. </li> <li> Click "join main session" button from 2nd computer. </li> <li> Click "forward main session" button from the same 2nd computer. </li> <li> Click "join forwarded session" button from 3rd computer. </li> </ol> <script> // http://www.rtcmulticonnection.org/docs/constructor/ var mainConnection = new RTCMultiConnection(); // http://www.rtcmulticonnection.org/docs/session/ mainConnection.session = { video: true }; // http://www.rtcmulticonnection.org/docs/direction/ mainConnection.direction = 'one-way'; mainConnection.onNewSession = function(session) { mainConnection.sdpConstraints.mandatory = { OfferToReceiveVideo: true }; mainConnection.join(session); }; // http://www.rtcmulticonnection.org/docs/constructor/ var dummyConnection = new RTCMultiConnection('dummy-connection'); dummyConnection.onNewSession = function(session) { dummyConnection.sdpConstraints.mandatory = { OfferToReceiveVideo: true }; dummyConnection.join(session); }; // http://www.rtcmulticonnection.org/docs/direction/ dummyConnection.direction = 'one-way'; // http://www.rtcmulticonnection.org/docs/dontCaptureUserMedia/ dummyConnection.dontCaptureUserMedia = true; var videosContainer = document.getElementById('videos-container'); // http://www.rtcmulticonnection.org/docs/onstream/ mainConnection.onstream = function(e) { dummyConnection.attachStreams.push(e.stream); videosContainer.appendChild(e.mediaElement); document.querySelector('#forward-main-session').disabled = false; }; // http://www.rtcmulticonnection.org/docs/onstream/ dummyConnection.onstream = function(e) { document.querySelector('h1').innerHTML = 'Wow, got forwarded stream!'; videosContainer.appendChild(e.mediaElement); }; document.querySelector('#join-main-session').onclick = function() { this.disabled = true; // http://www.rtcmulticonnection.org/docs/connect/ mainConnection.connect(); }; document.querySelector('#join-forwarded-session').onclick = function() { this.disabled = true; // http://www.rtcmulticonnection.org/docs/connect/ dummyConnection.connect(); }; document.querySelector('#open-main-session').onclick = function() { this.disabled = true; mainConnection.sdpConstraints.mandatory = { OfferToReceiveVideo: false }; // http://www.rtcmulticonnection.org/docs/open/ mainConnection.open(); }; document.querySelector('#forward-main-session').onclick = function() { this.disabled = true; dummyConnection.sdpConstraints.mandatory = { OfferToReceiveVideo: false }; // http://www.rtcmulticonnection.org/docs/open/ dummyConnection.open(); }; </script> </section> <section class="experiment"> <h2 class="header" id="feedback">Feedback</h2> <div> <textarea id="message" style="border: 1px solid rgb(189, 189, 189); height: 8em; margin: .2em; outline: none; resize: vertical; width: 98%;" placeholder="Have any message? Suggestions or something went wrong?"></textarea> </div> <button id="send-message" style="font-size: 1em;">Send Message</button> <small style="margin-left: 1em;">Enter your email too; if you want "direct" reply!</small> </section> <section class="experiment own-widgets latest-commits"> <h2 class="header" id="updates" style="color: red; padding-bottom: .1em;"><a href="https://github.com/muaz-khan/WebRTC-Experiment/commits/master" target="_blank">Latest Updates</a> </h2> <div id="github-commits"></div> </section> </article> <a href="https://github.com/muaz-khan/WebRTC-Experiment" class="fork-left"></a> <footer> <p> <a href="https://www.webrtc-experiment.com/">WebRTC Experiments</a> © <a href="https://plus.google.com/+MuazKhan" rel="author" target="_blank">Muaz Khan</a> <a href="mailto:muazkh@gmail.com" target="_blank">muazkh@gmail.com</a> </p> </footer> <!-- commits.js is useless for you! --> <script src="//cdn.webrtc-experiment.com/commits.js" async> </script> </body> </html>
src/_layouts/post.html
pipboy3000/count0.org
--- layout: default --- <div class="container"> <div class="article"> <h2 class="article-title">{{ page.title }}</h2> <div class="article-meta">{{ page.date | date: "%Y年%m月%d日" }}</div> <div class="article-body"> {{ content }} </div> <div class="article-footer"> <a href="/archives/index.html">記事一覧へ</a> </div> </div> </div>
frinat/frontend/templates/full.html
frinat/fribourg-natation.ch
{% extends "base.html" %} {% load cms_tags %} {% block title %}{{ block.super }}{% endblock %} {% block main %} <section> {% placeholder "content" %} </section> {% endblock main %} {% block bodyclasses %}{{ block.super }} full{% endblock %} {% block sidebar %} {% endblock %}
public/modules/projects/views/edit-project.client.view.html
keegansanford/Colab
<section data-ng-controller="ProjectsController" data-ng-init="findOne()"> <div class="page-header"> <h1>Edit Project Proposal</h1> </div> <div class="col-md-12"> <form name="projectForm" class="form-horizontal" data-ng-submit="update(projectForm.$valid)" novalidate> <fieldset> <div class="form-group" ng-class="{ 'has-error' : submitted && projectForm.title.$invalid}"> <label class="control-label" for="title">Title</label> <div class="controls"> <input name="title" type="text" data-ng-model="project.title" id="title" class="form-control" placeholder="Title" required> </div> <div ng-show="submitted && projectForm.title.$invalid" class="help-block"> <p ng-show="projectForm.title.$error.required" class="text-danger">Title is required</p> </div> </div> <div class="form-group" ng-class="{ 'has-error' : submitted && projectForm.content.$invalid}"> <label class="control-label" for="content">Content</label> <div class="controls"> <textarea name="content" data-ng-model="project.content" id="content" class="form-control" cols="30" rows="10" placeholder="Content" required></textarea> </div> <div ng-show="submitted && projectForm.content.$invalid" class="help-block"> <p ng-show="projectForm.content.$error.required" class="text-danger">Content is required</p> </div> </div> <div class="form-group"> <input type="submit" value="Update" class="btn btn-default"> </div> <div data-ng-show="error" class="text-danger"> <strong data-ng-bind="error"></strong> </div> </fieldset> </form> </div> </section>
documents/build/html/usingopengl2.html
ring-lang/ring
<!DOCTYPE html> <html class="writer-html5" lang="en" > <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Using RingOpenGL and RingAllegro for 3D Graphics &mdash; Ring 1.17 documentation</title> <link rel="stylesheet" href="_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="_static/css/custom.css" type="text/css" /> <!--[if lt IE 9]> <script src="_static/js/html5shiv.min.js"></script> <![endif]--> <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script> <script src="_static/jquery.js"></script> <script src="_static/underscore.js"></script> <script src="_static/doctools.js"></script> <script src="_static/language_data.js"></script> <script type="text/javascript" src="_static/js/theme.js"></script> <link rel="index" title="Index" href="genindex.html" /> <link rel="search" title="Search" href="search.html" /> <link rel="next" title="The Gold Magic 800 Game" href="goldmagic800.html" /> <link rel="prev" title="Using RingOpenGL and RingFreeGLUT for 3D Graphics" href="usingopengl.html" /> </head> <body class="wy-body-for-nav"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search" > <a href="index.html"> <img src="_static/ringdoclogo.jpg" class="logo" alt="Logo"/> </a> <div role="search"> <form id="rtd-search-form" class="wy-form" action="search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <ul class="current"> <li class="toctree-l1"><a class="reference internal" href="ringapps.html">Applications developed in a few hours</a></li> <li class="toctree-l1"><a class="reference internal" href="introduction.html">Introduction</a></li> <li class="toctree-l1"><a class="reference internal" href="ringnotepad.html">Using Ring Notepad</a></li> <li class="toctree-l1"><a class="reference internal" href="getting_started.html">Getting Started - First Style</a></li> <li class="toctree-l1"><a class="reference internal" href="getting_started2.html">Getting Started - Second Style</a></li> <li class="toctree-l1"><a class="reference internal" href="getting_started3.html">Getting Started - Third Style</a></li> <li class="toctree-l1"><a class="reference internal" href="variables.html">Variables</a></li> <li class="toctree-l1"><a class="reference internal" href="operators.html">Operators</a></li> <li class="toctree-l1"><a class="reference internal" href="controlstructures.html">Control Structures - First Style</a></li> <li class="toctree-l1"><a class="reference internal" href="controlstructures2.html">Control Structures - Second Style</a></li> <li class="toctree-l1"><a class="reference internal" href="controlstructures3.html">Control Structures - Third Style</a></li> <li class="toctree-l1"><a class="reference internal" href="getinput.html">Getting Input</a></li> <li class="toctree-l1"><a class="reference internal" href="functions.html">Functions - First Style</a></li> <li class="toctree-l1"><a class="reference internal" href="functions2.html">Functions - Second Style</a></li> <li class="toctree-l1"><a class="reference internal" href="functions3.html">Functions - Third Style</a></li> <li class="toctree-l1"><a class="reference internal" href="programstructure.html">Program Structure</a></li> <li class="toctree-l1"><a class="reference internal" href="lists.html">Lists</a></li> <li class="toctree-l1"><a class="reference internal" href="strings.html">Strings</a></li> <li class="toctree-l1"><a class="reference internal" href="dateandtime.html">Date and Time</a></li> <li class="toctree-l1"><a class="reference internal" href="checkandconvert.html">Check Data Type and Conversion</a></li> <li class="toctree-l1"><a class="reference internal" href="mathfunc.html">Mathematical Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="files.html">Files</a></li> <li class="toctree-l1"><a class="reference internal" href="systemfunc.html">System Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="evaldebug.html">Eval() and Debugging</a></li> <li class="toctree-l1"><a class="reference internal" href="demo.html">Demo Programs</a></li> <li class="toctree-l1"><a class="reference internal" href="odbc.html">ODBC Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="mysql.html">MySQL Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="sqlite.html">SQLite Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="postgresql.html">PostgreSQL Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="secfunc.html">Security and Internet Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="oop.html">Object Oriented Programming (OOP)</a></li> <li class="toctree-l1"><a class="reference internal" href="fp.html">Functional Programming (FP)</a></li> <li class="toctree-l1"><a class="reference internal" href="metaprog.html">Reflection and Meta-programming</a></li> <li class="toctree-l1"><a class="reference internal" href="declarative.html">Declarative Programming using Nested Structures</a></li> <li class="toctree-l1"><a class="reference internal" href="natural.html">Natural language programming</a></li> <li class="toctree-l1"><a class="reference internal" href="naturallibrary.html">Using the Natural Library</a></li> <li class="toctree-l1"><a class="reference internal" href="scope.html">Scope Rules for Variables and Attributes</a></li> <li class="toctree-l1"><a class="reference internal" href="scope2.html">Scope Rules for Functions and Methods</a></li> <li class="toctree-l1"><a class="reference internal" href="syntaxflexibility.html">Syntax Flexibility</a></li> <li class="toctree-l1"><a class="reference internal" href="typehints.html">The Type Hints Library</a></li> <li class="toctree-l1"><a class="reference internal" href="debug.html">The Trace Library and the Interactive Debugger</a></li> <li class="toctree-l1"><a class="reference internal" href="ringemb.html">Embedding Ring Language in Ring Programs</a></li> <li class="toctree-l1"><a class="reference internal" href="stdlib.html">Stdlib Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="stdlibclasses.html">Stdlib Classes</a></li> <li class="toctree-l1"><a class="reference internal" href="qt.html">Desktop, WebAssembly and Mobile development using RingQt</a></li> <li class="toctree-l1"><a class="reference internal" href="formdesigner.html">Using the Form Designer</a></li> <li class="toctree-l1"><a class="reference internal" href="qt3d.html">Graphics Programming using RingQt3D</a></li> <li class="toctree-l1"><a class="reference internal" href="ringqtobjects.html">Objects Library for RingQt Application</a></li> <li class="toctree-l1"><a class="reference internal" href="multilanguage.html">Multi-language Applications</a></li> <li class="toctree-l1"><a class="reference internal" href="qtmobile.html">Building RingQt Applications for Mobile</a></li> <li class="toctree-l1"><a class="reference internal" href="qtwebassembly.html">Building RingQt Applications for WebAssembly</a></li> <li class="toctree-l1"><a class="reference internal" href="web.html">Web Development (CGI Library)</a></li> <li class="toctree-l1"><a class="reference internal" href="deployincloud.html">Deploying Web Applications in the Cloud</a></li> <li class="toctree-l1"><a class="reference internal" href="allegro.html">Graphics and 2D Games programming using RingAllegro</a></li> <li class="toctree-l1"><a class="reference internal" href="gameengine.html">Demo Project - Game Engine for 2D Games</a></li> <li class="toctree-l1"><a class="reference internal" href="gameengineandorid.html">Building Games For Android</a></li> <li class="toctree-l1"><a class="reference internal" href="ringraylib.html">Developing Games using RingRayLib</a></li> <li class="toctree-l1"><a class="reference internal" href="usingopengl.html">Using RingOpenGL and RingFreeGLUT for 3D Graphics</a></li> <li class="toctree-l1 current"><a class="current reference internal" href="#">Using RingOpenGL and RingAllegro for 3D Graphics</a><ul> <li class="toctree-l2"><a class="reference internal" href="#d-cube-and-texture">3D Cube and Texture</a></li> <li class="toctree-l2"><a class="reference internal" href="#many-cubes">Many Cubes</a></li> <li class="toctree-l2"><a class="reference internal" href="#tictactoe-3d-game">TicTacToe 3D Game</a></li> <li class="toctree-l2"><a class="reference internal" href="#more-3d-samples">More 3D Samples</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="goldmagic800.html">Demo Project - The Gold Magic 800 Game</a></li> <li class="toctree-l1"><a class="reference internal" href="tilengine.html">Using RingTilengine</a></li> <li class="toctree-l1"><a class="reference internal" href="performancetips.html">Performance Tips</a></li> <li class="toctree-l1"><a class="reference internal" href="compiler.html">Command Line Options</a></li> <li class="toctree-l1"><a class="reference internal" href="distribute.html">Distributing Ring Applications (Manual)</a></li> <li class="toctree-l1"><a class="reference internal" href="distribute_ring2exe.html">Distributing Ring Applications using Ring2EXE</a></li> <li class="toctree-l1"><a class="reference internal" href="ringpm.html">The Ring Package Manager (RingPM)</a></li> <li class="toctree-l1"><a class="reference internal" href="zerolib.html">ZeroLib Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="foxringfuncsdoc.html">FoxRing Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="bignumber.html">BigNumber Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="csvlib.html">CSVLib Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="jsonlib.html">JSONLib Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="tokenslib.html">TokensLib Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="libcurl.html">Using RingLibCurl</a></li> <li class="toctree-l1"><a class="reference internal" href="ringlibcurlfuncsdoc.html">RingLibCurl Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="socket.html">Using RingSockets</a></li> <li class="toctree-l1"><a class="reference internal" href="threads.html">Using RingThreads</a></li> <li class="toctree-l1"><a class="reference internal" href="libui.html">Using RingLibui</a></li> <li class="toctree-l1"><a class="reference internal" href="ringzip.html">Using RingZip</a></li> <li class="toctree-l1"><a class="reference internal" href="ringlibzipfuncsdoc.html">RingLibZip Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringmurmurhashfuncsdoc.html">RingMurmurHash Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringconsolecolorsfuncsdoc.html">RingConsoleColors Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringallegrofuncsdoc.html">RingAllegro Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="libsdl.html">Using RingLibSDL</a></li> <li class="toctree-l1"><a class="reference internal" href="ringlibsdlfuncsdoc.html">RingLibSDL Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="libuv.html">Using Ringlibuv</a></li> <li class="toctree-l1"><a class="reference internal" href="ringlibuvfuncsdoc.html">RingLibuv Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringfreeglutfuncsdoc.html">RingFreeGLUT Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringstbimage.html">RingStbImage Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="ringopengl32funcsdoc.html">RingOpenGL (OpenGL 3.2) Functions Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="qtclassesdoc.html">RingQt Classes and Methods Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="lowlevel.html">Low Level Functions</a></li> <li class="toctree-l1"><a class="reference internal" href="extension_tutorial.html">Tutorial: Ring Extensions in C/C++</a></li> <li class="toctree-l1"><a class="reference internal" href="extension.html">Extension using the C/C++ languages</a></li> <li class="toctree-l1"><a class="reference internal" href="embedding.html">Embedding Ring Language in C/C++ Programs</a></li> <li class="toctree-l1"><a class="reference internal" href="codegenerator.html">Code Generator for wrapping C/C++ Libraries</a></li> <li class="toctree-l1"><a class="reference internal" href="ringbeep.html">Create your first extension using the Code Generator</a></li> <li class="toctree-l1"><a class="reference internal" href="languagedesign.html">Release Notes: Version 1.0</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew.html">Release Notes: Version 1.1</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew2.html">Release Notes: Version 1.2</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew3.html">Release Notes: Version 1.3</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew4.html">Release Notes: Version 1.4</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew5.html">Release Notes: Version 1.5</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew6.html">Release Notes: Version 1.6</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew7.html">Release Notes: Version 1.7</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew8.html">Release Notes: Version 1.8</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew9.html">Release Notes: Version 1.9</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew10.html">Release Notes: Version 1.10</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew11.html">Release Notes: Version 1.11</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew12.html">Release Notes: Version 1.12</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew13.html">Release Notes: Version 1.13</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew14.html">Release Notes: Version 1.14</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew15.html">Release Notes: Version 1.15</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew16.html">Release Notes: Version 1.16</a></li> <li class="toctree-l1"><a class="reference internal" href="whatisnew17.html">Release Notes: Version 1.17</a></li> <li class="toctree-l1"><a class="reference internal" href="codeeditors.html">Using Other Code Editors</a></li> <li class="toctree-l1"><a class="reference internal" href="faq.html">Frequently Asked Questions (FAQ)</a></li> <li class="toctree-l1"><a class="reference internal" href="sourcecode.html">How to Compile Ring From Source Code?</a></li> <li class="toctree-l1"><a class="reference internal" href="contribute.html">How to contribute?</a></li> <li class="toctree-l1"><a class="reference internal" href="reference.html">Language Specification</a></li> <li class="toctree-l1"><a class="reference internal" href="resources.html">Resources</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="index.html">Ring</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="index.html" class="icon icon-home"></a> &raquo;</li> <li>Using RingOpenGL and RingAllegro for 3D Graphics</li> <li class="wy-breadcrumbs-aside"> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <div class="section" id="using-ringopengl-and-ringallegro-for-3d-graphics"> <span id="index-0"></span><h1>Using RingOpenGL and RingAllegro for 3D Graphics<a class="headerlink" href="#using-ringopengl-and-ringallegro-for-3d-graphics" title="Permalink to this headline">¶</a></h1> <p>In this chapter we will learn about using RingOpenGL and RingAllegro</p> <div class="section" id="d-cube-and-texture"> <span id="index-1"></span><h2>3D Cube and Texture<a class="headerlink" href="#d-cube-and-texture" title="Permalink to this headline">¶</a></h2> <p>Source Code:</p> <div class="highlight-ring notranslate"><div class="highlight"><pre><span></span><span class="c"># Load Libraries</span> <span class="k">load</span> <span class="s">&quot;gamelib.ring&quot;</span> <span class="c"># RingAllegro Library</span> <span class="k">load</span> <span class="s">&quot;opengl21lib.ring&quot;</span> <span class="c"># RingOpenGL Library</span> <span class="c">#==============================================================</span> <span class="c"># To Support MacOS X</span> <span class="n">al_run_main</span><span class="p">()</span> <span class="k">func</span> <span class="n">al_game_start</span> <span class="c"># Called by al_run_main()</span> <span class="n">main</span><span class="p">()</span> <span class="c"># Now we call our main function</span> <span class="c">#==============================================================</span> <span class="k">func</span> <span class="n">main</span> <span class="k">new</span> <span class="n">GraphicsApp</span> <span class="p">{</span> <span class="n">start</span><span class="p">()</span> <span class="p">}</span> <span class="k">class</span> <span class="n">GraphicsApp</span> <span class="k">from</span> <span class="n">GraphicsAppBase</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;Ring Cube&quot;</span> <span class="n">bitmap</span> <span class="n">texture</span> <span class="n">xrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">yrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">zrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">bitmap</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;ring.bmp&quot;</span><span class="p">)</span> <span class="n">texture</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="n">w</span> <span class="o">=</span> <span class="mi">800</span> <span class="n">h</span> <span class="o">=</span> <span class="mi">600</span> <span class="n">ratio</span> <span class="o">=</span> <span class="n">w</span> <span class="o">/</span> <span class="n">h</span> <span class="n">glViewport</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="n">w</span><span class="p">,</span> <span class="n">h</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_PROJECTION</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">gluPerspective</span><span class="p">(</span><span class="mi">45</span><span class="p">,</span><span class="n">ratio</span><span class="p">,</span><span class="mi">1</span><span class="p">,</span><span class="mi">100</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_MODELVIEW</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">)</span> <span class="n">glShadeModel</span><span class="p">(</span><span class="n">GL_SMOOTH</span><span class="p">)</span> <span class="n">glClearColor</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span> <span class="n">glClearDepth</span><span class="p">(</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_DEPTH_TEST</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_CULL_FACE</span><span class="p">)</span> <span class="n">glDepthFunc</span><span class="p">(</span><span class="n">GL_LEQUAL</span><span class="p">)</span> <span class="n">glHint</span><span class="p">(</span><span class="n">GL_PERSPECTIVE_CORRECTION_HINT</span><span class="p">,</span> <span class="n">GL_NICEST</span><span class="p">)</span> <span class="n">glClear</span><span class="p">(</span><span class="n">GL_COLOR_BUFFER_BIT</span> <span class="o">|</span> <span class="n">GL_DEPTH_BUFFER_BIT</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glTranslatef</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="o">-</span><span class="mf">5.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">xrot</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">yrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">zrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">texture</span><span class="p">)</span> <span class="n">glBegin</span><span class="p">(</span><span class="n">GL_QUADS</span><span class="p">)</span> <span class="o">//</span> <span class="n">Front</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Back</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Top</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Bottom</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Right</span> <span class="n">face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Left</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnd</span><span class="p">()</span> <span class="n">xrot</span> <span class="o">+=</span> <span class="mf">0.3</span> <span class="n">yrot</span> <span class="o">+=</span> <span class="mf">0.2</span> <span class="n">zrot</span> <span class="o">+=</span> <span class="mf">0.4</span> <span class="k">class</span> <span class="n">GraphicsAppBase</span> <span class="n">display</span> <span class="n">event_queue</span> <span class="n">ev</span> <span class="n">timeout</span> <span class="n">timer</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="n">FPS</span> <span class="o">=</span> <span class="mi">60</span> <span class="n">SCREEN_W</span> <span class="o">=</span> <span class="mi">800</span> <span class="n">SCREEN_H</span> <span class="o">=</span> <span class="mi">600</span> <span class="n">KEY_UP</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">KEY_DOWN</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">KEY_LEFT</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">KEY_RIGHT</span> <span class="o">=</span> <span class="mi">4</span> <span class="n">Key</span> <span class="o">=</span> <span class="o">[</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="o">]</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;Graphics Application&quot;</span> <span class="k">func</span> <span class="n">start</span> <span class="n">SetUp</span><span class="p">()</span> <span class="n">loadResources</span><span class="p">()</span> <span class="n">eventsLoop</span><span class="p">()</span> <span class="n">destroy</span><span class="p">()</span> <span class="k">func</span> <span class="n">setup</span> <span class="n">al_init</span><span class="p">()</span> <span class="n">al_init_image_addon</span><span class="p">()</span> <span class="n">al_set_new_display_flags</span><span class="p">(</span><span class="n">ALLEGRO_OPENGL</span><span class="p">)</span> <span class="n">display</span> <span class="o">=</span> <span class="n">al_create_display</span><span class="p">(</span><span class="n">SCREEN_W</span><span class="p">,</span><span class="n">SCREEN_H</span><span class="p">)</span> <span class="n">al_set_Window_title</span><span class="p">(</span><span class="n">display</span><span class="p">,</span><span class="n">TITLE</span><span class="p">)</span> <span class="n">al_clear_to_color</span><span class="p">(</span><span class="n">al_map_rgb</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">))</span> <span class="n">event_queue</span> <span class="o">=</span> <span class="n">al_create_event_queue</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_display_event_source</span><span class="p">(</span><span class="n">display</span><span class="p">))</span> <span class="n">ev</span> <span class="o">=</span> <span class="n">al_new_allegro_event</span><span class="p">()</span> <span class="n">timeout</span> <span class="o">=</span> <span class="n">al_new_allegro_timeout</span><span class="p">()</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">timer</span> <span class="o">=</span> <span class="n">al_create_timer</span><span class="p">(</span><span class="mf">1.0</span> <span class="o">/</span> <span class="n">FPS</span><span class="p">)</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_timer_event_source</span><span class="p">(</span><span class="n">timer</span><span class="p">))</span> <span class="n">al_start_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_install_mouse</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_mouse_event_source</span><span class="p">())</span> <span class="n">al_install_keyboard</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_keyboard_event_source</span><span class="p">())</span> <span class="k">func</span> <span class="n">eventsLoop</span> <span class="k">while</span> <span class="kp">true</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">al_wait_for_event_until</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">ev</span><span class="p">,</span> <span class="n">timeout</span><span class="p">)</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_type</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_DISPLAY_CLOSE</span> <span class="k">exit</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_TIMER</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_AXES</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_ENTER_DISPLAY</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_BUTTON_UP</span> <span class="k">exit</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_DOWN</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">off</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_UP</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_ESCAPE</span> <span class="k">exit</span> <span class="k">off</span> <span class="k">off</span> <span class="k">if</span> <span class="n">redraw</span> <span class="ow">and</span> <span class="n">al_is_event_queue_empty</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">false</span> <span class="n">drawScene</span><span class="p">()</span> <span class="n">al_flip_display</span><span class="p">()</span> <span class="k">ok</span> <span class="n">callgc</span><span class="p">()</span> <span class="k">end</span> <span class="k">func</span> <span class="n">destroy</span> <span class="n">destroyResources</span><span class="p">()</span> <span class="n">al_destroy_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_destroy_allegro_event</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">al_destroy_allegro_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">)</span> <span class="n">al_destroy_event_queue</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">al_destroy_display</span><span class="p">(</span><span class="n">display</span><span class="p">)</span> <span class="n">al_exit</span><span class="p">()</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="k">func</span> <span class="n">destroyResources</span> </pre></div> </div> <p>Screen Shot:</p> <img alt="Ring Cube" src="_images/ringcube3d.png" /> </div> <div class="section" id="many-cubes"> <span id="index-2"></span><h2>Many Cubes<a class="headerlink" href="#many-cubes" title="Permalink to this headline">¶</a></h2> <p>Source Code:</p> <div class="highlight-ring notranslate"><div class="highlight"><pre><span></span><span class="c"># Load Libraries</span> <span class="k">load</span> <span class="s">&quot;gamelib.ring&quot;</span> <span class="c"># RingAllegro Library</span> <span class="k">load</span> <span class="s">&quot;opengl21lib.ring&quot;</span> <span class="c"># RingOpenGL Library</span> <span class="c">#==============================================================</span> <span class="c"># To Support MacOS X</span> <span class="n">al_run_main</span><span class="p">()</span> <span class="k">func</span> <span class="n">al_game_start</span> <span class="c"># Called by al_run_main()</span> <span class="n">main</span><span class="p">()</span> <span class="c"># Now we call our main function</span> <span class="c">#==============================================================</span> <span class="k">func</span> <span class="n">main</span> <span class="k">new</span> <span class="n">GraphicsApp</span> <span class="p">{</span> <span class="n">start</span><span class="p">()</span> <span class="p">}</span> <span class="k">class</span> <span class="n">GraphicsApp</span> <span class="k">from</span> <span class="n">GraphicsAppBase</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;Many Cubes&quot;</span> <span class="n">bitmap</span> <span class="n">bitmap2</span> <span class="n">bitmap3</span> <span class="n">texture</span> <span class="n">texture2</span> <span class="n">texture3</span> <span class="n">fps</span> <span class="o">=</span> <span class="mi">120</span> <span class="n">xrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">yrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">zrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">nPerspective</span> <span class="o">=</span> <span class="mi">100</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">bitmap</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;sky1.jpg&quot;</span><span class="p">)</span> <span class="n">texture</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="n">bitmap2</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;sky2.jpg&quot;</span><span class="p">)</span> <span class="n">texture2</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap2</span><span class="p">)</span> <span class="n">bitmap3</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;sky3.jpg&quot;</span><span class="p">)</span> <span class="n">texture3</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap3</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap2</span><span class="p">)</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap3</span><span class="p">)</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="n">prepare</span><span class="p">()</span> <span class="n">cubes</span><span class="p">()</span> <span class="n">rotate</span><span class="p">()</span> <span class="k">func</span> <span class="n">Prepare</span> <span class="n">w</span> <span class="o">=</span> <span class="mi">800</span> <span class="n">h</span> <span class="o">=</span> <span class="mi">600</span> <span class="n">ratio</span> <span class="o">=</span> <span class="n">w</span> <span class="o">/</span> <span class="n">h</span> <span class="n">glViewport</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="n">w</span><span class="p">,</span> <span class="n">h</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_PROJECTION</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">gluPerspective</span><span class="p">(</span><span class="o">-</span><span class="n">nPerspective</span><span class="p">,</span><span class="n">ratio</span><span class="p">,</span><span class="mi">1</span><span class="p">,</span><span class="n">nPerspective</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_MODELVIEW</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">)</span> <span class="n">glShadeModel</span><span class="p">(</span><span class="n">GL_SMOOTH</span><span class="p">)</span> <span class="n">glClearColor</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span> <span class="n">glClearDepth</span><span class="p">(</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_DEPTH_TEST</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_CULL_FACE</span><span class="p">)</span> <span class="n">glDepthFunc</span><span class="p">(</span><span class="n">GL_LEQUAL</span><span class="p">)</span> <span class="n">glHint</span><span class="p">(</span><span class="n">GL_PERSPECTIVE_CORRECTION_HINT</span><span class="p">,</span> <span class="n">GL_NICEST</span><span class="p">)</span> <span class="n">glClear</span><span class="p">(</span><span class="n">GL_COLOR_BUFFER_BIT</span> <span class="o">|</span> <span class="n">GL_DEPTH_BUFFER_BIT</span><span class="p">)</span> <span class="k">func</span> <span class="n">Cubes</span> <span class="n">cube</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span><span class="o">-</span><span class="mf">3.4</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky1</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="o">-</span><span class="mi">3</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky1</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="o">-</span><span class="mi">5</span><span class="p">,</span><span class="o">-</span><span class="mi">3</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky1</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span><span class="mf">0.5</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky2</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mf">0.5</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky2</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="o">-</span><span class="mi">5</span><span class="p">,</span><span class="mf">0.5</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky2</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="mi">5</span><span class="p">,</span><span class="mi">4</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky3</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mi">4</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky3</span><span class="p">)</span> <span class="n">cube</span><span class="p">(</span><span class="o">-</span><span class="mi">5</span><span class="p">,</span><span class="mi">4</span><span class="p">,</span><span class="o">-</span><span class="mi">5</span><span class="p">,:</span><span class="n">sky3</span><span class="p">)</span> <span class="k">func</span> <span class="n">Rotate</span> <span class="n">xrot</span> <span class="o">+=</span> <span class="mf">0.3</span> <span class="o">*</span> <span class="mi">5</span> <span class="n">yrot</span> <span class="o">+=</span> <span class="mf">0.2</span> <span class="o">*</span> <span class="mi">5</span> <span class="n">zrot</span> <span class="o">+=</span> <span class="mf">0.4</span> <span class="o">*</span> <span class="mi">5</span> <span class="n">nPerspective</span> <span class="o">+=</span> <span class="mf">0.5</span> <span class="k">func</span> <span class="n">cube</span><span class="p">(</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span><span class="n">z</span><span class="p">,</span><span class="n">nTexture</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glTranslatef</span><span class="p">(</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span><span class="n">z</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">xrot</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">yrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">zrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">drawcube</span><span class="p">(</span><span class="n">nTexture</span><span class="p">)</span> <span class="k">func</span> <span class="n">drawcube</span><span class="p">(</span><span class="n">cTexture</span><span class="p">)</span> <span class="k">switch</span> <span class="n">cTexture</span> <span class="k">on</span> <span class="p">:</span><span class="n">sky1</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">texture</span><span class="p">)</span> <span class="k">on</span> <span class="p">:</span><span class="n">sky2</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">texture2</span><span class="p">)</span> <span class="k">on</span> <span class="p">:</span><span class="n">sky3</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">texture3</span><span class="p">)</span> <span class="k">off</span> <span class="n">glBegin</span><span class="p">(</span><span class="n">GL_QUADS</span><span class="p">)</span> <span class="o">//</span> <span class="n">Front</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Back</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Top</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Bottom</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Right</span> <span class="n">face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Left</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnd</span><span class="p">()</span> <span class="k">class</span> <span class="n">GraphicsAppBase</span> <span class="n">display</span> <span class="n">event_queue</span> <span class="n">ev</span> <span class="n">timeout</span> <span class="n">timer</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="n">FPS</span> <span class="o">=</span> <span class="mi">60</span> <span class="n">SCREEN_W</span> <span class="o">=</span> <span class="mi">800</span> <span class="n">SCREEN_H</span> <span class="o">=</span> <span class="mi">600</span> <span class="n">KEY_UP</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">KEY_DOWN</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">KEY_LEFT</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">KEY_RIGHT</span> <span class="o">=</span> <span class="mi">4</span> <span class="n">Key</span> <span class="o">=</span> <span class="o">[</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="o">]</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;Graphics Application&quot;</span> <span class="k">func</span> <span class="n">start</span> <span class="n">SetUp</span><span class="p">()</span> <span class="n">loadResources</span><span class="p">()</span> <span class="n">eventsLoop</span><span class="p">()</span> <span class="n">destroy</span><span class="p">()</span> <span class="k">func</span> <span class="n">setup</span> <span class="n">al_init</span><span class="p">()</span> <span class="n">al_init_image_addon</span><span class="p">()</span> <span class="n">al_set_new_display_flags</span><span class="p">(</span><span class="n">ALLEGRO_OPENGL</span><span class="p">)</span> <span class="n">display</span> <span class="o">=</span> <span class="n">al_create_display</span><span class="p">(</span><span class="n">SCREEN_W</span><span class="p">,</span><span class="n">SCREEN_H</span><span class="p">)</span> <span class="n">al_set_Window_title</span><span class="p">(</span><span class="n">display</span><span class="p">,</span><span class="n">TITLE</span><span class="p">)</span> <span class="n">al_clear_to_color</span><span class="p">(</span><span class="n">al_map_rgb</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">))</span> <span class="n">event_queue</span> <span class="o">=</span> <span class="n">al_create_event_queue</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_display_event_source</span><span class="p">(</span><span class="n">display</span><span class="p">))</span> <span class="n">ev</span> <span class="o">=</span> <span class="n">al_new_allegro_event</span><span class="p">()</span> <span class="n">timeout</span> <span class="o">=</span> <span class="n">al_new_allegro_timeout</span><span class="p">()</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">timer</span> <span class="o">=</span> <span class="n">al_create_timer</span><span class="p">(</span><span class="mf">1.0</span> <span class="o">/</span> <span class="n">FPS</span><span class="p">)</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_timer_event_source</span><span class="p">(</span><span class="n">timer</span><span class="p">))</span> <span class="n">al_start_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_install_mouse</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_mouse_event_source</span><span class="p">())</span> <span class="n">al_install_keyboard</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_keyboard_event_source</span><span class="p">())</span> <span class="k">func</span> <span class="n">eventsLoop</span> <span class="k">while</span> <span class="kp">true</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">al_wait_for_event_until</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">ev</span><span class="p">,</span> <span class="n">timeout</span><span class="p">)</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_type</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_DISPLAY_CLOSE</span> <span class="k">exit</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_TIMER</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_AXES</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_ENTER_DISPLAY</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_BUTTON_UP</span> <span class="k">exit</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_DOWN</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">off</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_UP</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_ESCAPE</span> <span class="k">exit</span> <span class="k">off</span> <span class="k">off</span> <span class="k">if</span> <span class="n">redraw</span> <span class="ow">and</span> <span class="n">al_is_event_queue_empty</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">false</span> <span class="n">drawScene</span><span class="p">()</span> <span class="n">al_flip_display</span><span class="p">()</span> <span class="k">ok</span> <span class="n">callgc</span><span class="p">()</span> <span class="k">end</span> <span class="k">func</span> <span class="n">destroy</span> <span class="n">destroyResources</span><span class="p">()</span> <span class="n">al_destroy_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_destroy_allegro_event</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">al_destroy_allegro_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">)</span> <span class="n">al_destroy_event_queue</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">al_destroy_display</span><span class="p">(</span><span class="n">display</span><span class="p">)</span> <span class="n">al_exit</span><span class="p">()</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="k">func</span> <span class="n">destroyResources</span> </pre></div> </div> <p>Screen Shot:</p> <img alt="Many Cubes" src="_images/manycubes.png" /> </div> <div class="section" id="tictactoe-3d-game"> <span id="index-3"></span><h2>TicTacToe 3D Game<a class="headerlink" href="#tictactoe-3d-game" title="Permalink to this headline">¶</a></h2> <p>Source Code:</p> <div class="highlight-ring notranslate"><div class="highlight"><pre><span></span><span class="c"># Load Libraries</span> <span class="k">load</span> <span class="s">&quot;gamelib.ring&quot;</span> <span class="c"># RingAllegro Library</span> <span class="k">load</span> <span class="s">&quot;opengl21lib.ring&quot;</span> <span class="c"># RingOpenGL Library</span> <span class="c">#==============================================================</span> <span class="c"># To Support MacOS X</span> <span class="n">al_run_main</span><span class="p">()</span> <span class="k">func</span> <span class="n">al_game_start</span> <span class="c"># Called by al_run_main()</span> <span class="n">main</span><span class="p">()</span> <span class="c"># Now we call our main function</span> <span class="c">#==============================================================</span> <span class="k">func</span> <span class="n">main</span> <span class="k">new</span> <span class="n">TicTacToe3D</span> <span class="p">{</span> <span class="n">start</span><span class="p">()</span> <span class="p">}</span> <span class="k">class</span> <span class="n">TicTacToe3D</span> <span class="k">from</span> <span class="n">GameLogic</span> <span class="n">FPS</span> <span class="o">=</span> <span class="mi">60</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;TicTacToe 3D&quot;</span> <span class="n">oBackground</span> <span class="o">=</span> <span class="k">new</span> <span class="n">GameBackground</span> <span class="n">oGameSound</span> <span class="o">=</span> <span class="k">new</span> <span class="n">GameSound</span> <span class="n">oGameCube</span> <span class="o">=</span> <span class="k">new</span> <span class="n">GameCube</span> <span class="n">oGameOver</span> <span class="o">=</span> <span class="k">new</span> <span class="n">GameOver</span> <span class="n">oGameInterface</span> <span class="o">=</span> <span class="k">new</span> <span class="n">GameInterface</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">oGameOver</span><span class="p">.</span><span class="n">loadresources</span><span class="p">()</span> <span class="n">oGameSound</span><span class="p">.</span><span class="n">loadresources</span><span class="p">()</span> <span class="n">oBackGround</span><span class="p">.</span><span class="n">loadresources</span><span class="p">()</span> <span class="n">oGameCube</span><span class="p">.</span><span class="n">loadresources</span><span class="p">()</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">oGameOver</span><span class="p">.</span><span class="n">destroyResources</span><span class="p">()</span> <span class="n">oGameSound</span><span class="p">.</span><span class="n">destroyResources</span><span class="p">()</span> <span class="n">oBackGround</span><span class="p">.</span><span class="n">destroyResources</span><span class="p">()</span> <span class="n">oGameCube</span><span class="p">.</span><span class="n">destroyResources</span><span class="p">()</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="n">oBackground</span><span class="p">.</span><span class="n">update</span><span class="p">()</span> <span class="n">oGameInterface</span><span class="p">.</span><span class="n">update</span><span class="p">(</span><span class="n">self</span><span class="p">)</span> <span class="k">func</span> <span class="n">MouseClickEvent</span> <span class="n">oGameInterface</span><span class="p">.</span><span class="n">MouseClickEvent</span><span class="p">(</span><span class="n">self</span><span class="p">)</span> <span class="k">class</span> <span class="n">GameInterface</span> <span class="k">func</span> <span class="n">Update</span> <span class="n">oGame</span> <span class="n">prepare</span><span class="p">()</span> <span class="n">cubes</span><span class="p">(</span><span class="n">oGame</span><span class="p">)</span> <span class="k">func</span> <span class="n">Prepare</span> <span class="n">w</span> <span class="o">=</span> <span class="mi">1024</span> <span class="n">h</span> <span class="o">=</span> <span class="mi">768</span> <span class="n">ratio</span> <span class="o">=</span> <span class="n">w</span> <span class="o">/</span> <span class="n">h</span> <span class="n">glViewport</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="mi">0</span><span class="p">,</span> <span class="n">w</span><span class="p">,</span> <span class="n">h</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_PROJECTION</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">gluPerspective</span><span class="p">(</span><span class="o">-</span><span class="mi">120</span><span class="p">,</span><span class="n">ratio</span><span class="p">,</span><span class="mi">1</span><span class="p">,</span><span class="mi">120</span><span class="p">)</span> <span class="n">glMatrixMode</span><span class="p">(</span><span class="n">GL_MODELVIEW</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">)</span> <span class="n">glShadeModel</span><span class="p">(</span><span class="n">GL_SMOOTH</span><span class="p">)</span> <span class="n">glClearColor</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.5</span><span class="p">)</span> <span class="n">glClearDepth</span><span class="p">(</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_DEPTH_TEST</span><span class="p">)</span> <span class="n">glEnable</span><span class="p">(</span><span class="n">GL_CULL_FACE</span><span class="p">)</span> <span class="n">glDepthFunc</span><span class="p">(</span><span class="n">GL_LEQUAL</span><span class="p">)</span> <span class="n">glHint</span><span class="p">(</span><span class="n">GL_PERSPECTIVE_CORRECTION_HINT</span><span class="p">,</span> <span class="n">GL_NICEST</span><span class="p">)</span> <span class="k">func</span> <span class="n">Cubes</span> <span class="n">oGame</span> <span class="n">oGame</span><span class="p">.</span><span class="n">oGameCube</span> <span class="p">{</span> <span class="n">aGameMap</span> <span class="o">=</span> <span class="n">oGame</span><span class="p">.</span><span class="n">aGameMap</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">5</span> <span class="p">,</span> <span class="o">-</span><span class="mi">3</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">0</span> <span class="p">,</span> <span class="o">-</span><span class="mi">3</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="o">-</span><span class="mi">3</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">5</span> <span class="p">,</span> <span class="mi">1</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">1</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="mi">1</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">5</span> <span class="p">,</span> <span class="mi">5</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">5</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span> <span class="p">)</span> <span class="n">cube</span><span class="p">(</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="mi">5</span> <span class="p">,</span> <span class="o">-</span><span class="mi">5</span> <span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span> <span class="p">)</span> <span class="n">rotate</span><span class="p">()</span> <span class="p">}</span> <span class="k">func</span> <span class="n">MouseClickEvent</span> <span class="n">oGame</span> <span class="n">oGame</span> <span class="p">{</span> <span class="n">aBtn</span> <span class="o">=</span> <span class="n">Point2Button</span><span class="p">(</span><span class="n">Mouse_X</span><span class="p">,</span><span class="n">Mouse_Y</span><span class="p">)</span> <span class="n">nRow</span> <span class="o">=</span> <span class="n">aBtn</span><span class="o">[</span><span class="mi">1</span><span class="o">]</span> <span class="n">nCol</span> <span class="o">=</span> <span class="n">aBtn</span><span class="o">[</span><span class="mi">2</span><span class="o">]</span> <span class="k">if</span> <span class="n">nRow</span> <span class="o">!=</span> <span class="mi">0</span> <span class="ow">and</span> <span class="n">nCol</span> <span class="o">!=</span> <span class="mi">0</span> <span class="k">if</span> <span class="n">aGameMap</span><span class="o">[</span><span class="n">nRow</span><span class="o">][</span><span class="n">nCol</span><span class="o">]</span> <span class="o">=</span> <span class="p">:</span><span class="n">n</span> <span class="n">aGameMap</span><span class="o">[</span><span class="n">nRow</span><span class="o">][</span><span class="n">nCol</span><span class="o">]</span> <span class="o">=</span> <span class="n">cActivePlayer</span> <span class="n">ChangeActivePlayer</span><span class="p">()</span> <span class="n">CheckGameOver</span><span class="p">()</span> <span class="k">ok</span> <span class="k">ok</span> <span class="p">}</span> <span class="k">Class</span> <span class="n">GameLogic</span> <span class="k">from</span> <span class="n">GraphicsAppBase</span> <span class="n">aGameMap</span> <span class="o">=</span> <span class="o">[</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="p">,</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="p">,</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="o">]</span> <span class="n">aGameButtons</span> <span class="o">=</span> <span class="o">[</span> <span class="c"># x1,y1,x2,y2</span> <span class="o">[</span><span class="mi">176</span><span class="p">,</span><span class="mi">88</span><span class="p">,</span><span class="mi">375</span><span class="p">,</span><span class="mi">261</span><span class="o">]</span><span class="p">,</span> <span class="c"># [1,1]</span> <span class="o">[</span><span class="mi">423</span><span class="p">,</span><span class="mi">88</span><span class="p">,</span><span class="mi">591</span><span class="p">,</span><span class="mi">261</span><span class="o">]</span><span class="p">,</span> <span class="c"># [1,2]</span> <span class="o">[</span><span class="mi">645</span><span class="p">,</span><span class="mi">88</span><span class="p">,</span><span class="mi">876</span><span class="p">,</span><span class="mi">261</span><span class="o">]</span><span class="p">,</span> <span class="c"># [1,3]</span> <span class="o">[</span><span class="mi">176</span><span class="p">,</span><span class="mi">282</span><span class="p">,</span><span class="mi">375</span><span class="p">,</span><span class="mi">428</span><span class="o">]</span><span class="p">,</span> <span class="c"># [2,1]</span> <span class="o">[</span><span class="mi">423</span><span class="p">,</span><span class="mi">282</span><span class="p">,</span><span class="mi">591</span><span class="p">,</span><span class="mi">428</span><span class="o">]</span><span class="p">,</span> <span class="c"># [2,2]</span> <span class="o">[</span><span class="mi">645</span><span class="p">,</span><span class="mi">282</span><span class="p">,</span><span class="mi">876</span><span class="p">,</span><span class="mi">428</span><span class="o">]</span><span class="p">,</span> <span class="c"># [2,3]</span> <span class="o">[</span><span class="mi">176</span><span class="p">,</span><span class="mi">454</span><span class="p">,</span><span class="mi">375</span><span class="p">,</span><span class="mi">678</span><span class="o">]</span><span class="p">,</span> <span class="c"># [3,1]</span> <span class="o">[</span><span class="mi">423</span><span class="p">,</span><span class="mi">454</span><span class="p">,</span><span class="mi">591</span><span class="p">,</span><span class="mi">678</span><span class="o">]</span><span class="p">,</span> <span class="c"># [3,2]</span> <span class="o">[</span><span class="mi">645</span><span class="p">,</span><span class="mi">454</span><span class="p">,</span><span class="mi">876</span><span class="p">,</span><span class="mi">678</span><span class="o">]</span> <span class="c"># [3,3]</span> <span class="o">]</span> <span class="n">cActivePlayer</span> <span class="o">=</span> <span class="p">:</span><span class="n">x</span> <span class="k">func</span> <span class="n">point2button</span> <span class="n">x</span><span class="p">,</span><span class="n">y</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">0</span> <span class="k">for</span> <span class="n">t</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">to</span> <span class="n">len</span><span class="p">(</span><span class="n">aGameButtons</span><span class="p">)</span> <span class="n">rect</span> <span class="o">=</span> <span class="n">aGameButtons</span><span class="o">[</span><span class="n">t</span><span class="o">]</span> <span class="k">if</span> <span class="n">x</span> <span class="o">&gt;=</span> <span class="n">rect</span><span class="o">[</span><span class="mi">1</span><span class="o">]</span> <span class="ow">and</span> <span class="n">x</span> <span class="o">&lt;=</span> <span class="n">rect</span><span class="o">[</span><span class="mi">3</span><span class="o">]</span> <span class="ow">and</span> <span class="n">y</span> <span class="o">&gt;=</span> <span class="n">rect</span><span class="o">[</span><span class="mi">2</span><span class="o">]</span> <span class="ow">and</span> <span class="n">y</span> <span class="o">&lt;=</span> <span class="n">rect</span><span class="o">[</span><span class="mi">4</span><span class="o">]</span> <span class="k">switch</span> <span class="n">t</span> <span class="k">on</span> <span class="mi">1</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">on</span> <span class="mi">2</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">2</span> <span class="k">on</span> <span class="mi">3</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">3</span> <span class="k">on</span> <span class="mi">4</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">on</span> <span class="mi">5</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">2</span> <span class="k">on</span> <span class="mi">6</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">3</span> <span class="k">on</span> <span class="mi">7</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">on</span> <span class="mi">8</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">2</span> <span class="k">on</span> <span class="mi">9</span> <span class="n">nRow</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">nCol</span> <span class="o">=</span> <span class="mi">3</span> <span class="k">off</span> <span class="k">exit</span> <span class="k">ok</span> <span class="k">next</span> <span class="k">return</span> <span class="o">[</span><span class="n">nRow</span><span class="p">,</span><span class="n">nCol</span><span class="o">]</span> <span class="k">func</span> <span class="n">ChangeActivePlayer</span><span class="p">()</span> <span class="k">if</span> <span class="n">cActivePlayer</span> <span class="o">=</span> <span class="p">:</span><span class="n">x</span> <span class="n">cActivePlayer</span> <span class="o">=</span> <span class="p">:</span><span class="n">o</span> <span class="k">else</span> <span class="n">cActivePlayer</span> <span class="o">=</span> <span class="p">:</span><span class="n">x</span> <span class="k">ok</span> <span class="k">func</span> <span class="n">CheckGameOver</span> <span class="n">aList</span> <span class="o">=</span> <span class="o">[</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">1</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">2</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span><span class="p">,</span> <span class="n">aGameMap</span><span class="o">[</span><span class="mi">3</span><span class="o">][</span><span class="mi">3</span><span class="o">]</span> <span class="o">]</span> <span class="k">for</span> <span class="n">item</span> <span class="k">in</span> <span class="n">aList</span> <span class="k">switch</span> <span class="n">item</span> <span class="k">on</span> <span class="p">:</span><span class="n">x</span> <span class="n">item</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">on</span> <span class="p">:</span><span class="n">o</span> <span class="n">item</span> <span class="o">=</span> <span class="mi">2</span> <span class="k">on</span> <span class="p">:</span><span class="n">n</span> <span class="n">item</span> <span class="o">=</span> <span class="mi">0</span> <span class="k">off</span> <span class="k">next</span> <span class="n">nStatus</span> <span class="o">=</span> <span class="n">CheckWinner</span><span class="p">(</span><span class="n">aList</span><span class="p">)</span> <span class="k">if</span> <span class="n">nStatus</span> <span class="n">oGameOver</span> <span class="p">{</span> <span class="k">Switch</span> <span class="n">nStatus</span> <span class="k">on</span> <span class="mi">1</span> <span class="n">Player1Win</span><span class="p">(</span><span class="n">this</span><span class="p">)</span> <span class="k">on</span> <span class="mi">2</span> <span class="n">Player2Win</span><span class="p">(</span><span class="n">this</span><span class="p">)</span> <span class="k">on</span> <span class="mi">3</span> <span class="n">NoOneWin</span><span class="p">(</span><span class="n">this</span><span class="p">)</span> <span class="k">off</span> <span class="p">}</span> <span class="n">refreshGame</span><span class="p">()</span> <span class="k">ok</span> <span class="k">func</span> <span class="n">refreshGame</span> <span class="n">aGameMap</span> <span class="o">=</span> <span class="o">[</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="p">,</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="p">,</span> <span class="o">[</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="p">,</span> <span class="p">:</span><span class="n">n</span> <span class="o">]</span> <span class="o">]</span> <span class="n">cActivePlayer</span> <span class="o">=</span> <span class="p">:</span><span class="n">x</span> <span class="k">func</span> <span class="n">CheckWinner</span> <span class="n">lst</span> <span class="o">//</span><span class="n">vertical</span> <span class="n">check</span> <span class="k">for</span> <span class="n">v</span><span class="o">=</span><span class="mi">1</span> <span class="k">to</span> <span class="mi">9</span> <span class="k">step</span> <span class="mi">3</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">+</span><span class="mi">1</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">+</span><span class="mi">2</span><span class="o">]!=</span><span class="mi">0</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">+</span><span class="mi">1</span><span class="o">]</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">+</span><span class="mi">1</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">+</span><span class="mi">2</span><span class="o">]</span> <span class="k">return</span> <span class="n">lst</span><span class="o">[</span><span class="n">v</span><span class="o">]</span> <span class="k">ok</span> <span class="k">ok</span> <span class="k">next</span> <span class="o">//</span><span class="n">horizontal</span> <span class="k">for</span> <span class="n">h</span><span class="o">=</span><span class="mi">1</span> <span class="k">to</span> <span class="mi">3</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">+</span><span class="mi">3</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">+</span><span class="mi">6</span><span class="o">]!=</span><span class="mi">0</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">+</span><span class="mi">3</span><span class="o">]</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">+</span><span class="mi">3</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">+</span><span class="mi">6</span><span class="o">]</span> <span class="k">return</span> <span class="n">lst</span><span class="o">[</span><span class="n">h</span><span class="o">]</span> <span class="k">ok</span> <span class="k">ok</span> <span class="k">next</span> <span class="o">//</span><span class="n">Cross</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="mi">1</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">9</span><span class="o">]!=</span><span class="mi">0</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="mi">1</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="mi">9</span><span class="o">]</span> <span class="k">return</span> <span class="n">lst</span><span class="o">[</span><span class="mi">1</span><span class="o">]</span> <span class="k">ok</span> <span class="k">ok</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="mi">3</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]!=</span><span class="mi">0</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">7</span><span class="o">]!=</span><span class="mi">0</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="mi">3</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]</span> <span class="ow">and</span> <span class="n">lst</span><span class="o">[</span><span class="mi">5</span><span class="o">]=</span><span class="n">lst</span><span class="o">[</span><span class="mi">7</span><span class="o">]</span> <span class="k">return</span> <span class="n">lst</span><span class="o">[</span><span class="mi">3</span><span class="o">]</span> <span class="k">ok</span> <span class="k">ok</span> <span class="o">//</span><span class="n">tie</span> <span class="n">tie</span><span class="o">=</span><span class="kp">true</span> <span class="k">for</span> <span class="n">i</span><span class="o">=</span><span class="mi">1</span> <span class="k">to</span> <span class="mi">9</span> <span class="k">if</span> <span class="n">lst</span><span class="o">[</span><span class="n">i</span><span class="o">]=</span><span class="mi">0</span> <span class="n">tie</span><span class="o">=</span><span class="kp">false</span> <span class="k">exit</span> <span class="k">ok</span> <span class="k">next</span> <span class="k">if</span> <span class="n">tie</span><span class="o">=</span><span class="kp">true</span> <span class="k">return</span> <span class="mi">3</span> <span class="k">ok</span> <span class="k">return</span> <span class="mi">0</span> <span class="k">class</span> <span class="n">GameOver</span> <span class="n">font</span> <span class="n">bitmap</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">font</span> <span class="o">=</span> <span class="n">al_load_ttf_font</span><span class="p">(</span><span class="s">&quot;font/pirulen.ttf&quot;</span><span class="p">,</span><span class="mi">54</span><span class="p">,</span><span class="mi">0</span> <span class="p">)</span> <span class="n">bitmap</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;image/ballon.png&quot;</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="n">al_destroy_font</span><span class="p">(</span><span class="n">font</span><span class="p">)</span> <span class="k">func</span> <span class="n">Player1Win</span> <span class="n">oGame</span> <span class="n">showMsg</span><span class="p">(</span><span class="n">oGame</span><span class="p">,</span><span class="mi">80</span><span class="p">,</span><span class="mi">430</span><span class="p">,</span><span class="s">&quot;Good job X you won!&quot;</span><span class="p">)</span> <span class="k">func</span> <span class="n">Player2Win</span> <span class="n">oGame</span> <span class="n">showMsg</span><span class="p">(</span><span class="n">oGame</span><span class="p">,</span><span class="mi">80</span><span class="p">,</span><span class="mi">430</span><span class="p">,</span><span class="s">&quot;Good job O you won!&quot;</span><span class="p">)</span> <span class="k">func</span> <span class="n">NoOneWin</span> <span class="n">oGame</span> <span class="n">showMsg</span><span class="p">(</span><span class="n">oGame</span><span class="p">,</span><span class="mi">150</span><span class="p">,</span><span class="mi">430</span><span class="p">,</span><span class="s">&quot;Oh no it&#39;s a tie!&quot;</span><span class="p">)</span> <span class="k">func</span> <span class="n">ShowMsg</span> <span class="n">oGame</span><span class="p">,</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span><span class="n">cMsg</span> <span class="n">oGame</span> <span class="p">{</span> <span class="n">drawScene</span><span class="p">()</span> <span class="n">al_flip_display</span><span class="p">()</span> <span class="n">al_rest</span><span class="p">(</span><span class="mf">0.3</span><span class="p">)</span> <span class="n">newdisplay</span> <span class="o">=</span> <span class="n">al_create_display</span><span class="p">(</span><span class="n">SCREEN_W</span><span class="p">,</span><span class="n">SCREEN_H</span><span class="p">)</span> <span class="n">al_set_window_title</span><span class="p">(</span><span class="n">newdisplay</span><span class="p">,</span><span class="n">TITLE</span><span class="p">)</span> <span class="n">al_clear_to_color</span><span class="p">(</span><span class="n">al_map_rgb</span><span class="p">(</span><span class="mi">255</span><span class="p">,</span><span class="mi">255</span><span class="p">,</span><span class="mi">255</span><span class="p">))</span> <span class="n">al_draw_bitmap</span><span class="p">(</span><span class="n">this</span><span class="p">.</span><span class="n">bitmap</span><span class="p">,</span><span class="mi">200</span><span class="p">,</span><span class="mi">50</span><span class="p">,</span><span class="mi">1</span><span class="p">)</span> <span class="n">al_draw_text</span><span class="p">(</span><span class="n">this</span><span class="p">.</span><span class="n">font</span><span class="p">,</span> <span class="n">al_map_rgb</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">,</span><span class="mi">255</span><span class="p">),</span> <span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span> <span class="n">ALLEGRO_ALIGN_LEFT</span><span class="p">,</span><span class="n">cMsg</span><span class="p">)</span> <span class="n">al_flip_display</span><span class="p">()</span> <span class="n">al_rest</span><span class="p">(</span><span class="mi">2</span><span class="p">)</span> <span class="n">al_destroy_display</span><span class="p">(</span><span class="n">newdisplay</span><span class="p">)</span> <span class="n">al_set_target_backbuffer</span><span class="p">(</span><span class="n">display</span><span class="p">)</span> <span class="p">}</span> <span class="k">class</span> <span class="n">GameCube</span> <span class="n">bitmap</span> <span class="n">bitmap2</span> <span class="n">bitmap3</span> <span class="n">textureX</span> <span class="n">textureO</span> <span class="n">textureN</span> <span class="n">xrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">yrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="n">zrot</span> <span class="o">=</span> <span class="mf">0.0</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">bitmap</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;image/o.png&quot;</span><span class="p">)</span> <span class="n">textureO</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="n">bitmap2</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;image/x.png&quot;</span><span class="p">)</span> <span class="n">textureX</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap2</span><span class="p">)</span> <span class="n">bitmap3</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;image/empty.png&quot;</span><span class="p">)</span> <span class="n">textureN</span> <span class="o">=</span> <span class="n">al_get_opengl_texture</span><span class="p">(</span><span class="n">bitmap3</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap2</span><span class="p">)</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap3</span><span class="p">)</span> <span class="k">func</span> <span class="n">cube</span><span class="p">(</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span><span class="n">z</span><span class="p">,</span><span class="n">nTexture</span><span class="p">)</span> <span class="n">glLoadIdentity</span><span class="p">()</span> <span class="n">glTranslatef</span><span class="p">(</span><span class="n">x</span><span class="p">,</span><span class="n">y</span><span class="p">,</span><span class="n">z</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">xrot</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">yrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">)</span> <span class="n">glRotatef</span><span class="p">(</span><span class="n">zrot</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">setCubeTexture</span><span class="p">(</span><span class="n">nTexture</span><span class="p">)</span> <span class="n">drawCube</span><span class="p">()</span> <span class="k">func</span> <span class="n">setCubeTexture</span> <span class="n">cTexture</span> <span class="k">switch</span> <span class="n">cTexture</span> <span class="k">on</span> <span class="p">:</span><span class="n">x</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">textureX</span><span class="p">)</span> <span class="k">on</span> <span class="p">:</span><span class="n">o</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">textureO</span><span class="p">)</span> <span class="k">on</span> <span class="p">:</span><span class="n">n</span> <span class="n">glBindTexture</span><span class="p">(</span><span class="n">GL_TEXTURE_2D</span><span class="p">,</span> <span class="n">textureN</span><span class="p">)</span> <span class="k">off</span> <span class="k">func</span> <span class="n">Rotate</span> <span class="n">xrot</span> <span class="o">+=</span> <span class="mf">0.3</span> <span class="o">*</span> <span class="mi">5</span> <span class="n">yrot</span> <span class="o">+=</span> <span class="mf">0.2</span> <span class="o">*</span> <span class="mi">5</span> <span class="n">zrot</span> <span class="o">+=</span> <span class="mf">0.4</span> <span class="o">*</span> <span class="mi">5</span> <span class="k">func</span> <span class="n">drawcube</span> <span class="n">glBegin</span><span class="p">(</span><span class="n">GL_QUADS</span><span class="p">)</span> <span class="o">//</span> <span class="n">Front</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Back</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Top</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Bottom</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Right</span> <span class="n">face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="o">//</span> <span class="n">Left</span> <span class="n">Face</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glTexCoord2f</span><span class="p">(</span><span class="mf">0.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">)</span> <span class="n">glVertex3f</span><span class="p">(</span><span class="o">-</span><span class="mf">1.0</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="o">-</span><span class="mf">1.0</span><span class="p">)</span> <span class="n">glEnd</span><span class="p">()</span> <span class="k">class</span> <span class="n">GameBackground</span> <span class="n">nBackX</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">nBackY</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">nBackDiffx</span> <span class="o">=</span> <span class="o">-</span><span class="mi">1</span> <span class="n">nBackDiffy</span> <span class="o">=</span> <span class="o">-</span><span class="mi">1</span> <span class="n">nBackMotion</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">aBackMotionList</span> <span class="o">=</span> <span class="o">[</span> <span class="o">[</span> <span class="o">-</span><span class="mi">1</span><span class="p">,</span> <span class="o">-</span><span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Down - Right</span> <span class="o">[</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Up</span> <span class="o">[</span> <span class="o">-</span><span class="mi">1</span><span class="p">,</span> <span class="o">-</span><span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Down - Right</span> <span class="o">[</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Up</span> <span class="o">[</span> <span class="mi">1</span> <span class="p">,</span> <span class="o">-</span><span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Down - Left</span> <span class="o">[</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Up</span> <span class="o">[</span> <span class="mi">1</span> <span class="p">,</span> <span class="o">-</span><span class="mi">1</span> <span class="o">]</span> <span class="p">,</span> <span class="c"># Down - Left</span> <span class="o">[</span> <span class="mi">0</span> <span class="p">,</span> <span class="mi">1</span> <span class="o">]</span> <span class="c"># Up</span> <span class="o">]</span> <span class="n">bitmap</span> <span class="k">func</span> <span class="n">Update</span> <span class="n">draw</span><span class="p">()</span> <span class="n">motion</span><span class="p">()</span> <span class="k">func</span> <span class="n">draw</span> <span class="n">al_draw_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">,</span><span class="n">nBackX</span><span class="p">,</span><span class="n">nBackY</span><span class="p">,</span><span class="mi">1</span><span class="p">)</span> <span class="k">func</span> <span class="n">motion</span> <span class="n">nBackX</span> <span class="o">+=</span> <span class="n">nBackDiffx</span> <span class="n">nBackY</span> <span class="o">+=</span> <span class="n">nBackDiffy</span> <span class="k">if</span> <span class="p">(</span><span class="n">nBackY</span> <span class="o">=</span> <span class="o">-</span><span class="mi">350</span><span class="p">)</span> <span class="ow">or</span> <span class="p">(</span><span class="n">nBackY</span> <span class="o">=</span> <span class="mi">0</span><span class="p">)</span> <span class="n">nBackMotion</span><span class="o">++</span> <span class="k">if</span> <span class="n">nBackMotion</span> <span class="o">&gt;</span> <span class="n">len</span><span class="p">(</span><span class="n">aBackMotionList</span><span class="p">)</span> <span class="n">nBackMotion</span> <span class="o">=</span> <span class="mi">1</span> <span class="k">ok</span> <span class="n">nBackDiffx</span> <span class="o">=</span> <span class="n">aBackMotionList</span><span class="o">[</span><span class="n">nBackMotion</span><span class="o">][</span><span class="mi">1</span><span class="o">]</span> <span class="n">nBackDiffy</span> <span class="o">=</span> <span class="n">aBackMotionList</span><span class="o">[</span><span class="n">nBackMotion</span><span class="o">][</span><span class="mi">2</span><span class="o">]</span> <span class="k">ok</span> <span class="k">func</span> <span class="n">loadResources</span> <span class="n">bitmap</span> <span class="o">=</span> <span class="n">al_load_bitmap</span><span class="p">(</span><span class="s">&quot;image/back.jpg&quot;</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_bitmap</span><span class="p">(</span><span class="n">bitmap</span><span class="p">)</span> <span class="k">class</span> <span class="n">GameSound</span> <span class="n">sample</span> <span class="n">sampleid</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="n">sample</span> <span class="o">=</span> <span class="n">al_load_sample</span><span class="p">(</span> <span class="s">&quot;sound/music1.wav&quot;</span> <span class="p">)</span> <span class="n">sampleid</span> <span class="o">=</span> <span class="n">al_new_allegro_sample_id</span><span class="p">()</span> <span class="n">al_play_sample</span><span class="p">(</span><span class="n">sample</span><span class="p">,</span> <span class="mf">1.0</span><span class="p">,</span> <span class="mf">0.0</span><span class="p">,</span><span class="mf">1.0</span><span class="p">,</span><span class="n">ALLEGRO_PLAYMODE_LOOP</span><span class="p">,</span><span class="n">sampleid</span><span class="p">)</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="n">al_destroy_allegro_sample_id</span><span class="p">(</span><span class="n">sampleid</span><span class="p">)</span> <span class="n">al_destroy_sample</span><span class="p">(</span><span class="n">sample</span><span class="p">)</span> <span class="k">class</span> <span class="n">GraphicsAppBase</span> <span class="n">display</span> <span class="n">event_queue</span> <span class="n">ev</span> <span class="n">timeout</span> <span class="n">timer</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="n">FPS</span> <span class="o">=</span> <span class="mi">60</span> <span class="n">SCREEN_W</span> <span class="o">=</span> <span class="mi">1024</span> <span class="n">SCREEN_H</span> <span class="o">=</span> <span class="mi">700</span> <span class="n">KEY_UP</span> <span class="o">=</span> <span class="mi">1</span> <span class="n">KEY_DOWN</span> <span class="o">=</span> <span class="mi">2</span> <span class="n">KEY_LEFT</span> <span class="o">=</span> <span class="mi">3</span> <span class="n">KEY_RIGHT</span> <span class="o">=</span> <span class="mi">4</span> <span class="n">Key</span> <span class="o">=</span> <span class="o">[</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="p">,</span><span class="kp">false</span><span class="o">]</span> <span class="n">Mouse_X</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">Mouse_Y</span> <span class="o">=</span> <span class="mi">0</span> <span class="n">TITLE</span> <span class="o">=</span> <span class="s">&quot;Graphics Application&quot;</span> <span class="n">PRINT_MOUSE_XY</span> <span class="o">=</span> <span class="kp">False</span> <span class="k">func</span> <span class="n">start</span> <span class="n">SetUp</span><span class="p">()</span> <span class="n">loadResources</span><span class="p">()</span> <span class="n">eventsLoop</span><span class="p">()</span> <span class="n">destroy</span><span class="p">()</span> <span class="k">func</span> <span class="n">setup</span> <span class="n">al_init</span><span class="p">()</span> <span class="n">al_init_font_addon</span><span class="p">()</span> <span class="n">al_init_ttf_addon</span><span class="p">()</span> <span class="n">al_init_image_addon</span><span class="p">()</span> <span class="n">al_install_audio</span><span class="p">()</span> <span class="n">al_init_acodec_addon</span><span class="p">()</span> <span class="n">al_reserve_samples</span><span class="p">(</span><span class="mi">1</span><span class="p">)</span> <span class="n">al_set_new_display_flags</span><span class="p">(</span><span class="n">ALLEGRO_OPENGL</span><span class="p">)</span> <span class="n">display</span> <span class="o">=</span> <span class="n">al_create_display</span><span class="p">(</span><span class="n">SCREEN_W</span><span class="p">,</span><span class="n">SCREEN_H</span><span class="p">)</span> <span class="n">al_set_window_title</span><span class="p">(</span><span class="n">display</span><span class="p">,</span><span class="n">TITLE</span><span class="p">)</span> <span class="n">al_clear_to_color</span><span class="p">(</span><span class="n">al_map_rgb</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">,</span><span class="mi">0</span><span class="p">))</span> <span class="n">event_queue</span> <span class="o">=</span> <span class="n">al_create_event_queue</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_display_event_source</span><span class="p">(</span><span class="n">display</span><span class="p">))</span> <span class="n">ev</span> <span class="o">=</span> <span class="n">al_new_allegro_event</span><span class="p">()</span> <span class="n">timeout</span> <span class="o">=</span> <span class="n">al_new_allegro_timeout</span><span class="p">()</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">timer</span> <span class="o">=</span> <span class="n">al_create_timer</span><span class="p">(</span><span class="mf">1.0</span> <span class="o">/</span> <span class="n">FPS</span><span class="p">)</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_timer_event_source</span><span class="p">(</span><span class="n">timer</span><span class="p">))</span> <span class="n">al_start_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_install_mouse</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_mouse_event_source</span><span class="p">())</span> <span class="n">al_install_keyboard</span><span class="p">()</span> <span class="n">al_register_event_source</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">al_get_keyboard_event_source</span><span class="p">())</span> <span class="k">func</span> <span class="n">eventsLoop</span> <span class="k">while</span> <span class="kp">true</span> <span class="n">al_init_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">,</span> <span class="mf">0.06</span><span class="p">)</span> <span class="n">al_wait_for_event_until</span><span class="p">(</span><span class="n">event_queue</span><span class="p">,</span> <span class="n">ev</span><span class="p">,</span> <span class="n">timeout</span><span class="p">)</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_type</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_DISPLAY_CLOSE</span> <span class="n">CloseEvent</span><span class="p">()</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_TIMER</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_AXES</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">if</span> <span class="n">PRINT_MOUSE_XY</span> <span class="k">see</span> <span class="s">&quot;x = &quot;</span> <span class="o">+</span> <span class="n">mouse_x</span> <span class="o">+</span> <span class="n">nl</span> <span class="k">see</span> <span class="s">&quot;y = &quot;</span> <span class="o">+</span> <span class="n">mouse_y</span> <span class="o">+</span> <span class="n">nl</span> <span class="k">ok</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_ENTER_DISPLAY</span> <span class="n">mouse_x</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_x</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">mouse_y</span> <span class="o">=</span> <span class="n">al_get_allegro_event_mouse_y</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_MOUSE_BUTTON_UP</span> <span class="n">MouseClickEvent</span><span class="p">()</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_DOWN</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">true</span> <span class="k">off</span> <span class="k">on</span> <span class="n">ALLEGRO_EVENT_KEY_UP</span> <span class="k">switch</span> <span class="n">al_get_allegro_event_keyboard_keycode</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_UP</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_UP</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_DOWN</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_DOWN</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_LEFT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_LEFT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_RIGHT</span> <span class="n">key</span><span class="o">[</span><span class="n">KEY_RIGHT</span><span class="o">]</span> <span class="o">=</span> <span class="kp">false</span> <span class="k">on</span> <span class="n">ALLEGRO_KEY_ESCAPE</span> <span class="k">exit</span> <span class="k">off</span> <span class="k">off</span> <span class="k">if</span> <span class="n">redraw</span> <span class="ow">and</span> <span class="n">al_is_event_queue_empty</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">redraw</span> <span class="o">=</span> <span class="kp">false</span> <span class="n">drawScene</span><span class="p">()</span> <span class="n">al_flip_display</span><span class="p">()</span> <span class="k">ok</span> <span class="n">callgc</span><span class="p">()</span> <span class="k">end</span> <span class="k">func</span> <span class="n">destroy</span> <span class="n">destroyResources</span><span class="p">()</span> <span class="n">al_destroy_timer</span><span class="p">(</span><span class="n">timer</span><span class="p">)</span> <span class="n">al_destroy_allegro_event</span><span class="p">(</span><span class="n">ev</span><span class="p">)</span> <span class="n">al_destroy_allegro_timeout</span><span class="p">(</span><span class="n">timeout</span><span class="p">)</span> <span class="n">al_destroy_event_queue</span><span class="p">(</span><span class="n">event_queue</span><span class="p">)</span> <span class="n">al_destroy_display</span><span class="p">(</span><span class="n">display</span><span class="p">)</span> <span class="n">al_exit</span><span class="p">()</span> <span class="k">func</span> <span class="n">loadresources</span> <span class="k">func</span> <span class="n">drawScene</span> <span class="k">func</span> <span class="n">destroyResources</span> <span class="k">func</span> <span class="n">MouseClickEvent</span> <span class="k">exit</span> <span class="c"># Exit from the Events Loop</span> <span class="k">func</span> <span class="n">CloseEvent</span> <span class="k">exit</span> <span class="c"># Exit from the Events Loop</span> </pre></div> </div> <p>Screen Shot:</p> <a class="reference internal image-reference" href="_images/tictactoe3d.png"><img alt="TicTacToe 3D Game" src="_images/tictactoe3d.png" style="width: 450pt; height: 350pt;" /></a> </div> <div class="section" id="more-3d-samples"> <span id="index-4"></span><h2>More 3D Samples<a class="headerlink" href="#more-3d-samples" title="Permalink to this headline">¶</a></h2> <p>You will find the samples in ring/samples/3D folder</p> <p>The next screen shot for the Top-Down view - Many levels of cubes sample</p> <img alt="3D samples" src="_images/more3dsamples.jpg" /> <p>The next screen shot for the Camera Sample</p> <img alt="3D samples" src="_images/more3dsamples2.jpg" /> <p>The next screen shot for the Camera and background sample</p> <p>Developer : Azzeddine Remmal</p> <img alt="Camera and background" src="_images/cameraandbackground.png" /> </div> </div> </div> </div> <footer> <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> <a href="goldmagic800.html" class="btn btn-neutral float-right" title="The Gold Magic 800 Game" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a> <a href="usingopengl.html" class="btn btn-neutral float-left" title="Using RingOpenGL and RingFreeGLUT for 3D Graphics" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> <hr/> <div role="contentinfo"> <p> &copy; Copyright 2016-2022, Ring Team </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/rtfd/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. </footer> </div> </div> </section> </div> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.Navigation.enable(false); }); </script> </body> </html>
Java_tutorial/ui/overview/compHierarchy.html
pitpitman/GraduateWork
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <!--NewPage--> <html> <head> <title>The Component Hierarchy</title> </head> <body BGCOLOR="#ffffff"> <table width="100%"> <tr> <td align=left> <a href="egClasses.html"><img src="../../images/PreviousArrow.gif" width=26 height=26 align=bottom border=0 alt="Previous | "></a><a href="drawing.html"><img src="../../images/NextArrow.gif" width=26 height=26 align=bottom border=0 alt="Next | "></a><a href="../../trailmap.html"><img src="../../images/WayUpArrow.gif" width=26 height=26 align=bottom border=0 alt="Trail Map | "></a><a href="../index.html"><img src="../../images/uiHeader.gif" width=26 height=26 align=bottom border=0 alt="Creating a User Interface | "></a> </td> <td align=right> <a href="index.html"><strong><em>Overview of the Java UI</em></strong></a> </td> </tr> </table> <p> <hr size=4> <h2> The Component Hierarchy </h2> <p> <blockquote> <blockquote><IMG SRC="../../figures/ui/13ui4.gif" WIDTH="436" HEIGHT="247" ALIGN="BOTTOM" NATURALSIZEFLAG="3"></blockquote> <p> The example program (see above) has several levels in its Component hierarchy. The parent of each level is a Container (which inherits from Component). Below is a figure of the hierarchy. <blockquote><IMG SRC="../../figures/ui/13ui5.gif" WIDTH="462" HEIGHT="181" ALIGN="BOTTOM" NATURALSIZEFLAG="3"></blockquote> <h4>Explanation</h4> <blockquote> At the top of the hierarchy is the window (Frame instance) that displays the program. When the example program runs as an application, the Frame is created in the program's <code>main()</code> method. When the example runs as an applet within a browser, the Frame is the browser window. <p> Under the Frame is a Converter object, which inherits from Applet and thus is a Container (specifically, a Panel). Depending on what viewer the applet is displayed in, one or more Containers might be between the Converter object and the Frame at the top of the Component hierarchy. <p> Directly under the Converter object are two ConversionPanels. The following code puts them under the Converter, using the <code>add()</code> method. Converter inherits the <code>add()</code> method from the Container class (Converter extends Applet, which extends Panel, which extends Container). <blockquote> <pre> public class Converter extends Applet { . . . public void init() { <em>...//Create metricPanel and usaPanel, two ConversionPanels.</em> add(metricPanel); add(usaPanel); . . . } </pre> </blockquote> Each ConversionPanel has four children: a Label, a TextField, a Scrollbar, and a Choice. Here's the code that adds the children: <blockquote> <pre> class ConversionPanel extends Panel { . . . ConversionPanel(Converter myController, String myTitle, Unit myUnits[]) { . . . //Add the label. It displays this panel's title, centered. Label label = new Label(myTitle, Label.CENTER); <em>...//Set up GridBagConstraints for this Component.</em> gridbag.setConstraints(label, c); add(label); //Add the text field. It initially displays "0" and needs //to be at least 10 columns wide. textField = new TextField("0", 10); <em>...//Set up GridBagConstraints for this Component.</em> gridbag.setConstraints(textField, c); add(textField); //Add the pop-up list (Choice). unitChooser = new Choice(); <em>...//Populate it with items.</em> <em>...//Set up GridBagConstraints for this Component.</em> gridbag.setConstraints(unitChooser, c); add(unitChooser); //Add the slider. It's horizontal, its initial value is 0, //a click increments the value by 100 pixels, and it has the //minimum and maximum values specified by the instance variables //min and max. slider = new Scrollbar(Scrollbar.HORIZONTAL, 0, 100, min, max); <em>...//Set up GridBagConstraints for this Component.</em> gridbag.setConstraints(slider, c); add(slider); } </pre> </blockquote> GridBagConstraints is an object that tells the GridBagLayout (the layout manager for each ConversionPanel) how to place a particular component. GridBagLayout, along with the other AWT layout managers, is discussed in <a target="_top" href="../layout/index.html">Laying Out Components within a Container</a><a target="_top" href="../layout/index.html"><img src="../../images/uiIcon.gif" width=20 height=20 border=0 alt="(in the Creating a User Interface trail)"></a>. </blockquote> <h4>Summary</h4> <blockquote> The example program's Component hierarchy contains eight non-Container Components -- Components that present the graphical UI of the program. These are the Labels, TextFields, Choices, and Scrollbars the program displays. There might be additional Components such as window controls under the Frame. <p> This program's Component hierarchy has at least four Containers -- a Frame (window), a Converter (a custom kind of Panel), and two ConversionPanels (another custom Panel). <p> Note that if we add a window -- for example, a Frame that contains a Converter instance that handles distance conversion -- the new window will have its own Component hierarchy, unattached to the hierarchy this lesson presents. </blockquote> </blockquote> <p> <hr size=4> <p> <table width="100%"> <tr> <td align=left> <a href="egClasses.html"><img src="../../images/PreviousArrow.gif" width=26 height=26 align=top border=0 alt="Previous | "></a><a href="drawing.html"><img src="../../images/NextArrow.gif" width=26 height=26 align=top border=0 alt="Next | "></a><a href="../../trailmap.html"><img src="../../images/WayUpArrow.gif" width=26 height=26 align=top border=0 alt="Trail Map | "></a><a href="../index.html"><img src="../../images/uiHeader.gif" width=26 height=26 align=top border=0 alt="Creating a User Interface | "></a> </td> <td align=right> <a href="index.html"><strong><em>Overview of the Java UI</em></strong></a> </td> </tr> </table> </body> </html>
css/base/base.css
Hishengs/heyui
/** * primary:3a9aff 2989ee * success:8fbe33 7ead22 * info:8fbeef 7eadde * warning:ff6700 ee5600 * danger:e53935 d42824 * */ *{ font-family: 'Microsoft Yahei'; } body,html{ font-size: 10px; /* width: 100%; height: 100%; padding: 0; margin: 0; */ } @media screen and (max-width:960px) { body,html{font-size: 12px;} } p,div,span,a,button,input,textarea{ font-size: 1.4rem !important; font-size: 14px; } /**h1-h6*/ h1{ font-size: 3.2rem !important; font-size: 32px; font-weight: bold; margin-top: 20px; margin-bottom: 10px; } h2{ font-size: 2.8rem !important; font-size: 28px; font-weight: bold; margin-top: 20px; margin-bottom: 10px; } h3{ font-size: 2.2rem !important; font-size: 22px; font-weight: bold; margin-top: 20px; margin-bottom: 10px; } h4{ font-size: 1.8rem !important; font-size: 18px; font-weight: bold; margin: 10px 0px; } h5{ font-size: 1.6rem !important; font-size: 16px; font-weight: bold; margin: 10px 0px; } h6{ font-size: 1.2rem !important; font-size: 12px; font-weight: bold; margin: 10px 0px; } /**文本对齐*/ .text-left{ text-align: left; } .text-center{ text-align: center; } .text-right{ text-align: right; } /**文本大小*/ .text-xxxlarge{ font-size: 3.0rem !important; font-size: 30px; } .text-xxlarge{ font-size: 2.4rem !important; font-size: 24px; } .text-xlarge{ font-size: 2.0rem !important; font-size: 20px; } .text-large{ font-size: 1.6rem !important; font-size: 16px; } .text-small{ font-size: 1.2rem !important; font-size: 12px; } /*文本颜色*/ .text-primary,.text-blue{ color: #3a9aff !important; } .text-success,.text-green{ color: #8fbe33 !important; } .text-info,.text-sky-blue{ color: #8fbeef !important; } .text-warning,.text-orange{ color: #ff6700 !important; } .text-danger,.text-red{ color: #e53935 !important; } /*引用*/ div.h-quote,p.h-quote,span.h-quote{ border-left: 5px solid #aaa; padding: 10px 15px; background-color: #eee; margin-bottom: 10px; } /*背景颜色*/ .bg-primary,.bg-blue{ background-color: #3a9aff !important; color: #ffffff; } .bg-success,.bg-green{ background-color: #8fbe33 !important; color: #ffffff; } .bg-info,.bg-sky-blue{ background-color: #8fbeef !important; color: #ffffff; } .bg-warning,.bg-orange{ background-color: #ff6700 !important; color: #ffffff; } .bg-danger,.bg-red{ background-color: #e53935 !important; color: #ffffff; } /*显示 display*/ .dis-inline-block{ display: inline-block; } .dis-block{ display: block; } /*hr 分割线*/ hr{ margin: 10px 0px; border-top: 1px solid transparent; border-bottom: 1px solid #ddd; border-left: 0; } /**hide 显示/隐藏*/ .show{ display: block !important; } .invisible{ visibility: hidden !important; } .hide{ display: none !important; visibility: hidden !important; } /**浮动*/ .f-left{ float: left !important; } .f-right{ float: right !important; } /*clear float 清除浮动*/ .clear-float:before,.clear-float:after{ display: table; content: ""; } .clear-float:after{ clear: both; height: 0; line-height: 0; font-size: 0; } /*外边距*/ .m-top-10{ margin-top: 10px; } .m-top-15{ margin-top: 15px; } .m-top-20{ margin-top: 20px; } .m-top-30{ margin-top: 30px; } .m-bottom-10{ margin-bottom: 10px; } .m-bottom-15{ margin-bottom: 15px; } .m-bottom-20{ margin-bottom: 20px; } .m-bottom-30{ margin-bottom: 30px; } .m-left-10{ margin-left: 10px; } .m-left-15{ margin-left: 15px; } .m-left-20{ margin-left: 20px; } .m-left-30{ margin-left: 30px; } .m-right-10{ margin-right: 10px; } .m-right-15{ margin-right: 15px; } .m-right-20{ margin-right: 20px; } .m-right-30{ margin-right: 30px; } /*内边距*/ .p-top-10{ padding-top: 10px; } .p-top-15{ padding-top: 15px; } .p-top-20{ padding-top: 20px; } .p-top-30{ padding-top: 30px; } .p-bottom-10{ padding-bottom: 10px; } .p-bottom-15{ padding-bottom: 15px; } .p-bottom-20{ padding-bottom: 20px; } .p-bottom-30{ padding-bottom: 30px; } .p-left-10{ padding-left: 10px; } .p-left-15{ padding-left: 15px; } .p-left-20{ padding-left: 20px; } .p-left-30{ padding-left: 30px; } .p-right-10{ padding-right: 10px; } .p-right-15{ padding-right: 15px; } .p-right-20{ padding-right: 20px; } .p-right-30{ padding-right: 30px; }
AngularEggHead/app17-elements/Index.html
danielmackay/Angular-Egghead
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>AngularJS Tutorials</title> <link href="../Content/bootstrap.min.css" rel="stylesheet" /> </head> <body> <div ng-app="app"> <dumb-password></dumb-password> </div> <script src="../scripts/angular.min.js"></script> <script src="main.js"></script> </body> </html>
docs/class-ApiAxleTest.AllTests.html
fillup/apiaxle-module
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="ApiGen 2.8.0" /> <title>Class ApiAxleTest\AllTests | fillup/apiaxle</title> <script type="text/javascript" src="resources/combined.js?3551695169"></script> <script type="text/javascript" src="elementlist.js?887202800"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?3505392360" /> </head> <body> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li><a href="namespace-ApiAxle.html">ApiAxle<span></span></a> <ul> <li><a href="namespace-ApiAxle.Api.html">Api</a> </li> <li><a href="namespace-ApiAxle.Shared.html">Shared</a> </li> </ul></li> <li class="active"><a href="namespace-ApiAxleTest.html">ApiAxleTest<span></span></a> <ul> <li><a href="namespace-ApiAxleTest.Api.html">Api</a> </li> <li><a href="namespace-ApiAxleTest.Shared.html">Shared</a> </li> </ul></li> <li><a href="namespace-PHP.html">PHP</a> </li> </ul> </div> <hr /> <div id="elements"> <h3>Classes</h3> <ul> <li class="active"><a href="class-ApiAxleTest.AllTests.html">AllTests</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value="" /> <input type="hidden" name="ie" value="UTF-8" /> <input type="text" name="q" class="text" /> <input type="submit" value="Search" /> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li> <a href="namespace-ApiAxleTest.html" title="Summary of ApiAxleTest"><span>Namespace</span></a> </li> <li class="active"> <span>Class</span> </li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> <li> <a href="todo.html" title="Todo list"><span>Todo</span></a> </li> </ul> <ul> </ul> </div> <div id="content" class="class"> <h1>Class AllTests</h1> <div class="info"> <b>Namespace:</b> <a href="namespace-ApiAxleTest.html">ApiAxleTest</a><br /> <b>Located at</b> <a href="source-class-ApiAxleTest.AllTests.html#9-20" title="Go to source code">tests/AllTests.php</a><br /> </div> <table class="summary" id="methods"> <caption>Methods summary</caption> <tr data-order="suite" id="_suite"> <td class="attributes"><code> public static </code> </td> <td class="name"><div> <a class="anchor" href="#_suite">#</a> <code><a href="source-class-ApiAxleTest.AllTests.html#11-19" title="Go to source code">suite</a>( )</code> <div class="description short"> </div> <div class="description detailed hidden"> </div> </div></td> </tr> </table> </div> <div id="footer"> fillup/apiaxle API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </div> </div> </div> </body> </html>
docs/api/algorithms/compGeometry/clustering/twopointcorrelation/package-summary.html
tectronics/two-point-correlation
<!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_51) on Mon Jun 30 01:29:13 PDT 2014 --> <title>algorithms.compGeometry.clustering.twopointcorrelation</title> <meta name="date" content="2014-06-30"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="algorithms.compGeometry.clustering.twopointcorrelation"; } //--> </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-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../algorithms/compGeometry/package-summary.html">Prev Package</a></li> <li><a href="../../../../algorithms/compGeometry/convexHull/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?algorithms/compGeometry/clustering/twopointcorrelation/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;algorithms.compGeometry.clustering.twopointcorrelation</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation"> <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Interface</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/IGroupFinder.html" title="interface in algorithms.compGeometry.clustering.twopointcorrelation">IGroupFinder</a></td> <td class="colLast"> <div class="block">interface for classes that find groups of points based upon the background threshhold density.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/IPointBackgroundStats.html" title="interface in algorithms.compGeometry.clustering.twopointcorrelation">IPointBackgroundStats</a></td> <td class="colLast"> <div class="block">interface for classes which supply an estimate of the background void density</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/ITwoPointIdentity.html" title="interface in algorithms.compGeometry.clustering.twopointcorrelation">ITwoPointIdentity</a></td> <td class="colLast"> <div class="block">interface for classes used to hold a point identity pair uniquely.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/IVoidFinder.html" title="interface in algorithms.compGeometry.clustering.twopointcorrelation">IVoidFinder</a></td> <td class="colLast"> <div class="block">interface for classes that find the voids (that is, space between points) in the dataset</div> </td> </tr> </tbody> </table> </li> <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="../../../../algorithms/compGeometry/clustering/twopointcorrelation/AbstractGroupFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">AbstractGroupFinder</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/AbstractPointBackgroundStats.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">AbstractPointBackgroundStats</a></td> <td class="colLast"> <div class="block">abstract class for implementations of IPointBackgroundStats to do some of the boiler plate code such as file persistence</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/AbstractVoidFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">AbstractVoidFinder</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/AxisIndexer.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">AxisIndexer</a></td> <td class="colLast"> <div class="block"> Class to hold x and y array of points whose values have been indexed by increasing x and y.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/CompleteSamplingVoidFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">CompleteSamplingVoidFinder</a></td> <td class="colLast"> <div class="block"> an implementation of VoidFinder that uses complete sampling to determine the background (void) point density.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/DFSGroupFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">DFSGroupFinder</a></td> <td class="colLast"> <div class="block"> An implementation of IGroupFinder that uses a depth first search algorithm to visit all nodes in a dataset and put into groups those within distance < threshhold * threshholdFactor from each other.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/DivideAndConquerVoidFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">DivideAndConquerVoidFinder</a></td> <td class="colLast"> <div class="block">an implementation of IVoidFinder that uses a divide and conquer approach to sampling the data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/Main.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">Main</a></td> <td class="colLast"> <div class="block"> Usage from the command line: Requires a tab delimited text file with 4 columns: x, y, xErrors, yErrors.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/PerformanceMetricsRunner.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">PerformanceMetricsRunner</a></td> <td class="colLast"> <div class="block">estimates performance metrics for TwoPointCorrelation as the dependencies upon N of the amount of memory needed and the runtime.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/RandomClusterAndBackgroundGenerator.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">RandomClusterAndBackgroundGenerator</a></td> <td class="colLast"> <div class="block">utility class for unit tests which need to create random background points and points in clusters.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/SerializerUtil.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">SerializerUtil</a></td> <td class="colLast"> <div class="block">a utility class for serializing and de-serializing the indexer contents to the file system</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/SimpleLinkedListNode.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">SimpleLinkedListNode</a></td> <td class="colLast"> <div class="block">a node holding only a integer key and the next reference.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/SubsetSamplingVoidFinder.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">SubsetSamplingVoidFinder</a></td> <td class="colLast"> <div class="block">an instance of IVoidFinder that uses a subsection of the AxisIndexer data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointBinarySearchTree.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointBinarySearchTree</a></td> <td class="colLast"> <div class="block"> A holder for two-point identities, where the identities are the indexes of the indexer internal arrays.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointCorrelation.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointCorrelation</a></td> <td class="colLast"> <div class="block"> Find clusters in data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointCorrelationPlotter.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointCorrelationPlotter</a></td> <td class="colLast"> <div class="block"> Convenience class to create a plot to visualize results of the Two-Point correlation code.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointHashMap.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointHashMap</a></td> <td class="colLast"> <div class="block"> A holder for two-point identities, where the identities are the indexes of the indexer internal arrays.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointIdentityFactory.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointIdentityFactory</a></td> <td class="colLast"> <div class="block">creates an instance of ITwoPointIdentity</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointVoidStats.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointVoidStats</a></td> <td class="colLast"> <div class="block"> Class to estimate a background density for a set of points in which the background density will be used by the calling program to find clusters, that is groups of points associated by proximity, in the data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointVoidStatsPlotter.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointVoidStatsPlotter</a></td> <td class="colLast"> <div class="block">code to produce plots for visualizing the results of and debugging TwoPointVoidStats</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/VoidReader.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">VoidReader</a></td> <td class="colLast"> <div class="block">a class to read a persisted set of background void points</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation"> <caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Enum</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/RandomClusterAndBackgroundGenerator.CLUSTER_SEPARATION.html" title="enum in algorithms.compGeometry.clustering.twopointcorrelation">RandomClusterAndBackgroundGenerator.CLUSTER_SEPARATION</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointCorrelation.BACKGROUND_METHOD.html" title="enum in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointCorrelation.BACKGROUND_METHOD</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointCorrelation.STATE.html" title="enum in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointCorrelation.STATE</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointVoidStats.State.html" title="enum in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointVoidStats.State</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/VoidSampling.html" title="enum in algorithms.compGeometry.clustering.twopointcorrelation">VoidSampling</a></td> <td class="colLast"> <div class="block">enumeration of types of sampling for the background void points</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation"> <caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Exception</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../algorithms/compGeometry/clustering/twopointcorrelation/TwoPointVoidStatsException.html" title="class in algorithms.compGeometry.clustering.twopointcorrelation">TwoPointVoidStatsException</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-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../algorithms/compGeometry/package-summary.html">Prev Package</a></li> <li><a href="../../../../algorithms/compGeometry/convexHull/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?algorithms/compGeometry/clustering/twopointcorrelation/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>
public/roll.html
vinceallenvince/FloraJS-Flocking
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta name="viewport" content = "user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <title>FloraJS | Simulate natural systems with JavaScript</title> <link rel="stylesheet" href="css/Burner.min.css" type="text/css" charset="utf-8"> <link rel="stylesheet" href="css/Flora.min.css" type="text/css" charset="utf-8"> <script src="scripts/Burner.min.js" type="text/javascript" charset="utf-8"></script> <script src="scripts/Flora.min.js" type="text/javascript" charset="utf-8"></script> </head> <body> <script src="scripts/roll.js" type="text/javascript" charset="utf-8"></script> </body> </html>
src/Lc/LcBundle/Resources/public/css/grayscale.css
theredfoxfire/lc
/*! * Start Bootstrap - Grayscale Bootstrap Theme (http://startbootstrap.com) * Code licensed under the Apache License v2.0. * For details, see http://www.apache.org/licenses/LICENSE-2.0. */ body { width: 100%; height: 100%; font-family: Lora,"Helvetica Neue",Helvetica,Arial,sans-serif; color: #fff; background-color: #49112A; } html { width: 100%; height: 100%; } h1, h2, h3, h4, h5, h6 { margin: 0 0 35px; text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 700; letter-spacing: 1px; } p { margin: 0 0 25px; font-size: 18px; line-height: 1.5; } .agreement{ font-size: 14px !important; } @media(min-width:767px) { p { margin: 0 0 35px; font-size: 20px; line-height: 1.6; } } a { color: #219ab3; -webkit-transition: all .2s ease-in-out; -moz-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } a:hover, a:focus { text-decoration: none; color: #11505d; } .light { font-weight: 400; } .navbar-custom { margin-bottom: 0; border-bottom: 1px solid rgba(255,255,255,.3); text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; background-color: #6C0D38; } .navbar-custom .navbar-brand { font-weight: 700; } .navbar-custom .navbar-brand:focus { outline: 0; } .navbar-custom .navbar-brand .navbar-toggle { padding: 4px 6px; font-size: 16px; color: #fff; } .navbar-custom .navbar-brand .navbar-toggle:focus, .navbar-custom .navbar-brand .navbar-toggle:active { outline: 0; } .navbar-custom a { color: #fff; } .navbar-custom .nav li.active { outline: nonte; background-color: rgba(255,255,255,.3); } .navbar-custom .nav li a { -webkit-transition: background .3s ease-in-out; -moz-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .navbar-custom .nav li a:hover, .navbar-custom .nav li a:focus, .navbar-custom .nav li a.active { outline: 0; background-color: rgba(255,255,255,.3); } @media(min-width:767px) { .navbar { padding: 20px 0; border-bottom: 0; letter-spacing: 1px; background: 0 0; -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out; -moz-transition: background .5s ease-in-out,padding .5s ease-in-out; transition: background .5s ease-in-out,padding .5s ease-in-out; } .top-nav-collapse { padding: 0; background-color: #6C0D38; } .navbar-custom.top-nav-collapse { border-bottom: 1px solid rgba(255,255,255,.3); } } .intro { display: table; width: 100%; height: auto; padding: 100px 0; text-align: center; color: #fff; background: url(../img/intro-bg.jpg) no-repeat bottom center scroll; background-color: #6C0D38; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; } .intro .intro-body { display: table-cell; vertical-align: middle; } .intro .intro-body .brand-heading { color: #660D35; border-radius:4px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); font-size: 40px; } .intro .intro-body .intro-text { font-size: 18px; background-color: #660D35; border-radius:4px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */ } .login-area { font-size: 18px; background-color: #660D35; border-radius:4px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */ } .register-area { color: #680D36; font-size: 18px; background-color: #fff; border-radius:4px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */ } .form-area{ padding:10px; } .f-well{ color: #660D35; } .tooltip.top .tooltip-inner { background-color: #660D35; font-size: 18px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); /* For IE8 and earlier */ } .tooltip.top .tooltip-arrow { border-top-color: #660D35; } @media(min-width:767px) { .intro { height: 100%; padding: 0; } .intro .intro-body .brand-heading { font-size: 100px; } .intro .intro-body .intro-text { font-size: 25px; } } .btn-circle { width: 70px; height: 70px; margin-top: 15px; padding: 7px 16px; border: 2px solid #fff; border-radius: 35px; font-size: 40px; color: #fff; background: 0 0; -webkit-transition: background .3s ease-in-out; -moz-transition: background .3s ease-in-out; transition: background .3s ease-in-out; } .btn-circle:hover, .btn-circle:focus { outline: 0; color: #fff; background: rgba(255,255,255,.1); } .btn-circle i.animated { -webkit-transition-property: -webkit-transform; -webkit-transition-duration: 1s; -moz-transition-property: -moz-transform; -moz-transition-duration: 1s; } .btn-circle:hover i.animated { -webkit-animation-name: pulse; -moz-animation-name: pulse; -webkit-animation-duration: 1.5s; -moz-animation-duration: 1.5s; -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; -webkit-animation-timing-function: linear; -moz-animation-timing-function: linear; } @-webkit-keyframes pulse { 0 { -webkit-transform: scale(1); transform: scale(1); } 50% { -webkit-transform: scale(1.2); transform: scale(1.2); } 100% { -webkit-transform: scale(1); transform: scale(1); } } @-moz-keyframes pulse { 0 { -moz-transform: scale(1); transform: scale(1); } 50% { -moz-transform: scale(1.2); transform: scale(1.2); } 100% { -moz-transform: scale(1); transform: scale(1); } } .content-section { padding-top: 100px; border-radius:4px; border: 0px solid black; } .download-section { width: 100%; padding: 50px 0; border-radius:4px; border: 0px solid black; opacity:0.6; filter:alpha(opacity=60); color: #fff; background: url(../img/downloads-bg.jpg) no-repeat center center scroll; background-color: #6C0D38; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover; } #map { width: 100%; height: 200px; margin-top: 100px; } @media(min-width:767px) { .content-section { padding-top: 250px; } .download-section { padding: 100px 0; } #map { height: 400px; margin-top: 250px; } } .btn { text-transform: uppercase; font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif; font-weight: 400; -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; transition: all .3s ease-in-out; } .btn-default { border: 1px solid #219ab3; color: #219ab3; background-color: transparent; } .btn-default:hover, .btn-default:focus { border: 1px solid #219ab3; outline: 0; color: #6C0D38; background-color: #219ab3; } ul.banner-social-buttons { margin-top: 0; } @media(max-width:1199px) { ul.banner-social-buttons { margin-top: 15px; } } @media(max-width:767px) { ul.banner-social-buttons li { display: block; margin-bottom: 20px; padding: 0; } ul.banner-social-buttons li:last-child { margin-bottom: 0; } } footer { padding: 50px 0; } footer p { margin: 0; } ::-moz-selection { text-shadow: none; background: #fcfcfc; background: rgba(255,255,255,.2); } ::selection { text-shadow: none; background: #fcfcfc; background: rgba(255,255,255,.2); } .error_msg{ background-color: #E00B0B; font-size: 20px; } img::selection { background: 0 0; } img::-moz-selection { background: 0 0; } body { webkit-tap-highlight-color: rgba(255,255,255,.2); }
aurelia-axel-northwind/views/search/order/search-order.html
cmichaelgraham/aurelia-axel-northwind
<template> <h1>Order Search</h1> </template>
myresume.html
wangc528/portfolio
<!DOCTYPE html> <html> <title>Chen's Resume</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="w3.css"> <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <!-- old font {font-family: "Roboto", sans-serif} --> <style> html,body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif} </style> <body class="w3-light-grey"> <!-- Page Container --> <div class="w3-content w3-margin-top" style="max-width:1400px;"> <!-- The Grid --> <div class="w3-row-padding"> <!-- Left Column --> <div class="w3-third"> <div class="w3-white w3-text-grey w3-card-4"> <div class="w3-display-container"> <img src="avatar_hat.jpg" style="width:100%" alt="Avatar"> <div class="w3-display-bottomleft w3-container w3-text-teal"> </div> </div> <div class="w3-container"> <p><i class="fa fa-briefcase fa-fw w3-margin-right w3-large w3-text-teal"></i>Operations Analyst</p> <p><i class="fa fa-home fa-fw w3-margin-right w3-large w3-text-teal"></i>Salt Lake City</p> <p><i class="fa fa-envelope fa-fw w3-margin-right w3-large w3-text-teal"></i>wangc0528@mail.com</p> <p><i class="fa fa-phone fa-fw w3-margin-right w3-large w3-text-teal"></i>8329048912</p> <hr> <p class="w3-large"><b><i class="fa fa-asterisk fa-fw w3-margin-right w3-text-teal"></i>Skills</b></p> <p>Distribution Planning</p> <p>Data Analysis</p> <p>Inventory Control</p> <p>Python</p> <p>Java</p> <p>R</p> <p>SQL</p> <br> <p class="w3-large w3-text-theme"><b><i class="fa fa-globe fa-fw w3-margin-right w3-text-teal"></i>Languages</b></p> <p>English</p> <p>Chinese</p> <p>Cantonese</p> <br> </div> </div><br> <!-- End Left Column --> </div> <!-- Right Column --> <div class="w3-twothird"> <!-- Work Experience --> <div class="w3-container w3-card-2 w3-white w3-margin-bottom"> <h2 class="w3-text-grey w3-padding-16"><i class="fa fa-suitcase fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>Work Experience</h2> <div class="w3-container"> <h5 class="w3-opacity"><b>Operations Analyst / OOCL USA</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Dec 2015 - <span class="w3-tag w3-teal w3-round">Current</span></h6> <p>• Forecast and balanced weekly equipment level based on the data of export/domestic demands, import returns, and reposition plans with both qualitative and quantitative methods.</p> <p>• Combined and reorganized historical sales data to analyze demand patterns and customer behaviour</p> <p>• Performed equipment inventory analysis and implemented strategies to avoid low stock and overstock</p> <hr> </div> <div class="w3-container"> <h5 class="w3-opacity"><b>Account Manager / OOCL USA</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Mar 2015 - Dec 2015</h6> <p>• Drove vendors and cross-functional teams to provide quality logistics support to key cotton export accounts</p> <p>• Worked with intermodal and terminal operations team on demurrage minimization, which reduced the operational cost of intermodal shipments out of West Coast by 5%</p> <hr> </div> <div class="w3-container"> <h5 class="w3-opacity"><b>Supply Chain Intern / Green America</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Oct 2014 - Dec 2014</h6> <p>• Research the supply chain and manufacturing processes in electronics industry, with a focus on mapping out major issues related to toxic chemicals used in consumer electronics production </p><br> </div> </div> <!-- Projects --> <div class="w3-container w3-card-2 w3-white w3-margin-bottom"> <h2 class="w3-text-grey w3-padding-16"><i class="fa fa-file-code-o fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>Projects</h2> <div class="w3-container"> <h5 class="w3-opacity"><b>OpenStreetMap Data Wrangling / Udacity</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Oct 2016 - Dec 2016</h6> <p>Pre-processed over 200Mb of Las Vegas area map data extracted from OpenStreenMap. XML data was parsed and stored in multi-dimensional NumPy arrays using ElementTree XML API in Python. Each entry was fed through a custom built filter for abnormalities, validated with a predefined SQL schema and stored in a relational database, SQLite.</p> <hr> </div> <div class="w3-container"> <h5 class="w3-opacity"><b>Exploratory Data Analysis with R / Udacity</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Oct 2016 - Dec 2016</h6> <p>Used R language and deployed various exploratory data visualization techniques, including box charts, heat maps, and regression curves, to explore the correlation between chemical compositions of 1600 different red wines and their quality ratings. A linear regression model was established to predict the quality of a wine given its chemical compositions.</p> <hr> </div> <div class="w3-container"> <h5 class="w3-opacity"><b>Vessel Price Forecast Project / University of Maryland</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>Oct 2016 - Dec 2016</h6> <p>Statistically analyzed factors affecting the price of secondhand ships, including ship age, size, freight rate and world trade. Used time series forecasting models to forecast the price of secondhand Aframax tanker with 200 quarterly price observations starting from 1963, and optimized the forecasting model with qualitative factors.</p><br> </div> </div> <!-- Education --> <div class="w3-container w3-card-2 w3-white"> <h2 class="w3-text-grey w3-padding-16"><i class="fa fa-graduation-cap fa-fw w3-margin-right w3-xxlarge w3-text-teal"></i>Education</h2> <div class="w3-container"> <h5 class="w3-opacity"><b>University Of Maryland - College Park</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2013-2014</h6> <p>Master of Science in Supply Chain Management</p> <hr> </div> <div class="w3-container"> <h5 class="w3-opacity"><b>Hong Kong Polytechnic University</b></h5> <h6 class="w3-text-teal"><i class="fa fa-calendar fa-fw w3-margin-right"></i>2009 - 2013</h6> <p>BBA International Shipping and Transport Logistics</p> <hr> </div> </div> <!-- End Right Column --> </div> <!-- End Grid --> </div> <!-- End Page Container --> </div> <footer class="w3-container w3-padding-16 w3-center w3-teal w3-xlarge w3-margin-top"> <i class="fa fa-github w3-hover-text-purple" > <a href="http://github.com/wangc528"> Chen's GitHub</a> </i> </footer> </body> </html>
templates/skeleton/css/plugins/autocomplete.css
VirtuosiMedia/VM-UI-Framework
/** * VM UI Framework * A modern, grid-based CSS, layout, and UI framwork for HTML5 * Copyright Virtuosi Media, Inc. 2012 * Released under an MIT-License */ /** * Auto-complete */ .autocompleteList, .autocompletePrompt { background: #FFF; border: 0.1em solid #CCC; -moz-box-sizing: border-box; box-sizing: border-box; list-style: none; margin: -0.05em 0 0; position: absolute; z-index: 10000; } .autocompleteList li { padding: 0 1em; } .autocompleteList li:hover, .autocompleteList li.active { background: #09F; color: #FFF; } .autocompletePrompt { color: #999; margin-left: 0.05em; padding: 0 1em; }
_site/art-of-delegation.html
lenamasek/lenamasek.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="author" content="Chris Turner" /> <meta name="description" content="Personal blog and resume"> <link rel="favicon" href="/sustain/static/img/favicon.ico"> <title>The Art of Delegation</title> <!-- Bootstrap --> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-MfvZlkHCEqatNoGiOXveE8FIwMzZg4W85qfrfIFBfYc= sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <!-- Custom styles for this template --> <link rel="stylesheet" type="text/css" href="/sustain/static/css/main.css" /> <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,200bold,400old" /> <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" /> <link rel="stylesheet" type="text/css" href="/sustain/static/css/syntax.css" /> <!-- Google Analytics --> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-69391421-1', 'auto'); ga('send', 'pageview'); </script> </head> <!-- Main Body--> <body> <!-- Wrap all page content here --> <div id="wrap"> <!-- Navbar header --> <nav class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="/sustain/"><i class="fa fa-home"></i></a> </div> <div id="navbar"> <ul class="nav navbar-nav navbar-right"> <li><a href="/sustain/blog.html">Words</a></li> <li><a href="/sustain/projects.html">Work</a></li> <li><div class="col-sm-12 col-md-12 col-lg-12 social"> <h4> <a href="http://twitter.com/username"><i class="fa fa-twitter"></i></a> <a href="http://github.com/biomadeira/sustain"><i class="fa fa-github"></i></a> <a href="mailto:yourname@email.com"><i class="fa fa-envelope"></i></a> </h4> </div> </li> </ul> </div> </div> </nav> <div class="container"> <div class="blog-post"> <h3> <strong><a href="/art-of-delegation.html">The Art of Delegation</a></strong> </h3> </div> <div class="blog-title"> <h5> October 8, 2015 &nbsp;&nbsp; </h5> </div> <div class="panel panel-default"> <div class="panel-body"> <div class="blogpost"> <p>Over the past year at <a href="http://torque.digital">Torque</a>, we&rsquo;ve been sharing skills and knowledge with each other in small, periodical workshops. These days, that looks like a weekly 2:30pm &lsquo;tea time&rsquo; in the conference room. For this week&rsquo;s workshop, Partner and Creative Director <a href="http://torque.digital/team/jennifer-masi">Jennifer Masi</a> gave us tips and tricks about <em>The Art of Delegating</em>, also known by her actionable phrase, &ldquo;Delegate to Elevate.&rdquo;</p> <p>I&rsquo;m morphing her presentation into a post so I can share it with you because I believe it&rsquo;s really important, and it&rsquo;s something I need to learn myself. Many people I know work alone – sometimes literally alone, other times they&rsquo;re not working collaboratively with their teammates. I am definitely guilty of this. If we work alone, we may let strong skills for teamwork, collaboration, and trust for others atrophy. We need these traits to provide a necessary foundation for delegation, and we need the practice of delegation to strengthen those traits in us. It can be scary to invite someone else in to your creative process, but your work – <em>and sanity</em> – may suffer if you always do it alone.</p> <h3>Goals of Delegation</h3> <p>Delegating helps elevate you to your best use and elevates helpers as they learn and grow. Delegating helps you learn to trust others, gets the job done well, and diversifies perspectives going into the project.</p> <h3>Ask yourself, is this a delegation moment?</h3> <p>Just because a task is assigned to you, doesn’t mean you need to be the one to complete it – it can often be delegated. Delegation is also not a status indicator. Jennifer makes an important note:</p> <blockquote><p>No job is beneath anyone. All jobs are important. Leaders know how and are willing to do all the jobs. Remember, if someone doesn’t buy the toilet paper, <em>what would happen to the office?</em></p></blockquote> <h3>Keys to Delegate like a Pro</h3> <ol> <li><p><strong>Give time frame &amp; details.</strong> Be specific about the details of the project to set a strong foundation and make sure everyone is on the same page. Establishing a clear, shared idea about the outcome of the project will ensure its success.</p></li> <li><p><strong>Delegate the objective, not the procedure.</strong> This is where trust comes in heavily. Successful delegation respects the opinion and process of everyone involved. Delegating projects or tasks comes with understanding that different people have different ways of doing the same thing. Dictating every facet of a project strangles it; let the project thrive on the contributions of others.</p></li> <li><p><strong>Ensure your delegatee has whatever they need to be successful.</strong> Equip everyone helping you with the right tools so they can do their best work for your project. Check in with them periodically to make sure their tools are working well for them.</p></li> <li><p><strong>Give your delegatee the opportunity to ask questions.</strong> Setting aside time for questions and conversations about the project will give your helpers a feeling of ownership and involvement in the project. Strong communication with people to whom you delegate is investing in the quality of the end product.</p></li> <li><p><strong>Check in through project completion.</strong> Gotta stay on task! Follow up and check in with everyone on the project. Touching base more often makes sure the project doesn&rsquo;t go off track so you can acheive the outcome you need. Make sure they confirm with you when their tasks are finished and follow up after the project.</p></li> <li><p><strong>Show your appreciation for the people who invested in your project with you.</strong> A big &lsquo;thank you&rsquo; goes a long way. I know I don&rsquo;t always go the extra step to vocalize my thankfulness. Showing gratitude increases personal growth on both sides and better partnerships going forward.</p></li> </ol> <h3>Go do it</h3> <p>Go delegate! <a href="http://twitter.com/lenamasek">Let me know</a> how delegation is working best for you.</p> <!-- <hr> <div class="related-posts"> <h5>Related Posts</h5> <div class="row"> <div class="col-sm-4 col-md-4 col-lg-4"> <h6 style="text-align: right"> September 22, 2015 </h6> </div> <div class="col-sm-8 col-md-8 col-lg-8"> <h6 style="text-align: left"> <strong><a href="/sustain//manifold-garden.html">Manifold Garden</a></strong> </h6> </div> </div> <div class="row"> <div class="col-sm-4 col-md-4 col-lg-4"> <h6 style="text-align: right"> August 22, 2015 </h6> </div> <div class="col-sm-8 col-md-8 col-lg-8"> <h6 style="text-align: left"> <strong><a href="/sustain//bitbash.html">Bit Bash</a></strong> </h6> </div> </div> <div class="row"> <div class="col-sm-4 col-md-4 col-lg-4"> <h6 style="text-align: right"> July 20, 2015 </h6> </div> <div class="col-sm-8 col-md-8 col-lg-8"> <h6 style="text-align: left"> <strong><a href="/sustain//priester-aviation-brand-update.html">Priester Aviation Brand Update</a></strong> </h6> </div> </div> </div> --> </div> </div> </div> </div> </div> <!-- Footer --> <footer> <div id="footer"> <div class="container"> <p class="text-muted">© all rights reserved. powered by <a href="http://jekyllrb.com/">jekyll</a> and <a href="http://www.github.com/biomadeira/sustain">sustain</a>.</p> </div> </div> </footer> <div class="footer"></div> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!-- Bootstrap core JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha256-Sk3nkD6mLTMOF0EOpNtsIry+s1CsaqQC1rVLTAy+0yc= sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="/sustain/static/js/docs.min.js"></script> <script src="/sustain/static/js/main.js"></script> <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> <script src="/sustain/static/js/ie10-viewport-bug-workaround.js"></script> </body> </html>
02 - Particles Library/solution/index.html
filR/course-advanced-web-dev-2017
<!doctype> <html> <head> <title>CSS GRID</title> <link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet"> <style> * { padding: 0; margin: 0; box-sizing: border-box; } #particles-js { position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; background: hsl(220, 50%, 30%); } body { display: flex; font-family: 'Montserrat', sans-serif; height: 100%; } .banner { margin: auto; position: relative; background: hsl(220, 40%, 15%); color: hsl(220, 50%, 80%); text-align: center; width: 85vw; padding-top: 3vw; padding-bottom: 7vw; transform: scale(0.7); } h1 { font-weight: bold; font-size: 15vw; } h2 { font-weight: 400; font-size: 2.2vw; margin-top: -1vw; } </style> </head> <body> <div id="particles-js"></div> <div class="banner"> <h1>CSS GRID</h1> <h2>A tale of Hypnotoad and ALL GLORY TO THE NEW CSS LAYOUT</h2> </div> <script src="particles.js"></script> <script src="code.js"></script> <!-- http://vincentgarreau.com/particles.js/ --> </body> </html>
assets/themes/material-card/css/pic.css
hackerchai/android-blog
.demo-blog .coffee-pic .mdl-card__media { background-image: url('../images/coffee.jpg'); } .demo-blog .about-pic .mdl-card__media { background-image: url('../images/keyboard.jpg'); } .demo-blog .avatar-pic .mdl-card__media { background-image: url('../images/avatar.jpg'); } .demo-blog .brown-color .mdl-card__media { background-color: #795548; } .demo-blog .red-color .mdl-card__media { background-color: #F44336; } .demo-blog .pink-color .mdl-card__media { background-color: #E91E63; } .demo-blog .purple-color .mdl-card__media { background-color: #9C27B0; } .demo-blog .indigo-color .mdl-card__media { background-color: #3F51B5; } .demo-blog .blue-color .mdl-card__media { background-color: #2196F3; } .demo-blog .teal-color .mdl-card__media { background-color: #009688; } .demo-blog .blue-grey-color .mdl-card__media { background-color: #607D8B; }
public/Windows 10 x64 (18363.535)/_LOADER_RESET_REASON.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.535)</h4><br> <h2>_LOADER_RESET_REASON</h2> <font face="arial"> +0x000 Supplied : UChar<br> +0x008 Basic : <a href="./<anonymous-tag>.html"><anonymous-tag></a><br> +0x010 AdditionalInfo : [8] Uint4B<br> </font></body></html>
_layouts/post.html
qst0/taut.tech
--- layout: default --- <article class="post"> <h1>{{ page.title }}</h1> <div class="entry"> {{ content }} </div> <div class="date"> Last updated {{ page.date | date: "%B %e, %Y" }} </div> {% include disqus.html %} </article> {% for js in page.jsarr %} <script type="text/javascript"> {% include {{ js }} %} </script> {% endfor %}
refman/install_2sidebar_8php.html
forstermatth/LIIS
<!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.4"/> <title>LIIS - Laboratory Information Indexing System: application/views/install/sidebar.php 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="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="liislogo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">LIIS - Laboratory Information Indexing System &#160;<span id="projectnumber">0.10.2</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.4 --> <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="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#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)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_d75c23162a2652451dce46d2e7e8aead.html">application</a></li><li class="navelem"><a class="el" href="dir_47696c67d24d00a376c580718bcb3d63.html">views</a></li><li class="navelem"><a class="el" href="dir_8a4ceba5b00294cf26dd69e05bfa807d.html">install</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">sidebar.php File Reference</div> </div> </div><!--header--> <div class="contents"> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Mon Mar 17 2014 19:50:05 for LIIS - Laboratory Information Indexing System by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.4 </small></address> </body> </html>
clean/Linux-x86_64-4.02.1-1.2.0/unstable/8.5.dev/contrib:generic-environments/dev/index.html
coq-bench/coq-bench.github.io-old
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Coq bench</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../../..">Unstable</a></li> <li class="active"><a href="">8.5.dev / contrib:generic-environments dev</a></li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="../../../../../about.html">About</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../../..">« Up</a> <h1>contrib:generic-environments <small>dev</small></h1> <table class="table table-striped text-center"> <thead> <tr> <td>Date</td> <td>Time</td> <td>Relative</td> <td>Status</td> </tr> </thead> <tbody> <tr> <td>2015-02-03</td> <td>00:28:27</td> <td><script>document.write(moment("2015-02-03 00:28:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td> <td class="success"><a href="2015-02-03_00-28-27.html">7 s</a></td> </tr> <tr> <td>2015-01-30</td> <td>20:36:42</td> <td><script>document.write(moment("2015-01-30 20:36:42 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script></td> <td class="success"><a href="2015-01-30_20-36-42.html">8 s</a></td> </tr> </tbody> </table> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> <small>Sources are on <a href="https://github.com/coq-bench">GitHub</a>. © Guillaume Claret.</small> </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
info/mathjs.org/docs/reference/functions/sec.html
jneuendorf/mathJS
<!DOCTYPE HTML> <html> <head> <title>math.js | an extensive math library for JavaScript and Node.js</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="title" content="math.js"> <meta name="keywords" content="mathjs, math.js, math, js, javascript, node, library, expression, parser, numeric, number, bignumber, complex, matrix, unit, function, variable, string, value, node.js, mathematics, extensive, advanced"> <meta name="description" content="Math.js is an extensive math library for JavaScript and Node.js. It features big numbers, complex numbers, matrices, units, and a flexible expression parser."> <meta name="author" content="Jos de Jong"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <link href="../../../css/style.css" rel="stylesheet" type="text/css"> <link href="../../../css/commandline.css" rel="stylesheet" type="text/css"> <link href="../../../css/code.css" rel="stylesheet" type="text/css"> <script src="../../../js/lib/es5-shim.min.js" type="text/javascript"></script> <script src="../../../js/lib/es5-sham.min.js" type="text/javascript"></script> <script src="../../../js/lib/math.js" type="text/javascript"></script> <script src="../../../js/commandline.js" type="text/javascript"></script> </head> <!-- itemscope, itemtype, and itemprop for google+ meta information --> <body itemscope itemtype="http://schema.org/Product"> <div id="page"> <div> <a href="../../../index.html"> <img src="../../../css/img/mathjs_330x100.png" id="logo" alt="math.js" itemprop="image" > </a> </div> <div id="search"> <script> (function() { var cx = '017327835323070913148:__zkzh4scga'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:search></gcse:search> </div> <div id="menu"> <a href="../../../index.html"> Home </a><a href="../../../download.html"> Download </a><a href="../../getting_started.html"> Get started </a><a href="../../index.html"> Docs <div class="selection"></div> </a><a href="../../../examples/index.html"> Examples </a> </div> <div id="content"> <h1 id="function-sec">Function sec <a href="sec.html#function-sec" title="Permalink">#</a></h1> <p>Calculate the secant of a value, defined as <code>sec(x) = 1/cos(x)</code>.</p> <p>For matrices, the function is evaluated element wise.</p> <h2 id="syntax">Syntax <a href="sec.html#syntax" title="Permalink">#</a></h2> <div class="highlight"><pre><code class="language-js" data-lang="js"><span class="nx">math</span><span class="p">.</span><span class="nx">sec</span><span class="p">(</span><span class="nx">x</span><span class="p">)</span> </code></pre></div> <h3 id="parameters">Parameters <a href="sec.html#parameters" title="Permalink">#</a></h3> <table><thead> <tr> <th>Parameter</th> <th>Type</th> <th>Description</th> </tr> </thead><tbody> <tr> <td><code>x</code></td> <td>Number &#124; Boolean &#124; Complex &#124; Unit &#124; Array &#124; Matrix &#124; null</td> <td>Function input</td> </tr> </tbody></table> <h3 id="returns">Returns <a href="sec.html#returns" title="Permalink">#</a></h3> <table><thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead><tbody> <tr> <td>Number &#124; Complex &#124; Array &#124; Matrix</td> <td>Secant of x</td> </tr> </tbody></table> <h2 id="examples">Examples <a href="sec.html#examples" title="Permalink">#</a></h2> <div class="highlight"><pre><code class="language-js" data-lang="js"><span class="nx">math</span><span class="p">.</span><span class="nx">sec</span><span class="p">(</span><span class="mi">2</span><span class="p">);</span> <span class="c1">// returns Number -2.4029979617223822</span> <span class="mi">1</span> <span class="o">/</span> <span class="nx">math</span><span class="p">.</span><span class="nx">cos</span><span class="p">(</span><span class="mi">2</span><span class="p">);</span> <span class="c1">// returns Number -2.4029979617223822</span> </code></pre></div> <h2 id="see-also">See also <a href="sec.html#see-also" title="Permalink">#</a></h2> <p><a href="cos.html">cos</a>, <a href="csc.html">csc</a>, <a href="cot.html">cot</a></p> <!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. --> </div> </div> <div id="footer"> <a href="../../../index.html">mathjs.org</a> &bull; <a href="https://github.com/josdejong/mathjs#license" target="_blank">copyright &copy; 2013-2015 jos de jong</a> &bull; <a href="http://subtlepatterns.com/bright-squares/" target="_blank">background by waseem dahman</a> </div> <div id="forkme"> <a href="https://github.com/josdejong/mathjs" target="_blank"> <img src="../../../css/img/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" > </a> </div> <script type="text/javascript"> // change layout for different screen sizes function resize () { var width = document.body.clientWidth; var page = document.getElementById('page'); page.className = (width < 810) ? 'small' : 'normal'; if (width < 620) { page.className += ' tiny'; } var forkme = document.getElementById('forkme'); forkme.className = (width < 810) ? 'small' : 'normal'; } resize(); window.onresize = resize; </script> </body> </html>
all-data/5000-5999/5170-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></td></tr> <tr><th class="std1"><b>漢語拼音&nbsp;</b></th><td class="std2"><font class="english_word">jīng gōng zhī niǎo</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2">魏國射箭能手更羸僅是拉動弓弦,不用箭,一隻受過箭傷的大雁便因過度驚懼而落下的故事。典出戰國策˙楚策四。比喻曾受打擊或驚嚇,心有餘悸,稍有動靜就害怕的人。晉書˙卷七十一˙王鑒傳:<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/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/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>
app/views/programmeTwo/apprentice-view/index.html
SkillsFundingAgency/das-alpha-ui
{% extends "layout.html" %} {% block page_title %} Apprenticeships {% endblock %} {% block content %} <link href="/public/stylesheets/filtering.css" media="screen" rel="stylesheet" type="text/css" /> <style> .apprentice-nav a { {% include "includes/nav-on-state-css.html" %} } </style> <main id="content" role="main"> {% include "includes/phase_banner_beta.html" %} {% include "includes/secondary-nav-people.html" %} <div class="breadcrumbs"> <ol role="breadcrumbs"> <li><a href="/{% include "includes/sprint-link.html" %}/balance">Account home</a></li> <li><a href="/{% include "includes/sprint-link.html" %}/apprentice-view/people">Apprentices</a></li> <li id="removeWithNav">Your apprentices</li> </ol> </div> <!--h1 class="heading-large">Levy account</h1--> <!--h2 class="bold-medium">Acme Ltd Levy Account</h2--> <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-xlarge" >{% include "includes/account-name-number.html" %}Your apprentices</h1> <!--p class="lede">All apprentices who are currently on your programme and need no action.</p--> </div> </div> <div class="grid-row"> <div class="column-one-third"> <div class="filter-form filtering "> <div id="finder-frontend" class="inner-block"> <form method="get" action="/" class="js-live-search-form"> <div class="filter text-filter"> <label class="legend" for="finder-keyword-search">Search</label> <input value="" type="text" name="keywords" id="finder-keyword-search" aria-controls="js-search-results-info" class="text"> </div> <!--div class="govuk-option-select js-collapsible" > <button class="js-container-head" type="button" aria-expanded="false" aria-controls="case_state"> <div class="option-select-label">Commitment status</div> <div class="js-selected-counter"></div></button> <div class="options-container" id="case_state"> <div class="js-auto-height-inner"> <label for="new"> <input name="case_type[]" value="acme-cov" id="status-new" type="checkbox" aria-controls="js-search-results-info"> New (1) </label> <label for="Awaiting - Provider input"> <input name="case_type[]" value="Cyberdyne" id="Cyberdyne" type="checkbox" aria-controls="js-search-results-info"> Needs your input (1) </label> <label for="Awaiting - Employer input"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> In progress with employer (1) </label> <label for="Approved by employer"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Approved by employer (1) </label> </div> </div> </div--> <div class="govuk-option-select js-collapsible" > <button class="js-container-head" type="button" aria-expanded="false" aria-controls="case_state"> <div class="option-select-label">Status</div> <div class="js-selected-counter"></div></button> <div class="options-container" id="case_state"> <div class="js-auto-height-inner"> <label for="Approval needed"> <input name="case_type[]" value="acme-cov" id="acme-cov" type="checkbox" aria-controls="js-search-results-info"> Approval needed </label> <label for="epa-update"> <input name="case_type[]" value="acme-cov" id="acme-cov" type="checkbox" aria-controls="js-search-results-info"> EPA update required </label> <label for="Paused"> <input name="case_type[]" value="Cyberdyne" id="Cyberdyne" type="checkbox" aria-controls="js-search-results-info"> Paused </label> <label for="Stopped"> <input name="case_type[]" value="Cyberdyne" id="Cyberdyne" type="checkbox" aria-controls="js-search-results-info"> Stopped </label> <label for="Finished"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Finished </label> <label for="Live"> <input name="case_type[]" value="acme-cov" id="acme-cov" type="checkbox" aria-controls="js-search-results-info"> Live </label> </div> </div> </div> <div class="govuk-option-select js-collapsible" > <button class="js-container-head" type="button" aria-expanded="false" aria-controls="case_state"> <div class="option-select-label">Training</div> <div class="js-selected-counter"></div></button> <div class="options-container" id="case_state"> <div class="js-auto-height-inner"> <label for="Acme Coventry Ltd"> <input name="case_type[]" value="acme-cov" id="acme-cov" type="checkbox" aria-controls="js-search-results-info"> Mechatronics engineers </label> <label for="Cyberdyne Systems Inc"> <input name="case_type[]" value="Cyberdyne" id="Cyberdyne" type="checkbox" aria-controls="js-search-results-info"> Manufacturing engineers </label> <label for="Tyrell Corp"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Survival equipment fitter </label> <label for="Tyrell Corp"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Network engineer </label> <label for="Tyrell Corp"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Cyber intrusion analyst </label> <label for="Tyrell Corp"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Cyber security technologist </label> <label for="Tyrell Corp"> <input name="case_type[]" value="Tyrell" id="Tyrell" type="checkbox" aria-controls="js-search-results-info"> Embedded Electronic Systems Design and Development Engineer </label> </div> </div> </div> </div> </div> </div> <div class="column-two-thirds"> <table class=""> <thead> <tr> <th scope="col" style="padding-top:0">Name</th> <th scope="col" style="padding-top:0">Date of birth</th> <th scope="col" style="padding-top:0">Status</th> <th scope="col" style="padding-top:0"></th> </tr> </thead> <tbody> <tr> <!--quick hack, will fix --> <td class="rjTabWidth">Rob Edwards</td> <td class="">03/06/97</td> <td class="">On programme</td> <td><a href="/{% include "includes/sprint-link.html" %}/apprentice-view/individual-apprentice">View</a></td> </tr> <tr> <td class="rjTabWidth">Susan Hamazaki</td> <td class="">12/10/95</td> <td class="">Paused</td> <td><a href="/{% include "includes/sprint-link.html" %}/apprentice-view/individual-apprentice-authorise-amends">View</a></td> </tr> <tr> <td class="rjTabWidth">David Jenkins</td> <td class="">05/09/99</td> <td class="">Approval needed</td> <td class="looks-like-a-link-underline">View</td> </tr> <tr> <td class="rjTabWidth">Mel O'Connor</td> <td class="">01/05/98</td> <td class="">Stopped</td> <td class="looks-like-a-link-underline">View</td> </tr> </tbody> </table> </div> </div> </main> {% endblock %}
Application/Home/View/Order/showOrder.html
hookidea/yiwukongjian
<link rel="stylesheet" type="text/css" href="/Public/Home/Css/showOrder.css?v=0.2"> <div class="container"> <div class="suibian"> <ul class="middle_nav"> <li><a href="/User/showUser">我的资料</a></li> <li><a href="/Good/getUserList">商品管理</a></li> <li><a href="/Beg/getUserList">求购管理</a></li> <li><a href="/Lost/getUserList">招领管理</a></li> <li><a href="/User/showCollect">收藏管理</a></li> <li><a href="/User/showAddress">地址管理</a></li> <li class="personalhover"><a href="/Order/showOrder">订单管理</a></li> <li><a href="/Switch/showSwitch">换购管理</a></li> <li><a href="/Message/showMessage">消息管理</a></li> <li><a href="/User/showReal">认证管理</a></li> </ul> <div class="clear"></div> </div> <div id="container"> <div class="w"> <div id="content"> <div id="main"> <div id="order01" class="mod-main mod-comm mod-order"> <div class="mt"> <h3 onclick="showOrderType(0);" class="<neq name="Think.get.type" value="1">curr</neq>">买家订单</h3> <h3 onclick="showOrderType(1);" class="<eq name="Think.get.type" value="1">curr</eq>">卖家订单</h3> <div class="extra-r"></div> </div> </div> <div id="order02" class="mod-main mod-comm lefta-box"> <div class="mt"> <ul class="extra-l"> <li class="fore1"><a class="txt <neq name="Think.get.status" value="0">curr</neq>" onclick="showNotFull(0);">全部订单</a></li> <!-- <li> <a class="txt" clstag="click|keycount|orderinfo|waitPay" id="ordertoPay" href="//order.jd.com/center/list.action?s=1">待付款</a> </li> --> <li> <a class="txt <eq name="Think.get.status" value="0">curr</eq>" clstag="" id="ordertoReceive" href="#" onclick="showNotFull(1);">待完成<em>{$notFull}</em></a> </li> <li> <!-- <a clstag="click|keycount|orderinfo|daipingjia" class="txt" target="_blank" id="ordertoComment" href="//club.jd.com/mycomments.aspx">待评价</a><a href="http://club.jd.com/mycomments.aspx"><em>25</em></a> --> </li> <!-- <li class="fore2"> <a id="ordertoRecycle" class="ftx-03" clstag="click|keycount|orderlist|dingdanhuishouzhan" href="//order.jd.com/center/recycle.action?d=1">订单回收站</a> </li> --> </ul> <div class="extra-r"> <div class="search"> <input type="text" placeholder="商品名称/订单号" class="itxt" id="ip_keyword" style="color: rgb(204, 204, 204);" name="keyword"> <a clstag="click|keycount|orderinfo|search" class="search-btn" onclick="searchOrder(this);">搜索<b></b></a> <!-- <a class="default-btn high-search" clstag="click|keycount|orderlist|gaoji" href="#none">高级<b></b></a> --> </div> </div> </div> <div class="mc"> <table class="td-void order-tb"> <colgroup> <col class="number-col"> <col class="consignee-col"> <col class="amount-col"> <col class="status-col"> <col class="operate-col"> </colgroup> <thead> <tr> <th> <div class="ordertime-cont" onclick="showTimeOrder(event);"> <div class="time-txt">近三个月订单<b></b><span class="blank"></span> </div> <div class="time-list"> <ul> <li><a class="curr" clstag="click|keycount|orderlist|zuijinsangeyue" _val="1" href="#none"><b></b>近三个月订单</a></li> <li><a clstag="click|keycount|orderlist|jinniannei" _val="2" href="#none"><b></b>今年内订单</a></li> <li><a clstag="click|keycount|orderlist|2015" _val="3" href="#none"><b></b>2015年订单</a></li> <li><a clstag="click|keycount|orderlist|2014" _val="4" href="#none"><b></b>2014年订单</a></li> <li><a clstag="click|keycount|orderlist|2013" _val="5" href="#none"><b></b>2013年订单</a></li> <li><a clstag="click|ke ycount|orderlist|before_2013" _val="6" href="#none"><b></b>2013年以前订单</a></li> </ul> </div> </div> <div class="order-detail-txt ac">订单详情</div> </th> <th>收货人</th> <th>金额</th> <th> <div> <div>状态<!-- <b></b> --><span class="blank"></span></div> <!-- <div class="state-list"> <ul> <li value="4096"> <a class="curr" clstag="click|keycount|orderlist|quanbuzhuangtai" href="#none"><b></b>全部状态</a> </li> <li value="1"> <a clstag="click|keycount|orderlist|dengdaifukuan" href="#none"><b></b>等待付款</a> </li> <li clstag="click|keycount|orderlist|dengdaishouhuo" value="128"> <a href="#none"><b></b>等待收货</a> </li> <li value="1024"> <a clstag="click|keycount|orderlist|yiwancheng" href="#none"><b></b>已完成</a> </li> <li value="-1"> <a clstag="click|keycount|orderlist|yiquxiao" href="#none"><b></b>已取消</a> </li> </ul> </div> --> </div> </th> <th>操作</th> </tr> </thead> <!-- 一个订单一个tbody --> <foreach name="orderList" item="order" key="key"> <tbody id="tb-12251082074"> <tr class="sep-row"><td colspan="5"></td></tr> <tr class="tr-th"> <td colspan="5"> <span class="gap"></span> <span title="{$order.add_time|date="Y-m-d H:i:s",###}" class="dealtime">{$order.add_time|date="Y-m-d H:i:s",###}</span> <input type="hidden" value="2016-02-29 23:00:47" id="datasubmit-12251082074"> <span class="number">订单号:<a clstag="click|keycount|orderinfo|order_num" target="_blank" id="idUrl12251082074" name="orderIdLinks">{$order.order_sn}</a></span> <div class="tr-operate"> <span class="order-shop"> <span>卖家:</span> <span class="shop-txt"><a href="/User/showUser/user_id/{$order.seller_id}">{$order.seller_name}</a></span> <a clstag="click|keycount|orderlist|ziyingchatim" title="联系他/她" href="#none" class="btn-im btn-im-jd" onclick="addLetter({$order.seller_id}, '{$order.seller_name}', {$Think.session.shop.user|default=-1});"></a> </span> <span class="order-shop"> <span>买家:</span> <span class="shop-txt"><a href="/User/showUser/user_id/{$order.user_id}">{$order.user_name}</a></span> <a clstag="click|keycount|orderlist|ziyingchatim" title="联系他/她" href="#none" class="btn-im btn-im-jd" onclick="addLetter({$order.user_id}, '{$order.seller_name}', {$Think.session.shop.user|default=-1});"></a> </span> <!-- <a _passkey="25D65818AA427ED48B8CB7B385AC42DB" _orderid="12251082074" class="order-del" clstag="click|keycount|orderlist|dingdanshanchu" href="#none" style="display: none;" title="删除"></a> --> </div> </td> </tr> <!-- 一个商品一个tr --> <foreach name="goodList[$key]" item="good" key="key2"> <eq name="key2" value="0"> <!-- 仅第一个进入 --> <tr oty="0,4,70" id="track12251082074" class="tr-bd"> <td> <div class="goods-item p-188078"> <div class="p-img"> <a target="_blank" clstag="click|keycount|orderinfo|order_product" href="/{$good.good_id}.html"> <img width="60" height="60" data-lazy-img="done" title="{$good.good_name}" src="{$good.thumb_img}" class=""> </a> </div> <div class="p-msg"> <div class="p-name"><a title="{$good.good_name}" target="_blank" clstag="click|keycount|orderinfo|order_product" class="a-link" href="/{$good.good_id}.html">{$good.good_name}</a></div> </div> </div> <div class="goods-number"> x{$good.num} </div> <div class="clr"></div> </td> <td rowspan="{$goodList.$key|count=###}"> <div class="consignee tooltip"> <span class="txt">{$order.address_name}</span><b></b> <div class="prompt-01 prompt-02"> <div class="pc"> <strong>{$order.address_name}</strong> <p>{$order.address_location}</p> <p>{$order.phone}</p> </div> <div class="p-arrow p-arrow-left"></div> </div> </div> </td> <td rowspan="{$goodList.$key|count=###}"> <div class="amount"> <span>总额 ¥{$order.total_price}</span> </div> </td> <td rowspan="{$goodList.$key|count=###}"> <div class="status"> <span class="order-status ftx-03"> <eq name="order.status" value="1"> 已完成 <else /> 未完成 </eq> </span> <br> <!-- <a target="_blank" clstag="click|keycount|orderlist|dingdanxiangqing" href="//order.jd.com/normal/item.action?orderid=12251082074&amp;PassKey=5A96D671ADFB10FDD0E03545550AD4CB">订单详情</a> --> </div> </td> <td id="operate12251082074" rowspan="{$goodList.$key|count=###}"> <div class="operate"> <div _baina="0" id="pay-button-12251082074"></div> <neq name="order.status" value="1"> <span target="_blank" class="btn-again" onclick="fullOrder({$order.order_id})"><b></b>完成</span> </neq> <br> </div> </td> </tr> <else /> <!-- 仅在不是第一个进入 --> <tr oty="0,4,70" id="track12251082074" class="tr-bd"> <td> <div class="goods-item p-830486"> <div class="p-img"> <a target="_blank" clstag="click|keycount|orderinfo|order_product" href="{$good.good_name}"> <img width="60" height="60" data-lazy-img="done" title="{$good.good_name}" src="{$good.thumb_img}" class=""> </a> </div> <div class="p-msg"> <div class="p-name"><a title="{$good.good_name}" target="_blank" clstag="click|keycount|orderinfo|order_product" class="a-link" href="/{$good.good_id}.html">{$good.good_name}</a> </div> </div> </div> <div class="goods-number"> x1 </div> <div class="clr"></div> </td> </tr> </eq> </foreach> </tbody> </foreach> </table> </div> </div> </div> </div> </div> </div> </div> <div class="mt20"> <div class="pagin fr"> <div>{$page}</div> </div> <div class="clr"></div> </div> <script type="text/javascript"> var _status = {$Think.get.status|default=2}; // 0:未完成,1:已完成 var _type = {$Think.get.type|default=0}; // 0:买家订单 // 自动选中正确的时间类别 var _timeType = {$Think.get.timeType|default=1}; // 查看一定时间范围内的订单 if (_timeType) { var _obj = $('.time-list ul li').eq(_timeType-1); _obj.find('a').addClass('curr'); _obj.siblings().find('a').removeClass('curr'); $('.ordertime-cont .time-txt').html(_obj.text() + '<b></b>'); } // 收货人信息的查看和隐藏 $('.consignee').mouseenter(function () { $(this).find('.prompt-01').show(); }).mouseleave(function () { $(this).find('.prompt-01').hide(); }); function fullOrder (order_id) { if (confirm('确定执行该操作?')) { $.post('/Order/fullOrder', {'order_id': order_id}, function (msg) { backAppend(msg); }); } return false; } function showNotFull (status) { var type = {$Think.get.type|default=0}; // 0:买家订单 status = status ? 0 : 1; // 为1,说明要查看未完成订单,所以status=0 location.href = '/Order/showOrder/status/' + status + '/type/' + type; } function searchOrder (e) { var _this = $(e); var val = _this.prev().val(); location.href = '/Order/showOrder/keyword/' + val; } function showOrderType (type) { location.href = '/Order/showOrder/type/' + type; } function showTimeOrder(e, timeType) { var status = {$Think.get.status|default=2}; // 0:未完成,1:已完成 var type = {$Think.get.type|default=0}; // 0:买家订单 var timeType = {$Think.get.timeType|default=1}; // 查看一定时间范围内的订单 $('.ordertime-cont .time-list').toggle(); var target = $(e.target); var timeType = target.attr('_val'); $('.ordertime-cont .time-txt').html(target.text() + '<b></b>'); if (timeType) { location.href = "/Order/showOrder/timeType/" + timeType + '/type/' + type + '/status/' + status; } } </script>
tags/哈希/index.html
jiyangg/jiyangg.github.io
<!DOCTYPE html> <html class="theme-next gemini use-motion" lang="zh-Hans"> <head><meta name="generator" content="Hexo 3.8.0"> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <meta name="theme-color" content="#222"> <script src="/lib/pace/pace.min.js?v=1.0.2"></script> <link href="/lib/pace/pace-theme-minimal.min.css?v=1.0.2" rel="stylesheet"> <meta http-equiv="Cache-Control" content="no-transform"> <meta http-equiv="Cache-Control" content="no-siteapp"> <link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css"> <link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css"> <link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css"> <link rel="apple-touch-icon" sizes="180x180" href="/images/logo.png?v=5.1.4"> <link rel="icon" type="image/png" sizes="32x32" href="/images/logo.png?v=5.1.4"> <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon.icon?v=5.1.4"> <link rel="mask-icon" href="/images/logo.png?v=5.1.4" color="#222"> <meta name="keywords" content="StefanJi, China, Android, Codeing, 纪阳"> <link rel="alternate" href="/atom.xml" title="Stefan Blog" type="application/atom+xml"> <meta name="description" content="Don&apos;t be evil."> <meta name="keywords" content="Android, Python, Coding"> <meta property="og:type" content="website"> <meta property="og:title" content="Stefan Blog"> <meta property="og:url" content="https://stefanji.github.io/tags/哈希/index.html"> <meta property="og:site_name" content="Stefan Blog"> <meta property="og:description" content="Don&apos;t be evil."> <meta property="og:locale" content="zh-Hans"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Stefan Blog"> <meta name="twitter:description" content="Don&apos;t be evil."> <script type="text/javascript" id="hexo.configurations"> var NexT = window.NexT || {}; var CONFIG = { root: '/', scheme: 'Gemini', version: '5.1.4', sidebar: {"position":"right","display":"post","offset":12,"b2t":true,"scrollpercent":true,"onmobile":false}, fancybox: true, tabs: true, motion: {"enable":true,"async":true,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}}, duoshuo: { userId: '0', author: '博主' }, algolia: { applicationID: '', apiKey: '', indexName: '', hits: {"per_page":10}, labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"} } }; </script> <link rel="canonical" href="https://stefanji.github.io/tags/哈希/"> <title>标签: 哈希 | Stefan Blog</title> <link rel="stylesheet" href="/css/prism.css" type="text/css"> <link rel="stylesheet" href="/css/prism-line-numbers.css" type="text/css"></head> <body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans"> <div class="container sidebar-position-right "> <div class="headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="site-brand-wrapper"> <div class="site-meta "> <div class="custom-logo-site-title"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <span class="site-title">Stefan Blog</span> <span class="logo-line-after"><i></i></span> </a> </div> <h1 class="site-subtitle" itemprop="description">A android developer who wants to learn more.</h1> </div> <div class="site-nav-toggle"> <button> <span class="btn-bar"></span> <span class="btn-bar"></span> <span class="btn-bar"></span> </button> </div> </div> <nav class="site-nav"> <ul id="menu" class="menu"> <li class="menu-item menu-item-home"> <a href="/" rel="section"> <i class="menu-item-icon fa fa-fw fa-home"></i> <br> 首页 </a> </li> <li class="menu-item menu-item-archives"> <a href="/archives/" rel="section"> <i class="menu-item-icon fa fa-fw fa-archive"></i> <br> 归档 </a> </li> <li class="menu-item menu-item-about"> <a href="/about/" rel="section"> <i class="menu-item-icon fa fa-fw fa-user"></i> <br> 关于 </a> </li> <li class="menu-item menu-item-search"> <a href="javascript:;" class="popup-trigger"> <i class="menu-item-icon fa fa-search fa-fw"></i> <br> 搜索 </a> </li> </ul> <div class="site-search"> <div class="popup search-popup local-search-popup"> <div class="local-search-header clearfix"> <span class="search-icon"> <i class="fa fa-search"></i> </span> <span class="popup-btn-close"> <i class="fa fa-times-circle"></i> </span> <div class="local-search-input-wrapper"> <input autocomplete="off" placeholder="搜索..." spellcheck="false" type="text" id="local-search-input"> </div> </div> <div id="local-search-result"></div> </div> </div> </nav> </div> </header> <main id="main" class="main"> <div class="main-inner"> <div class="content-wrap"> <div id="content" class="content"> <div class="post-block tag"> <div id="posts" class="posts-collapse"> <div class="collection-title"> <h2>哈希<small>标签</small> </h2> </div> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h3 class="post-title"> <a class="post-title-link" href="/2017/07/27/HashCode作用/" itemprop="url"> <span itemprop="name">HashCode作用.md</span> </a> </h3> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2017-07-27T13:00:00+08:00" content="2017-07-27"> 07-27 </time> </div> </header> </article> </div> </div> </div> </div> <div class="sidebar-toggle"> <div class="sidebar-toggle-line-wrap"> <span class="sidebar-toggle-line sidebar-toggle-line-first"></span> <span class="sidebar-toggle-line sidebar-toggle-line-middle"></span> <span class="sidebar-toggle-line sidebar-toggle-line-last"></span> </div> </div> <aside id="sidebar" class="sidebar"> <div class="sidebar-inner"> <section class="site-overview-wrap sidebar-panel sidebar-panel-active"> <div class="site-overview"> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="/images/logo.png" alt="Stefanji"> <p class="site-author-name" itemprop="name">Stefanji</p> <p class="site-description motion-element" itemprop="description"></p> </div> <nav class="site-state motion-element"> <div class="site-state-item site-state-posts"> <a href="/archives/"> <span class="site-state-item-count">108</span> <span class="site-state-item-name">日志</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories/index.html"> <span class="site-state-item-count">14</span> <span class="site-state-item-name">分类</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags/index.html"> <span class="site-state-item-count">69</span> <span class="site-state-item-name">标签</span> </a> </div> </nav> <div class="feed-link motion-element"> <a href="/atom.xml" rel="alternate"> <i class="fa fa-rss"></i> RSS </a> </div> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/stefanji" target="_blank" title="GitHub"> <i class="fa fa-fw fa-github"></i>GitHub</a> </span> <span class="links-of-author-item"> <a href="mailto:jidaoyang@gmail.com" target="_blank" title="E-Mail"> <i class="fa fa-fw fa-envelope"></i>E-Mail</a> </span> </div> </div> </section> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> <span id="scrollpercent"><span>0</span>%</span> </div> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright">&copy; 2016 &mdash; <span itemprop="copyrightYear">2019</span> <span class="with-love"> <i class="fa fa-user"></i> </span> <span class="author" itemprop="copyrightHolder">Stefanji</span> </div> <div class="powered-by">由 <a class="theme-link" target="_blank" href="https://hexo.io">Hexo</a> 强力驱动</div> </div> </footer> </div> <script type="text/javascript"> if (Object.prototype.toString.call(window.Promise) !== '[object Function]') { window.Promise = null; } </script> <script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/lib/canvas-nest/canvas-nest.min.js"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.1.4"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.1.4"></script> <script type="text/javascript" src="/js/src/affix.js?v=5.1.4"></script> <script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.1.4"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.4"></script> <script type="text/javascript"> // Popup Window; var isfetched = false; var isXml = true; // Search DB path; var search_path = "search.json"; if (search_path.length === 0) { search_path = "search.xml"; } else if (/json$/i.test(search_path)) { isXml = false; } var path = "/" + search_path; // monitor main search box; var onPopupClose = function (e) { $('.popup').hide(); $('#local-search-input').val(''); $('.search-result-list').remove(); $('#no-result').remove(); $(".local-search-pop-overlay").remove(); $('body').css('overflow', ''); } function proceedsearch() { $("body") .append('<div class="search-popup-overlay local-search-pop-overlay"></div>') .css('overflow', 'hidden'); $('.search-popup-overlay').click(onPopupClose); $('.popup').toggle(); var $localSearchInput = $('#local-search-input'); $localSearchInput.attr("autocapitalize", "none"); $localSearchInput.attr("autocorrect", "off"); $localSearchInput.focus(); } // search function; var searchFunc = function(path, search_id, content_id) { 'use strict'; // start loading animation $("body") .append('<div class="search-popup-overlay local-search-pop-overlay">' + '<div id="search-loading-icon">' + '<i class="fa fa-spinner fa-pulse fa-5x fa-fw"></i>' + '</div>' + '</div>') .css('overflow', 'hidden'); $("#search-loading-icon").css('margin', '20% auto 0 auto').css('text-align', 'center'); $.ajax({ url: path, dataType: isXml ? "xml" : "json", async: true, success: function(res) { // get the contents from search data isfetched = true; $('.popup').detach().appendTo('.header-inner'); var datas = isXml ? $("entry", res).map(function() { return { title: $("title", this).text(), content: $("content",this).text(), url: $("url" , this).text() }; }).get() : res; var input = document.getElementById(search_id); var resultContent = document.getElementById(content_id); var inputEventFunction = function() { var searchText = input.value.trim().toLowerCase(); var keywords = searchText.split(/[\s\-]+/); if (keywords.length > 1) { keywords.push(searchText); } var resultItems = []; if (searchText.length > 0) { // perform local searching datas.forEach(function(data) { var isMatch = false; var hitCount = 0; var searchTextCount = 0; var title = data.title.trim(); var titleInLowerCase = title.toLowerCase(); var content = data.content.trim().replace(/<[^>]+>/g,""); var contentInLowerCase = content.toLowerCase(); var articleUrl = decodeURIComponent(data.url); var indexOfTitle = []; var indexOfContent = []; // only match articles with not empty titles if(title != '') { keywords.forEach(function(keyword) { function getIndexByWord(word, text, caseSensitive) { var wordLen = word.length; if (wordLen === 0) { return []; } var startPosition = 0, position = [], index = []; if (!caseSensitive) { text = text.toLowerCase(); word = word.toLowerCase(); } while ((position = text.indexOf(word, startPosition)) > -1) { index.push({position: position, word: word}); startPosition = position + wordLen; } return index; } indexOfTitle = indexOfTitle.concat(getIndexByWord(keyword, titleInLowerCase, false)); indexOfContent = indexOfContent.concat(getIndexByWord(keyword, contentInLowerCase, false)); }); if (indexOfTitle.length > 0 || indexOfContent.length > 0) { isMatch = true; hitCount = indexOfTitle.length + indexOfContent.length; } } // show search results if (isMatch) { // sort index by position of keyword [indexOfTitle, indexOfContent].forEach(function (index) { index.sort(function (itemLeft, itemRight) { if (itemRight.position !== itemLeft.position) { return itemRight.position - itemLeft.position; } else { return itemLeft.word.length - itemRight.word.length; } }); }); // merge hits into slices function mergeIntoSlice(text, start, end, index) { var item = index[index.length - 1]; var position = item.position; var word = item.word; var hits = []; var searchTextCountInSlice = 0; while (position + word.length <= end && index.length != 0) { if (word === searchText) { searchTextCountInSlice++; } hits.push({position: position, length: word.length}); var wordEnd = position + word.length; // move to next position of hit index.pop(); while (index.length != 0) { item = index[index.length - 1]; position = item.position; word = item.word; if (wordEnd > position) { index.pop(); } else { break; } } } searchTextCount += searchTextCountInSlice; return { hits: hits, start: start, end: end, searchTextCount: searchTextCountInSlice }; } var slicesOfTitle = []; if (indexOfTitle.length != 0) { slicesOfTitle.push(mergeIntoSlice(title, 0, title.length, indexOfTitle)); } var slicesOfContent = []; while (indexOfContent.length != 0) { var item = indexOfContent[indexOfContent.length - 1]; var position = item.position; var word = item.word; // cut out 100 characters var start = position - 20; var end = position + 80; if(start < 0){ start = 0; } if (end < position + word.length) { end = position + word.length; } if(end > content.length){ end = content.length; } slicesOfContent.push(mergeIntoSlice(content, start, end, indexOfContent)); } // sort slices in content by search text's count and hits' count slicesOfContent.sort(function (sliceLeft, sliceRight) { if (sliceLeft.searchTextCount !== sliceRight.searchTextCount) { return sliceRight.searchTextCount - sliceLeft.searchTextCount; } else if (sliceLeft.hits.length !== sliceRight.hits.length) { return sliceRight.hits.length - sliceLeft.hits.length; } else { return sliceLeft.start - sliceRight.start; } }); // select top N slices in content var upperBound = parseInt('1'); if (upperBound >= 0) { slicesOfContent = slicesOfContent.slice(0, upperBound); } // highlight title and content function highlightKeyword(text, slice) { var result = ''; var prevEnd = slice.start; slice.hits.forEach(function (hit) { result += text.substring(prevEnd, hit.position); var end = hit.position + hit.length; result += '<b class="search-keyword">' + text.substring(hit.position, end) + '</b>'; prevEnd = end; }); result += text.substring(prevEnd, slice.end); return result; } var resultItem = ''; if (slicesOfTitle.length != 0) { resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + highlightKeyword(title, slicesOfTitle[0]) + "</a>"; } else { resultItem += "<li><a href='" + articleUrl + "' class='search-result-title'>" + title + "</a>"; } slicesOfContent.forEach(function (slice) { resultItem += "<a href='" + articleUrl + "'>" + "<p class=\"search-result\">" + highlightKeyword(content, slice) + "...</p>" + "</a>"; }); resultItem += "</li>"; resultItems.push({ item: resultItem, searchTextCount: searchTextCount, hitCount: hitCount, id: resultItems.length }); } }) }; if (keywords.length === 1 && keywords[0] === "") { resultContent.innerHTML = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>' } else if (resultItems.length === 0) { resultContent.innerHTML = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>' } else { resultItems.sort(function (resultLeft, resultRight) { if (resultLeft.searchTextCount !== resultRight.searchTextCount) { return resultRight.searchTextCount - resultLeft.searchTextCount; } else if (resultLeft.hitCount !== resultRight.hitCount) { return resultRight.hitCount - resultLeft.hitCount; } else { return resultRight.id - resultLeft.id; } }); var searchResultList = '<ul class=\"search-result-list\">'; resultItems.forEach(function (result) { searchResultList += result.item; }) searchResultList += "</ul>"; resultContent.innerHTML = searchResultList; } } if ('auto' === 'auto') { input.addEventListener('input', inputEventFunction); } else { $('.search-icon').click(inputEventFunction); input.addEventListener('keypress', function (event) { if (event.keyCode === 13) { inputEventFunction(); } }); } // remove loading animation $(".local-search-pop-overlay").remove(); $('body').css('overflow', ''); proceedsearch(); } }); } // handle and trigger popup window; $('.popup-trigger').click(function(e) { e.stopPropagation(); if (isfetched === false) { searchFunc(path, 'local-search-input', 'local-search-result'); } else { proceedsearch(); }; }); $('.popup-btn-close').click(onPopupClose); $('.popup').click(function(e){ e.stopPropagation(); }); $(document).on('keyup', function (event) { var shouldDismissSearchPopup = event.which === 27 && $('.search-popup').is(':visible'); if (shouldDismissSearchPopup) { onPopupClose(); } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], processEscapes: true, skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'] } }); </script> <script type="text/x-mathjax-config"> MathJax.Hub.Queue(function() { var all = MathJax.Hub.getAllJax(), i; for (i=0; i < all.length; i += 1) { all[i].SourceElement().parentNode.className += ' has-jax'; } }); </script> <script type="text/javascript" src="//cdn.bootcss.com/mathjax/2.7.1/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> </body> </html>
588040d/html/classv8_1_1_assert_no_g_c_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.11.4: v8::AssertNoGCScope 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.11.4 </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_assert_no_g_c_scope.html">AssertNoGCScope</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="classv8_1_1_assert_no_g_c_scope-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">v8::AssertNoGCScope 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> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Asserts that no action is performed that could cause a handle's value to be modified. Useful when otherwise unsafe handle operations need to be performed. </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:46:01 for V8 API Reference Guide for node.js v0.11.4 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>
content_ga3/account-configuration-predefined-content-get-default-items.html
LivePersonInc/dev-hub
<!DOCTYPE html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <meta name="keywords" content=" "> <title>Get Default Predefined Content Items | LivePerson Technical Documentation</title> <link rel="stylesheet" href="css/syntax.css"> <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/bootstrap.min.css">--> <link rel="stylesheet" href="css/modern-business.css"> <link rel="stylesheet" href="css/lavish-bootstrap.css"> <link rel="stylesheet" href="css/customstyles.css"> <link rel="stylesheet" href="css/theme-blue.css"> <!-- <script src="assets/js/jsoneditor.js"></script> --> <script src="assets/js/jquery-3.1.0.min.js"></script> <!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css'> --> <!-- <link rel='stylesheet' id='theme_stylesheet' href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css'> --> <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> --> <script src="assets/js/jquery.cookie-1.4.1.min.js"></script> <script src="js/jquery.navgoco.min.js"></script> <script src="assets/js/bootstrap-3.3.4.min.js"></script> <script src="assets/js/anchor-2.0.0.min.js"></script> <script src="js/toc.js"></script> <script src="js/customscripts.js"></script> <link rel="shortcut icon" href="images/favicon.ico"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> <link rel="alternate" type="application/rss+xml" title="" href="http://0.0.0.0:4005feed.xml"> <script> $(document).ready(function() { // Initialize navgoco with default options $("#mysidebar").navgoco({ caretHtml: '', accordion: true, openClass: 'active', // open save: false, // leave false or nav highlighting doesn't work right cookie: { name: 'navgoco', expires: false, path: '/' }, slide: { duration: 400, easing: 'swing' } }); $("#collapseAll").click(function(e) { e.preventDefault(); $("#mysidebar").navgoco('toggle', false); }); $("#expandAll").click(function(e) { e.preventDefault(); $("#mysidebar").navgoco('toggle', true); }); }); </script> <script> $(function () { $('[data-toggle="tooltip"]').tooltip() }) </script> </head> <body> <!-- Navigation --> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container topnavlinks"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="fa fa-home fa-lg navbar-brand" href="index.html">&nbsp;<span class="projectTitle"> LivePerson Technical Documentation</span></a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav navbar-right"> <!-- entries without drop-downs appear here --> <!-- entries with drop-downs appear here --> <!-- conditional logic to control which topnav appears for the audience defined in the configuration file.--> <li><a class="email" title="Submit feedback" href="https://github.com/LivePersonInc/dev-hub/issues" ><i class="fa fa-github"></i> Issues</a><li> <!--comment out this block if you want to hide search--> <li> <!--start search--> <div id="search-demo-container"> <input type="text" id="search-input" placeholder="search..."> <ul id="results-container"></ul> </div> <script src="js/jekyll-search.js" type="text/javascript"></script> <script type="text/javascript"> SimpleJekyllSearch.init({ searchInput: document.getElementById('search-input'), resultsContainer: document.getElementById('results-container'), dataSource: 'search.json', searchResultTemplate: '<li><a href="{url}" title="Get Default Predefined Content Items">{title}</a></li>', noResultsText: 'No results found.', limit: 10, fuzzy: true, }) </script> <!--end search--> </li> </ul> </div> </div> <!-- /.container --> </nav> <!-- Page Content --> <div class="container"> <div class="col-lg-12">&nbsp;</div> <!-- Content Row --> <div class="row"> <!-- Sidebar Column --> <div class="col-md-3"> <ul id="mysidebar" class="nav"> <li class="sidebarTitle"> </li> <li> <a href="#">Common Guidelines</a> <ul> <li class="subfolders"> <a href="#">Introduction</a> <ul> <li class="thirdlevel"><a href="index.html">Home</a></li> <li class="thirdlevel"><a href="getting-started.html">Getting Started with LiveEngage APIs</a></li> </ul> </li> <li class="subfolders"> <a href="#">Guides</a> <ul> <li class="thirdlevel"><a href="guides-customizedchat.html">Customized Chat Windows</a></li> </ul> </li> </ul> <li> <a href="#">Account Configuration</a> <ul> <li class="subfolders"> <a href="#">Predefined Content API</a> <ul> <li class="thirdlevel"><a href="account-configuration-predefined-content-overview.html">Overview</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-methods.html">Methods</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-items.html">Get Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-by-id.html">Get Predefined Content by ID</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-query-delta.html">Predefined Content Query Delta</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-create-content.html">Create Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-update-content.html">Update Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-update-content-items.html">Update Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content.html">Delete Predefined Content</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-delete-content-items.html">Delete Predefined Content Items</a></li> <li class="active thirdlevel"><a href="account-configuration-predefined-content-get-default-items.html">Get Default Predefined Content Items</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-get-default-items-by-id.html">Get Default Predefined Content by ID</a></li> <li class="thirdlevel"><a href="account-configuration-predefined-content-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Automatic Messages API</a> <ul> <li class="thirdlevel"><a href="account-configuration-automatic-messages-overview.html">Overview</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-methods.html">Methods</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-messages.html">Get Automatic Messages</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-get-automatic-message-by-id.html">Get Automatic Message by ID</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-update-an-automatic-message.html">Update an Automatic Message</a></li> <li class="thirdlevel"><a href="account-configuration-automatic-messages-appendix.html">Appendix</a></li> </ul> </li> </ul> <li> <a href="#">Administration</a> <ul> <li class="subfolders"> <a href="#">Users API</a> <ul> <li class="thirdlevel"><a href="administration-users-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-users-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-users.html">Get all users</a></li> <li class="thirdlevel"><a href="administration-get-user-by-id.html">Get user by ID</a></li> <li class="thirdlevel"><a href="administration-create-users.html">Create users</a></li> <li class="thirdlevel"><a href="administration-update-users.html">Update users</a></li> <li class="thirdlevel"><a href="administration-update-user.html">Update user</a></li> <li class="thirdlevel"><a href="administration-delete-users.html">Delete users</a></li> <li class="thirdlevel"><a href="administration-delete-user.html">Delete user</a></li> <li class="thirdlevel"><a href="administration-change-users-password.html">Change user's password</a></li> <li class="thirdlevel"><a href="administration-reset-users-password.html">Reset user's password</a></li> <li class="thirdlevel"><a href="administration-user-query-delta.html">User query delta</a></li> <li class="thirdlevel"><a href="administration-users-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Skills API</a> <ul> <li class="thirdlevel"><a href="administration-skills-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-skills-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-skills.html">Get all skills</a></li> <li class="thirdlevel"><a href="administration-get-skill-by-id.html">Get skill by ID</a></li> <li class="thirdlevel"><a href="administration-create-skills.html">Create skills</a></li> <li class="thirdlevel"><a href="administration.update-skills.html">Update skills</a></li> <li class="thirdlevel"><a href="administration-update-skill.html">Update skill</a></li> <li class="thirdlevel"><a href="administration-delete-skills.html">Delete skills</a></li> <li class="thirdlevel"><a href="administration-delete-skill.html">Delete skill</a></li> <li class="thirdlevel"><a href="administration-skills-query-delta.html">Skills Query Delta</a></li> <li class="thirdlevel"><a href="administration-skills-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Agent Groups API</a> <ul> <li class="thirdlevel"><a href="administration-agent-groups-overview.html">Overview</a></li> <li class="thirdlevel"><a href="administration-agent-groups-methods.html">Methods</a></li> <li class="thirdlevel"><a href="administration-get-all-agent-groups.html">Get all agent groups</a></li> <li class="thirdlevel"><a href="administration-get-agent-groups-by-id.html">Get agent group by ID</a></li> <li class="thirdlevel"><a href="administration-create-agent-groups.html">Create agent groups</a></li> <li class="thirdlevel"><a href="administration-update-agent-groups.html">Update agent groups</a></li> <li class="thirdlevel"><a href="administration-update-agent-group.html">Update agent group</a></li> <li class="thirdlevel"><a href="administration-delete-agent-groups.html">Delete agent groups</a></li> <li class="thirdlevel"><a href="administration-delete-agent-group.html">Delete agent group</a></li> <li class="thirdlevel"><a href="administration-get-subgroups-and-members.html">Get subgroups and members of an agent group</a></li> <li class="thirdlevel"><a href="administration-agent-groups-query-delta.html">Agent Groups Query Delta</a></li> </ul> </li> </ul> <li> <a href="#">Consumer Experience</a> <ul> <li class="subfolders"> <a href="#">JavaScript Chat SDK</a> <ul> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-chat-states.html">Chat States</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-surveys.html">Surveys</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-creating-an-instance.html">Creating an Instance</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getestimatedwaittime.html">getEstimatedWaitTime</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getprechatsurvey.html">getPreChatSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getengagement.html">getEngagement</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-requestchat.html">requestChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-addline.html">addLine</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitortyping.html">setVisitorTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-setvisitorname.html">setVisitorName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-endchat.html">endChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-requesttranscript.html">requestTranscript</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getexitsurvey.html">getExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitexitsurvey.html">submitExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getofflinesurvey.html">getOfflineSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-submitofflinesurvey.html">submitOfflineSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getstate.html">getState</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentloginname.html">getAgentLoginName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getvisitorname.html">getVisitorName</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagentid.html">getAgentId</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getrtsessionid.html">getRtSessionId</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getsessionkey.html">getSessionKey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-getagenttyping.html">getAgentTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-events.html">Events</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onload.html">onLoad</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninit.html">onInit</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onestimatedwaittime.html">onEstimatedWaitTime</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onengagement.html">onEngagement</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onprechatsurvey.html">onPreChatSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstart.html">onStart</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstop.html">onStop</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onrequestchat.html">onRequestChat</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-ontranscript.html">onTranscript</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-online.html">onLine</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onstate.html">onState</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-oninfo.html">onInfo</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onagenttyping.html">onAgentTyping</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onexitsurvey.html">onExitSurvey</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-onaccounttoaccounttransfer.html">onAccountToAccountTransfer</a></li> <li class="thirdlevel"><a href="rt-interactions-example.html">Engagement Attributes Body Example</a></li> <li class="thirdlevel"><a href="consumer-experience-javascript-chat-demo.html">Demo App</a></li> </ul> </li> <li class="subfolders"> <a href="#">Server Chat API</a> <ul> <li class="thirdlevel"><a href="consumer-experience-server-chat-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-availability.html">Retrieve Availability</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-available-slots.html">Retrieve Available Slots</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-estimated-wait-time.html">Retrieve Estimated Wait Time</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-offline-survey.html">Retrieve an Offline Survey</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-start-chat.html">Start a Chat</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-events.html">Retrieve Chat Events</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-add-lines.html">Add Lines / End Chat</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-chat-information.html">Retrieve Chat Information</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-name.html">Retrieve the Visitor's Name</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-name.html">Set the Visitor's Name</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-agent-typing-status.html">Retrieve the Agent's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-visitor-typing-status.html">Retrieve the Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-set-visitor-typing-status.html">Set the Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-retrieve-exit-survey-structure.html">Retrieve Exit Survey Structure</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-submit-survey-data.html">Submit Survey Data</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-send-transcript.html">Send a Transcript</a></li> <li class="thirdlevel"><a href="consumer-experience-server-chat-sample.html">Sample Postman Collection</a></li> </ul> </li> <li class="subfolders"> <a href="#">Push Service API</a> <ul> <li class="thirdlevel"><a href="push-service-overview.html">Overview</a></li> <li class="thirdlevel"><a href="push-service-tls-html">TLS Authentication</a></li> <li class="thirdlevel"><a href="push-service-codes-html">HTTP Response Codes</a></li> <li class="thirdlevel"><a href="push-service-configuration-html">Configuration of Push Proxy</a></li> </ul> </li> <li class="subfolders"> <a href="#">In-App Messaging SDK iOS (2.0)</a> <ul> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-quick-start.html">Quick Start</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-configurations.html">Advanced Configurations</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-methods.html">Methods</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-initialize.html">initialize</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-showconversation.html">showConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-removeconversation.html">removeConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-reconnect.html">reconnect</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-togglechatactions.html">toggleChatActions</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-checkactiveconversation.html">checkActiveConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-markasurgent.html">markAsUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-isurgent.html">isUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-dismissurgent.html">dismissUrgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-resolveconversation.html">resolveConversation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-clearhistory.html">clearHistory</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-logout.html">logout</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-destruct.html">destruct</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-handlepush.html">handlePush</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-registerpushnotifications.html">registerPushNotifications</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-setuserprofile.html">setUserProfile</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getassignedagent.html">getAssignedAgent</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-subscribelogevents.html">subscribeLogEvents</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getsdkversion.html">getSDKVersion</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-printalllocalizedkeys.html">printAllLocalizedKeys</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-printsupportedlanguages.html">printSupportedLanguages</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-getallsupportedlanguages.html">getAllSupportedLanguages</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-interfacedefinitions.html">Interface and Class Definitions</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-callbacks-index.html">Callbacks index</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-configuring-the-sdk.html">Configuring the SDK</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-attributes.html">Attributes</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-deprecated-attributes.html">Deprecated Attributes</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-stringlocalization.html">String localization in SDK</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-localizationkeys.html">Localization Keys</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-timestamps.html">Timestamps Formatting</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-createcertificate.html">OS Certificate Creation</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-advanced-csat.html">CSAT UI Content</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-photosharing.html">Photo Sharing (Beta)</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-pushnotifications.html">Configuring Push Notifications</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-opensource.html">Open Source List</a></li> <li class="thirdlevel"><a href="consumer-experience-ios-sdk-security.html">Security</a></li> </ul> </li> <li class="subfolders"> <a href="#">In-App Messaging SDK Android (2.0)</a> <ul> <li class="thirdlevel"><a href="android-overview.html">Overview</a></li> <li class="thirdlevel"><a href="android-prerequisites.html">Prerequisites</a></li> <li class="thirdlevel"><a href="android-download-and-unzip.html">Step 1: Download and Unzip the SDK</a></li> <li class="thirdlevel"><a href="android-configure-project-settings.html">Step 2: Configure project settings to connect LiveEngage SDK</a></li> <li class="thirdlevel"><a href="android-code-integration.html">Step 3: Code integration for basic deployment</a></li> <li class="thirdlevel"><a href="android-initialization.html">SDK Initialization and Lifecycle</a></li> <li class="thirdlevel"><a href="android-authentication.html">Authentication</a></li> <li class="thirdlevel"><a href="android-conversations-lifecycle.html">Conversations Lifecycle</a></li> <li class="thirdlevel"><a href="android-callbacks-interface.html">LivePerson Callbacks Interface</a></li> <li class="thirdlevel"><a href="android-notifications.html">Notifications</a></li> <li class="thirdlevel"><a href="android-user-data.html">User Data</a></li> <li class="thirdlevel"><a href="android-logs.html">Logs and Info</a></li> <li class="thirdlevel"><a href="android-methods.html">Methods</a></li> <li class="thirdlevel"><a href="android-initializedeprecated.html">initialize (Deprecated)</a></li> <li class="thirdlevel"><a href="android-initializeproperties.html">initialize (with SDK properties object)</a></li> <li class="thirdlevel"><a href="android-showconversation.html">showConversation</a></li> <li class="thirdlevel"><a href="android-showconversationauth.html">showConversation (with authentication support)</a></li> <li class="thirdlevel"><a href="android-hideconversation.html">hideConversation</a></li> <li class="thirdlevel"><a href="android-getconversationfrag.html">getConversationFragment</a></li> <li class="thirdlevel"><a href="android-getconversationfragauth.html">getConversationFragment with authentication support</a></li> <li class="thirdlevel"><a href="android-reconnect.html">reconnect</a></li> <li class="thirdlevel"><a href="android-setuserprofile.html">setUserProfile</a></li> <li class="thirdlevel"><a href="android-setuserprofiledeprecated.html">setUserProfile (Deprecated)</a></li> <li class="thirdlevel"><a href="android-registerlppusher.html">registerLPPusher</a></li> <li class="thirdlevel"><a href="android-unregisterlppusher.html">unregisterLPPusher</a></li> <li class="thirdlevel"><a href="android-handlepush.html">handlePush</a></li> <li class="thirdlevel"><a href="android-getsdkversion.html">getSDKVersion</a></li> <li class="thirdlevel"><a href="android-setcallback.html">setCallback</a></li> <li class="thirdlevel"><a href="android-removecallback.html">removeCallBack</a></li> <li class="thirdlevel"><a href="android-checkactiveconversation.html">checkActiveConversation</a></li> <li class="thirdlevel"><a href="android-checkagentid.html">checkAgentID</a></li> <li class="thirdlevel"><a href="android-markurgent.html">markConversationAsUrgent</a></li> <li class="thirdlevel"><a href="android-marknormal.html">markConversationAsNormal</a></li> <li class="thirdlevel"><a href="android-checkurgent.html">checkConversationIsMarkedAsUrgent</a></li> <li class="thirdlevel"><a href="android-resolveconversation.html">resolveConversation</a></li> <li class="thirdlevel"><a href="android-shutdown.html">shutDown</a></li> <li class="thirdlevel"><a href="android-shutdowndeprecated.html">shutDown (Deprecated)</a></li> <li class="thirdlevel"><a href="android-clearhistory.html">clearHistory</a></li> <li class="thirdlevel"><a href="android-logout.html">logOut</a></li> <li class="thirdlevel"><a href="android-callbacks-index.html">Callbacks Index</a></li> <li class="thirdlevel"><a href="android-configuring-sdk.html">Configuring the SDK</a></li> <li class="thirdlevel"><a href="android-attributes.html">Attributes</a></li> <li class="thirdlevel"><a href="android-configuring-edittext.html">Configuring the message’s EditText</a></li> <li class="thirdlevel"><a href="android-proguard.html">Proguard Configuration</a></li> <li class="thirdlevel"><a href="android-modifying-string.html">Modifying Strings</a></li> <li class="thirdlevel"><a href="android-modifying-resources.html">Modifying Resources</a></li> <li class="thirdlevel"><a href="android-plural-string.html">Plural String Resource Example</a></li> <li class="thirdlevel"><a href="android-timestamps.html">Timestamps Formatting</a></li> <li class="thirdlevel"><a href="android-off-hours.html">Date and Time</a></li> <li class="thirdlevel"><a href="android-bubble.html">Bubble Timestamp</a></li> <li class="thirdlevel"><a href="android-separator.html">Separator Timestamp</a></li> <li class="thirdlevel"><a href="android-resolve.html">Resolve Message</a></li> <li class="thirdlevel"><a href="android-csat.html">CSAT Behavior</a></li> <li class="thirdlevel"><a href="android-photo-sharing.html">Photo Sharing - Beta</a></li> <li class="thirdlevel"><a href="android-push-notifications.html">Enable Push Notifications</a></li> <li class="thirdlevel"><a href="android-appendix.html">Appendix</a></li> </ul> </li> </ul> <li> <a href="#">Real-time Interactions</a> <ul> <li class="subfolders"> <a href="#">Visit Information API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-visit-information-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-visit-information-visit-information.html">Visit Information</a></li> </ul> </li> <li class="subfolders"> <a href="#">App Engagement API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-app-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-app-engagement-methods.html">Methods</a></li> <li class="thirdlevel"><a href="rt-interactions-create-session.html">Create Session</a></li> <li class="thirdlevel"><a href="rt-interactions-update-session.html">Update Session</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Attributes</a> <ul> <li class="thirdlevel"><a href="rt-interactions-engagement-attributes-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-engagement-attributes-engagement-attributes.html">Engagement Attributes</a></li> </ul> </li> <li class="subfolders"> <a href="#">IVR Engagement API</a> <ul> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-methods.html">Methods</a></li> <li class="thirdlevel"><a href="rt-interactions-ivr-engagement-external engagement.html">External Engagement</a></li> </ul> </li> <li class="subfolders"> <a href="#">Validate Engagement</a> <ul> <li class="thirdlevel"><a href="rt-interactions-validate-engagement-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-validate-engagement-validate-engagement.html">Validate Engagement API</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Trigger API</a> <ul> <li class="thirdlevel"><a href="trigger-overview.html">Overview</a></li> <li class="thirdlevel"><a href="trigger-methods.html">Methods</a></li> <li class="thirdlevel"><a href="trigger-click.html">Click</a></li> <li class="thirdlevel"><a href="trigger-getinfo.html">getEngagementInfo</a></li> <li class="thirdlevel"><a href="trigger-getstate.html">getEngagementState</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement Window Widget SDK</a> <ul> <li class="thirdlevel"><a href="rt-interactions-window-sdk-overview.html">Overview</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-limitations.html">Limitations</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-configuration.html">Configuration</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-how-to-use.html">How to use the SDK</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-code-examples.html">Code Examples</a></li> <li class="thirdlevel"><a href="rt-interactions-window-sdk-event-structure.html">Event Structure</a></li> </ul> </li> </ul> <li> <a href="#">Agent</a> <ul> <li class="subfolders"> <a href="#">Agent Workspace Widget SDK</a> <ul> <li class="thirdlevel"><a href="agent-workspace-sdk-overview.html">Overview</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-limitations.html">Limitations</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-how-to-use.html">How to use the SDK</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-public-model.html">Public Model Structure</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-public-properties.html">Public Properties</a></li> <li class="thirdlevel"><a href="agent-workspace-sdk-code-examples.html">Code Examples</a></li> </ul> </li> <li class="subfolders"> <a href="#">LivePerson Domain API</a> <ul> <li class="thirdlevel"><a href="agent-domain-domain-api.html">Domain API</a></li> </ul> </li> <li class="subfolders"> <a href="#">Login Service API</a> <ul> <li class="thirdlevel"><a href="login-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-login-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-login.html">Login</a></li> <li class="thirdlevel"><a href="agent-refresh.html">Refresh</a></li> <li class="thirdlevel"><a href="agent-refresh.html">Logout</a></li> </ul> </li> <li class="subfolders"> <a href="#">Chat Agent API</a> <ul> <li class="thirdlevel"><a href="chat-agent-getting-started.html">Getting Started</a></li> <li class="thirdlevel"><a href="agent-chat-agent-methods.html">Methods</a></li> <li class="thirdlevel"><a href="agent-start-agent-session.html">Start Agent Session</a></li> <li class="thirdlevel"><a href="agent-retrieve-current-availability.html">Retrieve Current Availability</a></li> <li class="thirdlevel"><a href="agent-set-agent-availability.html">Set Agent Availability</a></li> <li class="thirdlevel"><a href="agent-retrieve-available-agents.html">Retrieve Available Agents</a></li> <li class="thirdlevel"><a href="agent-retrieve-available-slots.html">Retrieve Available Slots</a></li> <li class="thirdlevel"><a href="agent-retrieve-agent-information.html">Retrieve Agent Information</a></li> <li class="thirdlevel"><a href="agent-determine-incoming.html">Determine Incoming Chat Requests</a></li> <li class="thirdlevel"><a href="agent-accept-chat.html">Accept a Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-sessions.html">Retrieve Chat Sessions</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-resources.html">Retrieve Chat Resources, Events and Information</a></li> <li class="thirdlevel"><a href="agent-retrieve-data.html">Retrieve Data for Multiple Chats</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-events.html">Retrieve Chat Events</a></li> <li class="thirdlevel"><a href="agent-add-lines.html">Add Lines</a></li> <li class="thirdlevel"><a href="agent-end-chat.html">End Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-chat-info.html">Retrieve Chat Information</a></li> <li class="thirdlevel"><a href="">Retrieve Visitor’s Name</a></li> <li class="thirdlevel"><a href="agent-retrieve-agent-typing.html">Retrieve Agent's Typing Status</a></li> <li class="thirdlevel"><a href="agent-set-agent-typing.html">Set Agent’s Typing Status</a></li> <li class="thirdlevel"><a href="agent-retrieve-visitor-typing.html">Retrieve Visitor's Typing Status</a></li> <li class="thirdlevel"><a href="agent-chat-agent-retrieve-skills.html">Retrieve Available Skills</a></li> <li class="thirdlevel"><a href="agent-transfer-chat.html">Transfer a Chat</a></li> <li class="thirdlevel"><a href="agent-retrieve-survey-structure.html">Retrieve Agent Survey Structure</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Agent SDK</a> <ul> <li class="thirdlevel"><a href="messaging-agent-sdk-overview.html">Overview</a></li> </ul> </li> </ul> <li> <a href="#">Data</a> <ul> <li class="subfolders"> <a href="#">Data Access API (Beta)</a> <ul> <li class="thirdlevel"><a href="data-data-access-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-data-access-architecture.html">Architecture</a></li> <li class="thirdlevel"><a href="data-data-access-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-data-access-base-resource.html">Base Resource</a></li> <li class="thirdlevel"><a href="data-data-access-agent-activity.html">Agent Activity</a></li> <li class="thirdlevel"><a href="data-data-access-web-session.html">Web Session</a></li> <li class="thirdlevel"><a href="data-data-access-engagement.html">Engagement</a></li> <li class="thirdlevel"><a href="data-data-access-survey.html">Survey</a></li> <li class="thirdlevel"><a href="data-data-access-schema.html">Schema</a></li> <li class="thirdlevel"><a href="data-data-access-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Operations API</a> <ul> <li class="thirdlevel"><a href="data-messaging-operations-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-messaging-operations-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-messaging-operations-messaging-conversation.html">Messaging Conversation</a></li> <li class="thirdlevel"><a href="data-messaging-operations-messaging-csat-distribution.html">Messaging CSAT Distribution</a></li> <li class="thirdlevel"><a href="data-messaging-operations-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Messaging Interactions API (Beta)</a> <ul> <li class="thirdlevel"><a href="data-messaging-interactions-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-conversations.html">Conversations</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-get-conversation-by-conversation-id.html">Get conversation by conversation ID</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-get-conversations-by-consumer-id.html">Get Conversations by Consumer ID</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-sample-code.html">Sample Code</a></li> <li class="thirdlevel"><a href="data-messaging-interactions-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Engagement History API</a> <ul> <li class="thirdlevel"><a href="data-engagement-history-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-engagement-history-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-engagement-history-retrieve-engagement-list-by-criteria.html">Retrieve Engagement List by Criteria</a></li> <li class="thirdlevel"><a href="data-engagement-history-sample-code.html">Sample Code</a></li> <li class="thirdlevel"><a href="data-engagement-history-appendix.html">Appendix</a></li> </ul> </li> <li class="subfolders"> <a href="#">Operational Real-time API</a> <ul> <li class="thirdlevel"><a href="data-operational-realtime-overview.html">Overview</a></li> <li class="thirdlevel"><a href="data-operational-realtime-methods.html">Methods</a></li> <li class="thirdlevel"><a href="data-operational-realtime-queue-health.html">Queue Health</a></li> <li class="thirdlevel"><a href="data-operational-realtime-engagement-activity.html">Engagement Activity</a></li> <li class="thirdlevel"><a href="data-operational-realtime-agent-activity.html">Agent Activity</a></li> <li class="thirdlevel"><a href="data-operational-realtime-current-queue-state.html">Current Queue State</a></li> <li class="thirdlevel"><a href="data-operational-realtime-sla-histogram.html">SLA Histogram</a></li> <li class="thirdlevel"><a href="data-operational-realtime-sample-code.html">Sample Code</a></li> </ul> </li> </ul> <li> <a href="#">LiveEngage Tag</a> <ul> <li class="subfolders"> <a href="#">LE Tag Events</a> <ul> <li class="thirdlevel"><a href="lp-tag-tag-events-overview.html">Overview</a></li> <li class="thirdlevel"><a href="lp-tag-tag-events-how.html">How to use these Events</a></li> <li class="thirdlevel"><a href="lp-tag-tag-events-events.html">Events</a></li> <li class="thirdlevel"><a href="lp-tag-visitor-flow.html">Visitor Flow Events</a></li> <li class="thirdlevel"><a href="lp-tag-engagement.html">Engagement Events</a></li> <li class="thirdlevel"><a href="lp-tag-engagement-window.html">Engagement Window Events</a></li> </ul> </li> </ul> <li> <a href="#">Messaging Window API</a> <ul> <li class="subfolders"> <a href="#">Introduction</a> <ul> <li class="thirdlevel"><a href="consumer-interation-index.html">Home</a></li> <li class="thirdlevel"><a href="consumer-int-protocol-overview.html">Protocol Overview</a></li> <li class="thirdlevel"><a href="consumer-int-getting-started.html">Getting Started</a></li> </ul> </li> <li class="subfolders"> <a href="#">Tutorials</a> <ul> <li class="thirdlevel"><a href="consumer-int-get-msg.html">Get Messages</a></li> <li class="thirdlevel"><a href="consumer-int-conversation-md.html">Conversation Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-readaccept-events.html">Read/Accept events</a></li> <li class="thirdlevel"><a href="consumer-int-authentication.html">Authentication</a></li> <li class="thirdlevel"><a href="consumer-int-agent-profile.html">Agent Profile</a></li> <li class="thirdlevel"><a href="consumer-int-post-survey.html">Post Conversation Survey</a></li> <li class="thirdlevel"><a href="consumer-int-client-props.html">Client Properties</a></li> <li class="thirdlevel"><a href="consumer-int-no-headers.html">Avoid Webqasocket Headers</a></li> </ul> </li> <li class="subfolders"> <a href="#">Samples</a> <ul> <li class="thirdlevel"><a href="consumer-int-js-sample.html">JavaScript Messenger</a></li> </ul> </li> <li class="subfolders"> <a href="#">API Reference</a> <ul> <li class="thirdlevel"><a href="consumer-int-api-reference.html">Overview</a></li> <li class="thirdlevel"><a href="consumer-int-msg-reqs.html">Request Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-resps.html">Response Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-notifications.html">Notification Builder</a></li> <li class="thirdlevel"><a href="consumer-int-msg-req-conv.html">New Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-close-conv.html">Close Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-conv-ttr.html">Urgent Conversation</a></li> <li class="thirdlevel"><a href="consumer-int-msg-csat-conv.html">Update CSAT</a></li> <li class="thirdlevel"><a href="consumer-int-msg-sub-conv.html">Subscribe Conversations Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-msg-unsub-conv.html">Unsubscribe Conversations Metadata</a></li> <li class="thirdlevel"><a href="consumer-int-msg-text-cont.html">Publish Content</a></li> <li class="thirdlevel"><a href="consumer-int-msg-sub-events.html">Subscribe Conversation Content</a></li> <li class="thirdlevel"><a href="consumer-int-msg-init-con.html">Browser Init Connection</a></li> </ul> </li> </ul> <!-- if you aren't using the accordion, uncomment this block: <p class="external"> <a href="#" id="collapseAll">Collapse All</a> | <a href="#" id="expandAll">Expand All</a> </p> --> </li> </ul> </div> <!-- this highlights the active parent class in the navgoco sidebar. this is critical so that the parent expands when you're viewing a page. This must appear below the sidebar code above. Otherwise, if placed inside customscripts.js, the script runs before the sidebar code runs and the class never gets inserted.--> <script>$("li.active").parents('li').toggleClass("active");</script> <!-- Content Column --> <div class="col-md-9"> <div class="post-header"> <h1 class="post-title-main">Get Default Predefined Content Items</h1> </div> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-96175782-1', 'auto'); ga('send', 'pageview'); </script> <div class="post-content"> <p>Retrieves default Predefined Content items from a specific account.</p> <h2 id="request">Request</h2> <table> <thead> <tr> <th style="text-align: left">Method</th> <th style="text-align: left">URL</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">GET</td> <td style="text-align: left">/api/configuration/defaults/engagement-window/canned-responses/</td> </tr> </tbody> </table> <h2 id="response">Response</h2> <p><strong>Response Codes</strong></p> <table> <thead> <tr> <th style="text-align: left">Code</th> <th style="text-align: left">Description</th> </tr> </thead> <tbody> <tr> <td style="text-align: left">200</td> <td style="text-align: left">OK</td> </tr> <tr> <td style="text-align: left">404</td> <td style="text-align: left">Data Not Found</td> </tr> </tbody> </table> <p><strong>Response Body</strong></p> <div class="highlighter-rouge"><pre class="highlight"><code>[ { "templateId": "canned-response-template-1", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Introduction", "msg": "Allow me to introduce myself as your chat agent.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-2", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Hello", "msg": "Hello, How may I assist you?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-3", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Welcome", "msg": "Welcome to our live chat service. My name is $!{operator.nickname} and I am here to assist you.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-4", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Help", "msg": "Hello, you're chatting with $!{operator.nickname}. How may I help you?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-5", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Welcome to website", "msg": "Welcome to COMPANY name, what brings you to our website today?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-6", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Question", "msg": "Is there a specific question I can help you with?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-7", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Staller", "msg": "Your patience is appreciated. I will be with you shortly.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-8", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Non Responsive", "msg": "Was there something in particular that you were looking for?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-9", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Happy to Help", "msg": "I will be happy to help you with that!", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-10", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "One moment please", "msg": "Can you please wait for a moment while I find that information for you.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-11", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Thanks for waiting", "msg": "Thank you for waiting. I have some information for you.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-12", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Good-bye", "msg": "Thank you for chatting. Good-bye.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-13", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Chat Again", "msg": "Thank you for visiting. Please contact us at anytime.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-14", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Have I answered all of your questions today?", "msg": "Have I answered all of your questions today?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-15", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "FAIR Warning", "msg": "I haven't heard from you for a while. Are you still there?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-16", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "FINAL Warning", "msg": "Sorry we couldn't finish our chat. As I haven't heard from you for some time, I'm going to close this chat. If you need any help in future, please do not hesitate to chat with us again.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-17", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Goodbye with option to fill survey", "msg": "Thank you for chatting with me today. We really value your feedback. Please click the \"Close\" button at top right to answer a few questions about your experience with us. Thanks and have a good day!", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-18", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Transfer to alternate chat group", "msg": "I can certainly help you with that. I would be happy to transfer you to the appropriate group so they can answer your question as quickly as possible. Is that OK?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-19", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Transfer to Manager", "msg": "I can transfer you to my manager who can better assist you. Is that OK?", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-20", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Abusive Fair Warning", "msg": "Our company considers that content and language to be inappropriate. If you continue to send improper messages, I will have to end our chat session.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-21", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Abusive Final Warning", "msg": "We will not tolerate the use of inappropriate language. I am required to terminate our chat session immediately.", "lang": "en-US", "isDefault": true } ], "type": 0 }, { "templateId": "canned-response-template-22", "templateDeleted": false, "deleted": false, "enabled": true, "data": [ { "title": "Permission Based Service", "msg": "This chat service is permission based. Before a chat begins, no data is collected about you beyond the information which websites usually collect. Once an invitation is accepted, all chats are monitored for quality assurance purposes. Any information gathered is for internal use only.", "lang": "en-US", "isDefault": true } ], "type": 0 } ] </code></pre> </div> <div class="tags"> </div> </div> <hr class="shaded"/> <footer> <div class="row"> <div class="col-lg-12 footer"> &copy;2017 LivePerson. All rights reserved.<br />This documentation is subject to change without notice.<br /> Site last generated: Mar 27, 2017 <br /> <p><img src="img/company_logo.png" alt="Company logo"/></p> </div> </div> </footer> </div> <!-- /.row --> </div> <!-- /.container --> </div> </body> </html>
index.html
robsonbittencourt/rbittencourt.com
--- layout: page title: Últimos Posts excerpt: "A simple and clean responsive Jekyll theme for words and photos." --- <ul class="post-list"> {% for post in site.posts limit:10 %} <li><article><a href="{{ site.url }}{{ post.url }}">{{ post.title }} <span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%d/%m/%Y" }}</time></span></a></article></li> {% endfor %} </ul>
ittc/cache/templates/cache/stats_dashboard.html
state-hiu/ittc-server-django
{% extends "base.html" %} {% load static %} {% block extra_head %} <style> #chart_zoom g.stack._0 > rect.bar { stroke: none; fill: blue; } #chart_zoom g.stack._1 > rect.bar { stroke: none; fill: red; } #chart_zoom g.stack._2 > rect.bar { stroke: none; fill: green; } #chart_zoom g.dc-legend-item:nth-child(1) > rect:nth-child(1) { stroke: none; fill: blue; } #chart_zoom g.dc-legend-item:nth-child(2) > rect:nth-child(1) { stroke: none; fill: red; } #chart_zoom g.dc-legend-item:nth-child(3) > rect:nth-child(1) { stroke: none; fill: green; } </style> {% endblock %} {% block navbar_right %} <li><a href="{% url 'stats_dashboard' %}">All</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">By Origin <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> {% for origin in origins %} <li><a href="{% url 'stats_dashboard_origin' origin.name %}">{{ origin.name }}</a></li> {% endfor %} </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">By Source <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> {% for source in sources %} <li><a href="{% url 'stats_dashboard_source' source.name %}">{{ source.name }}</a></li> {% endfor %} </ul> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">By Date <span class="caret"></span></a> <ul class="dropdown-menu" role="menu"> {% for date in dates %} <li><a href="{% url 'stats_dashboard_date' date %}">{{ date }}</a></li> {% endfor %} </ul> </li> {% endblock %} {% block content %} <div class="row"> <div class="col-md-12"> <div class="page-header" style="padding-left:10px;"><h3>Dashboard {% if origin %}: {{ origin.name }}{% endif %} {% if source %}: {{ source.name }}{% endif %} {% if date %}: {{ date }}{% endif %} </h3></div> </div> </div> <div class="row"> <div class="col-md-12"> <ul class="nav nav-tabs"> <li class="active"><a href="#overview" data-toggle="tab"><i class=""></i>Overview</a></li> <li><a href="#cache" data-toggle="tab"><i class="fa fa-square-o rotate-45"></i>Cache Performance</a></li> </ul> <div class="tab-content"> <div id="overview" class="tab-pane active"> <div class="col-md-8"> <div><h4>Tile Requests by Date</h4></div> <div id="chart_dates"></div> </div> <div class="col-md-4"> <div style="margin-bottom:8px;"><a class="btn btn-primary" href="{% url 'stats_map' %}">Map: All</a></div> {% if origin %} <div style="margin-bottom:8px;"><a class="btn btn-primary" href="{% url 'stats_map_origin' origin.name %}">Map: {{ origin.name }}</a></div> {% endif %} {% if source %} <div style="margin-bottom:8px;"><a class="btn btn-primary" href="{% url 'stats_map_source' source.name %}">Map: {{ source.name }}</a></div> {% endif %} {% if date %} <div style="margin-bottom:8px;"><a class="btn btn-primary" href="{% url 'stats_map_date' date %}">Map for Date {{ date }}</a></div> {% endif %} </div> </div> <div id="cache" class="tab-pane"> <div class="col-md-4"> <div><h4>Overall Cache Ratio</h4></div> <div id="chart_status"></div> </div> <div class="col-md-8"> <div><h4>Cache Ratio by Zoom Level</h4></div> <div id="chart_zoom"></div> </div> </div> </div> <script> var origin = {% if origin %}"{{ origin }}"{% else %}undefined{% endif %}; var source = {% if source %}"{{ source }}"{% else %}undefined{% endif %}; var date = {% if date %}"{{ date }}"{% else %}undefined{% endif %}; ////////////////////////////////// var initPieChart = function(pieChart, stats) { var data_by_status = [] if(origin!=undefined) { for (var k in stats.by_origin_status[origin]) { data_by_status.push({'status':k,'count':stats.by_origin_status[origin][k]}) } } else if(source!=undefined) { for (var k in stats.by_source_status[source]) { data_by_status.push({'status':k,'count':stats.by_source_status[source][k]}) } } else { for (var k in stats.by_status) { data_by_status.push({'status':k,'count':stats.by_status[k]}) } } var ndx = crossfilter(data_by_status); var dim = ndx.dimension(function(d) {return d.status;}); var group = dim.group().reduceSum(function(d) {return d.count;}); var colors = ["red","green","blue","gray"]; pieChart //.margins({top: 50, right: 20, left: 50, bottom: 50}) .width(240) .height(240) .slicesCap(4) .innerRadius(40) .dimension(dim) .group(group) //.xAxisLabel("Request Status") .legend(dc.legend()) .colors(colors) .colorAccessor(function(d, i) { if(d.data.key=="miss") return 0; else if(d.data.key=="hit") return 1 else if(d.data.key=="bypass") return 2; else return 3; }); } var initLineChart = function(lineChart, stats) { var parseDate = d3.time.format("%Y-%m-%d").parse; var data_by_date = []; if(origin!=undefined) { for (var k in stats.by_date_origin) { if(origin in stats.by_date_origin[k]) { data_by_date.push({'date':parseDate(k), 'count':stats.by_date_origin[k][origin]*1.0}); } else { data_by_date.push({'date':parseDate(k), 'count':0.0}); } } } else if(source!=undefined) { for (var k in stats.by_date_source) { if(source in stats.by_date_source[k]) { data_by_date.push({'date':parseDate(k), 'count':stats.by_date_source[k][source]*1.0}); } else { data_by_date.push({'date':parseDate(k), 'count':0.0}); } } } else { for (var k in stats.by_date) { data_by_date.push({'date':parseDate(k), 'count':stats.by_date[k]*1.0}) } } var ndx = crossfilter(data_by_date); var dim = ndx.dimension(function(d) {return d.date;}); var group = dim.group().reduceSum(function(d) {return d.count;}); //var colors = ["red","green","blue","gray"]; var width = 660; var height = 300; var x = d3.time.scale().range([0, width]); var y = d3.scale.linear().range([height, 0]); x.domain(d3.extent(data_by_date, function(d) { return d.date; })); y.domain(d3.extent(data_by_date, function(d) { return d.count; })); lineChart .margins({top: 50, right: 20, left: 50, bottom: 50}) .width(width) .height(height) .renderArea(true) //.chart(function(c) { return dc.lineChart(c).interpolate('basis');}) .interpolate('basis') .x(x) .y(y) //.brushOn(false) .yAxisLabel("Tile Requests") .xAxisLabel("Date") //.clipPadding(10) //.elasticY(true) .dimension(dim) .group(group) .legend(dc.legend()); }; var initColumnChart = function(columnChart, stats) { var data_by_zoom = [] if(origin!=undefined) { for (var z in stats.by_origin_zoom_status[origin]) { var obj = stats.by_origin_zoom_status[origin][z]; var out = {'zoom': parseInt(z,10)}; var statuses = ["miss","hit","bypass"]; for(var i = 0; i < statuses.length; i++) { var status = statuses[i]; if(status in obj) { out[status] = obj[status]; } else { out[status] = 0; } } data_by_zoom.push(out); } } else if(source!=undefined) { for (var z in stats.by_source_zoom_status[source]) { var obj = stats.by_source_zoom_status[source][z]; var out = {'zoom': parseInt(z,10)}; var statuses = ["miss","hit","bypass"]; for(var i = 0; i < statuses.length; i++) { var status = statuses[i]; if(status in obj) { out[status] = obj[status]; } else { out[status] = 0; } } data_by_zoom.push(out); } } else { for (var z in stats.by_zoom_status) { var obj = stats.by_zoom_status[z]; var out = {'zoom': parseInt(z,10)}; var statuses = ["miss","hit","bypass"]; for(var i = 0; i < statuses.length; i++) { var status = statuses[i]; if(status in obj) { out[status] = obj[status]; } else { out[status] = 0; } } data_by_zoom.push(out); } } var ndx = crossfilter(data_by_zoom); var dim = ndx.dimension(function(d) {return d.zoom;}); //var group = dim.group().reduceSum(function(d) {return d}); var group = dim.group().reduce( function (p, v) { p.miss += v.miss; p.hit += v.hit; p.bypass += v.bypass; return p; }, function (p, v) { p.miss -= v.miss; p.hit -= v.hit; p.bypass -= v.bypass; return p; }, function () { return { miss: 0, hit: 0, bypass: 0 }; } ); //var colors = ["red","green","blue","gray"]; var width = 660; var height = 240; var x = d3.scale.linear().range([0, width]); x.domain([0,22.5]); //var y = d3.scale.linear().range([height, 0]); //x.domain(d3.extent(data_by_date, function(d) { return d.date; })); //y.domain(d3.extent(data_by_date, function(d) { return d.count; })); var colorRenderlet = function (_chart) { _chart.selectAll("rect.bar") .on("click", function (d) { function setAttr(selection, keyName) { selection.style("fill", function (d) { if (d[keyName] == "miss") return "red"; else if (d[keyName] == "bypass") return "blue"; else if (d[keyName] == "hit") return "green"; }); }; setAttr(_chart.selectAll("g.stack").selectAll("rect.bar"), "layer") setAttr(_chart.selectAll("g.dc-legend-item").selectAll("rect"), "name") }); }; columnChart .margins({top: 50, right: 20, left: 50, bottom: 50}) .width(width) .height(height) .gap(4) .x(x) .centerBar(true) .elasticY(true) .dimension(dim) .group(group, "bypass") .valueAccessor(function(d){ return d.value.bypass; }) .stack(group, "miss", function(d){ return d.value.miss; }) .stack(group, "hit", function(d){ return d.value.hit; }) .renderlet(colorRenderlet) .legend(dc.legend()); } var pieChart = dc.pieChart("#chart_status"); var lineChart = dc.lineChart("#chart_dates"); var columnChart = dc.barChart("#chart_zoom"); d3.json("{% url 'stats_json' %}", function(error, stats) { initPieChart(pieChart, stats) initLineChart(lineChart, stats) initColumnChart(columnChart, stats) pieChart.render(); lineChart.render(); columnChart.render(); }); </script> {% endblock %} {% block footer %} {% endblock %}
doc/html/editpost_8php.html
waitman/red
<!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.3.1"/> <title>The Red Matrix: mod/editpost.php 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="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="rhash-64.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">The Red Matrix </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.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="pages.html"><span>Related&#160;Pages</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> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('editpost_8php.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Namespaces</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(6)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">editpost.php File Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions</h2></td></tr> <tr class="memitem:a34011690864d122680c802e9e748ccfb"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="editpost_8php.html#a34011690864d122680c802e9e748ccfb">editpost_content</a> (&amp;$a)</td></tr> <tr class="separator:a34011690864d122680c802e9e748ccfb"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Function Documentation</h2> <a class="anchor" id="a34011690864d122680c802e9e748ccfb"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">editpost_content </td> <td>(</td> <td class="paramtype">&amp;&#160;</td> <td class="paramname"><em>$a</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> </div><!-- contents --> </div><!-- doc-content -->
home/templates/home/new_number.html
rafaelmv/smsuela
{% extends '../base.html' %} {% block title %} <title> Agregar Número </title> {% endblock %} {% block content %} <h2>Agregar número telefónico</h2> <form method="POST" enctype="multipart/form-data"> {% csrf_token %} {{ form.as_p }} <button type="submit">Agregar</button> </form> <a href="{% url "home:new_message" %}" class="link">Enviar mensaje</a> | <a href="{% url "home:number_list" %}" class="link">Números actuales</a> {% endblock content %}
_includes/abtbreadcrumb.html
Ali-Baba-Tajine/Ali-Baba-Tajine-Jekyll01
<ul class="breadcrumb"> <li><a href="#">Front End Template</a></li> <li class="active">Home</li> </ul>
Telerik - HTML/Homework evaluation/01. 1/Problem 3/friends.html
fr0wsTyl/TelerikAcademy-2015
<!DOCTYPE html> <html> <head> <title>Doge Social Network</title> </head> <body style="background-color: skyblue"> <p style="font-size:30px; font-weight:bold">Doge Social Network</p> <ul type="disc"> <li><a href="home.html"> Home</a></li> <li><a href="profile.html">Profile</a></li> <li><a href="friends.html">Friends</a></li> </ul> <hr /> <h2>Friends of Doge</h2> <hr /> <em> Such Friend<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;best friend<br /> Many Friends<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;unknown<br /> Wow<br /> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yeah, right </em> </body> </html>
public/modules/categories/views/categories.client.view.html
Highgalaxy3r1/metroApp
<section data-ng-controller="CategoriesController"> <div class="container"> <div class="row"> <div class="col-md-4"></div> <div class="col-md-4"> <div class="form-group"> <div class="input-group"> <span class="input-group-addon" id="basic-addon1"> <span class="glyphicon glyphicon-search" aria-hidden="true"></span> </span> <input type="text" id="firstName" name="firstName" class="form-control" placeholder="Enter Zip Code ..."> </div> </div> </div> <div class="col-md-4"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-education alert-info" aria-hidden="true"></span> <span>School Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-header alert-danger" aria-hidden="true"></span> <span>Health Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-flash alert-success" aria-hidden="true"></span> <span>Emergency Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-home alert-warning" aria-hidden="true"></span> <span>Home and Shelter Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-cutlery alert-info" aria-hidden="true"></span> <span>Food Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> <div class="row"> <div class="col-md-3"></div> <div class="col-md-3"> <span class="glyphicon glyphicon-flag alert-danger" aria-hidden="true"></span> <span>Other Ressources</span> <span class="glyphicon glyphicon-triangle-right" aria-hidden="true"></span> </div> <div class="col-md-3"></div> <div class="col-md-3"></div> </div> </div> </section>
_attachments/2009-11-10-goldberg_invitation05.html
nu-lts/jekyll-snippets
--- layout: attachment title: Is Everything Black and White? categories: [] tags: [] status: inherit type: attachment published: false meta: _wp_attached_file: 2009/11/Goldberg_Invitation05.pdf _wp_attachment_metadata: a:0:{} ---
callbacks.empty.html
pandoraui/jquery-chm
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>callbacks.empty() | jQuery API 中文手册</title> <meta name="author" content="jQuery 中文手册 - hemin.cn/jq/"> <meta name="description" content="jQuery中文手册(在线版),作者:hemin,在线手册:hemin.cn/jq/,下载:hemin.cn/jq/downloads/"> <link type="text/css" rel="stylesheet" href="style/style.css" tppabs="http://hemin.cn/jq/style/style.css" /> <script type="text/javascript" src="js/jquery.min.js" tppabs="http://hemin.cn/jq/js/jquery.min.js"></script> <script type="text/javascript" src="js/js.js" tppabs="http://hemin.cn/jq/js/js.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-15318881-10', 'pandoraui.github.io'); ga('send', 'pageview'); </script> </head> <body id="split"> <div id="content" class="a2"> <div rel="callbacks.empty"> <h2><span>返回值:undefined</span>callbacks.empty()</h2> <h3><em>V1.7</em>概述</h3> <div class="desc"> <p> 从列表中删除所有的回调. </p> <div class="longdesc"> <p></p> </div> </div> <div class="example"> <h3>示例</h3> <span id="f_ad2"></span> <h4>描述:</h4> <p> 使用&nbsp;callbacks.empty()&nbsp;清空回调列表: </p> <h5>jQuery 代码:</h5> <pre><code>// a sample logging function to be added to a callbacks list var foo = function( value1, value2 ){ console.log( 'foo:' + value1 + ',' + value2 ); } // another function to also be added to the list var bar = function( value1, value2 ){ console.log( 'bar:' + value1 + ',' + value2 ); } var callbacks = $.Callbacks(); // add the two functions callbacks.add( foo ); callbacks.add( bar ); // empty the callbacks list callbacks.empty(); // check to ensure all callbacks have been removed console.log( callbacks.has( foo ) ); // false console.log( callbacks.has( bar ) ); // false</code></pre> </div> </div> </div> </body> </html>
client/components/member/member.html
michaeldperez/teambuilder
<div> <h3>{{$ctrl.firstname}} {{$ctrl.lastname}}</h3> <p>Position: {{$ctrl.jobtitle}}</p> <p>Email: {{$ctrl.email}}</p> </div>
categories/服务器/page/2/index.html
wudaown/wudaown.github.io
<!doctype html> <html class="theme-next pisces use-motion"> <head> <meta charset="UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> <meta http-equiv="Cache-Control" content="no-transform" /> <meta http-equiv="Cache-Control" content="no-siteapp" /> <link href="/vendors/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" /> <link href="//fonts.googleapis.com/css?family=Lato:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css"> <link href="/vendors/font-awesome/css/font-awesome.min.css?v=4.4.0" rel="stylesheet" type="text/css" /> <link href="/css/main.css?v=5.0.1" rel="stylesheet" type="text/css" /> <meta name="keywords" content="Hexo, NexT" /> <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.0.1" /> <meta name="description" content="以在家上班为目标"> <meta property="og:type" content="website"> <meta property="og:title" content="WDBLOG"> <meta property="og:url" content="http://www.wdblog.xyz/categories/服务器/page/2/index.html"> <meta property="og:site_name" content="WDBLOG"> <meta property="og:description" content="以在家上班为目标"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="WDBLOG"> <meta name="twitter:description" content="以在家上班为目标"> <script type="text/javascript" id="hexo.configuration"> var NexT = window.NexT || {}; var CONFIG = { scheme: 'Pisces', sidebar: {"position":"left","display":"always"}, fancybox: true, motion: true, duoshuo: { userId: 0, author: '博主' } }; </script> <title> 分类: 服务器 | WDBLOG </title> </head> <body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans"> <div class="container one-collumn sidebar-position-left "> <div class="headband"></div> <header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader"> <div class="header-inner"><div class="site-meta "> <div class="custom-logo-site-title"> <a href="/" class="brand" rel="start"> <span class="logo-line-before"><i></i></span> <span class="site-title">WDBLOG</span> <span class="logo-line-after"><i></i></span> </a> </div> <p class="site-subtitle"></p> </div> <div class="site-nav-toggle"> <button> <span class="btn-bar"></span> <span class="btn-bar"></span> <span class="btn-bar"></span> </button> </div> <nav class="site-nav"> <ul id="menu" class="menu"> <li class="menu-item menu-item-home"> <a href="/." rel="section"> <i class="menu-item-icon fa fa-fw fa-home"></i> <br /> 首页 </a> </li> <li class="menu-item menu-item-categories"> <a href="/categories" rel="section"> <i class="menu-item-icon fa fa-fw fa-th"></i> <br /> 分类 </a> </li> <li class="menu-item menu-item-about"> <a href="/about" rel="section"> <i class="menu-item-icon fa fa-fw fa-user"></i> <br /> 关于 </a> </li> <li class="menu-item menu-item-archives"> <a href="/archives" rel="section"> <i class="menu-item-icon fa fa-fw fa-archive"></i> <br /> 归档 </a> </li> <li class="menu-item menu-item-tags"> <a href="/tags" rel="section"> <i class="menu-item-icon fa fa-fw fa-tags"></i> <br /> 标签 </a> </li> <li class="menu-item menu-item-notes"> <a href="/notes" rel="section"> <i class="menu-item-icon fa fa-fw fa-sticky-note"></i> <br /> 便利贴 </a> </li> </ul> </nav> </div> </header> <main id="main" class="main"> <div class="main-inner"> <div class="content-wrap"> <div id="content" class="content"> <section id="posts" class="posts-collapse"> <div class="collection-title"> <h2 > 服务器 <small>分类</small> </h2> </div> <article class="post post-type-normal" itemscope itemtype="http://schema.org/Article"> <header class="post-header"> <h1 class="post-title"> <a class="post-title-link" href="/2015/07/17/2015-07-17-08r2vm/" itemprop="url"> <span itemprop="name">Windows 08 R2 Virtualbox 64位系统</span> </a> </h1> <div class="post-meta"> <time class="post-time" itemprop="dateCreated" datetime="2015-07-17T19:11:52+08:00" content="2015-07-17" > 07-17 </time> </div> </header> </article> </section> <nav class="pagination"> <a class="extend prev" rel="prev" href="/categories/服务器/"><i class="fa fa-angle-left"></i></a><a class="page-number" href="/categories/服务器/">1</a><span class="page-number current">2</span> </nav> </div> </div> <div class="sidebar-toggle"> <div class="sidebar-toggle-line-wrap"> <span class="sidebar-toggle-line sidebar-toggle-line-first"></span> <span class="sidebar-toggle-line sidebar-toggle-line-middle"></span> <span class="sidebar-toggle-line sidebar-toggle-line-last"></span> </div> </div> <aside id="sidebar" class="sidebar"> <div class="sidebar-inner"> <section class="site-overview sidebar-panel sidebar-panel-active "> <div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person"> <img class="site-author-image" itemprop="image" src="http://i.imgur.com/fMwQDsN.jpg" alt="wudaown" /> <p class="site-author-name" itemprop="name">wudaown</p> <p class="site-description motion-element" itemprop="description">以在家上班为目标</p> </div> <nav class="site-state motion-element"> <div class="site-state-item site-state-posts"> <a href="/archives"> <span class="site-state-item-count">27</span> <span class="site-state-item-name">日志</span> </a> </div> <div class="site-state-item site-state-categories"> <a href="/categories"> <span class="site-state-item-count">13</span> <span class="site-state-item-name">分类</span> </a> </div> <div class="site-state-item site-state-tags"> <a href="/tags"> <span class="site-state-item-count">56</span> <span class="site-state-item-name">标签</span> </a> </div> </nav> <div class="links-of-author motion-element"> <span class="links-of-author-item"> <a href="https://github.com/wudaown" target="_blank" title="Github"> <i class="fa fa-fw fa-globe"></i> Github </a> </span> <span class="links-of-author-item"> <a href="https://twitter.com/wudaown" target="_blank" title="Twitter"> <i class="fa fa-fw fa-twitter"></i> Twitter </a> </span> </div> </section> </div> </aside> </div> </main> <footer id="footer" class="footer"> <div class="footer-inner"> <div class="copyright" > &copy; 2014 - <span itemprop="copyrightYear">2017</span> <span class="with-love"> <i class="fa fa-heart"></i> </span> <span class="author" itemprop="copyrightHolder">wudaown</span> </div> <div class="powered-by"> 由 <a class="theme-link" href="http://hexo.io">Hexo</a> 强力驱动 </div> <div class="theme-info"> 主题 - <a class="theme-link" href="https://github.com/iissnan/hexo-theme-next"> NexT.Pisces </a> </div> </div> </footer> <div class="back-to-top"> <i class="fa fa-arrow-up"></i> </div> </div> <script type="text/javascript"> if (Object.prototype.toString.call(window.Promise) !== '[object Function]') { window.Promise = null; } </script> <script type="text/javascript" src="/vendors/jquery/index.js?v=2.1.3"></script> <script type="text/javascript" src="/vendors/fastclick/lib/fastclick.min.js?v=1.0.6"></script> <script type="text/javascript" src="/vendors/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script> <script type="text/javascript" src="/vendors/velocity/velocity.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/velocity/velocity.ui.min.js?v=1.2.1"></script> <script type="text/javascript" src="/vendors/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <script type="text/javascript" src="/js/src/utils.js?v=5.0.1"></script> <script type="text/javascript" src="/js/src/motion.js?v=5.0.1"></script> <script type="text/javascript" src="/js/src/affix.js?v=5.0.1"></script> <script type="text/javascript" src="/js/src/schemes/pisces.js?v=5.0.1"></script> <script type="text/javascript" src="/js/src/bootstrap.js?v=5.0.1"></script> <script type="text/javascript"> var disqus_shortname = 'wudaown'; var disqus_identifier = 'categories/服务器/page/2/index.html'; var disqus_title = ''; var disqus_url = ''; function run_disqus_script(disqus_script){ var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/' + disqus_script; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); } run_disqus_script('count.js'); </script> </body> </html>
clean/Linux-x86_64-4.05.0-2.0.1/released/8.12.0/fcsl-pcm/1.3.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>fcsl-pcm: 2 m 22 s 🏆</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.12.0 / fcsl-pcm - 1.3.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> fcsl-pcm <small> 1.3.0 <span class="label label-success">2 m 22 s 🏆</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-03-02 09:40:27 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-03-02 09:40:27 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils coq 8.12.0 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.05.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.05.0 Official 4.05.0 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.3 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;FCSL &lt;fcsl@software.imdea.org&gt;&quot; homepage: &quot;http://software.imdea.org/fcsl/&quot; bug-reports: &quot;https://github.com/imdea-software/fcsl-pcm/issues&quot; dev-repo: &quot;git+https://github.com/imdea-software/fcsl-pcm.git&quot; license: &quot;Apache-2.0&quot; build: [ make &quot;-j%{jobs}%&quot; ] install: [ make &quot;install&quot; ] depends: [ &quot;coq&quot; {(&gt;= &quot;8.11&quot; &amp; &lt; &quot;8.13~&quot;) | (= &quot;dev&quot;)} &quot;coq-mathcomp-ssreflect&quot; {(&gt;= &quot;1.10.0&quot; &amp; &lt; &quot;1.12~&quot;) | (= &quot;dev&quot;)} ] tags: [ &quot;keyword:separation logic&quot; &quot;keyword:partial commutative monoid&quot; &quot;category:Computer Science/Data Types and Data Structures&quot; &quot;logpath:fcsl&quot; &quot;date:2020-10-15&quot; ] authors: [ &quot;Aleksandar Nanevski&quot; ] synopsis: &quot;Partial Commutative Monoids&quot; description: &quot;&quot;&quot; The PCM library provides a formalisation of Partial Commutative Monoids (PCMs), a common algebraic structure used in separation logic for verification of pointer-manipulating sequential and concurrent programs. The library provides lemmas for mechanised and automated reasoning about PCMs in the abstract, but also supports concrete common PCM instances, such as heaps, histories and mutexes. This library relies on extensionality axioms: propositional and functional extentionality.&quot;&quot;&quot; url { src: &quot;https://github.com/imdea-software/fcsl-pcm/archive/v1.3.0.tar.gz&quot; checksum: &quot;sha256=3ac78341d681df1a35ad720a84b81089eec1bee30197b15d15b29a3d8c3cec85&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-fcsl-pcm.1.3.0 coq.8.12.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 4000000; timeout 4h opam install -y --deps-only coq-fcsl-pcm.1.3.0 coq.8.12.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 m 48 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 16000000; timeout 4h opam install -y -v coq-fcsl-pcm.1.3.0 coq.8.12.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>2 m 22 s</dd> </dl> <h2>Installation size</h2> <p>Total: 11 M</p> <ul> <li>2 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/unionmap.vo</code></li> <li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/unionmap.glob</code></li> <li>1 M <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/prelude.vo</code></li> <li>1012 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/natmap.vo</code></li> <li>856 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/natmap.glob</code></li> <li>428 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/finmap.vo</code></li> <li>427 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/morphism.vo</code></li> <li>365 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/morphism.glob</code></li> <li>365 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/prelude.glob</code></li> <li>310 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/pcm.vo</code></li> <li>260 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/finmap.glob</code></li> <li>247 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/pred.vo</code></li> <li>221 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/heap.vo</code></li> <li>199 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/automap.vo</code></li> <li>192 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/pcm.glob</code></li> <li>190 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/unionmap.v</code></li> <li>181 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/pred.glob</code></li> <li>154 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/ordtype.vo</code></li> <li>142 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/heap.glob</code></li> <li>120 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/mutex.vo</code></li> <li>113 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/natmap.v</code></li> <li>112 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/ordtype.glob</code></li> <li>111 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/rtc.vo</code></li> <li>110 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/invertible.vo</code></li> <li>100 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/automap.glob</code></li> <li>82 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/seqperm.vo</code></li> <li>76 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/lift.vo</code></li> <li>62 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/mutex.glob</code></li> <li>57 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/morphism.v</code></li> <li>48 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/rtc.glob</code></li> <li>44 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/finmap.v</code></li> <li>42 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/pred.v</code></li> <li>42 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/seqperm.glob</code></li> <li>42 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/invertible.glob</code></li> <li>35 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/pcm.v</code></li> <li>30 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/axioms.vo</code></li> <li>29 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/lift.glob</code></li> <li>28 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/automap.v</code></li> <li>24 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/heap.v</code></li> <li>23 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/prelude.v</code></li> <li>18 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/ordtype.v</code></li> <li>13 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/axioms.glob</code></li> <li>11 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/mutex.v</code></li> <li>10 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/rtc.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/lift.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/seqperm.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/pcm/invertible.v</code></li> <li>4 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/core/axioms.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/options.vo</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/options.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.05.0/lib/coq/user-contrib/fcsl/options.glob</code></li> </ul> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-fcsl-pcm.1.3.0</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
members/lord-teverson.html
JeniT/childs-guide-to-parliament
--- # DO NOT EDIT! # This file is automatically generated by get-members. If you change it, bad # things will happen. layout: default title: "Lord Teverson" house: lords --- <div class="row"> <div class="col-md-8"> {% include members/lord-teverson.html %} <h3>What is Lord Teverson interested in?</h3> <p>Lord Teverson hasn't said he is interested in anything! Why not <a href="http://www.writetothem.com">write to them</a> and ask?</p> </div> <div class="col-md-4"> <div class="panel panel-default"> <div class="panel-heading"> <h3 class="panel-title">Party</h3> </div> <div class="panel-body"> <p>Lord Teverson is part of the <b>Liberal Democrat</b> party.</p> <p class="small"><a href="{{ site.baseurl }}/glossary.html#party">What is a party?</a><p> </div> </div> </div> </div>
_includes/comments.html
gjdanis/gjdanis.github.io
<div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES * * */ var disqus_shortname = 'gjdanis'; /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
patient-search.html
FleetDemo/demo
<!doctype html> <!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]--> <!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]--> <!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]--> <!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"><!--<![endif]--> <head> <title>FLEET Example Search</title> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-touch-fullscreen" content="yes"> <meta charset="UTF-8" /> <link rel="stylesheet" type="text/css" href="css/all.css"> </head> <body> <!--[if lt IE 7]> <p class="chromeframe" style="background:#eee; padding:10px; width:100%">Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p> <![endif]--> <div class="flakes-frame"> <div class="flakes-navigation"> <a href="landing.html" class="logo"> <img src="img/logo.png" width="120"> </a> <ul> <li class="title">Menu</li> <li><a href="patient-search.html">Patient Record Search</a></li> <li><a href="custom-search.html">Custom Search Feature</a></li> </ul> <p class="foot"> Hello <b>Bobby Admin</b><br> <a href="shs-user.html">SHS User Account</a> &bullet; <a href="home.html">Logout</a> </p> </div> <div class="flakes-content"> <div class="flakes-mobile-top-bar"> <a href="" class="logo-wrap"> <img src="img/logo.png" height="30px"> </a> <a href="" class="navigation-expand-target"> <img src="img/site-wide/navigation-expand-target.png" height="26px"> </a> </div> <div class="view-wrap"> <div style="height: 1167px;" class="flakes-content"> <h2>Search Demo</h2> <h3>Patient-Level Search</h3> <p><b>Search</b> at the patient-level by name or <b>MRN</b>.</p> <p>If you don't have the patient name, you can search by other factors listed.</p> <h4>Patient Search</h4> <div id="inventory-search"> <div class="flakes-search"> <input class="search-box search" placeholder="Search Patients" autofocus=""> </div> <div class="flakes-actions-bar"> <a class="action button-gray smaller right" href="">Clear</a> </div> <table class="flakes-table"> <colgroup> <col style="width:20px" span="1"> <col style="width:40%" span="1"> </colgroup> <thead> <tr> <td><input type="checkbox"></td> <td class="company">Patient Name</td> <td class="contact">MRN</td> <td class="city">City</td> <td class="name">Primary Contact</td> </tr> </thead> <tbody class="list"><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Dave Folscomb</a></td> <td class="contact">6541816</td> <td class="city">Efland</td> <td class="name">Dana Parks</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Ed Seth Pellen</a></td> <td class="contact">9375793</td> <td class="city">MaCalley</td> <td class="name">Michelle Kirkland</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Mac Smith</a></td> <td class="contact">6829676</td> <td class="city">Ballerton</td> <td class="name">Warren Morales</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">August Potter</a></td> <td class="contact">3891087</td> <td class="city">Litchford</td> <td class="name">Steven Madden</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Daphne Sanders</a></td> <td class="contact">8937857</td> <td class="city">Framingham</td> <td class="name">Sierra Morton</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Elford Brimley</a></td> <td class="contact">9678521</td> <td class="city">Martinsville</td> <td class="name">Maya Ayers</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Tim Cooper</a></td> <td class="contact">4867965</td> <td class="city">Mallerton</td> <td class="name">Ruth Lee</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Edward Alford Boggs</a></td> <td class="contact">4622201</td> <td class="city">Mimpton</td> <td class="name">Noel Langley</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Dave Fanning</a></td> <td class="contact">6541816</td> <td class="city">Erberville</td> <td class="name">Dane Pantella</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Sam Papkon</a></td> <td class="contact">9375793</td> <td class="city">Mitreville</td> <td class="name">Michael Papkon</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Michael Macntyre</a></td> <td class="contact">6829676</td> <td class="city">Wilforton</td> <td class="name">Wally Newten</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Allan Portman</a></td> <td class="contact">3891087</td> <td class="city">Luxemton</td> <td class="name">Steven Madson</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Daria Miller</a></td> <td class="contact">8937857</td> <td class="city">Fitch Fork</td> <td class="name">Sally Morton</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Eric Miller</a></td> <td class="contact">9678521</td> <td class="city">Mayberry</td> <td class="name">Malina Ayers</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Tina Dobson</a></td> <td class="contact">4867965</td> <td class="city">Moxton</td> <td class="name">Ruth Lee</td> </tr><tr> <td><input type="checkbox"></td> <td class="company"><a href="patient-report.html">Gilbert Gillingham</a></td> <td class="contact">4622201</td> <td class="city">Mullberry</td> <td class="name">Noel Langley</td> </tr></tbody> </table> <div class="flakes-pagination right"> <a href="">Prev</a> &nbsp; <input value="1"> <i>of</i> 1 &nbsp; <a href="">Next</a> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <link rel="stylesheet" type="text/css" href="css/prism.css"> <link rel="stylesheet" type="text/css" href="css/gridforms.css"> <script src="js/jquery.js"></script> <script src="js/snap.js"></script> <script src="js/responsive-elements.js"></script> <script src="js/gridforms.js"></script> <script src="js/prism.js"></script> <script src="js/base.js"></script> <script src="js/list.js"></script> <script type="text/javascript" src="http://getflakes.com/static/js/preview.js"></script> </body> </html>
templates/titanic.html
chrispiech/cs109-2017-spr
<head> %include templates/parts/head.html <script type="text/x-mathjax-config"> MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}}); </script> <script src="http://cdnjs.cloudflare.com/ajax/libs/mathjs/3.1.0/math.min.js"></script> <script src='https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script> </head> <body> <!-- Navigation Bar --> %include templates/parts/navBar.html <div class="container"> <!-- Header --> <div class="row"> <div class="col-sm-12"> <div id="pageHeader"> <h1> A Titanic Probability </h1> <p> Thanks to Kaggle and encyclopedia-titanica for the dataset. </p> </div> <hr/> </div> </div> <div class="row"> <div class="col-sm-12"> <p> This is a question of <a href="{{pathToRoot}}psets/pset5.html">Problem set 5</a>. In this problem you will use real data from the Titanic to calculate conditional probabilities and expectations. </p> <p> <div class="row"> <div class="col-sm-6"> <iframe width="100%" height="250" src="https://www.youtube.com/embed/3lyiZMeTKIo" frameborder="0" allowfullscreen></iframe> </div> <div class="col-sm-6"> <iframe width="100%" height="250" src="https://www.youtube.com/embed/ItjXTieWKyI" frameborder="0" allowfullscreen></iframe> </div> </div> <center><i>tldr: the ship sinks</i></center> </p> <div class="row"> <div class="col-sm-9"> <p> On April 15, 1912, the largest passenger liner ever made collided with an iceberg during her maiden voyage. When the Titanic sank it killed 1502 out of 2224 passengers and crew. This sensational tragedy shocked the international community and led to better safety regulations for ships. One of the reasons that the shipwreck resulted in such loss of life was that there were not enough lifeboats for the passengers and crew. Although there was some element of luck involved in surviving the sinking, some groups of people were more likely to survive than others. </p> <p> The <a href="stuff/titanic.csv">titanic.csv</a> file contains data for 887 of the real Titanic passengers. Each row represents one person. The columns describe different attributes about the person including whether they survived ($S$), their age ($A$), their passenger-class ($C$), their sex ($G$) and the fare they paid ($X$). </p> <p> [Quetion12] Write a program that <b>reads the data file</b> and finds the answers to the following questions: </p> <p> <ol type="a"> <li>Calculate the conditional probability that a person survives given their sex and passenger-class:<br/> $P(S=\text{ true | } G = \text{female}, C = 1)$<br/> $P(S=\text{ true | } G = \text{female}, C = 2)$<br/> $P(S=\text{ true | } G = \text{female}, C = 3)$<br/> $P(S=\text{ true | } G = \text{male}, C = 1)$<br/> $P(S=\text{ true | } G = \text{male}, C = 2)$<br/> $P(S=\text{ true | } G = \text{male}, C = 3)$</li> <li>What is the probability that a child who is in third class and is 10 years old or younger survives? Since the number of data points that satisfy the condition is small use the "bayesian" approach and represent your probability as a beta distribution. Calculate a belief distribution for: <br/>$S=\text{ true | } A &leq; 10, C = 3$<br/>. Report the prior belief that you used and your final answer as parameterized distributions.</li> <li>How much did people pay to be on the ship? Calculate the expectation of fare conditioned on passenger-class:<br/> $E[X \text{ | } C = 1]$<br/> $E[X \text{ | } C = 2]$<br/> $E[X \text{ | } C = 3]$</li> </ol> </p> <p> You only have to submit your answers, not your program. <p> Aside: In making this problem I learned that there were somewhere between 80 and 153 passengers from present day Lebanon (then Ottoman Empire) on the Titanic. That would be 7% of the people aboard. </p> </div> <div class="col-sm-3"> <center> <a href="stuff/titanic.csv">Titanic Dataset<br/><span class="glyphicon glyphicon-save-file" aria-hidden="true" style="font-size: 5em;margin-left:5px"></span> </a> </center> <br/><br/> Dataset columns: <ul class="list-group"> <li class="list-group-item">0: Survived Indicator</li> <li class="list-group-item">1: Passenger Class</li> <li class="list-group-item">2: Name</li> <li class="list-group-item">3: Sex</li> <li class="list-group-item">4: Age</li> <li class="list-group-item">5: Siblings Aboard</li> <li class="list-group-item">6: Parents Aboard</li> <li class="list-group-item">7: Fare paid in &pound;s</li> </ul> </div> </div> <hr/> <h3>Extensions?</h3> <p>See if you can find something suprising in the dataset. Can you predict p? Can you find interesting correlations?</p> </div> </div> %include templates/parts/footer.html </div> </body>
templates/hero-landing-page/css/main.css
yelluw/Bootparts
/* Hero Landing Page template styles. */ /****** Override Bootparts styles ******/ .hero-subscription-form .right-bottom .form-container { border-radius: 0px; padding-bottom: 20px; } .image-with-text, .text-with-image { background: #fff; padding-top: 50px; padding-bottom: 50px; } .three-column-content { padding-top: 60px; padding-bottom: 60px; }
views/example3.html
pofider/jsreport-embedding
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>Client side html widgets</title> <script src="//code.jquery.com/jquery-1.11.0.min.js"></script> <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> </head> <body> <div class="container"> <h1>Client side html widgets</h1> <div class="well"> <p> This shows how you can use new "html-client" recipe to create editable html widgets. "html-client" recipe is the only one being rendered on the client (browser) side. This allows widgets to be more user interactive and use javascript functions provided by the parent page. </p> <p> Hover the widget and click Edit button to pop up jsreport editor where you can modify widget. </p> </div> <div class="grid"> <div class="row"> <div class="col-md-4"> <div data-jsreport-widget="b1I_ThWlS" style="height: 500px"></div> </div> <div class="col-md-8"> <div data-jsreport-widget="WJXsC2-er" style="height: 500px"></div> </div> </div> </div> <div class="jsreport-backdrop" style="display:none;background-color: #a3a3a3; opacity: 0.5; position: fixed; left: 0; top: 0; right:0; bottom:0; z-index: 100;"></div> </div> <script> var issues = [ {title: "Invalid html", priority: "important"}, {title: "Failure on startup", priority: "minor"}, {title: "Missing validation for email", priority: "medium"}, {title: "Performance issues", priority: "medium"}, {title: "Blue screen", priority: "medium"}, {title: "Double click prevention", priority: "medium"}, {title: "Reset password", priority: "minor"}, {title: "Deleting account", priority: "medium"} ]; window.jsreportInit = function (jsreport) { jsreport.setClientContext({ loadData: function(filter, cb) { if (!cb) return filter({ issues: issues}); var filteredIssues = issues.filter(function(i) { return i.title.lastIndexOf(filter, 0) === 0; }); cb({ issues: filteredIssues}); } }); jsreport.renderAll(); }; </script> <script> (function (d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) { return; } js = d.createElement(s); js.id = id; js.src = "http://local.net:2000/extension/embedding/public/embed.min.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'jsreport-embedding')); </script> </body> </html>
html/pdf/W29035.pdfs.html
datamade/elpc_bakken
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <A name=1></a><hr> <A name=2></a><hr> <A name=3></a><hr> <A name=4></a><hr> <A name=5></a><hr> <A name=6></a><hr> <A name=7></a><hr> <A name=8></a><hr> <A name=9></a>Directional Survey Certification<br> Operator: Continental Resources Inc.<br> Well Name: Stangeland 3-7H1<br> API: 33-105-03650<br> Enseco Job#: ND1409-0006CON<br> Job Type: MWD D&amp;I<br> County, State: Wil iams County, N. Dakota<br> Well Surface Hole Location (SHL): Lot 7, Sec. 6, T153N, R99W, (300' FSL ­ 790' FWL)<br> Latitude: 48° 05' 50.678 N<br> Longitude: 103° 28' 17.706 W<br> Datum: Nad 83<br> Final MWD Report Date: Sep. 06, 2014<br> MWD Survey Run Date: Sep. 05, 2014 to Sep. 06, 2014<br> Tied In to Surveys Provided By: Enseco Directional Dril ing D&amp;I MWD<br> MD: Surface<br> MWD Surveyed from 00 ft to 2328 ft MD Survey Type: Positive Pulse D&amp;I MWD<br> Sensor to Bit: 40 ft<br> Rig Contractor: Cyclone<br> Rig Number:33<br> RKB Height: 2326.1 ft<br> GL Elevation: 2306.1 ft<br> MWD Surveyor Name: Jonathan Hopper<br> "The data and calculations for this survey have been checked by me and conform to the calibration<br> standards and operational procedures set forth by Enseco Energy Services USA Corp. I am authorized and<br> qualified to review the data, calculations and this report and that the report represents a true and correct<br> Directional Survey of this well based on the original data corrected to True North and obtained at the well<br> site. Wellbore coordinates are calculated using the minimum curvature method."<br> Jonathan Hovland, Wel Planner<br> Jonathan Hovland<br> September 22</span><span class="ft5">nd </span><span class="ft1">2014<br> Enseco Representative Name, Title<br> Signature<br> Date Signed<br> On this the __ day of ___, 20__, before me personally appeared First &amp; Last Name, to me known as<br> the person described in and who executed the foregoing instrument and acknowledged the<br> (s)he executed the same as his/her free act and deed.<br> Seal:<br> Notary Public<br> Commission Expiry<br> <hr> <A name=10></a>Enseco Survey Report<br> 22 September, 2014<br> Continental Resources Inc.<br> Williams County, N. Dakota<br> Lot 7 Sec..6 Twp.153N Rge.99W<br> Stangeland 3-7H1<br> Job # ND1409-0006CON<br> API#: 33-105-03650<br> Design: Final Surveys Vertical Section<br> <hr> <A name=11></a>ENSECO Energy Services<br> Survey Report<br> Company:<br> Continental Resources Inc.<br> Local Co-ordinate Reference:<br> Well Stangeland 3-7H1<br> Project:<br> Williams County, N. Dakota<br> Ground Level Elevation:<br> 2,306.10usft<br> Site:<br> Lot 7 Sec..6 Twp.153N Rge.99W<br> Wellhead Elevation:<br> KB 20 @ 2326.10usft (Cyclone #33)<br> Well:<br> Stangeland 3-7H1<br> North Reference:<br> True<br> Wellbore:<br> Job # ND1409-0006CON<br> Survey Calculation Method:<br> Minimum Curvature<br> Design:<br> Final Surveys Vertical Section<br> Database:<br> EDM5000<br> Project<br> Williams County, N. Dakota<br> Map System:<br> US State Plane 1983<br> System Datum:<br> Mean Sea Level<br> Geo Datum:<br> North American Datum 1983<br> Map Zone:<br> North Dakota Northern Zone<br> Using geodetic scale factor<br> Site<br> Lot 7 Sec..6 Twp.153N Rge.99W<br> Site Position:<br> Northing:<br> 414,309.94 usft<br> Latitude:<br> 48° 5' 50.677 N<br> From:<br> Lat/Long<br> Easting:<br> 1,242,509.41 usft<br> Longitude:<br> 103° 28' 18.369 W<br> Position Uncertainty:<br> 0.00 usft<br> Slot Radius:<br> 13-3/16 &quot;<br> Grid Convergence:<br> -2.211 °<br> Well<br> Stangeland 3-7H1<br> |<br> API#: 33-105-03650<br> Well Position<br> +N/-S<br> 0.09 usft<br> Northing:<br> 414,308.29 usft<br> Latitude:<br> 48° 5' 50.678 N<br> +E/-W<br> 45.01 usft<br> Easting:<br> 1,242,554.38 usft<br> Longitude:<br> 103° 28' 17.706 W<br> Position Uncertainty<br> 0.00 usft<br> Wellhead Elevation:<br> 2,326.10 usft<br> Ground Level:<br> 2,306.10usft<br> Wellbore<br> Job # ND1409-0006CON<br> Magnetics<br> Model Name<br> Sample Date<br> Declination<br> Dip Angle<br> Field Strength<br> (°)<br> (°)<br> (nT)<br> IGRF2010<br> 9/15/2014<br> 8.129<br> 73.012<br> 56,421<br> Design:<br> Final Surveys Vertical Section<br> Survey Error Model:<br> Standard ISCWSA MWD Tool<br> Audit Notes:<br> Version:<br> 1.0<br> Phase:<br> ACTUAL<br> Tie On Depth:<br> 0.00<br> Vertical Section:<br> Depth From (TVD)<br> +N/-S<br> +E/-W<br> Direction<br> (usft)<br> (usft)<br> (usft)<br> (°)<br> 0.00<br> 0.00<br> 0.00<br> 258.33<br> 9/22/2014 9:10:18AM<br> Page 2<br> COMPASS 5000.1 Build 56<br> <hr> <A name=12></a>ENSECO Energy Services<br> Survey Report<br> Company:<br> Continental Resources Inc.<br> Local Co-ordinate Reference:<br> Well Stangeland 3-7H1<br> Project:<br> Williams County, N. Dakota<br> Ground Level Elevation:<br> 2,306.10usft<br> Site:<br> Lot 7 Sec..6 Twp.153N Rge.99W<br> Wellhead Elevation:<br> KB 20 @ 2326.10usft (Cyclone #33)<br> Well:<br> Stangeland 3-7H1<br> North Reference:<br> True<br> Wellbore:<br> Job # ND1409-0006CON<br> Survey Calculation Method:<br> Minimum Curvature<br> Design:<br> Final Surveys Vertical Section<br> Database:<br> EDM5000<br> Survey<br> Vertical<br> Dogleg<br> Build<br> Turn<br> MD<br> Inc<br> Azi<br> TVD<br> SS<br> +N/-S<br> +E/-W<br> Section<br> Rate<br> Rate<br> Rate<br> (usft)<br> (°)<br> (°)<br> (usft)<br> (usft)<br> (usft)<br> (usft)<br> (usft)<br> (°/100usft)<br> (°/100usft)<br> (°/100usft)<br> 0.00<br> 0.00<br> 0.00<br> 0.00<br> 2,326.10<br> 0.00<br> 0.00<br> 0.00<br> 0.00<br> 0.00<br> 0.00<br> 125.00<br> 0.90<br> 289.50<br> 124.99<br> 2,201.11<br> 0.33<br> -0.93<br> 0.84<br> 0.72<br> 0.72<br> 0.00<br> 204.00<br> 0.40<br> 329.20<br> 203.99<br> 2,122.11<br> 0.77<br> -1.65<br> 1.46<br> 0.82<br> -0.63<br> 50.25<br> 284.00<br> 0.50<br> 311.20<br> 283.99<br> 2,042.11<br> 1.24<br> -2.06<br> 1.76<br> 0.21<br> 0.12<br> -22.50<br> 364.00<br> 0.50<br> 282.80<br> 363.98<br> 1,962.12<br> 1.55<br> -2.66<br> 2.29<br> 0.31<br> 0.00<br> -35.50<br> 456.00<br> 0.50<br> 277.10<br> 455.98<br> 1,870.12<br> 1.69<br> -3.45<br> 3.04<br> 0.05<br> 0.00<br> -6.20<br> 549.00<br> 0.50<br> 245.20<br> 548.98<br> 1,777.12<br> 1.57<br> -4.22<br> 3.82<br> 0.30<br> 0.00<br> -34.30<br> 642.00<br> 0.40<br> 232.50<br> 641.97<br> 1,684.13<br> 1.20<br> -4.85<br> 4.50<br> 0.15<br> -0.11<br> -13.66<br> 736.00<br> 0.40<br> 206.10<br> 735.97<br> 1,590.13<br> 0.70<br> -5.25<br> 5.00<br> 0.19<br> 0.00<br> -28.09<br> 830.00<br> 0.50<br> 194.50<br> 829.97<br> 1,496.13<br> 0.01<br> -5.50<br> 5.38<br> 0.14<br> 0.11<br> -12.34<br> 923.00<br> 0.40<br> 241.30<br> 922.97<br> 1,403.13<br> -0.54<br> -5.88<br> 5.87<br> 0.40<br> -0.11<br> 50.32<br> 1,015.00<br> 0.40<br> 251.50<br> 1,014.96<br> 1,311.14<br> -0.79<br> -6.47<br> 6.50<br> 0.08<br> 0.00<br> 11.09<br> 1,108.00<br> 0.40<br> 167.10<br> 1,107.96<br> 1,218.14<br> -1.21<br> -6.71<br> 6.81<br> 0.58<br> 0.00<br> -90.75<br> 1,201.00<br> 0.20<br> 89.80<br> 1,200.96<br> 1,125.14<br> -1.53<br> -6.47<br> 6.65<br> 0.44<br> -0.22<br> -83.12<br> 1,293.00<br> 0.20<br> 117.20<br> 1,292.96<br> 1,033.14<br> -1.60<br> -6.17<br> 6.36<br> 0.10<br> 0.00<br> 29.78<br> 1,386.00<br> 0.40<br> 302.80<br> 1,385.96<br> 940.14<br> -1.50<br> -6.30<br> 6.47<br> 0.64<br> 0.22<br> -187.53<br> 1,480.00<br> 0.40<br> 9.60<br> 1,479.96<br> 846.14<br> -1.00<br> -6.52<br> 6.58<br> 0.47<br> 0.00<br> 71.06<br> 1,572.00<br> 0.20<br> 169.20<br> 1,571.96<br> 754.14<br> -0.84<br> -6.43<br> 6.47<br> 0.64<br> -0.22<br> 173.48<br> 1,665.00<br> 0.20<br> 141.40<br> 1,664.96<br> 661.14<br> -1.12<br> -6.30<br> 6.40<br> 0.10<br> 0.00<br> -29.89<br> 1,755.00<br> 0.20<br> 323.20<br> 1,754.96<br> 571.14<br> -1.12<br> -6.30<br> 6.40<br> 0.44<br> 0.00<br> -198.00<br> 1,849.00<br> 0.40<br> 91.90<br> 1,848.96<br> 477.14<br> -1.00<br> -6.07<br> 6.15<br> 0.58<br> 0.21<br> 136.91<br> 1,942.00<br> 0.20<br> 169.90<br> 1,941.96<br> 384.14<br> -1.17<br> -5.72<br> 5.83<br> 0.44<br> -0.22<br> 83.87<br> 2,032.00<br> 0.20<br> 61.90<br> 2,031.96<br> 294.14<br> -1.25<br> -5.55<br> 5.69<br> 0.36<br> 0.00<br> -120.00<br> 2,126.00<br> 0.20<br> 359.10<br> 2,125.96<br> 200.14<br> -1.01<br> -5.41<br> 5.50<br> 0.22<br> 0.00<br> -66.81<br> 2,218.00<br> 0.40<br> 114.70<br> 2,217.95<br> 108.15<br> -0.98<br> -5.12<br> 5.21<br> 0.56<br> 0.22<br> 125.65<br> 2,312.00<br> 0.50<br> 68.70<br> 2,311.95<br> 14.15<br> -0.97<br> -4.44<br> 4.54<br> 0.39<br> 0.11<br> -48.94<br> Last MWD Survey<br> 2,328.00<br> 0.50<br> 284.50<br> 2,327.95<br> -1.85<br> -0.93<br> -4.44<br> 4.54<br> 5.95<br> 0.00<br> -901.25<br> Design Annotations<br> Local Coordinates<br> MD<br> TVD<br> +N/-S<br> +E/-W<br> (usft)<br> (usft)<br> (usft)<br> (usft)<br> Comment<br> 2,328.00<br> 2,327.95<br> -0.93<br> -4.44<br> Last MWD Survey<br> 9/22/2014 9:10:18AM<br> Page 3<br> COMPASS 5000.1 Build 56<br> <hr> <A name=13></a><hr> <A name=14></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> TIE IN<br> 2,328<br> 0.50<br> 284.50<br> 2327.95<br> -0.93<br> -4.44<br> 0.78<br> 4.54<br> 258.17<br> 1<br> 2,384<br> 0.70<br> 22.90<br> 2383.95<br> -0.55<br> -4.54<br> 0.40<br> 4.58<br> 263.05<br> 1.64<br> 0.36<br> 2<br> 2,479<br> 1.00<br> 50.10<br> 2478.94<br> 0.51<br> -3.68<br> -0.64<br> 3.72<br> 277.93<br> 0.52<br> 0.32<br> 3<br> 2,575<br> 0.80<br> 43.70<br> 2574.93<br> 1.53<br> -2.58<br> -1.62<br> 3.00<br> 300.78<br> 0.23<br> -0.21<br> 4<br> 2,669<br> 1.00<br> 53.10<br> 2668.91<br> 2.50<br> -1.47<br> -2.55<br> 2.90<br> 329.62<br> 0.26<br> 0.21<br> 5<br> 2,763<br> 1.00<br> 34.20<br> 2762.90<br> 3.67<br> -0.35<br> -3.68<br> 3.69<br> 354.56<br> 0.35<br> 0.00<br> 6<br> 2,858<br> 0.80<br> 45.10<br> 2857.89<br> 4.83<br> 0.59<br> -4.80<br> 4.86<br> 6.92<br> 0.28<br> -0.21<br> 7<br> 2,953<br> 0.80<br> 19.00<br> 2952.88<br> 5.92<br> 1.27<br> -5.87<br> 6.06<br> 12.12<br> 0.38<br> 0.00<br> 8<br> 3,048<br> 0.90<br> 28.60<br> 3047.87<br> 7.20<br> 1.84<br> -7.14<br> 7.44<br> 14.37<br> 0.18<br> 0.11<br> 9<br> 3,143<br> 1.00<br> 6.50<br> 3142.86<br> 8.68<br> 2.30<br> -8.60<br> 8.98<br> 14.81<br> 0.40<br> 0.11<br> 10<br> 3,237<br> 1.20<br> 10.80<br> 3236.84<br> 10.46<br> 2.57<br> -10.37<br> 10.78<br> 13.82<br> 0.23<br> 0.21<br> 11<br> 3,332<br> 1.30<br> 5.70<br> 3331.82<br> 12.51<br> 2.87<br> -12.41<br> 12.84<br> 12.90<br> 0.16<br> 0.11<br> 12<br> 3,426<br> 0.20<br> 251.50<br> 3425.81<br> 13.52<br> 2.82<br> -13.42<br> 13.81<br> 11.77<br> 1.48<br> -1.17<br> 13<br> 3,521<br> 0.50<br> 251.20<br> 3520.81<br> 13.34<br> 2.27<br> -13.25<br> 13.53<br> 9.65<br> 0.32<br> 0.32<br> 14<br> 3,615<br> 0.10<br> 246.50<br> 3614.81<br> 13.17<br> 1.80<br> -13.10<br> 13.29<br> 7.80<br> 0.43<br> -0.43<br> 15<br> 3,711<br> 0.20<br> 338.30<br> 3710.81<br> 13.29<br> 1.66<br> -13.23<br> 13.40<br> 7.14<br> 0.24<br> 0.10<br> 16<br> 3,805<br> 0.10<br> 12.70<br> 3804.80<br> 13.53<br> 1.62<br> -13.46<br> 13.62<br> 6.84<br> 0.14<br> -0.11<br> 17<br> 3,901<br> 0.40<br> 352.90<br> 3900.80<br> 13.94<br> 1.60<br> -13.88<br> 14.03<br> 6.54<br> 0.32<br> 0.31<br> 18<br> 3,994<br> 0.30<br> 291.70<br> 3993.80<br> 14.35<br> 1.33<br> -14.30<br> 14.41<br> 5.31<br> 0.39<br> -0.11<br> 19<br> 4,089<br> 0.10<br> 333.90<br> 4088.80<br> 14.52<br> 1.07<br> -14.47<br> 14.56<br> 4.20<br> 0.25<br> -0.21<br> 20<br> 4,183<br> 0.10<br> 305.80<br> 4182.80<br> 14.64<br> 0.96<br> -14.60<br> 14.67<br> 3.76<br> 0.05<br> 0.00<br> 21<br> 4,278<br> 0.30<br> 232.80<br> 4277.80<br> 14.54<br> 0.70<br> -14.51<br> 14.56<br> 2.75<br> 0.30<br> 0.21<br> 22<br> 4,373<br> 0.20<br> 291.10<br> 4372.80<br> 14.45<br> 0.34<br> -14.43<br> 14.45<br> 1.37<br> 0.27<br> -0.11<br> 23<br> 4,468<br> 0.40<br> 258.20<br> 4467.80<br> 14.44<br> -0.13<br> -14.44<br> 14.44<br> 359.47<br> 0.27<br> 0.21<br> 24<br> 4,562<br> 0.10<br> 271.50<br> 4561.80<br> 14.38<br> -0.54<br> -14.39<br> 14.39<br> 357.86<br> 0.32<br> -0.32<br> 25<br> 4,655<br> 0.30<br> 282.00<br> 4654.80<br> 14.43<br> -0.86<br> -14.45<br> 14.45<br> 356.60<br> 0.22<br> 0.22<br> 26<br> 4,750<br> 0.20<br> 265.30<br> 4749.80<br> 14.47<br> -1.27<br> -14.50<br> 14.52<br> 355.00<br> 0.13<br> -0.11<br> 27<br> 4,845<br> 0.20<br> 76.10<br> 4844.80<br> 14.49<br> -1.27<br> -14.53<br> 14.55<br> 354.99<br> 0.42<br> 0.00<br> 28<br> 4,939<br> 0.30<br> 46.90<br> 4938.80<br> 14.70<br> -0.93<br> -14.72<br> 14.73<br> 356.38<br> 0.17<br> 0.11<br> 29<br> 5,033<br> 0.50<br> 33.70<br> 5032.79<br> 15.21<br> -0.52<br> -15.22<br> 15.22<br> 358.03<br> 0.23<br> 0.21<br> 30<br> 5,128<br> 0.30<br> 28.40<br> 5127.79<br> 15.77<br> -0.18<br> -15.77<br> 15.77<br> 359.36<br> 0.21<br> -0.21<br> 31<br> 5,223<br> 0.70<br> 48.00<br> 5222.79<br> 16.38<br> 0.37<br> -16.36<br> 16.38<br> 1.31<br> 0.45<br> 0.42<br> Page 1<br> <hr> <A name=15></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 32<br> 5,318<br> 0.50<br> 33.70<br> 5317.78<br> 17.11<br> 1.04<br> -17.07<br> 17.14<br> 3.46<br> 0.26<br> -0.21<br> 33<br> 5,412<br> 0.30<br> 13.10<br> 5411.78<br> 17.69<br> 1.32<br> -17.64<br> 17.74<br> 4.26<br> 0.26<br> -0.21<br> 34<br> 5,507<br> 0.50<br> 19.50<br> 5506.78<br> 18.33<br> 1.51<br> -18.26<br> 18.39<br> 4.72<br> 0.22<br> 0.21<br> 35<br> 5,602<br> 0.10<br> 65.70<br> 5601.78<br> 18.75<br> 1.73<br> -18.68<br> 18.83<br> 5.26<br> 0.46<br> -0.42<br> 36<br> 5,697<br> 0.20<br> 84.00<br> 5696.78<br> 18.80<br> 1.97<br> -18.72<br> 18.91<br> 5.97<br> 0.12<br> 0.11<br> 37<br> 5,792<br> 0.20<br> 262.80<br> 5791.78<br> 18.80<br> 1.97<br> -18.72<br> 18.90<br> 5.98<br> 0.42<br> 0.00<br> 38<br> 5,887<br> 0.30<br> 177.50<br> 5886.77<br> 18.53<br> 1.81<br> -18.46<br> 18.62<br> 5.59<br> 0.36<br> 0.11<br> 39<br> 5,981<br> 0.40<br> 104.80<br> 5980.77<br> 18.20<br> 2.14<br> -18.12<br> 18.33<br> 6.71<br> 0.45<br> 0.11<br> 40<br> 6,076<br> 0.70<br> 71.20<br> 6075.77<br> 18.30<br> 3.01<br> -18.19<br> 18.55<br> 9.35<br> 0.45<br> 0.32<br> 41<br> 6,171<br> 0.90<br> 69.70<br> 6170.76<br> 18.75<br> 4.26<br> -18.59<br> 19.23<br> 12.81<br> 0.21<br> 0.21<br> 42<br> 6,265<br> 1.20<br> 68.10<br> 6264.74<br> 19.37<br> 5.87<br> -19.16<br> 20.24<br> 16.85<br> 0.32<br> 0.32<br> 43<br> 6,360<br> 0.90<br> 108.80<br> 6359.73<br> 19.50<br> 7.50<br> -19.23<br> 20.89<br> 21.03<br> 0.82<br> -0.32<br> 44<br> 6,455<br> 0.70<br> 127.20<br> 6454.72<br> 18.91<br> 8.67<br> -18.60<br> 20.80<br> 24.62<br> 0.34<br> -0.21<br> 45<br> 6,549<br> 0.70<br> 147.80<br> 6548.71<br> 18.08<br> 9.43<br> -17.74<br> 20.39<br> 27.54<br> 0.27<br> 0.00<br> 46<br> 6,644<br> 0.60<br> 116.70<br> 6643.71<br> 17.36<br> 10.18<br> -17.00<br> 20.13<br> 30.39<br> 0.38<br> -0.11<br> 47<br> 6,739<br> 0.20<br> 159.90<br> 6738.70<br> 16.98<br> 10.68<br> -16.61<br> 20.07<br> 32.17<br> 0.50<br> -0.42<br> 48<br> 6,834<br> 0.30<br> 161.60<br> 6833.70<br> 16.59<br> 10.82<br> -16.21<br> 19.81<br> 33.11<br> 0.11<br> 0.11<br> 49<br> 6,929<br> 0.20<br> 159.50<br> 6928.70<br> 16.20<br> 10.96<br> -15.82<br> 19.56<br> 34.07<br> 0.11<br> -0.11<br> 50<br> 7,024<br> 0.00<br> 233.50<br> 7023.70<br> 16.05<br> 11.01<br> -15.66<br> 19.46<br> 34.46<br> 0.21<br> -0.21<br> 51<br> 7,119<br> 0.30<br> 8.40<br> 7118.70<br> 16.29<br> 11.05<br> -15.90<br> 19.69<br> 34.15<br> 0.32<br> 0.32<br> 52<br> 7,214<br> 0.30<br> 340.00<br> 7213.70<br> 16.77<br> 11.00<br> -16.38<br> 20.06<br> 33.26<br> 0.15<br> 0.00<br> 53<br> 7,308<br> 0.30<br> 24.80<br> 7307.70<br> 17.23<br> 11.02<br> -16.84<br> 20.45<br> 32.61<br> 0.24<br> 0.00<br> 54<br> 7,403<br> 0.60<br> 29.10<br> 7402.70<br> 17.89<br> 11.37<br> -17.49<br> 21.19<br> 32.43<br> 0.32<br> 0.32<br> 55<br> 7,497<br> 0.30<br> 5.90<br> 7496.69<br> 18.56<br> 11.63<br> -18.15<br> 21.91<br> 32.07<br> 0.37<br> -0.32<br> 56<br> 7,592<br> 0.10<br> 39.90<br> 7591.69<br> 18.87<br> 11.71<br> -18.46<br> 22.21<br> 31.82<br> 0.24<br> -0.21<br> 57<br> 7,686<br> 0.10<br> 312.50<br> 7685.69<br> 18.99<br> 11.70<br> -18.58<br> 22.31<br> 31.64<br> 0.15<br> 0.00<br> 58<br> 7,781<br> 0.40<br> 116.00<br> 7780.69<br> 18.90<br> 11.94<br> -18.48<br> 22.36<br> 32.28<br> 0.52<br> 0.32<br> 59<br> 7,876<br> 0.70<br> 100.10<br> 7875.69<br> 18.65<br> 12.81<br> -18.20<br> 22.63<br> 34.47<br> 0.35<br> 0.32<br> 60<br> 7,970<br> 0.60<br> 96.90<br> 7969.68<br> 18.50<br> 13.86<br> -18.01<br> 23.11<br> 36.85<br> 0.11<br> -0.11<br> 61<br> 8,065<br> 0.60<br> 99.80<br> 8064.68<br> 18.35<br> 14.85<br> -17.83<br> 23.60<br> 38.97<br> 0.03<br> 0.00<br> 62<br> 8,160<br> 0.50<br> 83.80<br> 8159.67<br> 18.31<br> 15.75<br> -17.76<br> 24.15<br> 40.70<br> 0.19<br> -0.11<br> 63<br> 8,255<br> 0.90<br> 77.70<br> 8254.67<br> 18.51<br> 16.89<br> -17.92<br> 25.06<br> 42.37<br> 0.43<br> 0.42<br> 64<br> 8,350<br> 0.40<br> 359.40<br> 8349.66<br> 19.01<br> Page 2 17.61<br> -18.39<br> 25.91<br> 42.83<br> 0.96<br> -0.53<br> <hr> <A name=16></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 65<br> 8,445<br> 0.20<br> 291.10<br> 8444.66<br> 19.40<br> 17.46<br> -18.78<br> 26.10<br> 41.99<br> 0.40<br> -0.21<br> 66<br> 8,540<br> 0.30<br> 276.60<br> 8539.66<br> 19.48<br> 17.06<br> -18.89<br> 25.89<br> 41.20<br> 0.12<br> 0.11<br> 67<br> 8,634<br> 0.10<br> 154.90<br> 8633.66<br> 19.44<br> 16.85<br> -18.85<br> 25.72<br> 40.91<br> 0.39<br> -0.21<br> 68<br> 8,729<br> 0.10<br> 335.90<br> 8728.66<br> 19.44<br> 16.85<br> -18.85<br> 25.72<br> 40.91<br> 0.21<br> 0.00<br> 69<br> 8,824<br> 0.10<br> 62.40<br> 8823.66<br> 19.55<br> 16.89<br> -18.96<br> 25.84<br> 40.81<br> 0.14<br> 0.00<br> 70<br> 8,918<br> 0.60<br> 186.60<br> 8917.66<br> 19.10<br> 16.90<br> -18.51<br> 25.51<br> 41.50<br> 0.70<br> 0.53<br> 71<br> 9,013<br> 0.40<br> 237.10<br> 9012.65<br> 18.43<br> 16.57<br> -17.85<br> 24.78<br> 41.96<br> 0.49<br> -0.21<br> 72<br> 9,107<br> 0.90<br> 282.90<br> 9106.65<br> 18.41<br> 15.57<br> -17.87<br> 24.12<br> 40.22<br> 0.73<br> 0.53<br> 73<br> 9,202<br> 0.50<br> 313.80<br> 9201.64<br> 18.87<br> 14.55<br> -18.36<br> 23.82<br> 37.63<br> 0.56<br> -0.42<br> 74<br> 9,296<br> 0.60<br> 295.30<br> 9295.64<br> 19.36<br> 13.80<br> -18.88<br> 23.78<br> 35.49<br> 0.22<br> 0.11<br> 75<br> 9,390<br> 0.40<br> 339.20<br> 9389.63<br> 19.88<br> 13.24<br> -19.41<br> 23.89<br> 33.67<br> 0.44<br> -0.21<br> 76<br> 9,485<br> 0.30<br> 344.60<br> 9484.63<br> 20.43<br> 13.06<br> -19.97<br> 24.25<br> 32.59<br> 0.11<br> -0.11<br> 77<br> 9,580<br> 0.50<br> 340.50<br> 9579.63<br> 21.06<br> 12.85<br> -20.61<br> 24.67<br> 31.40<br> 0.21<br> 0.21<br> 78<br> 9,674<br> 0.50<br> 340.00<br> 9673.62<br> 21.83<br> 12.58<br> -21.39<br> 25.20<br> 29.95<br> 0.00<br> 0.00<br> 79<br> 9,769<br> 0.40<br> 339.80<br> 9768.62<br> 22.53<br> 12.32<br> -22.10<br> 25.68<br> 28.67<br> 0.11<br> -0.11<br> 80<br> 9,864<br> 0.50<br> 329.40<br> 9863.62<br> 23.20<br> 12.00<br> -22.77<br> 26.12<br> 27.34<br> 0.14<br> 0.11<br> 81<br> 9,958<br> 0.50<br> 349.70<br> 9957.62<br> 23.96<br> 11.71<br> -23.54<br> 26.67<br> 26.06<br> 0.19<br> 0.00<br> 82<br> 10,053<br> 0.50<br> 350.60<br> 10052.61<br> 24.77<br> 11.57<br> -24.36<br> 27.34<br> 25.04<br> 0.01<br> 0.00<br> 83<br> 10,148<br> 0.50<br> 333.00<br> 10147.61<br> 25.55<br> 11.32<br> -25.15<br> 27.95<br> 23.89<br> 0.16<br> 0.00<br> 84<br> 10,243<br> 0.40<br> 26.40<br> 10242.61<br> 26.22<br> 11.28<br> -25.82<br> 28.54<br> 23.27<br> 0.44<br> -0.11<br> 85<br> 10,337<br> 0.50<br> 32.00<br> 10336.60<br> 26.86<br> 11.64<br> -26.44<br> 29.27<br> 23.43<br> 0.12<br> 0.11<br> 86<br> 10,432<br> 0.80<br> 47.90<br> 10431.60<br> 27.66<br> 12.35<br> -27.22<br> 30.29<br> 24.06<br> 0.37<br> 0.32<br> 87<br> 10,526<br> 0.60<br> 20.40<br> 10525.59<br> 28.56<br> 13.01<br> -28.09<br> 31.38<br> 24.49<br> 0.41<br> -0.21<br> 88<br> 10,621<br> 0.70<br> 16.00<br> 10620.58<br> 29.58<br> 13.34<br> -29.11<br> 32.45<br> 24.28<br> 0.12<br> 0.11<br> 89<br> 10,711<br> 1.00<br> 9.60<br> 10710.57<br> 30.88<br> 13.62<br> -30.40<br> 33.76<br> 23.80<br> 0.35<br> 0.33<br> 90<br> 10,777<br> 1.60<br> 140.70<br> 10776.57<br> 30.74<br> 14.30<br> -30.23<br> 33.90<br> 24.95<br> 3.61<br> 0.91<br> 91<br> 10,809<br> 6.00<br> 157.60<br> 10808.49<br> 28.85<br> 15.22<br> -28.31<br> 32.62<br> 27.82<br> 14.04<br> 13.75<br> 92<br> 10,841<br> 9.90<br> 163.00<br> 10840.17<br> 24.67<br> 16.67<br> -24.08<br> 29.77<br> 34.05<br> 12.40<br> 12.19<br> 93<br> 10,873<br> 13.90<br> 159.00<br> 10871.48<br> 18.45<br> 18.85<br> -17.79<br> 26.37<br> 45.62<br> 12.76<br> 12.50<br> 94<br> 10,904<br> 17.40<br> 160.20<br> 10901.33<br> 10.61<br> 21.76<br> -9.85<br> 24.20<br> 64.01<br> 11.34<br> 11.29<br> 95<br> 10,936<br> 21.60<br> 159.20<br> 10931.49<br> 0.59<br> 25.47<br> 0.28<br> 25.48<br> 88.66<br> 13.17<br> 13.13<br> 96<br> 10,967<br> 26.00<br> 159.10<br> 10959.84<br> -11.09<br> 29.92<br> 12.12<br> 31.91<br> 110.34<br> 14.19<br> 14.19<br> Page 3<br> <hr> <A name=17></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 97<br> 10,999<br> 30.40<br> 158.10<br> 10988.04<br> -25.17<br> 35.45<br> 26.37<br> 43.47<br> 125.37<br> 13.83<br> 13.75<br> 98<br> 11,030<br> 34.40<br> 160.40<br> 11014.21<br> -40.70<br> 41.31<br> 42.10<br> 57.99<br> 134.57<br> 13.50<br> 12.90<br> 99<br> 11,062<br> 38.10<br> 159.00<br> 11040.01<br> -58.44<br> 47.88<br> 60.05<br> 75.55<br> 140.67<br> 11.85<br> 11.56<br> 100<br> 11,094<br> 41.80<br> 158.70<br> 11064.54<br> -77.60<br> 55.30<br> 79.45<br> 95.29<br> 144.52<br> 11.58<br> 11.56<br> 101<br> 11,125<br> 46.70<br> 158.80<br> 11086.73<br> -97.75<br> 63.14<br> 99.87<br> 116.37<br> 147.14<br> 15.81<br> 15.81<br> 102<br> 11,156<br> 51.30<br> 158.80<br> 11107.07<br> -119.56<br> 71.59<br> 121.95<br> 139.36<br> 149.09<br> 14.84<br> 14.84<br> 103<br> 11,188<br> 55.60<br> 160.50<br> 11126.12<br> -143.66<br> 80.52<br> 146.34<br> 164.69<br> 150.73<br> 14.10<br> 13.44<br> 104<br> 11,220<br> 58.90<br> 159.40<br> 11143.43<br> -168.93<br> 89.75<br> 171.92<br> 191.30<br> 152.02<br> 10.71<br> 10.31<br> 105<br> 11,252<br> 62.50<br> 160.20<br> 11159.09<br> -195.12<br> 99.38<br> 198.42<br> 218.97<br> 153.01<br> 11.46<br> 11.25<br> 106<br> 11,283<br> 66.50<br> 160.00<br> 11172.43<br> -221.42<br> 108.91<br> 225.04<br> 246.76<br> 153.81<br> 12.92<br> 12.90<br> 107<br> 11,315<br> 69.20<br> 160.60<br> 11184.49<br> -249.33<br> 118.89<br> 253.27<br> 276.22<br> 154.51<br> 8.61<br> 8.44<br> 108<br> 11,346<br> 70.80<br> 161.10<br> 11195.10<br> -276.84<br> 128.45<br> 281.10<br> 305.19<br> 155.11<br> 5.38<br> 5.16<br> 109<br> 11,378<br> 73.30<br> 160.40<br> 11204.96<br> -305.58<br> 138.49<br> 310.16<br> 335.50<br> 155.62<br> 8.08<br> 7.81<br> 110<br> 11,409<br> 78.00<br> 160.20<br> 11212.64<br> -333.85<br> 148.61<br> 338.76<br> 365.43<br> 156.00<br> 15.17<br> 15.16<br> 111<br> 11,441<br> 82.10<br> 158.90<br> 11218.17<br> -363.37<br> 159.62<br> 368.65<br> 396.89<br> 156.29<br> 13.42<br> 12.81<br> 112<br> 11,457<br> 84.60<br> 159.50<br> 11220.02<br> -378.23<br> 165.26<br> 383.69<br> 412.76<br> 156.40<br> 16.06<br> 15.63<br> 113<br> 11,534<br> 89.40<br> 158.40<br> 11224.05<br> -449.97<br> 192.87<br> 456.33<br> 489.56<br> 156.80<br> 6.39<br> 6.23<br> 114<br> 11,565<br> 89.40<br> 158.80<br> 11224.37<br> -478.83<br> 204.18<br> 485.57<br> 520.55<br> 156.91<br> 1.29<br> 0.00<br> 115<br> 11,658<br> 91.00<br> 160.40<br> 11224.05<br> -565.99<br> 236.60<br> 573.79<br> 613.45<br> 157.31<br> 2.43<br> 1.72<br> 116<br> 11,687<br> 91.10<br> 160.80<br> 11223.52<br> -593.34<br> 246.23<br> 601.45<br> 642.40<br> 157.46<br> 1.42<br> 0.34<br> 117<br> 11,719<br> 91.50<br> 160.40<br> 11222.79<br> -623.51<br> 256.86<br> 631.98<br> 674.35<br> 157.61<br> 1.77<br> 1.25<br> 118<br> 11,750<br> 91.40<br> 159.80<br> 11222.01<br> -652.65<br> 267.41<br> 661.46<br> 705.31<br> 157.72<br> 1.96<br> -0.32<br> 119<br> 11,781<br> 90.50<br> 160.90<br> 11221.49<br> -681.84<br> 277.83<br> 690.99<br> 736.27<br> 157.83<br> 4.58<br> -2.90<br> 120<br> 11,812<br> 90.00<br> 161.90<br> 11221.36<br> -711.22<br> 287.72<br> 720.69<br> 767.22<br> 157.97<br> 3.61<br> -1.61<br> 121<br> 11,843<br> 90.20<br> 162.20<br> 11221.30<br> -740.72<br> 297.27<br> 750.50<br> 798.14<br> 158.13<br> 1.16<br> 0.65<br> 122<br> 11,874<br> 89.60<br> 162.80<br> 11221.36<br> -770.28<br> 306.59<br> 780.36<br> 829.05<br> 158.30<br> 2.74<br> -1.94<br> 123<br> 11,905<br> 89.60<br> 163.20<br> 11221.57<br> -799.92<br> 315.65<br> 810.30<br> 859.95<br> 158.47<br> 1.29<br> 0.00<br> 124<br> 11,936<br> 89.90<br> 162.20<br> 11221.71<br> -829.52<br> 324.87<br> 840.20<br> 890.87<br> 158.61<br> 3.37<br> 0.97<br> 125<br> 11,967<br> 88.70<br> 163.50<br> 11222.09<br> -859.14<br> 334.01<br> 870.11<br> 921.78<br> 158.76<br> 5.71<br> -3.87<br> 126<br> 11,998<br> 87.60<br> 166.20<br> 11223.09<br> -889.04<br> 342.11<br> 900.28<br> 952.60<br> 158.95<br> 9.40<br> -3.55<br> 127<br> 12,029<br> 87.80<br> 166.30<br> 11224.33<br> -919.13<br> 349.47<br> 930.60<br> 983.33<br> 159.18<br> 0.72<br> 0.65<br> 128<br> 12,060<br> 88.20<br> 167.80<br> 11225.42<br> -949.32<br> 356.41<br> 961.01<br> 1014.02<br> 159.42<br> 5.00<br> 1.29<br> Page 4<br> <hr> <A name=18></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 129<br> 12,091<br> 88.90<br> 168.90<br> 11226.20<br> -979.67<br> 362.67<br> 991.56<br> 1044.65<br> 159.69<br> 4.20<br> 2.26<br> 130<br> 12,121<br> 89.20<br> 169.90<br> 11226.70<br> -1009.16<br> 368.19<br> 1021.22<br> 1074.23<br> 159.96<br> 3.48<br> 1.00<br> 131<br> 12,152<br> 89.40<br> 170.50<br> 11227.08<br> -1039.70<br> 373.47<br> 1051.93<br> 1104.74<br> 160.24<br> 2.04<br> 0.65<br> 132<br> 12,183<br> 90.00<br> 173.20<br> 11227.24<br> -1070.39<br> 377.86<br> 1082.74<br> 1135.12<br> 160.56<br> 8.92<br> 1.94<br> 133<br> 12,214<br> 90.40<br> 173.80<br> 11227.13<br> -1101.19<br> 381.37<br> 1113.65<br> 1165.36<br> 160.90<br> 2.33<br> 1.29<br> 134<br> 12,245<br> 90.30<br> 174.80<br> 11226.94<br> -1132.03<br> 384.45<br> 1144.58<br> 1195.53<br> 161.24<br> 3.24<br> -0.32<br> 135<br> 12,276<br> 90.80<br> 175.00<br> 11226.64<br> -1162.91<br> 387.20<br> 1175.53<br> 1225.68<br> 161.58<br> 1.74<br> 1.61<br> 136<br> 12,307<br> 90.30<br> 177.10<br> 11226.35<br> -1193.83<br> 389.34<br> 1206.51<br> 1255.71<br> 161.94<br> 6.96<br> -1.61<br> 137<br> 12,339<br> 89.10<br> 177.70<br> 11226.51<br> -1225.80<br> 390.79<br> 1238.51<br> 1286.58<br> 162.32<br> 4.19<br> -3.75<br> 138<br> 12,370<br> 88.60<br> 178.60<br> 11227.14<br> -1256.77<br> 391.79<br> 1269.50<br> 1316.43<br> 162.69<br> 3.32<br> -1.61<br> 139<br> 12,401<br> 88.70<br> 180.80<br> 11227.87<br> -1287.76<br> 391.95<br> 1300.48<br> 1346.09<br> 163.07<br> 7.10<br> 0.32<br> 140<br> 12,495<br> 91.10<br> 181.20<br> 11228.03<br> -1381.74<br> 390.31<br> 1394.34<br> 1435.81<br> 164.23<br> 2.59<br> 2.55<br> 141<br> 12,586<br> 90.90<br> 181.90<br> 11226.44<br> -1472.69<br> 387.85<br> 1485.16<br> 1522.91<br> 165.25<br> 0.80<br> -0.22<br> 142<br> 12,679<br> 89.30<br> 181.20<br> 11226.28<br> -1565.66<br> 385.34<br> 1577.98<br> 1612.38<br> 166.17<br> 1.88<br> -1.72<br> 143<br> 12,772<br> 90.10<br> 180.50<br> 11226.77<br> -1658.64<br> 383.96<br> 1670.86<br> 1702.50<br> 166.97<br> 1.14<br> 0.86<br> 144<br> 12,864<br> 89.40<br> 180.50<br> 11227.17<br> -1750.64<br> 383.15<br> 1762.78<br> 1792.08<br> 167.65<br> 0.76<br> -0.76<br> 145<br> 12,964<br> 89.30<br> 179.40<br> 11228.30<br> -1850.63<br> 383.24<br> 1862.71<br> 1889.90<br> 168.30<br> 1.10<br> -0.10<br> 146<br> 13,063<br> 89.90<br> 180.40<br> 11228.99<br> -1949.63<br> 383.41<br> 1961.65<br> 1986.97<br> 168.87<br> 1.18<br> 0.61<br> 147<br> 13,158<br> 89.60<br> 179.60<br> 11229.41<br> -2044.62<br> 383.41<br> 2056.60<br> 2080.26<br> 169.38<br> 0.90<br> -0.32<br> 148<br> 13,255<br> 90.10<br> 180.20<br> 11229.66<br> -2141.62<br> 383.58<br> 2153.54<br> 2175.70<br> 169.85<br> 0.81<br> 0.52<br> 149<br> 13,352<br> 91.20<br> 182.70<br> 11228.56<br> -2238.58<br> 381.13<br> 2250.36<br> 2270.79<br> 170.34<br> 2.82<br> 1.13<br> 150<br> 13,449<br> 91.70<br> 182.20<br> 11226.11<br> -2335.46<br> 376.98<br> 2347.04<br> 2365.69<br> 170.83<br> 0.73<br> 0.52<br> 151<br> 13,546<br> 91.40<br> 182.90<br> 11223.48<br> -2432.32<br> 372.67<br> 2443.70<br> 2460.71<br> 171.29<br> 0.78<br> -0.31<br> 152<br> 13,643<br> 90.60<br> 181.60<br> 11221.79<br> -2529.23<br> 368.86<br> 2540.42<br> 2555.99<br> 171.70<br> 1.57<br> -0.82<br> 153<br> 13,739<br> 90.80<br> 180.60<br> 11220.62<br> -2625.21<br> 367.02<br> 2636.27<br> 2650.74<br> 172.04<br> 1.06<br> 0.21<br> 154<br> 13,835<br> 90.10<br> 180.20<br> 11219.86<br> -2721.20<br> 366.35<br> 2732.19<br> 2745.75<br> 172.33<br> 0.84<br> -0.73<br> 155<br> 13,931<br> 91.40<br> 179.70<br> 11218.61<br> -2817.19<br> 366.43<br> 2828.12<br> 2840.92<br> 172.59<br> 1.45<br> 1.35<br> 156<br> 14,026<br> 89.90<br> 179.20<br> 11217.53<br> -2912.18<br> 367.35<br> 2923.08<br> 2935.25<br> 172.81<br> 1.66<br> -1.58<br> 157<br> 14,121<br> 89.30<br> 178.20<br> 11218.19<br> -3007.15<br> 369.50<br> 3018.07<br> 3029.76<br> 172.99<br> 1.23<br> -0.63<br> 158<br> 14,217<br> 89.10<br> 177.80<br> 11219.53<br> -3103.08<br> 372.85<br> 3114.06<br> 3125.40<br> 173.15<br> 0.47<br> -0.21<br> 159<br> 14,311<br> 89.50<br> 178.90<br> 11220.68<br> -3197.03<br> 375.56<br> 3208.05<br> 3219.01<br> 173.30<br> 1.25<br> 0.43<br> 160<br> 14,407<br> 90.80<br> 181.70<br> 11220.43<br> -3293.02<br> 375.05<br> 3303.97<br> 3314.31<br> 173.50<br> 3.22<br> 1.35<br> Page 5<br> <hr> <A name=19></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 161<br> 14,503<br> 90.90<br> 181.10<br> 11219.01<br> -3388.98<br> 372.71<br> 3399.79<br> 3409.41<br> 173.72<br> 0.63<br> 0.10<br> 162<br> 14,599<br> 88.70<br> 179.50<br> 11219.34<br> -3484.97<br> 372.21<br> 3495.70<br> 3504.79<br> 173.90<br> 2.83<br> -2.29<br> 163<br> 14,695<br> 89.40<br> 179.90<br> 11220.93<br> -3580.95<br> 372.71<br> 3591.65<br> 3600.30<br> 174.06<br> 0.84<br> 0.73<br> 164<br> 14,790<br> 90.00<br> 179.90<br> 11221.43<br> -3675.95<br> 372.87<br> 3686.60<br> 3694.81<br> 174.21<br> 0.63<br> 0.63<br> 165<br> 14,886<br> 88.70<br> 177.90<br> 11222.52<br> -3771.92<br> 374.72<br> 3782.57<br> 3790.49<br> 174.33<br> 2.48<br> -1.35<br> 166<br> 14,983<br> 89.60<br> 179.10<br> 11223.96<br> -3868.87<br> 377.26<br> 3879.56<br> 3887.22<br> 174.43<br> 1.55<br> 0.93<br> 167<br> 15,079<br> 89.00<br> 178.90<br> 11225.13<br> -3964.85<br> 378.93<br> 3975.53<br> 3982.92<br> 174.54<br> 0.66<br> -0.62<br> 168<br> 15,174<br> 89.40<br> 180.60<br> 11226.46<br> -4059.84<br> 379.35<br> 4070.48<br> 4077.52<br> 174.66<br> 1.84<br> 0.42<br> 169<br> 15,270<br> 89.70<br> 180.30<br> 11227.21<br> -4155.83<br> 378.59<br> 4166.39<br> 4173.04<br> 174.79<br> 0.44<br> 0.31<br> 170<br> 15,366<br> 89.50<br> 181.80<br> 11227.88<br> -4251.81<br> 376.83<br> 4262.25<br> 4268.48<br> 174.94<br> 1.58<br> -0.21<br> 171<br> 15,462<br> 91.00<br> 182.30<br> 11227.46<br> -4347.74<br> 373.40<br> 4358.01<br> 4363.75<br> 175.09<br> 1.65<br> 1.56<br> 172<br> 15,559<br> 91.90<br> 181.20<br> 11225.01<br> -4444.67<br> 370.44<br> 4454.77<br> 4460.08<br> 175.24<br> 1.46<br> 0.93<br> 173<br> 15,655<br> 91.40<br> 180.70<br> 11222.24<br> -4540.61<br> 368.85<br> 4550.61<br> 4555.57<br> 175.36<br> 0.74<br> -0.52<br> 174<br> 15,749<br> 89.40<br> 180.60<br> 11221.59<br> -4634.60<br> 367.78<br> 4644.50<br> 4649.17<br> 175.46<br> 2.13<br> -2.13<br> 175<br> 15,844<br> 88.90<br> 180.00<br> 11223.00<br> -4729.59<br> 367.28<br> 4739.42<br> 4743.83<br> 175.56<br> 0.82<br> -0.53<br> 176<br> 15,940<br> 89.40<br> 180.90<br> 11224.42<br> -4825.57<br> 366.53<br> 4835.32<br> 4839.47<br> 175.66<br> 1.07<br> 0.52<br> 177<br> 16,035<br> 88.70<br> 180.70<br> 11226.00<br> -4920.55<br> 365.20<br> 4930.19<br> 4934.08<br> 175.76<br> 0.77<br> -0.74<br> 178<br> 16,131<br> 88.00<br> 179.90<br> 11228.76<br> -5016.51<br> 364.70<br> 5026.08<br> 5029.75<br> 175.84<br> 1.11<br> -0.73<br> 179<br> 16,228<br> 89.80<br> 180.60<br> 11230.62<br> -5113.48<br> 364.28<br> 5122.98<br> 5126.44<br> 175.93<br> 1.99<br> 1.86<br> 180<br> 16,324<br> 90.80<br> 182.70<br> 11230.12<br> -5209.43<br> 361.51<br> 5218.78<br> 5221.96<br> 176.03<br> 2.42<br> 1.04<br> 181<br> 16,420<br> 90.80<br> 181.00<br> 11228.78<br> -5305.37<br> 358.41<br> 5314.56<br> 5317.46<br> 176.14<br> 1.77<br> 0.00<br> 182<br> 16,516<br> 90.30<br> 180.10<br> 11227.86<br> -5401.36<br> 357.49<br> 5410.46<br> 5413.18<br> 176.21<br> 1.07<br> -0.52<br> 183<br> 16,612<br> 90.80<br> 179.50<br> 11226.94<br> -5497.36<br> 357.83<br> 5506.41<br> 5508.99<br> 176.28<br> 0.81<br> 0.52<br> 184<br> 16,709<br> 90.00<br> 178.50<br> 11226.26<br> -5594.34<br> 359.52<br> 5603.39<br> 5605.88<br> 176.32<br> 1.32<br> -0.82<br> 185<br> 16,803<br> 90.50<br> 178.80<br> 11225.85<br> -5688.31<br> 361.74<br> 5697.38<br> 5699.80<br> 176.36<br> 0.62<br> 0.53<br> 186<br> 16,898<br> 91.30<br> 178.30<br> 11224.36<br> -5783.27<br> 364.14<br> 5792.37<br> 5794.72<br> 176.40<br> 0.99<br> 0.84<br> 187<br> 16,993<br> 91.40<br> 178.00<br> 11222.12<br> -5878.19<br> 367.20<br> 5887.34<br> 5889.65<br> 176.43<br> 0.33<br> 0.11<br> 188<br> 17,089<br> 89.60<br> 178.20<br> 11221.28<br> -5974.13<br> 370.39<br> 5983.33<br> 5985.60<br> 176.45<br> 1.89<br> -1.88<br> 189<br> 17,184<br> 89.20<br> 178.30<br> 11222.28<br> -6069.08<br> 373.29<br> 6078.33<br> 6080.55<br> 176.48<br> 0.43<br> -0.42<br> 190<br> 17,281<br> 89.40<br> 178.90<br> 11223.46<br> -6166.04<br> 375.66<br> 6175.31<br> 6177.48<br> 176.51<br> 0.65<br> 0.21<br> 191<br> 17,376<br> 90.60<br> 180.60<br> 11223.46<br> -6261.04<br> 376.07<br> 6270.26<br> 6272.32<br> 176.56<br> 2.19<br> 1.26<br> 192<br> 17,471<br> 92.70<br> 181.50<br> 11220.72<br> -6355.98<br> 374.33<br> 6365.09<br> 6366.99<br> 176.63<br> 2.40<br> 2.21<br> Page 6<br> <hr> <A name=20></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 193<br> 17,567<br> 92.80<br> 181.80<br> 11216.12<br> -6451.83<br> 371.57<br> 6460.79<br> 6462.52<br> 176.70<br> 0.33<br> 0.10<br> 194<br> 17,663<br> 92.00<br> 180.40<br> 11212.10<br> -6547.72<br> 369.73<br> 6556.56<br> 6558.15<br> 176.77<br> 1.68<br> -0.83<br> 195<br> 17,758<br> 89.80<br> 179.60<br> 11210.61<br> -6642.70<br> 369.73<br> 6651.49<br> 6652.98<br> 176.81<br> 2.46<br> -2.32<br> 196<br> 17,855<br> 88.60<br> 179.30<br> 11211.96<br> -6739.69<br> 370.66<br> 6748.44<br> 6749.87<br> 176.85<br> 1.28<br> -1.24<br> 197<br> 17,952<br> 87.30<br> 179.30<br> 11215.43<br> -6836.61<br> 371.85<br> 6845.36<br> 6846.72<br> 176.89<br> 1.34<br> -1.34<br> 198<br> 18,048<br> 88.90<br> 181.50<br> 11218.61<br> -6932.55<br> 371.18<br> 6941.21<br> 6942.48<br> 176.94<br> 2.83<br> 1.67<br> 199<br> 18,143<br> 91.30<br> 182.50<br> 11218.45<br> -7027.48<br> 367.86<br> 7035.98<br> 7037.11<br> 177.00<br> 2.74<br> 2.53<br> 200<br> 18,238<br> 91.40<br> 181.90<br> 11216.21<br> -7122.39<br> 364.21<br> 7130.70<br> 7131.69<br> 177.07<br> 0.64<br> 0.11<br> 201<br> 18,334<br> 90.50<br> 181.70<br> 11214.62<br> -7218.33<br> 361.20<br> 7226.48<br> 7227.36<br> 177.14<br> 0.96<br> -0.94<br> 202<br> 18,430<br> 91.30<br> 180.80<br> 11213.11<br> -7314.29<br> 359.11<br> 7322.31<br> 7323.10<br> 177.19<br> 1.25<br> 0.83<br> 203<br> 18,526<br> 90.70<br> 179.50<br> 11211.43<br> -7410.27<br> 358.85<br> 7418.23<br> 7418.96<br> 177.23<br> 1.49<br> -0.62<br> 204<br> 18,622<br> 91.60<br> 178.90<br> 11209.51<br> -7506.24<br> 360.19<br> 7514.19<br> 7514.88<br> 177.25<br> 1.13<br> 0.94<br> 205<br> 18,718<br> 92.30<br> 177.90<br> 11206.24<br> -7602.15<br> 362.87<br> 7610.13<br> 7610.80<br> 177.27<br> 1.27<br> 0.73<br> 206<br> 18,813<br> 90.00<br> 180.40<br> 11204.33<br> -7697.10<br> 364.28<br> 7705.08<br> 7705.72<br> 177.29<br> 3.58<br> -2.42<br> 207<br> 18,910<br> 90.70<br> 180.20<br> 11203.74<br> -7794.10<br> 363.77<br> 7802.00<br> 7802.58<br> 177.33<br> 0.75<br> 0.72<br> 208<br> 19,006<br> 90.70<br> 179.30<br> 11202.57<br> -7890.09<br> 364.19<br> 7897.95<br> 7898.49<br> 177.36<br> 0.94<br> 0.00<br> 209<br> 19,101<br> 91.20<br> 178.50<br> 11200.99<br> -7985.06<br> 366.02<br> 7992.92<br> 7993.44<br> 177.38<br> 0.99<br> 0.53<br> 210<br> 19,196<br> 90.00<br> 178.80<br> 11200.00<br> -8080.03<br> 368.25<br> 8087.91<br> 8088.41<br> 177.39<br> 1.30<br> -1.26<br> 211<br> 19,292<br> 88.80<br> 180.00<br> 11201.00<br> -8176.01<br> 369.26<br> 8183.87<br> 8184.35<br> 177.41<br> 1.77<br> -1.25<br> 212<br> 19,388<br> 89.40<br> 179.10<br> 11202.51<br> -8272.00<br> 370.01<br> 8279.83<br> 8280.27<br> 177.44<br> 1.13<br> 0.63<br> 213<br> 19,484<br> 88.40<br> 178.70<br> 11204.36<br> -8367.96<br> 371.86<br> 8375.80<br> 8376.22<br> 177.46<br> 1.12<br> -1.04<br> 214<br> 19,579<br> 87.90<br> 180.60<br> 11207.42<br> -8462.90<br> 372.44<br> 8470.70<br> 8471.09<br> 177.48<br> 2.07<br> -0.53<br> 215<br> 19,675<br> 88.70<br> 180.90<br> 11210.27<br> -8558.85<br> 371.18<br> 8566.55<br> 8566.90<br> 177.52<br> 0.89<br> 0.83<br> 216<br> 19,771<br> 90.70<br> 182.20<br> 11210.77<br> -8654.81<br> 368.58<br> 8662.36<br> 8662.65<br> 177.56<br> 2.48<br> 2.08<br> 217<br> 19,867<br> 91.00<br> 180.90<br> 11209.35<br> -8750.76<br> 365.99<br> 8758.17<br> 8758.41<br> 177.61<br> 1.39<br> 0.31<br> 218<br> 19,963<br> 90.50<br> 180.40<br> 11208.09<br> -8846.75<br> 364.90<br> 8854.06<br> 8854.27<br> 177.64<br> 0.74<br> -0.52<br> 219<br> 20,058<br> 91.20<br> 180.20<br> 11206.68<br> -8941.73<br> 364.40<br> 8948.97<br> 8949.15<br> 177.67<br> 0.77<br> 0.74<br> 220<br> 20,153<br> 90.00<br> 179.60<br> 11205.69<br> -9036.73<br> 364.57<br> 9043.92<br> 9044.08<br> 177.69<br> 1.41<br> -1.26<br> 221<br> 20,249<br> 87.50<br> 178.80<br> 11207.78<br> -9132.68<br> 365.91<br> 9139.87<br> 9140.01<br> 177.71<br> 2.73<br> -2.60<br> 222<br> 20,344<br> 88.10<br> 179.30<br> 11211.43<br> -9227.60<br> 367.48<br> 9234.78<br> 9234.92<br> 177.72<br> 0.82<br> 0.63<br> 223<br> 20,438<br> 88.60<br> 179.80<br> 11214.14<br> -9321.56<br> 368.22<br> 9328.71<br> 9328.83<br> 177.74<br> 0.75<br> 0.53<br> 224<br> 20,533<br> 89.00<br> 178.40<br> 11216.13<br> -9416.52<br> 369.71<br> 9423.67<br> 9423.78<br> 177.75<br> 1.53<br> 0.42<br> Page 7<br> <hr> <A name=21></a>SURVEY CALCULATION PROGRAM<br> 1/16/15 9:46<br> V09.04.02<br> Company:<br> Continental Resources, Inc.<br> Well Name:<br> Stangeland 3-7H1<br> Location:<br> Williams County, ND<br> Rig:<br> Cyclone #33<br> Magnetic Declination:<br> 8.14<br> Job Number:<br> DDMT-140806<br> API #:<br> 33-105-03650<br> Vertical Section Azimuth:<br> 178.03<br> Proposed Direction:<br> 178.03<br> Survey Calculation Method:<br> Minimum Curvature<br> MD<br> INC<br> AZM<br> TVD<br> N/S<br> E/W<br> VS<br> PTB:<br> 21,725<br> 89.4<br> 178.5<br> 11224.49<br> -10607.9<br> 375.3<br> 10614.53<br> Depth<br> Inc<br> Azm<br> TVD<br> N/S<br> E/W<br> Surface<br> Closure<br> DLS/<br> BUR/<br> #<br> Feet<br> Degrees<br> Degrees<br> Feet<br> Feet<br> Feet<br> Vert Sec<br> Distance<br> Azm<br> 100<br> 100'<br> 225<br> 20,628<br> 87.60<br> 179.20<br> 11218.94<br> -9511.46<br> 371.70<br> 9518.61<br> 9518.72<br> 177.76<br> 1.70<br> -1.47<br> 226<br> 20,723<br> 87.30<br> 179.70<br> 11223.17<br> -9606.36<br> 372.61<br> 9613.49<br> 9613.58<br> 177.78<br> 0.61<br> -0.32<br> 227<br> 20,818<br> 87.20<br> 181.70<br> 11227.73<br> -9701.24<br> 371.45<br> 9708.27<br> 9708.35<br> 177.81<br> 2.11<br> -0.11<br> 228<br> 20,913<br> 88.90<br> 182.10<br> 11230.96<br> -9796.13<br> 368.30<br> 9803.00<br> 9803.05<br> 177.85<br> 1.84<br> 1.79<br> 229<br> 21,007<br> 90.10<br> 180.90<br> 11231.78<br> -9890.09<br> 365.84<br> 9896.82<br> 9896.85<br> 177.88<br> 1.81<br> 1.28<br> 230<br> 21,101<br> 91.10<br> 180.20<br> 11230.80<br> -9984.08<br> 364.94<br> 9990.72<br> 9990.74<br> 177.91<br> 1.30<br> 1.06<br> 231<br> 21,198<br> 90.80<br> 179.20<br> 11229.19<br> -10081.06<br> 365.45<br> 10087.66<br> 10087.68<br> 177.92<br> 1.08<br> -0.31<br> 232<br> 21,294<br> 91.10<br> 179.20<br> 11227.60<br> -10177.04<br> 366.79<br> 10183.63<br> 10183.64<br> 177.94<br> 0.31<br> 0.31<br> 233<br> 21,390<br> 91.40<br> 179.60<br> 11225.50<br> -10273.01<br> 367.79<br> 10279.58<br> 10279.59<br> 177.95<br> 0.52<br> 0.31<br> 234<br> 21,486<br> 90.60<br> 178.90<br> 11223.83<br> -10368.98<br> 369.05<br> 10375.54<br> 10375.55<br> 177.96<br> 1.11<br> -0.83<br> 235<br> 21,582<br> 89.90<br> 178.30<br> 11223.41<br> -10464.95<br> 371.39<br> 10471.54<br> 10471.54<br> 177.97<br> 0.96<br> -0.73<br> 236<br> 21,677<br> 89.40<br> 178.50<br> 11223.99<br> -10559.91<br> 374.05<br> 10566.53<br> 10566.54<br> 177.97<br> 0.57<br> -0.53<br> Page 8<br> <hr> <A name=22></a>CONTINENTAL RESOURCES, INC.<br> Stangeland 3-7H1<br> API 33-105-03650<br> SHL: 300' FSL &amp; 790' FWL, S6-T153N R99W<br> Williams County, North Dakota<br> BHL: 231' FSL &amp; 1165' FWL, S18-T153N-R99W<br> Williams County, North Dakota<br> Monaco Services Geologist<br> Peter J. Waldon PG3389<br> <hr> <A name=23></a>TABLE OF CONTENTS<br> Page<br> Well Data and Personnel Information<br> 3-4<br> Geologist's Summary<br> 5-11<br> Well Cross Section Views<br> 12-14<br> ROP / Time Chart<br> 15<br> Drilling Chronology<br> 16-22<br> Non-Certified<br> Directional Surveys<br> 23-28<br> 2<br> <hr> <A name=24></a>WELL DATA<br> OPERATOR:<br> CONTINENTAL RESOURCES, INC<br> WELL NAME:<br> Stangeland 3-7H1<br> API NUMBER:<br> 33-105-03650<br> SURFACE LOCATION:<br> 300' FSL &amp; 790' FWL, S6-T153N R99W<br> Williams County, North Dakota<br> 7" INTERMEDIATE CSG: 132' FNL 976' FWL, S7-T153N-R99W<br> Williams County, North Dakota<br> MD 11515' TVD 11223'<br> BOTTOM HOLE:<br> 231' FSL &amp; 1165' FWL, S18-T153N-R99W<br> Williams County, North Dakota<br> MD 21725' TVD 11225'<br> ELEVATIONS:<br> GL 2306'<br> KB 2326'<br> WELL TYPE:<br> Extended Reach Horizontal in the Three Forks FM First Bench<br> REGION:<br> Williston Basin<br> PROSPECT:<br> Williston<br> FIELD:<br> Crazy Man Creek<br> SPUD DATE:<br> September 22, 2014, Drilled Sfc. Csg. Shoe @ 22:30 Hrs.<br> TOTAL DEPTH<br> VERTICAL AND CURVE: MD 11523' TVD 11222' September 29, 2014 @ 12:05 Hrs.<br> TOTAL DEPTH<br> LATERAL:<br> MD 21725' TVD 11225' October 10, 2014 @ 19:30 Hrs.<br> CUTTINGS SAMPLING:<br> 30' samples 8950' to 11523'<br> 100' samples 11523' to TD @ 21725'<br> Lagged samples caught by Monaco personnel<br> Invert contaminated samples cleaned with PC-Citrasolve<br> HOLE SIZE:<br> 12.25" to 2423'<br> 8.75" to 11523'<br> 6.00" to 21725'<br> CASING:<br> 9 625&quot; 36# J55 STC to 2423'<br> 7.00" 32# P110 IC LTC to 11515'<br> 10820' of 4.50" 11.6# P110 BTC<br> 3<br> <hr> <A name=25></a>WELLSITE PERSONNEL INFORMATION<br> CONTINENTAL RESOURCES, INC.<br> GEOLOGIST:<br> Roko Svast<br> MONACO SERVICES<br> GEOLOGIST:<br> Peter Waldon PG3389<br> MUDLOGGING:<br> Monaco Services, Inc.<br> EQUIPMENT/TECHNOLOGY:<br> Bloodhound #5003 IR TG &amp; Chromat.<br> Monaco 2200 Electric Extractor<br> PERSONNEL:<br> Lance Erickson, Chris Scheidecker<br> DRILL CONTRACTOR:<br> Cyclone Rig 33<br> DRILLING SUPERVISORS:<br> Adam Knudson, Ian Calder<br> DRILLING FLUIDS:<br> GEO Drilling Fluids<br> MUD ENGINEER:<br> Scot Bloomfield, David Leighton<br> MWD:<br> MultiShot Energy Services<br> MWD ENGINEERS:<br> Nathan Dutton, Josh Hill<br> DIRECTIONAL:<br> MultiShot Energy Services<br> DIRECTIONAL DRILLERS:<br> Ben Matteson, Justin Klauzer<br> 4<br> <hr> <A name=26></a>GEOLOGIST'S SUMMARY<br> INTRODUCTION<br> Continental Resources, Inc. Stangeland ­Hayes ecopad is a four well location approximately<br> 6 miles southeast of Williston, North Dakota and within the boundaries of the Crazy Man<br> Creek Field. The Stangeland ­Hayes ecopad location and drilling procedures were<br> designed to allow efficient extraction of hydrocarbon resources from the Bakken and Three<br> Forks Formations lying beneath sections 6,7 and 18 of T153N, R99 and section 31 of T154N<br> R99W. Stangeland 3-7H1 was the first lateral drilled in the unit and targeted the First Bench<br> of the Three Forks Formation. Surface location coordinates are 300' FSL &amp; 790' FWL, S6-<br> T153N R99W, Williams County, North Dakota. The Stangeland ­Hayes drilling unit consists<br> the aforementioned four sections. The Stangeland 2-7H and 3-7H1 are southerly transects<br> and the Hayes 2-6H and 3-6H1 are northerly transects. All holes are planned as ~10,000'<br> laterals. The completed wells will utilize hydraulic fracturing technology to enhance their<br> petroleum yields from the Middle member of the Bakken and First Bench of the Three Forks<br> Formations. Drilling the Stangeland 3-7H1 began September 22, 2014 and the hole reached<br> total depth of 21725' on October 10, 2014.<br> 5<br> <hr> <A name=27></a>Figure 1. Map of surface location area<br> Tofte No. 1-1<br> Hayes 1-6H<br> Stangeland<br> Hayes Eco pad<br> Stangeland 3-7H1<br> Stangeland 2-7H<br> Stangeland 1-18H<br> Figure 2. Stangeland Hayes Ecopad location S6 T153N R99W<br> Initial Structural interpretation and Key Offset Wells<br> Offset Wells<br> Three nearby wells were selected as offsets for structural interpretation and as an aid to<br> accurately land the build curve for the Stangeland 3-7H1. As noted on Figure 2, they were<br> 6<br> <hr> <A name=28></a>MAPCO Production Company, Tofte No. 1-1, a vertical hole drilled to the Red River<br> Formation in 1981 and located approximately 4200'<br> northwest of the Stangeland 3-7H1.<br> Continental Resources, Hayes 1-6H, located approximately 2600' east of the Stangeland 3-<br> 7H1 and Continental Resources, Inc. Stangeland 1-18H, located approximately<br> 10500'<br> south. A TVD gamma type section of the First Bench of the Three Forks Formation was<br> modeled from data from the vertical and curve of Stangeland 3-7H1 and the Mapco Tofte<br> hole and and proved to be sufficiently accurate to successfully geosteer the lateral.<br> GEOLOGICAL EVALUATION<br> Well site geological supervision of Stangeland 3-7H1 was provided Monaco Services, Inc.,<br> with one well site Geologist and two mudloggers.<br> Monaco personnel obtained gas<br> quantification utilizing Bloodhound Unit #5003 and a Monaco System 2200 electric gas<br> extractor. WITS information was imported from the drilling rig EDR system.<br> Monaco<br> personnel caught lagged 30' samples in the vertical and curve portions of the hole and 100'<br> samples during the lateral. Cuttings from the invert mud drilled portions of the hole were<br> cleaned with PC Citrasolve. Fresh water was used to clean cuttings form the lateral portion<br> of the hole. Cleaned and graded samples were examined damp with a 3x-30x stereo<br> binocular microscope and Geoscope UV fluoroscope. Acetone was used as the solvent for<br> hydrocarbon cut evaluation. All processed samples were preserved and sent to the North<br> Dakota Geological Survey in Grand Forks, North Dakota. Gamma and survey data was<br> provided by the MultiShot MWD personnel on location.<br> TARGET ZONE IDENTIFICATION<br> The geological objective of the lateral was to remain in an 11' thick target zone in the First<br> Bench of the Three Forks Formation. The target zone is stratigraphically situated between 14'<br> and 25' beneath the base of the Lower Bakken Shale. A type section is depicted in Figure 3.<br> below.<br> FIGURE 3.<br> MWD GAMMA STANGELAND 3-7H1<br> WIRELINE GAMMA TOFTE No. 1-1<br> 7<br> <hr> <A name=29></a>DRILLING OPERATIONS<br> Vertical and Curve<br> Cyclone Rig 33 spudded the Stangeland 3-7H1 on September 22, 2014. Prior to the Cyclone<br> rig moving onto the hole, a spudding rig drilled a 12-1/4" hole with fresh water to 2423'. The<br> surface hole was isolated with 9 5/8&quot; 36# J55 STC casing and cemented to surface. A 8 ¾"<br> PDC bit, 1.83°mud motor and diesel invert mud were used to drill the vertical hole to kick off<br> point at MD 10760' in the Lodgepole Formation. Directional tools employing a 2.38°degree<br> bent assembly were used to land the build curve at MD 11523' with a projected TVD of<br> 11223' and inclination of 89.7°. 7", 32# P110 LTC intermediate casing was then run to MD<br> 11515', TVD 11223' and cemented. The Intermediate casing shoe location is 132' FNL &amp;<br> 976' FWL, S7-T153N-R99W, Williams County, North Dakota.<br> Lateral<br> Diesel invert mud used while drilling the vertical and curve portions of the hole was replaced<br> with 9.8# sodium chloride brine for the remainder of drilling operations. Two 6&quot; PDC bits and<br> 1.5° steerable motors were used to drill the lateral section. A single 10210' long southerly<br> transect was drilled in the First Bench of the Three Forks Formation on a 180°azimuth to MD<br> 21725', TVD 11225', terminating 231' north of the unit boundary hard-line near the south end<br> of Section18. The initial structural interpretation assumed relatively flat formation dip to MD<br> 16500 followed by crossing perpendicular to the axis of a subtle eastward trending local high<br> from MD 16500 to MD 19500. After crossing the subtle structural high, the formation dip was<br> anticipated to remain essentially flat to TD. Over the course of the lateral, the formation<br> dipped 4' upward resulting in an average formation dip of 90.02°.<br> FORMATION TOPS AND WELL CORRELATION<br> Tofte 1 1-R<br> Stangeland 2-H<br> Stangeland 3-H1<br> Hayes 1-6H<br> S1 T153N R100W<br> S6 T153N R99W<br> S6 T153N R99W<br> S6 T153N R99W<br> Extrapolated Depth<br> E LOG TOPS<br> E LOG TOPS<br> E LOG TOPS<br> E LOG TOPS<br> KB ELEV<br> 2313<br> Dist to KB ELEV 2326<br> KB ELEV 2326<br> Dist to land at KB Elev<br> 2391<br> Dist to<br> TVD<br> SS TVD Isopach Tgt.<br> TVD<br> SS TVD Isopach<br> TVD<br> SS TVD Isopach<br> Tgt.<br> TVD<br> SS TVD Isopach<br> Tgt.<br> Charles<br> 8885<br> -6572<br> 673<br> 2301<br> 8917<br> -6591<br> 660<br> 8931.7 -6605.7 643.3<br> 2301 11218<br> 8984<br> -6593<br> 683<br> 2300<br> BLCS<br> 9558<br> -7245<br> 201<br> 1628<br> 9577<br> -7251<br> 212<br> 9575<br> -7249<br> 216<br> 1641 11218<br> 9667<br> -7276<br> 192<br> 1617<br> Mission C<br> 9759<br> -7446<br> 589<br> 1427<br> 9789<br> -7463<br> 596<br> 9791<br> -7465<br> 592<br> 1429 11218<br> 9859<br> -7468<br> 595<br> 1425<br> Lodgepole<br> 10348<br> -8035<br> 132<br> 838<br> 10385<br> -8059<br> 114<br> 10383<br> -8057<br> 117<br> 833 11218<br> 10454<br> -8063<br> 115<br> 830<br> LP1<br> 10480<br> -8167<br> 174<br> 706<br> 10499<br> -8173<br> 166<br> 10500<br> -8174<br> 165<br> 719 11218<br> 10569<br> -8178<br> 173<br> 715<br> LP2<br> 10654<br> -8341<br> 276<br> 532<br> 10665<br> -8339<br> 289<br> 10665<br> -8339<br> 292<br> 553 11218<br> 10742<br> -8351<br> 286<br> 542<br> LP3<br> 10930<br> -8617<br> 54<br> 256<br> 10954<br> -8628<br> 63<br> 10957<br> -8631<br> 64<br> 264 11218<br> 11028<br> -8637<br> 54<br> 256<br> LP4<br> 10984<br> -8671<br> 92<br> 202<br> 11017<br> -8691<br> 96<br> 11021<br> -8695<br> 94<br> 201 11218<br> 11082<br> -8691<br> 95<br> 202<br> False Bkn<br> 11076<br> -8763<br> 9<br> 110<br> 11113<br> -8787<br> 6<br> 11115<br> -8789<br> 10<br> 105 11218<br> 11177<br> -8786<br> 9<br> 107<br> Upper Bkn<br> 11085<br> -8772<br> 20<br> 101<br> 11119<br> -8793<br> 19<br> 11125<br> -8799<br> 18<br> 99 11218<br> 11186<br> -8795<br> 17<br> 98<br> Middle Bkn<br> 11105<br> -8792<br> 20<br> 81<br> 11138<br> -8812<br> 17<br> 11143<br> -8817<br> 20<br> 80 11223<br> 11203<br> -8812<br> 20<br> 81<br> Target<br> 11125<br> -8812<br> 20<br> 61<br> 11155<br> -8829<br> 24<br> 11163<br> -8837<br> 21<br> 63 11223<br> 11223<br> -8832<br> 20<br> 61<br> Lower Bakken<br> 11145<br> -8832<br> 21<br> 41<br> 11179<br> -8853<br> 20<br> 11184<br> -8858<br> 20<br> 39 11223<br> 11243<br> -8852<br> 21<br> 41<br> Three Forks<br> 11166<br> -8853<br> 20<br> 20<br> 11199<br> -8873<br> 19<br> 11204<br> -8878<br> 20<br> 19 11223<br> 11264<br> -8873<br> 20<br> 20<br> Target<br> 11186<br> -8873<br> 0<br> 11218<br> -8892<br> 0<br> 11224<br> -8898<br> 0<br> 0 11223<br> 11284<br> -8893<br> 0<br> 8<br> <hr> <A name=30></a>LITHOLOGY AND HYDROCARBON SHOWS<br> Vertical and Curve<br> Geologic evaluation of Stangeland 3-7H1 began at MD 8950' in the Charles Formation. The<br> Base of the Last Charles Salt was encountered at MD 9575' TVD 9575' (SS TVD -7249), 2'<br> structurally high to Stangeland 2-7H and 27' structurally high to Hayes 1-6H. The Ratcliffe<br> and Midale intervals are composed of compact wackestone to mudstone with interbeds of<br> massive anhydrite. No significant hydrocarbon shows were observed while drilling through<br> the Ratcliffe and Midale intervals.<br> The top of the Mission Canyon Formation was encountered at MD 9791' TVD 9791', (SS<br> TVD -7465), 2' structurally low to Stangeland 2-7H and 3' structurally high to Hayes 1-6H.<br> Samples from the Rival interval (9791' to 9810') consisted of light gray to light graybrown<br> microcrystalline wackestone with poor to fair anhydrite occluded pinpoint vuggy porosity a<br> trace of dark brown oil stain, dull yellow fluorescence and faint milky pale yellow cut. Total<br> gas increased from 190 units to 340 units and then declined rapidly to 230 units while the<br> Rival was penetrated. It is unlikely that the Rival interval would be commercially productive<br> at this location. No other significant porous zones or gas shows were observed while drilling<br> through the Mission Canyon Formation.<br> The top of the Lodgepole Formation was encountered at MD 10383' TVD 10383' (SS TVD -<br> 8057), ), 2' structurally high to Stangeland 2-7H and 6' structurally high to Hayes 1-6H. The<br> curve was "kicked­off" at MD 10772'. Four gamma markers were selected and used to<br> calculate the curve landing point while drilling through the Lodgepole. Lodgepole samples<br> consisted of compact ARGILLACEOUS MUDSTONE with minor carbonaceous shale present<br> at the False Bakken Marker. A significant gas show from a background of 540 units to 6400<br> units was observed while drilling in the base of the Scallion Interval From MD 11170' to MD<br> 11186'. It must be noted that, the rig was broken down for 2 hours and 5 minutes at MD<br> 11178', contributing significantly to the gas show from this interval.<br> Samples from the<br> Scallion consisted tan to cream and light gray brown microcrystalline wackestone with no<br> visible porosity, spotty bright yellow fluorescence and an immediate milky yellow cut. It is<br> likely that fractures emanating vertically from the Bakken shale are the source of this<br> hydrocarbon show.<br> The Bakken Formation Upper Shale was encountered at MD 11186' TVD 11125' (SS TVD<br> -8799'), ),<br> 6' structurally low to Stangeland 2-7H and 4' structurally low to Hayes 1-6H.<br> Samples consisted of CARBONACEOUS SHALE, black, firm blocky, non calcareous, slightly<br> siltaceous in part, non fluorescent, weak milky pale yellow cut. Total gas at the top of the<br> shale was 5500 units and decreased slightly to 5000 units while the shale bed was<br> penetrated.<br> The Middle Member of the Bakken Formation was encountered at MD 11230', TVD 11143'<br> (SS TVD -8817), 5' structurally low Stangeland 2-7H and 5 structurally low Hayes 1-6H.<br> Samples observed while drilling through the Middle Member of the Bakken Formation were<br> very consistent and consisted of argillaceous to siltaceous and slightly arenaceous slightly<br> dolomitic mudstone. Weak shows with a trace of dark brown stain pale yellow fluorescence<br> and immediate pale yellow milky cut were persistent in all samples. No significant hight or<br> low gamma horizons were obvious with gamma counts ranging from 75 to 90 API. Total gas<br> was static and ranged from 1800 to 2400 units while the Middle Member of the Bakken was<br> penetrated.<br> 9<br> <hr> <A name=31></a>The Bakken Formation Lower Shale was encountered at MD 11312', TVD 11184' (SS TVD<br> -8858), ), Samples consisted of CARBONACEOUS SHALE, very dark brown to black, firm,<br> blocky, non calcareous, non fluorescent, immediate streaming pale yellow green cut. While<br> drilling through lower shale, total gas was static ranging from 2300 to 2600 units.<br> The Three Forks Formation was encountered at MD 11374', TVD 11204' (SS TVD -8878)<br> Samples observed while drilling downward through the 14 vertical feet of section above the<br> top of the First Bench consisted of ARGILLACEOUS DOLOMITE: dark brown grading to light<br> gray brown, mottled and laminated with light gray green waxy dolomitic micropyritic shale<br> interbeds. Gray and gray brown very fine sucrosic dolomite interbeds contained a trace of<br> spotty medium brown stain even very dull yellow fluorescence faint slow milky pale yellow<br> cut. Total gas was stable and slowly decreased from 2400 units to 1800 units while drilling<br> downward through the laminated upper horizons.<br> The top of the First Bench was first<br> encountered while drilling the curve at MD 11460' TVD 11220'. Samples consisted of slightly<br> arenaceous DOLOMITE: tan to light brown some cream firm fine sucrosic slightly calcareous<br> very fine arenaceous in part with a trace of spotty medium brown stain even bright pale<br> yellow fluorescence immediate milky blue white and streaming pale yellow cut. Thin local<br> waxy pale gray green dolomitic shale laminae were persistent throughout most of the first<br> bench. Total gas was variable with readings ranging from 1200 units to 2500 units. Gamma<br> values observed the somewhat laminated nature of the target zone and ranged from 110<br> counts at the top of the target to 40 units in the middle and 120 counts at the Internal One<br> Marker. 7" intermediate casing was set in the First Bench of the Three Forks Formation at<br> MD 11515', TVD 11223, (SSTVD -8897)' with a projected inclination of 89.7°.<br> TARGET ZONE IDENTIFICATION IN THE LATERAL<br> The Target Zone within the Three Forks consists of a 11' thick Primary Low Gamma Target<br> beginning 14' beneath the base of the Lower Bakken Shale. Lithology within the target was<br> consistent over the course of the lateral, when samples were available. Target lithology was<br> observed to be SLIGHTLY ARENACEOUS SLIGHTLY CALCAREOUS DOLOMITE ­ very<br> light to light brown and cream, firm to sub-hard very fine sucrosic, very fine arenaceous in<br> part, trace intercrystalline porosity, even moderately bright pale yellow to yellow green<br> fluorescence, scattered medium to dark brown oil stain, slow milky pale yellow green cut.<br> The center of the target was evidenced by gamma counts from 42 to 50 API. Lithology above<br> the target zone was observed to be highly laminated ARGILLACEOUS DOLOMITE light gray<br> brown, mottled and laminated with light gray green waxy dolomitic micro-pyritic shale<br> interbeds. Gray and gray brown very fine sucrosic dolomite interbeds contained a trace of<br> spotty medium brown stain even very dull yellow fluorescence faint slow milky pale yellow<br> cut. Gamma counts from the upper laminated fascies ranged from 100 to 110 and reflected<br> the thinly bedded nature of the fascies. The Internal 1 Marker was briefly and intentionally<br> contacted 4 times to provide accurate formation dip during the lateral. Samples from the<br> internal 1 consisted ARGILLACEOUS DOLOMITE, light gray firm to sub-hard very fine<br> sucrosic tight moderately argillaceous with no visible hydrocarbon shows. Gamma counts<br> were observed to increase rapidly to 120 counts, clearly differentiating the bottom of the<br> target zone from the top of the target zone<br> LATERAL OIL AND GAS SHOWS<br> Oil and gas shows observed in the samples when the well path was in the target zone were<br> consistent over the course of the lateral. There were no obvious shows of oil in the drilling<br> mud or gas flares during the lateral and no obviously fractured intervals were observed.<br> Mud gas increased in a somewhat linear relationship to the holes VS, beginning at 500 units<br> and increasing to approximately 3500 units near the end of the lateral.<br> 10<br> <hr> <A name=32></a>LATERAL DRILLING OBSERVATIONS AND GEOSTEERING<br> Diesel invert mud used while drilling the vertical curve portions of the hole was displaced with<br> d 9.8# sodium chloride brine for the lateral. Two trips were required during the drilling of the<br> lateral.<br> The first, a short trip at MD 13014 into the intermediate casing to allow wireline<br> retrieval of a failed MWD tool. The second trip at MD 20885 for a new bit and motor. Upon<br> exiting the 7" casing shoe at MD 11515', steering procedures were executed to evaluate all of<br> the discrete lithologic horizons in the First Bench of the Three Forks Formation. No single<br> horizon within the target appeared to display a favorable advantage with respect to oil shows<br> or rate of penetration. From MD 19700' to TD cuttings were heavily contaminated with drilling<br> lube and challenging to evaluate. Steering response was adequate to achieve targets for the<br> entire length of the lateral. Structural interpretation indicates a nearly flat formation dip of<br> 89.9° from the 7" casing shoe to approximately MD 16000'.<br> From MD 16000' to<br> approximately MD 18500' the formation rose upward approximately 14 vertical feet resulting<br> in a local dip of 90.32°. From MD 18500' to TD at MD 21725 the formation gradually fell 11'<br> vertically resulting in a local dip of 89.8°. TD. Over the course of the lateral, the formation<br> rose 4' upward resulting in an average formation dip of 90.02°. The 6" bore exposed 10210<br> lineal feet of hole through the First Bench of the Three Forks Formation. While drilling the<br> lateral, the BHA was slid 1563' (8%). The bore remained in the target zone for 7224' (63%)<br> of the lateral.<br> LATERAL STATISTICS<br> Stangeland 3-<br> 7H1<br> Total Lateral Footage<br> 10210<br> Target Zone Thickness<br> 11<br> Footage in Target<br> 7224<br> Average Background Gas<br> 1815 U<br> Lateral Slide Feet<br> 1563<br> Total Slide Time %<br> 8<br> Total Slide Depth %<br> 15<br> CONCLUSIONS<br> Oil shows observed while drilling Stangeland 3-7H1 were fair with a spotty oil stain<br> persistently present in the arenaceous to silty dolomite of all target zone samples. Mud gas<br> shows climbed steadily as the laterals vertical section increased, indicative of the very low<br> permeability of the formation. Subsurface structural control, utilizing data from nearby Middle<br> Bakken laterals was adequate to land the curve and geosteer the lateral. The lateral was<br> drilled with a 2 BHA's. Trip gas of 5500 units after running the 4 ½" liner is a positive<br> indication of hydrocarbons. Stangeland 3-7H1 will be completed with a multi-stage fracture<br> stimulation after which its production potential will be revealed.<br> 11<br> <hr> <A name=33></a>Figure 4.<br> As depicted in Fig. 4, the well path exited the intermediate casing shoe in the target zone.<br> Steering inputs were utilize to halt<br> and reverse the well bore's downward trajectory and begin evaluation of the target zone<br> <hr> <A name=34></a>.<br> Figure 5.<br> As depicted in Fig.5, the base of the target zone was contacted once times by MD 16500'. Formation dip was calculated at<br> 89.99°for this portion of the lateral. Figure 5 also indicates the beginning of the subtle eastward trending local high'. It became<br> apparent by the mid point of the lateral, MD 17000'; there was no specific horizon that was obviously more favorable with<br> respect to hydrocarbon shows or rate of penetration.<br> 13<br> <hr> <A name=35></a>Figure 6.<br> Fig. 6, accurately depicts the subtle rolling structure that was traversed. Accurate formation dip was verified using intentional<br> contact with the base of the target zone four times over the course od the lateral depicted in Fig. 6. Accurate formation dip<br> over the entire lateral should allow drilling the subsequent Stangeland 2-7H with increased efficiency.<br> <hr> <A name=36></a>INTERPRETIVE CROSS SECTION<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 5<br> 0<br> 1<br> 1<br> 2<br> 2<br> 3<br> 3<br> 4<br> 4<br> 5<br> 5<br> 6<br> 6<br> 7<br> 7<br> 8<br> 8<br> 9<br> 9<br> 0<br> 0<br> 1<br> 1<br> 2<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> MD<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 2<br> 2<br> 2<br> 2<br> 2<br> 11140<br> 3000<br> 7&quot; CASING SHOE<br> Bottom Hole Location:<br> 11150<br> Wellbore<br> Lower Bakken Shale<br> Three Forks Top<br> Target Zone Top<br> Target Zone Bottom<br> Internal 1<br> Casing Point<br> Trips<br> N<br> LOCATION: MD 11515'<br> TD<br> Targets<br> Daily Footage<br> BH Temperature<br> MD 21725' TVD 11224.5'<br> S<br> 11160<br> Diff. Pressure<br> TVD 11223' (-8897)<br> 230.7' FSL 1165' FWL<br> 2500<br> 11170<br> 132' FNL 976' FWL<br> Stangeland 3-7H1 S6 T153N R99W, WILLIAMS CO. ND<br> S18-T153-R99W<br> si<br> 11180<br> S7-T153-R99W<br> 1853<br> 90.26<br> 90.03<br> 89.69<br> 89.74<br> 2000<br> 11190<br> 89.90<br> 1557<br> 89.93<br> /°f/p<br> 90.49<br> 1462<br> e<br> 11200<br> 1383<br> 89.99<br> g<br> D<br> 89.72<br> 150ta0<br> 11210<br> VT<br> o<br> 1061<br> 1078<br> oF<br> 11220<br> 827<br> ily<br> 745<br> 1000<br> 11230<br> aD<br> Estimated Dip: 90.00<br> 494<br> 11240<br> 376<br> 11250<br> 0500<br> 129<br> 11260<br> 11270<br> 0000<br> 62% IN Target<br> 8% Slide/27.21 Hrs. Sliding<br> 150<br> 0015<br> Gamma Ray<br> Torque<br> ts125<br> nu100<br> f<br> o<br> 0010<br> CI 75<br> f-lb<br> P<br> k<br> A 50<br> 0005<br> 25<br> 0<br> 0000<br> 400<br> 0150<br> ROP<br> WOB<br> Rotary<br> 300<br> m<br> 2r00<br> 0100<br> 100<br> ft/h<br> s/rp<br> 0<br> 005lb0<br> k<br> -100<br> -200<br> 0000<br> 3000<br> TG<br> C1<br> C2<br> C3<br> C4<br> C5<br> Mud Weight<br> 10.0<br> 2s)500<br> a<br> l<br> 2<br> 9.8a<br> (g000<br> 1500<br> 9.6<br> its<br> s/g<br> 1n000<br> 9.4lb<br> U500<br> 9.2<br> 0<br> 9.0<br> 100<br> 1.0<br> Wh<br> Bh<br> Ch<br> 75<br> h<br> h<br> C<br> /Bh 50<br> 0.5<br> W 25<br> 0<br> 0.0<br> 15<br> <hr> <A name=37></a>ROP / TIME CHART<br> DATE<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 4<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> 0<br> 1<br> 2<br> 1<br> 2<br> 3<br> 4<br> 5<br> 6<br> 7<br> 8<br> 9<br> 0<br> /1<br> /2<br> /3<br> /4<br> /5<br> /6<br> /7<br> /8<br> /9<br> /1<br> /1<br> /1<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /2<br> /3<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 0<br> 9<br> 9<br> 9<br> 9<br> 9<br> 9<br> 9<br> 9<br> 9<br> 9<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 1<br> 0<br> 5000<br> 10000<br> HTPED<br> 15000<br> 20000<br> 16<br> <hr> <A name=38></a>DAILY DRILLING CHRONOLOGY<br> Date<br> Depth<br> Begin<br> End<br> Activity<br> Time<br> Time<br> 21-<br> 2245<br> 0<br> 3<br> WALK RIG TO NEW WELL PAD<br> Sep<br> 3<br> 5.5<br> RIG UP MUD LINES, PASON LINES, CATWALK, FLOW<br> LINE,SIUTCASES, WTR &amp; AIR LINES<br> GERONIMO LINE , SLOW DESENT LINE<br> 5.5<br> 6<br> NIPPLE UP B.O.P.<br> 6<br> 9.5<br> NIPPLE UP B.O.P. FINNISH NIPPLE UP BOP- RIG UP FLOW LINE, RE-<br> WELD CHOKE LINE<br> CENTER BOP TO RIG,<br> 9.5<br> 11<br> PRE SPUD WALK AROUND INSPECTUIION<br> 11<br> 15<br> TEST B.O.P. - PIPE RAMS, HCR, MID KILL, IMV, INSIDE KILL, TIW, 250<br> LOW 5000 PSI<br> HELD 10 MINS EACH WAY, ANN 250 LOW 2500 PSI HELD 10 MIN, BLIND<br> RAMS, OUTSIDE<br> MANIFOLD, INSIDE MANIFOLD, KILL VALVE, 250 LOW 5000 HIGH, HELD<br> 10 MIN, ACC<br> FUNCTION TEST, CASING TEST 1500 30 MIN.<br> 15<br> 15<br> INSTALL WEAR BUSHING<br> 15<br> 16<br> DIR. WORK - P/U AND M/U DIR TOOLS<br> 16<br> 18<br> TRIPS - RIH / 98' TO 2245'<br> 22-<br> 6347<br> 18<br> 20<br> SLIP &amp; CUT DRILL LINE<br> Sep<br> 20<br> 20<br> LUBRICATE BLOCKS &amp;TOPDRIVE<br> 20<br> 23<br> DRILL CEMT &amp; FLOAT COLLAR @ 2339 DRILL SHOE TRACK AND SHOE<br> @2384<br> DRILL 10' OF NEW HOLE FIT TO 236 PSI EMW 11.5 LB PER GAL @ 239<br> 23<br> 6<br> DRILL F/ 2395 TO 3761<br> 6<br> 13<br> DRILL ACTUAL F/ 3761' TO 5557'<br> 13<br> 14<br> LUBRICATE RIG TOP DRIVE, BLOCKS AND CROWN, FUNCTION HCR 3<br> SEC TO CLOSE<br> 14<br> 18<br> DRILL ACTUAL F /5557' TO 6347'<br> 23-<br> 6947<br> 18<br> 22<br> DRILL F/6247 TO 6633<br> Sep<br> 22<br> 22<br> CURCULATE TO TOOH<br> 22<br> 1.5<br> FLOW CHECK, PUMP DRY JOB &amp; TOOH<br> 1.5<br> 3.5<br> SWAP OUT BIT &amp; MOTOR, ORIENT &amp; SCRIBE, SURFCE TEST MWD &amp;<br> MOTOR<br> FUNCTION BLIND RAMS ON BANK<br> 3.5<br> 4<br> SERVICE TOPDRIVE, CLEAN UP FLOOR<br> 4<br> 6<br> TROUBLE SHOOT TOP DRIVE -BAD ETHERNET CORD<br> FUNCTION CROWN &amp; FLOOR SAVER (JH)<br> 6<br> 10<br> TOP Drive WAIT ON ETHERNET CABLE -AND TOP DRIVE HAND,<br> 10<br> 11<br> LUBRICATE RIG - TOP DRIVE AND BLOCKS FUNCTION HCR 3 SEC TO<br> CLOSE<br> 11<br> 15<br> TRIPS - RIH F/ 98' TO 6636'<br> 15<br> 18<br> DRILL ACTUAL F/ 6636' TO 6947'<br> 24-<br> 8157<br> 18<br> 1.5<br> DRILL F/6947 TO 7358<br> Sep<br> 1.5<br> 2<br> LUBRICATE BLOCKS &amp; TOP DRIVE FUNCTION TIW VALVE &amp;<br> ANNULAR<br> 17<br> <hr> <A name=39></a>2<br> 6<br> DRILL F/ 7358 TO 7642<br> 6<br> 17<br> DRILL ACTUAL F/ 7642' TO 8115'<br> 17<br> 17<br> LUBRICATE RIG - TOP DRIVE AND BLOCKS, FUNCTION PIPE RAMS 5<br> SEC TO CLOSE<br> 17<br> 18<br> DRILL ACTUAL F/ 8115' TO 8157'<br> 25-<br> 9283<br> 18<br> 2.5<br> DRILL F/ 8157' TO 8590'<br> Sep<br> 2.5<br> 3<br> LUBRICATE BLOCKS &amp; TOP DRIVE<br> 3<br> 6<br> DRILL F/ 8590' TO 8716'<br> 6<br> 16<br> DRILL ACTUAL F/ 8716' TO 9157'<br> 16<br> 16<br> LUBRICATE RIG - TOP DRIVE, BLOCKS &amp; CROWN FUNCTION HCR 3<br> SEC TO CLOSE<br> 16<br> 18<br> DRILL ACTUAL / 9157' TO 9283'<br> 26-<br> 9508<br> 18<br> 20<br> DRILL F/ 9283 TO 9346<br> Sep<br> 20<br> 5<br> TRIP OUT OF THE HOLE, BACK REAM 9346'-8800' AND 5146'-5055'<br> 5<br> 6<br> LAID DOWN DIR TOOLS<br> 6<br> 6.5<br> CLEAN RIG FLOOR<br> 6.5<br> 7.5<br> DIR. WORK - P/U AND M/U DIR TOOLS AND TEST<br> 7.5<br> 8<br> TRIPS RIH F/ 98' TO 1089'<br> 8<br> 9.5<br> HELD SAFETY STAND DOWN<br> 9.5<br> 13<br> TRIPS - CONTINUE RIH F/ 1089' TO 8932'<br> 13<br> 15<br> REAMING F/ 8932' TO 9345'<br> 15<br> 17<br> DRILL ACTUAL F/ 9345' TO 9439'<br> 17<br> 17<br> LUBRICATE RIG TOP DRIVE AND BLOCKS FUNCTION PIPE RAMS 5<br> SEC TO CLOSE<br> 17<br> 18<br> DRILL ACTUAL F/ 9439' TO 9508'<br> 27-<br> 10760<br> 18<br> 0<br> DRILL F/ 9508 TO9723<br> Sep<br> 0<br> 0.5<br> LUBRICATE BLOCKS &amp; TOP DRIVE FUNCTION ANNULAR<br> 0.5<br> 6<br> DRILL F/ 9723 TO 10102.79<br> 6<br> 17<br> DRILL ACTUAL F/ 10102' TO 10481'<br> 17<br> 17<br> LUBRICATE RIG TOP DRIVE, BLOCKS AND CROWN FUNCTION HCR 3<br> SEC TO CLOSE<br> 17<br> 18<br> DRILL ACTUAL F 10481' TO 10540'<br> 28-<br> 10899<br> 18<br> 23<br> DRILL F/ 10540 10760<br> Sep<br> 23<br> 24<br> CIRCULATE<br> 24<br> 0<br> LUBRICATE BLOCKS &amp; TOP DRIVE<br> 0<br> 5<br> TOOH<br> 5<br> 6<br> LAY DOWN DIRECTIONAL TOOLS<br> 6<br> 6.5<br> LAY DOWN DIRECTIONAL TOOLS AND DRAIN MOTOR, LAY DOWN BIT<br> 6.5<br> 8<br> PICK UP DIRECTIONAL TOOLS AND TEST MWD &amp; MUD MOTOR<br> 8<br> 15<br> TRIP IN HOLE F/ 98' TO 10760'<br> 15<br> 17<br> DRILL CURVE F/ 10760' TO 10867'<br> 17<br> 18<br> LUBRICATE RIG TOP DRIVE AND BLOCKS, FUNCTION HCR 3 SEC TO<br> CLOSE<br> 18<br> 18<br> DRILL CURVE F/ 10867' TO 10899'<br> 29-<br> 11515<br> 18<br> 0.5<br> DRILL F/ 10899 TO 11174<br> Sep<br> 0.5<br> 1<br> LUBRICATE RIG - GREASE TD ( FUNCTION PIPE RAMS )<br> 1<br> 2.5<br> REPAIR RIG - DRYING SHAKERS SHORTED OUT ELEC PLUG<br> 2.5<br> 6<br> DRILL F/ 11174 TO 11278<br> 6<br> 12<br> DRILL ACTUAL F/11278 T/11515 T/D<br> 18<br> <hr> <A name=40></a>12<br> 13<br> CIRCULATE<br> 13<br> 14<br> SHORT TRIP 9 STANDS TO TOP OF CURVE<br> 14<br> 15<br> T.I.H 9 STD<br> 15<br> 17<br> CIRCULATE HOLE CLEAN<br> 17<br> 18<br> L/D 5''DP<br> 30-<br> 11515<br> 18<br> 22<br> PJSM - LDDP<br> Sep<br> 22<br> 22<br> CHANGE OUT DIES ON WR-80<br> 22<br> 4<br> LDDP &amp; HWDP<br> 4<br> 4.5<br> DIR. WORK - L/D ALL TOOLS<br> 4.5<br> 5<br> PULL WEAR BUSHING<br> 5<br> 5.5<br> CLEAN FLOOR<br> 5.5<br> 6<br> LUBRICATE RIG, GREASE TOPDRIVE, BLKS, CROWN<br> 6<br> 7<br> HOLD SAFETY MEETING RIG UP CASING CREW<br> 7<br> 18<br> MAKE UP SHOE FLOAT EQ RUN CASING 249 JTS 7\ LTC 32# P-110&quot;<br> 1-Oct<br> 11515<br> 18<br> 19<br> LAND CASING WITH LANDING JT<br> 19<br> 21<br> CIRCULATE CASING WITH RIG<br> 21<br> 0.5<br> PJSM - SHUT DOWN &amp; R/U CEMENT HEAD<br> CEMENT 7\ CASING - TEST LINES 6500<br> LEAD CMT 238 BBL 11.8#, TAIL CMT 151 BBL 15.6#, DROP PLUG<br> DISPLACE H2O 411 BBL, BUMP PLUG &amp; CHECK FLOATS<br> 0.5<br> 1<br> R/D CEMENTERS<br> 1<br> 3.5<br> FLUSH STACK, BACK OUT OF LANDING JT, SET &amp; TEST PACK OFF TO<br> 5K 15 MIN<br> 3.5<br> 4.5<br> L/D CASING BUDDY BAILS, SLIPS &amp; ELEVATORS - SET BIT GUIDE IN<br> WELL HEAD<br> 4.5<br> 6<br> CHANGE OUT SAVER SUB TO XT-39, INSTALL 4\ ELEVATORS<br> FILL MUD TANKS WITH SALT WATER<br> TEST CROWN/FLOOR SAVER ( JT ) (WS)<br> BOP DRILL TIME 2:00<br> 6<br> 8.5<br> CHANGE SHAKER SCREENS RACK STRAP 4''DP INSTALL STABING<br> GUIDES,ELEVATORS<br> FINISH TRANSFERRING SALT WATER TO MUD TANKS<br> 8.5<br> 9.5<br> DIR. WORK MAKE UP BIT MOTOR SLICKS MWD XO<br> 9.5<br> 18<br> T.I.H PICKING UP 4'' XT-39 DP<br> 2-Oct<br> 12299<br> 18<br> 20<br> P/U 4\ DP TO 9000' - INSTALL ROT ROBBER &amp; FILLL PIPE&quot;<br> 20<br> 21<br> CUT OFF DRILLING LINE - 15 RAPS 117'<br> 21<br> 1<br> P/U 4\ DP TO 11342 - FILL PIPE &amp; TAG @ 11365&quot;<br> 1<br> 1.5<br> PICK UP SPACE OUT SHUT IN - CASING TEST TO 1500 PSI FOR 30<br> MIN<br> 1.5<br> 2.5<br> DRILL OUT FLOAT@ 11435, CEMENT &amp; SHOE@ 11515<br> 2.5<br> 3<br> DRILL 10' NEW HOLE 11515 TO 11525 PICK UP SPACE OUT - FIT 875<br> PSI @ EMW 11.5<br> 3<br> 6<br> DRILL F/ 11525 TO 11712<br> 6<br> 17<br> DRILL ACTUAL F/11712 T/12263<br> 17<br> 18<br> LUBRICATE RIG<br> 18<br> 18<br> DRILL ACTUAL F/12263 T/12299<br> 3-Oct<br> 13014<br> 18<br> 2.5<br> DRILL F/ 12299 TO 13014<br> 2.5<br> 3<br> LUBRICATE RIG - GREASE TD ( FUNCTION PIPE RAMS )<br> 3<br> 3.5<br> TRIP OUT 7 STDs TO 12361<br> 3.5<br> 4<br> TROUBLE SHOOT MWD ( GAMMA )<br> 4<br> 5<br> TRIP OUT 20 STDs TO 10489<br> 5<br> 6<br> CIRCULATE - WAIT ON WIRE LINE<br> 19<br> <hr> <A name=41></a>6<br> 9.5<br> Directional Tool Failure WAIT ON WIRE LINE MACHINE<br> 9.5<br> 14<br> PULL MWD INSTALL NEW MWD USING WIRELINE MACHINE<br> 14<br> 15<br> T.I.H F/10489' TO 12361'<br> 15<br> 18<br> RE-LOG GAMMA F/12361' TO 13014'<br> 4-Oct<br> 14700<br> 18<br> 19<br> DIR. WORK - RELOG GAMMA F/ 12888 TO 13014<br> 19<br> 4<br> DRILL F/ 13014 TO 13691<br> 4<br> 4.5<br> LUBRICATE RIG - GREASE TD ( FUNCTION ANNULAR )<br> 4.5<br> 6<br> DRILL F/ 13691 TO 13787<br> 6<br> 14<br> DRILL ACTUAL F/13787 T/14453<br> 14<br> 15<br> LUBRICATE RIG, GREASED TOPDRIVE, BLKS, CROWN<br> 15<br> 18<br> DRILL ACTUAL F/14453 T/14700<br> 5-Oct<br> 16308<br> 18<br> 0<br> DRILL F/ 14700 TO 15222<br> 0<br> 0.5<br> LUBRICATE RIG - GREASE TD ( FUNCTION PIPE RAMS )<br> 0.5<br> 6<br> DRILL F/ 15222 TO 15645<br> 6<br> 16<br> DRILL ACTUAL F/15645 T/16275<br> 16<br> 17<br> LUBRICATE RIG, GREASE TOPDRIVE, BLKS , CROWN<br> 17<br> 18<br> DRILL ACTUAL F/16275 T/16308<br> 6-Oct<br> 17903<br> 18<br> 0.5<br> DRILL F/ 16308 TO 16851<br> 0.5<br> 1<br> LUBRICATE RIG - GREASE TD ( FUNCTION ANNULAR )<br> 1<br> 6<br> DRILL F/ 16851 TO 17200<br> 6<br> 16<br> DRILL ACTUAL F/17200 T/17709<br> 16<br> 16<br> LUBRICATE RIG<br> 16<br> 18<br> DRILL ACTUAL F/17709 T/17903<br> 7-Oct<br> 19121<br> 18<br> 1<br> DRILL F/ 17903 TO 18286<br> 1<br> 1.5<br> LUBRICATE RIG - GREASE TD ( FUNCTION ANNULAR )<br> 1.5<br> 6<br> DRILL F/ 18286 TO 18700<br> 6<br> 16<br> DRILL ACTUALF/18700 T/19121<br> 16<br> 16<br> LUBRICATE RIG<br> 16<br> 18<br> TROUBLE SHOOT DRAWWORKS COM PROB<br> 8-Oct<br> 20676<br> 18<br> 19<br> TROUBLE SHOOT DRAWWORKS COM<br> 19<br> 2<br> DRILL F/ 19121 TO 19532<br> 2<br> 2.5<br> LUBRICATE RIG - GREASE TD ( FUNCTION PIPE RAMS )<br> 2.5<br> 6<br> DRILL F/ 19532 TO 19705<br> 6<br> 17<br> DRILL ACTUAL F/19705 T/20201<br> 17<br> 17<br> LUBRICATE RIG<br> 17<br> 18<br> DRILL ACTUAL F/20201 T/20297<br> 9-Oct<br> 20885<br> 18<br> 2<br> DRILL F/ 20297 TO 20676<br> 2<br> 2.5<br> LUBRICATE RIG - GREASE TD ( FUNCTION ANNULAR )<br> 2.5<br> 6<br> DRILL F/ 20676 TO 20790<br> 6<br> 9.5<br> DRILL ACTUAL F/20790 T/20885<br> 9.5<br> 17<br> TRIP OUT F/ MTR &amp; BIT<br> 17<br> 18<br> DIR. WORK<br> LAY DWN MTR UBHO SUB<br> 10-Oct<br> 21725<br> 18<br> 19<br> DIR. WORK - L/D UBHO, FLOAT SUB, BIT &amp; MTR - P/U NEW SCRIBE<br> TOOLS &amp; TEST<br> 19<br> 3.5<br> TRIP IN HOLE FILLING PIPE AS NEEDED - INSTALL ROT RUBBER @<br> SHOE<br> 3.5<br> 4.5<br> WASH 120 TO BOTTOM F/ 20765 TO 20885<br> 4.5<br> 6<br> DRILL F/ 20885 TO 20910<br> 6<br> 16<br> DRILL ACTUAL F/20910 T/21340<br> 16<br> 16<br> LUBRICATE RIG<br> 16<br> 18<br> DRILL ACTUAL F/21340 T/21548<br> 11-Oct<br> 21725<br> 18<br> 20<br> DRILL F/ 21548 TO 21725 ( TD )<br> 20<br> 21<br> SHORT TRIP 10 STDs TO 20771<br> 20<br> <hr> <A name=42></a>21<br> 21<br> LUBRICATE RIG - GREASE TD &amp; CROWN ( FUNCTION PIPE RAMS )<br> 21<br> 23<br> CIRCULATE - PUMP &amp; SPOT LUBE IN LATERAL<br> 23<br> 6<br> FLOW CHECK - TRIP OUT TO RUN LOGS &amp; CASING ( DROP RABBIT &amp;<br> SLM )<br> 6<br> 6.5<br> TRIP OUT RUN LOGS &amp; CASING<br> 6.5<br> 7.5<br> DIR. WORK ,LAY DWN BIT MOTOR RACK BACK MONELS<br> 7.5<br> 8<br> PULL WEAR BUSHING<br> 8<br> 18<br> HLD SAFETY MEETING RIG UP LOGGERS RUN WIRELINE LOGS<br> 12-Oct<br> 21725<br> 18<br> 19<br> R/D LOGERS<br> 19<br> 19<br> PJSM - R/U CASING<br> 19<br> 5<br> MAKE UP SHOE &amp; FLOATS - RUN CASING 4.5\ 11.6# 246 JOINTS &amp; 39<br> PACKERS&quot;<br> 5<br> 5.5<br> P/U HANGER, BUMPER SUB &amp; 1 STD OF HWDP<br> 5.5<br> 6<br> R/D CASING CREW<br> 6<br> 12<br> TRIP IN HOLE WITH LINER<br> 12<br> 16<br> CIRCULATE BOTTOMS UP,CIRC,FRESH WATER INTO LAT 196 BBLS<br> FRESH WATER<br> 16<br> 18<br> DROP BALL, HANG LINER, STING OUT AND PRESSURE TEST LINER<br> TOP TO 3000PSI/30MIN<br> 18<br> 18<br> DISPLACE ,7'' CASING WITH SALT WATER 330BBLS<br> 21<br> <hr> <A name=43></a>NON-CERTIFIED FIELD DIRECTIONAL SURVEYS<br> Tool<br> MD<br> INC<br> AZI<br> CL<br> TVD<br> VS<br> Coordinates<br> Closure<br> DLS<br> Build<br> Walk<br> BRN<br> Rate<br> Rate<br> No.<br> Type<br> (ft)<br> (°)<br> (°)<br> (ft<br> (ft)<br> (ft)<br> N/S (ft)<br> E/W (ft)<br> Dist (ft)<br> Ang (°)<br> (°/100'<br> (°/100')<br> (°/100')<br> (°/100'<br> )<br> )<br> )<br> 0<br> TIE-IN<br> 2328<br> 0.50<br> 284.50<br> 2327.95<br> 0.78<br> -0.93<br> -4.44<br> 1<br> MWD<br> 2384<br> 0.70<br> 22.90<br> 56<br> 2383.95<br> 0.55<br> -0.55<br> S<br> -4.54<br> W<br> 4.58<br> 263.05<br> 1.64<br> 0.36<br> -467.1<br> 0.64<br> 2<br> MWD<br> 2479<br> 1.00<br> 50.10<br> 95<br> 2478.94<br> -0.51<br> 0.51<br> N<br> -3.68<br> W<br> 3.72<br> 277.93<br> 0.52<br> 0.32<br> 28.6<br> 0.64<br> 3<br> MWD<br> 2575<br> 0.80<br> 43.70<br> 96<br> 2574.93<br> -1.53<br> 1.53<br> N<br> -2.58<br> W<br> 3.00<br> 300.78<br> 0.23<br> -0.21<br> -6.7<br> 0.65<br> 4<br> MWD<br> 2669<br> 1.00<br> 53.10<br> 94<br> 2668.91<br> -2.50<br> 2.50<br> N<br> -1.47<br> W<br> 2.90<br> 329.62<br> 0.26<br> 0.21<br> 10.0<br> 0.66<br> 5<br> MWD<br> 2763<br> 1.00<br> 34.20<br> 94<br> 2762.90<br> -3.67<br> 3.67<br> N<br> -0.35<br> W<br> 3.69<br> 354.56<br> 0.35<br> 0.00<br> -20.1<br> 0.67<br> 6<br> MWD<br> 2858<br> 0.80<br> 45.10<br> 95<br> 2857.89<br> -4.83<br> 4.83<br> N<br> 0.59<br> E<br> 4.86<br> 6.92<br> 0.28<br> -0.21<br> 11.5<br> 0.68<br> 7<br> MWD<br> 2953<br> 0.80<br> 19.00<br> 95<br> 2952.88<br> -5.92<br> 5.92<br> N<br> 1.27<br> E<br> 6.06<br> 12.12<br> 0.38<br> 0.00<br> -27.5<br> 0.68<br> 8<br> MWD<br> 3048<br> 0.90<br> 28.60<br> 95<br> 3047.87<br> -7.20<br> 7.20<br> N<br> 1.84<br> E<br> 7.44<br> 14.37<br> 0.18<br> 0.11<br> 10.1<br> 0.69<br> 9<br> MWD<br> 3143<br> 1.00<br> 6.50<br> 95<br> 3142.86<br> -8.68<br> 8.68<br> N<br> 2.30<br> E<br> 8.98<br> 14.81<br> 0.40<br> 0.11<br> -23.3<br> 0.70<br> 10<br> MWD<br> 3237<br> 1.20<br> 10.80<br> 94<br> 3236.84<br> -10.46<br> 10.46<br> N<br> 2.57<br> E<br> 10.78<br> 13.82<br> 0.23<br> 0.21<br> 4.6<br> 0.70<br> 11<br> MWD<br> 3332<br> 1.30<br> 5.70<br> 95<br> 3331.82<br> -12.51<br> 12.51<br> N<br> 2.87<br> E<br> 12.84<br> 12.90<br> 0.16<br> 0.11<br> -5.4<br> 0.71<br> 12<br> MWD<br> 3426<br> 0.20<br> 251.50<br> 94<br> 3425.81<br> -13.52<br> 13.52<br> N<br> 2.82<br> E<br> 13.81<br> 11.77<br> 1.48<br> -1.17<br> 261.5<br> 0.73<br> 13<br> MWD<br> 3521<br> 0.50<br> 251.20<br> 95<br> 3520.81<br> -13.34<br> 13.34<br> N<br> 2.27<br> E<br> 13.53<br> 9.65<br> 0.32<br> 0.32<br> -0.3<br> 0.74<br> 14<br> MWD<br> 3615<br> 0.10<br> 246.50<br> 94<br> 3614.80<br> -13.17<br> 13.17<br> N<br> 1.80<br> E<br> 13.29<br> 7.80<br> 0.43<br> -0.43<br> -5.0<br> 0.75<br> 15<br> MWD<br> 3711<br> 0.20<br> 338.30<br> 96<br> 3710.80<br> -13.29<br> 13.29<br> N<br> 1.66<br> E<br> 13.40<br> 7.14<br> 0.24<br> 0.10<br> 95.6<br> 0.76<br> 16<br> MWD<br> 3805<br> 0.10<br> 12.70<br> 94<br> 3804.80<br> -13.53<br> 13.53<br> N<br> 1.62<br> E<br> 13.62<br> 6.84<br> 0.14<br> -0.11<br> -346.4<br> 0.77<br> 17<br> MWD<br> 3901<br> 0.40<br> 352.90<br> 96<br> 3900.80<br> -13.94<br> 13.94<br> N<br> 1.60<br> E<br> 14.03<br> 6.54<br> 0.32<br> 0.31<br> 354.4<br> 0.78<br> 18<br> MWD<br> 3994<br> 0.30<br> 291.70<br> 93<br> 3993.80<br> -14.35<br> 14.35<br> N<br> 1.33<br> E<br> 14.41<br> 5.31<br> 0.39<br> -0.11<br> -65.8<br> 0.79<br> 19<br> MWD<br> 4089<br> 0.10<br> 333.90<br> 95<br> 4088.80<br> -14.52<br> 14.52<br> N<br> 1.07<br> E<br> 14.56<br> 4.20<br> 0.25<br> -0.21<br> 44.4<br> 0.80<br> 20<br> MWD<br> 4183<br> 0.10<br> 305.80<br> 94<br> 4182.80<br> -14.64<br> 14.64<br> N<br> 0.96<br> E<br> 14.67<br> 3.76<br> 0.05<br> 0.00<br> -29.9<br> 0.81<br> 21<br> MWD<br> 4278<br> 0.30<br> 232.80<br> 95<br> 4277.80<br> -14.54<br> 14.54<br> N<br> 0.70<br> E<br> 14.56<br> 2.75<br> 0.30<br> 0.21<br> -76.8<br> 0.82<br> 22<br> MWD<br> 4373<br> 0.20<br> 291.10<br> 95<br> 4372.80<br> -14.45<br> 14.45<br> N<br> 0.34<br> E<br> 14.45<br> 1.37<br> 0.27<br> -0.11<br> 61.4<br> 0.83<br> 23<br> MWD<br> 4468<br> 0.40<br> 258.20<br> 95<br> 4467.80<br> -14.44<br> 14.44<br> N<br> -0.13<br> W<br> 14.44<br> 359.47<br> 0.27<br> 0.21<br> -34.6<br> 0.84<br> 24<br> MWD<br> 4562<br> 0.10<br> 271.50<br> 94<br> 4561.80<br> -14.38<br> 14.38<br> N<br> -0.54<br> W<br> 14.39<br> 357.86<br> 0.32<br> -0.32<br> 14.1<br> 0.86<br> 25<br> MWD<br> 4655<br> 0.30<br> 282.00<br> 93<br> 4654.80<br> -14.43<br> 14.43<br> N<br> -0.86<br> W<br> 14.45<br> 356.60<br> 0.22<br> 0.22<br> 11.3<br> 0.87<br> 26<br> MWD<br> 4750<br> 0.20<br> 265.30<br> 95<br> 4749.80<br> -14.47<br> 14.47<br> N<br> -1.27<br> W<br> 14.52<br> 355.00<br> 0.13<br> -0.11<br> -17.6<br> 0.88<br> 27<br> MWD<br> 4845<br> 0.20<br> 76.10<br> 95<br> 4844.80<br> -14.49<br> 14.49<br> N<br> -1.27<br> W<br> 14.55<br> 354.99<br> 0.42<br> 0.00<br> -199.2<br> 0.90<br> 28<br> MWD<br> 4939<br> 0.30<br> 46.90<br> 94<br> 4938.79<br> -14.70<br> 14.70<br> N<br> -0.93<br> W<br> 14.73<br> 356.38<br> 0.17<br> 0.11<br> -31.1<br> 0.91<br> 29<br> MWD<br> 5033<br> 0.50<br> 33.70<br> 94<br> 5032.79<br> -15.21<br> 15.21<br> N<br> -0.52<br> W<br> 15.22<br> 358.03<br> 0.23<br> 0.21<br> -14.0<br> 0.92<br> 30<br> MWD<br> 5128<br> 0.30<br> 28.40<br> 95<br> 5127.79<br> -15.77<br> 15.77<br> N<br> -0.18<br> W<br> 15.77<br> 359.36<br> 0.21<br> -0.21<br> -5.6<br> 0.94<br> 22<br> <hr> <A name=44></a>31<br> MWD<br> 5223<br> 0.70<br> 48.00<br> 95<br> 5222.79<br> -16.38<br> 16.38<br> N<br> 0.37<br> E<br> 16.38<br> 1.31<br> 0.45<br> 0.42<br> 20.6<br> 0.94<br> 32<br> MWD<br> 5318<br> 0.50<br> 33.70<br> 95<br> 5317.78<br> -17.11<br> 17.11<br> N<br> 1.04<br> E<br> 17.14<br> 3.46<br> 0.26<br> -0.21<br> -15.1<br> 0.96<br> 33<br> MWD<br> 5412<br> 0.30<br> 13.10<br> 94<br> 5411.78<br> -17.69<br> 17.69<br> N<br> 1.32<br> E<br> 17.74<br> 4.26<br> 0.26<br> -0.21<br> -21.9<br> 0.98<br> 34<br> MWD<br> 5507<br> 0.50<br> 19.50<br> 95<br> 5506.78<br> -18.33<br> 18.33<br> N<br> 1.51<br> E<br> 18.39<br> 4.72<br> 0.22<br> 0.21<br> 6.7<br> 0.99<br> 35<br> MWD<br> 5602<br> 0.10<br> 65.70<br> 95<br> 5601.77<br> -18.75<br> 18.75<br> N<br> 1.73<br> E<br> 18.83<br> 5.26<br> 0.46<br> -0.42<br> 48.6<br> 1.02<br> 36<br> MWD<br> 5697<br> 0.20<br> 84.00<br> 95<br> 5696.77<br> -18.80<br> 18.80<br> N<br> 1.97<br> E<br> 18.91<br> 5.97<br> 0.12<br> 0.11<br> 19.3<br> 1.03<br> 37<br> MWD<br> 5792<br> 0.20<br> 262.80<br> 95<br> 5791.77<br> -18.80<br> 18.80<br> N<br> 1.97<br> E<br> 18.90<br> 5.98<br> 0.42<br> 0.00<br> 188.2<br> 1.05<br> 38<br> MWD<br> 5887<br> 0.30<br> 177.50<br> 95<br> 5886.77<br> -18.53<br> 18.53<br> N<br> 1.81<br> E<br> 18.62<br> 5.59<br> 0.36<br> 0.11<br> -89.8<br> 1.07<br> 39<br> MWD<br> 5981<br> 0.40<br> 104.80<br> 94<br> 5980.77<br> -18.20<br> 18.20<br> N<br> 2.14<br> E<br> 18.33<br> 6.71<br> 0.45<br> 0.11<br> -77.3<br> 1.09<br> 40<br> MWD<br> 6076<br> 0.70<br> 71.20<br> 95<br> 6075.77<br> -18.30<br> 18.30<br> N<br> 3.01<br> E<br> 18.55<br> 9.35<br> 0.45<br> 0.32<br> -35.4<br> 1.10<br> 41<br> MWD<br> 6171<br> 0.90<br> 69.70<br> 95<br> 6170.76<br> -18.75<br> 18.75<br> N<br> 4.26<br> E<br> 19.23<br> 12.81<br> 0.21<br> 0.21<br> -1.6<br> 1.12<br> 42<br> MWD<br> 6265<br> 1.20<br> 68.10<br> 94<br> 6264.74<br> -19.37<br> 19.37<br> N<br> 5.87<br> E<br> 20.24<br> 16.85<br> 0.32<br> 0.32<br> -1.7<br> 1.13<br> 43<br> MWD<br> 6360<br> 0.90<br> 108.80<br> 95<br> 6359.73<br> -19.50<br> 19.50<br> N<br> 7.50<br> E<br> 20.89<br> 21.03<br> 0.82<br> -0.32<br> 42.8<br> 1.16<br> 44<br> MWD<br> 6455<br> 0.70<br> 127.20<br> 95<br> 6454.72<br> -18.91<br> 18.91<br> N<br> 8.67<br> E<br> 20.80<br> 24.62<br> 0.34<br> -0.21<br> 19.4<br> 1.19<br> 45<br> MWD<br> 6549<br> 0.70<br> 147.80<br> 94<br> 6548.71<br> -18.08<br> 18.08<br> N<br> 9.43<br> E<br> 20.39<br> 27.54<br> 0.27<br> 0.00<br> 21.9<br> 1.21<br> 46<br> MWD<br> 6644<br> 0.60<br> 116.70<br> 95<br> 6643.71<br> -17.36<br> 17.36<br> N<br> 10.18<br> E<br> 20.13<br> 30.39<br> 0.38<br> -0.11<br> -32.7<br> 1.24<br> 47<br> MWD<br> 6739<br> 0.20<br> 159.90<br> 95<br> 6738.70<br> -16.98<br> 16.98<br> N<br> 10.68<br> E<br> 20.07<br> 32.17<br> 0.50<br> -0.42<br> 45.5<br> 1.27<br> 48<br> MWD<br> 6834<br> 0.30<br> 161.60<br> 95<br> 6833.70<br> -16.59<br> 16.59<br> N<br> 10.82<br> E<br> 19.81<br> 33.11<br> 0.11<br> 0.11<br> 1.8<br> 1.30<br> 49<br> MWD<br> 6929<br> 0.20<br> 159.50<br> 95<br> 6928.70<br> -16.20<br> 16.20<br> N<br> 10.96<br> E<br> 19.56<br> 34.07<br> 0.11<br> -0.11<br> -2.2<br> 1.33<br> 50<br> MWD<br> 7024<br> 0.00<br> 233.50<br> 95<br> 7023.70<br> -16.05<br> 16.05<br> N<br> 11.01<br> E<br> 19.46<br> 34.46<br> 0.21<br> -0.21<br> 77.9<br> 1.36<br> 51<br> MWD<br> 7119<br> 0.30<br> 8.40<br> 95<br> 7118.70<br> -16.29<br> 16.29<br> N<br> 11.05<br> E<br> 19.69<br> 34.15<br> 0.32<br> 0.32<br> -236.9<br> 1.39<br> 52<br> MWD<br> 7214<br> 0.30<br> 340.00<br> 95<br> 7213.70<br> -16.77<br> 16.77<br> N<br> 11.00<br> E<br> 20.06<br> 33.26<br> 0.15<br> 0.00<br> 349.1<br> 1.42<br> 53<br> MWD<br> 7308<br> 0.30<br> 24.80<br> 94<br> 7307.70<br> -17.23<br> 17.23<br> N<br> 11.02<br> E<br> 20.45<br> 32.61<br> 0.24<br> 0.00<br> -335.3<br> 1.46<br> 54<br> MWD<br> 7403<br> 0.60<br> 29.10<br> 95<br> 7402.69<br> -17.89<br> 17.89<br> N<br> 11.37<br> E<br> 21.19<br> 32.43<br> 0.32<br> 0.32<br> 4.5<br> 1.48<br> 55<br> MWD<br> 7497<br> 0.30<br> 5.90<br> 94<br> 7496.69<br> -18.56<br> 18.56<br> N<br> 11.63<br> E<br> 21.91<br> 32.07<br> 0.37<br> -0.32<br> -24.7<br> 1.53<br> 56<br> MWD<br> 7592<br> 0.10<br> 39.90<br> 95<br> 7591.69<br> -18.87<br> 18.87<br> N<br> 11.71<br> E<br> 22.21<br> 31.82<br> 0.24<br> -0.21<br> 35.8<br> 1.58<br> 57<br> MWD<br> 7686<br> 0.10<br> 312.50<br> 94<br> 7685.69<br> -18.99<br> 18.99<br> N<br> 11.70<br> E<br> 22.31<br> 31.64<br> 0.15<br> 0.00<br> 290.0<br> 1.62<br> 58<br> MWD<br> 7781<br> 0.40<br> 116.00<br> 95<br> 7780.69<br> -18.90<br> 18.90<br> N<br> 11.94<br> E<br> 22.36<br> 32.28<br> 0.52<br> 0.32<br> -206.8<br> 1.65<br> 59<br> MWD<br> 7876<br> 0.70<br> 100.10<br> 95<br> 7875.69<br> -18.65<br> 18.65<br> N<br> 12.81<br> E<br> 22.63<br> 34.47<br> 0.35<br> 0.32<br> -16.7<br> 1.69<br> 60<br> MWD<br> 7970<br> 0.60<br> 96.90<br> 94<br> 7969.68<br> -18.50<br> 18.50<br> N<br> 13.86<br> E<br> 23.11<br> 36.85<br> 0.11<br> -0.11<br> -3.4<br> 1.74<br> 61<br> MWD<br> 8065<br> 0.60<br> 99.80<br> 95<br> 8064.67<br> -18.35<br> 18.35<br> N<br> 14.85<br> E<br> 23.60<br> 38.97<br> 0.03<br> 0.00<br> 3.1<br> 1.80<br> 62<br> MWD<br> 8160<br> 0.50<br> 83.80<br> 95<br> 8159.67<br> -18.31<br> 18.31<br> N<br> 15.75<br> E<br> 24.15<br> 40.70<br> 0.19<br> -0.11<br> -16.8<br> 1.85<br> 63<br> MWD<br> 8255<br> 0.90<br> 77.70<br> 95<br> 8254.66<br> -18.51<br> 18.51<br> N<br> 16.89<br> E<br> 25.06<br> 42.37<br> 0.43<br> 0.42<br> -6.4<br> 1.90<br> 64<br> MWD<br> 8350<br> 0.40<br> 359.40<br> 95<br> 8349.66<br> -19.01<br> 19.01<br> N<br> 17.61<br> E<br> 25.91<br> 42.83<br> 0.96<br> -0.53<br> 296.5<br> 1.98<br> 65<br> MWD<br> 8445<br> 0.20<br> 291.10<br> 95<br> 8444.66<br> -19.40<br> 19.40<br> N<br> 17.46<br> E<br> 26.10<br> 41.99<br> 0.40<br> -0.21<br> -71.9<br> 2.06<br> 66<br> MWD<br> 8540<br> 0.30<br> 276.60<br> 95<br> 8539.66<br> -19.48<br> 19.48<br> N<br> 17.06<br> E<br> 25.89<br> 41.20<br> 0.12<br> 0.11<br> -15.3<br> 2.12<br> 23<br> <hr> <A name=45></a>67<br> MWD<br> 8634<br> 0.10<br> 154.90<br> 94<br> 8633.66<br> -19.44<br> 19.44<br> N<br> 16.85<br> E<br> 25.72<br> 40.91<br> 0.39<br> -0.21<br> -129.5<br> 2.21<br> 68<br> MWD<br> 8729<br> 0.1<br> 335.9<br> 95<br> 8728.66<br> -19.44<br> 19.44<br> N<br> 16.85<br> E<br> 25.72<br> 40.91<br> 0.21<br> 0.00<br> 190.5<br> 2.29<br> 69<br> MWD<br> 8824<br> 0.1<br> 62.4<br> 95<br> 8823.66<br> -19.55<br> 19.55<br> N<br> 16.89<br> E<br> 25.84<br> 40.81<br> 0.14<br> 0.00<br> -287.9<br> 2.38<br> 70<br> MWD<br> 8918<br> 0.6<br> 186.6<br> 94<br> 8917.65<br> -19.10<br> 19.10<br> N<br> 16.90<br> E<br> 25.51<br> 41.50<br> 0.70<br> 0.53<br> 132.1<br> 2.46<br> 71<br> MWD<br> 9013<br> 0.4<br> 237.1<br> 95<br> 9012.65<br> -18.43<br> 18.43<br> N<br> 16.57<br> E<br> 24.78<br> 41.96<br> 0.49<br> -0.21<br> 53.2<br> 2.57<br> 72<br> MWD<br> 9107<br> 0.9<br> 282.9<br> 94<br> 9106.64<br> -18.41<br> 18.41<br> N<br> 15.57<br> E<br> 24.12<br> 40.22<br> 0.73<br> 0.53<br> 48.7<br> 2.66<br> 73<br> MWD<br> 9202<br> 0.5<br> 313.8<br> 95<br> 9201.64<br> -18.87<br> 18.87<br> N<br> 14.55<br> E<br> 23.82<br> 37.63<br> 0.56<br> -0.42<br> 32.5<br> 2.81<br> 74<br> MWD<br> 9296<br> 0.6<br> 295.3<br> 94<br> 9295.63<br> -19.36<br> 19.36<br> N<br> 13.80<br> E<br> 23.78<br> 35.49<br> 0.22<br> 0.11<br> -19.7<br> 2.94<br> 75<br> MWD<br> 9390<br> 0.4<br> 339.2<br> 94<br> 9389.63<br> -19.88<br> 19.88<br> N<br> 13.24<br> E<br> 23.89<br> 33.67<br> 0.44<br> -0.21<br> 46.7<br> 3.10<br> 76<br> MWD<br> 9485<br> 0.3<br> 344.6<br> 95<br> 9484.63<br> -20.43<br> 20.43<br> N<br> 13.06<br> E<br> 24.25<br> 32.59<br> 0.11<br> -0.11<br> 5.7<br> 3.28<br> 77<br> MWD<br> 9580<br> 0.5<br> 340.5<br> 95<br> 9579.63<br> -21.06<br> 21.06<br> N<br> 12.85<br> E<br> 24.67<br> 31.40<br> 0.21<br> 0.21<br> -4.3<br> 3.46<br> 78<br> MWD<br> 9674<br> 0.5<br> 340<br> 94<br> 9673.62<br> -21.83<br> 21.83<br> N<br> 12.58<br> E<br> 25.20<br> 29.95<br> 0.00<br> 0.00<br> -0.5<br> 3.67<br> 79<br> MWD<br> 9769<br> 0.4<br> 339.8<br> 95<br> 9768.62<br> -22.53<br> 22.53<br> N<br> 12.32<br> E<br> 25.68<br> 28.67<br> 0.11<br> -0.11<br> -0.2<br> 3.91<br> 80<br> MWD<br> 9864<br> 0.5<br> 329.4<br> 95<br> 9863.62<br> -23.20<br> 23.20<br> N<br> 12.00<br> E<br> 26.12<br> 27.34<br> 0.14<br> 0.11<br> -10.9<br> 4.18<br> 81<br> MWD<br> 9958<br> 0.5<br> 349.7<br> 94<br> 9957.61<br> -23.96<br> 23.96<br> N<br> 11.71<br> E<br> 26.67<br> 26.06<br> 0.19<br> 0.00<br> 21.6<br> 4.49<br> 82<br> MWD<br> 10053<br> 0.5<br> 350.6<br> 95<br> 10052.61<br> -24.77<br> 24.77<br> N<br> 11.57<br> E<br> 27.34<br> 25.04<br> 0.01<br> 0.00<br> 0.9<br> 4.85<br> 83<br> MWD<br> 10148<br> 0.5<br> 333<br> 95<br> 10147.61<br> -25.55<br> 25.55<br> N<br> 11.32<br> E<br> 27.95<br> 23.89<br> 0.16<br> 0.00<br> -18.5<br> 5.28<br> 84<br> MWD<br> 10243<br> 0.4<br> 26.4<br> 95<br> 10242.60<br> -26.22<br> 26.22<br> N<br> 11.28<br> E<br> 28.54<br> 23.27<br> 0.44<br> -0.11<br> -322.7<br> 5.80<br> 85<br> MWD<br> 10337<br> 0.5<br> 32<br> 94<br> 10336.60<br> -26.86<br> 26.86<br> N<br> 11.64<br> E<br> 29.27<br> 23.43<br> 0.12<br> 0.11<br> 6.0<br> 6.41<br> 86<br> MWD<br> 10432<br> 0.8<br> 47.9<br> 95<br> 10431.59<br> -27.66<br> 27.66<br> N<br> 12.35<br> E<br> 30.29<br> 24.06<br> 0.37<br> 0.32<br> 16.7<br> 7.14<br> 87<br> MWD<br> 10526<br> 0.6<br> 20.4<br> 94<br> 10525.59<br> -28.56<br> 28.56<br> N<br> 13.01<br> E<br> 31.38<br> 24.49<br> 0.41<br> -0.21<br> -29.3<br> 8.13<br> 88<br> MWD<br> 10621<br> 0.7<br> 16<br> 95<br> 10620.58<br> -29.58<br> 29.58<br> N<br> 13.34<br> E<br> 32.45<br> 24.28<br> 0.12<br> 0.11<br> -4.6<br> 9.40<br> 89<br> MWD<br> 10711<br> 1<br> 9.6<br> 90<br> 10710.57<br> -30.88<br> 30.88<br> N<br> 13.62<br> E<br> 33.76<br> 23.80<br> 0.35<br> 0.33<br> -7.1<br> 10.99<br> 90<br> MWD<br> 10777<br> 1.6<br> 140.7<br> 66<br> 10776.56<br> -30.74<br> 30.74<br> N<br> 14.30<br> E<br> 33.90<br> 24.95<br> 3.61<br> 0.91<br> 198.6<br> 12.48<br> 91<br> MWD<br> 10809<br> 6<br> 157.6<br> 32<br> 10808.48<br> -28.85<br> 28.85<br> N<br> 15.22<br> E<br> 32.62<br> 27.82<br> 14.04<br> 13.75<br> 52.8<br> 12.38<br> 92<br> MWD<br> 10841<br> 9.9<br> 163<br> 32<br> 10840.17<br> -24.67<br> 24.67<br> N<br> 16.67<br> E<br> 29.77<br> 34.05<br> 12.40<br> 12.19<br> 16.9<br> 12.39<br> 93<br> MWD<br> 10873<br> 13.9<br> 159<br> 32<br> 10871.48<br> -18.45<br> 18.45<br> N<br> 18.85<br> E<br> 26.37<br> 45.62<br> 12.76<br> 12.50<br> -12.5<br> 12.38<br> 94<br> MWD<br> 10904<br> 17.4<br> 160.2<br> 31<br> 10901.32<br> -10.61<br> 10.61<br> N<br> 21.76<br> E<br> 24.20<br> 64.01<br> 11.34<br> 11.29<br> 3.9<br> 12.49<br> 95<br> MWD<br> 10936<br> 21.6<br> 159.2<br> 32<br> 10931.48<br> -0.59<br> 0.59<br> N<br> 25.47<br> E<br> 25.48<br> 88.66<br> 13.17<br> 13.13<br> -3.1<br> 12.42<br> 96<br> MWD<br> 10967<br> 26<br> 159.1<br> 31<br> 10959.84<br> 11.09<br> -11.09<br> S<br> 29.92<br> E<br> 31.91<br> 110.34<br> 14.19<br> 14.19<br> -0.3<br> 12.23<br> 97<br> MWD<br> 10999<br> 30.4<br> 158.1<br> 32<br> 10988.03<br> 25.17<br> -25.17<br> S<br> 35.45<br> E<br> 43.47<br> 125.37<br> 13.83<br> 13.75<br> -3.1<br> 12.05<br> 98<br> MWD<br> 11030<br> 34.4<br> 160.4<br> 31<br> 11014.20<br> 40.70<br> -40.70<br> S<br> 41.31<br> E<br> 57.99<br> 134.57<br> 13.50<br> 12.90<br> 7.4<br> 11.94<br> 99<br> MWD<br> 11062<br> 38.1<br> 159<br> 32<br> 11040.01<br> 58.44<br> -58.44<br> S<br> 47.88<br> E<br> 75.55<br> 140.67<br> 11.85<br> 11.56<br> -4.4<br> 11.99<br> 100<br> MWD<br> 11094<br> 41.8<br> 158.7<br> 32<br> 11064.53<br> 77.60<br> -77.60<br> S<br> 55.30<br> E<br> 95.29<br> 144.52<br> 11.58<br> 11.56<br> -0.9<br> 12.06<br> 101<br> MWD<br> 11125<br> 46.7<br> 158.8<br> 31<br> 11086.73<br> 97.75<br> -97.75<br> S<br> 63.14<br> E<br> 116.37<br> 147.14<br> 15.81<br> 15.81<br> 0.3<br> 11.45<br> 102<br> MWD<br> 11156<br> 51.3<br> 158.8<br> 31<br> 11107.06<br> 119.56<br> -119.56<br> S<br> 71.59<br> E<br> 139.36<br> 149.09<br> 14.84<br> 14.84<br> 0.0<br> 10.85<br> 24<br> <hr> <A name=46></a>103<br> MWD<br> 11188<br> 55.6<br> 160.5<br> 32<br> 11126.12<br> 143.66<br> -143.66<br> S<br> 80.52<br> E<br> 164.69<br> 150.73<br> 14.10<br> 13.44<br> 5.3<br> 10.34<br> 104<br> MWD<br> 11220<br> 58.9<br> 159.4<br> 32<br> 11143.43<br> 168.93<br> -168.93<br> S<br> 89.75<br> E<br> 191.30<br> 152.02<br> 10.71<br> 10.31<br> -3.4<br> 10.35<br> 105<br> MWD<br> 11252<br> 62.5<br> 160.2<br> 32<br> 11159.08<br> 195.12<br> -195.12<br> S<br> 99.38<br> E<br> 218.97<br> 153.01<br> 11.46<br> 11.25<br> 2.5<br> 10.13<br> 106<br> MWD<br> 11283<br> 66.5<br> 160<br> 31<br> 11172.43<br> 221.42<br> -221.42<br> S<br> 108.91<br> E<br> 246.76<br> 153.81<br> 12.92<br> 12.90<br> -0.6<br> 9.40<br> 107<br> MWD<br> 11315<br> 69.2<br> 160.6<br> 32<br> 11184.49<br> 249.33<br> -249.33<br> S<br> 118.89<br> E<br> 276.22<br> 154.51<br> 8.61<br> 8.44<br> 1.9<br> 9.70<br> 108<br> MWD<br> 11346<br> 70.8<br> 161.1<br> 31<br> 11195.09<br> 276.84<br> -276.84<br> S<br> 128.45<br> E<br> 305.19<br> 155.11<br> 5.38<br> 5.16<br> 1.6<br> 11.42<br> 109<br> MWD<br> 11378<br> 73.3<br> 160.4<br> 32<br> 11204.95<br> 305.58<br> -305.58<br> S<br> 138.49<br> E<br> 335.50<br> 155.62<br> 8.08<br> 7.81<br> -2.2<br> 13.39<br> 110<br> MWD<br> 11409<br> 78<br> 160.2<br> 31<br> 11212.64<br> 333.85<br> -333.85<br> S<br> 148.61<br> E<br> 365.43<br> 156.00<br> 15.17<br> 15.16<br> -0.6<br> 12.08<br> 111<br> MWD<br> 11441<br> 82.1<br> 158.9<br> 32<br> 11218.16<br> 363.37<br> -363.37<br> S<br> 159.62<br> E<br> 396.89<br> 156.29<br> 13.42<br> 12.81<br> -4.1<br> 11.24<br> 112<br> MWD<br> 11457<br> 84.6<br> 159.5<br> 16<br> 11220.02<br> 378.23<br> -378.23<br> S<br> 165.26<br> E<br> 412.76<br> 156.40<br> 16.06<br> 15.63<br> 3.7<br> 8.52<br> 113<br> MWD<br> 11534<br> 89.4<br> 158.4<br> 77<br> 11224.05<br> 449.97<br> -449.97<br> S<br> 192.87<br> E<br> 489.56<br> 156.80<br> 6.39<br> 6.23<br> -1.4<br> -0.29<br> 114<br> MWD<br> 11565<br> 89.4<br> 158.8<br> 31<br> 11224.37<br> 478.83<br> -478.83<br> S<br> 204.18<br> E<br> 520.55<br> 156.91<br> 1.29<br> 0.00<br> 1.3<br> -0.22<br> 115<br> MWD<br> 11658<br> 91<br> 160.4<br> 93<br> 11224.05<br> 565.99<br> -565.99<br> S<br> 236.60<br> E<br> 613.45<br> 157.31<br> 2.43<br> 1.72<br> 1.7<br> -0.83<br> 116<br> MWD<br> 11687<br> 91.1<br> 160.8<br> 29<br> 11223.51<br> 593.34<br> -593.34<br> S<br> 246.23<br> E<br> 642.40<br> 157.46<br> 1.42<br> 0.34<br> 1.4<br> -2.04<br> 117<br> MWD<br> 11719<br> 91.5<br> 160.4<br> 32<br> 11222.79<br> 623.51<br> -623.51<br> S<br> 256.86<br> E<br> 674.35<br> 157.61<br> 1.77<br> 1.25<br> -1.3<br> 9.24<br> 118<br> MWD<br> 11750<br> 91.4<br> 159.8<br> 31<br> 11222.00<br> 652.65<br> -652.65<br> S<br> 267.41<br> E<br> 705.31<br> 157.72<br> 1.96<br> -0.32<br> -1.9<br> 1.71<br> 119<br> MWD<br> 11781<br> 90.5<br> 160.9<br> 31<br> 11221.49<br> 681.84<br> -681.84<br> S<br> 277.83<br> E<br> 736.27<br> 157.83<br> 4.58<br> -2.90<br> 3.5<br> 0.14<br> 120<br> MWD<br> 11812<br> 90<br> 161.9<br> 31<br> 11221.35<br> 711.22<br> -711.22<br> S<br> 287.72<br> E<br> 767.22<br> 157.97<br> 3.61<br> -1.61<br> 3.2<br> -0.01<br> 121<br> MWD<br> 11843<br> 90.2<br> 162.2<br> 31<br> 11221.30<br> 740.72<br> -740.72<br> S<br> 297.27<br> E<br> 798.14<br> 158.13<br> 1.16<br> 0.65<br> 1.0<br> 0.02<br> 122<br> MWD<br> 11874<br> 89.6<br> 162.8<br> 31<br> 11221.35<br> 770.28<br> -770.28<br> S<br> 306.59<br> E<br> 829.05<br> 158.30<br> 2.74<br> -1.94<br> 1.9<br> 0.08<br> 123<br> MWD<br> 11905<br> 89.6<br> 163.2<br> 31<br> 11221.57<br> 799.92<br> -799.92<br> S<br> 315.65<br> E<br> 859.95<br> 158.47<br> 1.29<br> 0.00<br> 1.3<br> 0.09<br> 124<br> MWD<br> 11936<br> 89.9<br> 162.2<br> 31<br> 11221.71<br> 829.52<br> -829.52<br> S<br> 324.87<br> E<br> 890.87<br> 158.61<br> 3.37<br> 0.97<br> -3.2<br> 0.00<br> 125<br> MWD<br> 11967<br> 88.7<br> 163.5<br> 31<br> 11222.09<br> 859.14<br> -859.14<br> S<br> 334.01<br> E<br> 921.78<br> 158.76<br> 5.71<br> -3.87<br> 4.2<br> 1.60<br> 126<br> MWD<br> 11998<br> 87.6<br> 166.2<br> 31<br> 11223.09<br> 889.04<br> -889.04<br> S<br> 342.11<br> E<br> 952.60<br> 158.95<br> 9.40<br> -3.55<br> 8.7<br> -58.29<br> 127<br> MWD<br> 12029<br> 87.8<br> 166.3<br> 31<br> 11224.33<br> 919.13<br> -919.13<br> S<br> 349.47<br> E<br> 983.33<br> 159.18<br> 0.72<br> 0.65<br> 0.3<br> -3.17<br> 128<br> MWD<br> 12060<br> 88.2<br> 167.8<br> 31<br> 11225.41<br> 949.32<br> -949.32<br> S<br> 356.41<br> E<br> 1014.02<br> 159.42<br> 5.00<br> 1.29<br> 4.8<br> -1.17<br> 129<br> MWD<br> 12091<br> 88.9<br> 168.9<br> 31<br> 11226.20<br> 979.67<br> -979.67<br> S<br> 362.67<br> E<br> 1044.65<br> 159.69<br> 4.20<br> 2.26<br> 3.5<br> -0.33<br> 130<br> MWD<br> 12121<br> 89.2<br> 169.9<br> 30<br> 11226.69<br> 1009.16<br> -1009.16<br> S<br> 368.19<br> E<br> 1074.23<br> 159.96<br> 3.48<br> 1.00<br> 3.3<br> -0.15<br> 131<br> MWD<br> 12152<br> 89.4<br> 170.5<br> 31<br> 11227.07<br> 1039.70<br> -1039.70<br> S<br> 373.47<br> E<br> 1104.74<br> 160.24<br> 2.04<br> 0.65<br> 1.9<br> -0.07<br> 132<br> MWD<br> 12183<br> 90<br> 173.2<br> 31<br> 11227.24<br> 1070.39<br> -1070.39<br> S<br> 377.86<br> E<br> 1135.12<br> 160.56<br> 8.92<br> 1.94<br> 8.7<br> 0.00<br> 133<br> MWD<br> 12214<br> 90.4<br> 173.8<br> 31<br> 11227.13<br> 1101.19<br> -1101.19<br> S<br> 381.37<br> E<br> 1165.36<br> 160.90<br> 2.33<br> 1.29<br> 1.9<br> -0.03<br> 134<br> MWD<br> 12245<br> 90.3<br> 174.8<br> 31<br> 11226.94<br> 1132.03<br> -1132.03<br> S<br> 384.45<br> E<br> 1195.53<br> 161.24<br> 3.24<br> -0.32<br> 3.2<br> -0.02<br> 135<br> MWD<br> 12276<br> 90.8<br> 175<br> 31<br> 11226.64<br> 1162.91<br> -1162.91<br> S<br> 387.20<br> E<br> 1225.68<br> 161.58<br> 1.74<br> 1.61<br> 0.6<br> -0.15<br> 136<br> MWD<br> 12307<br> 90.3<br> 177.1<br> 31<br> 11226.34<br> 1193.83<br> -1193.83<br> S<br> 389.34<br> E<br> 1255.71<br> 161.94<br> 6.96<br> -1.61<br> 6.8<br> -0.02<br> 137<br> MWD<br> 12339<br> 89.1<br> 177.7<br> 32<br> 11226.51<br> 1225.80<br> -1225.80<br> S<br> 390.79<br> E<br> 1286.58<br> 162.32<br> 4.19<br> -3.75<br> 1.9<br> -0.20<br> 138<br> MWD<br> 12370<br> 88.6<br> 178.6<br> 31<br> 11227.13<br> 1256.77<br> -1256.77<br> S<br> 391.79<br> E<br> 1316.43<br> 162.69<br> 3.32<br> -1.61<br> 2.9<br> -0.41<br> 25<br> <hr> <A name=47></a>139<br> MWD<br> 12401<br> 88.7<br> 180.8<br> 31<br> 11227.86<br> 1287.76<br> -1287.76<br> S<br> 391.95<br> E<br> 1346.09<br> 163.07<br> 7.10<br> 0.32<br> 7.1<br> -0.30<br> 140<br> MWD<br> 12495<br> 91.1<br> 181.2<br> 94<br> 11228.03<br> 1381.74<br> -1381.74<br> S<br> 390.31<br> E<br> 1435.81<br> 164.23<br> 2.59<br> 2.55<br> 0.4<br> -0.21<br> 141<br> MWD<br> 12586<br> 90.9<br> 181.9<br> 91<br> 11226.44<br> 1472.69<br> -1472.69<br> S<br> 387.85<br> E<br> 1522.91<br> 165.25<br> 0.80<br> -0.22<br> 0.8<br> -0.20<br> 142<br> MWD<br> 12679<br> 89.3<br> 181.2<br> 93<br> 11226.28<br> 1565.66<br> -1565.66<br> S<br> 385.34<br> E<br> 1612.38<br> 166.17<br> 1.88<br> -1.72<br> -0.8<br> -0.13<br> 143<br> MWD<br> 12772<br> 90.1<br> 180.5<br> 93<br> 11226.76<br> 1658.64<br> -1658.64<br> S<br> 383.96<br> E<br> 1702.50<br> 166.97<br> 1.14<br> 0.86<br> -0.8<br> 0.00<br> 144<br> MWD<br> 12864<br> 89.4<br> 180.5<br> 92<br> 11227.16<br> 1750.64<br> -1750.64<br> S<br> 383.15<br> E<br> 1792.08<br> 167.65<br> 0.76<br> -0.76<br> 0.0<br> -0.07<br> 145<br> MWD<br> 12964<br> 89.3<br> 179.4<br> 10<br> 11228.30<br> 1850.63<br> -1850.63<br> S<br> 383.24<br> E<br> 1889.90<br> 168.30<br> 1.10<br> -0.10<br> -1.1<br> -0.08<br> 0<br> 146<br> MWD<br> 13063<br> 89.9<br> 180.4<br> 99<br> 11228.99<br> 1949.63<br> -1949.63<br> S<br> 383.41<br> E<br> 1986.97<br> 168.87<br> 1.18<br> 0.61<br> 1.0<br> 0.00<br> 147<br> MWD<br> 13158<br> 89.6<br> 179.6<br> 95<br> 11229.40<br> 2044.62<br> -2044.62<br> S<br> 383.41<br> E<br> 2080.26<br> 169.38<br> 0.90<br> -0.32<br> -0.8<br> -0.02<br> 148<br> MWD<br> 13255<br> 90.1<br> 180.2<br> 97<br> 11229.66<br> 2141.62<br> -2141.62<br> S<br> 383.58<br> E<br> 2175.70<br> 169.85<br> 0.81<br> 0.52<br> 0.6<br> 0.00<br> 149<br> MWD<br> 13352<br> 91.2<br> 182.7<br> 97<br> 11228.56<br> 2238.58<br> -2238.58<br> S<br> 381.13<br> E<br> 2270.79<br> 170.34<br> 2.82<br> 1.13<br> 2.6<br> -0.22<br> 150<br> MWD<br> 13449<br> 91.7<br> 182.2<br> 97<br> 11226.10<br> 2335.46<br> -2335.46<br> S<br> 376.98<br> E<br> 2365.69<br> 170.83<br> 0.73<br> 0.52<br> -0.5<br> -0.81<br> 151<br> MWD<br> 13546<br> 91.4<br> 182.9<br> 97<br> 11223.48<br> 2432.32<br> -2432.32<br> S<br> 372.67<br> E<br> 2460.71<br> 171.29<br> 0.78<br> -0.31<br> 0.7<br> -3.55<br> 152<br> MWD<br> 13643<br> 90.6<br> 181.6<br> 97<br> 11221.79<br> 2529.23<br> -2529.23<br> S<br> 368.86<br> E<br> 2555.99<br> 171.70<br> 1.57<br> -0.82<br> -1.3<br> 0.25<br> 153<br> MWD<br> 13739<br> 90.8<br> 180.6<br> 96<br> 11220.61<br> 2625.21<br> -2625.21<br> S<br> 367.02<br> E<br> 2650.74<br> 172.04<br> 1.06<br> 0.21<br> -1.0<br> 0.23<br> 154<br> MWD<br> 13835<br> 90.1<br> 180.2<br> 96<br> 11219.86<br> 2721.20<br> -2721.20<br> S<br> 366.35<br> E<br> 2745.75<br> 172.33<br> 0.84<br> -0.73<br> -0.4<br> 0.00<br> 155<br> MWD<br> 13931<br> 91.4<br> 179.7<br> 96<br> 11218.60<br> 2817.19<br> -2817.19<br> S<br> 366.43<br> E<br> 2840.92<br> 172.59<br> 1.45<br> 1.35<br> -0.5<br> 0.39<br> 156<br> MWD<br> 14026<br> 89.9<br> 179.2<br> 95<br> 11217.53<br> 2912.18<br> -2912.18<br> S<br> 367.35<br> E<br> 2935.25<br> 172.81<br> 1.66<br> -1.58<br> -0.5<br> 0.00<br> 157<br> MWD<br> 14121<br> 89.3<br> 178.2<br> 95<br> 11218.19<br> 3007.15<br> -3007.15<br> S<br> 369.50<br> E<br> 3029.76<br> 172.99<br> 1.23<br> -0.63<br> -1.1<br> 0.09<br> 158<br> MWD<br> 14217<br> 89.1<br> 177.8<br> 96<br> 11219.53<br> 3103.08<br> -3103.08<br> S<br> 372.85<br> E<br> 3125.40<br> 173.15<br> 0.47<br> -0.21<br> -0.4<br> 0.20<br> 159<br> MWD<br> 14311<br> 89.5<br> 178.9<br> 94<br> 11220.68<br> 3197.03<br> -3197.03<br> S<br> 375.56<br> E<br> 3219.01<br> 173.30<br> 1.25<br> 0.43<br> 1.2<br> 0.09<br> 160<br> MWD<br> 14407<br> 90.8<br> 181.7<br> 96<br> 11220.43<br> 3293.02<br> -3293.02<br> S<br> 375.05<br> E<br> 3314.31<br> 173.50<br> 3.22<br> 1.35<br> 2.9<br> 0.21<br> 161<br> MWD<br> 14503<br> 90.9<br> 181.1<br> 96<br> 11219.00<br> 3388.98<br> -3388.98<br> S<br> 372.71<br> E<br> 3409.41<br> 173.72<br> 0.63<br> 0.10<br> -0.6<br> 0.17<br> 162<br> MWD<br> 14599<br> 88.7<br> 179.5<br> 96<br> 11219.34<br> 3484.97<br> -3484.97<br> S<br> 372.21<br> E<br> 3504.79<br> 173.90<br> 2.83<br> -2.29<br> -1.7<br> 0.40<br> 163<br> MWD<br> 14695<br> 89.4<br> 179.9<br> 96<br> 11220.93<br> 3580.95<br> -3580.95<br> S<br> 372.71<br> E<br> 3600.30<br> 174.06<br> 0.84<br> 0.73<br> 0.4<br> 0.15<br> 164<br> MWD<br> 14790<br> 90<br> 179.9<br> 95<br> 11221.43<br> 3675.95<br> -3675.95<br> S<br> 372.87<br> E<br> 3694.81<br> 174.21<br> 0.63<br> 0.63<br> 0.0<br> -0.01<br> 165<br> MWD<br> 14886<br> 88.7<br> 177.9<br> 96<br> 11222.52<br> 3771.92<br> -3771.92<br> S<br> 374.72<br> E<br> 3790.49<br> 174.33<br> 2.48<br> -1.35<br> -2.1<br> 3.03<br> 166<br> MWD<br> 14983<br> 89.6<br> 179.1<br> 97<br> 11223.95<br> 3868.87<br> -3868.87<br> S<br> 377.26<br> E<br> 3887.22<br> 174.43<br> 1.55<br> 0.93<br> 1.2<br> -0.14<br> 167<br> MWD<br> 15079<br> 89<br> 178.9<br> 96<br> 11225.13<br> 3964.85<br> -3964.85<br> S<br> 378.93<br> E<br> 3982.92<br> 174.54<br> 0.66<br> -0.62<br> -0.2<br> -0.41<br> 168<br> MWD<br> 15174<br> 89.4<br> 180.6<br> 95<br> 11226.45<br> 4059.84<br> -4059.84<br> S<br> 379.35<br> E<br> 4077.52<br> 174.66<br> 1.84<br> 0.42<br> 1.8<br> -0.09<br> 169<br> MWD<br> 15270<br> 89.7<br> 180.3<br> 96<br> 11227.21<br> 4155.83<br> -4155.83<br> S<br> 378.59<br> E<br> 4173.04<br> 174.79<br> 0.44<br> 0.31<br> -0.3<br> -0.02<br> 170<br> MWD<br> 15366<br> 89.5<br> 181.8<br> 96<br> 11227.88<br> 4251.81<br> -4251.81<br> S<br> 376.83<br> E<br> 4268.48<br> 174.94<br> 1.58<br> -0.21<br> 1.6<br> -0.04<br> 171<br> MWD<br> 15462<br> 91<br> 182.3<br> 96<br> 11227.46<br> 4347.74<br> -4347.74<br> S<br> 373.40<br> E<br> 4363.75<br> 175.09<br> 1.65<br> 1.56<br> 0.5<br> -0.19<br> 172<br> MWD<br> 15559<br> 91.9<br> 181.2<br> 97<br> 11225.00<br> 4444.67<br> -4444.67<br> S<br> 370.44<br> E<br> 4460.08<br> 175.24<br> 1.46<br> 0.93<br> -1.1<br> -1.57<br> 173<br> MWD<br> 15655<br> 91.4<br> 180.7<br> 96<br> 11222.24<br> 4540.61<br> -4540.61<br> S<br> 368.85<br> E<br> 4555.57<br> 175.36<br> 0.74<br> -0.52<br> -0.5<br> 2.24<br> 174<br> MWD<br> 15749<br> 89.4<br> 180.6<br> 94<br> 11221.58<br> 4634.60<br> -4634.60<br> S<br> 367.78<br> E<br> 4649.17<br> 175.46<br> 2.13<br> -2.13<br> -0.1<br> 0.22<br> 26<br> <hr> <A name=48></a>175<br> MWD<br> 15844<br> 88.9<br> 180<br> 95<br> 11222.99<br> 4729.59<br> -4729.59<br> S<br> 367.28<br> E<br> 4743.83<br> 175.56<br> 0.82<br> -0.53<br> -0.6<br> 156.69<br> 176<br> MWD<br> 15940<br> 89.4<br> 180.9<br> 96<br> 11224.42<br> 4825.57<br> -4825.57<br> S<br> 366.53<br> E<br> 4839.47<br> 175.66<br> 1.07<br> 0.52<br> 0.9<br> -0.22<br> 177<br> MWD<br> 16035<br> 88.7<br> 180.7<br> 95<br> 11225.99<br> 4920.55<br> -4920.55<br> S<br> 365.20<br> E<br> 4934.08<br> 175.76<br> 0.77<br> -0.74<br> -0.2<br> -0.49<br> 178<br> MWD<br> 16131<br> 88<br> 179.9<br> 96<br> 11228.76<br> 5016.51<br> -5016.51<br> S<br> 364.70<br> E<br> 5029.75<br> 175.84<br> 1.11<br> -0.73<br> -0.8<br> -0.60<br> 179<br> MWD<br> 16228<br> 89.8<br> 180.6<br> 97<br> 11230.62<br> 5113.48<br> -5113.48<br> S<br> 364.28<br> E<br> 5126.44<br> 175.93<br> 1.99<br> 1.86<br> 0.7<br> 0.00<br> 180<br> MWD<br> 16324<br> 90.8<br> 182.7<br> 96<br> 11230.12<br> 5209.43<br> -5209.43<br> S<br> 361.51<br> E<br> 5221.96<br> 176.03<br> 2.42<br> 1.04<br> 2.2<br> -0.08<br> 181<br> MWD<br> 16420<br> 90.8<br> 181<br> 96<br> 11228.78<br> 5305.37<br> -5305.37<br> S<br> 358.41<br> E<br> 5317.46<br> 176.14<br> 1.77<br> 0.00<br> -1.8<br> -0.10<br> 182<br> MWD<br> 16516<br> 90.3<br> 180.1<br> 96<br> 11227.85<br> 5401.36<br> -5401.36<br> S<br> 357.49<br> E<br> 5413.18<br> 176.21<br> 1.07<br> -0.52<br> -0.9<br> -0.01<br> 183<br> MWD<br> 16612<br> 90.8<br> 179.5<br> 96<br> 11226.93<br> 5497.36<br> -5497.36<br> S<br> 357.83<br> E<br> 5508.99<br> 176.28<br> 0.81<br> 0.52<br> -0.6<br> -0.14<br> 184<br> MWD<br> 16709<br> 90<br> 178.5<br> 97<br> 11226.26<br> 5594.34<br> -5594.34<br> S<br> 359.52<br> E<br> 5605.88<br> 176.32<br> 1.32<br> -0.82<br> -1.0<br> 0.00<br> 185<br> MWD<br> 16803<br> 90.5<br> 178.8<br> 94<br> 11225.85<br> 5688.31<br> -5688.31<br> S<br> 361.74<br> E<br> 5699.80<br> 176.36<br> 0.62<br> 0.53<br> 0.3<br> -0.07<br> 186<br> MWD<br> 16898<br> 91.3<br> 178.3<br> 95<br> 11224.35<br> 5783.27<br> -5783.27<br> S<br> 364.14<br> E<br> 5794.72<br> 176.40<br> 0.99<br> 0.84<br> -0.5<br> -1.08<br> 187<br> MWD<br> 16993<br> 91.4<br> 178<br> 95<br> 11222.11<br> 5878.19<br> -5878.19<br> S<br> 367.20<br> E<br> 5889.65<br> 176.43<br> 0.33<br> 0.11<br> -0.3<br> 1.92<br> 188<br> MWD<br> 17089<br> 89.6<br> 178.2<br> 96<br> 11221.28<br> 5974.13<br> -5974.13<br> S<br> 370.39<br> E<br> 5985.60<br> 176.45<br> 1.89<br> -1.88<br> 0.2<br> 0.08<br> 189<br> MWD<br> 17184<br> 89.2<br> 178.3<br> 95<br> 11222.27<br> 6069.08<br> -6069.08<br> S<br> 373.29<br> E<br> 6080.55<br> 176.48<br> 0.43<br> -0.42<br> 0.1<br> 0.76<br> 190<br> MWD<br> 17281<br> 89.4<br> 178.9<br> 97<br> 11223.46<br> 6166.04<br> -6166.04<br> S<br> 375.66<br> E<br> 6177.48<br> 176.51<br> 0.65<br> 0.21<br> 0.6<br> -0.67<br> 191<br> MWD<br> 17376<br> 90.6<br> 180.6<br> 95<br> 11223.46<br> 6261.04<br> -6261.04<br> S<br> 376.07<br> E<br> 6272.32<br> 176.56<br> 2.19<br> 1.26<br> 1.8<br> -0.67<br> 192<br> MWD<br> 17471<br> 92.7<br> 181.5<br> 95<br> 11220.72<br> 6355.98<br> -6355.98<br> S<br> 374.33<br> E<br> 6366.99<br> 176.63<br> 2.40<br> 2.21<br> 0.9<br> 2.79<br> 193<br> MWD<br> 17567<br> 92.8<br> 181.8<br> 96<br> 11216.12<br> 6451.83<br> -6451.83<br> S<br> 371.57<br> E<br> 6462.52<br> 176.70<br> 0.33<br> 0.10<br> 0.3<br> 0.99<br> 194<br> MWD<br> 17663<br> 92<br> 180.4<br> 96<br> 11212.10<br> 6547.72<br> -6547.72<br> S<br> 369.73<br> E<br> 6558.15<br> 176.77<br> 1.68<br> -0.83<br> -1.5<br> 0.32<br> 195<br> MWD<br> 17758<br> 89.8<br> 179.6<br> 95<br> 11210.60<br> 6642.70<br> -6642.70<br> S<br> 369.73<br> E<br> 6652.98<br> 176.81<br> 2.46<br> -2.32<br> -0.8<br> 0.00<br> 196<br> MWD<br> 17855<br> 88.6<br> 179.3<br> 97<br> 11211.96<br> 6739.69<br> -6739.69<br> S<br> 370.66<br> E<br> 6749.87<br> 176.85<br> 1.28<br> -1.24<br> -0.3<br> 0.15<br> 197<br> MWD<br> 17952<br> 87.3<br> 179.3<br> 97<br> 11215.43<br> 6836.61<br> -6836.61<br> S<br> 371.85<br> E<br> 6846.72<br> 176.89<br> 1.34<br> -1.34<br> 0.0<br> 0.84<br> 198<br> MWD<br> 18048<br> 88.9<br> 181.5<br> 96<br> 11218.61<br> 6932.55<br> -6932.55<br> S<br> 371.18<br> E<br> 6942.48<br> 176.94<br> 2.83<br> 1.67<br> 2.3<br> 0.24<br> 199<br> MWD<br> 18143<br> 91.3<br> 182.5<br> 95<br> 11218.44<br> 7027.48<br> -7027.48<br> S<br> 367.86<br> E<br> 7037.11<br> 177.00<br> 2.74<br> 2.53<br> 1.1<br> 0.32<br> 200<br> MWD<br> 18238<br> 91.4<br> 181.9<br> 95<br> 11216.21<br> 7122.39<br> -7122.39<br> S<br> 364.21<br> E<br> 7131.69<br> 177.07<br> 0.64<br> 0.11<br> -0.6<br> 0.25<br> 201<br> MWD<br> 18334<br> 90.5<br> 181.7<br> 96<br> 11214.62<br> 7218.33<br> -7218.33<br> S<br> 361.20<br> E<br> 7227.36<br> 177.14<br> 0.96<br> -0.94<br> -0.2<br> 0.02<br> 202<br> MWD<br> 18430<br> 91.3<br> 180.8<br> 96<br> 11213.11<br> 7314.29<br> -7314.29<br> S<br> 359.11<br> E<br> 7323.10<br> 177.19<br> 1.25<br> 0.83<br> -0.9<br> 0.15<br> 203<br> MWD<br> 18526<br> 90.7<br> 179.5<br> 96<br> 11211.43<br> 7410.27<br> -7410.27<br> S<br> 358.85<br> E<br> 7418.96<br> 177.23<br> 1.49<br> -0.62<br> -1.4<br> 0.04<br> 204<br> MWD<br> 18622<br> 91.6<br> 178.9<br> 96<br> 11209.51<br> 7506.24<br> -7506.24<br> S<br> 360.19<br> E<br> 7514.88<br> 177.25<br> 1.13<br> 0.94<br> -0.6<br> 0.16<br> 205<br> MWD<br> 18718<br> 92.3<br> 177.9<br> 96<br> 11206.24<br> 7602.15<br> -7602.15<br> S<br> 362.87<br> E<br> 7610.80<br> 177.27<br> 1.27<br> 0.73<br> -1.0<br> 0.27<br> 206<br> MWD<br> 18813<br> 90<br> 180.4<br> 95<br> 11204.33<br> 7697.10<br> -7697.10<br> S<br> 364.28<br> E<br> 7705.72<br> 177.29<br> 3.58<br> -2.42<br> 2.6<br> 0.00<br> 207<br> MWD<br> 18910<br> 90.7<br> 180.2<br> 97<br> 11203.74<br> 7794.10<br> -7794.10<br> S<br> 363.77<br> E<br> 7802.58<br> 177.33<br> 0.75<br> 0.72<br> -0.2<br> 0.02<br> 208<br> MWD<br> 19006<br> 90.7<br> 179.3<br> 96<br> 11202.57<br> 7890.09<br> -7890.09<br> S<br> 364.19<br> E<br> 7898.49<br> 177.36<br> 0.94<br> 0.00<br> -0.9<br> 0.02<br> 209<br> MWD<br> 19101<br> 91.2<br> 178.5<br> 95<br> 11200.99<br> 7985.06<br> -7985.06<br> S<br> 366.02<br> E<br> 7993.44<br> 177.38<br> 0.99<br> 0.53<br> -0.8<br> 0.06<br> 210<br> MWD<br> 19196<br> 90<br> 178.8<br> 95<br> 11200.00<br> 8080.03<br> -8080.03<br> S<br> 368.25<br> E<br> 8088.41<br> 177.39<br> 1.30<br> -1.26<br> 0.3<br> 0.00<br> 27<br> <hr> <A name=49></a>211<br> MWD<br> 19292<br> 88.8<br> 180<br> 96<br> 11201.00<br> 8176.01<br> -8176.01<br> S<br> 369.26<br> E<br> 8184.35<br> 177.41<br> 1.77<br> -1.25<br> 1.2<br> 0.06<br> 212<br> MWD<br> 19388<br> 89.4<br> 179.1<br> 96<br> 11202.51<br> 8272.00<br> -8272.00<br> S<br> 370.01<br> E<br> 8280.27<br> 177.44<br> 1.13<br> 0.63<br> -0.9<br> 0.01<br> 213<br> MWD<br> 19484<br> 88.4<br> 178.7<br> 96<br> 11204.35<br> 8367.96<br> -8367.96<br> S<br> 371.86<br> E<br> 8376.22<br> 177.46<br> 1.12<br> -1.04<br> -0.4<br> 0.12<br> 214<br> MWD<br> 19579<br> 87.9<br> 180.6<br> 95<br> 11207.42<br> 8462.90<br> -8462.90<br> S<br> 372.44<br> E<br> 8471.09<br> 177.48<br> 2.07<br> -0.53<br> 2.0<br> 0.25<br> 215<br> MWD<br> 19675<br> 88.7<br> 180.9<br> 96<br> 11210.27<br> 8558.85<br> -8558.85<br> S<br> 371.18<br> E<br> 8566.90<br> 177.52<br> 0.89<br> 0.83<br> 0.3<br> 0.12<br> 216<br> MWD<br> 19771<br> 90.7<br> 182.2<br> 96<br> 11210.77<br> 8654.81<br> -8654.81<br> S<br> 368.58<br> E<br> 8662.65<br> 177.56<br> 2.48<br> 2.08<br> 1.4<br> 0.03<br> 217<br> MWD<br> 19867<br> 91<br> 180.9<br> 96<br> 11209.35<br> 8750.76<br> -8750.76<br> S<br> 365.99<br> E<br> 8758.41<br> 177.61<br> 1.39<br> 0.31<br> -1.4<br> 0.06<br> 218<br> MWD<br> 19963<br> 90.5<br> 180.4<br> 96<br> 11208.09<br> 8846.75<br> -8846.75<br> S<br> 364.90<br> E<br> 8854.27<br> 177.64<br> 0.74<br> -0.52<br> -0.5<br> 0.01<br> 219<br> MWD<br> 20058<br> 91.2<br> 180.2<br> 95<br> 11206.68<br> 8941.73<br> -8941.73<br> S<br> 364.40<br> E<br> 8949.15<br> 177.67<br> 0.77<br> 0.74<br> -0.2<br> 0.08<br> 220<br> MWD<br> 20153<br> 90<br> 179.6<br> 95<br> 11205.69<br> 9036.73<br> -9036.73<br> S<br> 364.57<br> E<br> 9044.08<br> 177.69<br> 1.41<br> -1.26<br> -0.6<br> 0.00<br> 221<br> MWD<br> 20249<br> 87.5<br> 178.8<br> 96<br> 11207.78<br> 9132.68<br> -9132.68<br> S<br> 365.91<br> E<br> 9140.01<br> 177.71<br> 2.73<br> -2.60<br> -0.8<br> 0.36<br> 222<br> MWD<br> 20344<br> 88.1<br> 179.3<br> 95<br> 11211.43<br> 9227.60<br> -9227.60<br> S<br> 367.48<br> E<br> 9234.92<br> 177.72<br> 0.82<br> 0.63<br> 0.5<br> 0.27<br> 223<br> MWD<br> 20438<br> 88.6<br> 179.8<br> 94<br> 11214.13<br> 9321.56<br> -9321.56<br> S<br> 368.22<br> E<br> 9328.83<br> 177.74<br> 0.75<br> 0.53<br> 0.5<br> 0.19<br> 224<br> MWD<br> 20533<br> 89<br> 178.4<br> 95<br> 11216.12<br> 9416.52<br> -9416.52<br> S<br> 369.71<br> E<br> 9423.78<br> 177.75<br> 1.53<br> 0.42<br> -1.5<br> 0.13<br> 225<br> MWD<br> 20628<br> 87.6<br> 179.2<br> 95<br> 11218.94<br> 9511.46<br> -9511.46<br> S<br> 371.70<br> E<br> 9518.72<br> 177.76<br> 1.70<br> -1.47<br> 0.8<br> 1.24<br> 226<br> MWD<br> 20723<br> 87.3<br> 179.7<br> 95<br> 11223.17<br> 9606.36<br> -9606.36<br> S<br> 372.61<br> E<br> 9613.58<br> 177.78<br> 0.61<br> -0.32<br> 0.5<br> -37.95<br> 227<br> MWD<br> 20818<br> 87.2<br> 181.7<br> 95<br> 11227.73<br> 9701.24<br> -9701.24<br> S<br> 371.45<br> E<br> 9708.35<br> 177.81<br> 2.11<br> -0.11<br> 2.1<br> -1.45<br> 228<br> MWD<br> 20913<br> 88.9<br> 182.1<br> 95<br> 11230.96<br> 9796.13<br> -9796.13<br> S<br> 368.30<br> E<br> 9803.05<br> 177.85<br> 1.84<br> 1.79<br> 0.4<br> -0.13<br> 229<br> MWD<br> 21007<br> 90.1<br> 180.9<br> 94<br> 11231.78<br> 9890.09<br> -9890.09<br> S<br> 365.84<br> E<br> 9896.85<br> 177.88<br> 1.81<br> 1.28<br> -1.3<br> 0.00<br> 230<br> MWD<br> 21101<br> 91.1<br> 180.2<br> 94<br> 11230.79<br> 9984.08<br> -9984.08<br> S<br> 364.94<br> E<br> 9990.74<br> 177.91<br> 1.30<br> 1.06<br> -0.7<br> -0.13<br> 231<br> MWD<br> 21198<br> 90.8<br> 179.2<br> 97<br> 11229.19<br> 10081.06<br> -10081.06<br> S<br> 365.45<br> E<br> 10087.68<br> 177.92<br> 1.08<br> -0.31<br> -1.0<br> -0.09<br> 232<br> MWD<br> 21294<br> 91.1<br> 179.2<br> 96<br> 11227.59<br> 10177.04<br> -10177.04<br> S<br> 366.79<br> E<br> 10183.64<br> 177.94<br> 0.31<br> 0.31<br> 0.0<br> -0.23<br> 233<br> MWD<br> 21390<br> 91.4<br> 179.6<br> 96<br> 11225.50<br> 10273.01<br> -10273.01<br> S<br> 367.79<br> E<br> 10279.59<br> 177.95<br> 0.52<br> 0.31<br> 0.4<br> -0.68<br> 234<br> MWD<br> 21486<br> 90.6<br> 178.9<br> 96<br> 11223.82<br> 10368.98<br> -10368.98<br> S<br> 369.05<br> E<br> 10375.55<br> 177.96<br> 1.11<br> -0.83<br> -0.7<br> -0.37<br> 235<br> MWD<br> 21582<br> 89.9<br> 178.3<br> 96<br> 11223.41<br> 10464.95<br> -10464.95<br> S<br> 371.39<br> E<br> 10471.54<br> 177.97<br> 0.96<br> -0.73<br> -0.6<br> 0.00<br> 236<br> MWD<br> 21677<br> 89.4<br> 178.5<br> 95<br> 11223.99<br> 10559.91<br> -10559.91<br> S<br> 374.05<br> E<br> 10566.54<br> 177.97<br> 0.57<br> -0.53<br> 0.2<br> -0.31<br> 237<br> prj<br> 21725<br> 89.4<br> 179<br> 48<br> 11224.49<br> 10607.90<br> -10607.90<br> S<br> 375.09<br> E<br> 10614.53<br> 177.97<br> 1.04<br> 0.00<br> 1.0<br> -0.21<br> 28<br> <hr> <A name=50></a><hr> <A name=51></a><hr> <A name=52></a><hr> <A name=53></a><hr> <A name=54></a><hr> <A name=55></a><hr> <A name=56></a>29035<br> Notify NDIC inspector Jessica Gilkey at 701-770-7340 with spud and TD info.<br> X<br> 8/1/14<br> Nathaniel Erbele<br> Petroleum Resource Specialist<br> <hr> <A name=57></a>29035<br> X<br> 8/1/14<br> Nathaniel Erbele<br> Petroleum Resource Specialist<br> <hr> <A name=58></a>August 1, 2014<br> Terry L. Olson<br> Regulatory Compliance Specialist<br> CONTINENTAL RESOURCES, INC.<br> P.O. Box 268870<br> Oklahoma City, OK 73126<br> RE:<br> HORIZONTAL WELL<br> STANGELAND 3-7H1<br> LOT7 Section 6-153N-99W<br> Williams County<br> Well File # 29035<br> Dear Terry :<br> Pursuant to Commission Order No. 23455, approval to drill the above captioned well is hereby given. The<br> approval is granted on the condition that all portions of the well bore not isolated by cement, be no closer than<br> the </span><span class="ft5">200' setback </span><span class="ft4">from the north &amp; south boundaries and </span><span class="ft5">500' setback </span><span class="ft4">from the east &amp; west boundaries within the<br> 2560 acre spacing unit consisting of Sec 31-154N-99W, Sec 6, 7, &amp; 18-153N-99W.<br> PERMIT STIPULATIONS: Effective June 1, 2014, a covered leak-proof container (with placard) for<br> filter sock disposal must be maintained on the well site beginning when the well is spud, and must<br> remain on-site during clean-out, completion, and flow-back whenever filtration operations are<br> conducted.A MINIMUM OF FOUR HORIZONTAL WELLS, TWO IN EACH &quot;1280&quot;, SHALL BE<br> DRILLED AND COMPLETED IN THE STANDUP 2560-ACRE SPACING UNIT WITHIN<br> TWELVE MONTHS OF EACH OTHER, AND AN EQUAL NUMBER OF HORIZONTAL WELLS<br> SHALL BE DRILLED AND COMPLETED IN BOTH &quot;1280S&quot; OF THE STANDUP 2560-ACRE<br> SPACING UNIT WITH THE NUMBER OF WELLS BEING EQUAL WITHIN TWELVE<br> MONTHS OF EACH OTHER. CONTINENTAL RESOURCES must contact NDIC Field Inspector<br> Jessica Gilkey at 701-770-7340 prior to location construction.<br> Drilling pit<br> NDAC 43-02-03-19.4 states that "a pit may be utilized to bury drill cuttings and solids generated during well<br> drilling and completion operations, providing the pit can be constructed, used and reclaimed in a manner that will<br> prevent pollution of the land surface and freshwaters. Reserve and circulation of mud system through earthen pits<br> are prohibited. All pits shall be inspected by an authorized representative of the director prior to lining and use.<br> Drill cuttings and solids must be stabilized in a manner approved by the director prior to placement in a cuttings<br> pit."<br> Form 1 Changes &amp; Hard Lines<br> Any changes, shortening of casing point or lengthening at Total Depth must have prior approval by the NDIC.<br> The proposed directional plan is at a legal location. Based on the azimuth of the proposed lateral the maximum<br> legal coordinate from the well head is: 10638' south.<br> <hr> <A name=59></a>Location Construction Commencement (Three Day Waiting Period)<br> Operators shall not commence operations on a drill site until the 3rd business day following publication of the<br> approved drilling permit on the NDIC - OGD Daily Activity Report. If circumstances require operations to<br> commence before the 3rd business day following publication on the Daily Activity Report, the waiting period may<br> be waived by the Director. Application for a waiver must be by sworn affidavit providing the information<br> necessary to evaluate the extenuating circumstances, the factors of NDAC 43-02-03-16.2 (1), (a)-(f), and any other<br> information that would allow the Director to conclude that in the event another owner seeks revocation of the<br> drilling permit, the applicant should retain the permit.<br> Permit Fee &amp; Notification<br> Payment was received in the amount of $100 via credit card. It is requested that notification be given<br> immediately upon the spudding of the well. This information should be relayed to the Oil &amp; Gas Division,<br> Bismarck, via telephone. The following information must be included: Well name, legal location, permit number,<br> drilling contractor, company representative, date and time of spudding. Office hours are 8:00 a.m. to 12:00 p.m.<br> and 1:00 p.m. to 5:00 p.m. Central Time. Our telephone number is (701) 328-8020, leave a message if after hours<br> or on the weekend.<br> Survey Requirements for Horizontal, Horizontal Re-entry, and Directional Wells<br> NDAC Section 43-02-03-25 (Deviation Tests and Directional Surveys) states in part (that) the survey<br> contractor shall file a certified copy of all surveys with the director free of charge within thirty days of completion.<br> Surveys must be submitted as one electronic copy, or in a form approved by the director. However, the director<br> may require the directional survey to be filed immediately after completion if the survey is needed to conduct the<br> operation of the director's office in a timely manner. Certified surveys must be submitted via email in one adobe<br> document, with a certification cover page to </span><span class="ft2">certsurvey@nd.gov</span><span class="ft1">.<br> Survey points shall be of such frequency to accurately determine the entire location of the well bore.<br> Specifically, the Horizontal and Directional well survey frequency is 100 feet in the vertical, 30 feet in the curve<br> (or when sliding) and 90 feet in the lateral.<br> Confidential status<br> Your request for confidential status of all information furnished to the Director, or his representatives, is<br> hereby granted. Such information, except production runs, shall remain confidential for six months commencing<br> on the date the well is spud.<br> Confidential status notwithstanding, the Director and his representatives shall have access to all well<br> records wherever located. Your company personnel, or any person performing work for your company shall<br> permit the Director and his representatives to come upon any lease, property, well, or drilling rig operated or<br> controlled by them, complying with all safety rules, and to inspect the records and operation of such wells and to<br> have access at all times to any and all records of wells. The Commission's field personnel periodically inspect<br> producing and drilling wells. Any information regarding such wells shall be made available to them at any time<br> upon request. The information so obtained by the field personnel shall be maintained in strict confidence and<br> shall be available only to the Commission and its staff.<br> Surface casing cement<br> Tail cement utilized on surface casing must have a minimum compressive strength of 500 psi within 12<br> hours, and tail cement utilized on production casing must have a minimum compressive strength of 500 psi<br> before drilling the plug or initiating tests.<br> Logs </span><span class="ft3">NDAC Section 43-02-03-31 requires the running of (1) a suite of open hole logs from which formation tops and<br> porosity zones can be determined, (2) a Gamma Ray Log run from total depth to ground level elevation of the well bore, and<br> (3) a log from which the presence and quality of cement can be determined (Standard CBL or Ultrasonic cement evaluation<br> log) in every well in which production or intermediate casing has been set, this log must be run prior to completing the well.<br> All logs run must be submitted free of charge, as one digital TIFF (tagged image file format) copy and one digital LAS (log<br> ASCII) formatted copy. Digital logs may be submitted on a standard CD, DVD, or attached to an email sent to<br> digitallogs@nd.gov </span><span class="ft1">Thank you for your cooperation.<br> Sincerely,<br> Nathaniel Erbele<br> Petroleum Resource Specialist<br> <hr> <A name=60></a>INDUSTRIAL COMMISSION OF NORTH DAKOTA<br> OIL AND GAS DIVISION<br> 600 EAST BOULEVARD DEPT 405<br> BISMARCK, ND 58505-0840<br> SFN 54269 (08-2005)<br> PLEASE READ INSTRUCTIONS BEFORE FILLING OUT FORM.<br> PLEASE SUBMIT THE ORIGINAL AND ONE COPY.<br> Type of Work<br> Type of Well<br> Approximate Date Work Will Start<br> Confidential Status<br> New Location<br> Oil &amp; Gas<br> 8 / 3 / 2014<br> Yes<br> Operator<br> Telephone Number<br> CONTINENTAL RESOURCES, INC.<br> 405-234-9000<br> Address<br> City<br> State<br> Zip Code<br> P.O. Box 268870<br> Oklahoma City<br> OK<br> 73126<br> Notice has been provided to the owner of any<br> This well is not located within five hundred<br> permanently occupied dwelling within 1,320 feet.<br> feet of an occupied dwelling.<br> enter data for additional laterals on page 2)<br> Well Name<br> Well Number<br> STANGELAND<br> 3-7H1<br> Surface Footages<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> 300 </span><span class="ft0">FL<br> S790 </span><span class="ft0">F </span><span class="ft6">W </span><span class="ft0">L<br> LOT7<br> 6<br> 153<br> 99<br> Williams<br> Longstring Casing Point Footages<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> 100 </span><span class="ft0">F </span><span class="ft6">N </span><span class="ft0">L<br> 976 </span><span class="ft0">F </span><span class="ft6">W </span><span class="ft0">L<br> LOT1<br> 7<br> 153<br> 99<br> Williams<br> Longstring Casing Point Coordinates From Well Head<br> Azimuth<br> Longstring Total Depth<br> 400 S </span><span class="ft0">From WH<br> 186 E </span><span class="ft0">From WH<br> 155<br> 11462 </span><span class="ft0">Feet MD<br> 11210 </span><span class="ft0">Feet TVD<br> Bottom Hole Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> 200 </span><span class="ft0">F </span><span class="ft6">S<br> LF<br> 1155<br> W </span><span class="ft0">L<br> LOT4<br> 18<br> 153<br> 99<br> Williams<br> Bottom Hole Coordinates From Well Head<br> KOP Lateral 1<br> Azimuth Lateral 1<br> Estimated Total Depth Lateral 1<br> 10638 S </span><span class="ft0">From WH<br> 365 E </span><span class="ft0">From WH<br> 10769 </span><span class="ft0">Feet MD<br> 180<br> 21726 </span><span class="ft0">Feet MD<br> 11201 </span><span class="ft0">Feet TVD<br> Latitude of Well Head<br> Longitude of Well Head<br> NAD Reference<br> Description of<br> (Subject to NDIC Approval)<br> 48<br> 05<br> 50.68<br> -103<br> 28<br> 17.71<br> NAD83<br> Spacing Unit:<br> S 31-154N99W, S 6,7,18-153N99W<br> Ground Elevation<br> Acres in Spacing/Drilling Unit<br> Spacing/Drilling Unit Setback Requirement<br> Industrial Commission Order<br> 2312 </span><span class="ft0">Feet Above S.L.<br> 2560<br> 200 </span><span class="ft8">Feet N/S<br> 500<br> Feet<br> Feet E/W<br> 23455<br> North Line of Spacing/Drilling Unit<br> South Line of Spacing/Drilling Unit<br> East Line of Spacing/Drilling Unit<br> West Line of Spacing/Drilling Unit<br> 5192 </span><span class="ft0">Feet<br> 5238 </span><span class="ft0">Feet<br> 21112 </span><span class="ft0">Feet<br> 21105 </span><span class="ft0">Feet<br> Objective Horizons<br> Pierre Shale Top<br> Three Forks B1<br> 2225<br> Proposed<br> Size<br> Weight<br> Depth<br> Cement Volume<br> Surface Casing<br> 9<br> 5/8<br> 36 </span><span class="ft0">Lb./Ft. </span><span class="ft6">2330<br> Feet<br> 880<br> Sacks<br> Proposed<br> Size<br> Weight(s)<br> Longstring Total Depth<br> Cement Volume<br> Cement Top<br> Top Dakota Sand<br> Longstring Casing<br> 732<br> Lb./Ft.<br> 11462 </span><span class="ft0">Feet MD<br> 11210 </span><span class="ft0">Feet TVD<br> 941<br> Sacks<br> 0<br> Feet<br> 5266<br> Feet<br> Base of Last<br> Last<br> Salt (If<br> Charles </span><span class="ft0">Applicable)<br> Salt (If Applicable)<br> 9594 </span><span class="ft0">Feet<br> Proposed Logs<br> CBL/GR from deepest depth obtainable to ground surface<br> Drilling Mud Type (Vertical Hole - Below Surface Casing)<br> Drilling Mud Type (Lateral)<br> Invert<br> Brine<br> Survey Type in Vertical Portion of Well<br> Survey Frequency: Build Section<br> Survey Frequency: Lateral<br> Survey Contractor<br> MWD </span><span class="ft0">Every 100 Feet<br> 30 </span><span class="ft0">Feet<br> 90 </span><span class="ft0">Feet<br> MS Energy<br> proposed mud/cementing plan,<br> directional plot/plan, $100 fee.<br> <hr> <A name=61></a>Page 2<br> SFN 54269 (08-2005)<br> The Hayes 2-6H and 3-6H1 and the Stangeland 2-7H and 3-7H1 will all be drilled from a common pad.<br> Lateral 2<br> KOP Lateral 2<br> Azimuth Lateral 2<br> Estimated Total Depth Lateral 2<br> KOP Coordinates From Well Head<br> Feet MD<br> Feet MD<br> Feet TVD<br> From WH<br> From WH<br> Formation Entry Point Coordinates From Well Head<br> Bottom Hole Coordinates From Well Head<br> From WH<br> From WH<br> From WH<br> From WH<br> KOP Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> FL<br> Bottom Hole Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> F<br> L<br> Lateral 3<br> KOP Lateral 3<br> Azimuth Lateral 3<br> Estimated Total Depth Lateral 3<br> KOP Coordinates From Well Head<br> Feet MD<br> Feet MD<br> Feet TVD<br> From WH<br> From WH<br> Formation Entry Point Coordinates From Well Head<br> Bottom Hole Coordinates From Well Head<br> From WH<br> From WH<br> From WH<br> From WH<br> KOP Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> F<br> L<br> FL<br> Bottom Hole Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> F<br> L<br> FL<br> Lateral 4<br> KOP Lateral 4<br> Azimuth Lateral 4<br> Estimated Total Depth Lateral 4<br> KOP Coordinates From Well Head<br> Feet MD<br> Feet MD<br> Feet TVD<br> From WH<br> From WH<br> Formation Entry Point Coordinates From Well Head<br> Bottom Hole Coordinates From Well Head<br> From WH<br> From WH<br> From WH<br> From WH<br> KOP Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> FL<br> Bottom Hole Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> FL<br> Lateral 5<br> KOP Lateral 5<br> Azimuth Lateral 5<br> Estimated Total Depth Lateral 5<br> KOP Coordinates From Well Head<br> Feet MD<br> Feet MD<br> Feet TVD<br> From WH<br> From WH<br> Formation Entry Point Coordinates From Well Head<br> Bottom Hole Coordinates From Well Head<br> From WH<br> From WH<br> From WH<br> From WH<br> KOP Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> FL<br> Bottom Hole Footages From Nearest Section Line<br> Qtr-Qtr<br> Section<br> Township<br> Range<br> County<br> FL<br> FL<br> Date<br> I hereby swear or affirm the information provided is true, complete and correct as determined from all available records.<br> 7 / 17 / 2014<br> Signature<br> Printed Name<br> Title<br> ePermit<br> Terry L. Olson<br> Regulatory Compliance Specialist<br> Email Address(es)<br> Permit and File Number<br> API Number<br> Date Approved<br> 29035<br> 105<br> 03650<br> 8 / 1 / 2014<br> Field<br> By<br> CRAZY MAN CREEK<br> Nathaniel Erbele<br> Pool<br> Permit Type<br> Title<br> BAKKEN<br> DEVELOPMENT<br> Petroleum Resource Specialist<br> <hr> <A name=62></a>April 9, 2014<br> RE:<br> Filter Socks and Other Filter Media<br> Leakproof Container Required<br> Oil and Gas Wells<br> Dear Operator,<br> North Dakota Administrative Code Section 43-02-03-19.2 states in part that all waste material associated with<br> exploration or production of oil and gas must be properly disposed of in an authorized facility in accord with all<br> applicable local, state, and federal laws and regulations.<br> Filtration systems are commonly used during oil and gas operations in North Dakota. The Commission is very<br> concerned about the proper disposal of used filters (including filter socks) used by the oil and gas industry.<br> Effective June 1, 2014, a container must be maintained on each well drilled in North Dakota beginning when the<br> well is spud and must remain on-site during clean-out, completion, and flow-back whenever filtration operations<br> are conducted. The on-site container must be used to store filters until they can be properly disposed of in an<br> authorized facility. Such containers must be:<br> leakproof to prevent any fluids from escaping the container<br> covered to prevent precipitation from entering the container<br> placard to indicate only filters are to be placed in the container<br> If the operator will not utilize a filtration system, a waiver to the container requirement will be considered, but<br> only upon the operator submitting a Sundry Notice (Form 4) justifying their request.<br> As previously stated in our March 13, 2014 letter, North Dakota Administrative Code Section 33-20-02.1-01<br> states in part that every person who transports solid waste (which includes oil and gas exploration and production<br> wastes) is required to have a valid permit issued by the North Dakota Department of Health, Division of Waste<br> Management. Please contact the Division of Waste Management at (701) 328-5166 with any questions on the<br> solid waste program. Note oil and gas exploration and production wastes include produced water, drilling mud,<br> invert mud, tank bottom sediment, pipe scale, filters, and fly ash.<br> Thank you for your cooperation.<br> Sincerely,<br> Bruce E. Hicks<br> Assistant Director<br> <hr> <A name=63></a><hr> <A name=64></a><hr> <A name=65></a><hr> <A name=66></a><hr> <A name=67></a><hr> <A name=68></a><hr> <A name=69></a><hr> <A name=70></a><hr> <A name=71></a><hr> <A name=72></a><hr> <A name=73></a><hr> <A name=74></a><hr> <A name=75></a><hr> <A name=76></a><hr> <A name=77></a><hr> <A name=78></a><hr> <A name=79></a><hr> <A name=80></a><hr> <A name=81></a><hr> <A name=82></a><hr> <A name=83></a><hr> <A name=84></a><hr> <A name=85></a><hr> <A name=86></a><hr> <A name=87></a><hr> <A name=88></a><hr> <A name=89></a><hr> <A name=90></a><hr> <A name=91></a><hr> <A name=92></a><hr> <A name="outline"></a><h1>Document Outline</h1> <ul><li>Form 6 - Bakken <li>Form 6 - Bakken <li>Certified Surveys <li>Geo Rpt <li>Form 4 <ul><li>4-OH log waiver <li>4-waiver to container requirement <li>4-spud with small rig <li>4-flow back exemption </ul><li>Form 1 </ul><hr> </BODY> </HTML>
docs/class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload-members.html
Shopify/unity-buy-sdk
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Unity Buy SDK: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Unity Buy SDK </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespace_shopify.html">Shopify</a></li><li class="navelem"><a class="el" href="namespace_shopify_1_1_unity.html">Unity</a></li><li class="navelem"><a class="el" href="namespace_shopify_1_1_unity_1_1_graph_q_l.html">GraphQL</a></li><li class="navelem"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">CustomerCreatePayload</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">Shopify.Unity.GraphQL.CustomerCreatePayload Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Clone</b>() (defined in <a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>customer</b>() (defined in <a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html#ac40d78612c8f52cab978bb1474549944">CustomerCreatePayload</a>(Dictionary&lt; string, object &gt; dataJSON)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Data</b> (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>DataJSON</b> (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Get&lt; T &gt;</b>(string field, string alias=null) (defined in <a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_s_d_k_1_1_abstract_response.html">Shopify.Unity.SDK.AbstractResponse</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">protected</span></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>userErrors</b>() (defined in <a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a>)</td><td class="entry"><a class="el" href="class_shopify_1_1_unity_1_1_graph_q_l_1_1_customer_create_payload.html">Shopify.Unity.GraphQL.CustomerCreatePayload</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> </table></div><!-- contents --> <address class="footer"><small> <a href="https://www.shopify.ca/"> <img class="footer" height="50" src="https://camo.githubusercontent.com/10d580ddb06e6e6ff66ae43959842201195c6269/68747470733a2f2f63646e2e73686f706966792e636f6d2f73686f706966792d6d61726b6574696e675f6173736574732f6275696c64732f31392e302e302f73686f706966792d66756c6c2d636f6c6f722d626c61636b2e737667" alt="Shopify"> </a> </small></address>
people/gpxf3n0j.html
slowe/panelshows
<html> <head> <title>Duncan Weir'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>Duncan Weir's panel show appearances</h1> <p>Duncan Weir (born 1991-05-10<sup><a href="https://en.wikipedia.org/wiki/Duncan_Weir">[ref]</a></sup>) has appeared in <span class="total">1</span> episodes between 2015-2015. <a href="https://en.wikipedia.org/wiki/Duncan_Weir">Duncan Weir on Wikipedia</a>.</p> <div class="performerholder"> <table class="performer"> <tr style="vertical-align:bottom;"> <td><div style="height:100px;" class="performances male" title="1"></div><span class="year">2015</span></td> </tr> </table> </div> <ol class="episodes"> <li><strong>2015-03-20</strong> / <a href="../shows/qos.html">A Question of Sport</a></li> </ol> </div> </body> </html>
clean/Linux-x86_64-4.10.0-2.0.6/extra-dev/8.11.dev/poltac/0.8.11.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>poltac: 1 m 0 s</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / extra-dev</a></li> <li class="active"><a href="">8.11.dev / poltac - 0.8.11</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> poltac <small> 0.8.11 <span class="label label-success">1 m 0 s</span> </small> </h1> <p><em><script>document.write(moment("2020-08-14 07:23:13 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2020-08-14 07:23:13 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-threads base base-unix base conf-findutils 1 Virtual package relying on findutils conf-m4 1 Virtual package relying on m4 coq 8.11.dev Formal proof management system num 1.3 The legacy Num library for arbitrary-precision integer and rational arithmetic ocaml 4.10.0 The OCaml compiler (virtual package) ocaml-base-compiler 4.10.0 Official release 4.10.0 ocaml-config 1 OCaml Switch Configuration ocamlfind 1.8.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;thery@sophia.inria.fr&quot; homepage: &quot;https://github.com/thery/PolTac&quot; bug-reports: &quot;https://github.com/thery/PolTac&quot; dev-repo: &quot;git://github.com/thery/PolTac&quot; license: &quot;LGPL&quot; authors: [&quot;Laurent Théry&quot;] install: [ [make] [make &quot;install&quot;] ] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.11~&quot;} ] synopsis: &quot;A set of tactics to deal with inequalities in Coq over N, Z and R:&quot; tags: [ &quot;logpath:PolTac&quot; ] url { src: &quot;https://github.com/thery/PolTac/archive/v8.11.zip&quot; checksum: &quot;md5=062ba979ec0402f9bb1e1883a2d10a1a&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-poltac.0.8.11 coq.8.11.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 2h opam install -y --deps-only coq-poltac.0.8.11 coq.8.11.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>5 s</dd> </dl> <h2>Install</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam list; echo; ulimit -Sv 16000000; timeout 2h opam install -y -v coq-poltac.0.8.11 coq.8.11.dev</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>1 m 0 s</dd> </dl> <h2>Installation size</h2> <p>Total: 3 M</p> <ul> <li>168 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolSBase.vo</code></li> <li>90 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RSignTac.vo</code></li> <li>88 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolSBase.glob</code></li> <li>80 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZSignTac.vo</code></li> <li>77 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAux.vo</code></li> <li>76 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolFBase.vo</code></li> <li>72 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ReplaceTest.vo</code></li> <li>59 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RAux.vo</code></li> <li>56 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZAux.vo</code></li> <li>55 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolR.vo</code></li> <li>55 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolR.vo</code></li> <li>54 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Rex.vo</code></li> <li>54 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolR.vo</code></li> <li>53 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolR.vo</code></li> <li>53 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NAux.vo</code></li> <li>52 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RAux.glob</code></li> <li>50 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Zex.vo</code></li> <li>50 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolRBase.vo</code></li> <li>50 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZAux.glob</code></li> <li>49 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolS.vo</code></li> <li>49 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolS.vo</code></li> <li>49 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolS.vo</code></li> <li>48 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolS.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolF.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolF.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Nex.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Natex.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolF.vo</code></li> <li>47 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolF.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAux.glob</code></li> <li>44 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RGroundTac.vo</code></li> <li>44 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolTac.vo</code></li> <li>41 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ReplaceTest.glob</code></li> <li>38 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolTac.vo</code></li> <li>38 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolTac.vo</code></li> <li>38 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolTac.vo</code></li> <li>38 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolTac.vo</code></li> <li>37 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NAux.glob</code></li> <li>36 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NSignTac.vo</code></li> <li>35 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolFBase.glob</code></li> <li>30 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolSBase.v</code></li> <li>30 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatSignTac.vo</code></li> <li>29 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RSignTac.glob</code></li> <li>28 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatAux.vo</code></li> <li>27 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NGroundTac.vo</code></li> <li>27 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAuxList.vo</code></li> <li>27 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZSignTac.glob</code></li> <li>25 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatGroundTac.vo</code></li> <li>22 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolRBase.glob</code></li> <li>13 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZSignTac.v</code></li> <li>13 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RSignTac.v</code></li> <li>12 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAux.v</code></li> <li>11 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZAux.v</code></li> <li>11 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatAux.glob</code></li> <li>9 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RAux.v</code></li> <li>9 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NAux.v</code></li> <li>8 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolFBase.v</code></li> <li>7 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Rex.glob</code></li> <li>7 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolR.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatSignTac.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolR.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolR.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolR.glob</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ReplaceTest.v</code></li> <li>6 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Zex.glob</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolR.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolR.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolRBase.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolR.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolR.v</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Natex.glob</code></li> <li>5 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Nex.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolS.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolS.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolS.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolS.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NSignTac.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolF.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolF.glob</code></li> <li>4 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolF.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolF.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/P.vo</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAuxList.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolS.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolS.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RGroundTac.glob</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatSignTac.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolS.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatAux.v</code></li> <li>3 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolS.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolF.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolF.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolF.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Replace2.vo</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolF.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatGroundTac.glob</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NSignTac.v</code></li> <li>2 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RGroundTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Rex.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolAuxList.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Zex.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Nex.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Natex.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatGroundTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/PolTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NGroundTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Replace2.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/P.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NGroundTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolTac.glob</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/P.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NatPolTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/NPolTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/ZPolTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/RPolTac.v</code></li> <li>1 K <code>../ocaml-base-compiler.4.10.0/lib/coq/user-contrib/PolTac/Replace2.glob</code></li> </ul> <h2>Uninstall</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq-poltac.0.8.11</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>
history/bruno.html
valenemendiola/valenemendiola.github.io
--- title: Bruno Timeline layout: timeline --- <link rel="stylesheet" href="{{ site.baseurl }}/css/bruno.css"> <section class="panel-footer"></section> <section id="timeline" class="bg-primary"> <div class="container"> <div class="row"> <div class="text-center"> <h2 class="section-heading">Bruno Timeline</h2> </div> </div> </div> <!-- Timeline begin here --> <div id="btimeline"> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/doc.png" alt=""> </div> <div class="btimeline-content"> <h2>1975</h2> <p></p> <p>“Sexual Orientation or Preference” is added to the AT&T EEO Statement</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content right"> <h2>1987</h2> <p></p> <p>LEAGUE is founded in Denver, CO. It is the first Gay, Lesbian, Bisexual, & Transgendered (GLBT) Employee group in Corporate America.</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"><p>$</p></div> <div class="btimeline-content"> <h2>1989</h2> <p></p> <p>AT&T financial support for the movie Longtime Companion</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content right"> <h2>1990</h2> <p></p> <p>GALEEMAS Founded</p> <p>Safe Space Program created</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/handshake.png" alt=""> </div> <div class="btimeline-content"> <h2>1991</h2> <p></p> <p>BellSouth ANGLE formed as first Employee Affinity Group</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/conference.png" alt=""> </div> <div class="btimeline-content right"> <h2>1992</h2> <p></p> <p>LEAGUE First Professional Development Conference</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content"> <h2>1993</h2> <p></p> <p>GLEAM Founded</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"><img src="{{ site.baseurl }}/img/mail.png" alt=""></div> <div class="btimeline-content right"> <h2>1994</h2> <p></p> <p>AT&T first direct mail to LGBT community</p> <p>Vendor at numerous GLBT events</p> <p>LEAGUE/AT&T Branded Pre-Paid Calling Card</p> <p>Financial support the play by Terrence McNally LOVE!VALOIUUR!COMPASSION</p> <p>Financial support Gay Games in NYC</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content"> <h2>1996</h2> <p></p> <p>AWARE Founded</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/handshake.png" alt=""> </div> <div class="btimeline-content right"> <h2>1997</h2> <p></p> <p>BellSouth NewANGLE formed by LGBT employees</p> <p>SPECTRUM Founded with the merger of AWARE and GALEEMAS</p> <p>Domestic Partner benefits added to BellSouth management benefits package</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/student.png" alt=""> </div> <div class="btimeline-content"> <h2>1999</h2> <p></p> <p>LEAGUE Foundation providing college scholarships</p> <p>Domestic partner benefits added to AT&T benefit package</p> <p>Domestic partner benefits added to BellSouth craft employees benefits package through bargaining.</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/conference.png" alt=""> </div> <div class="btimeline-content right"> <h2>2000 - TODAY</h2> <p></p> <p>HRC 100% score for 11 running years</p> <p>Over 30 chapters & 5100+ members</p> <p>Awarded 50 scholarships totaling over $80,000 through Foundation</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content"> <h2>2003</h2> <p></p> <p>BellSouth first sponsors Atlanta PRIDE</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/star.svg" alt=""> </div> <div class="btimeline-content right"> <h2>2003 - 2006</h2> <p></p> <p>BellSouth participates in Pride events throughout the Southeast, and adds a sponsorship to Birmingham, AL.</p> <p>Partnerships with Event Marketing bring in over $110,000 at Pride events in Birmingham and Atlanta.</p> <p>First ever corporate sponsor in Birmingham Pride’s 30 yr history.</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/handshake.png" alt=""> </div> <div class="btimeline-content"> <h2>2006</h2> <p></p> <p>SPECTRUM and LEAGUE merged to created the NEW LEAGUE</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/handshake.png" alt=""> </div> <div class="btimeline-content right"> <h2>2007</h2> <p></p> <p>New ANGLE and G.L.B.T. – P.R.I.D.E merged into the NEW LEAGUE</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"><p>$</p></div> <div class="btimeline-content"> <h2>2012</h2> <p></p> <p>LEAGUE partners with AT&T & through PRIDE In A Box brought 13.8M in revenue for corporation</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/handshake.png" alt=""> </div> <div class="btimeline-content right"> <h2>2015</h2> <p></p> <p>Out@DirectTV merges into LEAGUE at AT&T</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon"> <img src="{{ site.baseurl }}/img/birthday-cake.png" alt=""> </div> <div class="btimeline-content"> <h2>2017</h2> <p></p> <p>LEAGUE at AT&T turns 30 - the oldest ERG in corporate America</p> </div> </div> <div class="btimeline-item"> <div class="btimeline-icon-last"><p>2021</p></div> </div> </div> <!-- Timeline ends here --> </section> <!-- timeline --> <section class="panel-footer"></section>
Reports/ya/yandex.translator.1.3.0/Yandex.Translator-net40.html
kuhlenh/port-to-core
<!DOCTYPE html> <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"> <head> <meta content="en-us" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-16" http-equiv="Content-Type" /> <title _locid="PortabilityAnalysis0">.NET Portability Report</title> <style> /* Body style, for the entire document */ body { background: #F3F3F4; color: #1E1E1F; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; padding: 0; margin: 0; } /* Header1 style, used for the main title */ h1 { padding: 10px 0px 10px 10px; font-size: 21pt; background-color: #E2E2E2; border-bottom: 1px #C1C1C2 solid; color: #201F20; margin: 0; font-weight: normal; } /* Header2 style, used for "Overview" and other sections */ h2 { font-size: 18pt; font-weight: normal; padding: 15px 0 5px 0; margin: 0; } /* Header3 style, used for sub-sections, such as project name */ h3 { font-weight: normal; font-size: 15pt; margin: 0; padding: 15px 0 5px 0; background-color: transparent; } h4 { font-weight: normal; font-size: 12pt; margin: 0; padding: 0 0 0 0; background-color: transparent; } /* Color all hyperlinks one color */ a { color: #1382CE; } /* Paragraph text (for longer informational messages) */ p { font-size: 10pt; } /* Table styles */ table { border-spacing: 0 0; border-collapse: collapse; font-size: 10pt; } table th { background: #E7E7E8; text-align: left; text-decoration: none; font-weight: normal; padding: 3px 6px 3px 6px; } table td { vertical-align: top; padding: 3px 6px 5px 5px; margin: 0px; border: 1px solid #E7E7E8; background: #F7F7F8; } .NoBreakingChanges { color: darkgreen; font-weight:bold; } .FewBreakingChanges { color: orange; font-weight:bold; } .ManyBreakingChanges { color: red; font-weight:bold; } .BreakDetails { margin-left: 30px; } .CompatMessage { font-style: italic; font-size: 10pt; } .GoodMessage { color: darkgreen; } /* Local link is a style for hyperlinks that link to file:/// content, there are lots so color them as 'normal' text until the user mouse overs */ .localLink { color: #1E1E1F; background: #EEEEED; text-decoration: none; } .localLink:hover { color: #1382CE; background: #FFFF99; text-decoration: none; } /* Center text, used in the over views cells that contain message level counts */ .textCentered { text-align: center; } /* The message cells in message tables should take up all avaliable space */ .messageCell { width: 100%; } /* Padding around the content after the h1 */ #content { padding: 0px 12px 12px 12px; } /* The overview table expands to width, with a max width of 97% */ #overview table { width: auto; max-width: 75%; } /* The messages tables are always 97% width */ #messages table { width: 97%; } /* All Icons */ .IconSuccessEncoded, .IconInfoEncoded, .IconWarningEncoded, .IconErrorEncoded { min-width: 18px; min-height: 18px; background-repeat: no-repeat; background-position: center; } /* Success icon encoded */ .IconSuccessEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconSuccess#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABPElEQVR4Xp1Tv0vDUBi8FqeA4NpBcBLcWnQSApncOnTo4FSnjP0DsnXpH5CxiwbHDg4Zuj4oOEXiJgiC4FDcCkLWmIMc1Pfw+eMgQ77v3Xf3Pe51YKGqqisAEwCR1TIAsiAIblSo6xrdHeJR85Xle3mdmCQKb0PsfqyxxzM8K15HZADl/H5+sHpZwYfxyRjTs+kWwKBx8yoHd2mRiuzF8mkJniWH/13u3Fjrs/EdhsdDFHGB/DLXEJBDLh1MWPAhPo1BLB4WX5yQywHR+m3tVe/t97D52CB/ziG0nIgD/qDuYg8WuCcVZ2YGwlJ3YDugkpR/VNcAEx6GEKhERSr71FuO4YCM4XBdwKvecjIlkSnsO0Hyp/GxSeJAdzBKzpOtnPwyyiPdAZhpZptT04tU+zk7s8czeges//s5C5+CwqrR4/gw+AAAAABJRU5ErkJggg==); } /* Information icon encoded */ .IconInfoEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconInformation#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABHElEQVR4Xs2TsUoDQRRF7wwoziokjZUKadInhdhukR9YP8DMX1hYW+QvdsXa/QHBbcXC7W0CamWTQnclFutceIQJwwaWNLlwm5k5d94M76mmaeCrrmsLYOocY12FcxZFUeozCqKqqgYA8uevv1H6VuPxcwlfk5N92KHBxfFeCSAxxswlYAW/Xr989x/mv9gkhtyMDhcAxgzRsp7flj8B/HF1RsMXq+NZMkopaHe7lbKxQUEIGbKsYNoGn969060hZBkQex/W8oRQwsQaW2o3Ago2SVcJUzAgY3N0lTCZZm+zPS8HB51gMmS1DEYyOz9acKO1D8JWTlafKIMxdhvlfdyT94Vv5h7P8Ky7nQzACmhvKq3zk3PjW9asz9D/1oigecsioooAAAAASUVORK5CYII=); } /* Warning icon encoded */ .IconWarningEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconWarning#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAx0lEQVR4XpWSMQ7CMAxFf4xAyBMLCxMrO8dhaBcuwdCJS3RJBw7SA/QGTCxdWJgiQYWKXJWKIXHIlyw5lqr34tQgEOdcBsCOx5yZK3hCCKdYXneQkh4pEfqzLfu+wVDSyyzFoJjfz9NB+pAF+eizx2Vruts0k15mPgvS6GYvpVtQhB61IB/dk6AF6fS4Ben0uIX5odtFe8Q/eW1KvFeH4e8khT6+gm5B+t3juyDt7n0jpe+CANTd+oTUjN/U3yVaABnSUjFz/gFq44JaVSCXeQAAAABJRU5ErkJggg==); } /* Error icon encoded */ .IconErrorEncoded { /* Note: Do not delete the comment below. It is used to verify the correctness of the encoded image resource below before the product is released */ /* [---XsltValidateInternal-Base64EncodedImage:IconError#Begin#background-image: url(data:image/png;base64,#Separator#);#End#] */ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQElEQVR4XqWTvUoEQRCE6wYPZUA80AfwAQz23uCMjA7MDRQEIzPBVEyNTQUFIw00vcQTTMzuAh/AxEQQT8HF/3G/oGGnEUGuoNnd6qoZuqltyKEsyzVJq5I6rnUp6SjGeGhESikzzlc1eL7opfuVbrqbU1Zw9NCgtQMaZpY0eNnaaL2fHusvTK5vKu7sjSS1Y4y3QUA6K3e3Mau5UFDyMP7tYF9o8cAHZv68vipoIJg971PZIZ5HiwdvYGGvFVFHmGmZ2MxwmQYPXubPl9Up0tfoMQGetXd6mRbvhBw+boZ6WF7Mbv1+GsHRk0fQmPAH1GfmZirbCfDJ61tw3Px8/8pZsPAG4jlVhcPgZ7adwNWBB68lkRQWFiTgFlbnLY3DGGM7izIJIyT/jjIvEJw6fdJTc6krDzh6aMwMP9bvDH4ADSsa9uSWVJkAAAAASUVORK5CYII=); } </style> </head> <body> <h1 _locid="PortabilityReport">.NET Portability Report</h1> <div id="content"> <div id="submissionId" style="font-size:8pt;"> <p> <i> Submission Id&nbsp; 75c6bba9-ed1b-49b7-bd7b-cd3884cd46fa </i> </p> </div> <h2 _locid="SummaryTitle"> <a name="Portability Summary"></a>Portability Summary </h2> <div id="summary"> <table> <tbody> <tr> <th>Assembly</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> </tr> <tr> <td><strong><a href="#Yandex.Translator">Yandex.Translator</a></strong></td> <td class="text-center">100.00 %</td> <td class="text-center">99.55 %</td> <td class="text-center">100.00 %</td> <td class="text-center">99.55 %</td> </tr> </tbody> </table> </div> <div id="details"> <a name="Yandex.Translator"><h3>Yandex.Translator</h3></a> <table> <tbody> <tr> <th>Target type</th> <th>ASP.NET 5,Version=v1.0</th> <th>Windows,Version=v8.1</th> <th>.NET Framework,Version=v4.6</th> <th>Windows Phone,Version=v8.1</th> <th>Recommended changes</th> </tr> <tr> <td>System.Type</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td style="padding-left:2em">GetProperties</td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td class="IconSuccessEncoded"></td> <td class="IconErrorEncoded"></td> <td></td> </tr> <tr> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> <td>&nbsp;</td> </tr> </tbody> </table> <p> <a href="#Portability Summary">Back to Summary</a> </p> </div> </div> </body> </html>
app/index.html
bitspill/Sia-UI
<!DOCTYPE html> <html> <head> <title>Sia</title> <!-- Stylesheets --> <link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" href="css/pure-min.css"> <link rel="stylesheet" href="css/grids-responsive-min.css"> <link rel="stylesheet" href="css/roboto-condensed-min.css"> <link rel="stylesheet" href="css/general.css"> </head> <body> <!-- Header for UI --> <div class="pure-g header"> <div class="pure-u-1-5 logo-container"> <img src="assets/siaLogo.svg" height="50" class="logo"> </div> <div class='pure-u-4-5 button-container'> <div class='header-button' id='update-button'> <i class='fa fa-arrow-circle-o-up'></i> Check for Update </div> </div> </div> <!-- Full body of UI --> <div class="pure-g body"> <!-- Sidebar --> <div class="pure-u-1-5" id="sidebar"> </div> <!-- Mainbar --> <div class="pure-u" id="mainbar"> </div> </div> <span id='tooltip'>Tooltip</span> <div class='notification-container'> <div class='blueprint notification'> <div class='icon'> <i class='fa'></i> </div> <div class='content'></div> </div> </div> <!-- Javascript --> <script> const WebFrame = require('web-frame'); const RendererIPC = require('ipc'); const ElectronScreen = require('screen'); const Process = require('child_process').spawn; const Path = require('path'); const Fs = require('fs'); const Shell = require('shell'); const $ = require('./js/jquery.min.js'); </script> <script src='js/daemonManager.js'></script> <script src='js/pluginManager.js'></script> <script src='js/uiManager.js'></script> <script> var UI = new UIManager(); var Daemon = new DaemonManager(); var Plugins = new PluginManager(); window.onload = UI.init; window.onbeforeunload = UI.kill; </script> </body> </html>
cw-data/1000-1999/CW0000001156.html
BuzzAcademy/idioms-moe-unformatted-data
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="zh-TW"> <head> <title>教育部《成語典》</title> <meta http-equiv="Pragma" content="no-cache"> <meta name="AUTHOR" content="FlySheet Information Services, Inc."> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel=stylesheet type="text/css" href="/cydic/styles.css?v=1331799287.0"> </head> <body bgcolor=snow > <form method=post name=main action="/cgi-bin/cydic/gsweb.cgi"> <script language=JavaScript src="/cydic/prototype.js?v=1234435343.0"></script> <script language=JavaScript src="/cydic/swfobject.js?v=1215332700.0"></script> <script language=JavaScript src="/cydic/dicsearch.js?v=1306830621.0"></script> <script language=JavaScript src="/cydic//yui/yui2.3.0/build/yahoo-dom-event/yahoo-dom-event.js"></script> <script language=JavaScript src="/cydic/cydicpage/mycookie.js?v=1247566755.0"></script> <link rel="stylesheet" type="text/css" href="/cydic/cydicpage/cyt.css?v=1398321301.0" /> <link rel="stylesheet" type="text/css" href="/cydic/fontcss.css?v=1301307888.0" /> <link rel="stylesheet" type="text/css" href="/cydic/fulu_f.css?v=1298448600.0" /> <script type="text/javascript"> <!-- function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; } function MM_preloadImages() { //v3.0 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } //--> </script> <input type=hidden name="o" value="e0"> <input type=hidden name="ccd" value="xxxxxx"> <input type=hidden name="sec" value="sec3"> <SCRIPT language=JavaScript1.1> <!-- exiturl = "1"; var showcountdown = "" var exitalerturl = "/cydic/index.htm"; exitalertmsg = "因您閒置超過30分鐘,系統已自動登出,歡迎再次登入使用。請按下〝確定〞回系統首頁,或按〝取消〞關閉視窗。"; var secondsleft = 30 * 60; var showntimeout = false; // has the alert been shown? var timewin; // handle for the timeout warning window var remind = 5 * 60; // remind user when this much time is left function fsUnload() { cleartimeout(); // BEGIN: FSPage plugin for the JS-onUnload() event. // END: FSPage plugin for the JS-onUnload() event. } function cleartimeout() { if ((timewin != null) && !(timewin.closed)) timewin.close(); } function showtimeout() { if (secondsleft <= 0){ if (exiturl != ""){ if (exitalertmsg!=""){ if (confirm(exitalertmsg)){ window.location.href = exitalerturl; } else{ window.close(); } } else{ parent.location.href = exiturl; } } //self.close(); return; } if (showntimeout == false && secondsleft > 0 && secondsleft <= remind) { } var minutes = Math.floor (secondsleft / 60); var seconds = secondsleft % 60; if (seconds < 10) seconds = "0" + seconds; if (showcountdown){ window.status = toLatin("last time:" + minutes + ":" + seconds); } var period = 1; setTimeout("showtimeout()", period*1000); secondsleft -= period; } // --> window.onload = function (){ showtimeout(); } </SCRIPT> <script language="JavaScript"> var _version = 1.0 </script> <script language="JavaScript1.1"> _version = 1.1 </script> <script language="JavaScript1.2"> _version = 1.2 </script> <script language="JavaScript1.1"> function toLatin(x) { if (_version >= 1.2 && ("zh" == "fr" || "zh" == "es")) { var pattern = new RegExp("&#([0-9]+);"); while ((result = pattern.exec(x)) != null) { x = x.replace(result[0], String.fromCharCode(RegExp.$1)); } x = x.replace(/&nbsp;/g, ' '); } return (x); } </script> <div id="pageall"> <div id="gamelink"> <a href="/cydic/flash/game/flash001/game.html" target="_blank" title="成語遊戲">成語遊戲</a> <a href="/cydic/flash/game/flash002/game2.html" target="_blank" title="成語遊戲">成語遊戲</a> </div> <div id="top"> <h1><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydicexit" title="教育部成語典"><img src="/cydic/images/logo_text.jpg" alt="教育部成語典" align="left" /></a></a></h1> <p> <span class="map"> <a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec10&init=1&active=webguide" title="網站導覽">網站導覽</a>│ <a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydic_switch" title="圖文版">圖文版</a> </span> <span class="een"> <a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec1&index=1&active=index&switchlanguage=eng" title="ENGLISH VERSION"></a></span> </p> <ul> <li><a title="3a up ins" accessKey="u" href="#" style="position: absolute;top: 10px; left:-30px;color:#E6D29F;" > <font class="fontcenter">:::</font></a></li> <li class="link1"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&func=diccydicfunc.cydicexit" title="首頁">首頁</a></li> <li class="link2"><a href="/cydic/userguide/userguide1/userguide_top.htm" title="使用說明" target=_blank>使用說明</a></li> <li class="link3"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec8&init=1&active=editor" title="編輯說明">編輯說明</a></li> <li class="link4"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec6&ducfulu=1&init=1&active=dicfulu&dicfululv1=1" title="辭典附錄">辭典附錄</a></li> <li class="link5"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec7&active=qadb&brwtype=browse&brwval=id%3D%27QR%2A%27&disparea=QR&init=1" title="常見問題">常見問題</a></li> </ul> </div> <!-- top --> <div id="menu"> <ul> <a title="3a menu ins" accessKey="m" href="#" style="position: absolute;top: 40px; left:-30px;color:#969C32;" > <font class="fontcenter">:::</font></a><li><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec1&index=1&active=index" class="m1clk" title="基本檢索"></a></li> <li class="m2" title="進階檢索"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&&sec=sec3&op=ma&init=1&advance=1&active=advance">進階檢索</a></li> <li class="m3" title="附錄檢索"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec4&fulu=1&init=1&active=fulu">附錄檢索</a></li> <li class="m4" title="電子書瀏覽"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec5&ebook=1&init=1&active=ebook">電子書瀏覽</a></li> </ul> </div> <a title="3a center ins" accessKey="c" href="#" style="position: absolute;color:red;" > <font class="fontcenter">:::</font></a> <div id="contents"> <div id="contents2"> <div class="search"> <input name="basicopt" id="basicopt1" type="radio" value="1" checked/> <font class="chi_12">成語檢索</font> <input name="basicopt" id="basicopt2" type="radio" value="2" /> <font class="chi_12">義類檢索<font> <input type="text" name="qs0" id="qs0" size="10" class="s1b" onKeypress="return dealsubmitsearch(event, '0', 'qs0', '請輸入檢索字串!')" onclick="this.focus();" onmouseover="this.focus();" onfocus="this.focus();" /> <input name="input" type="submit" class="s2f" value="檢索" onclick="return cydic_basic_cksearch(event, '0', 'qs0', '請輸入檢索字串', '請輸入檢索字詞,可搭配符號檢索/請鍵入成語語義類別');;" onKeypress="" /> </div> <!-- div search --> <div class="prbtnbar"><table cellspacing=0 cellpadding=2 align=right summary="system htm table"><tr> <td><label for=browse></label><input type=image border=0 align=top hspace=0 style="cursor:hand" alt="標題瀏覽" onMouseOver="mover(event)" onMouseOut="mout(0,event)" onblur="mout(0,event)" onfocus="mover(event)" name=browse id="browse" src="/cydic/images/browse.gif"></td></tr></table></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <table class="fmt0table"> <tr><td colspan=2> <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"><div class="layoutclass_first"><table class="tableoutfmt2"><tr><th class="std1"><b>成語&nbsp;</b></th><td class="std2"><font class=inverse>顧此失彼</font></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">gù cǐ shÄ« bǐ</font></td></tr> <tr><th class="std1"><b>釋義&nbsp;</b></th><td class="std2"></font> 注意這個,卻忽略了那個。謂作戰時不能全面防守。語本《隋書.卷五七.薛道衡列傳》。後多用「顧此失彼」指做事時不能全面兼顧。△「<a href="/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&gourl=%3De0%26sec%3Dsec1%26op%3Dsid%3D%22CW0000001827%22.%26v%3D-1" class="clink" target=_blank>捉襟見肘</a>」</font></td></tr> </td></tr></table></div> <!-- layoutclass_first --><div class="layoutclass_second"><h5 class="btitle2">顧此失彼</h5> <div class="leftm"><ul><li class="leftm1n"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=11" title="音讀與釋義" class=clink></a></li> <li class="leftm2"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=12" title="典源"></a></li> <li class="leftm8"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=13" title="典故說明"></a></li> <li class="leftm3"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=14" title="書證"></a></li> <li class="leftm4"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=15" title="用法說明"></a></li> <li class="leftm6"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=17" title="辨識"></a></li> <li class="leftm5"><a href="/cgi-bin/cydic/gsweb.cgi?ccd=xxxxx&o=e0&sec=sec3&op=v&view=37-1&fmt=16" title="參考說明"></a></li> </ul></div></div> <!-- layoutclass_second --></div> <!-- layoutclass --> </td></tr> </table> <table class="referencetable1"> <tr><td> 本頁網址︰<input type="text" value="http://dict.idioms.moe.edu.tw/cgi-bin/cydic/gsweb.cgi?o=dcydic&schfmt=text&searchid=CW0000001156" size=60 onclick="select()" readonly=""> </td></tr> </table> <input type=hidden name=r1 value=1> <input type=hidden name=op value="v"> <div class="prbtnbar"><table cellspacing=0 cellpadding=2 align=right summary="system htm table"><tr> <td><label for=browse></label><input type=image border=0 align=top hspace=0 style="cursor:hand" alt="標題瀏覽" onMouseOver="mover(event)" onMouseOut="mout(0,event)" onblur="mout(0,event)" onfocus="mover(event)" name=browse id="browse" src="/cydic/images/browse.gif"></td></tr></table></div>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </div> <!-- div contents2 --> <link rel="stylesheet" type="text/css" href="/cydic/yui/yui2.3.0/build/container/assets/skins/sam/container.css?v=1185870262.0" /> <script language=JavaScript src="/cydic/yui/yui2.3.0/build/utilities/utilities.js?v=1185870262.0"></script> <script language=JavaScript src="/cydic/yui/yui2.3.0/build/button/button-beta.js?v=1185870256.0"></script> <script language=JavaScript src="/cydic/yui/yui2.3.0/build/container/container.js?v=1185870256.0"></script> <div id="keybordarea"> </div> <script type="text/javascript" language="JavaScript"> var inputfield = "qs0" String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); } function inputkeyb(digit){ var src = document.getElementById(inputfield).value.trim(); var dig = unescape(digit); //ps("dig", dig); if (dig =="空白"){dig = " "} else if (dig == "ㄧ"){dig = "|"} ///// ³B²z²MÁn³¡¥÷. £»£¹£¬ dotchar = "˙"; if (dig == "˙"){ var oldv = document.getElementById(inputfield).value; oldv = oldv + dotchar; //ps("oldv", oldv); pwlst = oldv.split(' ') newlst = [] for(c=0; c < pwlst.length; c++){ //ps("v", pwlst[c]); indv = pwlst[c].indexOf('˙'); if (indv != -1){ var quote = /˙/g; val = pwlst[c].replace(quote, ""); newlst.push("˙"+val); } else{ newlst.push(pwlst[c]); } } oldv = newlst.join(' ') } ///// ¤@¯ë¤è¦¡ else{ var oldv = document.getElementById(inputfield).value; oldv += dig; } document.getElementById(inputfield).focus(); document.getElementById(inputfield).value = oldv; } </script> <div id="line"></div> <div id="foot"> <span class="logodiv1"> <img src="/cydic/images/stand_unitlogo.png" class="logoimg1" border="0" align="absmiddle"> </span><br> <a href="http://www.edu.tw/" target="blank"> <img src="/cydic/images/logo.gif" alt="教育部logo" width="46" height="36" align="absmiddle" /> </a> <span class="ff">中華民國教育部版權所有</span><span class="ffeng">&copy;2010 Ministry of Education, R.O.C. All rights reserved.</span> <span class="copyright">線上:N 今日人次:N 總人次:N</span><br><span class="ff"><a href="mailto:april0212@mail.naer.edu.tw"><img src="/cydic/images/mail_f.gif" border=0 alt="mail to our" title="聯絡我們" ></a>|<a href="#">隱私權政策宣告</a>|<a href="#">連結授權聲明</a>|建議使用</span><span class="ffeng">IE8.0、Firefox3.6</span><span class="ff">以上版本瀏覽器及解析度</span><span class="ffeng">1024*768</span> <a href="http://www.webguide.nat.gov.tw/enable.jsp?category=20110921092959" title="無障礙網站" target=_blank><img src="/cydic/images/aplus.jpg" alt="通過A+網路等級無障礙網頁檢視" width="88" height="31" align="absmiddle" /></a> </div> </div> <!-- contents --> <script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-44370428-1', 'moe.edu.tw');ga('send', 'pageview');</script> </div> <!-- pageall --> </form> </body> </html>
src/app/archive/archive.component.html
Znow/ZnowBlog
<ol class="list-unstyled"> <li *ngFor="let archive of archives"><a href="#">{{archive}}</a></li> </ol> <!--<ol class="list-unstyled"> <li><a href="#">March 2014</a></li> <li><a href="#">February 2014</a></li> <li><a href="#">January 2014</a></li> <li><a href="#">December 2013</a></li> <li><a href="#">November 2013</a></li> <li><a href="#">October 2013</a></li> <li><a href="#">September 2013</a></li> <li><a href="#">August 2013</a></li> <li><a href="#">July 2013</a></li> <li><a href="#">June 2013</a></li> <li><a href="#">May 2013</a></li> <li><a href="#">April 2013</a></li> </ol>-->
docs/html/iter_8h.html
yuikns/argcv
<!-- HTML header for doxygen 1.8.7--> <!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.9.1"/> <title>ArgCV: argcv/cxx/base/iter.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="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <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"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function() { init_search(); }); /* @license-end */ </script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script> <script type="text/javascript" async="async" src="http://www.mathjax.org/mathjax/MathJax.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="doxygenextra.css" rel="stylesheet" type="text/css"/> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="topbanner"><a href="https://github.com/argcv/argcv" title="ArgCV GitHub"><i class="githublogo"></i></a></div> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.svg" 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.svg" alt=""/></a> </span> </div> <!-- end header part --> <!-- Generated by Doxygen 1.9.1 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search','.html'); /* @license-end */ </script> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function(){initNavTree('iter_8h.html',''); initResizable(); }); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> </div> <div class="headertitle"> <div class="title">iter.h File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#include &lt;memory&gt;</code><br /> <code>#include &quot;<a class="el" href="cxx_2base_2macros_8h_source.html">argcv/cxx/base/macros.h</a>&quot;</code><br /> <code>#include &quot;<a class="el" href="types_8h_source.html">argcv/cxx/base/types.h</a>&quot;</code><br /> </div> <p><a href="iter_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">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classargcv_1_1_iterator.html">argcv::Iterator&lt; T &gt;</a></td></tr> <tr class="memdesc:"><td class="mdescLeft">&#160;</td><td class="mdescRight">a iterable element <a href="classargcv_1_1_iterator.html#details">More...</a><br /></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:namespaceargcv"><td class="memItemLeft" align="right" valign="top"> &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceargcv.html">argcv</a></td></tr> <tr class="memdesc:namespaceargcv"><td class="mdescLeft">&#160;</td><td class="mdescRight">Type definitions. <br /></td></tr> <tr class="separator:"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> </div><!-- contents --> </div><!-- doc-content --> <!-- HTML footer for doxygen 1.8.7--> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_35fe26ecdb9ad765d53fed138617535f.html">argcv</a></li><li class="navelem"><a class="el" href="dir_f4c1d4d5e01226d96972d9b937662d15.html">cxx</a></li><li class="navelem"><a class="el" href="dir_8406e34757e41b9fe978b83e765508d4.html">base</a></li><li class="navelem"><a class="el" href="iter_8h.html">iter.h</a></li> </ul> </div> </body> </html>
kettle-data-integration/docs/api/org/pentaho/di/ui/job/entries/ftpdelete/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.ui.job.entries.ftpdelete </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/ui/job/entries/ftpdelete/package-summary.html" target="classFrame">org.pentaho.di.ui.job.entries.ftpdelete</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="JobEntryFTPDeleteDialog.html" title="class in org.pentaho.di.ui.job.entries.ftpdelete" target="classFrame">JobEntryFTPDeleteDialog</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
DjangoWebProject/gitinvolved/templates/admin/base_site.html
raoariel/git-involved
{% extends "admin/base.html" %} {% block title %}{{ title }} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block branding %} <h1 id="site-name"><a href="{% url 'admin:index' %}">Git Involved Administration</a></h1> {% endblock %} {% block nav-global %}{% endblock %}
conf/tmpl.html
Switajski/react-processed-grid
<!DOCTYPE html> <html lang="en-us"> <head> <title>{%= o.htmlWebpackPlugin.options.title %}</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link rel="stylesheet" href="node_modules/react-datagrid/index.css" > {% if (o.htmlWebpackPlugin.options.production) { %} <link rel="stylesheet" href="app.{%=o.webpack.hash%}.css" media="all"> {% } %} </head> <body class="index"> <div id='app'></div> {% for (var chunk in o.htmlWebpackPlugin.files.chunks) { %} <script src="{%=o.htmlWebpackPlugin.files.chunks[chunk].entry %}"></script> {% } %} </body> </html>
LanguageStatistic/templates/LanguageStatistic/index.html
alani1/KALanguageReport
{% extends "LanguageStatistic/main.html" %} {% load staticfiles %} {% block body %} <h1>Status for Khan Academy's I18N Initiatives </h1> <div id="tabs"><ul> <li><a href="#Test">Test</a></li> <li><a href="#Live">Live</a></li> <li><a href="#Rockstar">Rockstar</a> </li></ul> {% if targets %} {% for t in targets %} <div id="{{t}}"> <table id="keywords" class="sort" cellspacing="0" cellpadding="0"><thead><th class="lalign"></th><th></th><th>Dub</th><th>Amara</th><th colspan="3" class="center">Crowdin</th></thead> <thead><th class="lalign">Language</th><th></th><th>Hours</th><th>Subtitles</th><th>Left*</th><th>Speed*</th><th>ETA*</th></thead> {% if languageList %} {% for lang in languageList %} {% if lang.target == t %} <tr><td><a href="{{ base }}{{ lang.code }}/{{ lang.target }}SiteStatistic.html">{{ lang.name }}</a></td><td>{{ lang.data.progress | safe }}</td> <td>{{ lang.data.D.left }}</td><td>{{ lang.data.S.left }}</td><td>{{ lang.data.C.left }}</td><td>{{ lang.data.C.speed }}</td><td>{{ lang.data.C.eta }}</td></tr> {% endif %} {% endfor %} {% endif %} </table><center>*Speed and ETA calculated for Crowdin Words only (if your language has less than 30 days data or recently changed Target Speed and ETA might be wrong)</center> </div> {% endfor %} {% endif %} {% endblock %}
2014/08/hidden-social-section-showcase/index.html
sanghkaang/sanghkaang.github.io
<!DOCTYPE html> <html lang="en-us"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="generator" content="Hugo 0.54.0 with theme Tranquilpeak 0.4.3-BETA"> <title>Hidden social section showcase</title> <meta name="author" content="Sanghun Kang"> <meta name="keywords" content=""> <link rel="icon" href="https://sanghunka.github.io/favicon-btc.png"> <meta name="description" content="This post is used to show how a site looks if the social section is hidden."> <meta property="og:description" content="This post is used to show how a site looks if the social section is hidden."> <meta property="og:type" content="blog"> <meta property="og:title" content="Hidden social section showcase"> <meta property="og:url" content="/2014/08/hidden-social-section-showcase/"> <meta property="og:site_name" content="Keep Moving"> <meta name="twitter:card" content="summary"> <meta name="twitter:title" content="Keep Moving"> <meta name="twitter:description" content="This post is used to show how a site looks if the social section is hidden."> <meta property="og:image" content="//www.gravatar.com/avatar/286acbc504a86d12987dfa5cd3782a41?s=640"> <meta property="og:image" content="//d1u9biwaxjngwg.cloudfront.net/cover-image-showcase/city-750.jpg"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha256-eZrrJcwDc/3uDhsdt61sL2oOBY362qM3lon1gyExkL0=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.min.css" integrity="sha256-vuXZ9LGmmwtjqFX1F+EKin1ThZMub58gKULUyf0qECk=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/helpers/jquery.fancybox-thumbs.min.css" integrity="sha256-SEa4XYAHihTcEP1f5gARTB2K26Uk8PsndQYHQC1f4jU=" crossorigin="anonymous" /> <link rel="stylesheet" href="https://sanghunka.github.io/css/style-jsjn0006wyhpyzivf6yceb31gvpjatbcs3qzjvlumobfnugccvobqwxnnaj8.min.css" /> </head> <body> <div id="blog"> <header id="header" data-behavior="4"> <i id="btn-open-sidebar" class="fa fa-lg fa-bars"></i> <div class="header-title"> <a class="header-title-link" href="https://sanghunka.github.io/">Keep Moving</a> </div> <a class="header-right-picture " href="https://sanghunka.github.io/#about"> <img class="header-picture" src="//www.gravatar.com/avatar/286acbc504a86d12987dfa5cd3782a41?s=90" alt="Author&#39;s picture" /> </a> </header> <nav id="sidebar" data-behavior="4"> <div class="sidebar-container"> <div class="sidebar-profile"> <a href="https://sanghunka.github.io/#about"> <img class="sidebar-profile-picture" src="//www.gravatar.com/avatar/286acbc504a86d12987dfa5cd3782a41?s=110" alt="Author&#39;s picture" /> </a> <h4 class="sidebar-profile-name">Sanghun Kang</h4> <h5 class="sidebar-profile-bio"><strong>COOL</strong></h5> </div> <ul class="sidebar-buttons"> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/"> <i class="sidebar-button-icon fa fa-lg fa-home"></i> <span class="sidebar-button-desc">Home</span> </a> </li> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/categories"> <i class="sidebar-button-icon fa fa-lg fa-bookmark"></i> <span class="sidebar-button-desc">Categories</span> </a> </li> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/tags"> <i class="sidebar-button-icon fa fa-lg fa-tags"></i> <span class="sidebar-button-desc">Tags</span> </a> </li> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/archives"> <i class="sidebar-button-icon fa fa-lg fa-archive"></i> <span class="sidebar-button-desc">Archives</span> </a> </li> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/#about"> <i class="sidebar-button-icon fa fa-lg fa-question"></i> <span class="sidebar-button-desc">About</span> </a> </li> </ul> <ul class="sidebar-buttons"> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://github.com/sanghunka" target="_blank" rel="noopener"> <i class="sidebar-button-icon fa fa-lg fa-github"></i> <span class="sidebar-button-desc">GitHub</span> </a> </li> </ul> <ul class="sidebar-buttons"> <li class="sidebar-button"> <a class="sidebar-button-link " href="https://sanghunka.github.io/index.xml"> <i class="sidebar-button-icon fa fa-lg fa-rss"></i> <span class="sidebar-button-desc">RSS</span> </a> </li> </ul> </div> </nav> <div id="main" data-behavior="4" class=" hasCoverMetaIn "> <article class="post" itemscope itemType="http://schema.org/BlogPosting"> <div class="post-header main-content-wrap text-left"> <h1 class="post-title" itemprop="headline"> Hidden social section showcase </h1> <div class="postShorten-meta post-meta"> <time itemprop="datePublished" datetime="2014-08-17T00:00:00Z"> August 17, 2014 </time> <span>in</span> <a class="category-link" href="https://sanghunka.github.io/categories/tranquilpeak-sample">tranquilpeak-sample</a> </div> </div> <div class="post-content markdown" itemprop="articleBody"> <div class="main-content-wrap"> <p>This post is used to show how a site looks if the social section is hidden.</p> <p>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.</p> </div> </div> <div id="post-footer" class="post-footer main-content-wrap"> <div class="post-actions-wrap"> <nav > <ul class="post-actions post-action-nav"> <li class="post-action"> <a class="post-action-btn btn btn--default tooltip--top" href="https://sanghunka.github.io/2014/10/tags-plugins-showcase/" data-tooltip="Tags plugins showcase"> <i class="fa fa-angle-left"></i> <span class="hide-xs hide-sm text-small icon-ml">NEXT</span> </a> </li> <li class="post-action"> <a class="post-action-btn btn btn--default tooltip--top" href="https://sanghunka.github.io/2014/08/hidden-tag-section-showcase/" data-tooltip="Hidden tag section showcase"> <span class="hide-xs hide-sm text-small icon-mr">PREVIOUS</span> <i class="fa fa-angle-right"></i> </a> </li> </ul> </nav> <ul class="post-actions post-action-share" > <li class="post-action"> <a class="post-action-btn btn btn--default" href="#disqus_thread"> <i class="fa fa-comment-o"></i> </a> </li> <li class="post-action"> <a class="post-action-btn btn btn--default" href="#"> <i class="fa fa-list"></i> </a> </li> </ul> </div> <div id="disqus_thread"> <noscript>Please enable JavaScript to view the <a href="//disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> </div> </article> <footer id="footer" class="main-content-wrap"> <span class="copyrights"> &copy; 2019 <a href="https://github.com/sanghunka">sanghunka</a>. All Rights Reserved </span> </footer> </div> <div id="bottom-bar" class="post-bottom-bar" data-behavior="4"> <div class="post-actions-wrap"> <nav > <ul class="post-actions post-action-nav"> <li class="post-action"> <a class="post-action-btn btn btn--default tooltip--top" href="https://sanghunka.github.io/2014/10/tags-plugins-showcase/" data-tooltip="Tags plugins showcase"> <i class="fa fa-angle-left"></i> <span class="hide-xs hide-sm text-small icon-ml">NEXT</span> </a> </li> <li class="post-action"> <a class="post-action-btn btn btn--default tooltip--top" href="https://sanghunka.github.io/2014/08/hidden-tag-section-showcase/" data-tooltip="Hidden tag section showcase"> <span class="hide-xs hide-sm text-small icon-mr">PREVIOUS</span> <i class="fa fa-angle-right"></i> </a> </li> </ul> </nav> <ul class="post-actions post-action-share" > <li class="post-action"> <a class="post-action-btn btn btn--default" href="#disqus_thread"> <i class="fa fa-comment-o"></i> </a> </li> <li class="post-action"> <a class="post-action-btn btn btn--default" href="#"> <i class="fa fa-list"></i> </a> </li> </ul> </div> </div> <div id="share-options-bar" class="share-options-bar" data-behavior="4"> <i id="btn-close-shareoptions" class="fa fa-close"></i> <ul class="share-options"> <li class="share-option"> <a class="share-option-btn" target="new" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fsanghunka.github.io%2F2014%2F08%2Fhidden-social-section-showcase%2F"> <i class="fa fa-facebook-official"></i><span>Share on Facebook</span> </a> </li> <li class="share-option"> <a class="share-option-btn" target="new" href="https://twitter.com/intent/tweet?text=https%3A%2F%2Fsanghunka.github.io%2F2014%2F08%2Fhidden-social-section-showcase%2F"> <i class="fa fa-twitter"></i><span>Share on Twitter</span> </a> </li> <li class="share-option"> <a class="share-option-btn" target="new" href="https://plus.google.com/share?url=https%3A%2F%2Fsanghunka.github.io%2F2014%2F08%2Fhidden-social-section-showcase%2F"> <i class="fa fa-google-plus"></i><span>Share on Google&#43;</span> </a> </li> </ul> </div> <div id="share-options-mask" class="share-options-mask"></div> </div> <div id="about"> <div id="about-card"> <div id="about-btn-close"> <i class="fa fa-remove"></i> </div> <img id="about-card-picture" src="//www.gravatar.com/avatar/286acbc504a86d12987dfa5cd3782a41?s=110" alt="Author&#39;s picture" /> <h4 id="about-card-name">Sanghun Kang</h4> <div id="about-card-bio"><strong>COOL</strong></div> <div id="about-card-job"> <i class="fa fa-briefcase"></i> <br/> Data Engineer&amp;Analyst </div> <div id="about-card-location"> <i class="fa fa-map-marker"></i> <br/> South Korea </div> </div> </div> <div id="algolia-search-modal" class="modal-container"> <div class="modal"> <div class="modal-header"> <span class="close-button"><i class="fa fa-close"></i></span> <a href="https://algolia.com" target="_blank" rel="noopener" class="searchby-algolia text-color-light link-unstyled"> <span class="searchby-algolia-text text-color-light text-small">by</span> <img class="searchby-algolia-logo" src="https://www.algolia.com/static_assets/images/press/downloads/algolia-light.svg"> </a> <i class="search-icon fa fa-search"></i> <form id="algolia-search-form"> <input type="text" id="algolia-search-input" name="search" class="form-control input--large search-input" placeholder="Search" /> </form> </div> <div class="modal-body"> <div class="no-result text-color-light text-center">no post found</div> <div class="results"> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2018/01/zsh%EC%97%90-%EC%84%A4%EC%A0%95%ED%95%B4%EB%91%94-alias%EB%A5%BC-crontab%EC%97%90-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B3%A0-%EC%8B%B6%EC%9D%84%EB%95%8C/"> <h3 class="media-heading">zsh에 설정해둔 alias를 crontab에 사용하고 싶을때</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Jan 1, 2018 </span> </span> <div class="media-content hide-xs font-merryweather">Put your functions in .zshenv. .zshenv is sourced on all invocations of the shell, unless the -f option is set. It should contain commands to set the command search path, plus other important environment variables. .zshenv should not contain commands that produce output or assume the shell is attached to a tty. .zshrc is sourced in interactive shells. It should contain commands to set up aliases, functions, options, key bindings, etc.</div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2018/01/%EC%95%A0%EB%93%9C%EC%9B%8C%EC%A6%88-%ED%95%99%EC%8A%B5/"> <h3 class="media-heading">애드워즈 학습</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Jan 1, 2018 </span> </span> <div class="media-content hide-xs font-merryweather">강의 1: 온라인 광고의 가치에 대한 이해 이 모듈에서 학습할 내용 온라인 광고 및 애드워즈의 장점 Google의 광고 네트워크 애드워즈의 작동 원리 1.1 온라인 광고 및 애드워즈의 장점 광고 타겟팅 키워드 광고 위치 연령,위치,언어 요일,시간대,게재빈도 기기 비용관리 월, 일, 또는 광고 단위로 지출 비용 설정 가능 광고 효과 측정 캠페인 관리 MCC, 애드워즈 에디터등 애드워즈 광고 1.2 Google의 광고 네트워크 검색 네트워크</div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/raspberrypi-stretch-with-desktop%EC%97%90%EC%84%9C-%EC%8A%A4%ED%8A%B8%EB%9D%BC%ED%8B%B0%EC%8A%A4-qt%EC%9B%94%EB%A0%9B-%EB%B9%8C%EB%93%9C%ED%95%98%EA%B8%B0/"> <h3 class="media-heading">Raspberrypi stretch with desktop에서 스트라티스 qt월렛 빌드하기</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"><p>Guide대로 Jessie에서 하면 편합니다만 Stretch에서 하시길 원하신다면</p></div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/airflow-6.-multi-cluster%EC%97%90%EC%84%9C-airflow-%EC%8B%A4%ED%96%89%ED%95%98%EA%B8%B0/"> <h3 class="media-heading">[airflow] 6. Multi cluster에서 airflow 실행하기</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather">요약 다루는 내용 분산 인스턴스에서 각각 airflow worker를 실행하고 task를 분산해서 실행하는법 task가 실행될 worker를 명시적으로 지정하는법 테스트 환경 두 개의 Amazon EC2 Instance 사용 1번 Instance에 아래와 같이 셋팅 metadata database(postsgres) rabbitmq airflow webserver airflow worker 2번 Instance에 아래와 같이 셋팅 airflow worker airflow configuration 1번과 2번 instance에 airflow를 설치한다. dag폴더에 동일한 파일을 넣어준다. dag폴더를 Git repository로 세팅하고 Chef, Puppet, Ansible등으로 동기화 해주는 방법도 있다.</div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/airflow-5.-pyspark-sample-code-on-airflow/"> <h3 class="media-heading">[airflow] 5. Pyspark sample code on airflow</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"><p>Airflow에서 Pyspark task 실행하기</p></div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/airflow-5.-pyspark-sample-code-on-airflow/"> <h3 class="media-heading">[airflow] 5. Pyspark sample code on airflow</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"><p>Airflow에서 Pyspark task 실행하기</p></div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/mac-ijavascript-%EC%84%A4%EC%B9%98/"> <h3 class="media-heading">[Mac] ijavascript 설치</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"> ruby -e &quot;$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)&quot; brew install pkg-config node zeromq sudo easy_install pip sudo pip install --upgrade pyzmq jupyter sudo npm install -g ijavascript 설치하고자 하는 가상환경에서 ijsinstall ijsnotebook으로 실행 </div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/airflow-4.-celeryexecutor-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/"> <h3 class="media-heading">[airflow] 4. CeleryExecutor 사용하기</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"><p>Airflow CeleryExecutor 사용하기</p></div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/airflow-3.-localexecutor-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0/"> <h3 class="media-heading">[airflow] 3. LocalExecutor 사용하기</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather"><p>Airflow LocalExecutor 사용하기</p></div> </div> <div style="clear:both;"></div> <hr> </div> <div class="media"> <div class="media-body"> <a class="link-unstyled" href="https://sanghunka.github.io/2017/12/mac-apche-spark-%EC%84%A4%EC%B9%98/"> <h3 class="media-heading">[Mac] Apche Spark 설치</h3> </a> <span class="media-meta"> <span class="media-date text-small"> Dec 12, 2017 </span> </span> <div class="media-content hide-xs font-merryweather">Java 설치 이미 설치된 java의 경로를 찾고 싶다면 /usr/libexec/java_home 명령어를 이용하면 된다. brew tap caskroom/versions brew cask search java # brew cask install java 이렇게하면 자바9가 설치됩니다. brew cask install java8 2017-12-05 현재 Spark는 Java9를 지원하지 않는다. 그러므로 java8을 설치해야한다. 아래처럼 본인의 version에 맞는 path를 .bashrc(또는 .zshrc)에 지정해준다. export JAVA_HOME=&quot;/Library/Java/JavaVirtualMachines/jdk1.8.0_152.jdk/Contents/Home&quot; Scala 설치 brew install scala java와 마찬가지로 본인의 version에 맞는 path를 .bashrc(또는 .</div> </div> <div style="clear:both;"></div> <hr> </div> </div> </div> <div class="modal-footer"> <p class="results-count text-medium" data-message-zero="no post found" data-message-one="1 post found" data-message-other="{n} posts found"> 51 posts found </p> </div> </div> </div> <div id="cover" style="background-image:url('https://themes.gohugo.io/theme/hugo-tranquilpeak-theme/images/cover.jpg');"></div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.7/js/jquery.fancybox.min.js" integrity="sha256-GEAnjcTqVP+vBp3SSc8bEDQqvWAZMiHyUSIorrWwH50=" crossorigin="anonymous"></script> <script src="https://sanghunka.github.io/js/script-qi9wbxp2ya2j6p7wx1i6tgavftewndznf4v0hy2gvivk1rxgc3lm7njqb6bz.min.js"></script> <script> var disqus_config = function () { this.page.url = 'https:\/\/sanghunka.github.io\/2014\/08\/hidden-social-section-showcase\/'; this.page.identifier = '\/2014\/08\/hidden-social-section-showcase\/' }; (function() { if (window.location.hostname == "localhost") { return; } var d = document, s = d.createElement('script'); var disqus_shortname = 'sanghunka'; s.src = '//' + disqus_shortname + '.disqus.com/embed.js'; s.setAttribute('data-timestamp', +new Date()); (d.head || d.body).appendChild(s); })(); </script> </body> </html>
crm_web/crm/templates/user_add.html
san-na/crm
{% extends "layout.html" %} {% block content %} <h3>用户管理</h3> <div> <ul class="breadcrumb"> <li> <a href="{{url_for('Common.index')}}">Home</a> <span class="divider">/</span> </li> <li> <a href="{{url_for('Common.user_setting')}}">用户管理</a><span class="divider">/</span> </li> <li> <a href="#">添加用户</a> </li> </ul> </div> <div class="box-content"> <form class="form-horizontal" role="form" action="{{url_for('Common.user_setting', action="add")}}" method="post"> {{ form.csrf_token }} <fieldset> <div class="control-group"> <label class="control-label">姓名</label> <div class="controls"> {{ form.name(class="form-control", placeholder="请输入用户名", autocomplete=true)}} </div> </div> <div class="control-group"> <label class="control-label" for="focusedInput">邮箱</label> <div class="controls"> {{ form.email(class="form-control", placeholder="Email") }} </div> </div> <div class="control-group"> <label class="control-label" for="focusedInput">密码</label> <div class="controls"> {{ form.password(class="form-control", placeholder="password") }} </div> </div> <button type="submit" class="btn btn-primary">添加</button> </fieldset> </form> </div> {% endblock %}
doc-api/classes/Erubis/InterpolationEnhancer.html
netshade/erubis
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Module: Erubis::InterpolationEnhancer</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" /> <script type="text/javascript"> // <![CDATA[ function popupCode( url ) { window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400") } function toggleCode( id ) { if ( document.getElementById ) elem = document.getElementById( id ); else if ( document.all ) elem = eval( "document.all." + id ); else return false; elemStyle = elem.style; if ( elemStyle.display != "block" ) { elemStyle.display = "block" } else { elemStyle.display = "none" } return true; } // Make codeblocks hidden by default document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" ) // ]]> </script> </head> <body> <div id="classHeader"> <table class="header-table"> <tr class="top-aligned-row"> <td><strong>Module</strong></td> <td class="class-name-in-header">Erubis::InterpolationEnhancer</td> </tr> <tr class="top-aligned-row"> <td><strong>In:</strong></td> <td> <a href="../../files/erubis/enhancer_rb.html"> erubis/enhancer.rb </a> <br /> </td> </tr> </table> </div> <!-- banner header --> <div id="bodyContent"> <div id="contextContent"> <div id="description"> <p> convert &quot;&lt;h1&gt;&lt;%=title%&gt;&lt;/h1&gt;&quot; into &quot;_buf &lt;&lt; %Q`&lt;h1&gt;#{title}&lt;/h1&gt;`&quot; </p> <p> this is only for <a href="Eruby.html">Eruby</a>. </p> </div> </div> <div id="method-list"> <h3 class="section-bar">Methods</h3> <div class="name-list"> <a href="#M000200">_add_text_to_str</a>&nbsp;&nbsp; <a href="#M000201">add_expr_escaped</a>&nbsp;&nbsp; <a href="#M000202">add_expr_literal</a>&nbsp;&nbsp; <a href="#M000199">add_text</a>&nbsp;&nbsp; <a href="#M000198">convert_input</a>&nbsp;&nbsp; </div> </div> </div> <!-- if includes --> <div id="section"> <!-- if method_list --> <div id="methods"> <h3 class="section-bar">Public Instance methods</h3> <div id="method-M000200" class="method-detail"> <a name="M000200"></a> <div class="method-heading"> <a href="#M000200" class="method-signature"> <span class="method-name">_add_text_to_str</span><span class="method-args">(str, text)</span> </a> </div> <div class="method-description"> <p><a class="source-toggle" href="#" onclick="toggleCode('M000200-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000200-source"> <pre> <span class="ruby-comment cmt"># File erubis/enhancer.rb, line 664</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">_add_text_to_str</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">text</span>) <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">text</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">text</span>.<span class="ruby-identifier">empty?</span> <span class="ruby-identifier">text</span>.<span class="ruby-identifier">gsub!</span>(<span class="ruby-regexp re">/['\#\\]/</span>, <span class="ruby-value str">'\\\\\&amp;'</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">text</span> <span class="ruby-keyword kw">end</span> </pre> </div> </div> </div> <div id="method-M000201" class="method-detail"> <a name="M000201"></a> <div class="method-heading"> <a href="#M000201" class="method-signature"> <span class="method-name">add_expr_escaped</span><span class="method-args">(str, code)</span> </a> </div> <div class="method-description"> <p><a class="source-toggle" href="#" onclick="toggleCode('M000201-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000201-source"> <pre> <span class="ruby-comment cmt"># File erubis/enhancer.rb, line 670</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">add_expr_escaped</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">code</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-node">&quot;\#{#{escaped_expr(code)}}&quot;</span> <span class="ruby-keyword kw">end</span> </pre> </div> </div> </div> <div id="method-M000202" class="method-detail"> <a name="M000202"></a> <div class="method-heading"> <a href="#M000202" class="method-signature"> <span class="method-name">add_expr_literal</span><span class="method-args">(str, code)</span> </a> </div> <div class="method-description"> <p><a class="source-toggle" href="#" onclick="toggleCode('M000202-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000202-source"> <pre> <span class="ruby-comment cmt"># File erubis/enhancer.rb, line 674</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">add_expr_literal</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">code</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-node">&quot;\#{#{code}}&quot;</span> <span class="ruby-keyword kw">end</span> </pre> </div> </div> </div> <div id="method-M000199" class="method-detail"> <a name="M000199"></a> <div class="method-heading"> <a href="#M000199" class="method-signature"> <span class="method-name">add_text</span><span class="method-args">(src, text)</span> </a> </div> <div class="method-description"> <p><a class="source-toggle" href="#" onclick="toggleCode('M000199-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000199-source"> <pre> <span class="ruby-comment cmt"># File erubis/enhancer.rb, line 653</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">text</span>) <span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">if</span> <span class="ruby-operator">!</span><span class="ruby-identifier">text</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">text</span>.<span class="ruby-identifier">empty?</span> <span class="ruby-comment cmt">#src &lt;&lt; &quot; _buf &lt;&lt; %Q`&quot; &lt;&lt; text &lt;&lt; &quot;`;&quot;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">text</span>[<span class="ruby-value">-1</span>] <span class="ruby-operator">==</span> <span class="ruby-value">?\n</span> <span class="ruby-identifier">text</span>[<span class="ruby-value">-1</span>] = <span class="ruby-value str">&quot;\\n&quot;</span> <span class="ruby-identifier">src</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">&quot; _buf &lt;&lt; %Q`&quot;</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">text</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">&quot;`\n&quot;</span> <span class="ruby-keyword kw">else</span> <span class="ruby-identifier">src</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">&quot; _buf &lt;&lt; %Q`&quot;</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">text</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-value str">&quot;`;&quot;</span> <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">end</span> </pre> </div> </div> </div> <div id="method-M000198" class="method-detail"> <a name="M000198"></a> <div class="method-heading"> <a href="#M000198" class="method-signature"> <span class="method-name">convert_input</span><span class="method-args">(src, input)</span> </a> </div> <div class="method-description"> <p><a class="source-toggle" href="#" onclick="toggleCode('M000198-source');return false;">[Source]</a></p> <div class="method-source-code" id="M000198-source"> <pre> <span class="ruby-comment cmt"># File erubis/enhancer.rb, line 598</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">convert_input</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">input</span>) <span class="ruby-identifier">pat</span> = <span class="ruby-ivar">@pattern</span> <span class="ruby-identifier">regexp</span> = <span class="ruby-identifier">pat</span>.<span class="ruby-identifier">nil?</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">pat</span> <span class="ruby-operator">==</span> <span class="ruby-value str">'&lt;% %&gt;'</span> <span class="ruby-operator">?</span> <span class="ruby-constant">Basic</span><span class="ruby-operator">::</span><span class="ruby-constant">Converter</span><span class="ruby-operator">::</span><span class="ruby-constant">DEFAULT_REGEXP</span> <span class="ruby-operator">:</span> <span class="ruby-identifier">pattern_regexp</span>(<span class="ruby-identifier">pat</span>) <span class="ruby-identifier">pos</span> = <span class="ruby-value">0</span> <span class="ruby-identifier">is_bol</span> = <span class="ruby-keyword kw">true</span> <span class="ruby-comment cmt"># is beginning of line</span> <span class="ruby-identifier">str</span> = <span class="ruby-value str">''</span> <span class="ruby-identifier">input</span>.<span class="ruby-identifier">scan</span>(<span class="ruby-identifier">regexp</span>) <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">indicator</span>, <span class="ruby-identifier">code</span>, <span class="ruby-identifier">tailch</span>, <span class="ruby-identifier">rspace</span><span class="ruby-operator">|</span> <span class="ruby-identifier">match</span> = <span class="ruby-constant">Regexp</span>.<span class="ruby-identifier">last_match</span>() <span class="ruby-identifier">len</span> = <span class="ruby-identifier">match</span>.<span class="ruby-identifier">begin</span>(<span class="ruby-value">0</span>) <span class="ruby-operator">-</span> <span class="ruby-identifier">pos</span> <span class="ruby-identifier">text</span> = <span class="ruby-identifier">input</span>[<span class="ruby-identifier">pos</span>, <span class="ruby-identifier">len</span>] <span class="ruby-identifier">pos</span> = <span class="ruby-identifier">match</span>.<span class="ruby-identifier">end</span>(<span class="ruby-value">0</span>) <span class="ruby-identifier">ch</span> = <span class="ruby-identifier">indicator</span> <span class="ruby-value">? </span><span class="ruby-identifier">indicator</span>[<span class="ruby-value">0</span>] <span class="ruby-operator">:</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-identifier">lspace</span> = <span class="ruby-identifier">ch</span> <span class="ruby-operator">==</span> <span class="ruby-value">?=</span> <span class="ruby-operator">?</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-operator">:</span> <span class="ruby-identifier">detect_spaces_at_bol</span>(<span class="ruby-identifier">text</span>, <span class="ruby-identifier">is_bol</span>) <span class="ruby-identifier">is_bol</span> = <span class="ruby-identifier">rspace</span> <span class="ruby-value">? </span><span class="ruby-keyword kw">true</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">false</span> <span class="ruby-identifier">_add_text_to_str</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">text</span>) <span class="ruby-comment cmt">## * when '&lt;%= %&gt;', do nothing</span> <span class="ruby-comment cmt">## * when '&lt;% %&gt;' or '&lt;%# %&gt;', delete spaces iff only spaces are around '&lt;% %&gt;'</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">ch</span> <span class="ruby-operator">==</span> <span class="ruby-value">?=</span> <span class="ruby-comment cmt"># &lt;%= %&gt;</span> <span class="ruby-identifier">rspace</span> = <span class="ruby-keyword kw">nil</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">tailch</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-operator">!</span><span class="ruby-identifier">tailch</span>.<span class="ruby-identifier">empty?</span> <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">lspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">lspace</span> <span class="ruby-identifier">add_expr</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">code</span>, <span class="ruby-identifier">indicator</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">elsif</span> <span class="ruby-identifier">ch</span> <span class="ruby-operator">==</span> <span class="ruby-value">?\#</span> <span class="ruby-comment cmt"># &lt;%# %&gt;</span> <span class="ruby-identifier">n</span> = <span class="ruby-identifier">code</span>.<span class="ruby-identifier">count</span>(<span class="ruby-value str">&quot;\n&quot;</span>) <span class="ruby-operator">+</span> (<span class="ruby-identifier">rspace</span> <span class="ruby-value">? </span><span class="ruby-value">1</span> <span class="ruby-operator">:</span> <span class="ruby-value">0</span>) <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@trim</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">lspace</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">rspace</span> <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">str</span>) <span class="ruby-identifier">str</span> = <span class="ruby-value str">''</span> <span class="ruby-identifier">add_stmt</span>(<span class="ruby-identifier">src</span>, <span class="ruby-value str">&quot;\n&quot;</span> <span class="ruby-operator">*</span> <span class="ruby-identifier">n</span>) <span class="ruby-keyword kw">else</span> <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">lspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">lspace</span> <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">str</span>) <span class="ruby-identifier">str</span> = <span class="ruby-value str">''</span> <span class="ruby-identifier">add_stmt</span>(<span class="ruby-identifier">src</span>, <span class="ruby-value str">&quot;\n&quot;</span> <span class="ruby-operator">*</span> <span class="ruby-identifier">n</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">else</span> <span class="ruby-comment cmt"># &lt;% %&gt;</span> <span class="ruby-keyword kw">if</span> <span class="ruby-ivar">@trim</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">lspace</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">rspace</span> <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">str</span>) <span class="ruby-identifier">str</span> = <span class="ruby-value str">''</span> <span class="ruby-identifier">add_stmt</span>(<span class="ruby-identifier">src</span>, <span class="ruby-node">&quot;#{lspace}#{code}#{rspace}&quot;</span>) <span class="ruby-keyword kw">else</span> <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">lspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">lspace</span> <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">str</span>) <span class="ruby-identifier">str</span> = <span class="ruby-value str">''</span> <span class="ruby-identifier">add_stmt</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">code</span>) <span class="ruby-identifier">str</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">if</span> <span class="ruby-identifier">rspace</span> <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">end</span> <span class="ruby-keyword kw">end</span> <span class="ruby-comment cmt">#rest = $' || input # ruby1.8</span> <span class="ruby-identifier">rest</span> = <span class="ruby-identifier">pos</span> <span class="ruby-operator">==</span> <span class="ruby-value">0</span> <span class="ruby-operator">?</span> <span class="ruby-identifier">input</span> <span class="ruby-operator">:</span> <span class="ruby-identifier">input</span>[<span class="ruby-identifier">pos</span><span class="ruby-operator">..</span><span class="ruby-value">-1</span>] <span class="ruby-comment cmt"># ruby1.9</span> <span class="ruby-identifier">_add_text_to_str</span>(<span class="ruby-identifier">str</span>, <span class="ruby-identifier">rest</span>) <span class="ruby-identifier">add_text</span>(<span class="ruby-identifier">src</span>, <span class="ruby-identifier">str</span>) <span class="ruby-keyword kw">end</span> </pre> </div> </div> </div> </div> </div> <div id="validator-badges"> <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> </div> </body> </html>
app/templates/post.html
guan080/personal_website
{%extends 'base.html'%} {%block page_content%} <div class="post"> <h3 class="entry-title"> <a href="{{ url_for('post', posttitle=post.title) }}">{{ post.title }}</a> </h3> <div class="entry-meta"> <ul class="list-inline post-meta"> <li><a href="{{ url_for('about') }}">老官</a></li> <li>{{ post.timestamp }}</li> <li>on <a href="{{ url_for('category', name=Category.query.filter_by(id=post.category_id).first().name) }}"> {{ Category.query.filter_by(id = post.category_id).first().name }}</a></li> {% for tag in post.tags %} <li class="meta-tag"> <a href="{{ url_for('tag', name=tag.name) }}">{{ tag.name }}<span class="gap">,</span></a> </li> {% endfor %} <a href="{{ url_for('reedit_post', posttitle=post.title)}}" class="edit-link">编辑</a> {# <li>{{ post.views }}</li>#} </ul> </div> <div class="entry-summary"> {% if post.content_html %} <p>{{ post.content_html | safe }}</p> {% else %} <p>{{ post.content }}</p> {% endif %} </div> </div> {%endblock%}
public/Windows 10 x64 (18362.418)/_EVENT_FILTER_HEADER.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18362.418)</h4><br> <h2>_EVENT_FILTER_HEADER</h2> <font face="arial"> +0x000 Id : Uint2B<br> +0x002 Version : UChar<br> +0x003 Reserved : [5] UChar<br> +0x008 InstanceId : Uint8B<br> +0x010 Size : Uint4B<br> +0x014 NextOffset : Uint4B<br> </font></body></html>
src/style.css
ErezNagar/Skinny-Progress-Bar
body { margin: 0; padding: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } a { color: grey; text-decoration: none; } .hero { height: 200px; margin-top: 50px; text-align: center; background-image: linear-gradient(to right, #880E4F 0, #C2185B 100%); } .hero p { color: white; opacity: .7; text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3); } h1 { color: white; padding: 1.5em 0 .5em 0; } section { padding: 3em 0; box-sizing: border-box; } code { display: block; width: 30%; margin: 0 auto; margin-top: 2em; padding: 1em; color: #E0E0E0; border-radius: 3px; box-sizing: border-box; background-color: #263238; } code:first-child { margin: 0 auto; } code span { display: block; } code span.space { height: 15px; } code span.tab { text-indent: 20px; } code span.comment { color: #757575; } code span.token { display: inline; color: #64B5F6; } code span.id { display: inline; color: #e57373; } code span.val { display: inline; color: #FFCC80; } .progressBar { width: 30%; margin: 0 auto; } .footer { text-align: center; } /*# sourceMappingURL=style.css.map */
assets/css/app.css
ndimatteo/aa-theme
@font-face { font-family: 'DIN Web Light'; src: url('fonts/DINWeb-Light.eot'); src: url('fonts/DINWeb-Light.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-Light.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web LightItalic'; src: url('fonts/DINWeb-LightIta.eot'); src: url('fonts/DINWeb-LightIta.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-LightIta.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web Book'; src: url('fonts/DINWeb.eot'); src: url('fonts/DINWeb.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web BookItalic'; src: url('fonts/DINWeb-Ita.eot'); src: url('fonts/DINWeb-Ita.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-Ita.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web Medium'; src: url('fonts/DINWeb-Medium.eot'); src: url('fonts/DINWeb-Medium.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-Medium.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web MediumItalic'; src: url('fonts/DINWeb-MediumIta.eot'); src: url('fonts/DINWeb-MediumIta.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-MediumIta.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web Bold'; src: url('fonts/DINWeb-Bold.eot'); src: url('fonts/DINWeb-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-Bold.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web BoldItalic'; src: url('fonts/DINWeb-BoldIta.eot'); src: url('fonts/DINWeb-BoldIta.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-BoldIta.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web Black'; src: url('fonts/DINWeb-Black.eot'); src: url('fonts/DINWeb-Black.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-Black.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } @font-face { font-family: 'DIN Web BlackItalic'; src: url('fonts/DINWeb-BlackIta.eot'); src: url('fonts/DINWeb-BlackIta.eot?#iefix') format('embedded-opentype'), url('fonts/DINWeb-BlackIta.woff') format('woff'); font-weight: normal; font-style: normal; font-stretch: normal; } /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ /** * 1. Set default font family to sans-serif. * 2. Prevent iOS and IE text size adjust after device orientation change, * without disabling user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 * and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */ [hidden], template { display: none; } /* Links ========================================================================== */ /** * Remove the gray background color from active links in IE 10. */ a { background-color: transparent; } /** * Improve readability of focused elements when they are also in an * active/hover state. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * 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; } /* Embedded content ========================================================================== */ /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 1em 40px; } /** * Address differences between Firefox and other browsers. */ hr { box-sizing: content-box; height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * 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 Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ 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. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * 1. Address `appearance` set to `searchfield` in Safari and Chrome. * 2. Address `box-sizing` set to `border-box` in Safari and Chrome. */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ box-sizing: content-box; /* 2 */ } /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * 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 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /* Grids! */ .container { margin-right: auto; margin-left: auto; padding: 0 20px; overflow: hidden; } .row:before, .row:after { content: " "; display: table; } .row:after { clear: both; } .col { float: left; box-sizing: border-box; } .col-right { float: right; box-sizing: border-box; } .col-1 { width: 8.33333%; } .col-2 { width: 16.66667%; } .col-3 { width: 25%; } .col-4 { width: 33.33333%; } .col-5 { width: 41.66667%; } .col-6 { width: 50%; } .col-7 { width: 58.33333%; } .col-8 { width: 66.66667%; } .col-9 { width: 75%; } .col-10 { width: 83.33333%; } .col-11 { width: 91.66667%; } .col-12 { width: 100%; } @media (min-width: 768px) { .sm-center { text-align: center; } .sm-right { text-align: right; } .sm-col { float: left; box-sizing: border-box; } .sm-col-right { float: right; box-sizing: border-box; } .sm-col-1 { width: 8.33333%; } .sm-col-2 { width: 16.66667%; } .sm-col-3 { width: 25%; } .sm-col-4 { width: 33.33333%; } .sm-col-5 { width: 41.66667%; } .sm-col-6 { width: 50%; } .sm-col-7 { width: 58.33333%; } .sm-col-8 { width: 66.66667%; } .sm-col-9 { width: 75%; } .sm-col-10 { width: 83.33333%; } .sm-col-11 { width: 91.66667%; } .sm-col-12 { width: 100%; } .sm-col-offset-2 { margin-left: 16.66667%; } } @media (min-width: 980px) { .md-col { float: left; box-sizing: border-box; } .md-col-right { float: right; box-sizing: border-box; } .md-col-1 { width: 8.33333%; } .md-col-2 { width: 16.66667%; } .md-col-3 { width: 25%; } .md-col-4 { width: 33.33333%; } .md-col-5 { width: 41.66667%; } .md-col-6 { width: 50%; } .md-col-7 { width: 58.33333%; } .md-col-8 { width: 66.66667%; } .md-col-9 { width: 75%; } .md-col-10 { width: 83.33333%; } .md-col-11 { width: 91.66667%; } .md-col-12 { width: 100%; } } @media (min-width: 1140px) { .container { width: 1100px; } .lg-col { float: left; box-sizing: border-box; } .lg-col-right { float: right; box-sizing: border-box; } .lg-col-1 { width: 8.33333%; } .lg-col-2 { width: 16.66667%; } .lg-col-3 { width: 25%; } .lg-col-4 { width: 33.33333%; } .lg-col-5 { width: 41.66667%; } .lg-col-6 { width: 50%; } .lg-col-7 { width: 58.33333%; } .lg-col-8 { width: 66.66667%; } .lg-col-9 { width: 75%; } .lg-col-10 { width: 83.33333%; } .lg-col-11 { width: 91.66667%; } .lg-col-12 { width: 100%; } } @font-face { font-family: 'aa-icons'; src: url('fonts/aa-icons.eot?dxd3n2'); src: url('fonts/aa-icons.eot?#iefixdxd3n2') format('embedded-opentype'), url('fonts/aa-icons.ttf?dxd3n2') format('truetype'), url('fonts/aa-icons.woff?dxd3n2') format('woff'), url('fonts/aa-icons.svg?dxd3n2#aa-icons') format('svg'); font-weight: normal; font-style: normal; } [class^="icon-"], [class*=" icon-"] { font-family: 'aa-icons'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .icon-star:before { content: "\e260"; } .icon-email:before { content: "\e603"; } .icon-phone:before { content: "\e604"; } .icon-linkedin:before { content: "\e600"; } .icon-twitter:before { content: "\e601"; } .icon-houzz:before { content: "\e602"; } .icon-facebook:before { content: "\e607"; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; } .no-border { -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } /*-----Base-----*/ * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; *behavior: url(/css/vendor/boxsizing.htc); } html, body { margin: 0; padding: 0; height: 100%; } body { background: #ffffff; color: #333333; font-family: 'DIN Web Light', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 16px; line-height: 22px; } body.nav-open { overflow: hidden; } p { margin: 0 0 20px; } p.hero { font-size: 16px; line-height: 22px; } ul { list-style: none; margin: 0; } figure { margin: 0; } figure .caption { text-align: center; } img { max-width: none; } ::-moz-selection { color: #ffffff; background: #ea088c; } ::selection { color: #ffffff; background: #ea088c; } /*-----Typography-----*/ h1 { margin: 0 0 20px; font-family: 'DIN Web Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 40px; line-height: 40px; } h2 { margin: 10px 0 30px; font-family: 'DIN Web Light', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 30px; line-height: 32px; } h2 img { vertical-align: bottom; margin-right: 15px; } h3 { margin: 0 0 10px; font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 28px; line-height: 30px; } h3 small { display: block; font-family: 'DIN Web Light', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; text-transform: none; font-size: 14px; line-height: 22px; } strong, b { font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; } em, i { font-family: 'DIN Web BookItalic', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; } strong em, strong i, b em, b i { font-family: 'DIN Web BoldItalic', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; } a { color: #ea088c; text-decoration: none; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } .visible-xs { display: block !important; } .hidden-xs { display: none !important; } .pad-20 { padding: 0 5%; } .btn { white-space: nowrap; font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; border: none; } .btn.btn-text { color: #ea088c; font-size: 65%; text-transform: uppercase; letter-spacing: 2px; } .btn.submit { display: block; width: 100%; padding: 10px 20px 8px; text-transform: uppercase; background: #ea088c; color: #ffffff; } .btn.submit:focus { outline: none; } .btn.btn-block { display: block; color: #ffffff; background: #ea088c; white-space: normal; padding: 10px 20px 8px; text-align: center; } /*----- Scaffolding -----*/ #wrapper { z-index: 1; } #wrapper, .inner-wrapper { position: relative; margin: 0 auto; } .inner-wrapper { background: #ffffff; } ul.social { display: block; list-style: none; margin: 10px 0 20px 0; padding: 0; } ul.social:before, ul.social:after { content: " "; display: table; } ul.social:after { clear: both; } ul.social li { display: inline-block; margin: 0; } ul.social li a { display: block; width: 30px; height: 30px; text-decoration: none; font-size: 30px; line-height: 1; color: #ababab; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } ul.social li a:hover { color: #ea088c; } ul.social li a.houzz:hover { color: #7ac142 !important; } ul.social li a.facebook:hover { color: #3664A2 !important; } ul.social li a.twitter:hover { color: #55ACEE !important; } ul.social li a.linkedin:hover { color: #0077B5 !important; } ul.social.home { position: absolute; bottom: 0; left: 0; width: 100%; text-align: center; z-index: 4; } ul.social.home li a { color: #333333; } ul.social.home li a:hover { color: #ea088c; } ul.social.stacked { position: fixed; margin: 45px 0; z-index: 4; } ul.social.stacked li { display: block; margin: 2px 0; } ul.social.stacked li a { color: #333333; } ul.social.stacked li a:hover { color: #ea088c; } .houzz-callout { display: none; position: absolute; top: 85px; right: 10px; z-index: 4; width: 75px; height: 75px; text-decoration: none; } .houzz-callout img { display: block; width: 100%; height: auto; } #main { position: relative; padding-top: 60px; overflow: hidden; } /*----- Header -----*/ .nav-open-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; } .nav-open .nav-open-overlay { display: block; } #header { position: fixed; top: 0; left: 0; width: 100%; z-index: 3; } #header a.logo { display: block; position: relative; width: 200px; margin: 10px 0 10px -10px; } #header a.logo img { display: block; width: 100%; height: auto; } #header .container { overflow: visible; } #main-nav { display: none; margin: 0 -20px; background: #ea088c; text-align: center; } #main-nav ul { list-style: none; margin: 0; padding: 20px 0; } #main-nav ul li a { display: block; padding: 10px; font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 24px; line-height: 30px; text-decoration: none; color: #ffffff; } #main-nav ul li.dropdown ul { display: none; margin-bottom: 20px; padding: 0; } #main-nav ul li.dropdown ul li a { padding: 5px 0; font-family: 'DIN Web Book', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 16px; line-height: 20px; } .menu-toggle { position: absolute; top: 0; right: 0; width: 70px; } .menu-toggle .toggle-btn { display: block; width: 30px; height: 30px; position: relative; margin: 17px auto; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: 0.5s ease-in-out; -moz-transition: 0.5s ease-in-out; -o-transition: 0.5s ease-in-out; transition: 0.5s ease-in-out; cursor: pointer; } .menu-toggle .toggle-btn span { display: block; position: absolute; height: 3px; width: 30px; background: #333333; opacity: 1; left: 0; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); -webkit-transition: 0.25s ease-in-out; -moz-transition: 0.25s ease-in-out; -o-transition: 0.25s ease-in-out; transition: 0.25s ease-in-out; } .menu-toggle .toggle-btn span:nth-child(1) { top: 6px; } .menu-toggle .toggle-btn span:nth-child(2), .menu-toggle .toggle-btn span:nth-child(3) { top: 13px; } .menu-toggle .toggle-btn span:nth-child(4) { top: 20px; } .menu-toggle .toggle-btn.open span:nth-child(1) { top: 15px; width: 0%; left: 50%; } .menu-toggle .toggle-btn.open span:nth-child(2) { -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); } .menu-toggle .toggle-btn.open span:nth-child(3) { -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .menu-toggle .toggle-btn.open span:nth-child(4) { top: 15px; width: 0%; left: 50%; } /*----- Footer ----- */ #footer { position: relative; text-align: center; font-size: 14px; line-height: 17px; z-index: 2; } #footer .inner-wrapper { padding: 60px 0 60px; height: 100%; background: #f3f3f3; } a.contact-link { display: inline-block; font-size: 16px; line-height: 30px; text-decoration: none; padding-left: 8px; color: #333333; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } a.contact-link:hover { color: #ea088c; } a.contact-link span { font-size: 30px; float: left; } ul.houzz-awards { display: inline-block; list-style: none; margin: 30px 0; padding: 0; } ul.houzz-awards a { display: block; color: #333333; } ul.houzz-awards p { margin: 0 0 10px; } ul.houzz-awards li { display: inline-block; margin: 2px; } ul.houzz-awards li img { display: block; width: 52px; height: auto; border: 1px solid #ababab; -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; -ms-transition: all 0.1s ease; transition: all 0.1s ease; transform: scale(1); } ul.houzz-awards li img:hover { transform: scale(1.1); } ul.houzz-awards li.green img { border-color: #7ac142; } .houzz-rating { margin-top: 5px; } .houzz-rating:before, .houzz-rating:after { content: " "; display: table; } .houzz-rating:after { clear: both; } .houzz-rating .stars { float: left; color: #008d00; font-size: 14px; } .houzz-rating span.text { float: right; } /*----- Sections ----- */ #page-header { position: relative; padding: 30px 0; background-color: #ababab; background-attachment: scroll; background-size: cover; background-position: center center; } #page-header:before { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background: #ffffff; zoom: 1; opacity: 0.75; filter: alpha(opacity=75); } #page-header > .container { position: relative; } #page-header h1 { margin: 10px 0; } .crumbs { display: none; margin-left: 5px; } .crumbs a { color: #333333; } .crumbs span { margin: 0 15px; } #content { position: relative; background: #ffffff; z-index: 2; } .bg { display: block; position: fixed; width: 100%; left: 0; z-index: -9999; } .bg.home-bg { top: 0; height: 100%; } .bg.project-bg, .bg.page-bg { top: 60px; height: 350px; } #intro { display: table; position: relative; width: 100%; } #intro .bg-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: transparent url('../img/bg-home-overlay.png') center center no-repeat; background-size: cover; background-attachment: scroll; } #intro .go-down { display: block; position: absolute; bottom: 20px; left: 50%; margin-left: -25px; width: 50px; height: 50px; } #intro .overlay { display: table-cell; position: relative; vertical-align: middle; text-align: center; z-index: 2; } #intro .overlay h1 { font-size: 36px; line-height: 40px; margin-bottom: 50px; } #intro .overlay .logo-large { display: block; width: 150px; height: 150px; margin: 0 auto 20px; } #intro .overlay .logo-large img { display: block; width: 100%; height: auto; } #home-text { text-align: center; } #home-text .well { padding: 30px 0; background: rgba(255, 255, 255, 0.75); } #home-text .well .hero { font-size: 14px; line-height: 20px; margin: 0; } #home-callout { background-color: #553e37; background-attachment: scroll; background-size: cover; background-position: center center; color: #ffffff; padding: 40px 0; } #home-callout .callout { margin: 40px 0; } #home-callout .callout h2 { text-align: center; } #home-callout .callout h2 img { display: block; margin: 0 auto 10px; } #latest-work, #all-work, #all-news, #project-content { background: #ffffff; padding: 50px 0; } #latest-work .row, #all-work .row, #all-news .row, #project-content .row { margin: 0 -15px; } .project.project-sizer, .post.project-sizer { position: absolute; zoom: 1; opacity: 0; filter: alpha(opacity=0); visibility: hidden; } .project a, .post a { display: block; position: relative; margin: 5px; overflow: hidden; } .project a .overlay, .post a .overlay { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .project a .overlay:after, .post a .overlay:after { content: ''; display: block; width: 100%; height: 100%; background: #ea088c; zoom: 1; opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; -ms-transition: all 0.15s linear; transition: all 0.15s linear; } .project a .overlay .title, .post a .overlay .title { display: block; position: absolute; top: 50%; left: 0; margin-top: 10px; width: 100%; text-align: center; color: #ffffff; transform: translateY(-35%); zoom: 1; opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.15s cubic-bezier(0.42, 0, 1, 1); -moz-transition: all 0.15s cubic-bezier(0.42, 0, 1, 1); -o-transition: all 0.15s cubic-bezier(0.42, 0, 1, 1); -ms-transition: all 0.15s cubic-bezier(0.42, 0, 1, 1); transition: all 0.15s cubic-bezier(0.42, 0, 1, 1); z-index: 1; } .project a .overlay .title h3, .post a .overlay .title h3 { margin: 0 20px; } .project a img, .post a img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; -webkit-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -moz-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -o-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -ms-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); transform: scale(1); -webkit-backface-visibility: hidden; backface-visibility: hidden; } #projects-filter { background-color: #553e37; background-attachment: scroll; background-size: cover; background-position: center center; color: #ffffff; padding: 50px 0; } .filter { position: relative; margin: 0; padding: 5px; list-style: none; width: 100%; background: rgba(0, 0, 0, 0.33); } .filter:before, .filter:after { content: " "; display: table; } .filter:after { clear: both; } .filter li { z-index: 2; } .filter li a { display: block; position: relative; height: 40px; line-height: 44px; padding: 0 10px; text-align: center; font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 18px; color: #ffffff; z-index: 2; } .filter li a:before { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background: #ea088c; z-index: -1; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; zoom: 1; opacity: 0; filter: alpha(opacity=0); transform: scale(0.95); -webkit-transition: all 0.1s ease; -moz-transition: all 0.1s ease; -o-transition: all 0.1s ease; -ms-transition: all 0.1s ease; transition: all 0.1s ease; } .filter li.active a:before { zoom: 1; opacity: 1; filter: alpha(opacity=100); transform: scale(1); } #project-hero, #page-hero { position: relative; height: 350px; } #project-hero .well, #page-hero .well { position: absolute; bottom: 0; left: 0; width: 100%; padding: 25px 0 20px; background: rgba(255, 255, 255, 0.75); } #project-hero .well h1, #page-hero .well h1 { margin: 0; font-size: 30px; line-height: 30px; } #projects-nav { position: relative; background: #f3f3f3; } #projects-nav > .container { position: relative; overflow: visible; } #projects-nav .nav-wrapper { display: none; text-align: center; } #projects-nav .prev-project, #projects-nav .next-project { display: inline-block; position: relative; width: 40%; padding: 10px; text-align: center; font-size: 16px; line-height: 22px; } #projects-nav .prev-project a, #projects-nav .next-project a { position: relative; display: inline-block; width: 100%; height: 0; padding: 50% 0; -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; overflow: hidden; z-index: 9; } #projects-nav .prev-project a > img, #projects-nav .next-project a > img { display: block; position: absolute; top: 0; left: 0; width: 100%; height: auto; transform: scale(1); -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -moz-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -o-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -ms-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); } #projects-nav .prev-project a .overlay, #projects-nav .next-project a .overlay { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; zoom: 1; opacity: 0; filter: alpha(opacity=0); -webkit-transform: translateZ(0); -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; -ms-transition: all 0.15s linear; transition: all 0.15s linear; } #projects-nav .prev-project a .overlay:after, #projects-nav .next-project a .overlay:after { content: ''; display: block; width: 100%; height: 100%; background: #ea088c; zoom: 1; opacity: 0.75; filter: alpha(opacity=75); -webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%; } #projects-nav .prev-project a .overlay img, #projects-nav .next-project a .overlay img { display: block; position: absolute; top: 50%; left: 50%; width: 50px; height: 50px; margin: -25px 0 0 -25px; transform: scale(0.8); -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; -ms-transition: all 0.15s linear; transition: all 0.15s linear; z-index: 9; } #projects-nav .project-desc { margin: 25px 0; font-size: 16px; line-height: 22px; } #project-content img, .entry img { display: block; margin: 20px auto; width: auto; height: auto; max-width: 100%; max-height: 100%; } #project-content figure, .entry figure { margin: 20px auto; } #project-content figure img, .entry figure img { margin: 0 auto 10px; } #project-content blockquote, .entry blockquote { position: relative; margin: 20px 10px; padding: 0 40px; font-size: 16px; line-height: 22px; font-family: 'DIN Web LightItalic', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; } #project-content blockquote:before, .entry blockquote:before, #project-content blockquote:after, .entry blockquote:after { display: block; position: absolute; font-family: 'DIN Web Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 60px; color: #ea088c; } #project-content blockquote:before, .entry blockquote:before { content: '“'; left: 0; top: 25px; } #project-content blockquote:after, .entry blockquote:after { content: '”'; right: 0; bottom: -25px; } #project-content .share-project, .entry .share-project { background: #f3f3f3; margin: 0 20px; padding: 10px 0; text-align: center; } #project-content .share-project ul, .entry .share-project ul { margin: 0 10px; padding: 0; } #project-content .share-project ul:before, .entry .share-project ul:before, #project-content .share-project ul:after, .entry .share-project ul:after { content: " "; display: table; } #project-content .share-project ul:after, .entry .share-project ul:after { clear: both; } #project-content .share-project li, .entry .share-project li { display: block; float: left; width: 50%; padding: 10px; } #project-content .share-project li a, .entry .share-project li a { display: block; position: relative; padding-left: 35px; height: 35px; overflow: hidden; } #project-content .share-project li a span, .entry .share-project li a span { display: block; position: absolute; top: 0; left: 0; width: 35px; height: 35px; font-size: 36px; line-height: 36px; background: #ffffff; } #project-content .share-project li a small, .entry .share-project li a small { display: block; padding: 8px 10px; height: 35px; background: #ababab; color: #ffffff; font-family: 'DIN Web Medium', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 16px; } #project-content .share-project li a.houzz span, .entry .share-project li a.houzz span { color: #7ac142; } #project-content .share-project li a.houzz small, .entry .share-project li a.houzz small { background: #629d33; } #project-content .share-project li a.facebook span, .entry .share-project li a.facebook span { color: #3664A2; } #project-content .share-project li a.facebook small, .entry .share-project li a.facebook small { background: #294c7c; } #project-content .share-project li a.twitter span, .entry .share-project li a.twitter span { color: #55ACEE; } #project-content .share-project li a.twitter small, .entry .share-project li a.twitter small { background: #2795e9; } #project-content .share-project li a.linkedin span, .entry .share-project li a.linkedin span { color: #0077B5; } #project-content .share-project li a.linkedin small, .entry .share-project li a.linkedin small { background: #005582; } .entry { padding: 50px 0; } .entry.news-entry { padding-bottom: 0; margin-bottom: -30px; } .entry img { display: inline; } .entry ul { list-style: none; margin: 0; padding-left: 35px; } .entry ul li { position: relative; margin-bottom: 20px; } .entry ul li:before { content: ''; display: block; position: absolute; left: -30px; background: transparent url('../img/icon.bullet.png') center center no-repeat; background-size: 4px 8px; width: 30px; height: 18px; } .bucket { background-color: #553e37; background-size: cover; background-position: center center; background-attachment: scroll; margin: 30px 10px 50px; padding: 30px; color: #ffffff; } .bucket h2 { text-align: center; } .bucket h2 img { display: block; margin: 0 auto 10px; } #team { margin: 20px 0; } #team .row { margin: 0 -5px; } .member a { display: block; position: relative; margin: 5px; overflow: hidden; } .member a .overlay { display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .member a .overlay:after { content: ''; display: block; width: 100%; height: 100%; background: #ea088c; zoom: 1; opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.15s linear; -moz-transition: all 0.15s linear; -o-transition: all 0.15s linear; -ms-transition: all 0.15s linear; transition: all 0.15s linear; } .member a .title { display: block; position: absolute; bottom: 0; left: 0; width: 100%; padding: 10px; text-align: center; background: #ea088c; background: rgba(234, 8, 140, 0.75); color: #ffffff; } .member a .title h3 { margin: 0 20px; font-size: 18px; line-height: 22px; } .member a img { display: block; width: auto; height: auto; max-width: 100%; max-height: 100%; margin: 0; -webkit-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -moz-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -o-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); -ms-transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955); transform: scale(1); -webkit-backface-visibility: hidden; backface-visibility: hidden; } #contact-form { position: relative; } #contact-form .row { margin: 0 -10px; zoom: 1; opacity: 1; filter: alpha(opacity=100); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } #contact-form .form-group { padding: 0 10px; margin-bottom: 30px; } #contact-form .form-group label { display: block; font-family: 'DIN Web Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; text-transform: uppercase; margin: 0 0 5px; } #contact-form .form-group label.error { display: none !important; } #contact-form .form-group label span { text-transform: none; font-size: 13px; font-family: 'DIN Web LightItalic', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; color: #ababab; } #contact-form .form-group input, #contact-form .form-group textarea { display: block; width: 100%; outline: none; border: none; background: #f3f3f3; padding: 10px; line-height: 20px; -webkit-transition: all 0.1s linear; -moz-transition: all 0.1s linear; -o-transition: all 0.1s linear; -ms-transition: all 0.1s linear; transition: all 0.1s linear; } #contact-form .form-group input:focus, #contact-form .form-group textarea:focus { outline: none; background: #333333; color: #ffffff; } #contact-form .form-group.error input, #contact-form .form-group.error textarea { background: #ea088c; color: #ffffff; } #contact-form .notice { margin-bottom: 20px; text-align: center; font-family: 'DIN Web Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; text-transform: uppercase; font-size: 14px; } #contact-form .notice span { text-transform: none; font-size: 13px; font-family: 'DIN Web LightItalic', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; color: #ababab; } #contact-form #contact-success { display: block; position: absolute; top: 40%; width: 100%; text-align: center; transform: translateY(-30%); zoom: 1; opacity: 0; filter: alpha(opacity=0); visibility: hidden; z-index: 2; -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } #contact-form #contact-success h2 { margin-bottom: 0; } #contact-form.success:after { content: ''; display: block; position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; } #contact-form.success .row { zoom: 1; opacity: 0.1; filter: alpha(opacity=10); } #contact-form.success #contact-success { transform: translateY(-50%); zoom: 1; opacity: 1; filter: alpha(opacity=100); visibility: visible; } #phone-link { margin: 20px 0; text-align: center; } #map { width: 100%; height: 240px; background: #f3f3f3; } #map img { max-width: none; max-height: none; } /*----- Mobile-Specific -----*/ /*----- Tablet -----*/ @media (min-width: 768px) { h1 { font-size: 50px; line-height: 50px; } .btn.submit { display: inline-block; width: auto; } .visible-xs { display: none !important; } .hidden-xs { display: block !important; } #wrapper { min-height: 100%; margin-bottom: -240px; } #wrapper:after { content: ''; display: block; height: 240px; } .houzz-callout { display: block; } #main { padding-top: 75px; } #header a.logo { float: left; margin: 7.5px 0; width: 300px; height: 60px; } #main-nav { display: block !important; float: right; margin: 15px 0 10px; background: none; text-align: left; } #main-nav > ul { padding: 0; } #main-nav > ul:before, #main-nav > ul:after { content: " "; display: table; } #main-nav > ul:after { clear: both; } #main-nav > ul > li { float: left; } #main-nav > ul > li a { padding: 10px 14px; font-family: 'DIN Web Book', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: normal; font-size: 14px; color: #333333; } #main-nav > ul > li a:hover { color: #ea088c; } #main-nav > ul > li.active a { color: #ea088c; } #main-nav > ul > li.dropdown { position: relative; } #main-nav > ul > li.dropdown ul { display: block; position: absolute; width: 200px; top: 100%; left: 50%; padding-top: 10px; margin-left: -100px; margin-bottom: 0; padding: 10px 0; text-align: center; visibility: hidden; transform: scale(0.95); zoom: 1; opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.2s linear; -moz-transition: all 0.2s linear; -o-transition: all 0.2s linear; -ms-transition: all 0.2s linear; transition: all 0.2s linear; } #main-nav > ul > li.dropdown ul:before { content: ''; display: block; position: absolute; top: 0; left: 50%; margin-left: -10px; width: 0; height: 0; border-bottom: 10px solid #ea088c; border-left: 10px solid transparent; border-right: 10px solid transparent; } #main-nav > ul > li.dropdown ul li { background: #ea088c; } #main-nav > ul > li.dropdown ul li:first-child { padding-top: 10px; } #main-nav > ul > li.dropdown ul li:last-child { padding-bottom: 10px; } #main-nav > ul > li.dropdown ul li a { padding: 8px 10px; color: #ffffff; } #main-nav > ul > li.dropdown ul li a:hover { color: #ffffff; background: #b9066e; } #main-nav > ul > li.dropdown:hover > a { color: #ea088c; } #main-nav > ul > li.dropdown:hover ul { visibility: visible; transform: scale(1); zoom: 1; opacity: 1; filter: alpha(opacity=100); } .menu-toggle { display: none; } #footer { text-align: left; height: 240px; } #footer .inner-wrapper { padding: 55px 0 0; } ul.houzz-awards { margin: 10px 0 0 0; } #page-header { width: 100%; height: 220px; padding: 72px 0; z-index: 1; } #page-header h1 { margin-top: 0; } .bg.project-bg, .bg.page-bg { top: 75px; height: 550px; } #intro { padding: 0; } #intro .overlay .logo-large { margin: 0 auto 40px; width: 200px; height: 200px; } #intro .overlay h1 { font-size: 40px; line-height: 40px; margin-bottom: 10px; } #home-text .well { padding: 60px 0; } #home-text .well .hero { font-size: 16px; line-height: 22px; } #home-callout .row { margin: 0 -40px; } #home-callout .row .callout { padding: 0 40px; } #home-callout .row .callout h2 { text-align: left; } #home-callout .row .callout h2 img { display: inline; margin: 0 10px 0 0; } #latest-work, #all-work, #all-news, #project-content { padding: 100px 0; } #latest-work .row, #all-work .row, #all-news .row, #project-content .row { margin: 0 -10px; } .project a, .post a { margin: 10px; } .project a:hover img, .post a:hover img { transform: scale(1.05); -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -moz-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -o-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -ms-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); } .project a:hover .overlay:after, .post a:hover .overlay:after { zoom: 1; opacity: 0.75; filter: alpha(opacity=75); } .project a:hover .overlay .title, .post a:hover .overlay .title { transform: translateY(-50%); zoom: 1; opacity: 1; filter: alpha(opacity=100); } .filter li { display: table-cell; width: 1%; } .filter li a { font-size: 14px; border-left: 1px solid rgba(131, 96, 85, 0.4); border-right: 1px solid rgba(131, 96, 85, 0.4); } .filter li:first-child a { border-left: none; } .filter li:last-child a { border-right: none; } #project-hero, #page-hero { height: 550px; } #project-hero .well, #page-hero .well { padding: 40px 0 30px; } #project-hero .well h1, #page-hero .well h1 { margin: 0 0 10px 5px; font-size: 50px; line-height: 50px; } #projects-nav { padding: 60px 0; } #projects-nav > .container { min-height: 200px; } #projects-nav .nav-wrapper { display: block; } #projects-nav .prev-project { left: 10px; } #projects-nav .next-project { right: 10px; } #projects-nav .prev-project, #projects-nav .next-project { position: absolute; width: 16%; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } #projects-nav .prev-project a:hover > img, #projects-nav .next-project a:hover > img { transform: scale(1.05); } #projects-nav .prev-project a:hover .overlay, #projects-nav .next-project a:hover .overlay { zoom: 1; opacity: 1; filter: alpha(opacity=100); } #projects-nav .prev-project a:hover .overlay img, #projects-nav .next-project a:hover .overlay img { transform: scale(1); } #project-content img, .entry img { margin: 40px auto; } #project-content figure, .entry figure { margin: 40px auto; } #project-content figure img, .entry figure img { margin: 0 auto 20px; } #project-content blockquote, .entry blockquote { margin: 50px 0; } #project-content .share-project, .entry .share-project { margin: 0; padding: 30px 0; } #project-content .share-project ul, .entry .share-project ul { margin: 0; height: 25px; } #project-content .share-project li, .entry .share-project li { display: inline-block; float: none; margin: 0 10px; padding: 0; width: auto; } #project-content .share-project li a, .entry .share-project li a { padding-left: 25px; height: 25px; } #project-content .share-project li a span, .entry .share-project li a span { width: 25px; height: 25px; font-size: 26px; line-height: 26px; } #project-content .share-project li a small, .entry .share-project li a small { display: block; padding: 3px 15px; height: 25px; font-size: 14px; } .entry { padding: 80px 0; } .entry.news-entry { margin-bottom: -50px; } .bucket h2 { text-align: left; } .bucket h2 img { display: inline; margin: 0 10px 0 0; } #team { margin: 30px 0; } #team .row { margin: 0 -10px; } .member a { margin: 10px; } .member a:hover img { transform: scale(1.05); -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -moz-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -o-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); -ms-transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); transition: all 0.2s cubic-bezier(0.42, 0, 1, 1); } .member a:hover .overlay:after { zoom: 1; opacity: 0.75; filter: alpha(opacity=75); } #contact-form .notice { margin: 0; text-align: right; float: right; } #contact-form .submit { float: left; } #phone-link { margin: 30px 0; text-align: right; } #map { height: 300px; } } /*----- Desktop -----*/ @media (min-width: 992px) { #main-nav ul li a { padding: 10px 20px; font-size: 16px; } .bg.project-bg, .bg.page-bg { height: 650px; } .crumbs { display: block; } .filter li a { font-size: 18px; } #project-hero, #page-hero { height: 650px; } } /*----- Large Desktop -----*/ @media (min-width: 1200px) { #projects-nav .prev-project, #projects-nav .next-project { width: 200px; height: 200px; } #projects-nav .prev-project { left: -30px; } #projects-nav .next-project { right: -30px; } }
docs/javadoc/allclasses-frame.html
bhgomes/jaql
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_72) on Mon May 22 22:54:16 EDT 2017 --> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>All Classes (JAQL SDK)</title> <meta name="date" content="2017-05-22"> <link rel="stylesheet" type="text/css" href="javadoc.css" title="Style"> <script type="text/javascript" src="script.js"></script> </head> <body> <h1 class="bar">All&nbsp;Classes</h1> <div class="indexContainer"> <ul> <li><a href="bhgomes/jaql/util/ColumnIterable.html" title="interface in bhgomes.jaql.util" target="classFrame"><span class="interfaceName">ColumnIterable</span></a></li> <li><a href="bhgomes/jaql/util/ColumnIterator.html" title="class in bhgomes.jaql.util" target="classFrame">ColumnIterator</a></li> <li><a href="bhgomes/jaql/conn/ConnectionManager.html" title="class in bhgomes.jaql.conn" target="classFrame">ConnectionManager</a></li> <li><a href="bhgomes/jaql/conn/ConnectionNotFoundException.html" title="class in bhgomes.jaql.conn" target="classFrame">ConnectionNotFoundException</a></li> <li><a href="bhgomes/jaql/Database.html" title="class in bhgomes.jaql" target="classFrame">Database</a></li> <li><a href="bhgomes/jaql/io/FileManager.html" title="class in bhgomes.jaql.io" target="classFrame">FileManager</a></li> <li><a href="bhgomes/jaql/JAQL.html" title="class in bhgomes.jaql" target="classFrame">JAQL</a></li> <li><a href="bhgomes/jaql/io/JAQLFile.html" title="class in bhgomes.jaql.io" target="classFrame">JAQLFile</a></li> <li><a href="bhgomes/jaql/io/JAQLFileException.html" title="class in bhgomes.jaql.io" target="classFrame">JAQLFileException</a></li> <li><a href="bhgomes/jaql/lang/LangObject.html" title="class in bhgomes.jaql.lang" target="classFrame">LangObject</a></li> <li><a href="bhgomes/jaql/lang/LangObject.Type.html" title="enum in bhgomes.jaql.lang" target="classFrame">LangObject.Type</a></li> <li><a href="bhgomes/jaql/logging/Level.html" title="class in bhgomes.jaql.logging" target="classFrame">Level</a></li> <li><a href="bhgomes/jaql/logging/LogFormatter.html" title="class in bhgomes.jaql.logging" target="classFrame">LogFormatter</a></li> <li><a href="bhgomes/jaql/LoggableException.html" title="class in bhgomes.jaql" target="classFrame">LoggableException</a></li> <li><a href="bhgomes/jaql/logging/LoggableManager.html" title="class in bhgomes.jaql.logging" target="classFrame">LoggableManager</a></li> <li><a href="bhgomes/jaql/logging/Logger.html" title="class in bhgomes.jaql.logging" target="classFrame">Logger</a></li> <li><a href="bhgomes/jaql/LogicException.html" title="class in bhgomes.jaql" target="classFrame">LogicException</a></li> <li><a href="bhgomes/jaql/util/MultiIterable.html" title="interface in bhgomes.jaql.util" target="classFrame"><span class="interfaceName">MultiIterable</span></a></li> <li><a href="bhgomes/jaql/util/MultiIterator.html" title="class in bhgomes.jaql.util" target="classFrame">MultiIterator</a></li> <li><a href="bhgomes/jaql/lang/ResultModel.html" title="class in bhgomes.jaql.lang" target="classFrame">ResultModel</a></li> <li><a href="bhgomes/jaql/util/RowIterable.html" title="interface in bhgomes.jaql.util" target="classFrame"><span class="interfaceName">RowIterable</span></a></li> <li><a href="bhgomes/jaql/util/RowIterator.html" title="class in bhgomes.jaql.util" target="classFrame">RowIterator</a></li> <li><a href="bhgomes/jaql/lang/Statement.html" title="class in bhgomes.jaql.lang" target="classFrame">Statement</a></li> <li><a href="bhgomes/jaql/logging/STDOUT.html" title="class in bhgomes.jaql.logging" target="classFrame">STDOUT</a></li> <li><a href="bhgomes/jaql/lang/Table.html" title="class in bhgomes.jaql.lang" target="classFrame">Table</a></li> <li><a href="bhgomes/jaql/lang/Table.Coord.html" title="class in bhgomes.jaql.lang" target="classFrame">Table.Coord</a></li> <li><a href="bhgomes/jaql/lang/Table.Direction.html" title="enum in bhgomes.jaql.lang" target="classFrame">Table.Direction</a></li> </ul> </div> </body> </html>
web/shieldui/css/light-bootstrap/window.min.css
Etxea/adeges_extranet
/* Shield UI 1.6.10 Trial Version | Copyright 2013-2014 Shield UI Ltd. | www.shieldui.com/eula */ .sui-window{border-color:#e7e7e7;color:#333;background-color:#fff;box-shadow:0 0 7px #e7e7e7}.sui-window-titlebar{color:#fff;border-color:#4fa7ef;background-color:#428bca}.sui-window-content{background-color:#fff}.sui-window-modal{background-color:#919191}
_site/wiki/Use-IPOP-on-Ubuntu-and-Raspberry-Pi,-Manually.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="#use-ipop-on-ubuntu-and-raspberry-pi-manually">Use IPOP on Ubuntu and Raspberry Pi, Manually</a> <ul> <li class="toc-entry toc-h2"><a href="#download-and-install-dependencies">Download and Install Dependencies</a></li> <li class="toc-entry toc-h2"><a href="#get-ipop-binary">Get IPOP Binary</a></li> <li class="toc-entry toc-h2"><a href="#copy-configuration-file">Copy Configuration File</a></li> <li class="toc-entry toc-h2"><a href="#run-ipop">Run IPOP</a> <ul> <li class="toc-entry toc-h3"><a href="#run-ipop-tincan">Run IPOP TinCan</a></li> <li class="toc-entry toc-h3"><a href="#run-ipop-controller">Run IPOP Controller</a></li> </ul> </li> <li class="toc-entry toc-h2"><a href="#stop-ipop">Stop IPOP</a> <ul> <li class="toc-entry toc-h3"><a href="#stop-ipop-tincan">Stop IPOP Tincan</a></li> <li class="toc-entry toc-h3"><a href="#stop-ipop-controller">Stop IPOP Controller</a></li> </ul> </li> <li class="toc-entry toc-h2"><a href="#remove-ipop">Remove IPOP</a></li> </ul> </li> <li class="toc-entry toc-h1"><a href="#key-points-summary">Key Points Summary</a></li> </ul> </nav> </aside> <h1 id="use-ipop-on-ubuntu-and-raspberry-pi-manually">Use IPOP on Ubuntu and Raspberry Pi, Manually</h1> <table> <thead> <tr> <th> </th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><strong>Tested on</strong></td> <td>Ubuntu 16.04 and 18.04 x64<br />Raspbian Jessie and Stretch on Raspberry Pi 3<br />Raspbian Stretch on Raspberry Pi Zero</td> </tr> <tr> <td><strong>Time</strong></td> <td>~ 10 Minutes</td> </tr> <tr> <td><strong>Question(s)</strong></td> <td>- How to install IPOP?<br /> - How to run IPOP?<br /> - How to remove IPOP?</td> </tr> <tr> <td><strong>Objective(s)</strong></td> <td>- Install IPOP<br /> - Run IPOP<br /> - Stop IPOP<br /> - Remove IPOP</td> </tr> </tbody> </table> <h2 id="download-and-install-dependencies">Download and Install Dependencies</h2> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>sudo apt-get update -y sudo apt-get install -y python3 python3-pip iproute2 openvswitch-switch sudo -H pip3 install psutil sleekxmpp requests </code></pre> </div> <h2 id="get-ipop-binary">Get IPOP Binary</h2> <p>Download the proper version of IPOP from <a href="https://github.com/ipop-project/Downloads/releases">our latest release</a>.</p> <p>Then go to the download directory and extract the file (Put in the actual file name):</p> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>tar -xzvf ipop-vxxx.tar.gz <span class="nb">cd </span>ipop-vxxx </code></pre> </div> <h2 id="copy-configuration-file">Copy Configuration File</h2> <p>You will need a valid configuration file (ipop-config.json) to run IPOP. Go to the directory you have your config file and copy the file to the <code class="highlighter-rouge">config</code> directory:</p> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>cp PATH/TO/CONFIGFILE/ipop-config.json config/ </code></pre> </div> <h2 id="run-ipop">Run IPOP</h2> <h3 id="run-ipop-tincan">Run IPOP TinCan</h3> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>sudo ./ipop-tincan &amp; </code></pre> </div> <h3 id="run-ipop-controller">Run IPOP Controller</h3> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>python3 -m controller.Controller -c ./config/ipop-config.json &amp; </code></pre> </div> <p>Now, if everything is going well, IPOP should be run.</p> <h2 id="stop-ipop">Stop IPOP</h2> <h3 id="stop-ipop-tincan">Stop IPOP Tincan</h3> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>sudo killall ipop-tincan </code></pre> </div> <h3 id="stop-ipop-controller">Stop IPOP Controller</h3> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>ps aux | grep -v grep | grep controller.Controller | awk <span class="s1">'{print $2}'</span> | xargs sudo <span class="nb">kill</span> -9 </code></pre> </div> <h2 id="remove-ipop">Remove IPOP</h2> <p>To uninstall IPOP, its is safe to stop it first and then remove the IPOP execution directory.</p> <hr /> <h1 id="key-points-summary">Key Points Summary</h1> <ul> <li>Run IPOP:</li> </ul> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>sudo ./ipop-tincan &amp; python3 -m controller.Controller -c ./config/ipop-config.json &amp; </code></pre> </div> <ul> <li>Stop IPOP:</li> </ul> <div class="language-shell highlighter-rouge"><pre class="highlight"><code>sudo killall ipop-tincan ps aux | grep -v grep | grep controller.Controller | awk <span class="s1">'{print $2}'</span> | xargs sudo <span class="nb">kill</span> -9 </code></pre> </div> </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>
demo/index-fr.html
nico3333fr/van11y-accessible-hide-show-aria
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> <head> <meta charset="utf-8" /> <title>Démos : Panneaux dépliants accessibles (show/hide) avec ARIA et en Vanilla Javascript - Van11y </title> <link href="./styles.css" rel="stylesheet" media="all" /> <meta name="description" content="Ce script va transformer une simple liste de Hx/contenus en de beaux panneaux dépliants (hide/show), en utilisant ARIA" /> <meta name="keywords" content="collection, accessibilité, panneaux dépliants, accordéon, scripts, projets, onglets, info-bulle, customisable" /> <meta property="og:type" content="website" /> <!-- Open Graph Meta Data --> <meta property="og:title" content="Démo : Panneaux dépliants accessibles (show/hide) avec ARIA et en Vanilla Javascript - Van11y " /> <meta property="og:description" content="Ce script va transformer une simple liste de Hx/contenus en de beaux panneaux dépliants (hide/show), en utilisant ARIA" /> <meta property="og:image" content="https://van11y.net/apple-touch-icon_1471815930.png" /> <meta property="og:url" content="https://van11y.net/fr/panneaux-depliants-accessibles/" /> <meta name="twitter:card" content="summary" /> <meta name="twitter:url" content="https://van11y.net/fr/panneaux-depliants-accessibles/" /> <meta name="twitter:title" content="Démos : Panneaux dépliants accessibles (show/hide) avec ARIA et en Vanilla Javascript - Van11y" /> <meta name="twitter:description" content="Ce script va transformer une simple liste de Hx/contenus en de beaux panneaux dépliants (hide/show), en utilisant ARIA" /> <meta name="twitter:image" content="https://van11y.net/apple-touch-icon_1471815930.png" /> <meta name="twitter:site" content="Van11y" /> <meta name="twitter:creator" content="Van11y" /> <meta name="robots" content="index, follow" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> </head> <body role="document"> <div id="page" class="mw960e" role="main"> <br> <div class="aligncenter"> <a href="https://van11y.net/fr/" class="logo-link"><img src="https://van11y.net/layout/images/logo-van11y_1491639888.svg" alt="Retour à la page d’accueil" width="267" height="90" class="logo" /></a> </div> <br> <h1 class="aligncenter">Démos&#160;: Panneaux dépliants accessibles avec <abbr title="Accessible Rich Internet Applications" lang="en" xml:lang="en">ARIA</abbr>, en Vanilla <abbr title="JavaScript" lang="en" xml:lang="en">JS</abbr></h1> <h2 class="js-expandmore" data-hideshow-prefix-class="animated">Exemple animé (ouvert par défaut)</h2> <div class="js-to_expand is-opened"> <p>Oui, ça poutre des marmottes.</p> </div> <br><br> <h2 class="js-expandmore" data-hideshow-prefix-class="simple">Exemple non animé (fermé par défaut)</h2> <div class="js-to_expand"> <p>Oui, ça poutre des coincoins aussi.</p> </div> <br><br> <h2 class="js-expandmore" data-hideshow-prefix-class="simpleplus">Exemple avec un plus</h2> <div class="js-to_expand"> <p>Oui, ça marche aussi, et ça met un « moins » quand c’est ouvert.</p> </div> <br><br> <div class="relative dropdown-container"> <h2 class="js-expandmore2 mb0" data-hideshow-prefix-class2="dropdown" tabindex="0">Exemple de bouton <span lang="en">drop down</span></h2> <div class="js-to_expand"> <!-- js-first_load --> <div>Oui, ça poutre des coincoins aussi, et on peut faire apparaître du contenu avec une petite animation. <br />Et c’est chargé via une configuration différente. </div> </div> </div> <br><br><br><br> <div class="footer" role="contentinfo"><br>Ces démos sont des exemples de <a href="https://van11y.net/fr/panneaux-depliants-accessibles/" class="link">panneaux dépliants accessibles (<em lang="en" xml:lang="en">show/hide</em>) utilisant <abbr title="Accessible Rich Internet Applications" lang="en" xml:lang="en">ARIA</abbr></a>.<br></div> <br><br> </div> <script src="../dist/van11y-accessible-hide-show-aria.min.js"></script> <script> var other_expand = van11yAccessibleHideShowAria({ HIDESHOW_EXPAND: 'js-expandmore2', DATA_PREFIX_CLASS: 'data-hideshow-prefix-class2' }); other_expand.attach(); </script> </body> </html>
app/views/latest/delete_record.html
dwpdigitaltech/ejs-prototype
{% extends "layout.html" %} {% block propositionHeader %} {% include "includes/propositional_navigation.html" %} {% endblock %} {% block content %} <main id="content" role="main"> {% include "includes/main_nav.html" %} <div class="main-content"> <h1 class="heading-large">Settings - Maintain record</h1> {% set currentSettingsPage = 'maintainRecord' %} {% include "includes/settings_menu.html" %} <div class="grid-row"> <div class="column-half delete_record"> {% if data.reopenSuccessful %} <div class="panel panel-border-wide alert-success"> Claim successfully reopened </div> {% endif %} {% if data.deleteSuccessful %} <div class="panel panel-border-wide alert-success"> Claimant successfully deleted </div> {% endif %} <div class="search-box-container"> <form action="delete_record_view" method="get" class="form" id="search-form"> <label class="form-hint" for="nino">Enter a National Insurance or 12-digit reference number</label> <input id="nino" type="search" autocomplete="off" name="nino" autofocus="autofocus" class="js-search-focus"> <input id="search-submit" type="submit" class="search-submit" value="Search"/> </form> </div> </div> </div> </main> {% endblock %}
ocr_extracted/W29086_text/page33.html
datamade/elpc_bakken
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>W29086_text</title> <link rel="stylesheet" type="text/css" href="style.css" /> </head> <body> <div style="margin-left: auto; margin-right: auto; width: 800px; overflow: hidden;"> <div style="float: left;"> <a href="page32.html">&laquo;</a> </div> <div style="float: right;"> </div> </div> <hr/> <div style="position: absolute; margin-left: 0px; margin-top: 0px;"> <img src="images/tmp2u83Lr.png" alt="tmp2u83Lr.png" /> </div> </body> </html>
AngularJS/SnapSvgAndHtml5Mode/components/home/home.html
karin112358/Samples
<p>Home site</p>
layouts/shortcodes/button.html
tattwamasi/hugo-guild-theme
{{/* {{% button href="https://getgrav.org/" %}}Get Grav{{% /button %}} {{% button href="https://getgrav.org/" icon="fa-play" %}}Get Grav with awesome icon{{% /button %}} */}} <a {{ with .Get "href"}} href="{{.}}" target="_blank" {{ end }} class="button {{ with.Get "icon"}}icon {{.}}{{end}}"> {{ .Inner }} </a>
_includes/icons/icon-zoom.html
baillieo/baillieo.github.io
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.b{fill:none;stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;}</style></defs><title>ran</title><path class="b" d="M269.72,618a11,11,0,1,1-15.54,0A11,11,0,0,1,269.72,618Z" transform="translate(-249.97 -613.79)"/><line class="b" x1="19.97" y1="19.94" x2="31" y2="31"/><line class="b" x1="17.01" y1="11.99" x2="7.51" y2="11.99"/><line class="b" x1="12.26" y1="7.24" x2="12.26" y2="16.74"/></svg>
editor/index.html
FacilityApi/FacilityApi.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Facility Editor</title> <script src="https://use.fontawesome.com/7ae57e4dd9.js"></script> <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/darkly/bootstrap.min.css" rel="stylesheet" integrity="sha384-S7YMK1xjUjSpEnF4P8hPUcgjXYLZKK3fQW1j5ObLSl787II9p8RO9XUGehRmKsxd" crossorigin="anonymous"> <link rel="stylesheet" href="index.css"> </head> <body> <div class="main-container"> <div class="left-container"> <div class="left-top-container">Facility Service Definition</div> <div class="left-bottom-container"></div> </div> <div class="middle-container"> <div>Generator:</div> <select class="generator-picker" size="8"> <option value="csharp" selected>C#</option> <option value="javascript" selected>JavaScript</option> <option value="typescript" selected>TypeScript</option> <option value="markdown" selected>Markdown</option> <option value="fsd">FSD</option> <option value="swagger-yaml">Swagger YAML (OpenAPI 2.0)</option> <option value="swagger-json">Swagger JSON (OpenAPI 2.0)</option> <option value="asp-net-web-api">ASP.NET Web API</option> </select> <div class="middle-space-above">Output:</div> <div class="file-list-container"> <select class="file-list" size="100"> </select> </div> <form action="https://fsdgenapi.faithlife.com/generate/zip" method="post"> <input type="hidden" name="definitionName" value=""> <input type="hidden" name="definitionText" value=""> <input type="hidden" name="generatorName" value=""> <button type="submit" class="btn btn-link download-button">Download Output</button> </form> </div> <div class="right-container"> <div class="right-top-container">&nbsp;</div> <div class="right-bottom-container"></div> <div class="right-working-overlay"> <i class="right-working fa fa-cog fa-spin fa-3x fa-fw"></i> <span class="right-working sr-only">Loading...</span> </div> </div> </div> <script src='vs/loader.js'></script> <script> require(['vs/editor/editor.main'], function() { if (window.onMonacoReady) { window.onMonacoReady(); } }); </script> <script src='bundle.js' type='text/javascript'></script> </body> </html>
wp-content/cache/wp-cache-efade4f118b7327aaeb8c0bd5e3c6380.html
me115/me115.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" lang="zh-CN"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>大CC</title> <link rel="stylesheet" type="text/css" media="all" href="http://blogcc.u.qiniudn.com/wp-content/themes/zbench/style.css" /> <link rel="pingback" href="http://blog.me115.com/xmlrpc.php" /> <link rel="alternate" type="application/rss+xml" title="大CC &raquo; Feed" href="http://blog.me115.com/feed" /> <link rel="alternate" type="application/rss+xml" title="大CC &raquo; 评论 Feed" href="http://blog.me115.com/comments/feed" /> <script type="text/javascript"> var duoshuoQuery = {"short_name":"me115","sso":{"login":"http:\/\/blog.me115.com\/wp-login.php?action=duoshuo_login","logout":"http:\/\/blog.me115.com\/wp-login.php?action=logout&_wpnonce=00a39a7e05"},"theme":"default","stylePatch":"wordpress\/zBench"}; duoshuoQuery.sso.login += '&redirect_to=' + encodeURIComponent(window.location.href); duoshuoQuery.sso.logout += '&redirect_to=' + encodeURIComponent(window.location.href); </script> <script type="text/javascript" src="http://static.duoshuo.com/embed.js" charset="UTF-8" async="async"></script> <link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://blog.me115.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://blog.me115.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 3.5" /> <!-- All in One SEO Pack 1.6.15.3 by Michael Torbert of Semper Fi Web Design[291,351] --> <meta name="description" content="大CC,业从计算机,关注以下领域:互联网,创业,程序员,时间管理,商业经济,摄影及个人提升" /> <meta name="keywords" content="大CC, 博客,计算机,互联网,创业,摄影,时间管理,个人提升,木书架网" /> <link rel="canonical" href="http://blog.me115.com/" /> <!-- /all in one seo pack --> </head> <body class="home blog"> <div id="nav"> <div id="menus"> <ul><li class="current_page_item"><a href="http://blog.me115.com/">首页</a></li></ul> <ul id="menu-linux-2" class="menu"><li id="menu-item-566" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-566"><a href="http://blog.me115.com/category/linux%e5%b7%a5%e5%85%b7%e7%ae%b1">Linux工具箱</a></li> <li id="menu-item-493" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-493"><a href="http://blog.me115.com/category/cc%e4%b9%a6%e8%af%84">书评和笔记</a> <ul class="sub-menu"> <li id="menu-item-495" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-495"><a href="http://blog.me115.com/category/%e8%af%bb%e4%b9%a6%e7%ac%94%e8%ae%b0">读书笔记</a></li> <li id="menu-item-494" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-494"><a href="http://blog.me115.com/category/cc%e8%af%84%e7%bd%91">CC评网</a></li> </ul> </li> <li id="menu-item-560" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-560"><a href="http://blog.me115.com/%e9%98%85%e8%af%bb%e8%ae%a1%e5%88%92">阅读计划</a></li> <li id="menu-item-461" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-461"><a href="http://blog.me115.com/%e5%85%b3%e4%ba%8e%e6%9c%a8%e4%b9%a6%e6%9e%b6">关于木书架</a></li> <li id="menu-item-462" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-462"><a href="http://blog.me115.com/sample-page">关于我</a></li> </ul> </div> <div id="search"> <form id="searchform" method="get" action="http://blog.me115.com/"> <input type="text" value="站内搜索" onfocus="if (this.value == '站内搜索') {this.value = '';}" onblur="if (this.value == '') {this.value = '站内搜索';}" size="35" maxlength="50" name="s" id="s" /> <input type="submit" id="searchsubmit" value="搜索" /> </form> </div> </div> <div id="wrapper"> <div id="header"> <h1><a href="http://blog.me115.com/">大CC</a></h1> <h2>关注 Nosql/架构/时间管理/阅读分享</h2> <div class="clear"></div> </div> <div id="content"> <div class="post-935 post type-post status-publish format-standard hentry category-go post" id="post-935"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2016/05/935" title="链接到 godep 包管理工具">godep 包管理工具</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2016/05/935" title="下午 9:08" rel="bookmark">2016 年 5 月 25 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2016/05/935#respond" class="ds-thread-count" data-thread-key="935" title="《godep 包管理工具》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>godep是解决包依赖的管理工具 安装 go get github.com/to &hellip; <p class="read-more"><a href="http://blog.me115.com/2016/05/935">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-933 post type-post status-publish format-standard hentry category-uncategorized post" id="post-933"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2016/05/933" title="链接到 git常用命令">git常用命令</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2016/05/933" title="下午 9:07" rel="bookmark">2016 年 5 月 25 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2016/05/933#respond" class="ds-thread-count" data-thread-key="933" title="《git常用命令》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>git常用命令 初始化仓库 新建仓库 对现有的项目进行管理,进入该项目目录并输入 &hellip; <p class="read-more"><a href="http://blog.me115.com/2016/05/933">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-926 post type-post status-publish format-standard hentry category-go tag-go tag-138 post" id="post-926"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2016/01/926" title="链接到 从C++到GO">从C++到GO</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2016/01/926" title="下午 6:23" rel="bookmark">2016 年 1 月 26 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2016/01/926#respond" class="ds-thread-count" data-thread-key="926" title="《从C++到GO》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>从C++到GO 刚开始接触Go语言,看了两本Go语言的书,从c++开发者的角度来 &hellip; <p class="read-more"><a href="http://blog.me115.com/2016/01/926">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-924 post type-post status-publish format-standard hentry category-137 tag-epoll tag-137 post" id="post-924"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/12/924" title="链接到 网络编程中的关键问题总结">网络编程中的关键问题总结</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/12/924" title="下午 4:18" rel="bookmark">2015 年 12 月 31 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/12/924#respond" class="ds-thread-count" data-thread-key="924" title="《网络编程中的关键问题总结》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>网络编程中的关键问题总结 总结下网络编程中关键的细节问题,包含连接建立、连接断开 &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/12/924">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-907 post type-post status-publish format-standard hentry category-137 tag-muduo tag-reactor tag-137 post" id="post-907"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/12/907" title="链接到 Reactor事件驱动的两种实现:面向对象 VS 函数式编程">Reactor事件驱动的两种实现:面向对象 VS 函数式编程</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/12/907" title="下午 3:00" rel="bookmark">2015 年 12 月 30 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/12/907#respond" class="ds-thread-count" data-thread-key="907" title="《Reactor事件驱动的两种实现:面向对象 VS 函数式编程》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>Reactor事件驱动的两种实现:面向对象 VS 函数式编程 这里的函数式编程的 &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/12/907">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-891 post type-post status-publish format-standard hentry category-redis tag-redis-2 tag-113 post" id="post-891"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/12/891" title="链接到 单线程你别阻塞,Redis时延问题分析及应对">单线程你别阻塞,Redis时延问题分析及应对</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/12/891" title="上午 10:42" rel="bookmark">2015 年 12 月 9 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/12/891#respond" class="ds-thread-count" data-thread-key="891" title="《单线程你别阻塞,Redis时延问题分析及应对》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>单线程你别阻塞,Redis时延场景分析及应对 Redis的事件循环在一个线程中处 &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/12/891">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-886 post type-post status-publish format-standard hentry category-113 tag-142 post" id="post-886"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/11/886" title="链接到 负载均衡的几种常用方案">负载均衡的几种常用方案</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/11/886" title="下午 1:55" rel="bookmark">2015 年 11 月 27 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/11/886#respond" class="ds-thread-count" data-thread-key="886" title="《负载均衡的几种常用方案》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>负载均衡的几种常用方案 总结下负载均衡的常用方案及适用场景; Round Rob &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/11/886">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-884 post type-post status-publish format-standard hentry category-redis tag-redis-2 post" id="post-884"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/11/884" title="链接到 Redis哈希表的实现要点">Redis哈希表的实现要点</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/11/884" title="下午 4:16" rel="bookmark">2015 年 11 月 20 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/11/884#respond" class="ds-thread-count" data-thread-key="884" title="《Redis哈希表的实现要点》上的评论">没有评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>Redis哈希表的实现要点 哈希算法的选择 针对不同的key使用不同的hash算 &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/11/884">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-875 post type-post status-publish format-standard hentry category-linuxunix tag-53 post" id="post-875"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/10/875" title="链接到 多线程和多进程模型的选用">多线程和多进程模型的选用</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/10/875" title="上午 10:38" rel="bookmark">2015 年 10 月 10 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/10/875#comments" class="ds-thread-count" data-thread-key="875" title="《多线程和多进程模型的选用》上的评论">2 条评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>多线程和多进程模型的选用 这里的线程指通过linux的pthread_creat &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/10/875">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div class="post-872 post type-post status-publish format-standard hentry category-linuxunix post" id="post-872"><!-- post div --> <h2 class="title"><a href="http://blog.me115.com/2015/10/872" title="链接到 异步和非阻塞">异步和非阻塞</a></h2> <div class="post-info-top"> <span class="post-info-date"> 作者: <a href="http://blog.me115.com/author/me115wp" title="查看 大CC 的所有文章" rel="author">大CC</a> 日期: <a href="http://blog.me115.com/2015/10/872" title="上午 9:12" rel="bookmark">2015 年 10 月 9 日</a> </span> <span class="gotocomments"><a href="http://blog.me115.com/2015/10/872#comments" class="ds-thread-count" data-thread-key="872" title="《异步和非阻塞》上的评论">1 条评论</a></span> </div> <div class="clear"></div> <div class="entry"> <p>异步和非阻塞 今天看了篇知乎讨论,将异步和非阻塞讲的透彻;在这里整理出来; 同步 &hellip; <p class="read-more"><a href="http://blog.me115.com/2015/10/872">继续阅读 &raquo;</a></p> </div><!-- END entry --> </div><!-- END post --> <div id="pagination"><a href="http://blog.me115.com/page/2?p=%28SELECT+%28CASE+WHEN+%2825%3D25%29+THEN+935+ELSE+25%2A%28SELECT+25+FROM+INFORMATION_SCHEMA.CHARACTER_SETS%29+END%29%29" >下一页 &raquo;</a></div></div><!--content--> <div id="sidebar-border"> <div id="rss_border"> <div class="rss_border"> <div id="rss_wrap"> <div class="rss_wrap"> <a class="rss rss_text" href="http://blog.me115.com/feed" rel="bookmark" title="RSS 订阅">RSS 订阅</a> </div> </div> </div> </div> <div id="sidebar"> <div id="search-2" class="widget widget_search"><form id="searchform" method="get" action="http://blog.me115.com/"> <input type="text" value="站内搜索" onfocus="if (this.value == '站内搜索') {this.value = '';}" onblur="if (this.value == '') {this.value = '站内搜索';}" size="35" maxlength="50" name="s" id="s" /> <input type="submit" id="searchsubmit" value="搜索" /> </form></div> <div id="recent-posts-2" class="widget widget_recent_entries"> <h3 class="widgettitle">近期文章</h3> <ul> <li> <a href="http://blog.me115.com/2016/05/935" title="godep 包管理工具">godep 包管理工具</a> </li> <li> <a href="http://blog.me115.com/2016/05/933" title="git常用命令">git常用命令</a> </li> <li> <a href="http://blog.me115.com/2016/01/926" title="从C++到GO">从C++到GO</a> </li> <li> <a href="http://blog.me115.com/2015/12/924" title="网络编程中的关键问题总结">网络编程中的关键问题总结</a> </li> <li> <a href="http://blog.me115.com/2015/12/907" title="Reactor事件驱动的两种实现:面向对象 VS 函数式编程">Reactor事件驱动的两种实现:面向对象 VS 函数式编程</a> </li> </ul> </div><div id="text-3" class="widget widget_text"><h3 class="widgettitle">广告</h3> <div class="textwidget">本站使用digitalocean提供的VPS;<br/> 访问速度可以通过<a href="http://blog.me115.com" target="_blank">大CC博客</a> 和<a href="http://www.me115.com" target="_blank">木书架网</a>体验;<br/> 其中我的博客为直连digitalocean, 而木书架网站采用了第三方CDN加速(安全宝)<br/><br/> 从以下链接点击进入注册digitalocean,您将获取10美元(可免费使用2个月的VPS):<br/> <B><a href="https://www.digitalocean.com/?refcode=ee9c5a992d6f" target="_blank">DigitalOcean</a></B></div> </div><div id="ds-recent-comments-2" class="widget ds-widget-recent-comments"><h3 class="widgettitle">近期评论</h3><ul class="ds-recent-comments" data-num-items="5" data-show-avatars="0" data-show-time="0" data-show-title="0" data-show-admin="0" data-avatar-size="30" data-excerpt-length="70"></ul></div><script> if (typeof DUOSHUO !== 'undefined') DUOSHUO.RecentComments && DUOSHUO.RecentComments('.ds-recent-comments'); </script><div id="archives-3" class="widget widget_archive"><h3 class="widgettitle">文章归档</h3> <ul> <li><a href='http://blog.me115.com/date/2016/05' title='2016 年五月'>2016 年五月</a></li> <li><a href='http://blog.me115.com/date/2016/01' title='2016 年一月'>2016 年一月</a></li> <li><a href='http://blog.me115.com/date/2015/12' title='2015 年十二月'>2015 年十二月</a></li> <li><a href='http://blog.me115.com/date/2015/11' title='2015 年十一月'>2015 年十一月</a></li> <li><a href='http://blog.me115.com/date/2015/10' title='2015 年十月'>2015 年十月</a></li> <li><a href='http://blog.me115.com/date/2015/09' title='2015 年九月'>2015 年九月</a></li> <li><a href='http://blog.me115.com/date/2015/08' title='2015 年八月'>2015 年八月</a></li> <li><a href='http://blog.me115.com/date/2015/06' title='2015 年六月'>2015 年六月</a></li> <li><a href='http://blog.me115.com/date/2015/05' title='2015 年五月'>2015 年五月</a></li> <li><a href='http://blog.me115.com/date/2015/04' title='2015 年四月'>2015 年四月</a></li> <li><a href='http://blog.me115.com/date/2015/03' title='2015 年三月'>2015 年三月</a></li> <li><a href='http://blog.me115.com/date/2015/02' title='2015 年二月'>2015 年二月</a></li> <li><a href='http://blog.me115.com/date/2015/01' title='2015 年一月'>2015 年一月</a></li> <li><a href='http://blog.me115.com/date/2014/11' title='2014 年十一月'>2014 年十一月</a></li> <li><a href='http://blog.me115.com/date/2014/10' title='2014 年十月'>2014 年十月</a></li> <li><a href='http://blog.me115.com/date/2014/09' title='2014 年九月'>2014 年九月</a></li> <li><a href='http://blog.me115.com/date/2014/08' title='2014 年八月'>2014 年八月</a></li> <li><a href='http://blog.me115.com/date/2014/07' title='2014 年七月'>2014 年七月</a></li> <li><a href='http://blog.me115.com/date/2014/06' title='2014 年六月'>2014 年六月</a></li> <li><a href='http://blog.me115.com/date/2014/05' title='2014 年五月'>2014 年五月</a></li> <li><a href='http://blog.me115.com/date/2014/04' title='2014 年四月'>2014 年四月</a></li> <li><a href='http://blog.me115.com/date/2014/02' title='2014 年二月'>2014 年二月</a></li> <li><a href='http://blog.me115.com/date/2013/12' title='2013 年十二月'>2013 年十二月</a></li> <li><a href='http://blog.me115.com/date/2013/11' title='2013 年十一月'>2013 年十一月</a></li> <li><a href='http://blog.me115.com/date/2013/10' title='2013 年十月'>2013 年十月</a></li> <li><a href='http://blog.me115.com/date/2013/09' title='2013 年九月'>2013 年九月</a></li> <li><a href='http://blog.me115.com/date/2013/06' title='2013 年六月'>2013 年六月</a></li> <li><a href='http://blog.me115.com/date/2013/04' title='2013 年四月'>2013 年四月</a></li> <li><a href='http://blog.me115.com/date/2013/03' title='2013 年三月'>2013 年三月</a></li> <li><a href='http://blog.me115.com/date/2013/01' title='2013 年一月'>2013 年一月</a></li> <li><a href='http://blog.me115.com/date/2012/12' title='2012 年十二月'>2012 年十二月</a></li> <li><a href='http://blog.me115.com/date/2012/10' title='2012 年十月'>2012 年十月</a></li> <li><a href='http://blog.me115.com/date/2012/09' title='2012 年九月'>2012 年九月</a></li> <li><a href='http://blog.me115.com/date/2012/08' title='2012 年八月'>2012 年八月</a></li> <li><a href='http://blog.me115.com/date/2012/05' title='2012 年五月'>2012 年五月</a></li> <li><a href='http://blog.me115.com/date/2012/04' title='2012 年四月'>2012 年四月</a></li> <li><a href='http://blog.me115.com/date/2012/02' title='2012 年二月'>2012 年二月</a></li> <li><a href='http://blog.me115.com/date/2011/11' title='2011 年十一月'>2011 年十一月</a></li> <li><a href='http://blog.me115.com/date/2011/10' title='2011 年十月'>2011 年十月</a></li> <li><a href='http://blog.me115.com/date/2011/09' title='2011 年九月'>2011 年九月</a></li> <li><a href='http://blog.me115.com/date/2011/07' title='2011 年七月'>2011 年七月</a></li> <li><a href='http://blog.me115.com/date/2011/06' title='2011 年六月'>2011 年六月</a></li> <li><a href='http://blog.me115.com/date/2011/05' title='2011 年五月'>2011 年五月</a></li> <li><a href='http://blog.me115.com/date/2011/04' title='2011 年四月'>2011 年四月</a></li> <li><a href='http://blog.me115.com/date/2011/03' title='2011 年三月'>2011 年三月</a></li> <li><a href='http://blog.me115.com/date/2011/02' title='2011 年二月'>2011 年二月</a></li> <li><a href='http://blog.me115.com/date/2011/01' title='2011 年一月'>2011 年一月</a></li> <li><a href='http://blog.me115.com/date/2010/12' title='2010 年十二月'>2010 年十二月</a></li> <li><a href='http://blog.me115.com/date/2010/11' title='2010 年十一月'>2010 年十一月</a></li> <li><a href='http://blog.me115.com/date/2010/10' title='2010 年十月'>2010 年十月</a></li> </ul> </div><div id="categories-2" class="widget widget_categories"><h3 class="widgettitle">分类目录</h3> <ul> <li class="cat-item cat-item-2"><a href="http://blog.me115.com/category/beautiful-life" title="查看 Beautiful Life 下的所有文章">Beautiful Life</a> </li> <li class="cat-item cat-item-92"><a href="http://blog.me115.com/category/berkeley-db" title="查看 Berkeley DB 下的所有文章">Berkeley DB</a> </li> <li class="cat-item cat-item-3"><a href="http://blog.me115.com/category/%e7%a8%8b%e5%ba%8f%e5%91%98/c%e7%bc%96%e7%a8%8b" title="查看 C++编程 下的所有文章">C++编程</a> </li> <li class="cat-item cat-item-4"><a href="http://blog.me115.com/category/cc%e4%b9%a6%e8%af%84" title="查看 CC书评 下的所有文章">CC书评</a> </li> <li class="cat-item cat-item-5"><a href="http://blog.me115.com/category/cc%e8%af%84%e7%bd%91" title="查看 CC评网 下的所有文章">CC评网</a> </li> <li class="cat-item cat-item-146"><a href="http://blog.me115.com/category/go%e8%af%ad%e8%a8%80" title="查看 GO语言 下的所有文章">GO语言</a> </li> <li class="cat-item cat-item-6"><a href="http://blog.me115.com/category/linuxunix" title="查看 Linux&amp;Unix 下的所有文章">Linux&amp;Unix</a> </li> <li class="cat-item cat-item-90"><a href="http://blog.me115.com/category/linux%e5%b7%a5%e5%85%b7%e7%ae%b1" title="查看 Linux工具箱 下的所有文章">Linux工具箱</a> </li> <li class="cat-item cat-item-7"><a href="http://blog.me115.com/category/python" title="查看 Python 下的所有文章">Python</a> </li> <li class="cat-item cat-item-93"><a href="http://blog.me115.com/category/redis" title="查看 Redis 下的所有文章">Redis</a> </li> <li class="cat-item cat-item-8"><a href="http://blog.me115.com/category/web%e5%bc%80%e5%8f%91" title="查看 WEB开发 下的所有文章">WEB开发</a> </li> <li class="cat-item cat-item-127"><a href="http://blog.me115.com/category/%e5%84%92%e9%87%8a%e9%81%93" title="查看 儒释道 下的所有文章">儒释道</a> </li> <li class="cat-item cat-item-9"><a href="http://blog.me115.com/category/%e5%85%ac%e5%8f%b8%e7%ae%a1%e7%90%86" title="查看 公司管理 下的所有文章">公司管理</a> </li> <li class="cat-item cat-item-10"><a href="http://blog.me115.com/category/%e5%b9%b6%e8%a1%8c%e8%ae%a1%e7%ae%97" title="查看 并行计算 下的所有文章">并行计算</a> </li> <li class="cat-item cat-item-58"><a href="http://blog.me115.com/category/%e6%91%84%e5%bd%b1" title="查看 摄影 下的所有文章">摄影</a> </li> <li class="cat-item cat-item-11"><a href="http://blog.me115.com/category/%e6%97%b6%e9%97%b4%e7%ae%a1%e7%90%86" title="查看 时间管理 下的所有文章">时间管理</a> </li> <li class="cat-item cat-item-1"><a href="http://blog.me115.com/category/uncategorized" title="查看 未分类 下的所有文章">未分类</a> </li> <li class="cat-item cat-item-113"><a href="http://blog.me115.com/category/%e6%9e%b6%e6%9e%84" title="查看 架构 下的所有文章">架构</a> </li> <li class="cat-item cat-item-12"><a href="http://blog.me115.com/category/%e7%a4%be%e4%bc%9a%e6%9d%82%e8%b0%88" title="查看 社会杂谈 下的所有文章">社会杂谈</a> </li> <li class="cat-item cat-item-74"><a href="http://blog.me115.com/category/%e7%a8%8b%e5%ba%8f%e5%91%98" title="查看 程序员 下的所有文章">程序员</a> </li> <li class="cat-item cat-item-13"><a href="http://blog.me115.com/category/%e7%bb%8f%e6%b5%8e%e8%a7%82%e7%82%b9" title="查看 经济观点 下的所有文章">经济观点</a> </li> <li class="cat-item cat-item-137"><a href="http://blog.me115.com/category/%e7%bd%91%e7%bb%9c%e7%bc%96%e7%a8%8b" title="查看 网络编程 下的所有文章">网络编程</a> </li> <li class="cat-item cat-item-132"><a href="http://blog.me115.com/category/%e8%a7%82%e7%82%b9%e4%b8%8e%e6%84%9f%e6%83%b3" title="查看 观点与感想 下的所有文章">观点与感想</a> </li> <li class="cat-item cat-item-14"><a href="http://blog.me115.com/category/%e8%af%bb%e4%b9%a6%e7%ac%94%e8%ae%b0" title="查看 读书笔记 下的所有文章">读书笔记</a> </li> <li class="cat-item cat-item-15"><a href="http://blog.me115.com/category/%e9%a1%b9%e7%9b%ae%e7%ae%a1%e7%90%86" title="查看 项目管理 下的所有文章">项目管理</a> </li> </ul> </div><div id="meta-2" class="widget widget_meta"><h3 class="widgettitle">功能</h3> <ul> <li><a href="http://blog.me115.com/wp-login.php">登录</a></li> <li><a href="http://blog.me115.com/feed" title="使用 RSS 2.0 订阅本站点内容">文章 <abbr title="Really Simple Syndication">RSS</abbr></a></li> <li><a href="http://blog.me115.com/comments/feed" title="使用 RSS 订阅本站点的所有文章的近期评论">评论 <abbr title="Really Simple Syndication">RSS</abbr></a></li> <li><a href="http://cn.wordpress.org/" title="基于 WordPress,一个优美、先进的个人信息发布平台。">WordPress.org</a></li> </ul> </div><div id="nav_menu-2" class="widget widget_nav_menu"><div class="menu-%e5%8f%8b%e6%83%85%e9%93%be%e6%8e%a5-container"><ul id="menu-%e5%8f%8b%e6%83%85%e9%93%be%e6%8e%a5" class="menu"><li id="menu-item-304" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-304"><a title="pongba,关注C++,心理学" href="http://mindhacks.cn/archives/">刘未鹏</a></li> <li id="menu-item-540" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-540"><a title="游走世界,精彩人生" href="http://www.purplexsu.net/">purplexsu</a></li> <li id="menu-item-348" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-348"><a href="http://coolshell.cn/">酷壳</a></li> <li id="menu-item-322" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-322"><a href="http://www.cppfans.org/">C++爱好者博客</a></li> <li id="menu-item-321" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-321"><a href="http://www.cnblogs.com/archy_yu/">Archy Yu</a></li> <li id="menu-item-305" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-305"><a href="http://www.shenlongbin.com/">申龙斌的程序人生</a></li> <li id="menu-item-324" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-324"><a href="http://www.rrgod.com">Eddy Blog</a></li> <li id="menu-item-340" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-340"><a href="http://www.wangyuxiong.com/">点滴–挖掘技术细节</a></li> <li id="menu-item-341" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-341"><a href="http://www.hiadmin.org/">Smart Testing</a></li> </ul></div></div><div id="text-2" class="widget widget_text"><h3 class="widgettitle">统计</h3> <div class="textwidget"><script type="text/javascript">var cnzz_protocol = (("https:" == document.location.protocol) ? " https://" : " http://");document.write(unescape("%3Cspan id='cnzz_stat_icon_4893206'%3E%3C/span%3E%3Cscript src='" + cnzz_protocol + "s19.cnzz.com/stat.php%3Fid%3D4893206%26show%3Dpic' type='text/javascript'%3E%3C/script%3E"));</script></div> </div> </div><!-- end: #sidebar --> </div><!-- end: #sidebar-border --></div><!--wrapper--> <div class="clear"></div> <div id="footer"> <div id="footer-inside"> <p> 版权所有 &copy; 2016 大CC | 站点由 <a href="http://zww.me">zBench</a> 和 <a href="http://wordpress.org/">WordPress</a> 驱动 </p> <span id="back-to-top">&uarr; <a href="#" rel="nofollow" title="Back to top">回到顶部</a></span> </div> </div><!--footer--> </body> </html> <!-- Dynamic page generated in 1.145 seconds. --> <!-- Cached page generated by WP-Super-Cache on 2016-06-28 04:39:39 -->
framework/documentation/api/play/libs/class-use/F.Tuple.html
lafayette/JBTT
<!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_20) on Mon May 02 10:23:15 CEST 2011 --> <TITLE> Uses of Class play.libs.F.Tuple (Play! API) </TITLE> <META NAME="date" CONTENT="2011-05-02"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class play.libs.F.Tuple (Play! 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="../../../play/libs/F.Tuple.html" title="class in play.libs"><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?play/libs//class-useF.Tuple.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="F.Tuple.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>play.libs.F.Tuple</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="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#play.libs"><B>play.libs</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="play.libs"><!-- --></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="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A> in <A HREF="../../../play/libs/package-summary.html">play.libs</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">Subclasses of <A HREF="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A> in <A HREF="../../../play/libs/package-summary.html">play.libs</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../play/libs/F.T2.html" title="class in play.libs">F.T2&lt;A,B&gt;</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </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="../../../play/libs/package-summary.html">play.libs</A> that return <A HREF="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;A,B&gt; <A HREF="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A>&lt;A,B&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>F.</B><B><A HREF="../../../play/libs/F.html#Tuple(A, B)">Tuple</A></B>(A&nbsp;a, B&nbsp;b)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </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="../../../play/libs/package-summary.html">play.libs</A> that return types with arguments of type <A HREF="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>static <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" SUMMARY=""> <TR ALIGN="right" VALIGN=""> <TD NOWRAP><FONT SIZE="-1"> <CODE>&lt;A,B&gt; <A HREF="../../../play/libs/F.Promise.html" title="class in play.libs">F.Promise</A>&lt;<A HREF="../../../play/libs/F.Tuple.html" title="class in play.libs">F.Tuple</A>&lt;A,B&gt;&gt;</CODE></FONT></TD> </TR> </TABLE> </CODE></FONT></TD> <TD><CODE><B>F.Promise.</B><B><A HREF="../../../play/libs/F.Promise.html#wait2(play.libs.F.Promise, play.libs.F.Promise)">wait2</A></B>(<A HREF="../../../play/libs/F.Promise.html" title="class in play.libs">F.Promise</A>&lt;A&gt;&nbsp;tA, <A HREF="../../../play/libs/F.Promise.html" title="class in play.libs">F.Promise</A>&lt;B&gt;&nbsp;tB)</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="../../../play/libs/F.Tuple.html" title="class in play.libs"><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?play/libs//class-useF.Tuple.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="F.Tuple.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> <a href="http://guillaume.bort.fr">Guillaume Bort</a> &amp; <a href="http://www.zenexity.fr">zenexity</a> - Distributed under <a href="http://www.apache.org/licenses/LICENSE-2.0.html">Apache 2 licence</a>, without any warrantly </BODY> </HTML>
9f73df5/html/classv8_1_1Module-members.html
v8-dox/v8-dox.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>V8 API Reference Guide for node.js v7.9.0: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">V8 API Reference Guide for node.js v7.9.0 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#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="inherits.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_1Module.html">Module</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">v8::Module Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classv8_1_1Module.html">v8::Module</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1Module.html#a0785fa83cd3dde1dee086e1f9d31abdc">Evaluate</a>(Local&lt; Context &gt; context)</td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>GetEmbedderData</b>() const (defined in <a class="el" href="classv8_1_1Module.html">v8::Module</a>)</td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1Module.html#a7938d660e0a8024cc64423aae609c719">GetModuleRequest</a>(int i) const </td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classv8_1_1Module.html#a67333933f6b82703962102f72ec81937">GetModuleRequestsLength</a>() const </td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classv8_1_1Module.html#af3f4846a04a46b7b9ab4bf7ba83e8636">Instantiate</a>(Local&lt; Context &gt; context, ResolveCallback callback, Local&lt; Value &gt; callback_data=Local&lt; Value &gt;())</td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>ResolveCallback</b> typedef (defined in <a class="el" href="classv8_1_1Module.html">v8::Module</a>)</td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>SetEmbedderData</b>(Local&lt; Value &gt; data) (defined in <a class="el" href="classv8_1_1Module.html">v8::Module</a>)</td><td class="entry"><a class="el" href="classv8_1_1Module.html">v8::Module</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
index.html
OleksandrVladymyrov/FBShareDialog
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="description" content=""> <meta name="author" content="Oleksandr Vladymyrov"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <link rel="shortcut icon" href="img/favicon.png"> <title>FaceBook share dialog</title> <!-- Bootstrap core CSS --> <link href="bootstrap/dist/css/bootstrap.css" rel="stylesheet"> <script src="js/jquery/jquery.js"></script> <script src="bootstrap/dist/js/bootstrap.js"></script> <script src="fbsharedialog.js/fbsharedialog.js"></script> <link href="fbsharedialog.js/fbsharedialog.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <![endif]--> </head> <body> <div id="info"></div> <div id="fb-root"></div> <ul> <li>Status: <span id="login-status">Not logged in</span> | <a href="#" id="btnLogin" class="btn btn-success">Login</a> | <a href="#" id="btnLogout" class="btn btn-danger">Log out</a> </li> <span> You'll need to log in first </span> <br/> <li><a href="#" id="btnSelect9" class="btn btn-info run disabled active" role="button">Select friend - auto</a></li> <li><a href="#" id="btnSelect1" class="btn btn-info run disabled" role="button">Select friend - touch</a></li> <li><a href="#" id="btnSelect2" class="btn btn-info run disabled" role="button">Select friend - popup</a></li> <li><a href="#" id="btnSelect3" class="btn btn-info run disabled" role="button">Select friend - dialog</a></li> <li><a href="#" id="btnSelect4" class="btn btn-info run disabled" role="button">Select friend - iframe</a></li> <li><a href="#" id="btnSelect5" class="btn btn-info run disabled" role="button">Select friend - page</a></li> </ul> <div id="results"> <p>ACTIVITY LOG</p> </div> <!-- Markup for These Days Friend Selector --> <div id="FBShareDialog"> <div class="FBShareDialog_dialog"> <a href="#" id="FBShareDialog_buttonClose" class="FBShareDialog_button"> <span class="visible-xs">Cancel</span> <span class="hidden-xs">&times;</span> </a> <a href="#" id="FBShareDialog_buttonOK" class="FBShareDialog_button visible-xs">Share</a> <div class="FBShareDialog_form"> <div class="FBShareDialog_header"> <p>Post to wall</p> </div> <div class="FBShareDialog_content"> <div class="FBShareDialog_searchContainer FBShareDialog_clearfix"> <span class="FBShareDialog_selectedNameContainer">Please make your choice</span> <input type="text" placeholder="Search friends" id="FBShareDialog_searchField"/> </div> <div class="FBShareDialog_friendsContainer"></div> <div class="FBShareDialog_Iframe hidden-xs"> <div class="FBShareDialog_Iframe_loading"> <img src="img/loading.gif" alt="Loading ..."/> <iframe id="Iframe" width="100%" height="310px" frameborder="no" seamless=""></iframe> </div> </div> </div> </div> </div> </div> <!-- Bootstrap core JavaScript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="fbsharedialog.js/example.js"></script> </body> </html>
commons-el-1.0/docs/api/org/apache/commons/el/PropertySuffix.html
kennetham/LTA-Traffic-Demo
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc on Wed Jun 18 10:17:06 PDT 2003 --> <TITLE> PropertySuffix (JSP 2.0 Expression Language Implementation (Version 1.0)) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> </HEAD> <SCRIPT> function asd() { parent.document.title="PropertySuffix (JSP 2.0 Expression Language Implementation (Version 1.0))"; } </SCRIPT> <BODY BGCOLOR="white" onload="asd();"> <!-- ========== START OF NAVBAR ========== --> <A NAME="navbar_top"><!-- --></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</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;<A HREF="../../../../org/apache/commons/el/PrimitiveObjects.html"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/commons/el/RelationalOperator.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PropertySuffix.html" TARGET="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp; <SCRIPT> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html" TARGET=""><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html" TARGET=""><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <!-- =========== END OF NAVBAR =========== --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.commons.el</FONT> <BR> Class PropertySuffix</H2> <PRE> java.lang.Object | +--<A HREF="../../../../org/apache/commons/el/ValueSuffix.html">org.apache.commons.el.ValueSuffix</A> | +--<A HREF="../../../../org/apache/commons/el/ArraySuffix.html">org.apache.commons.el.ArraySuffix</A> | +--<B>org.apache.commons.el.PropertySuffix</B> </PRE> <HR> <DL> <DT>public class <B>PropertySuffix</B><DT>extends <A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></DL> <P> <p>Represents an operator that obtains the value of another value's property. This is a specialization of ArraySuffix - a.b is equivalent to a["b"] <P> <P> <DL> <DT><B>Version:</B><DD>$Change: 181177 $$DateTime: 2001/06/26 08:45:09 $$Author: luehe $</DD> </DD> <DT><B>Author:</B><DD>Nathan Abramson - Art Technology Group</DD> , Shawn Bayern</DD> </DD> </DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Field Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#mName">mName</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_org.apache.commons.el.ArraySuffix"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Fields inherited from class org.apache.commons.el.<A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html#mIndex">mIndex</A>, <A HREF="../../../../org/apache/commons/el/ArraySuffix.html#sNoArgs">sNoArgs</A></CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#PropertySuffix(java.lang.String)">PropertySuffix</A></B>(java.lang.String&nbsp;pName)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructor</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=2><FONT SIZE="+2"> <B>Method Summary</B></FONT></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;java.lang.Object</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#evaluateIndex(javax.servlet.jsp.el.VariableResolver, javax.servlet.jsp.el.FunctionMapper, org.apache.commons.el.Logger)">evaluateIndex</A></B>(javax.servlet.jsp.el.VariableResolver&nbsp;pResolver, javax.servlet.jsp.el.FunctionMapper&nbsp;functions, <A HREF="../../../../org/apache/commons/el/Logger.html">Logger</A>&nbsp;pLogger)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gets the value of the index</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#getExpressionString()">getExpressionString</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the expression in the expression language syntax</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#getName()">getName</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>(package private) &nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#getOperatorSymbol()">getOperatorSymbol</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the operator symbol</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/commons/el/PropertySuffix.html#setName(java.lang.String)">setName</A></B>(java.lang.String&nbsp;pName)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.apache.commons.el.ArraySuffix"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class org.apache.commons.el.<A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html#evaluate(java.lang.Object, javax.servlet.jsp.el.VariableResolver, javax.servlet.jsp.el.FunctionMapper, org.apache.commons.el.Logger)">evaluate</A>, <A HREF="../../../../org/apache/commons/el/ArraySuffix.html#getIndex()">getIndex</A>, <A HREF="../../../../org/apache/commons/el/ArraySuffix.html#setIndex(org.apache.commons.el.Expression)">setIndex</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.Object</B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <A NAME="field_detail"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Field Detail</B></FONT></TD> </TR> </TABLE> <A NAME="mName"><!-- --></A><H3> mName</H3> <PRE> java.lang.String <B>mName</B></PRE> <DL> <DL> </DL> </DL> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="PropertySuffix(java.lang.String)"><!-- --></A><H3> PropertySuffix</H3> <PRE> public <B>PropertySuffix</B>(java.lang.String&nbsp;pName)</PRE> <DL> <DD>Constructor <P> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%"> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="getName()"><!-- --></A><H3> getName</H3> <PRE> public java.lang.String <B>getName</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setName(java.lang.String)"><!-- --></A><H3> setName</H3> <PRE> public void <B>setName</B>(java.lang.String&nbsp;pName)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="evaluateIndex(javax.servlet.jsp.el.VariableResolver, javax.servlet.jsp.el.FunctionMapper, org.apache.commons.el.Logger)"><!-- --></A><H3> evaluateIndex</H3> <PRE> java.lang.Object <B>evaluateIndex</B>(javax.servlet.jsp.el.VariableResolver&nbsp;pResolver, javax.servlet.jsp.el.FunctionMapper&nbsp;functions, <A HREF="../../../../org/apache/commons/el/Logger.html">Logger</A>&nbsp;pLogger) throws javax.servlet.jsp.el.ELException</PRE> <DL> <DD>Gets the value of the index <P> <DD><DL> <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html#evaluateIndex(javax.servlet.jsp.el.VariableResolver, javax.servlet.jsp.el.FunctionMapper, org.apache.commons.el.Logger)">evaluateIndex</A></CODE> in class <CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></CODE></DL> </DD> <DD><DL> <DD><CODE>javax.servlet.jsp.el.ELException</CODE></DL> </DD> </DL> <HR> <A NAME="getOperatorSymbol()"><!-- --></A><H3> getOperatorSymbol</H3> <PRE> java.lang.String <B>getOperatorSymbol</B>()</PRE> <DL> <DD>Returns the operator symbol <P> <DD><DL> <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html#getOperatorSymbol()">getOperatorSymbol</A></CODE> in class <CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getExpressionString()"><!-- --></A><H3> getExpressionString</H3> <PRE> public java.lang.String <B>getExpressionString</B>()</PRE> <DL> <DD>Returns the expression in the expression language syntax <P> <DD><DL> <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html#getExpressionString()">getExpressionString</A></CODE> in class <CODE><A HREF="../../../../org/apache/commons/el/ArraySuffix.html">ArraySuffix</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ========== START OF NAVBAR ========== --> <A NAME="navbar_bottom"><!-- --></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</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;<A HREF="../../../../org/apache/commons/el/PrimitiveObjects.html"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/commons/el/RelationalOperator.html"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PropertySuffix.html" TARGET="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp; <SCRIPT> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html" TARGET=""><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html" TARGET=""><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#field_summary">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;<A HREF="#field_detail">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <!-- =========== END OF NAVBAR =========== --> <HR> Copyright (c) 2001-2002 - Apache Software Foundation </BODY> </HTML>
examples/react-gh-pages/tips/controlled-input-null-value-ko-KR.html
voorhoede/fastatic
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>제어되는 input 내의 null 값 | React</title> <meta name="viewport" content="width=device-width"> <meta property="og:title" content="제어되는 input 내의 null 값 | React"> <meta property="og:type" content="website"> <meta property="og:url" content="https://facebook.github.io/react/tips/controlled-input-null-value-ko-KR.html"> <meta property="og:image" content="https://facebook.github.io/react/img/logo_og.png"> <meta property="og:description" content="A JavaScript library for building user interfaces"> <meta property="fb:app_id" content="623268441017527"> <link rel="shortcut icon" href="/react/favicon.ico"> <link rel="alternate" type="application/rss+xml" title="React" href="https://facebook.github.io/react/feed.xml"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.css" /> <link rel="stylesheet" href="/react/css/syntax.css"> <link rel="stylesheet" href="/react/css/codemirror.css"> <link rel="stylesheet" href="/react/css/react.css"> <script src="//use.typekit.net/vqa1hcx.js"></script> <script>try{Typekit.load();}catch(e){}</script> <!--[if lte IE 8]> <script src="/react/js/html5shiv.min.js"></script> <script src="/react/js/es5-shim.min.js"></script> <script src="/react/js/es5-sham.min.js"></script> <![endif]--> <script type="text/javascript" src="https://cdn.jsdelivr.net/docsearch.js/1/docsearch.min.js"></script> <script src="/react/js/codemirror.js"></script> <script src="/react/js/javascript.js"></script> <script src="/react/js/xml.js"></script> <script src="/react/js/jsx.js"></script> <script src="/react/js/react.js"></script> <script src="/react/js/react-dom.js"></script> <script src="/react/js/babel-browser.min.js"></script> <script src="/react/js/live_editor.js"></script> </head> <body> <div class="container"> <div class="nav-main"> <div class="wrap"> <a class="nav-home" href="/react/index.html"> <img class="nav-logo" src="/react/img/logo.svg" width="36" height="36"> React </a> <ul class="nav-site nav-site-internal"> <li><a href="/react/docs/getting-started.html" class="active">Docs</a></li> <li><a href="/react/support.html">Support</a></li> <li><a href="/react/downloads.html">Download</a></li> <li><a href="/react/blog/">Blog</a></li> <li> <input id="algolia-doc-search" type="text" placeholder="Search docs..." /> </li> </ul> <ul class="nav-site nav-site-external"> <li><a href="https://github.com/facebook/react">GitHub</a></li> <li><a href="https://facebook.github.io/react-native/">React Native</a></li> </ul> </div> </div> <section class="content wrap documentationContent"> <div class="nav-docs"> <!-- Docs Nav --> <div class="nav-docs-section"> <h3>Quick Start</h3> <ul> <li> <a href="/react/docs/getting-started.html">Getting Started</a> </li> <li> <a href="/react/docs/tutorial.html">Tutorial</a> </li> <li> <a href="/react/docs/thinking-in-react.html">Thinking in React</a> </li> </ul> </div> <div class="nav-docs-section"> <h3>Community Resources</h3> <ul> <li> <a href="/react/docs/conferences.html">Conferences</a> </li> <li> <a href="/react/docs/videos.html">Videos</a> </li> <li> <a href="https://github.com/facebook/react/wiki/Complementary-Tools" class="external">Complementary Tools</a> </li> <li> <a href="https://github.com/facebook/react/wiki/Examples" class="external">Examples</a> </li> </ul> </div> <div class="nav-docs-section"> <h3>Guides</h3> <ul> <li> <a href="/react/docs/why-react.html">Why React?</a> </li> <li> <a href="/react/docs/displaying-data.html">Displaying Data</a> <ul> <li> <a href="/react/docs/jsx-in-depth.html">JSX in Depth</a> </li> <li> <a href="/react/docs/jsx-spread.html">JSX Spread Attributes</a> </li> <li> <a href="/react/docs/jsx-gotchas.html">JSX Gotchas</a> </li> </ul> </li> <li> <a href="/react/docs/interactivity-and-dynamic-uis.html">Interactivity and Dynamic UIs</a> </li> <li> <a href="/react/docs/multiple-components.html">Multiple Components</a> </li> <li> <a href="/react/docs/reusable-components.html">Reusable Components</a> </li> <li> <a href="/react/docs/transferring-props.html">Transferring Props</a> </li> <li> <a href="/react/docs/forms.html">Forms</a> </li> <li> <a href="/react/docs/working-with-the-browser.html">Working With the Browser</a> <ul> <li> <a href="/react/docs/more-about-refs.html">Refs to Components</a> </li> </ul> </li> <li> <a href="/react/docs/tooling-integration.html">Tooling Integration</a> <ul> <li> <a href="/react/docs/language-tooling.html">Language Tooling</a> </li> <li> <a href="/react/docs/package-management.html">Package Management</a> </li> <li> <a href="/react/docs/environments.html">Server-side Environments</a> </li> </ul> </li> <li> <a href="/react/docs/addons.html">Add-Ons</a> <ul> <li> <a href="/react/docs/animation.html">Animation</a> </li> <li> <a href="/react/docs/two-way-binding-helpers.html">Two-Way Binding Helpers</a> </li> <li> <a href="/react/docs/test-utils.html">Test Utilities</a> </li> <li> <a href="/react/docs/clone-with-props.html">Cloning Elements</a> </li> <li> <a href="/react/docs/create-fragment.html">Keyed Fragments</a> </li> <li> <a href="/react/docs/update.html">Immutability Helpers</a> </li> <li> <a href="/react/docs/pure-render-mixin.html">PureRenderMixin</a> </li> <li> <a href="/react/docs/perf.html">Performance Tools</a> </li> <li> <a href="/react/docs/shallow-compare.html">Shallow Compare</a> </li> </ul> </li> <li> <a href="/react/docs/advanced-performance.html">Advanced Performance</a> </li> <li> <a href="/react/docs/context.html">Context</a> </li> </ul> </div> <div class="nav-docs-section"> <h3>Reference</h3> <ul> <li> <a href="/react/docs/top-level-api.html">Top-Level API</a> </li> <li> <a href="/react/docs/component-api.html">Component API</a> </li> <li> <a href="/react/docs/component-specs.html">Component Specs and Lifecycle</a> </li> <li> <a href="/react/docs/tags-and-attributes.html">Supported Tags and Attributes</a> </li> <li> <a href="/react/docs/events.html">Event System</a> </li> <li> <a href="/react/docs/dom-differences.html">DOM Differences</a> </li> <li> <a href="/react/docs/special-non-dom-attributes.html">Special Non-DOM Attributes</a> </li> <li> <a href="/react/docs/reconciliation.html">Reconciliation</a> </li> <li> <a href="/react/docs/webcomponents.html">Web Components</a> </li> <li> <a href="/react/docs/glossary.html">React (Virtual) DOM Terminology</a> </li> </ul> </div> <!-- Tips Nav --> <div class="nav-docs-section"> <h3>Tips</h3> <ul> <li> <a href="/react/tips/introduction.html">Introduction</a> </li> <li> <a href="/react/tips/inline-styles.html">Inline Styles</a> </li> <li> <a href="/react/tips/if-else-in-JSX.html">If-Else in JSX</a> </li> <li> <a href="/react/tips/self-closing-tag.html">Self-Closing Tag</a> </li> <li> <a href="/react/tips/maximum-number-of-jsx-root-nodes.html">Maximum Number of JSX Root Nodes</a> </li> <li> <a href="/react/tips/style-props-value-px.html">Shorthand for Specifying Pixel Values in style props</a> </li> <li> <a href="/react/tips/children-props-type.html">Type of the Children props</a> </li> <li> <a href="/react/tips/controlled-input-null-value.html">Value of null for Controlled Input</a> </li> <li> <a href="/react/tips/componentWillReceiveProps-not-triggered-after-mounting.html">componentWillReceiveProps Not Triggered After Mounting</a> </li> <li> <a href="/react/tips/props-in-getInitialState-as-anti-pattern.html">Props in getInitialState Is an Anti-Pattern</a> </li> <li> <a href="/react/tips/dom-event-listeners.html">DOM Event Listeners in a Component</a> </li> <li> <a href="/react/tips/initial-ajax.html">Load Initial Data via AJAX</a> </li> <li> <a href="/react/tips/false-in-jsx.html">False in JSX</a> </li> <li> <a href="/react/tips/communicate-between-components.html">Communicate Between Components</a> </li> <li> <a href="/react/tips/expose-component-functions.html">Expose Component Functions</a> </li> <li> <a href="/react/tips/children-undefined.html">this.props.children undefined</a> </li> <li> <a href="/react/tips/use-react-with-other-libraries.html">Use React with Other Libraries</a> </li> <li> <a href="/react/tips/dangerously-set-inner-html.html">Dangerously Set innerHTML</a> </li> </ul> </div> <!-- Contributing Nav --> <div class="nav-docs-section"> <h3>Contributing</h3> <ul> <li> <a href="/react/contributing/design-principles.html">Design Principles</a> </li> </ul> </div> </div> <div class="inner-content"> <h1>제어되는 input 내의 null 값</h1> <div class="subHeader"></div> <p><a href="/react/docs/forms-ko-KR.html">제어되는 컴포넌트들</a>의 <code>value</code> 속성 값을 지정하면 유저에 의해 입력값을 바꿀 수 없습니다.</p> <p><code>value</code>가 정해져 있는데도 입력값을 변경할 수 있는 문제를 겪고 있다면 실수로 <code>value</code>를 <code>undefined</code>나 <code>null</code>로 설정한 것일 수 있습니다.</p> <p>아래 짧은 예제가 있습니다; 렌더링 후, 잠시 뒤에 텍스트를 고칠 수 있는 상태가 되는 것을 확인 하실 수 있습니다.</p> <div class="highlight"><pre><code class="language-js" data-lang="js"><span class="nx">ReactDOM</span><span class="p">.</span><span class="nx">render</span><span class="p">(</span><span class="o">&lt;</span><span class="nx">input</span> <span class="nx">value</span><span class="o">=</span><span class="s2">&quot;hi&quot;</span> <span class="o">/&gt;</span><span class="p">,</span> <span class="nx">mountNode</span><span class="p">);</span> <span class="nx">setTimeout</span><span class="p">(</span><span class="kd">function</span><span class="p">()</span> <span class="p">{</span> <span class="nx">ReactDOM</span><span class="p">.</span><span class="nx">render</span><span class="p">(</span><span class="o">&lt;</span><span class="nx">input</span> <span class="nx">value</span><span class="o">=</span><span class="p">{</span><span class="kc">null</span><span class="p">}</span> <span class="o">/&gt;</span><span class="p">,</span> <span class="nx">mountNode</span><span class="p">);</span> <span class="p">},</span> <span class="mi">1000</span><span class="p">);</span> </code></pre></div> <div class="docs-prevnext"> <a class="docs-prev" href="/react/tips/children-props-type-ko-KR.html">&larr; Prev</a> <a class="docs-next" href="/react/tips/componentWillReceiveProps-not-triggered-after-mounting-ko-KR.html">Next &rarr;</a> </div> </div> </section> <footer class="wrap"> <div class="left"> A Facebook &amp; Instagram collaboration.<br> <a href="/react/acknowledgements.html">Acknowledgements</a> </div> <div class="right"> &copy; 2013&ndash;2016 Facebook Inc.<br> Documentation licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>. </div> </footer> </div> <div id="fb-root"></div> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-41298772-1', 'facebook.github.io'); ga('send', 'pageview'); !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.6&appId=623268441017527"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); docsearch({ apiKey: '36221914cce388c46d0420343e0bb32e', indexName: 'react', inputSelector: '#algolia-doc-search' }); </script> </body> </html>
deps/boost_1_77_0/libs/geometry/doc/html/geometry/reference/algorithms/difference/difference_3.html
davehorton/drachtio-server
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>difference</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../../index.html" title="Chapter 1. Geometry"> <link rel="up" href="../difference.html" title="difference"> <link rel="prev" href="difference_4_with_strategy.html" title="difference (with strategy)"> <link rel="next" href="../discrete_frechet_distance.html" title="discrete_frechet_distance"> </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="difference_4_with_strategy.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../difference.html"><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="../discrete_frechet_distance.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="geometry.reference.algorithms.difference.difference_3"></a><a class="link" href="difference_3.html" title="difference">difference</a> </h5></div></div></div> <p> <a class="indexterm" name="idm45246443481856"></a> </p> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h0"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.description"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.description">Description</a> </h6> <p> Calculate the difference of two geometries </p> <p> The free function difference calculates the spatial set theoretic difference of two geometries. </p> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h1"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.synopsis"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.synopsis">Synopsis</a> </h6> <p> </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">typename</span> <span class="identifier">Geometry1</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">Geometry2</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">Collection</span><span class="special">&gt;</span> <span class="keyword">void</span> <span class="identifier">difference</span><span class="special">(</span><span class="identifier">Geometry1</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">geometry1</span><span class="special">,</span> <span class="identifier">Geometry2</span> <span class="keyword">const</span> <span class="special">&amp;</span> <span class="identifier">geometry2</span><span class="special">,</span> <span class="identifier">Collection</span> <span class="special">&amp;</span> <span class="identifier">output_collection</span><span class="special">)</span></pre> <p> </p> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h2"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.parameters"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.parameters">Parameters</a> </h6> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Type </p> </th> <th> <p> Concept </p> </th> <th> <p> Name </p> </th> <th> <p> Description </p> </th> </tr></thead> <tbody> <tr> <td> <p> Geometry1 const &amp; </p> </td> <td> <p> Any type fulfilling a Geometry Concept </p> </td> <td> <p> geometry1 </p> </td> <td> <p> A model of the specified concept </p> </td> </tr> <tr> <td> <p> Geometry2 const &amp; </p> </td> <td> <p> Any type fulfilling a Geometry Concept </p> </td> <td> <p> geometry2 </p> </td> <td> <p> A model of the specified concept </p> </td> </tr> <tr> <td> <p> Collection &amp; </p> </td> <td> <p> output collection, either a multi-geometry, or a std::vector&lt;Geometry&gt; / std::deque&lt;Geometry&gt; etc </p> </td> <td> <p> output_collection </p> </td> <td> <p> the output collection </p> </td> </tr> </tbody> </table></div> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h3"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.header"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.header">Header</a> </h6> <p> Either </p> <p> <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">geometry</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> </p> <p> Or </p> <p> <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">geometry</span><span class="special">/</span><span class="identifier">algorithms</span><span class="special">/</span><span class="identifier">difference</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> </p> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h4"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.conformance"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.conformance">Conformance</a> </h6> <p> The function difference implements function Difference from the <a href="http://www.opengeospatial.org/standards/sfa" target="_top">OGC Simple Feature Specification</a>. </p> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h5"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.behavior"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.behavior">Behavior</a> </h6> <div class="informaltable"><table class="table"> <colgroup> <col> <col> </colgroup> <thead><tr> <th> <p> Case </p> </th> <th> <p> Behavior </p> </th> </tr></thead> <tbody> <tr> <td> <p> areal (e.g. polygon) </p> </td> <td> <p> All combinations of: box, ring, polygon, multi_polygon </p> </td> </tr> <tr> <td> <p> linear (e.g. linestring) / areal (e.g. polygon) </p> </td> <td> <p> A combinations of a (multi) linestring with a (multi) polygon results in a collection of linestrings </p> </td> </tr> <tr> <td> <p> linear (e.g. linestring) </p> </td> <td> <p> All combinations of: linestring, multi_linestring; results in a collection of linestrings </p> </td> </tr> <tr> <td> <p> pointlike (e.g. point) </p> </td> <td> <p> All combinations of: point, multi_point; results in a collection of points </p> </td> </tr> <tr> <td> <p> Other geometries </p> </td> <td> <p> Not yet supported in this version </p> </td> </tr> <tr> <td> <p> Spherical </p> </td> <td> <p> Not yet supported in this version </p> </td> </tr> <tr> <td> <p> Three dimensional </p> </td> <td> <p> Not yet supported in this version </p> </td> </tr> </tbody> </table></div> <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> Check the <a class="link" href="../../concepts/concept_polygon.html" title="Polygon Concept">Polygon Concept</a> for the rules that polygon input for this algorithm should fulfill </p></td></tr> </table></div> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h6"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.example"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.example">Example</a> </h6> <p> Shows how to subtract one polygon from another polygon </p> <p> </p> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">iostream</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">list</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">geometry</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">geometry</span><span class="special">/</span><span class="identifier">geometries</span><span class="special">/</span><span class="identifier">point_xy</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">geometry</span><span class="special">/</span><span class="identifier">geometries</span><span class="special">/</span><span class="identifier">polygon</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">foreach</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> <span class="keyword">int</span> <span class="identifier">main</span><span class="special">()</span> <span class="special">{</span> <span class="keyword">typedef</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">model</span><span class="special">::</span><span class="identifier">polygon</span><span class="special">&lt;</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">model</span><span class="special">::</span><span class="identifier">d2</span><span class="special">::</span><span class="identifier">point_xy</span><span class="special">&lt;</span><span class="keyword">double</span><span class="special">&gt;</span> <span class="special">&gt;</span> <span class="identifier">polygon</span><span class="special">;</span> <span class="identifier">polygon</span> <span class="identifier">green</span><span class="special">,</span> <span class="identifier">blue</span><span class="special">;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">read_wkt</span><span class="special">(</span> <span class="string">"POLYGON((2 1.3,2.4 1.7,2.8 1.8,3.4 1.2,3.7 1.6,3.4 2,4.1 3,5.3 2.6,5.4 1.2,4.9 0.8,2.9 0.7,2 1.3)"</span> <span class="string">"(4.0 2.0, 4.2 1.4, 4.8 1.9, 4.4 2.2, 4.0 2.0))"</span><span class="special">,</span> <span class="identifier">green</span><span class="special">);</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">read_wkt</span><span class="special">(</span> <span class="string">"POLYGON((4.0 -0.5 , 3.5 1.0 , 2.0 1.5 , 3.5 2.0 , 4.0 3.5 , 4.5 2.0 , 6.0 1.5 , 4.5 1.0 , 4.0 -0.5))"</span><span class="special">,</span> <span class="identifier">blue</span><span class="special">);</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">list</span><span class="special">&lt;</span><span class="identifier">polygon</span><span class="special">&gt;</span> <span class="identifier">output</span><span class="special">;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">difference</span><span class="special">(</span><span class="identifier">green</span><span class="special">,</span> <span class="identifier">blue</span><span class="special">,</span> <span class="identifier">output</span><span class="special">);</span> <span class="keyword">int</span> <span class="identifier">i</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"green - blue:"</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="identifier">BOOST_FOREACH</span><span class="special">(</span><span class="identifier">polygon</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">p</span><span class="special">,</span> <span class="identifier">output</span><span class="special">)</span> <span class="special">{</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">i</span><span class="special">++</span> <span class="special">&lt;&lt;</span> <span class="string">": "</span> <span class="special">&lt;&lt;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">area</span><span class="special">(</span><span class="identifier">p</span><span class="special">)</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> <span class="identifier">output</span><span class="special">.</span><span class="identifier">clear</span><span class="special">();</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">difference</span><span class="special">(</span><span class="identifier">blue</span><span class="special">,</span> <span class="identifier">green</span><span class="special">,</span> <span class="identifier">output</span><span class="special">);</span> <span class="identifier">i</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="string">"blue - green:"</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="identifier">BOOST_FOREACH</span><span class="special">(</span><span class="identifier">polygon</span> <span class="keyword">const</span><span class="special">&amp;</span> <span class="identifier">p</span><span class="special">,</span> <span class="identifier">output</span><span class="special">)</span> <span class="special">{</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">cout</span> <span class="special">&lt;&lt;</span> <span class="identifier">i</span><span class="special">++</span> <span class="special">&lt;&lt;</span> <span class="string">": "</span> <span class="special">&lt;&lt;</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">geometry</span><span class="special">::</span><span class="identifier">area</span><span class="special">(</span><span class="identifier">p</span><span class="special">)</span> <span class="special">&lt;&lt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">endl</span><span class="special">;</span> <span class="special">}</span> <span class="keyword">return</span> <span class="number">0</span><span class="special">;</span> <span class="special">}</span> </pre> <p> </p> <p> Output: </p> <pre class="programlisting">green - blue: 0: 0.02375 1: 0.542951 2: 0.0149697 3: 0.226855 4: 0.839424 <img src="../../../../img/algorithms/difference_a.png" alt="difference_a"> blue - green: 0: 0.525154 1: 0.015 2: 0.181136 3: 0.128798 4: 0.340083 5: 0.307778 <img src="../../../../img/algorithms/difference_b.png" alt="difference_b"> </pre> <h6> <a name="geometry.reference.algorithms.difference.difference_3.h7"></a> <span class="phrase"><a name="geometry.reference.algorithms.difference.difference_3.see_also"></a></span><a class="link" href="difference_3.html#geometry.reference.algorithms.difference.difference_3.see_also">See also</a> </h6> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <a class="link" href="../sym_difference.html" title="sym_difference">sym_difference (symmetric difference)</a> </li> <li class="listitem"> <a class="link" href="../intersection.html" title="intersection">intersection</a> </li> <li class="listitem"> <a class="link" href="../union_.html" title="union_">union</a> </li> </ul></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 © 2009-2021 Barend Gehrels, Bruno Lalande, Mateusz Loskot, Adam Wulkiewicz, Oracle and/or its affiliates<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="difference_4_with_strategy.html"><img src="../../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../difference.html"><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="../discrete_frechet_distance.html"><img src="../../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
docs/javadoc/1.0.0/org/mini2Dx/yarn/types/YarnType.html
mini2Dx/jarn
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_101) on Sat Jul 08 21:03:43 CEST 2017 --> <title>YarnType (jarn 1.0.0 API)</title> <meta name="date" content="2017-07-08"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="YarnType (jarn 1.0.0 API)"; } } catch(err) { } //--> var methods = {"i0":9,"i1":9}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; var altColor = "altColor"; var rowColor = "rowColor"; var tableTab = "tableTab"; var activeTableTab = "activeTableTab"; </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/mini2Dx/yarn/types/YarnString.html" title="interface in org.mini2Dx.yarn.types"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/mini2Dx/yarn/types/YarnValue.html" title="interface in org.mini2Dx.yarn.types"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/mini2Dx/yarn/types/YarnType.html" target="_top">Frames</a></li> <li><a href="YarnType.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.mini2Dx.yarn.types</div> <h2 title="Enum YarnType" class="title">Enum YarnType</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Enum&lt;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>&gt;</li> <li> <ul class="inheritance"> <li>org.mini2Dx.yarn.types.YarnType</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, java.lang.Comparable&lt;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>&gt;</dd> </dl> <hr> <br> <pre>public enum <span class="typeNameLabel">YarnType</span> extends java.lang.Enum&lt;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>&gt;</pre> <div class="block">An enum for different Yarn value types</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== ENUM CONSTANT SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.summary"> <!-- --> </a> <h3>Enum Constant Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Constant Summary table, listing enum constants, and an explanation"> <caption><span>Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/mini2Dx/yarn/types/YarnType.html#BOOLEAN">BOOLEAN</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/mini2Dx/yarn/types/YarnType.html#NUMBER">NUMBER</a></span></code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/mini2Dx/yarn/types/YarnType.html#STRING">STRING</a></span></code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr id="i0" class="altColor"> <td class="colFirst"><code>static <a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/mini2Dx/yarn/types/YarnType.html#valueOf-java.lang.String-">valueOf</a></span>(java.lang.String&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>[]</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/mini2Dx/yarn/types/YarnType.html#values--">values</a></span>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Enum"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Enum</h3> <code>clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>getClass, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ ENUM CONSTANT DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="enum.constant.detail"> <!-- --> </a> <h3>Enum Constant Detail</h3> <a name="BOOLEAN"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>BOOLEAN</h4> <pre>public static final&nbsp;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a> BOOLEAN</pre> </li> </ul> <a name="NUMBER"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>NUMBER</h4> <pre>public static final&nbsp;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a> NUMBER</pre> </li> </ul> <a name="STRING"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>STRING</h4> <pre>public static final&nbsp;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a> STRING</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="values--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>values</h4> <pre>public static&nbsp;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>[]&nbsp;values()</pre> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows: <pre> for (YarnType c : YarnType.values()) &nbsp; System.out.println(c); </pre></div> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>an array containing the constants of this enum type, in the order they are declared</dd> </dl> </li> </ul> <a name="valueOf-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>valueOf</h4> <pre>public static&nbsp;<a href="../../../../org/mini2Dx/yarn/types/YarnType.html" title="enum in org.mini2Dx.yarn.types">YarnType</a>&nbsp;valueOf(java.lang.String&nbsp;name)</pre> <div class="block">Returns the enum constant of this type with the specified name. The string must match <i>exactly</i> an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)</div> <dl> <dt><span class="paramLabel">Parameters:</span></dt> <dd><code>name</code> - the name of the enum constant to be returned.</dd> <dt><span class="returnLabel">Returns:</span></dt> <dd>the enum constant with the specified name</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if this enum type has no constant with the specified name</dd> <dd><code>java.lang.NullPointerException</code> - if the argument is null</dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/mini2Dx/yarn/types/YarnString.html" title="interface in org.mini2Dx.yarn.types"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../../../org/mini2Dx/yarn/types/YarnValue.html" title="interface in org.mini2Dx.yarn.types"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/mini2Dx/yarn/types/YarnType.html" target="_top">Frames</a></li> <li><a href="YarnType.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#enum.constant.summary">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#enum.constant.detail">Enum Constants</a>&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#method.detail">Method</a></li> </ul> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
css/main.css
ivanshen/Se7en
td { border:solid 1px grey; padding: 20px; text-align: center; text-decoration: none; } td:hover { background: aqua; } .selected{ background: aqua; } .notSelected{ background: #f8f8f8; } body { font: 400 16px 'Muli', sans-serif; } .inner { padding: 30px; } /*Table*/ table{ margin: 10px; } body > div.container-fluid.inner > table > tbody > tr > td{ border: 4px solid #fff; width: 170px; padding: 10px; } body > div.container-fluid.inner > table > tbody > tr > td:hover{ background-color: aqua; } button{ margin-top: 20px; position: absolute; } #newNumbersBtn{ display: none; } .instructions { text-align: center; margin-top: 60px; }
style.css
aravindkk/Single-room-chat-application
body { background: url(img/brickwall.png) repeat 0 0; } header { margin-bottom: 2em; } header a { width: 100%; height: auto; margin: 45px auto 0; display: block; } #userss { border:3px solid black; position:absolute; background:url(img/witewall_3.png) repeat 0 0; top:10%; left:60%; width:30%; height:50%; } #userss { position:absolute; top:15%; left:60%; width:30%; height:45%; overflow:auto; } #chat { position:absolute; top:10%; left:5%; width:50%; height:50%; overflow:auto; } #notif { color:grey; position:absolute; top:70%; left:5%; width:50%; height:20%; } #inputform { padding:10px; } #chatt { position:absolute; top:80%; left:5%; width:40%; } #sendchat { color: black; font: "Courier New", Courier, monospace; background-color: #38ACEC; position:absolute; top:80%; left:45%; width:120px; }
client/views/320_love/myso/myso.html
andrewlintz/LifeMngr
<template name="mysoPage"> <h1>My Love</h1> </template>
bower_components/AdminLTE/pages/UI/modals.html
takahashi56/auto-repair
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>AdminAutobody Modals</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"> <!-- Bootstrap 3.3.6 --> <link rel="stylesheet" href="../../bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css"> <!-- Theme style --> <link rel="stylesheet" href="../../dist/css/AdminLTE.min.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="../../dist/css/skins/_all-skins.min.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="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]--> <style> .example-modal .modal { position: relative; top: auto; bottom: auto; right: auto; left: auto; display: block; z-index: 1; } .example-modal .modal { background: transparent !important; } </style> </head> <body class="hold-transition skin-blue sidebar-mini"> <div class="wrapper"> <header class="main-header"> <!-- Logo --> <a href="../../index2.html" class="logo"> <!-- mini logo for sidebar mini 50x50 pixels --> <span class="logo-mini"><b>A</b>LT</span> <!-- logo for regular state and mobile devices --> <span class="logo-lg"><b>Admin</b>LTE</span> </a> <!-- Header Navbar: style can be found in header.less --> <nav class="navbar navbar-static-top"> <!-- Sidebar toggle button--> <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <div class="navbar-custom-menu"> <ul class="nav navbar-nav"> <!-- Messages: style can be found in dropdown.less--> <li class="dropdown messages-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-envelope-o"></i> <span class="label label-success">4</span> </a> <ul class="dropdown-menu"> <li class="header">You have 4 messages</li> <li> <!-- inner menu: contains the actual data --> <ul class="menu"> <li><!-- start message --> <a href="#"> <div class="pull-left"> <img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"> </div> <h4> Support Team <small><i class="fa fa-clock-o"></i> 5 mins</small> </h4> <p>Why not buy a new awesome theme?</p> </a> </li> <!-- end message --> <li> <a href="#"> <div class="pull-left"> <img src="../../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image"> </div> <h4> AdminLTE Design Team <small><i class="fa fa-clock-o"></i> 2 hours</small> </h4> <p>Why not buy a new awesome theme?</p> </a> </li> <li> <a href="#"> <div class="pull-left"> <img src="../../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image"> </div> <h4> Developers <small><i class="fa fa-clock-o"></i> Today</small> </h4> <p>Why not buy a new awesome theme?</p> </a> </li> <li> <a href="#"> <div class="pull-left"> <img src="../../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image"> </div> <h4> Sales Department <small><i class="fa fa-clock-o"></i> Yesterday</small> </h4> <p>Why not buy a new awesome theme?</p> </a> </li> <li> <a href="#"> <div class="pull-left"> <img src="../../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image"> </div> <h4> Reviewers <small><i class="fa fa-clock-o"></i> 2 days</small> </h4> <p>Why not buy a new awesome theme?</p> </a> </li> </ul> </li> <li class="footer"><a href="#">See All Messages</a></li> </ul> </li> <!-- Notifications: style can be found in dropdown.less --> <li class="dropdown notifications-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-bell-o"></i> <span class="label label-warning">10</span> </a> <ul class="dropdown-menu"> <li class="header">You have 10 notifications</li> <li> <!-- inner menu: contains the actual data --> <ul class="menu"> <li> <a href="#"> <i class="fa fa-users text-aqua"></i> 5 new members joined today </a> </li> <li> <a href="#"> <i class="fa fa-warning text-yellow"></i> Very long description here that may not fit into the page and may cause design problems </a> </li> <li> <a href="#"> <i class="fa fa-users text-red"></i> 5 new members joined </a> </li> <li> <a href="#"> <i class="fa fa-shopping-cart text-green"></i> 25 sales made </a> </li> <li> <a href="#"> <i class="fa fa-user text-red"></i> You changed your username </a> </li> </ul> </li> <li class="footer"><a href="#">View all</a></li> </ul> </li> <!-- Tasks: style can be found in dropdown.less --> <li class="dropdown tasks-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-flag-o"></i> <span class="label label-danger">9</span> </a> <ul class="dropdown-menu"> <li class="header">You have 9 tasks</li> <li> <!-- inner menu: contains the actual data --> <ul class="menu"> <li><!-- Task item --> <a href="#"> <h3> Design some buttons <small class="pull-right">20%</small> </h3> <div class="progress xs"> <div class="progress-bar progress-bar-aqua" style="width: 20%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">20% Complete</span> </div> </div> </a> </li> <!-- end task item --> <li><!-- Task item --> <a href="#"> <h3> Create a nice theme <small class="pull-right">40%</small> </h3> <div class="progress xs"> <div class="progress-bar progress-bar-green" style="width: 40%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">40% Complete</span> </div> </div> </a> </li> <!-- end task item --> <li><!-- Task item --> <a href="#"> <h3> Some task I need to do <small class="pull-right">60%</small> </h3> <div class="progress xs"> <div class="progress-bar progress-bar-red" style="width: 60%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">60% Complete</span> </div> </div> </a> </li> <!-- end task item --> <li><!-- Task item --> <a href="#"> <h3> Make beautiful transitions <small class="pull-right">80%</small> </h3> <div class="progress xs"> <div class="progress-bar progress-bar-yellow" style="width: 80%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">80% Complete</span> </div> </div> </a> </li> <!-- end task item --> </ul> </li> <li class="footer"> <a href="#">View all tasks</a> </li> </ul> </li> <!-- User Account: style can be found in dropdown.less --> <li class="dropdown user user-menu"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <img src="../../dist/img/user2-160x160.jpg" class="user-image" alt="User Image"> <span class="hidden-xs">Alexander Pierce</span> </a> <ul class="dropdown-menu"> <!-- User image --> <li class="user-header"> <img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"> <p> Alexander Pierce - Web Developer <small>Member since Nov. 2012</small> </p> </li> <!-- Menu Body --> <li class="user-body"> <div class="row"> <div class="col-xs-4 text-center"> <a href="#">Followers</a> </div> <div class="col-xs-4 text-center"> <a href="#">Sales</a> </div> <div class="col-xs-4 text-center"> <a href="#">Friends</a> </div> </div> <!-- /.row --> </li> <!-- Menu Footer--> <li class="user-footer"> <div class="pull-left"> <a href="#" class="btn btn-default btn-flat">Profile</a> </div> <div class="pull-right"> <a href="#" class="btn btn-default btn-flat">Sign out</a> </div> </li> </ul> </li> </ul> </div> </nav> </header> <!-- Left side column. contains the logo and sidebar --> <aside class="main-sidebar"> <!-- sidebar: style can be found in sidebar.less --> <section class="sidebar"> <!-- Sidebar user panel --> <div class="user-panel"> <div class="pull-left image"> <img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"> </div> <div class="pull-left info"> <p>Alexander Pierce</p> <a href="#"><i class="fa fa-circle text-success"></i> Online</a> </div> </div> <!-- search form --> <form action="#" method="get" class="sidebar-form"> <div class="input-group"> <input type="text" name="q" class="form-control" placeholder="Search..."> <span class="input-group-btn"> <button type="submit" name="search" id="search-btn" class="btn btn-flat"><i class="fa fa-search"></i> </button> </span> </div> </form> <!-- /.search form --> <!-- sidebar menu: : style can be found in sidebar.less --> <ul class="sidebar-menu"> <li class="header">MAIN NAVIGATION</li> <li class="treeview"> <a href="#"> <i class="fa fa-dashboard"></i> <span>Dashboard</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="../../index.html"><i class="fa fa-circle-o"></i> Dashboard v1</a></li> <li><a href="../../index2.html"><i class="fa fa-circle-o"></i> Dashboard v2</a></li> </ul> </li> <li class="treeview"> <a href="#"> <i class="fa fa-files-o"></i> <span>Layout Options</span> <span class="pull-right-container"> <span class="label label-primary pull-right">4</span> </span> </a> <ul class="treeview-menu"> <li><a href="../layout/top-nav.html"><i class="fa fa-circle-o"></i> Top Navigation</a></li> <li><a href="../layout/boxed.html"><i class="fa fa-circle-o"></i> Boxed</a></li> <li><a href="../layout/fixed.html"><i class="fa fa-circle-o"></i> Fixed</a></li> <li><a href="../layout/collapsed-sidebar.html"><i class="fa fa-circle-o"></i> Collapsed Sidebar</a></li> </ul> </li> <li> <a href="../widgets.html"> <i class="fa fa-th"></i> <span>Widgets</span> <span class="pull-right-container"> <small class="label pull-right bg-green">new</small> </span> </a> </li> <li class="treeview"> <a href="#"> <i class="fa fa-pie-chart"></i> <span>Charts</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="../charts/chartjs.html"><i class="fa fa-circle-o"></i> ChartJS</a></li> <li><a href="../charts/morris.html"><i class="fa fa-circle-o"></i> Morris</a></li> <li><a href="../charts/flot.html"><i class="fa fa-circle-o"></i> Flot</a></li> <li><a href="../charts/inline.html"><i class="fa fa-circle-o"></i> Inline charts</a></li> </ul> </li> <li class="treeview active"> <a href="#"> <i class="fa fa-laptop"></i> <span>UI Elements</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="general.html"><i class="fa fa-circle-o"></i> General</a></li> <li><a href="icons.html"><i class="fa fa-circle-o"></i> Icons</a></li> <li><a href="buttons.html"><i class="fa fa-circle-o"></i> Buttons</a></li> <li><a href="sliders.html"><i class="fa fa-circle-o"></i> Sliders</a></li> <li><a href="timeline.html"><i class="fa fa-circle-o"></i> Timeline</a></li> <li class="active"><a href="modals.html"><i class="fa fa-circle-o"></i> Modals</a></li> </ul> </li> <li class="treeview"> <a href="#"> <i class="fa fa-edit"></i> <span>Forms</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="../forms/general.html"><i class="fa fa-circle-o"></i> General Elements</a></li> <li><a href="../forms/advanced.html"><i class="fa fa-circle-o"></i> Advanced Elements</a></li> <li><a href="../forms/editors.html"><i class="fa fa-circle-o"></i> Editors</a></li> </ul> </li> <li class="treeview"> <a href="#"> <i class="fa fa-table"></i> <span>Tables</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="../tables/simple.html"><i class="fa fa-circle-o"></i> Simple tables</a></li> <li><a href="../tables/data.html"><i class="fa fa-circle-o"></i> Data tables</a></li> </ul> </li> <li> <a href="../calendar.html"> <i class="fa fa-calendar"></i> <span>Calendar</span> <span class="pull-right-container"> <small class="label pull-right bg-red">3</small> <small class="label pull-right bg-blue">17</small> </span> </a> </li> <li> <a href="../mailbox/mailbox.html"> <i class="fa fa-envelope"></i> <span>Mailbox</span> <span class="pull-right-container"> <small class="label pull-right bg-yellow">12</small> <small class="label pull-right bg-green">16</small> <small class="label pull-right bg-red">5</small> </span> </a> </li> <li class="treeview"> <a href="#"> <i class="fa fa-folder"></i> <span>Examples</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="../examples/invoice.html"><i class="fa fa-circle-o"></i> Invoice</a></li> <li><a href="../examples/profile.html"><i class="fa fa-circle-o"></i> Profile</a></li> <li><a href="../examples/login.html"><i class="fa fa-circle-o"></i> Login</a></li> <li><a href="../examples/register.html"><i class="fa fa-circle-o"></i> Register</a></li> <li><a href="../examples/lockscreen.html"><i class="fa fa-circle-o"></i> Lockscreen</a></li> <li><a href="../examples/404.html"><i class="fa fa-circle-o"></i> 404 Error</a></li> <li><a href="../examples/500.html"><i class="fa fa-circle-o"></i> 500 Error</a></li> <li><a href="../examples/blank.html"><i class="fa fa-circle-o"></i> Blank Page</a></li> <li><a href="../examples/pace.html"><i class="fa fa-circle-o"></i> Pace Page</a></li> </ul> </li> <li class="treeview"> <a href="#"> <i class="fa fa-share"></i> <span>Multilevel</span> <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li> <li> <a href="#"><i class="fa fa-circle-o"></i> Level One <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="#"><i class="fa fa-circle-o"></i> Level Two</a></li> <li> <a href="#"><i class="fa fa-circle-o"></i> Level Two <span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i> </span> </a> <ul class="treeview-menu"> <li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li> <li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li> </ul> </li> </ul> </li> <li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li> </ul> </li> <li><a href="../../documentation/index.html"><i class="fa fa-book"></i> <span>Documentation</span></a></li> <li class="header">LABELS</li> <li><a href="#"><i class="fa fa-circle-o text-red"></i> <span>Important</span></a></li> <li><a href="#"><i class="fa fa-circle-o text-yellow"></i> <span>Warning</span></a></li> <li><a href="#"><i class="fa fa-circle-o text-aqua"></i> <span>Information</span></a></li> </ul> </section> <!-- /.sidebar --> </aside> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Modals <small>new</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li><a href="#">UI</a></li> <li class="active">Modals</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="callout callout-info"> <h4>Reminder!</h4> Instructions for how to use modals are available on the <a href="http://getbootstrap.com/javascript/#modals">Bootstrap documentation</a> </div> <div class="example-modal"> <div class="modal"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Default Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-default pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> <div class="example-modal"> <div class="modal modal-primary"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Primary Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-outline">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> <div class="example-modal"> <div class="modal modal-info"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Info Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-outline">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> <div class="example-modal"> <div class="modal modal-warning"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Warning Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-outline">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> <div class="example-modal"> <div class="modal modal-success"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Success Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-outline">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> <div class="example-modal"> <div class="modal modal-danger"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span></button> <h4 class="modal-title">Danger Modal</h4> </div> <div class="modal-body"> <p>One fine body&hellip;</p> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline pull-left" data-dismiss="modal">Close</button> <button type="button" class="btn btn-outline">Save changes</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <!-- /.modal --> </div> <!-- /.example-modal --> </section> <!-- /.content --> </div> <!-- /.content-wrapper --> <footer class="main-footer"> <div class="pull-right hidden-xs"> <b>Version</b> 2.3.8 </div> <strong>Copyright &copy; 2014-2016 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved. </footer> <!-- Control Sidebar --> <aside class="control-sidebar control-sidebar-dark"> <!-- Create the tabs --> <ul class="nav nav-tabs nav-justified control-sidebar-tabs"> <li><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li> <li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li> </ul> <!-- Tab panes --> <div class="tab-content"> <!-- Home tab content --> <div class="tab-pane" id="control-sidebar-home-tab"> <h3 class="control-sidebar-heading">Recent Activity</h3> <ul class="control-sidebar-menu"> <li> <a href="javascript:void(0)"> <i class="menu-icon fa fa-birthday-cake bg-red"></i> <div class="menu-info"> <h4 class="control-sidebar-subheading">Langdon's Birthday</h4> <p>Will be 23 on April 24th</p> </div> </a> </li> <li> <a href="javascript:void(0)"> <i class="menu-icon fa fa-user bg-yellow"></i> <div class="menu-info"> <h4 class="control-sidebar-subheading">Frodo Updated His Profile</h4> <p>New phone +1(800)555-1234</p> </div> </a> </li> <li> <a href="javascript:void(0)"> <i class="menu-icon fa fa-envelope-o bg-light-blue"></i> <div class="menu-info"> <h4 class="control-sidebar-subheading">Nora Joined Mailing List</h4> <p>nora@example.com</p> </div> </a> </li> <li> <a href="javascript:void(0)"> <i class="menu-icon fa fa-file-code-o bg-green"></i> <div class="menu-info"> <h4 class="control-sidebar-subheading">Cron Job 254 Executed</h4> <p>Execution time 5 seconds</p> </div> </a> </li> </ul> <!-- /.control-sidebar-menu --> <h3 class="control-sidebar-heading">Tasks Progress</h3> <ul class="control-sidebar-menu"> <li> <a href="javascript:void(0)"> <h4 class="control-sidebar-subheading"> Custom Template Design <span class="label label-danger pull-right">70%</span> </h4> <div class="progress progress-xxs"> <div class="progress-bar progress-bar-danger" style="width: 70%"></div> </div> </a> </li> <li> <a href="javascript:void(0)"> <h4 class="control-sidebar-subheading"> Update Resume <span class="label label-success pull-right">95%</span> </h4> <div class="progress progress-xxs"> <div class="progress-bar progress-bar-success" style="width: 95%"></div> </div> </a> </li> <li> <a href="javascript:void(0)"> <h4 class="control-sidebar-subheading"> Laravel Integration <span class="label label-warning pull-right">50%</span> </h4> <div class="progress progress-xxs"> <div class="progress-bar progress-bar-warning" style="width: 50%"></div> </div> </a> </li> <li> <a href="javascript:void(0)"> <h4 class="control-sidebar-subheading"> Back End Framework <span class="label label-primary pull-right">68%</span> </h4> <div class="progress progress-xxs"> <div class="progress-bar progress-bar-primary" style="width: 68%"></div> </div> </a> </li> </ul> <!-- /.control-sidebar-menu --> </div> <!-- /.tab-pane --> <!-- Stats tab content --> <div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div> <!-- /.tab-pane --> <!-- Settings tab content --> <div class="tab-pane" id="control-sidebar-settings-tab"> <form method="post"> <h3 class="control-sidebar-heading">General Settings</h3> <div class="form-group"> <label class="control-sidebar-subheading"> Report panel usage <input type="checkbox" class="pull-right" checked> </label> <p> Some information about this general settings option </p> </div> <!-- /.form-group --> <div class="form-group"> <label class="control-sidebar-subheading"> Allow mail redirect <input type="checkbox" class="pull-right" checked> </label> <p> Other sets of options are available </p> </div> <!-- /.form-group --> <div class="form-group"> <label class="control-sidebar-subheading"> Expose author name in posts <input type="checkbox" class="pull-right" checked> </label> <p> Allow the user to show his name in blog posts </p> </div> <!-- /.form-group --> <h3 class="control-sidebar-heading">Chat Settings</h3> <div class="form-group"> <label class="control-sidebar-subheading"> Show me as online <input type="checkbox" class="pull-right" checked> </label> </div> <!-- /.form-group --> <div class="form-group"> <label class="control-sidebar-subheading"> Turn off notifications <input type="checkbox" class="pull-right"> </label> </div> <!-- /.form-group --> <div class="form-group"> <label class="control-sidebar-subheading"> Delete chat history <a href="javascript:void(0)" class="text-red pull-right"><i class="fa fa-trash-o"></i></a> </label> </div> <!-- /.form-group --> </form> </div> <!-- /.tab-pane --> </div> </aside> <!-- /.control-sidebar --> <!-- Add the sidebar's background. This div must be placed immediately after the control sidebar --> <div class="control-sidebar-bg"></div> </div> <!-- ./wrapper --> <!-- jQuery 2.2.3 --> <script src="../../plugins/jQuery/jquery-2.2.3.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="../../bootstrap/js/bootstrap.min.js"></script> <!-- FastClick --> <script src="../../plugins/fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="../../dist/js/app.min.js"></script> <!-- AdminLTE for demo purposes --> <script src="../../dist/js/demo.js"></script> </body> </html>
media/doc/html/classqe_1_1core_1_1_quark_behaviour-members.html
EricChenC/quark_engine
<!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.14"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Quark Engine: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(initResizable); /* @license-end */</script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="quark.ico"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Quark Engine &#160;<span id="projectnumber">1.0</span> </div> <div id="projectbrief">The best power IR engine in the universe!</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.14 --> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ var searchBox = new SearchBox("searchBox", "search",false,'Search'); /* @license-end */ </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); /* @license-end */</script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> /* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */ $(document).ready(function(){initNavTree('classqe_1_1core_1_1_quark_behaviour.html','');}); /* @license-end */ </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">qe::core::QuarkBehaviour Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a951f176fa27d8ac017e1521fcd96d817">Awake</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Behaviour</b>() (defined in <a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a></td><td class="entry"><span class="mlabel">explicit</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html#a3ec40ead88558d693df6885805742eb2">Component</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html">qe::core::Component</a></td><td class="entry"><span class="mlabel">explicit</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>CoreObject</b>() (defined in <a class="el" href="classqe_1_1core_1_1_core_object.html">qe::core::CoreObject</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_core_object.html">qe::core::CoreObject</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">explicit</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#ad0686a1d4fb57d8122e99ba9dcf62f73">FixedUpdate</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html#aa87b71db048779e92685ff43e9bd5aa2">get_enable</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html#a8c0bd768bc514ff1c3eff66bace30d4c">get_name</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html">qe::core::Object</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html#a0031525e4c3d36b580d701c2b7b26ae0">get_quark_object</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html">qe::core::Component</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a3267017f1384558acdf6a033e907cc3b">LateUpdate</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html#a3c1f3e432fcdf10b5367ef6bae16af64">Object</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html">qe::core::Object</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a3e375427f20257014e00492a34cbaa2e">OnAnimatorIK</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a246d280658227d078bea10aa1d3fc2b1">OnAnimatorMove</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a249af625f0f5af4513a2d367f582b4ce">OnApplicationFocus</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a1912df90eb5098b0c4ccbf9e5dd83efe">OnApplicationPause</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#ae5c1ca3360fb05ed2d17272a41478008">OnApplicationQuit</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#aae1df164af9a59d3fb031ec26d863f77">OnAudioFlterRead</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0678661408a610f04c1b6c8f4dcd659f">OnBecameInvisible</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a1050b425723bd63e213d418bf7bb86eb">OnBecameVisible</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a313546e2cd8322b86e5149f0cb9afb25">OnCollisionEnter</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#ab7b614fe3f844c30dbfc04a60dbb2783">OnCollisionExit</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#afd5730d04a61404257de049e6536fa77">OnCollisionStay</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a89a2129c7d8e5304aba64eebf74e3be5">OnConnectedToServer</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a7e4b83ca344b320608cba4b53892d484">OnControllerColliderHit</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0bc780e3c6d60570fdfdd3e11a6359e1">OnDestroy</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#aa5d41dbfa7e9e4fa5a8d208b24b19fdf">OnDisable</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a5902260ce84bbde84695a86f8efcbdc6">OnDisconnectedFromServer</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#ac1c0882d2cf64e36f2f5e7cdf1ebb143">OnEnable</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0c7878a599a02af6ad5d7f09a046ba8f">OnFailedToConnect</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#afac788674c2970cdd6c47b44175d69b5">OnFailedToConnectToMasterServer</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a4f7e2a1af3e2bdcbd6353a19bf5bf896">OnGUI</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#aa6841f1c0bf1b78cc6d13d42eef13674">OnMouseDown</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a8f661daacaa2bb7d8fab95ca4818f316">OnMouseDrag</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a92376f41cc88f9b048550f129f0d008a">OnMouseEnter</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a7ef7a49f800385ec7cb51d8e355cf039">OnMouseExit</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0d0bbfce143199301d026d1f66f589e8">OnMouseOver</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#ac4f6d9fd055ecf648e549799b14c1882">OnMouseUp</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a222fb62b5956d3f5bf794ed55e7475c4">OnParticleCollision</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a2efc0d50255b38ce954ed9f3c3c1a8f2">OnParticleTrigger</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a6576e9c4a662e161898cd7d0f79da672">OnPlayerConnected</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a8ea0a58e6907b3f08e2311ddeb9381d7">OnPlayerDisconnected</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a92bb5b1ccf134f5331cfbd5acb5050e4">OnPostRender</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#adf63c293fcb9496df68a08124a649911">OnPreCull</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0751e63f7d69f7b16bdbc1c8dbdd2e51">OnPreRender</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a2d6ed312df8125db85ecea67f9a8584b">OnRenderImage</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a087fddd6241cd65eb59a4773e589d4ed">OnRenderObject</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a2c38380b745d4995deb2efd689eceef8">OnTransformChildrenChanged</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a3f419ff09fa59e532f68e7a864f716c2">OnTransformParentChanged</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a1af8df5e88547adc1e870d50ae4d3a5d">OnTriggerEnter</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a386c1115e006e8451eb3d7fc07166632">OnTriggerExit</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a96895d9c18810681aa4889f6e80318cc">OnTriggerStay</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#aeb4c1b1ddea0da2fcfa102e40f12a544">OnWillRenderObject</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>QuarkBehaviour</b>() (defined in <a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">explicit</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a190fae0aaad4cba435e6b1760f411890">Reset</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html#af0253bb2536333fd7ceeab31c7367250">set_enable</a>(bool enable)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html#a67e5924ea1df5a63be0b89b161448bec">set_name</a>(const std::string &amp;name)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html">qe::core::Object</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html#af77d7112fc5a783fe31e06a76fbc653e">set_name</a>(const char *name)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html">qe::core::Object</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html#a4e3d3469b13b9e389bc8a2cd47a54ea4">set_quark_object</a>(QuarkObject *quark_object)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html">qe::core::Component</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a943ba4e2ba0b394a0d85ca358f121c7f">Start</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html#a0c4da4b2fdc2f43f78d58d034afd35d7">Update</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>~Behaviour</b>() (defined in <a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_behaviour.html">qe::core::Behaviour</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html#a569d42ddf0d454a7ae511a91c8cb76d6">~Component</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_component.html">qe::core::Component</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>~CoreObject</b>() (defined in <a class="el" href="classqe_1_1core_1_1_core_object.html">qe::core::CoreObject</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_core_object.html">qe::core::CoreObject</a></td><td class="entry"><span class="mlabel">inline</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html#a10c18fb644a856e51157fd035925f83f">~Object</a>()</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_object.html">qe::core::Object</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>~QuarkBehaviour</b>() (defined in <a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a>)</td><td class="entry"><a class="el" href="classqe_1_1core_1_1_quark_behaviour.html">qe::core::QuarkBehaviour</a></td><td class="entry"></td></tr> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.14 </li> </ul> </div> </body> </html>
pelican/crimeandpunishment/fdcp26.html
charlesreid1/wordswordswords
{% extends 'bookbase.html' %} {% block title %} CHAPTER I &mdash; {{ SITENAME }}{% endblock %} {% block content %} {% include '_include/crimeandpunishment26.html' %} {% endblock %}
app/resources/components/views/admin/dash.html
zueirafc/client-app
<h1>ESTATÍSTICAS</h1> <div class="ui piled segment"> <div class="ui huge four statistics"> <div class="statistic"> <div class="value"> 22.581 </div> <div class="label"> POSTS APROVADOS </div> </div> <div class="statistic"> <div class="value"> 980 </div> <div class="label"> POSTS Pendentes </div> </div> <div class="statistic"> <div class="value"> <i class="database icon"></i> 32 </div> <div class="label"> SOURCES ATIVOS </div> </div> <div class="statistic"> <div class="value"> 29/0 </div> <div class="label"> CLUBES/LIGAS </div> </div> </div> </div> <div class="ui piled segment"> <div class="ui huge three statistics"> <div class="statistic"> <div class="value"> <img src="https://zfc.s3.amazonaws.com/production/club/shield/15/2000px-S_C3_ADmbolo_da_Chapecoense_sem_estrelas.svg.png" class="ui inline image"> 2.410 </div> <div class="label"> MAIS ZUADO </div> </div> <div class="red statistic" style="max-width: 365px;"> <div class="text value"> CORINTHIANS, <br> SÃO PAULO e GRÊMIO </div> <div class="label"> POUCAS ZUEIRAS </div> </div> <div class="statistic" style="max-width: 365px;"> <div class="text value"> COMO É BOM SER COLORADO </div> <div class="label"> MUITAS REPROVAÇÕES </div> </div> </div> </div> </div>
assets/widgets/owlcarousel/owlcarousel.css
TABuApp/tabu-admin
/* * Core Owl Carousel CSS File */ .slider-wrapper .owl-wrapper:after { line-height: 0; display: block; visibility: hidden; clear: both; height: 0; content: '.'; } .slider-wrapper { position: relative; display: none; -ms-touch-action: pan-y; } .slider-wrapper .owl-wrapper { position: relative; display: none; -webkit-transform: translate3d(0px, 0px, 0px); } .slider-wrapper .owl-wrapper-outer { position: relative; overflow: hidden; width: 100%; } .slider-wrapper .owl-wrapper-outer.autoHeight { -webkit-transition: height 500ms ease-in-out; -moz-transition: height 500ms ease-in-out; -ms-transition: height 500ms ease-in-out; -o-transition: height 500ms ease-in-out; transition: height 500ms ease-in-out; } .slider-wrapper .owl-item { float: left; } .owl-controls .owl-page, .owl-controls .owl-buttons div { cursor: pointer; } .owl-controls { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -khtml-user-select: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } /* mouse grab icon */ .grabbing { cursor: url('../../images/grabbing.png') 8 8, move; } /* fix */ .slider-wrapper .owl-wrapper, .slider-wrapper .owl-item { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); -ms-transform: translate3d(0, 0, 0); -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; } /* CSS3 Transitions */ .owl-origin { -webkit-perspective: 1200px; -webkit-perspective-origin-x: 50%; -webkit-perspective-origin-y: 50%; -moz-perspective: 1200px; -moz-perspective-origin-x: 50%; -moz-perspective-origin-y: 50%; perspective: 1200px; } /* fade */ .owl-fade-out { z-index: 10; -webkit-animation: fadeOut .7s both ease; -moz-animation: fadeOut .7s both ease; animation: fadeOut .7s both ease; } .owl-fade-in { -webkit-animation: fadeIn .7s both ease; -moz-animation: fadeIn .7s both ease; animation: fadeIn .7s both ease; } /* backSlide */ .owl-backSlide-out { -webkit-animation: backSlideOut 1s both ease; -moz-animation: backSlideOut 1s both ease; animation: backSlideOut 1s both ease; } .owl-backSlide-in { -webkit-animation: backSlideIn 1s both ease; -moz-animation: backSlideIn 1s both ease; animation: backSlideIn 1s both ease; } /* goDown */ .owl-goDown-out { -webkit-animation: scaleToFade .7s ease both; -moz-animation: scaleToFade .7s ease both; animation: scaleToFade .7s ease both; } .owl-goDown-in { -webkit-animation: goDown .6s ease both; -moz-animation: goDown .6s ease both; animation: goDown .6s ease both; } /* scaleUp */ .owl-fadeUp-in { -webkit-animation: scaleUpFrom .5s ease both; -moz-animation: scaleUpFrom .5s ease both; animation: scaleUpFrom .5s ease both; } .owl-fadeUp-out { -webkit-animation: scaleUpTo .5s ease both; -moz-animation: scaleUpTo .5s ease both; animation: scaleUpTo .5s ease both; } /* Keyframes */ /*empty*/ @-webkit-keyframes empty { 0% { opacity: 1; } } @-moz-keyframes empty { 0% { opacity: 1; } } @keyframes empty { 0% { opacity: 1; } } @-webkit-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @-moz-keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } } @-webkit-keyframes backSlideOut { 25% { -webkit-transform: translateZ(-500px); opacity: .5; } 75% { -webkit-transform: translateZ(-500px) translateX(-200%); opacity: .5; } 100% { -webkit-transform: translateZ(-500px) translateX(-200%); opacity: .5; } } @-moz-keyframes backSlideOut { 25% { -moz-transform: translateZ(-500px); opacity: .5; } 75% { -moz-transform: translateZ(-500px) translateX(-200%); opacity: .5; } 100% { -moz-transform: translateZ(-500px) translateX(-200%); opacity: .5; } } @keyframes backSlideOut { 25% { transform: translateZ(-500px); opacity: .5; } 75% { transform: translateZ(-500px) translateX(-200%); opacity: .5; } 100% { transform: translateZ(-500px) translateX(-200%); opacity: .5; } } @-webkit-keyframes backSlideIn { 0%, 25% { -webkit-transform: translateZ(-500px) translateX(200%); opacity: .5; } 75% { -webkit-transform: translateZ(-500px); opacity: .5; } 100% { -webkit-transform: translateZ(0) translateX(0); opacity: 1; } } @-moz-keyframes backSlideIn { 0%, 25% { -moz-transform: translateZ(-500px) translateX(200%); opacity: .5; } 75% { -moz-transform: translateZ(-500px); opacity: .5; } 100% { -moz-transform: translateZ(0) translateX(0); opacity: 1; } } @keyframes backSlideIn { 0%, 25% { transform: translateZ(-500px) translateX(200%); opacity: .5; } 75% { transform: translateZ(-500px); opacity: .5; } 100% { transform: translateZ(0) translateX(0); opacity: 1; } } @-webkit-keyframes scaleToFade { to { -webkit-transform: scale(.8); opacity: 0; } } @-moz-keyframes scaleToFade { to { -moz-transform: scale(.8); opacity: 0; } } @keyframes scaleToFade { to { transform: scale(.8); opacity: 0; } } @-webkit-keyframes goDown { from { -webkit-transform: translateY(-100%); } } @-moz-keyframes goDown { from { -moz-transform: translateY(-100%); } } @keyframes goDown { from { transform: translateY(-100%); } } @-webkit-keyframes scaleUpFrom { from { -webkit-transform: scale(1.5); opacity: 0; } } @-moz-keyframes scaleUpFrom { from { -moz-transform: scale(1.5); opacity: 0; } } @keyframes scaleUpFrom { from { transform: scale(1.5); opacity: 0; } } @-webkit-keyframes scaleUpTo { to { -webkit-transform: scale(1.5); opacity: 0; } } @-moz-keyframes scaleUpTo { to { -moz-transform: scale(1.5); opacity: 0; } } @keyframes scaleUpTo { to { transform: scale(1.5); opacity: 0; } } .slider-wrapper .item { float: left; } .owl-controls { text-align: center; color: #fff; } .owl-controls .owl-buttons .owl-prev { left: 20px; right: auto; } .owl-controls .owl-buttons .owl-next { right: 20px; left: auto; } .slider-wrapper .owl-pagination { position: absolute; bottom: -35px; width: 100%; } .slider-wrapper .owl-pagination .owl-page span { background:#ccc; } .carousel-wrapper .owl-pagination { position: relative; bottom: -10px; } .owl-slider-np .owl-pagination { display:none; } .owl-controls .owl-buttons div { display: block; font-size: 55px; height: 40px; line-height: 40px; width: 30px; position: absolute; top: 50%; margin-top: -20px; text-align: center; -moz-opacity:0.60; filter:alpha(opacity:60); opacity:0.60; } .owl-controls .owl-buttons div:hover { -moz-opacity:0.80; filter:alpha(opacity:80); opacity:0.80; } .owl-controls .owl-buttons div i { height: 40px; line-height: 40px; display: block; width: 30px; } .carousel-wrapper .owl-controls .owl-buttons div { margin-top: -30px; } .carousel-wrapper-alt .owl-controls .owl-buttons div { margin-top: -45px; } .carousel-container .owl-controls .owl-buttons .owl-next { right: -30px; } .carousel-container .owl-controls .owl-buttons .owl-prev { left: -30px; } .carousel-wrapper-alt .owl-controls .owl-pagination { display: none; } .arrows-outside.carousel-wrapper .owl-controls .owl-buttons .owl-next { right: -40px; } .arrows-outside.carousel-wrapper .owl-controls .owl-buttons .owl-prev { left: -40px; } .owl-controls .owl-page { display: inline-block; zoom: 1; *display: inline; } .owl-controls .owl-page span{ display: block; width: 12px; height: 12px; margin: 0 3px; filter: Alpha(Opacity=30); opacity: 0.3; border-radius: 20px; background: #fff; } .owl-controls .owl-page.active span, .slider-wrapper .owl-controls.clickable .owl-page:hover span{ filter: Alpha(Opacity=100); opacity: 1; } .owl-controls .owl-page span.owl-numbers{ height: auto; width: auto; color: #FFF; padding: 2px 10px; font-size: 12px; border-radius: 30px; } .owl-item.loading { min-height: 150px; background: url('../../assets/dummy-images/loader.gif') no-repeat center center }
public/Windows 10 x64 (18363.900)/_WHEAP_ERROR_RECORD_WRAPPER.html
epikcraw/ggool
<html><body> <h4>Windows 10 x64 (18363.900)</h4><br> <h2>_WHEAP_ERROR_RECORD_WRAPPER</h2> <font face="arial"> +0x000 WorkEntry : <a href="./_LIST_ENTRY.html">_LIST_ENTRY</a><br> +0x010 Length : Uint4B<br> +0x014 ProcessorNumber : Uint4B<br> +0x018 Flags : <a href="./_WHEAP_ERROR_RECORD_WRAPPER_FLAGS.html">_WHEAP_ERROR_RECORD_WRAPPER_FLAGS</a><br> +0x01c InUse : Int4B<br> +0x020 ErrorSource : Ptr64 <a href="./_WHEAP_ERROR_SOURCE.html">_WHEAP_ERROR_SOURCE</a><br> +0x028 ErrorRecord : <a href="./_WHEA_ERROR_RECORD.html">_WHEA_ERROR_RECORD</a><br> </font></body></html>
doc/files/src_storage_filesystem.js.html
casatt/muskepeer-client
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>src\storage\filesystem.js - muskepeer-client</title> <link rel="stylesheet" href="http://yui.yahooapis.com/3.9.1/build/cssgrids/cssgrids-min.css"> <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="../assets/css/main.css" id="site_styles"> <link rel="shortcut icon" type="image/png" href="../assets/favicon.png"> <script src="http://yui.yahooapis.com/combo?3.9.1/build/yui/yui-min.js"></script> </head> <body class="yui3-skin-sam"> <div id="doc"> <div id="hd" class="yui3-g header"> <div class="yui3-u-3-4"> <h1><img src="../assets/css/logo.png" title="muskepeer-client"></h1> </div> <div class="yui3-u-1-4 version"> <em>API Docs for: 0.0.1</em> </div> </div> <div id="bd" class="yui3-g"> <div class="yui3-u-1-4"> <div id="docs-sidebar" class="sidebar apidocs"> <div id="api-list"> <h2 class="off-left">APIs</h2> <div id="api-tabview" class="tabview"> <ul class="tabs"> <li><a href="#api-classes">Classes</a></li> <li><a href="#api-modules">Modules</a></li> </ul> <div id="api-tabview-filter"> <input type="search" id="api-filter" placeholder="Type to filter APIs"> </div> <div id="api-tabview-panel"> <ul id="api-classes" class="apis classes"> <li><a href="../classes/Computation.html">Computation</a></li> <li><a href="../classes/Crypto.html">Crypto</a></li> <li><a href="../classes/Database.html">Database</a></li> <li><a href="../classes/FileSystem.html">FileSystem</a></li> <li><a href="../classes/GeoLocation.html">GeoLocation</a></li> <li><a href="../classes/Job.html">Job</a></li> <li><a href="../classes/Jobs.html">Jobs</a></li> <li><a href="../classes/Logger.html">Logger</a></li> <li><a href="../classes/Mediator.html">Mediator</a></li> <li><a href="../classes/MuskepeerClient.html">MuskepeerClient</a></li> <li><a href="../classes/MuskepeerModule.html">MuskepeerModule</a></li> <li><a href="../classes/Network.html">Network</a></li> <li><a href="../classes/Node.html">Node</a></li> <li><a href="../classes/Nodes.html">Nodes</a></li> <li><a href="../classes/Peer.html">Peer</a></li> <li><a href="../classes/Peers.html">Peers</a></li> <li><a href="../classes/Pool.html">Pool</a></li> <li><a href="../classes/Project.html">Project</a></li> <li><a href="../classes/Result.html">Result</a></li> <li><a href="../classes/Results.html">Results</a></li> <li><a href="../classes/Service.html">Service</a></li> <li><a href="../classes/Settings.html">Settings</a></li> <li><a href="../classes/Storage.html">Storage</a></li> <li><a href="../classes/Uuid.html">Uuid</a></li> <li><a href="../classes/Worker.html">Worker</a></li> </ul> <ul id="api-modules" class="apis modules"> <li><a href="../modules/Computation.html">Computation</a></li> <li><a href="../modules/Crypto.html">Crypto</a></li> <li><a href="../modules/Database.html">Database</a></li> <li><a href="../modules/FileSystem.html">FileSystem</a></li> <li><a href="../modules/GeoLocation.html">GeoLocation</a></li> <li><a href="../modules/Jobs.html">Jobs</a></li> <li><a href="../modules/Logger.html">Logger</a></li> <li><a href="../modules/Mediator.html">Mediator</a></li> <li><a href="../modules/MuskepeerClient.html">MuskepeerClient</a></li> <li><a href="../modules/Network.html">Network</a></li> <li><a href="../modules/Pool.html">Pool</a></li> <li><a href="../modules/Project.html">Project</a></li> <li><a href="../modules/Results.html">Results</a></li> <li><a href="../modules/Settings.html">Settings</a></li> <li><a href="../modules/Storage.html">Storage</a></li> <li><a href="../modules/Uuid.html">Uuid</a></li> </ul> </div> </div> </div> </div> </div> <div class="yui3-u-3-4"> <div id="api-options"> Show: <label for="api-show-inherited"> <input type="checkbox" id="api-show-inherited" checked> Inherited </label> <label for="api-show-protected"> <input type="checkbox" id="api-show-protected"> Protected </label> <label for="api-show-private"> <input type="checkbox" id="api-show-private"> Private </label> <label for="api-show-deprecated"> <input type="checkbox" id="api-show-deprecated"> Deprecated </label> </div> <div class="apidocs"> <div id="docs-main"> <div class="content"> <h1 class="file-heading">File: src\storage\filesystem.js</h1> <div class="file"> <pre class="code prettyprint linenums"> /** * FileSystem * * @module FileSystem * @class FileSystem * * @see http://www.html5rocks.com/de/tutorials/file/filesystem/ * @see https://gist.github.com/robnyman/1894032 * @see https://developer.mozilla.org/en-US/docs/Web/API/URL.createObjectURL * @see http://www.html5rocks.com/en/tutorials/file/filesystem/#toc-filesystemurls * */ define([&#x27;lodash&#x27;, &#x27;crypto/index&#x27;, &#x27;q&#x27;, &#x27;project&#x27;, &#x27;settings&#x27;], function (_, crypto, Q, project, settings) { /** * @final * @property CHUNK_SIZE * @type {Number} */ var CHUNK_SIZE = 512; var _self, _db, _fs; /** * Request access to the local fileSystem, * will cause a user prompt at first attempt * * @private * @method requestFileSystem * @return {Promise} */ function requestFileSystem() { var deferred = Q.defer(); window.requestFileSystem = window.requestFileSystem || window.webkitRequestFileSystem; window.requestFileSystem(window.PERSISTENT, settings.fileStorageSize, deferred.resolve, function (error) { deferred.reject(error); }); return deferred.promise; } /** * Request a specific stoage-quota * will cause a user prompt at first attempt * * @private * @method requestQuota * @return {Promise} */ function requestQuota() { var deferred = Q.defer(); navigator.webkitPersistentStorage = navigator.webkitPersistentStorage || window.webkitStorageInfo; navigator.webkitPersistentStorage.requestQuota(settings.fileStorageSize || 50 * 1024 * 1024, deferred.resolve, deferred.reject); return deferred.promise; } /** * Parse a fileName from an uri * * @private * @method getFileNameFromUri * @param {String} uri * @return {String} */ function getFileNameFromUri(uri) { var regex = new RegExp(/[^\\/]+$/); return uri.match(regex)[0]; } /** * Create a directory in filesystem * * @private * @method createSubDirectory * @param {String} dir * @return {Promise} */ function createSubDirectory(dir) { var deferred = Q.defer(); _fs.root.getDirectory(dir, {create: true}, deferred.resolve, deferred.reject); return deferred.promise; } /** * * @param fileInfo * @param mode * @param offset * @param completeFile * @returns {Promise} */ function readFile(fileInfo, mode, offset, completeFile) { var deferred = Q.defer(); mode = mode || &#x27;blob&#x27;; completeFile = completeFile || false; _fs.root.getFile(project.uuid + &#x27;/&#x27; + fileInfo.uuid, {}, function (fileEntry) { fileEntry.file(function (file) { var start = offset || 0, end = start + CHUNK_SIZE, blob; // Every file has an end if (start + CHUNK_SIZE &gt; file.size) { end = file.size; } // Slice that file if (!completeFile) { blob = file.slice(start, end); } else { blob = file; } // Blob Mode, no need for FileReader if (mode === &#x27;blob&#x27;) { deferred.resolve(blob); } // Using FileReader else { var reader = new FileReader(); reader.onloadend = function (e) { if (e.target.readyState === FileReader.DONE) { if (mode === &#x27;dataUrl&#x27;) { // Remove data attribute prefix var chunk = reader.result.match(/,(.*)$/); if (chunk) { deferred.resolve(chunk[1]); } else { deferred.reject(); } } else { deferred.resolve(reader.result); } reader = null; } else { deferred.reject(); } }; // DataUrl Mode if (mode === &#x27;dataUrl&#x27;) { reader.readAsDataURL(blob); // ArrayBuffer Mode } else if (mode === &#x27;arrayBuffer&#x27;) { reader.readAsArrayBuffer(blob); } } }, deferred.reject); }, deferred.reject); return deferred.promise; } /** * Gets a file via XHR and returns a promise, * resolve will contain a Blob * * @private * @method download * * @param {Object} file * @return {Promise} * */ function downloadViaXHR(file) { var deferred = Q.defer(), xhr = new XMLHttpRequest(), data; xhr.open(&#x27;GET&#x27;, file.uri, true); xhr.responseType = &#x27;blob&#x27;; xhr.addEventListener(&#x27;progress&#x27;, function (e) { // Maybe somehow there will already be some chunks in here if (e.target.response instanceof Blob) { data = { blob: e.target.response, position: e.position, totalSize: e.totalSize }; } else { // If not at least we can store these info data = {totalSize: e.totalSize} } deferred.notify(data); }); xhr.addEventListener(&#x27;load&#x27;, function (e) { if (xhr.status === 200) { data = { blob: e.target.response, position: e.position, totalSize: e.target.response.size }; deferred.resolve(data); } else { deferred.reject(&#x27;Error downloading file&#x27;); } }, false); xhr.send(); return deferred.promise; } /** * Updates the list by getting the newest info from db * * @private * @method updateFileList * @return {Promise} */ function updateFileList() { return _self.getFileList() .then(function (files) { _self.list = files; }); } /** * Converts a base64 String to a Blob * * @private * @method base64toBlob * @see http://stackoverflow.com/questions/16245767/creating-a-blob-from-a-base64-string-in-javascript * * @param {String} base64 * @param {String} [contentType] * * @return {Blob} */ function base64toBlob(base64, contentType) { contentType = contentType || &#x27;&#x27;; var byteCharacters = atob(base64); var byteArrays = []; for (var offset = 0; offset &lt; byteCharacters.length; offset += CHUNK_SIZE) { var slice = byteCharacters.slice(offset, offset + CHUNK_SIZE); var byteNumbers = new Array(slice.length); for (var i = 0; i &lt; slice.length; i++) { byteNumbers[i] = slice.charCodeAt(i); } var byteArray = new Uint8Array(byteNumbers); byteArrays.push(byteArray); } return new Blob(byteArrays, {type: contentType}); } return { /** * List of related files in db, * will always be updated automatically * * @property list * @type {Array} */ list: null, /** * Initialize fileStorage * * @chainable * @method init * * @param db Instance of database submodule * @return {Object} */ init: function (db) { _self = this; _db = db; return requestQuota() .then(requestFileSystem) .then(function (fileSystem) { _fs = fileSystem; if (!project.uuid) { logger.error(&#x27;Filesystem&#x27;, &#x27;No project uuid set, can not create dir!&#x27;); throw Error(&#x27;Filesystem&#x27;, &#x27;No project uuid set&#x27;); } return createSubDirectory(project.uuid); }) .then(function () { return updateFileList(); }); }, /** * Write a file/blob to the local filesystem * * @method write * * @param {Object} fileInfo * @param {Blob|String} blob or base64-String * @param {Number} [pos] * * @return {Promise} */ write: function (fileInfo, blob, pos) { var deferred = Q.defer(), writtenBytes = 0, isNewFile = true; // Test if we need to convert from base64 if (!blob instanceof Blob) { blob = base64toBlob(blob); } // Does the file exist in database? _db.read(&#x27;files&#x27;, fileInfo.uuid, {uuidIsHash: true}) .then(function (info) { // Just to make sure, we have data that is up to date fileInfo = info; //Is it marked as complete?) if (!fileInfo || fileInfo.isComplete) { deferred.reject(&#x27;File does not exist, or is already complete&#x27;); } writtenBytes = fileInfo.position; isNewFile = writtenBytes === 0; // We won&#x27;t overwrite fileDate if (pos &lt; writtenBytes) { deferred.reject(&#x27;Position is lower than already written bytes!&#x27;); } }) .then(function () { // Append bytes _fs.root.getFile(project.uuid + &#x27;/&#x27; + fileInfo.uuid, {create: isNewFile }, function (fileEntry) { fileEntry.createWriter(function (writer) { // Start at given position or EOF pos = pos || writer.length; writer.seek(pos); writer.write(blob); }, deferred.reject); }, deferred.reject); }) .then(function () { // Update fileInfo in database var currentPosition = fileInfo.position + blob.size; return _db.update(&#x27;files&#x27;, {uuid: fileInfo.uuid, isComplete: currentPosition &gt;= fileInfo.size, position: currentPosition}, {uuidIsHash: true}); }) .then(updateFileList); return deferred.promise; }, /** * Get a local url to a file in fileSystem * * @method readFileAsLocalUrl * @param {Object} fileInfo * @return {Promise} */ readFileAsLocalUrl: function (fileInfo) { var deferred = Q.defer(); _fs.root.getFile(project.uuid + &#x27;/&#x27; + fileInfo.uuid, {}, function (fileEntry) { deferred.resolve(fileEntry.toURL()); }, deferred.reject); return deferred.promise; }, /** * Get an ObjectUrl to a file from FileSystem * * @method readFileAsObjectUrl * @param {Object} fileInfo * @return {Promise} */ readFileAsObjectUrl: function (fileInfo) { var deferred = Q.defer(); _fs.root.getFile(project.uuid + &#x27;/&#x27; + fileInfo.uuid, {}, function (fileEntry) { fileEntry.file(function (file) { deferred.resolve(URL.createObjectURL(file)); }, deferred.reject); }, deferred.reject); return deferred.promise; }, /** * Read some chunks from the file, which will resul in a Blob-Instance. * Chunk size is defined globally by CHUNK_SIZE. * Slicing can be disabled using completeFile param. * * @method readFileChunkAsBlob * @param {Object} file * @param {Number} offset * @param {Boolean} completeFile * @return {Promise} */ readFileChunkAsBlob: function (file, offset, completeFile) { return readFile(file, &#x27;blob&#x27;, offset, completeFile); }, /** * Read some chunks from the file, which will be base64 encodded. * Chunk size is defined globally by CHUNK_SIZE. * Slicing can be disabled using completeFile param. * * @method readFileChunkAsDataUrl * @param {Object} file * @param {Number} offset * @param {Boolean} completeFile * @return {Promise} */ readFileChunkAsDataUrl: function (file, offset, completeFile) { return readFile(file, &#x27;dataUrl&#x27;, offset, completeFile); }, /** * Read some chunks from the file and return an ArrayBuffer. * Chunk size is defined globally by CHUNK_SIZE. * Slicing can be disabled using completeFile param. * * @method readFileChunkAsArrayBuffer * @param {Object} file * @param {Number} offset * @param {Boolean} completeFile * @return {Promise} */ readFileChunkAsArrayBuffer: function (file, offset, completeFile) { return readFile(file, &#x27;arrayBuffer&#x27;, offset, completeFile); }, /** * Add file-entries to the storage database, * not to the filesystem. * * @method add * @param {Array|String} files * @return {Promise} */ add: function (files) { var promises = []; //just a single uri? if (!_.isArray(files)) { files = [files]; } files.forEach(function (file) { var fileInfo = { name: file.name || getFileNameFromUri(file.url), uri: file.url, size: 0, position: 0, type: file.type || &#x27;text/plain&#x27;, isComplete: false, uuid: crypto.hash(file.url) }; var promise = _db.read(&#x27;files&#x27;, fileInfo.uuid, {uuidIsHash: true}) .then(function (result) { if (!result) { return _db.save(&#x27;files&#x27;, fileInfo, {allowDuplicates: false, uuidIsHash: true}); } }); promises.push(promise); }); return Q.all(promises).then(updateFileList); }, /** * Get an array of incomplete files from storage-database * * @method getListOfIncompleteFiles * @return {Promise} */ getIncompleteFileList: function () { return _db.findAndReduceByObject(&#x27;files&#x27;, {filterDuplicates: false}, {projectUuid: project.uuid, isComplete: false}); }, /** * Get an array of all files from storage-database * * @method getFileList * @return {Promise} */ getFileList: function () { return _db.findAndReduceByObject(&#x27;files&#x27;, {filterDuplicates: false}, {projectUuid: project.uuid}); }, /** * This will download all incomplete files from their urls. * Should be used if you know, that there are no other peers in you pool, * that can deliver the files you need. * * @method downloadIncompleteFiles * @return [Promise} */ downloadIncompleteFiles: function () { // Get incomplete files from database return this.getIncompleteFileList() .then(function (files) { var promises = []; files.forEach(function (file) { var deferred = Q.defer(); promises.push(deferred.promise); downloadViaXHR(file) .progress(function (data) { // We gort some chunks if (data.blob &amp;&amp; data.position) { _db.update(&#x27;files&#x27;, {uuid: file.uuid, size: data.totalSize, position: data.position}, {uuidIsHash: true}) .then(function () { _self.write(file, data.blob, data.position); }); } // We only got some info else { _db.update(&#x27;files&#x27;, {uuid: file.uuid, size: data.totalSize}, {uuidIsHash: true}) } }) .catch(function (err) { logger.error(&#x27;FileSystem&#x27;, file.uri, &#x27;error during download!&#x27;); }) .done(function (data) { logger.log(&#x27;FileSystem&#x27;, file.uri, &#x27;download complete!&#x27;); _db.update(&#x27;files&#x27;, {uuid: file.uuid, isComplete: true, position: data.blob.size, size: data.blob.size}, {uuidIsHash: true}); _self.write(file, data.blob).then(updateFileList); deferred.resolve(); }); }); return Q.all(promises); }); }, /** * Retrieve a filInfo object from storage (db) by uuid (hash). * * @method getFileInfoByUuid * * @param uuid * @return {Object} */ getFileInfoByUuid: function (uuid) { return _db.read(&#x27;files&#x27;, uuid, {uuidIsHash: true}); }, /** * Retrieve a fileInfo object from storage by url. * * @method getFileInfoByUri * * @param uri * @return {Array} can be multiple files */ getFileInfoByUri: function (uri) { return _db.findAndReduceByObject(&#x27;files&#x27;, {}, {uri: uri}); }, /** * etrieve a fileInfo object from storage by name. * * @param name * @return {Array} */ getFileInfoByName: function (name) { return _db.findAndReduceByObject(&#x27;files&#x27;, {}, {name: name}); }, /** * Will delete all files/folders inside the project-dir recursively * as well as the references (fileInfo) in database * * @method clear * @return {Promise} */ clear: function () { var deferred = Q.defer(); // Delete form filesystem _fs.root.getDirectory(project.uuid, {}, function (dirEntry) { dirEntry.removeRecursively(function () { deferred.resolve(); }, deferred.reject); }, deferred.reject); return deferred.promise .then(_self.getFileList) .then(function (files) { var promises = []; //Delete from database files.forEach(function (file) { promises.push(_db.remove(&#x27;files&#x27;, file.uuid, {uuidIsHash: true})); }); return Q.all(promises); }).then(function () { logger.log(&#x27;FileStorage&#x27;, &#x27;removed all files/folders from file-system!&#x27;); return updateFileList(); }); } }; }) ; </pre> </div> </div> </div> </div> </div> </div> </div> <script src="../assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="../assets/js/yui-prettify.js"></script> <script src="../assets/../api.js"></script> <script src="../assets/js/api-filter.js"></script> <script src="../assets/js/api-list.js"></script> <script src="../assets/js/api-search.js"></script> <script src="../assets/js/apidocs.js"></script> </body> </html>
webapp/opentamilapp/templates/tamilinayavaani_spell_check.html
Ezhil-Language-Foundation/open-tamil
{% extends "main.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Tamil-Inayavaani SpellChecker + Tamil-Sandhi Checker" %}{% endblock %} {% block content %} <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <script src={% static 'tinymce/js/jquery/jquery-1.12.1.min.js' %}></script> <script src={% static 'tinymce/js/tinymce/tinymce.dev.js' %}></script> <script src={% static 'tinymce/js/tinymce/tinymce.jquery.js' %}></script> <script> function ta_spellchecker_cb(method, text, success, failure) { var words_to_check = text.split(/\s/); //debug console.log(words_to_check.join('|\n')); var request = $.ajax({ url: "/en/tamilinayavaani_spellchecker", method: "POST", dataType: "json", data: { lang: 'ta_IN', /*this.getLanguage()*/ text: words_to_check.join('\n') } }); request.done( function (result) { console.log(result); success(result); }); request.fail(function (xhr, errorStatus) { failure("Spellcheck error:" + errorStatus); }); }; /* Ref: https://www.tinymce.com/docs/plugins/spellchecker/ */ function init() { tinymce.init({ mode: "textareas", plugins: [ "advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker", "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking", "save table contextmenu directionality emoticons template paste" ], valid_elements: '*[*]', add_unload_trigger: false, editor_selector: 'editable', spellchecker_language: 'ta_IN', spellchecker_callback: ta_spellchecker_cb }); }; init(); </script> <div> <h3>தமிழ் திருத்தி ( தமிழிணையவாணி + தமிழ் சந்திப்பிழைத்திருத்தி)</h3> <div><b> usage: Tools > Spellchecker </b></div> <div> <div id="container1"> <textarea id="elm1" name="elm1" rows="25" cols="80" style="width: 80%" class="editable"> கலுதைக்கு தெரியுமா கல்பூரம் வாசொனை </textarea> </div> <a href="#" onclick="tinymce.DOM.show('container1');return false;" alt="காட்டு">[+]</a> <a href="#" onclick="tinymce.DOM.hide('container1');return false;" alt="மரை">[-]</a> </div> </div> <!-- credits --> <div> <h2>Tamilinaiyam - Pizhaithiruthi (Spellchecker)</h2> </div> <div id="python-package"> <h2>Python Package</h2> <p>Python Port of TamilInaiya spell checker is named ‘tamilinayavaani’ and available as Python module form same name. It can be used with a UTF-8 encoded text file as follows,</p> <div id="installation"> <h3>Installation</h3> <pre>$ python3 -m pip install --upgrade tamilinayavaani&gt;<span class="o">=</span><span class="m">0</span>.13 </pre> </div> <div id="usage-in-memory"> <h3>Usage - in-memory</h3> <pre><span class="kn">from</span> <span class="nn">tamilinaiyavaani</span> <span class="kn">import</span> <span class="n">SpellChecker</span> <span class="n">flag</span><span class="p">,</span><span class="n">suggs</span><span class="o">=</span><span class="n">SpellChecker</span><span class="o">.</span><span class="n">REST_interface</span><span class="p">(</span><span class="s1">'வாழை'</span><span class="p">,</span><span class="s1">'பழம்'</span><span class="p">)</span> <span class="n">expected</span><span class="o">=</span><span class="p">[</span><span class="s1">'வாழைப்'</span><span class="p">,</span> <span class="s1">'பழம்'</span><span class="p">]</span> <span class="k">assert</span> <span class="ow">not</span> <span class="n">flag</span> <span class="k">assert</span> <span class="n">expected</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">==</span><span class="n">suggs</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> </pre> </div> <div id="usage-file-based"> <h3>Usage - file-based</h3> <p>An file-based use of the library would look like,</p> <pre><span class="kn">from</span> <span class="nn">tamilinaiyavaani</span> <span class="kn">import</span> <span class="n">SpellChecker</span><span class="p">,</span> <span class="n">SpellCheckerResult</span> <span class="n">result</span> <span class="o">=</span> <span class="n">SpellChecker</span><span class="p">(</span><span class="n">fname</span><span class="p">)</span><span class="o">.</span><span class="n">run</span><span class="p">()</span> <span class="c1">#fname is a full filename</span> <span class="c1"># result is a list of SpellCheckerResult objects.</span> </pre> </div> </div> <div id="source"> <h2>Source</h2> <p>Tamil Virtual Academy release sources at <a href="http://www.tamilvu.org/ta/content/%E0%AE%A4%E0%AE%AE%E0%AE%BF%E0%AE%B4%E0%AF%8D%E0%AE%95%E0%AF%8D-%E0%AE%95%E0%AE%A3%E0%AE%BF%E0%AE%A9%E0%AE%BF%E0%AE%95%E0%AF%8D-%E0%AE%95%E0%AE%B0%E0%AF%81%E0%AE%B5%E0%AE%BF%E0%AE%95%E0%AE%B3%E0%AF%8D" rel="nofollow">link.</a></p> </div> <div id="license"> <h2>License</h2> <p>This code is licensed under terms of GNU GPL V2. Check <a href="https://commons.wikimedia.org/wiki/File:Tamil-Virtual-Academy-Copyright-Declaration.jpg" rel="nofollow">link</a> for license info.</p> </div> <div id="credits"> <h2>Credits</h2> <ul> <li>Thanks to Tamil Virtual Academy, Chennai for releasing ths source code of this application. This work is open-source publication of Vaani from <a href="http://vaani.neechalkaran.com" rel="nofollow">link</a> You can support the close-source Vaani project, an 8 yr effort as of 2020, by donating here <a href="http://neechalkaran.com/p/donate.html" rel="nofollow">donate(link)</a></li> <li>Python Port was enabled by Kaniyam Foundation, T. Shrinivasan, @manikk, Ashok Ramachandran, and others. You can support Kaniyam Foundation and its mission by donating via instructions here, <a href="http://www.kaniyam.com" rel="nofollow">Kaniyam</a> The Python port depends on tamilsandhichecker project <a href="https://github.com/nithyadurai87/tamil-sandhi-checker" rel="nofollow">link</a> and the Open-Tamil project <a href="https://pypi.org/project/Open-Tamil/" rel="nofollow">link:</a> </div> {% endblock %}
2017/10/23/una-aplicacin-inconstitucional.html
carlesbellver/carlesbellver.github.io
<!DOCTYPE html> <html lang="ca-es" data-theme=""> <head> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="referrer" content="no-referrer-when-downgrade"> <title>La vista cansada</title> <meta name="description" content=""> <link rel="icon" type="image/x-icon" href="https://carlesbellver.github.io/favicon.ico"> <link rel="apple-touch-icon-precomposed" href="https://carlesbellver.github.io/favicon.png"> <link rel="stylesheet" href="https://carlesbellver.github.io/css/light.css?rnd=1602439751" /> <style> [data-theme="dark"] { --font-color: #eee; --bg-color: #212121; --link-color:#599ada; --link-state-color:#ff5858; --link-state-border-color: rgba(238, 54, 54, 0.5); --thead-bg-color: #343a40; --table-border-color: lightgrey; --pre-color: #333; --pre-bg-color: #f1f1f1; --bq-color: #ccc; --hr-color: #333; --pagination-bg-color: #373737; --pagination-link-color: #b6b6b6; --post-info-color: grey; --switcher-color: #333; --switcher-bg-color: #fff; } </style> <link rel="stylesheet" href="https://carlesbellver.github.io/css/style.css?rnd=1602439751" /> <meta property="og:title" content="" /> <meta property="og:description" content="📎 Una aplicación inconstitucional del artículo 155 Joaquín Urías, professor de Dret Constitucional i ex-lletrat del Tribunal Constitucional. ¿Carta blanca per usurpar les competències de qualsevol comunitat autònoma amb què es discrepe?" /> <meta property="og:type" content="article" /> <meta property="og:url" content="https://carlesbellver.github.io/2017/10/23/una-aplicacin-inconstitucional.html" /> <meta property="article:published_time" content="2017-10-23T10:27:00+00:00" /> <meta property="article:modified_time" content="2017-10-23T10:27:00+00:00" /> <meta name="twitter:card" content="summary"/> <meta name="twitter:title" content=""/> <meta name="twitter:description" content="📎 Una aplicación inconstitucional del artículo 155 Joaquín Urías, professor de Dret Constitucional i ex-lletrat del Tribunal Constitucional. ¿Carta blanca per usurpar les competències de qualsevol comunitat autònoma amb què es discrepe?"/> </head> <body> <a class="skip-main" href="#main">Anar al contingut principal</a> <div class="container"> <header class="common-header"> <h1 class="site-title"> <a href="/">La vista cansada</a> </h1> <nav> <a class="" href="https://carlesbellver.github.io/about/" title="">Informació</a> <a class="" href="https://carlesbellver.github.io/tags/" title="">Etiquetes</a> </nav> </header> <main id="main" tabindex="-1"> <article class="post retalls h-entry"> <header class="post-header"> <h1 class="post-title p-name"></h1> </header> <div class="content e-content"> <p>📎 <a href="http://www.eldiario.es/tribunaabierta/aplicacion-inconstitucional-articulo_6_699990004.html">Una aplicación inconstitucional del artículo 155</a></p> <p>Joaquín Urías, professor de Dret Constitucional i ex-lletrat del Tribunal Constitucional. ¿Carta blanca per usurpar les competències de qualsevol comunitat autònoma amb què es discrepe?</p> </div> <div class="post-info"> <a class="u-url" href="/2017/10/23/una-aplicacin-inconstitucional.html"><div class="post-date dt-published">2017-10-23</div></a> <div class="post-taxonomies"> <ul class="post-tags"> <li><a href="https://carlesbellver.github.io/tags/retalls">#retalls</a></li> </ul> </div> </div> </article> </main> <footer class="common-footer"> <div class="common-footer-bottom"> <div class="copyright"> <p>Carles Bellver Torlà </p> </div> <button class="theme-switcher"> Tema fosc </button> <script> const STORAGE_KEY = 'user-color-scheme' const defaultTheme = "light" let currentTheme let switchButton let autoDefinedScheme = window.matchMedia('(prefers-color-scheme: dark)') const autoChangeScheme = e => { currentTheme = e.matches ? 'dark' : 'light' document.documentElement.setAttribute('data-theme', currentTheme) changeButtonText() } document.addEventListener('DOMContentLoaded', function() { switchButton = document.querySelector('.theme-switcher') currentTheme = detectCurrentScheme() if (currentTheme == 'dark') { document.documentElement.setAttribute('data-theme', 'dark') } if (currentTheme == 'auto') { autoChangeScheme(autoDefinedScheme); autoDefinedScheme.addListener(autoChangeScheme); } changeButtonText() switchButton.addEventListener('click', switchTheme, false) }) function detectCurrentScheme() { if (localStorage.getItem(STORAGE_KEY)) { return localStorage.getItem(STORAGE_KEY) } if (defaultTheme) { return defaultTheme } if (!window.matchMedia) { return 'light' } if (window.matchMedia('(prefers-color-scheme: dark)').matches) { return 'dark' } return 'light' } function changeButtonText() { switchButton.textContent = currentTheme == 'dark' ? "Tema clar" : "Tema fosc" } function switchTheme(e) { if (currentTheme == 'dark') { localStorage.setItem(STORAGE_KEY, 'light') document.documentElement.setAttribute('data-theme', 'light') currentTheme = 'light' } else { localStorage.setItem(STORAGE_KEY, 'dark') document.documentElement.setAttribute('data-theme', 'dark') currentTheme = 'dark' } changeButtonText() } </script> </div> </footer> </div> </body> </html>
docs/archive/documents/117.html
alter-rebbe/collector
--- layout: tei tei: '../tei/117.xml' prev: '116' self: '117' next: '118' ---
memeapp/app/pages/feed/feed.html
samfcmc/ionic2_tutorial
<ion-navbar *navbar> <ion-title>Feed</ion-title> </ion-navbar> <ion-content padding class="feed"> <div class="spinner" *ngIf="loading" > <ion-spinner class="spinner"></ion-spinner> </div> <p *ngIf="error">An error ocurred. Try again</p> <p *ngIf="(!memes || memes.length == 0) && !loading" >Nothing to show...</p> <ion-refresher (ionRefresh)="refresh($event)"> <ion-refresher-content pullingIcon="arrow-down" refreshingSpinner="circles"> </ion-refresher-content> </ion-refresher> <meme-card *ngFor="let meme of memes" (click)="showMeme(meme)" [title]="meme.text0" [imageUrl]="meme.instanceImageUrl" [text]="meme.displayName"> </meme-card> <ion-infinite-scroll (ionInfinite)="loadNextPage($event)"> <ion-infinite-scroll-content loadingSpinner="bubbles" loadingText="Loading more awesome memes for you"> </ion-infinite-scroll-content> </ion-infinite-scroll> </ion-content>