path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
libit-0.2.2/doc/html/man.ivec-incr.html
xiao00li/Undergraduate-Dissertation
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"> <HTML ><HEAD ><TITLE >ivec_incr</TITLE ><META NAME="GENERATOR" CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK REL="HOME" TITLE="LIBIT Documentation" HREF="index.html"><LINK REL="UP" HREF="refmanual.html"><LINK REL="PREVIOUS" TITLE="vec_div_by" HREF="man.vec-div-by.html"><LINK REL="NEXT" TITLE="ivec_decr" HREF="man.ivec-decr.html"></HEAD ><BODY CLASS="REFENTRY" BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#840084" ALINK="#0000FF" ><DIV CLASS="NAVHEADER" ><TABLE SUMMARY="Header navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TH COLSPAN="3" ALIGN="center" >LIBIT Documentation</TH ></TR ><TR ><TD WIDTH="10%" ALIGN="left" VALIGN="bottom" ><A HREF="man.vec-div-by.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="80%" ALIGN="center" VALIGN="bottom" ></TD ><TD WIDTH="10%" ALIGN="right" VALIGN="bottom" ><A HREF="man.ivec-decr.html" ACCESSKEY="N" >Next</A ></TD ></TR ></TABLE ><HR ALIGN="LEFT" WIDTH="100%"></DIV ><H1 ><A NAME="MAN.IVEC-INCR" ></A >ivec_incr</H1 ><DIV CLASS="REFNAMEDIV" ><A NAME="AEN9645" ></A ><H2 >Name</H2 >ivec_incr&nbsp;--&nbsp;Increment the components of a vector by a value</DIV ><DIV CLASS="REFSYNOPSISDIV" ><A NAME="AEN9648" ></A ><H2 >Synopsis</H2 ><DIV CLASS="FUNCSYNOPSIS" ><P ></P ><A NAME="AEN9649" ></A ><PRE CLASS="FUNCSYNOPSISINFO" >#include &lt;it/vec.h&gt; </PRE ><P ><CODE ><CODE CLASS="FUNCDEF" >void ivec_incr</CODE >( ivec v, int a );</CODE ></P ><P ></P ></DIV ></DIV ><H2 >DESCRIPTION</H2 ><P > The function <CODE CLASS="FUNCTION" >ivec_incr</CODE > adds the quantity <CODE CLASS="PARAMETER" >a</CODE > to all the components of the vector <CODE CLASS="PARAMETER" >v</CODE >. </P ><H2 >EXAMPLE</H2 ><PRE CLASS="PROGRAMLISTING" >&#13;#include &lt;vec.h&gt; ... ivec v = ivec_new_string("2 5 -1"); /* vector [ 2 5 -1 ] */ ivec_incr(v, 2); /* v = [ 4 7 1 ] */ ivec_delete(v);</PRE ><DIV CLASS="NAVFOOTER" ><HR ALIGN="LEFT" WIDTH="100%"><TABLE SUMMARY="Footer navigation table" WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0" ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" ><A HREF="man.vec-div-by.html" ACCESSKEY="P" >Prev</A ></TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="index.html" ACCESSKEY="H" >Home</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" ><A HREF="man.ivec-decr.html" ACCESSKEY="N" >Next</A ></TD ></TR ><TR ><TD WIDTH="33%" ALIGN="left" VALIGN="top" >vec_div_by</TD ><TD WIDTH="34%" ALIGN="center" VALIGN="top" ><A HREF="refmanual.html" ACCESSKEY="U" >Up</A ></TD ><TD WIDTH="33%" ALIGN="right" VALIGN="top" >ivec_decr</TD ></TR ></TABLE ></DIV ></BODY ></HTML >
xps/10/drink_responsability/index.html
Makio64/christmasxp2015
<!DOCTYPE html> <html lang="en"> <!-- * , _/^\_ < > * /.-.\ * * `/&\` * ,@.*;@, /_o.I %_\ * * (`'--:o(_@; /`;--.,__ `') * ;@`o % O,*`'`&\ * (`'--)_@ ;o %'()\ * /`;--._`''--._O'@; /&*,()~o`;-.,_ `""`) * /`,@ ;+& () o*`;-';\ (`""--.,_0 +% @' &()\ /-.,_ ``''--....-'`) * * /@%;o`:;'--,.__ __.'\ ;*,&(); @ % &^;~`"`o;@(); * /(); o^~; & ().o@*&`;&%O\ jgs `"="==""==,,,.,="=="==="` __.----.(\-''#####---...___...-----._ '` \)_`"""""` .--' ') o( )_-\ `"""` ` MERRY CHRISTMAS! --> <head> <title>TITLE</title> <meta charset="utf-8"> <meta name="author" content="AUTHOR"> <meta name="description" content="DESCRIPTION"> <meta property="og:title" content="TITLE"/> <meta property="og:type" content="website"/> <meta property="og:url" content="URL"/> <meta property="og:image" content="FACEBOOK_IMG"/> <meta property="og:site_name" content="WEBSITE"/> <meta property="og:description" content="DESCRIPTION"/> <meta name="viewport" content="width=device-width, user-scalable=no"> </head> <body style="cursor: pointer;"> <div id="content"></div> <div id="loader"></div> <div class="scripts"> <script src="./third-party/has.js"></script> <script src="./third-party/three.js"></script> <script src="./third-party/two.js"></script> <script src="./third-party/sound.js"></script> <script src="./third-party/tween.js"></script> <script src="./src/drinks.js"></script> <script type="x-shader/x-vertex" id="vertexshader"> attribute float displacement; varying vec2 vUv; uniform vec2 amplitude; void main() { vUv = uv; vec3 p = position; p.x += displacement * amplitude.x; p.y += displacement * amplitude.y; gl_Position = projectionMatrix * modelViewMatrix * vec4( p, 1.0 ); } </script> <script type="x-shader/x-fragment" id="fragmentshader"> varying vec2 vUv; uniform vec3 background; uniform sampler2D texture; uniform vec2 repeat; uniform int mirrored; void main() { float x = mod( repeat.x * vUv.x, 1.0 ); float y = mod( repeat.y * vUv.y, 1.0 ); float ix = mod( floor( repeat.x * vUv.x ), 2.0 ); float iy = mod( floor( repeat.y * vUv.y ), 2.0 ); if ( mirrored == 1 ) { if ( ix > 0.0 ) { x = 1.0 - x; } if ( iy > 0.0 ) { y = 1.0 - y; } } vec4 texel = texture2D( texture, vec2( x, y ) ); gl_FragColor = vec4( mix( background.rgb, texel.rgb, texel.a ), 1.0 ); } </script> <script> var ONE_HOUR = 10 * 60 * 1000; var width, height, jingle, yay, bac, lastDrink, background = new THREE.Color('rgb(255, 100, 100)'), damp = 256; if (window.localStorage && window.localStorage.getItem) { bac = parseInt(window.localStorage.getItem('bac') || 0); lastDrink = parseInt(window.localStorage.getItem('lastDrink') || Date.now()); if (bac > 2) { window.alert('Looks like your Blood Alcohol Content is a bit high. It will take ' + Math.round(bac / 2) + ' hours to sober up.'); } } background.palette = [ { r: 0, g: 151, b: 219 }, { r: 255, g: 100, b: 100 }, { r: 100, g: 100, b: 255 }, { r: 88, g: 133, b: 95 }, { r: 255, g: 235, b: 198 }, { r: 255, g: 187, b: 90 }, { r: 64, g: 52, b: 63 }, { r: 151, g: 171, b: 152 }, { r: 82, g: 210, b: 232 } ]; _.each(background.palette, function(color) { _.each(color, function(c, k) { color[k] = c / 255; }); }); background.tween = new TWEEN.Tween(background) .onUpdate(function() { view.material.color.copy(background); drinks.background.fill = background.getStyle(); }) .easing(TWEEN.Easing.Sinusoidal.InOut); var renderer = new THREE.WebGLRenderer({ antialias: true }); var scene = new THREE.Scene(); var camera = new THREE.OrthographicCamera(-50, 50, 50, -50, -1, 1); var two = new Two({ type: Two.Types.canvas, width: 512, height: 512, ratio: has.mobile ? 1 : 2 }); var drinks = new Drinks(two); var view = new THREE.Mesh( new THREE.PlaneBufferGeometry(200, 200, 1, 1), new THREE.MeshBasicMaterial({ color: background, depthWrite: false }) ); var plane = new THREE.Mesh( new THREE.PlaneBufferGeometry(100, 100, 32, 32), new THREE.ShaderMaterial({ uniforms: { texture: { type: 't', value: new THREE.Texture(two.renderer.domElement) }, repeat: { type: 'v2', value: new THREE.Vector2(1, 1) }, mirrored: { type: 'i', value: 1 }, amplitude: { type: 'v2', value: new THREE.Vector2(0, 0) }, background: { type: 'c', value: background } }, vertexShader:document.getElementById( 'vertexshader' ).textContent, fragmentShader: document.getElementById( 'fragmentshader' ).textContent }) ); plane.material.map = plane.material.uniforms.texture.value; plane.material.uniforms.amplitude.value.destination = new THREE.Vector2(0, 0); plane.displacement = new Float32Array(plane.geometry.attributes.position.count); plane.displacement.offset = new Float32Array(plane.geometry.attributes.position.count); plane.geometry.addAttribute('displacement', new THREE.BufferAttribute(plane.displacement, 1)); for (var i = 0; i < plane.displacement.length; i++) { plane.displacement.offset[i] = Math.random() * Math.PI * 2; } setup(); var time = 0; two.bind('update', function(frameCount, timeDelta) { TWEEN.update(); renderer.render(scene, camera); if (!timeDelta) { return; } drinks.update(); var amp = plane.material.uniforms.amplitude.value; amp.x += (amp.destination.x - amp.x) * 0.000125; amp.y += (amp.destination.y - amp.y) * 0.000125; var rate = Math.sin(amp.x / 10 * Math.PI * 2); if (jingle) { if (jingle.volume && jingle.volume.gain.value < 0.5) { jingle.volume.gain.value += timeDelta / 1000; } if (jingle.source && jingle.source.playbackRate) { jingle.source.playbackRate.value = 1 + rate / 2; } if (yay.source && yay.source.playbackRate) { yay.source.playbackRate.value = 1 + rate / 8; } } time += (1 + rate) * timeDelta / damp; for (var i = 0; i < plane.displacement.length; i++) { plane.displacement[i] = Math.sin(plane.displacement.offset[i] + time); } plane.material.map.needsUpdate = true; plane.geometry.attributes.displacement.needsUpdate = true; if (Date.now() > lastDrink + ONE_HOUR) { lastDrink = Date.now(); bac = Math.max(bac - 1, 0); plane.material.uniforms.amplitude.value.destination.x = bac * 2; if (window.localStorage && window.localStorage.setItem) { window.localStorage.setItem('lastDrink', lastDrink); window.localStorage.setItem('bac', bac); } } }); function setup() { scene.scale.y = 0.0000001; plane.material.uniforms.amplitude.value.x = plane.material.uniforms.amplitude.value.destination.x = bac * 2; drinks.background.fill = background.getStyle(); renderer.setClearColor('#333'); scene.add(view); scene.add(plane); _.extend(renderer.domElement.style, { position: 'absolute', top: 0, left: 0, zIndex: - 1 }); document.querySelector('#content').appendChild(renderer.domElement); window.addEventListener('resize', resize, false); document.querySelector('#content').addEventListener('click', drink, false); resize(); drinks.ready(function() { Sound.ready(function() { jingle = new Sound('./audio/deck-the-halls.mp3', function() { this.volume.gain.value = 0.0; this.play({ loop: true }); this.playing = true; }); yay = new Sound('./audio/yay.mp3', function() { drinks.__onStart = function() { yay.play(); }; }); var clinks = []; clinks.index = 0; clinks.next = function() { if (clinks.length <= 0) { return null; } clinks.index = (clinks.index + 1) % clinks.length; return clinks[clinks.index]; }; var addSound = function(name) { var sound = new Sound('./audio/' + name + '.mp3', function() { clinks.push(sound); drinks.__onExplode = function() { clinks.next().play(); }; }); }; for (var i = 1; i <= 3; i++) { addSound('clink-' + i); } reveal(); }); }); scene.blink = (function() { var func; var i = new TWEEN.Tween(scene.scale) .to({ y: 0.0001 }, 100) .easing(TWEEN.Easing.Circular.Out) .onComplete(function() { if (_.isFunction(func)) { func(); } o.start(); }); var o = new TWEEN.Tween(scene.scale) .to({ y: 1 }, 100) .easing(TWEEN.Easing.Circular.In); return function(f) { if (_.isFunction(f)) { func = f; } i.start(); } })(); // two.appendTo(document.body); } function reveal() { two.play(); drink(); new TWEEN.Tween(scene.scale) .to({ y: 1 }, 250) .easing(TWEEN.Easing.Circular.In) .start(); // animateMessage = _.debounce(function() { // var method = drinks.header.ending <= 0 ? 'show' : 'hide'; // drinks.header[method](); // }, 10000); // window.addEventListener('click', animateMessage, false); document.querySelector('#loader').style.opacity = 0; // setTimeout(drinks.header.show, 5000); } function resize() { width = window.innerWidth; height = window.innerHeight; if (plane.material.uniforms.repeat.value.x <= 2) { if (width > height) { plane.scale.x = height / width; plane.scale.y = 1; } else { plane.scale.x = 1; plane.scale.y = width / height; } } else { if (width > height) { plane.scale.x = 1; plane.scale.y = width / height; } else { plane.scale.x = height / width; plane.scale.y = 1; } } renderer.setSize(width, height); camera.updateProjectionMatrix(); } function drink(e) { if (e) { bac++; plane.material.uniforms.amplitude.value.destination.x = bac * 2; if (window.localStorage && window.localStorage.setItem) { window.localStorage.setItem('bac', bac); window.localStorage.setItem('lastDrink', lastDrink); } } var d = drinks.items[drinks.items.index]; var type = Math.random() > 0.5 ? 'glass' : 'bottle'; var name = Drinks.Names[Math.floor(Math.random() * Drinks.Names.length)]; drinks.select([type, name].join('-')); if (e) { background.tween .to(background.palette[Math.floor(Math.random() * background.palette.length)], 5000 / Math.max(plane.material.uniforms.amplitude.value.x, 1)) .start(); } if (plane.material.uniforms.amplitude.value.x > 1 && Math.random() > 0.25) { setTimeout(changeRepeat, 1000); } } function changeRepeat() { var m = Math.min(plane.material.uniforms.amplitude.value.x, 16); var s = Math.max(2 * Math.ceil(Math.random() * m), 1); scene.blink(function() { plane.material.uniforms.repeat.value.set(s, s); resize(); }); } </script> </div> </body> </html>
training/backward-compatible-ui/using-component.html
AzureZhao/android-developer-cn
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width" /> <link rel="shortcut icon" type="image/x-icon" href="../../favicon.ico" /> <title>Using the Version-Aware Component | Android Developers</title> <!-- STYLESHEETS --> <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:regular,medium,thin,italic,mediumitalic,bold" title="roboto"> <link href="../../assets/css/default.css" rel="stylesheet" type="text/css"> <!-- JAVASCRIPT --> <script src="http://www.google.com/jsapi" type="text/javascript"></script> <script src="../../assets/js/android_3p-bundle.js" type="text/javascript"></script> <script type="text/javascript"> var toRoot = "../../"; var devsite = false; </script> <script src="../../assets/js/docs.js" type="text/javascript"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-5831155-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body class="gc-documentation develop" itemscope itemtype="http://schema.org/Article"> <a name="top"></a> <!-- Header --> <div id="header"> <div class="wrap" id="header-wrap"> <div class="col-3 logo"> <a href="../../index.html"> <img src="../../assets/images/dac_logo.png" width="123" height="25" alt="Android Developers" /> </a> <div class="btn-quicknav" id="btn-quicknav"> <a href="#" class="arrow-inactive">Quicknav</a> <a href="#" class="arrow-active">Quicknav</a> </div> </div> <ul class="nav-x col-9"> <li class="design"> <a href="../../design/index.html" zh-tw-lang="設計" zh-cn-lang="设计" ru-lang="Проектирование" ko-lang="디자인" ja-lang="設計" es-lang="Diseñar" >Design</a></li> <li class="develop"><a href="../../develop/index.html" zh-tw-lang="開發" zh-cn-lang="开发" ru-lang="Разработка" ko-lang="개발" ja-lang="開発" es-lang="Desarrollar" >Develop</a></li> <li class="distribute last"><a href="../../distribute/index.html" zh-tw-lang="發佈" zh-cn-lang="分发" ru-lang="Распространение" ko-lang="배포" ja-lang="配布" es-lang="Distribuir" >Distribute</a></li> </ul> <!-- New Search --> <div class="menu-container"> <div class="moremenu"> <div id="more-btn"></div> </div> <div class="morehover" id="moremenu"> <div class="top"></div> <div class="mid"> <div class="header">Links</div> <ul> <li><a href="https://play.google.com/apps/publish/">Google Play Developer Console</a></li> <li><a href="http://android-developers.blogspot.com/">Android Developers Blog</a></li> <li><a href="../../about/index.html">About Android</a></li> </ul> <div class="header">Android Sites</div> <ul> <li><a href="http://www.android.com">Android.com</a></li> <li class="active"><a>Android Developers</a></li> <li><a href="http://source.android.com">Android Open Source Project</a></li> </ul> <br class="clearfix" /> </div> <div class="bottom"></div> </div> <div class="search" id="search-container"> <div class="search-inner"> <div id="search-btn"></div> <div class="left"></div> <form onsubmit="return submit_search()"> <input id="search_autocomplete" type="text" value="" autocomplete="off" name="q" onfocus="search_focus_changed(this, true)" onblur="search_focus_changed(this, false)" onkeydown="return search_changed(event, true, '../../')" onkeyup="return search_changed(event, false, '../../')" /> </form> <div class="right"></div> <a class="close hide">close</a> <div class="left"></div> <div class="right"></div> </div> </div> <div class="search_filtered_wrapper reference"> <div class="suggest-card reference no-display"> <ul class="search_filtered"> </ul> </div> </div> <div class="search_filtered_wrapper docs"> <div class="suggest-card dummy no-display">&nbsp;</div> <div class="suggest-card develop no-display"> <ul class="search_filtered"> </ul> <div class="child-card guides no-display"> </div> <div class="child-card training no-display"> </div> </div> <div class="suggest-card design no-display"> <ul class="search_filtered"> </ul> </div> <div class="suggest-card distribute no-display"> <ul class="search_filtered"> </ul> </div> </div> </div> <!-- /New Search> <!-- Expanded quicknav --> <div id="quicknav" class="col-9"> <ul> <li class="design"> <ul> <li><a href="../../design/index.html">Get Started</a></li> <li><a href="../../design/style/index.html">Style</a></li> <li><a href="../../design/patterns/index.html">Patterns</a></li> <li><a href="../../design/building-blocks/index.html">Building Blocks</a></li> <li><a href="../../design/downloads/index.html">Downloads</a></li> <li><a href="../../design/videos/index.html">Videos</a></li> </ul> </li> <li class="develop"> <ul> <li><a href="../../training/index.html" zh-tw-lang="訓練課程" zh-cn-lang="培训" ru-lang="Курсы" ko-lang="교육" ja-lang="トレーニング" es-lang="Capacitación" >Training</a></li> <li><a href="../../guide/components/index.html" zh-tw-lang="API 指南" zh-cn-lang="API 指南" ru-lang="Руководства по API" ko-lang="API 가이드" ja-lang="API ガイド" es-lang="Guías de la API" >API Guides</a></li> <li><a href="../../reference/packages.html" zh-tw-lang="參考資源" zh-cn-lang="参考" ru-lang="Справочник" ko-lang="참조문서" ja-lang="リファレンス" es-lang="Referencia" >Reference</a></li> <li><a href="../../tools/index.html" zh-tw-lang="相關工具" zh-cn-lang="工具" ru-lang="Инструменты" ko-lang="도구" ja-lang="ツール" es-lang="Herramientas" >Tools</a> <ul><li><a href="../../sdk/index.html">Get the SDK</a></li></ul> </li> <li><a href="../../google/index.html">Google Services</a> </li> </ul> </li> <li class="distribute last"> <ul> <li><a href="../../distribute/index.html">Google Play</a></li> <li><a href="../../distribute/googleplay/publish/index.html">Publishing</a></li> <li><a href="../../distribute/googleplay/promote/index.html">Promoting</a></li> <li><a href="../../distribute/googleplay/quality/index.html">App Quality</a></li> <li><a href="../../distribute/googleplay/spotlight/index.html">Spotlight</a></li> <li><a href="../../distribute/open.html">Open Distribution</a></li> </ul> </li> </ul> </div> <!-- /Expanded quicknav --> </div> </div> <!-- /Header --> <div id="searchResults" class="wrap" style="display:none;"> <h2 id="searchTitle">Results</h2> <div id="leftSearchControl" class="search-control">Loading...</div> </div> <!-- Secondary x-nav --> <div id="nav-x"> <div class="wrap"> <ul class="nav-x col-9 develop" style="width:100%"> <li class="training"><a href="../../training/index.html" zh-tw-lang="訓練課程" zh-cn-lang="培训" ru-lang="Курсы" ko-lang="교육" ja-lang="トレーニング" es-lang="Capacitación" >Training</a></li> <li class="guide"><a href="../../guide/components/index.html" zh-tw-lang="API 指南" zh-cn-lang="API 指南" ru-lang="Руководства по API" ko-lang="API 가이드" ja-lang="API ガイド" es-lang="Guías de la API" >API Guides</a></li> <li class="reference"><a href="../../reference/packages.html" zh-tw-lang="參考資源" zh-cn-lang="参考" ru-lang="Справочник" ko-lang="참조문서" ja-lang="リファレンス" es-lang="Referencia" >Reference</a></li> <li class="tools"><a href="../../tools/index.html" zh-tw-lang="相關工具" zh-cn-lang="工具" ru-lang="Инструменты" ko-lang="도구" ja-lang="ツール" es-lang="Herramientas" >Tools</a></li> <li class="google"><a href="../../google/index.html" >Google Services</a> </li> </ul> </div> </div> <!-- /Sendondary x-nav --> <div class="wrap clearfix" id="body-content"> <div class="col-4" id="side-nav" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div id="devdoc-nav" class="scroll-pane"> <a class="totop" href="#top" data-g-event="left-nav-top">to top</a> <ul id="nav"> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/index.html"> Getting Started </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/firstapp/index.html" description= "After you've installed the Android SDK, start with this class to learn the basics about Android app development." >Building Your First App</a> </div> <ul> <li><a href="../../training/basics/firstapp/creating-project.html"> Creating an Android Project </a> </li> <li><a href="../../training/basics/firstapp/running-app.html"> Running Your Application </a> </li> <li><a href="../../training/basics/firstapp/building-ui.html"> Building a Simple User Interface </a> </li> <li><a href="../../training/basics/firstapp/starting-activity.html"> Starting Another Activity </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/actionbar/index.html" description= "The action bar is one of the most important design elements you can implement for your app's activities. Although first introduced with API level 11, you can use the Support Library to include the action bar on devices running Android 2.1 or higher." >Adding the Action Bar</a> </div> <ul> <li><a href="../../training/basics/actionbar/setting-up.html"> Setting Up the Action Bar </a> </li> <li><a href="../../training/basics/actionbar/adding-buttons.html"> Adding Action Buttons </a> </li> <li><a href="../../training/basics/actionbar/styling.html"> Styling the Action Bar </a> </li> <li><a href="../../training/basics/actionbar/overlaying.html"> Overlaying the Action Bar </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/supporting-devices/index.html" description= "How to build your app with alternative resources that provide an optimized user experience on multiple device form factors using a single APK." >Supporting Different Devices</a> </div> <ul> <li><a href="../../training/basics/supporting-devices/languages.html"> Supporting Different Languages </a> </li> <li><a href="../../training/basics/supporting-devices/screens.html"> Supporting Different Screens </a> </li> <li><a href="../../training/basics/supporting-devices/platforms.html"> Supporting Different Platform Versions </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/activity-lifecycle/index.html" description= "How Android activities live and die and how to create a seamless user experience by implementing lifecycle callback methods." >Managing the Activity Lifecycle</a> </div> <ul> <li><a href="../../training/basics/activity-lifecycle/starting.html"> Starting an Activity </a> </li> <li><a href="../../training/basics/activity-lifecycle/pausing.html"> Pausing and Resuming an Activity </a> </li> <li><a href="../../training/basics/activity-lifecycle/stopping.html"> Stopping and Restarting an Activity </a> </li> <li><a href="../../training/basics/activity-lifecycle/recreating.html"> Recreating an Activity </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/fragments/index.html" description= "How to build a user interface for your app that is flexible enough to present multiple UI components on large screens and a more constrained set of UI components on smaller screens&mdash;essential for building a single APK for both phones and tablets." >Building a Dynamic UI with Fragments</a> </div> <ul> <li><a href="../../training/basics/fragments/creating.html"> Creating a Fragment </a> </li> <li><a href="../../training/basics/fragments/fragment-ui.html"> Building a Flexible UI </a> </li> <li><a href="../../training/basics/fragments/communicating.html"> Communicating with Other Fragments </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"><a href="../../training/basics/data-storage/index.html" description= "How to save data on the device, whether it's temporary files, downloaded app assets, user media, structured data, or something else." >Saving Data</a> </div> <ul> <li><a href="../../training/basics/data-storage/shared-preferences.html"> Saving Key-Value Sets </a> </li> <li><a href="../../training/basics/data-storage/files.html"> Saving Files </a> </li> <li><a href="../../training/basics/data-storage/databases.html"> Saving Data in SQL Databases </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/intents/index.html" description= "How to build a user experience that leverages other apps available on the device to perform advanced user tasks, such as capture a photo or view an address on a map." >Interacting with Other Apps</a> </div> <ul> <li><a href="../../training/basics/intents/sending.html"> Sending the User to Another App </a> </li> <li><a href="../../training/basics/intents/result.html"> Getting a Result from the Activity </a> </li> <li><a href="../../training/basics/intents/filters.html"> Allowing Other Apps to Start Your Activity </a> </li> </ul> </li> </ul> </li><!-- end getting started --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/building-content-sharing.html"> <span class="small">Building Apps with</span><br/>Content Sharing </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/sharing/index.html" description= "How to take your app interaction to the next level by sharing information with other apps, receive information back, and provide a simple and scalable way to perform Share actions with user content." >Sharing Simple Data</a> </div> <ul> <li> <a href="../../training/sharing/send.html"> Sending Simple Data to Other Apps </a> </li> <li> <a href="../../training/sharing/receive.html"> Receiving Simple Data from Other Apps </a> </li> <li> <a href="../../training/sharing/shareaction.html"> Adding an Easy Share Action </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/secure-file-sharing/index.html" description= "How to provide secure access to a file associated with your app using a content URI and temporary access permissions." >Sharing Files</a> </div> <ul> <li> <a href="../../training/secure-file-sharing/setup-sharing.html"> Setting Up File Sharing </a> </li> <li> <a href="../../training/secure-file-sharing/share-file.html"> Sharing a File </a> </li> <li> <a href="../../training/secure-file-sharing/request-file.html"> Requesting a Shared File </a> </li> <li> <a href="../../training/secure-file-sharing/retrieve-info.html"> Retrieving File Information </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/beam-files/index.html" description= "How to transfer files between devices using the NFC Android Beam feature." >Sharing Files with NFC</a> </div> <ul> <li> <a href="../../training/beam-files/send-files.html" >Sending Files to Another Device</a> </li> <li><a href="../../training/beam-files/receive-files.html" >Receiving Files from Another Device</a></li> </ul> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/building-multimedia.html"> <span class="small">Building Apps with</span><br/>Multimedia </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/managing-audio/index.html" description= "How to respond to hardware audio key presses, request audio focus when playing audio, and respond appropriately to changes in audio focus." >Managing Audio Playback</a> </div> <ul> <li><a href="../../training/managing-audio/volume-playback.html"> Controlling Your App's Volume and Playback </a> </li> <li><a href="../../training/managing-audio/audio-focus.html"> Managing Audio Focus </a> </li> <li><a href="../../training/managing-audio/audio-output.html"> Dealing with Audio Output Hardware </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/camera/index.html" description= "How to leverage existing camera apps on the user's device to capture photos or control the camera hardware directly and build your own camera app." >Capturing Photos</a> </div> <ul> <li><a href="../../training/camera/photobasics.html"> Taking Photos Simply </a> </li> <li><a href="../../training/camera/videobasics.html"> Recording Videos Simply </a> </li> <li><a href="../../training/camera/cameradirect.html"> Controlling the Camera </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/printing/index.html" description= "How to print photos, HTML documents, and custom documents from your app." >Printing Content</a> </div> <ul> <li><a href="../../training/printing/photos.html"> Photos </a> </li> <li><a href="../../training/printing/html-docs.html"> HTML Documents </a> </li> <li><a href="../../training/printing/custom-docs.html"> Custom Documents </a> </li> </ul> </li> </ul> </li> <!-- End multimedia --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/building-graphics.html"> <span class="small">Building Apps with</span><br/>Graphics &amp; Animation </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/displaying-bitmaps/index.html" description= "How to load and process bitmaps while keeping your user interface responsive and avoid exceeding memory limits." >Displaying Bitmaps Efficiently</a> </div> <ul> <li><a href="../../training/displaying-bitmaps/load-bitmap.html"> Loading Large Bitmaps Efficiently </a> </li> <li><a href="../../training/displaying-bitmaps/process-bitmap.html"> Processing Bitmaps Off the UI Thread </a> </li> <li><a href="../../training/displaying-bitmaps/cache-bitmap.html"> Caching Bitmaps </a> </li> <li><a href="../../training/displaying-bitmaps/manage-memory.html"> Managing Bitmap Memory </a> </li> <li><a href="../../training/displaying-bitmaps/display-bitmap.html"> Displaying Bitmaps in Your UI </a></li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/graphics/opengl/index.html" description= "How to create OpenGL graphics within the Android app framework and respond to touch input." >Displaying Graphics with OpenGL ES</a> </div> <ul> <li><a href="../../training/graphics/opengl/environment.html"> Building an OpenGL ES Environment </a> </li> <li><a href="../../training/graphics/opengl/shapes.html"> Defining Shapes </a> </li> <li><a href="../../training/graphics/opengl/draw.html"> Drawing Shapes </a> </li> <li><a href="../../training/graphics/opengl/projection.html"> Applying Projection and Camera Views </a> </li> <li><a href="../../training/graphics/opengl/motion.html"> Adding Motion </a> </li> <li><a href="../../training/graphics/opengl/touch.html"> Responding to Touch Events </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"><a href="../../training/animation/index.html" description= "How to add transitional animations to your user interface."> Adding Animations </a></div> <ul> <li><a href="../../training/animation/crossfade.html"> Crossfading Two Views </a> </li> <li><a href="../../training/animation/screen-slide.html"> Using ViewPager for Screen Slide </a> </li> <li><a href="../../training/animation/cardflip.html"> Displaying Card Flip Animations </a> </li> <li><a href="../../training/animation/zoom.html"> Zooming a View </a> </li> <li><a href="../../training/animation/layout.html"> Animating Layout Changes </a> </li> </ul> </li> </ul> </li> <!-- End graphics and animation --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/building-connectivity.html"> <span class="small">Building Apps with</span><br/> Connectivity &amp; the Cloud </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/connect-devices-wirelessly/index.html" description= "How to find and connect to local devices using Network Service Discovery and how to create peer-to-peer connections with Wi-Fi." >Connecting Devices Wirelessly</a> </div> <ul> <li><a href="../../training/connect-devices-wirelessly/nsd.html"> Using Network Service Discovery </a> </li> <li><a href="../../training/connect-devices-wirelessly/wifi-direct.html"> Creating P2P Connections with Wi-Fi </a> </li> <li><a href="../../training/connect-devices-wirelessly/nsd-wifi-direct.html"> Using Wi-Fi P2P for Service Discovery </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/basics/network-ops/index.html" description= "How to create a network connection, monitor the connection for changes in connectivity, and perform transactions with XML data." >Performing Network Operations</a> </div> <ul> <li><a href="../../training/basics/network-ops/connecting.html"> Connecting to the Network </a> </li> <li><a href="../../training/basics/network-ops/managing.html"> Managing Network Usage </a> </li> <li><a href="../../training/basics/network-ops/xml.html"> Parsing XML Data </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/efficient-downloads/index.html" description= "How to minimize your app's impact on the battery when performing downloads and other network transactions." >Transferring Data Without Draining the Battery</a> </div> <ul> <li><a href="../../training/efficient-downloads/efficient-network-access.html"> Optimizing Downloads for Efficient Network Access </a> </li> <li><a href="../../training/efficient-downloads/regular_updates.html"> Minimizing the Effect of Regular Updates </a> </li> <li><a href="../../training/efficient-downloads/redundant_redundant.html"> Redundant Downloads are Redundant </a> </li> <li><a href="../../training/efficient-downloads/connectivity_patterns.html"> Modifying Patterns Based on the Connectivity Type </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/cloudsync/index.html" description= "How to sync and back up app and user data to remote web services in the cloud and how to restore the data back to multiple devices." >Syncing to the Cloud</a> </div> <ul> <li><a href="../../training/cloudsync/backupapi.html"> Using the Backup API </a> </li> <li><a href="../../training/cloudsync/gcm.html"> Making the Most of Google Cloud Messaging </a> </li> </ul> <li><a href="../../training/cloudsave/conflict-res.html" description= "How to design a robust conflict resolution strategy for apps that save data to the cloud." >Resolving Cloud Save Conflicts </a> </li> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/sync-adapters/index.html" description="How to transfer data between the cloud and the device using the Android sync adapter framework" >Transferring Data Using Sync Adapters</a> </div> <ul> <li> <a href="../../training/sync-adapters/creating-authenticator.html"> Creating a Stub Authenticator </a> </li> <li> <a href="../../training/sync-adapters/creating-stub-provider.html"> Creating a Stub Content Provider </a> </li> <li> <a href="../../training/sync-adapters/creating-sync-adapter.html"> Creating a Sync Adapter </a> </li> <li> <a href="../../training/sync-adapters/running-sync-adapter.html"> Running a Sync Adapter </a> </li> </ul> </li> </ul> </li> <!-- End connectivity and cloud --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/building-userinfo.html"> <span class="small">Building Apps with</span><br/> User Info &amp; Location </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/contacts-provider/index.html" description= "How to use Android's central address book, the Contacts Provider, to display contacts and their details and modify contact information."> Accessing Contacts Data</a> </div> <ul> <li> <a href="../../training/contacts-provider/retrieve-names.html"> Retrieving a List of Contacts </a> </li> <li> <a href="../../training/contacts-provider/retrieve-details.html"> Retrieving Details for a Contact </a> </li> <li> <a href="../../training/contacts-provider/modify-data.html"> Modifying Contacts Using Intents </a> </li> <li> <a href="../../training/contacts-provider/display-contact-badge.html"> Displaying the Quick Contact Badge </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/location/index.html" description="How to add location-aware features to your app by getting the user's current location."> Making Your App Location-Aware </a> </div> <ul> <li> <a href="../../training/location/retrieve-current.html"> Retrieving the Current Location </a> </li> <li> <a href="../../training/location/receive-location-updates.html"> Receiving Location Updates </a> </li> <li> <a href="../../training/location/display-address.html"> Displaying a Location Address </a> </li> <li><a href="../../training/location/geofencing.html"> Creating and Monitoring Geofences </a> </li> <li><a href="../../training/location/activity-recognition.html"> Recognizing the User's Current Activity </a> </li> <li><a href="../../training/location/location-testing.html"> Testing Using Mock Locations </a> </li> </ul> </li> </ul> </li> <!-- End privacy and location --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/best-ux.html"> <span class="small">Best Practices for</span><br/> User Experience &amp; UI </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/design-navigation/index.html" description= "How to plan your app's screen hierarchy and forms of navigation so users can effectively and intuitively traverse your app content using various navigation patterns." >Designing Effective Navigation</a> </div> <ul> <li><a href="../../training/design-navigation/screen-planning.html"> Planning Screens and Their Relationships </a> </li> <li><a href="../../training/design-navigation/multiple-sizes.html"> Planning for Multiple Touchscreen Sizes </a> </li> <li><a href="../../training/design-navigation/descendant-lateral.html"> Providing Descendant and Lateral Navigation </a> </li> <li><a href="../../training/design-navigation/ancestral-temporal.html"> Providing Ancestral and Temporal Navigation </a> </li> <li><a href="../../training/design-navigation/wireframing.html"> Putting it All Together: Wireframing the Example App </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/implementing-navigation/index.html" description= "How to implement various navigation patterns such as swipe views, a navigation drawer, and up navigation." >Implementing Effective Navigation</a> </div> <ul> <li><a href="../../training/implementing-navigation/lateral.html"> Creating Swipe Views with Tabs </a> </li> <li><a href="../../training/implementing-navigation/nav-drawer.html"> Creating a Navigation Drawer </a> </li> <li><a href="../../training/implementing-navigation/ancestral.html"> Providing Up Navigation </a> </li> <li><a href="../../training/implementing-navigation/temporal.html"> Providing Proper Back Navigation </a> </li> <li><a href="../../training/implementing-navigation/descendant.html"> Implementing Descendant Navigation </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/notify-user/index.html" description= "How to display messages called notifications outside of your application's UI." >Notifying the User</a> </div> <ul> <li> <a href="../../training/notify-user/build-notification.html"> Building a Notification </a> </li> <li> <a href="../../training/notify-user/navigation.html"> Preserving Navigation when Starting an Activity </a> </li> <li> <a href="../../training/notify-user/managing.html"> Updating Notifications </a> </li> <li> <a href="../../training/notify-user/expanded.html"> Using Big View Styles </a> </li> <li> <a href="../../training/notify-user/display-progress.html"> Displaying Progress in a Notification </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/search/index.html" description= "How to properly add a search interface to your app and create a searchable database." >Adding Search Functionality</a> </div> <ul> <li><a href="../../training/search/setup.html"> Setting up the Search Interface </a> </li> <li><a href="../../training/search/search.html"> Storing and Searching for Data </a> </li> <li><a href="../../training/search/backward-compat.html"> Remaining Backward Compatible </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="/training/multiscreen/index.html" zh-cn-lang="针对多种屏幕进行设计" ja-lang="複数画面のデザイン" es-lang="Cómo diseñar aplicaciones para varias pantallas" description= "How to build a user interface that's flexible enough to fit perfectly on any screen and how to create different interaction patterns that are optimized for different screen sizes." >Designing for Multiple Screens</a> </div> <ul> <li><a href="/training/multiscreen/screensizes.html" zh-cn-lang="支持各种屏幕尺寸" ko-lang="다양한 화면 크기 지원" ja-lang="さまざまな画面サイズのサポート" es-lang="Cómo admitir varios tamaños de pantalla" >Supporting Different Screen Sizes</a> </li> <li><a href="/training/multiscreen/screendensities.html" zh-cn-lang="支持各种屏幕密度" ja-lang="さまざまな画面密度のサポート" es-lang="Cómo admitir varias densidades de pantalla" >Supporting Different Screen Densities</a> </li> <li><a href="/training/multiscreen/adaptui.html" zh-cn-lang="实施自适应用户界面流程" ja-lang="順応性のある UI フローの実装" es-lang="Cómo implementar interfaces de usuario adaptables" >Implementing Adaptive UI Flows</a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"><a href="../../training/tv/index.html" description= "How to optimize your app's user interface and user input for the &quot;ten foot experience&quot; of a TV screen." >Designing for TV</a> </div> <ul> <li><a href="../../training/tv/optimizing-layouts-tv.html"> Optimizing Layouts for TV </a> </li> <li><a href="../../training/tv/optimizing-navigation-tv.html"> Optimizing Navigation for TV </a> </li> <li><a href="../../training/tv/unsupported-features-tv.html"> Handling Features Not Supported on TV </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/custom-views/index.html" description= "How to build custom UI widgets that are interactive and smooth." >Creating Custom Views</a> </div> <ul> <li><a href="../../training/custom-views/create-view.html"> Creating a Custom View Class </a> </li> <li><a href="../../training/custom-views/custom-drawing.html"> Implementing Custom Drawing </a> </li> <li><a href="../../training/custom-views/making-interactive.html"> Making the View Interactive </a> </li> <li><a href="../../training/custom-views/optimizing-view.html"> Optimizing the View </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/backward-compatible-ui/index.html" description= "How to use UI components and other APIs from the more recent versions of Android while remaining compatible with older versions of the platform." >Creating Backward-Compatible UIs</a> </div> <ul> <li><a href="../../training/backward-compatible-ui/abstracting.html"> Abstracting the New APIs </a> </li> <li><a href="../../training/backward-compatible-ui/new-implementation.html"> Proxying to the New APIs </a> </li> <li><a href="../../training/backward-compatible-ui/older-implementation.html"> Creating an Implementation with Older APIs </a> </li> <li><a href="../../training/backward-compatible-ui/using-component.html"> Using the Version-Aware Component </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/accessibility/index.html" description= "How to make your app accessible to users with vision impairment or other physical disabilities." >Implementing Accessibility</a> </div> <ul> <li><a href="../../training/accessibility/accessible-app.html"> Developing Accessible Applications </a> </li> <li><a href="../../training/accessibility/service.html"> Developing Accessibility Services </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/system-ui/index.html" description= "How to hide and show status and navigation bars across different versions of Android, while managing the display of other screen components." >Managing the System UI</a> </div> <ul> <li><a href="../../training/system-ui/dim.html"> Dimming the System Bars </a> </li> <li><a href="../../training/system-ui/status.html"> Hiding the Status Bar </a> </li> <li><a href="../../training/system-ui/navigation.html"> Hiding the Navigation Bar </a> </li> <li><a href="../../training/system-ui/visibility.html"> Responding to UI Visibility Changes </a> </li> </ul> </li> </ul> </li> <!-- End best UX and UI --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/best-user-input.html"> <span class="small">Best Practices for</span><br/> User Input </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/gestures/index.html" description= "How to write apps that allow users to interact with the touch screen via touch gestures." >Using Touch Gestures</a> </div> <ul> <li><a href="../../training/gestures/detector.html"> Detecting Common Gestures </a> </li> <li><a href="../../training/gestures/movement.html"> Tracking Movement </a> </li> <li><a href="../../training/gestures/scroll.html"> Animating a Scroll Gesture </a> </li> <li><a href="../../training/gestures/multi.html"> Handling Multi-Touch Gestures </a> </li> <li><a href="../../training/gestures/scale.html"> Dragging and Scaling </a> </li> <li><a href="../../training/gestures/viewgroup.html"> Managing Touch Events in a ViewGroup </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/keyboard-input/index.html" description= "How to specify the appearance and behaviors of soft input methods (such as on-screen keyboards) and how to optimize the experience with hardware keyboards." >Handling Keyboard Input</a> </div> <ul> <li><a href="../../training/keyboard-input/style.html"> Specifying the Input Method Type </a> </li> <li><a href="../../training/keyboard-input/visibility.html"> Handling Input Method Visibility </a> </li> <li><a href="../../training/keyboard-input/navigation.html"> Supporting Keyboard Navigation </a> </li> <li><a href="../../training/keyboard-input/commands.html"> Handling Keyboard Actions </a> </li> </ul> </li> </ul> </li> <!-- end of User Input --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/best-background.html"> <span class="small">Best Practices for</span><br/> Background Jobs </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/run-background-service/index.html" description= "How to improve UI performance and responsiveness by sending work to a Service running in the background" >Running in a Background Service</a> </div> <ul> <li><a href="../../training/run-background-service/create-service.html"> Creating a Background Service </a> </li> <li><a href="../../training/run-background-service/send-request.html"> Sending Work Requests to the Background Service </a> </li> <li><a href="../../training/run-background-service/report-status.html"> Reporting Work Status </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/load-data-background/index.html" description="How to use CursorLoader to query data without affecting UI responsiveness." >Loading Data in the Background</a> </div> <ul> <li><a href="../../training/load-data-background/setup-loader.html"> Running a Query with a CursorLoader</a> </li> <li><a href="../../training/load-data-background/handle-results.html"> Handling the Results</a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/scheduling/index.html" description="How to use repeating alarms and wake locks to run background jobs." >Managing Device Awake State</a> </div> <ul> <li><a href="../../training/scheduling/wakelock.html"> Keeping the Device Awake</a> </li> <li><a href="../../training/scheduling/alarms.html"> Scheduling Repeating Alarms</a> </li> </ul> </li> </ul> </li> <!-- end of Background Jobs --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/best-performance.html"> <span class="small">Best Practices for</span><br/> Performance </a> </div> <ul> <li> <a href="../../training/articles/memory.html" description= "How to keep your app's memory footprint small in order to improve performance on a variety of mobile devices." >Managing Your App's Memory</a> </li> <li> <a href="../../training/articles/perf-tips.html" description= "How to optimize your app's performance in various ways to improve its responsiveness and battery efficiency." >Performance Tips</a> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/improving-layouts/index.html" description= "How to identify problems in your app's layout performance and improve the UI responsiveness." >Improving Layout Performance</a> </div> <ul> <li><a href="../../training/improving-layouts/optimizing-layout.html"> Optimizing Layout Hierarchies </a> </li> <li><a href="../../training/improving-layouts/reusing-layouts.html"> Re-using Layouts with &lt;include/&gt; </a> </li> <li><a href="../../training/improving-layouts/loading-ondemand.html"> Loading Views On Demand </a> </li> <li><a href="../../training/improving-layouts/smooth-scrolling.html"> Making ListView Scrolling Smooth </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="/training/monitoring-device-state/index.html" zh-cn-lang="优化电池使用时间" ja-lang="電池消費量の最適化" es-lang="Cómo optimizar la duración de la batería" description= "How to minimize the amount of power your app requires by adapting to current power conditions and performing power-hungry tasks at proper intervals." >Optimizing Battery Life</a> </div> <ul> <li><a href="/training/monitoring-device-state/battery-monitoring.html" zh-cn-lang="监控电池电量和充电状态" ja-lang="電池残量と充電状態の監視" es-lang="Cómo controlar el nivel de batería y el estado de carga" >Monitoring the Battery Level and Charging State</a> </li> <li><a href="/training/monitoring-device-state/docking-monitoring.html" zh-cn-lang="确定和监控基座对接状态和类型" ja-lang="ホルダーの装着状態とタイプの特定と監視" es-lang="Cómo determinar y controlar el tipo de conector y el estado de la conexión" >Determining and Monitoring the Docking State and Type</a> </li> <li><a href="/training/monitoring-device-state/connectivity-monitoring.html" zh-cn-lang="确定和监控网络连接状态" ja-lang="接続状態の特定と監視" es-lang="Cómo determinar y controlar el estado de la conectividad" >Determining and Monitoring the Connectivity Status</a> </li> <li><a href="/training/monitoring-device-state/manifest-receivers.html" zh-cn-lang="根据需要操作广播接收器" ja-lang="オンデマンドでのブロードキャスト レシーバ操作" es-lang="Cómo manipular los receptores de emisión bajo demanda" >Manipulating Broadcast Receivers On Demand</a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/multiple-threads/index.html" description= "How to improve the performance and scalability of long-running operations by dispatching work to multiple threads."> Sending Operations to Multiple Threads</a> </div> <ul> <li><a href="../../training/multiple-threads/define-runnable.html"> Specifying the Code to Run on a Thread </a> </li> <li><a href="../../training/multiple-threads/create-threadpool.html"> Creating a Manager for Multiple Threads </a> </li> <li><a href="../../training/multiple-threads/run-code.html"> Running Code on a Thread Pool Thread </a> </li> <li><a href="../../training/multiple-threads/communicate-ui.html"> Communicating with the UI Thread </a> </li> </ul> </li> <li> <a href="../../training/articles/perf-anr.html" description= "How to keep your app responsive to user interaction so the UI does not lock-up and display an &quot;Application Not Responding&quot; dialog." >Keeping Your App Responsive</a> </li> <li> <a href="../../training/articles/perf-jni.html" description= "How to efficiently use the Java Native Interface with the Android NDK." >JNI Tips</a> </li> <li> <a href="../../training/articles/smp.html" description= "Tips for coding Android apps on symmetric multiprocessor systems." >SMP Primer for Android</a> </li> </ul> </li> <!-- end of Performance --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/best-security.html"> <span class="small">Best Practices for</span><br/> Security &amp; Privacy </a> </div> <ul> <li> <a href="../../training/articles/security-tips.html" description= "How to perform various tasks and keep your app's data and your user's data secure." >Security Tips</a> </li> <li> <a href="../../training/articles/security-ssl.html" description= "How to ensure that your app is secure when performing network transactions." >Security with HTTPS and SSL</a> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/enterprise/index.html" description= "How to implement device management policies for enterprise-oriented apps." >Developing for Enterprise</a> </div> <ul> <li><a href="../../training/enterprise/device-management-policy.html"> Enhancing Security with Device Management Policies </a> </li> </ul> </li> </ul> </li> <!-- End security and user info --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/testing.html"> <span class="small">Best Practices for</span><br/> Testing </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"><a href="../../training/activity-testing/index.html" description="How to test Activities in your Android applications."> Testing Your Activity </a></div> <ul> <li><a href="../../training/activity-testing/preparing-activity-testing.html"> <span class="en">Setting Up Your Test Environment</span> </a> </li> <li><a href="../../training/activity-testing/activity-basic-testing.html"> <span class="en">Creating and Running a Test Case</span> </a> </li> <li><a href="../../training/activity-testing/activity-ui-testing.html"> <span class="en">Testing UI Components</span> </a> </li> <li><a href="../../training/activity-testing/activity-unit-testing.html"> <span class="en">Creating Unit Tests</span> </a> </li> <li><a href="../../training/activity-testing/activity-functional-testing.html"> <span class="en">Creating Functional Tests</span> </a> </li> </ul> </li> </ul> </li> <!-- End best Testing --> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/distribute.html"> <span class="small">Using Google Play to</span><br/> Distribute &amp; Monetize </a> </div> <ul> <li class="nav-section"> <div class="nav-section-header"><a href="../../training/in-app-billing/index.html" description="How to sell in-app products from your application using In-app Billing."> Selling In-app Products </a></div> <ul> <li><a href="../../training/in-app-billing/preparing-iab-app.html"> <span class="en">Preparing Your App</span> </a> </li> <li><a href="../../training/in-app-billing/list-iab-products.html"> <span class="en">Establishing Products for Sale</span> </a> </li> <li><a href="../../training/in-app-billing/purchase-iab-products.html"> <span class="en">Purchasing Products</span> </a> </li> <li><a href="../../training/in-app-billing/test-iab-app.html"> <span class="en">Testing Your App</span> </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/multiple-apks/index.html" description= "How to publish your app on Google Play with separate APKs that target different devices, while using a single app listing." >Maintaining Multiple APKs</a> </div> <ul> <li><a href="../../training/multiple-apks/api.html"> Creating Multiple APKs for Different API Levels </a> </li> <li><a href="../../training/multiple-apks/screensize.html"> Creating Multiple APKs for Different Screen Sizes </a> </li> <li><a href="../../training/multiple-apks/texture.html"> Creating Multiple APKs for Different GL Textures </a> </li> <li><a href="../../training/multiple-apks/multiple.html"> Creating Multiple APKs with 2+ Dimensions </a> </li> </ul> </li> <li class="nav-section"> <div class="nav-section-header"> <a href="../../training/monetization/index.html" description= "How to implement monetization strategies for your app without compromising the user experience." >Monetizing Your App</a> </div> <ul> <li><a href="../../training/monetization/ads-and-ux.html"> Advertising without Compromising User Experience </a> </li> </ul> </li> </ul> </li> <!-- End best Publishing --> </ul><!-- nav --> <script type="text/javascript"> <!-- buildToggleLists(); changeNavLang(getLangPref()); //--> </script> </div> </div> <!-- end side-nav --> <script> $(document).ready(function() { scrollIntoView("devdoc-nav"); }); </script> <div class="col-12" id="doc-col" > <div class="layout-content-row content-header "> <div class="layout-content-col span-7"> <h1 itemprop="name">Using the Version-Aware Component</h1> </div> <div class="training-nav-top layout-content-col span-5" itemscope itemtype="http://schema.org/SiteNavigationElement"> <a href="#" class="prev-page-link hide" zh-tw-lang="上一堂課" zh-cn-lang="上一课" ru-lang="Предыдущий" ko-lang="이전" ja-lang="前へ" es-lang="Anterior" >Previous</a> <a href="#" class="next-page-link hide" zh-tw-lang="下一堂課" zh-cn-lang="下一课" ru-lang="Следующий" ko-lang="다음" ja-lang="次へ" es-lang="Siguiente" >Next</a> <a href="#" class="start-class-link hide" zh-tw-lang="開始上課" zh-cn-lang="开始" ru-lang="Начало работы" ko-lang="시작하기" ja-lang="開始する" es-lang="Empezar" >Get started</a> </div> </div> <div id="jd-content"> <div class="jd-descr" itemprop="articleBody"> <div id="tb-wrapper"> <div id="tb"> <h2>This lesson teaches you to:</h2> <ol> <li><a href="#switching-logic">Add the Switching Logic</a></li> <li><a href="#layout">Create a Version-Aware Activity Layout</a></li> <li><a href="#use-tabhelper">Use TabHelper in Your Activity</a></li> </ol> <h2>Try it out</h2> <div class="download-box"> <a href="http://developer.android.com/shareables/training/TabCompat.zip" class="button">Download the sample app</a> <p class="filename">TabCompat.zip</p> </div> </div> </div> <p>Now that you have two implementations of <code>TabHelper</code> and <code>CompatTab</code>&mdash;one for Android 3.0 and later and one for earlier versions of the platform&mdash;it's time to do something with these implementations. This lesson discusses creating the logic for switching between these implementations, creating version-aware layouts, and finally using the backward-compatible UI component.</p> <h2 id="switching-logic">Add the Switching Logic</h2> <p>The <code>TabHelper</code> abstract class acts as a <a href="http://en.wikipedia.org/wiki/Factory_(software_concept)">factory</a> for creating version-appropriate <code>TabHelper</code> and <code>CompatTab</code> instances, based on the current device's platform version:</p> <pre> public abstract class TabHelper { ... // Usage is TabHelper.createInstance(activity) public static TabHelper createInstance(FragmentActivity activity) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { return new TabHelperHoneycomb(activity); } else { return new TabHelperEclair(activity); } } // Usage is mTabHelper.newTab("tag") public CompatTab newTab(String tag) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) { return new CompatTabHoneycomb(mActivity, tag); } else { return new CompatTabEclair(mActivity, tag); } } ... } </pre> <h2 id="layout">Create a Version-Aware Activity Layout</h2> <p>The next step is to provide layouts for your activity that can support the two tab implementations. For the older implementation (<code>TabHelperEclair</code>), you need to ensure that your activity layout contains a <code><a href="../../reference/android/widget/TabWidget.html">TabWidget</a></code> and <code><a href="../../reference/android/widget/TabHost.html">TabHost</a></code>, along with a container for tab contents:</p> <p><strong>res/layout/main.xml:</strong></p> <pre> &lt;!-- This layout is for API level 5-10 only. --&gt; &lt;TabHost xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost" android:layout_width="match_parent" android:layout_height="match_parent"&gt; &lt;LinearLayout android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="5dp"&gt; &lt;TabWidget android:id="@android:id/tabs" android:layout_width="match_parent" android:layout_height="wrap_content" /&gt; &lt;FrameLayout android:id="@android:id/tabcontent" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /&gt; &lt;/LinearLayout&gt; &lt;/TabHost&gt; </pre> <p>For the <code>TabHelperHoneycomb</code> implementation, all you need is a <code><a href="../../reference/android/widget/FrameLayout.html">FrameLayout</a></code> to contain the tab contents, since the tab indicators are provided by the <code><a href="../../reference/android/app/ActionBar.html">ActionBar</a></code>:</p> <p><strong>res/layout-v11/main.xml:</strong></p> <pre> &lt;FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabcontent" android:layout_width="match_parent" android:layout_height="match_parent" /&gt; </pre> <p>At runtime, Android will decide which version of the <code>main.xml</code> layout to inflate depending on the platform version. This is the same logic shown in the previous section to determine which <code>TabHelper</code> implementation to use.</p> <h2 id="use-tabhelper">Use TabHelper in Your Activity</h2> <p>In your activity's <code><a href="../../reference/android/app/Activity.html#onCreate(android.os.Bundle)">onCreate()</a></code> method, you can obtain a <code>TabHelper</code> object and add tabs with the following code:</p> <pre> @Override public void onCreate(Bundle savedInstanceState) { setContentView(R.layout.main); TabHelper tabHelper = TabHelper.createInstance(this); tabHelper.setUp(); CompatTab photosTab = tabHelper .newTab("photos") .setText(R.string.tab_photos); tabHelper.addTab(photosTab); CompatTab videosTab = tabHelper .newTab("videos") .setText(R.string.tab_videos); tabHelper.addTab(videosTab); } </pre> <p>When running the application, this code inflates the correct activity layout and instantiates either a <code>TabHelperHoneycomb</code> or <code>TabHelperEclair</code> object. The concrete class that's actually used is opaque to the activity, since they share the common <code>TabHelper</code> interface.</p> <p>Below are two screenshots of this implementation running on an Android 2.3 and Android 4.0 device.</p> <img src="../../images/training/backward-compatible-ui-gb.png" alt="Example screenshot of tabs running on an Android 2.3 device (using TabHelperEclair)." width="200"> <img src="../../images/training/backward-compatible-ui-ics.png" alt="Example screenshots of tabs running on an Android 4.0 device (using TabHelperHoneycomb)." width="200"> <p class="img-caption"><strong>Figure 1.</strong> Example screenshots of backward-compatible tabs running on an Android 2.3 device (using <code>TabHelperEclair</code>) and an Android 4.0 device (using <code>TabHelperHoneycomb</code>).</p> </div> <div class="content-footer layout-content-row" itemscope itemtype="http://schema.org/SiteNavigationElement"> <div class="layout-content-col col-8" style="padding-top:4px"> <div class="g-plusone" data-size="medium"></div> </div> <div class="paging-links layout-content-col col-4"> <a href="#" class="prev-page-link hide" zh-tw-lang="上一堂課" zh-cn-lang="上一课" ru-lang="Предыдущий" ko-lang="이전" ja-lang="前へ" es-lang="Anterior" >Previous</a> <a href="#" class="next-page-link hide" zh-tw-lang="下一堂課" zh-cn-lang="下一课" ru-lang="Следующий" ko-lang="다음" ja-lang="次へ" es-lang="Siguiente" >Next</a> </div> </div> <div class="layout-content-row content-footer next-class" style="display:none" itemscope itemtype="http://schema.org/SiteNavigationElement"> <a href="#" class="next-class-link hide">Next class: </a> </div> </div> <!-- end jd-content --> <div id="footer" class="wrap" > <div id="copyright"> Except as noted, this content is licensed under <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>. For details and restrictions, see the <a href="../../license.html">Content License</a>. </div> <div id="footerlinks"> <p> <a href="../../about/index.html">About Android</a>&nbsp;&nbsp;|&nbsp; <a href="../../legal.html">Legal</a>&nbsp;&nbsp;|&nbsp; <a href="../../support.html">Support</a> </p> </div> </div> <!-- end footer --> </div><!-- end doc-content --> </div> <!-- end body-content --> </body> </html>
ctf/templates/base.html
DeltaHeavy/wrath-ctf-framework
<!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>{{name}}</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <link rel="stylesheet" href="{{ url_for('static', filename='css/main.css') }}"> <link rel="stylesheet" href="{{ url_for('static', filename='css/dark.min.css') }}"> {% block head %}{% endblock %} </head> <body> <nav class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="{{ url_for('frontend.home_page') }}">{{name}}</a> </div> <div id="navbar" class="navbar-collapse collapse"> <ul class="nav navbar-nav"> {% if authed -%} <li><a href="{{ url_for('frontend.challenge_page') }}">Challenges</a></li> {% endif -%} </ul> <ul class="nav navbar-nav navbar-right"> {% if authed -%} <li><a href="{{ url_for('frontend.join_team') }}">Team</a></li> <li><a rel="nofollow" href="{{ url_for('frontend.logout', token=csrf_token()) }}">Logout</a></li> {% else -%} <li><a href="{{ url_for('frontend.login') }}">Login</a></li> <li><a href="{{ url_for('frontend.create_user') }}">Register</a></li> {% endif -%} </ul> </div> </div> </nav> <div class="container"> {%- with messages = get_flashed_messages(with_categories=True) %} {%- if messages %} {%- for category, message in messages %} <div class="alert alert-{{ category }}" role="alert">{{ message }}</div> {%- endfor %} {%- endif %} {%- endwith %} {%- block body %}{% endblock %} </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script> <script src="{{ url_for('static', filename='js/main.js') }}"></script> </body> </html>
app/views/versions/alpha/alpha-10/app/contact-lower.html
dwpdigitaltech/digital-debt
{% set page = { title: 'index', dev: true, secondary: true, html_classes: ['page-class'] } %} {% extends page.layout | d(prototype.current.layout) %} {% block primary %} <a href="javascript:history.back()" class="link-back">Back</a> <h1 class="heading-xlarge">How do you want to be contacted?</h1> <p>Select how you want to get updates about your request</p> <form> <div class="form-group"> <fieldset> <legend class="visuallyhidden">How do you want to be contacted?</legend> <label class="block-label" data-target="contact-by-text" for="example-contact-by-text"> <input id="example-contact-by-text" type="checkbox" name="checkbox-contact-group" value="No"> Text message </label> <div class="panel panel-border-narrow js-hidden" id="contact-by-text"> <label class="form-label" for="contact-text-message">Mobile phone number</label> <input class="form-control" name="contact-text-message" type="text" id="contact-text-message"> </div> <label class="block-label" data-target="contact-by-email" for="example-contact-by-email"> <input id="example-contact-by-email" type="checkbox" name="checkbox-contact-group" value="Yes"> Email </label> <div class="panel panel-border-narrow js-hidden" id="contact-by-email"> <label class="form-label" for="contact-email">Email address</label> <input class="form-control" name="contact-email" type="text" id="contact-email"> </div> <label class="block-label" data-target="contact-by-phone" for="example-contact-by-phone"> <input id="example-contact-by-phone" type="checkbox" name="checkbox-contact-group" value="No"> Phone call </label> <div class="panel panel-border-narrow js-hidden" id="contact-by-phone"> <label class="form-label" for="contact-phone">Phone number</label> <input class="form-control" name="contact-phone" type="text" id="contact-phone"> </div> </fieldset> </div> </form> <!--<fieldset> <legend class="visuallyhidden">These details will only be used if we need more information.</legend> <div class="form-group"> <label class="form-label" for="mobile">Preferred telephone number</label> <input class="form-control" name="mobile" type="text" id="mobile"> <p></p> <label class="form-label" for="email-address">Email address</label> <input class="form-control" name="email-address" type="text" id="email-address"> </div> </fieldset>--> <!--<fieldset class="primary-nav form-group"> <legend class="visuallyhidden">Form Navigation</legend> <input type="submit" value="Send request" class="button" id="submitButton" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"> </fieldset>--> <a class="button" href="reduce_finish">Send request</a> {% endblock %} {% block secondary %} <!-- 1 Third Column --> {% endblock %}
angular-1.4.0-beta.2/docs/examples/example-ngChange-directive/index-production.html
dolymood/angular-packages
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-ngChange-directive-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.0-beta.1/angular.min.js"></script> </head> <body ng-app="changeExample"> <script> angular.module('changeExample', []) .controller('ExampleController', ['$scope', function($scope) { $scope.counter = 0; $scope.change = function() { $scope.counter++; }; }]); </script> <div ng-controller="ExampleController"> <input type="checkbox" ng-model="confirmed" ng-change="change()" id="ng-change-example1" /> <input type="checkbox" ng-model="confirmed" id="ng-change-example2" /> <label for="ng-change-example2">Confirmed</label><br /> <tt>debug = {{confirmed}}</tt><br/> <tt>counter = {{counter}}</tt><br/> </div> </body> </html>
public/modules/users/views/edit-user.client.view.html
Gladg/MeanStackLearning
<section data-ng-controller="UsersController" data-ng-init="findOne()"> <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-lg-12"> <h2>Update User</h2> <ol class="breadcrumb"> <li> <a href="#!/">Home</a> </li> <li> <a href="#!/users">Users</a> </li> <li class="active"> <strong>Update User</strong> </li> </ol> </div> </div> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="row"> <form> <fieldset> <div class="row"> <div class="col-md-3 form-group"> <label class="control-label" for="firstName">First Name</label> <input type="Text" ng-model="user.firstName" id="firstName" class="form-control" placeholder="" required /> </div> <div class="col-md-3 form-group"> <label class="control-label" for="lastName">Last Name</label> <input type="Text" ng-model="user.lastName" id="lastName" class="form-control" placeholder="" required /> </div> <div class="col-md-3 form-group"> <label class="control-label" for="username">User Name</label> <input type="Text" ng-model="user.username" id="username" class="form-control" placeholder="" required /> </div> <div class="col-md-3 form-group"> <label class="control-label" for="email">Email</label> <input type="Email" ng-model="user.email" id="email" class="form-control" placeholder="" required /> </div> <div class="col-md-3 form-group"> <label class="control-label" for="password">Password</label> <input type="Password" ng-model="user.password" id="password" class="form-control" placeholder="" required /> </div> <div class="col-md-3 form-group"> <label class="control-label" for="roles">Roles</label> <select multiple id="roles" class="form-control" size="3" ng-model="user.roles" ng-required="true"> <option value="admin">Admin</option> <option value="user">User</option> </select> </div> </div> <div class="row"> <div data-ng-show="error" class="text-danger"> <strong data-ng-bind="error"></strong> </div> <div class="col-md-2 form-group"> <button ng-click="update()" class="btn btn-primary" >Save</button> </div> </div> </fieldset> </form> </div> </div> </div> </section>
modules/automata/client/cssbckp/edgeModal.css
tmullen71/automata
input.edgeLabelSymbolInput{ font-family: 'Francois One', sans-serif; text-transform: uppercase; text-align: center; margin: auto; padding: 0; width: 30px; } table.edgeLabels{ margin: auto; } table.edgeLabels > tbody > tr > td{ padding: 0 15px 0 15px; }
Specification/API_Reference/iOS_SDK/d7/d05/category_d_connect_array_07_d_connect_array_creation_08.html
TakayukiHoshi1984/DeviceConnect-Docs
<!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>Device Connect SDK for iOS: DConnectArray(DConnectArrayCreation) カテゴリ</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">Device Connect SDK for iOS &#160;<span id="projectnumber">1.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- 構築: Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "../../search",false,'検索'); </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','検索'); $(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><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-static-methods">クラスメソッド</a> &#124; <a href="../../de/dea/category_d_connect_array_07_d_connect_array_creation_08-members.html">全メンバ一覧</a> </div> <div class="headertitle"> <div class="title">DConnectArray(DConnectArrayCreation) カテゴリ</div> </div> </div><!--header--> <div class="contents"> <p>DConnectArrayを作成するためのクラス。 <a href="../../d7/d05/category_d_connect_array_07_d_connect_array_creation_08.html#details">[詳解]</a></p> <p><code>#import &lt;<a class="el" href="../../db/d77/_d_connect_message_8h_source.html">DConnectMessage.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a> クラスメソッド</h2></td></tr> <tr class="memitem:ad31a7a6ac9c2bfa456619255a2f39a59"><td class="memItemLeft" align="right" valign="top">(instancetype)&#160;</td><td class="memItemRight" valign="bottom">+ <a class="el" href="../../d7/d05/category_d_connect_array_07_d_connect_array_creation_08.html#ad31a7a6ac9c2bfa456619255a2f39a59">array</a></td></tr> <tr class="memdesc:ad31a7a6ac9c2bfa456619255a2f39a59"><td class="mdescLeft">&#160;</td><td class="mdescRight">DConnectArrayのインスタンスを作成する。 <a href="#ad31a7a6ac9c2bfa456619255a2f39a59">[詳解]</a><br /></td></tr> <tr class="separator:ad31a7a6ac9c2bfa456619255a2f39a59"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">詳解</h2> <div class="textblock"><p>DConnectArrayを作成するためのクラス。 </p> </div><h2 class="groupheader">メソッド詳解</h2> <a id="ad31a7a6ac9c2bfa456619255a2f39a59"></a> <h2 class="memtitle"><span class="permalink"><a href="#ad31a7a6ac9c2bfa456619255a2f39a59">&#9670;&nbsp;</a></span>array()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">+ (instancetype) array </td> <td></td> <td class="paramname"></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>DConnectArrayのインスタンスを作成する。 </p> <dl class="section return"><dt>戻り値</dt><dd>DConnectArrayのインスタンス </dd></dl> <p><a class="el" href="../../d2/df4/interface_d_connect_array.html#ad31a7a6ac9c2bfa456619255a2f39a59">DConnectArray</a> を拡張しています。</p> </div> </div> <hr/>このカテゴリ詳解は次のファイルから抽出されました:<ul> <li>DConnectSDK/DConnectSDK/<a class="el" href="../../db/d77/_d_connect_message_8h_source.html">DConnectMessage.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> 2020年07月06日(月) 12時59分49秒作成 - Device Connect SDK for iOS / 構成: &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="../../doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> </html>
code/languages/com.mbeddr.mpsutil/solutions/com.mbeddr.mpsutil.lib/lib/commons-primitives-1.0/docs/apidocs/org/apache/commons/collections/primitives/LongIterator.html
janosch715/mbeddr.core
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_01) on Wed Nov 05 17:27:23 CST 2003 --> <TITLE> LongIterator (Commons Primitives 1.0 API) </TITLE> <META NAME="keywords" CONTENT="org.apache.commons.collections.primitives.LongIterator interface"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="LongIterator (Commons Primitives 1.0 API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/LongIterator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&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/collections/primitives/LongCollection.html" title="interface in org.apache.commons.collections.primitives"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/commons/collections/primitives/LongList.html" title="interface in org.apache.commons.collections.primitives"><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="LongIterator.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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.commons.collections.primitives</FONT> <BR> Interface LongIterator</H2> <DL> <DT><B>All Known Subinterfaces:</B> <DD><A HREF="../../../../../org/apache/commons/collections/primitives/LongListIterator.html" title="interface in org.apache.commons.collections.primitives">LongListIterator</A></DD> </DL> <DL> <DT><B>All Known Implementing Classes:</B> <DD><A HREF="../../../../../org/apache/commons/collections/primitives/adapters/IteratorLongIterator.html" title="class in org.apache.commons.collections.primitives.adapters">IteratorLongIterator</A>, <A HREF="../../../../../org/apache/commons/collections/primitives/adapters/ListIteratorLongListIterator.html" title="class in org.apache.commons.collections.primitives.adapters">ListIteratorLongListIterator</A>, org.apache.commons.collections.primitives.decorators.ProxyLongIterator, org.apache.commons.collections.primitives.decorators.ProxyLongListIterator, <A HREF="../../../../../org/apache/commons/collections/primitives/RandomAccessLongList.RandomAccessLongListIterator.html" title="class in org.apache.commons.collections.primitives">RandomAccessLongList.RandomAccessLongListIterator</A></DD> </DL> <HR> <DL> <DT>public interface <B>LongIterator</B></DL> <P> An iterator over <code>long</code> values. <P> <P> <DL> <DT><B>Since:</B></DT> <DD>Commons Primitives 1.0</DD> <DT><B>Version:</B></DT> <DD>$Revision: 1.3 $ $Date: 2003/10/16 20:49:36 $</DD> <DT><B>Author:</B></DT> <DD>Rodney Waldhoff</DD> <DT><B>See Also:</B><DD><A HREF="../../../../../org/apache/commons/collections/primitives/adapters/LongIteratorIterator.html" title="class in org.apache.commons.collections.primitives.adapters"><CODE>LongIteratorIterator</CODE></A>, <A HREF="../../../../../org/apache/commons/collections/primitives/adapters/IteratorLongIterator.html" title="class in org.apache.commons.collections.primitives.adapters"><CODE>IteratorLongIterator</CODE></A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <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>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#hasNext()">hasNext</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns <code>true</code> iff I have more elements.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;long</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()">next</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the next element in me.</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/collections/primitives/LongIterator.html#remove()">remove</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Removes from my underlying collection the last element <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()"><CODE>returned</CODE></A> by me (optional operation).</TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="hasNext()"><!-- --></A><H3> hasNext</H3> <PRE> public boolean <B>hasNext</B>()</PRE> <DL> <DD>Returns <code>true</code> iff I have more elements. (In other words, returns <code>true</code> iff a subsequent call to <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()"><CODE>next</CODE></A> will return an element rather than throwing an exception.) <P> <DD><DL> <DT><B>Returns:</B><DD><code>true</code> iff I have more elements</DL> </DD> </DL> <HR> <A NAME="next()"><!-- --></A><H3> next</H3> <PRE> public long <B>next</B>()</PRE> <DL> <DD>Returns the next element in me. <P> <DD><DL> <DT><B>Returns:</B><DD>the next element in me <DT><B>Throws:</B> <DD><CODE>NoSuchElementException</CODE> - if there is no next element</DL> </DD> </DL> <HR> <A NAME="remove()"><!-- --></A><H3> remove</H3> <PRE> public void <B>remove</B>()</PRE> <DL> <DD>Removes from my underlying collection the last element <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()"><CODE>returned</CODE></A> by me (optional operation). <P> <DD><DL> <DT><B>Throws:</B> <DD><CODE><A HREF="http://java.sun.com/products/jdk/1.4/docs/api/java/lang/UnsupportedOperationException.html" title="class or interface in java.lang">UnsupportedOperationException</A></CODE> - if this operation is not supported <DD><CODE><A HREF="http://java.sun.com/products/jdk/1.4/docs/api/java/lang/IllegalStateException.html" title="class or interface in java.lang">IllegalStateException</A></CODE> - if <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()"><CODE>next()</CODE></A> has not yet been called, or <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#remove()"><CODE>remove()</CODE></A> has already been called since the last call to <A HREF="../../../../../org/apache/commons/collections/primitives/LongIterator.html#next()"><CODE>next()</CODE></A>.</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/LongIterator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&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/collections/primitives/LongCollection.html" title="interface in org.apache.commons.collections.primitives"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/commons/collections/primitives/LongList.html" title="interface in org.apache.commons.collections.primitives"><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="LongIterator.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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2002-2003 Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
build/doc/pixy/io/RandomAccessOutputStream.html
dragon66/pixymeta-android
<!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 --> <title>RandomAccessOutputStream</title> <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="RandomAccessOutputStream"; } } catch(err) { } //--> var methods = {"i0":10,"i1":6,"i2":10,"i3":10,"i4":10,"i5":6,"i6":6,"i7":6,"i8":6,"i9":6,"i10":10,"i11":6,"i12":6,"i13":6,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":6,"i26":10,"i27":10,"i28":10}; var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract 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="../../pixy/io/RandomAccessInputStream.html" title="class in pixy.io"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../pixy/io/ReadStrategy.html" title="interface in pixy.io"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../index.html?pixy/io/RandomAccessOutputStream.html" target="_top">Frames</a></li> <li><a href="RandomAccessOutputStream.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="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&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">pixy.io</div> <h2 title="Class RandomAccessOutputStream" class="title">Class RandomAccessOutputStream</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.io.OutputStream</li> <li> <ul class="inheritance"> <li>pixy.io.RandomAccessOutputStream</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Closeable, java.io.DataOutput, java.io.Flushable, java.lang.AutoCloseable</dd> </dl> <dl> <dt>Direct Known Subclasses:</dt> <dd><a href="../../pixy/io/FileCacheRandomAccessOutputStream.html" title="class in pixy.io">FileCacheRandomAccessOutputStream</a>, <a href="../../pixy/io/MemoryCacheRandomAccessOutputStream.html" title="class in pixy.io">MemoryCacheRandomAccessOutputStream</a></dd> </dl> <hr> <br> <pre>public abstract class <span class="typeNameLabel">RandomAccessOutputStream</span> extends java.io.OutputStream implements java.io.DataOutput</pre> <div class="block">Based on javax.imageio.stream.MemoryCache.java. * <p> To make it flexible, this class and any of its sub-class doesn't close the underlying stream. It's up to the underlying stream creator to close them. This ensures the actual stream out-lives the random stream itself in case we need to write more content to the underlying stream.</div> <dl> <dt><span class="simpleTagLabel">Version:</span></dt> <dd>1.0 01/29/2013</dd> <dt><span class="simpleTagLabel">Author:</span></dt> <dd>Wen Yu, yuwen_66@yahoo.com</dd> </dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> <caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>protected boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#closed">closed</a></span></code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected java.io.OutputStream</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#dist">dist</a></span></code> <div class="block">The destination stream.</div> </td> </tr> </table> </li> </ul> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier</th> <th class="colLast" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>protected </code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#RandomAccessOutputStream-java.io.OutputStream-">RandomAccessOutputStream</a></span>(java.io.OutputStream&nbsp;dist)</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="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract 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>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#close--">close</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#disposeBefore-long-">disposeBefore</a></span>(long&nbsp;pos)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#ensureOpen--">ensureOpen</a></span>()</code> <div class="block">Check to make sure that this stream has not been closed</div> </td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#finalize--">finalize</a></span>()</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>short</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#getEndian--">getEndian</a></span>()</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>abstract long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#getFlushPos--">getFlushPos</a></span>()</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>abstract long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#getLength--">getLength</a></span>()</code> <div class="block">Returns the total length of data that has been cached, regardless of whether any early blocks have been disposed.</div> </td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>abstract long</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#getStreamPointer--">getStreamPointer</a></span>()</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#reset--">reset</a></span>()</code> <div class="block">Reset this stream to be used again</div> </td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#seek-long-">seek</a></span>(long&nbsp;pos)</code>&nbsp;</td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#setWriteStrategy-pixy.io.WriteStrategy-">setWriteStrategy</a></span>(<a href="../../pixy/io/WriteStrategy.html" title="interface in pixy.io">WriteStrategy</a>&nbsp;strategy)</code>&nbsp;</td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#shallowClose--">shallowClose</a></span>()</code> <div class="block">Closes the RandomAccessInputStream and it's underlying stream</div> </td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#write-byte:A-int-int-">write</a></span>(byte[]&nbsp;b, int&nbsp;off, int&nbsp;len)</code>&nbsp;</td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#write-int-">write</a></span>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i14" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeBoolean-boolean-">writeBoolean</a></span>(boolean&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i15" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeByte-int-">writeByte</a></span>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i16" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeBytes-java.lang.String-">writeBytes</a></span>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i17" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeChar-int-">writeChar</a></span>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i18" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeChars-java.lang.String-">writeChars</a></span>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i19" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeDouble-double-">writeDouble</a></span>(double&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i20" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeFloat-float-">writeFloat</a></span>(float&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i21" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeInt-int-">writeInt</a></span>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i22" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeLong-long-">writeLong</a></span>(long&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i23" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeS15Fixed16Number-float-">writeS15Fixed16Number</a></span>(float&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i24" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeShort-int-">writeShort</a></span>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i25" class="rowColor"> <td class="colFirst"><code>abstract void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeToStream-long-">writeToStream</a></span>(long&nbsp;len)</code>&nbsp;</td> </tr> <tr id="i26" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeU16Fixed16Number-float-">writeU16Fixed16Number</a></span>(float&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i27" class="rowColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeU8Fixed8Number-float-">writeU8Fixed8Number</a></span>(float&nbsp;value)</code>&nbsp;</td> </tr> <tr id="i28" class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../pixy/io/RandomAccessOutputStream.html#writeUTF-java.lang.String-">writeUTF</a></span>(java.lang.String&nbsp;value)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.io.OutputStream"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.io.OutputStream</h3> <code>flush, write</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>clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.java.io.DataOutput"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;java.io.DataOutput</h3> <code>write</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ============ FIELD DETAIL =========== --> <ul class="blockList"> <li class="blockList"><a name="field.detail"> <!-- --> </a> <h3>Field Detail</h3> <a name="dist"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>dist</h4> <pre>protected&nbsp;java.io.OutputStream dist</pre> <div class="block">The destination stream.</div> </li> </ul> <a name="closed"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>closed</h4> <pre>protected&nbsp;boolean closed</pre> </li> </ul> </li> </ul> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="RandomAccessOutputStream-java.io.OutputStream-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>RandomAccessOutputStream</h4> <pre>protected&nbsp;RandomAccessOutputStream(java.io.OutputStream&nbsp;dist)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="close--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>close</h4> <pre>public&nbsp;void&nbsp;close() throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>close</code>&nbsp;in interface&nbsp;<code>java.io.Closeable</code></dd> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>close</code>&nbsp;in interface&nbsp;<code>java.lang.AutoCloseable</code></dd> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>close</code>&nbsp;in class&nbsp;<code>java.io.OutputStream</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="shallowClose--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>shallowClose</h4> <pre>public abstract&nbsp;void&nbsp;shallowClose() throws java.io.IOException</pre> <div class="block">Closes the RandomAccessInputStream and it's underlying stream</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="ensureOpen--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>ensureOpen</h4> <pre>protected&nbsp;void&nbsp;ensureOpen() throws java.io.IOException</pre> <div class="block">Check to make sure that this stream has not been closed</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="disposeBefore-long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>disposeBefore</h4> <pre>public abstract&nbsp;void&nbsp;disposeBefore(long&nbsp;pos) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="finalize--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>finalize</h4> <pre>protected&nbsp;void&nbsp;finalize() throws java.lang.Throwable</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>finalize</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.lang.Throwable</code></dd> </dl> </li> </ul> <a name="getEndian--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getEndian</h4> <pre>public&nbsp;short&nbsp;getEndian()</pre> </li> </ul> <a name="getFlushPos--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getFlushPos</h4> <pre>public abstract&nbsp;long&nbsp;getFlushPos()</pre> </li> </ul> <a name="getLength--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getLength</h4> <pre>public abstract&nbsp;long&nbsp;getLength()</pre> <div class="block">Returns the total length of data that has been cached, regardless of whether any early blocks have been disposed. This value will only ever increase.</div> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="getStreamPointer--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getStreamPointer</h4> <pre>public abstract&nbsp;long&nbsp;getStreamPointer()</pre> <dl> <dt><span class="returnLabel">Returns:</span></dt> <dd>the current stream position</dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="reset--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reset</h4> <pre>public abstract&nbsp;void&nbsp;reset()</pre> <div class="block">Reset this stream to be used again</div> </li> </ul> <a name="seek-long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>seek</h4> <pre>public abstract&nbsp;void&nbsp;seek(long&nbsp;pos) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="setWriteStrategy-pixy.io.WriteStrategy-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>setWriteStrategy</h4> <pre>public&nbsp;void&nbsp;setWriteStrategy(<a href="../../pixy/io/WriteStrategy.html" title="interface in pixy.io">WriteStrategy</a>&nbsp;strategy)</pre> </li> </ul> <a name="write-byte:A-int-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>write</h4> <pre>public abstract&nbsp;void&nbsp;write(byte[]&nbsp;b, int&nbsp;off, int&nbsp;len) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>write</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>write</code>&nbsp;in class&nbsp;<code>java.io.OutputStream</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="write-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>write</h4> <pre>public abstract&nbsp;void&nbsp;write(int&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>write</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>write</code>&nbsp;in class&nbsp;<code>java.io.OutputStream</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeBoolean-boolean-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeBoolean</h4> <pre>public final&nbsp;void&nbsp;writeBoolean(boolean&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeBoolean</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeByte-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeByte</h4> <pre>public final&nbsp;void&nbsp;writeByte(int&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeByte</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeBytes-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeBytes</h4> <pre>public final&nbsp;void&nbsp;writeBytes(java.lang.String&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeBytes</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeChar-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeChar</h4> <pre>public final&nbsp;void&nbsp;writeChar(int&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeChar</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeChars-java.lang.String-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeChars</h4> <pre>public final&nbsp;void&nbsp;writeChars(java.lang.String&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeChars</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeDouble-double-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeDouble</h4> <pre>public final&nbsp;void&nbsp;writeDouble(double&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeDouble</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeFloat-float-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeFloat</h4> <pre>public final&nbsp;void&nbsp;writeFloat(float&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeFloat</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeInt-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeInt</h4> <pre>public final&nbsp;void&nbsp;writeInt(int&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeInt</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeLong-long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeLong</h4> <pre>public final&nbsp;void&nbsp;writeLong(long&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeLong</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeS15Fixed16Number-float-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeS15Fixed16Number</h4> <pre>public final&nbsp;void&nbsp;writeS15Fixed16Number(float&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeShort-int-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeShort</h4> <pre>public final&nbsp;void&nbsp;writeShort(int&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeShort</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeToStream-long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeToStream</h4> <pre>public abstract&nbsp;void&nbsp;writeToStream(long&nbsp;len) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeU16Fixed16Number-float-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeU16Fixed16Number</h4> <pre>public final&nbsp;void&nbsp;writeU16Fixed16Number(float&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeU8Fixed8Number-float-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>writeU8Fixed8Number</h4> <pre>public final&nbsp;void&nbsp;writeU8Fixed8Number(float&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></dd> </dl> </li> </ul> <a name="writeUTF-java.lang.String-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>writeUTF</h4> <pre>public final&nbsp;void&nbsp;writeUTF(java.lang.String&nbsp;value) throws java.io.IOException</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code>writeUTF</code>&nbsp;in interface&nbsp;<code>java.io.DataOutput</code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code>java.io.IOException</code></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="../../pixy/io/RandomAccessInputStream.html" title="class in pixy.io"><span class="typeNameLink">Prev&nbsp;Class</span></a></li> <li><a href="../../pixy/io/ReadStrategy.html" title="interface in pixy.io"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../index.html?pixy/io/RandomAccessOutputStream.html" target="_top">Frames</a></li> <li><a href="RandomAccessOutputStream.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="#field.summary">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method.summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li> <li><a href="#constructor.detail">Constr</a>&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>
web/app/dashboard/dashboard.edit.html
ghys/habpanel
<div class="header controls"> <div uib-dropdown class="pull-right"> <button class="btn btn-default" uib-dropdown-toggle type="button" id="addWidgetMenu"> <i class="glyphicon glyphicon-plus"></i> <span class="hidden-xs" translate-keep-content translate="designer.addwidget">Add Widget</span> <span class="caret"></span> </button> &nbsp; <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="addWidgetMenu" style="max-height: 600px; overflow: hidden; overflow-y: auto;"> <li ng-repeat="type in widgetTypes"> <a ng-click="addWidget(type.type)" title="{{type.description | translation:'widget.'+type.type+'.description'}}"> <small><i class="glyphicon glyphicon-{{type.icon}}"></i></small>&nbsp;{{type.displayName | translation:'widget.'+type.type}} </a> </li> <li class="divider"> <li class="dropdown-header"><a href="#/settings/widgets" class="pull-right" style="padding: 0;"><i class="glyphicon glyphicon-cog"></i></a><span style="white-space: normal;" translate-keep-content translate="designer.addwidget.customwidgets">Custom widgets</span></li> <li ng-repeat="(id,configwidget) in configWidgets"> <a ng-click="addCustomWidget(id)" title="{{configwidget.description}}"> <small><i class="glyphicon glyphicon-check"></i></small>&nbsp;{{configwidget.name || id}} </a> </li> <li ng-repeat="(id,customwidget) in customwidgets"> <a ng-click="addCustomWidget(id)" title="{{customwidget.description}}"> <small><i class="glyphicon glyphicon-expand"></i></small>&nbsp;{{customwidget.name || id}} </a> </li> <li><a ng-click="openWidgetGallery()" title="{{widgetGalleryTooltip}}"><span translate-keep-content translate="designer.addwidget.getmore">Get more...</span></a></li> </ul> </div> <!--<a class="btn" href="#/"><i class="glyphicon glyphicon-chevron-left"></i></a>--> <a class="btn pull-left" title="Menu" snap-toggle="left"> <i class="glyphicon glyphicon-menu-hamburger"></i> </a> <a class="btn btn-success" ng-click="save()"><i class="glyphicon glyphicon-save"></i><span class="hidden-xs">&nbsp;</span><span class="hidden-xs" translate-keep-content translate="designer.save">Save</span></a> <a class="btn btn-primary" ng-click="run()"><i class="glyphicon glyphicon-play"></i><span class="hidden-xs">&nbsp;</span><span class="hidden-xs" translate-keep-content translate="designer.run">Run</span></a> </div> <div ng-if="!dashboard.widgets.length"> <div class="pull-right"> <h3 class="add-widgets"><span translate-keep-content translate="designer.addwidget.hint">Add some widgets</span> <i class="glyphicon glyphicon-arrow-up"></i></h3></div> </div> <div ng-show="error" class="alert alert-warning" role="alert"> <button type="button" class="close" ng-click="error=undefined"><span>&times;</span></button> <strong translate-keep-content translate="designer.serversavefailed">Server save failed!</strong> {{error}} </div> <div gridster="gridsterOptions"> <ul> <li gridster-item="widget" data-snap-ignore="true" ng-repeat="widget in dashboard.widgets"> <div class="box box-design" ng-controller="CustomWidgetCtrl"> <div class="box-header pull-left" style="display: inline"> <i class="handle glyphicon glyphicon-move"></i> <h3>{{ widget.customwidget || widget.type }}</h3> </div> <div class="box-content box-label-content"> <div class="box-label"> {{ widget.name }} </div> </div> <div class="btn-group box-header-btns dropdown" uib-dropdown dropdown-append-to-body> <button id="settingsMenu" type="button" class="box-header-dropdown settings-btn" uib-dropdown-toggle> <i class="glyphicon glyphicon-option-vertical"></i> </button> <ul ng-class="{ 'dropdown-menu-right': widget.col + widget.sizeX > 6 }" style="min-width: 90px;" uib-dropdown-menu role="menu" aria-labelledby="settingsMenu"> <li><a ng-click="openSettings(widget)" class="ng-binding"><i class="glyphicon glyphicon-edit"></i> <span translate-keep-content translate="designer.contextmenu.edit">Edit...</span></a></li> <li><a ng-click="transferWidget(widget)" class="ng-binding"><i class="glyphicon glyphicon-duplicate"></i> <span translate-keep-content translate="designer.contextmenu.copymove">Copy/move to...</span></a></li> <li class="divider"></li> <li><a ng-click="remove(widget)" class="ng-binding"><i class="glyphicon glyphicon-trash"></i> <span translate-keep-content translate="designer.contextmenu.delete">Delete</span></a></li> </ul> </div> </div> </li> </ul> </div>
resources/template.html
Rainbowlzy/slsms
<html> <head> <title>Page Title</title> </head> <body> <h1>Page Title</h1> <h3>By <span class="subtitle">Mickey Mouse</span></h3> <div class="post-body"> Lorem ipsum etc... </div> </body> </html>
WeightedStraightSkeleton/JavaDoc/graphics/class-use/MyVector2f.html
pgunia/SemanticBuildingModeler_Code
<!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 Wed Oct 06 13:54:26 CEST 2010 --> <TITLE> Uses of Class graphics.MyVector2f </TITLE> <META NAME="date" CONTENT="2010-10-06"> <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 graphics.MyVector2f"; } } </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="../../graphics/MyVector2f.html" title="class in graphics"><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-files/index-1.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?graphics/\class-useMyVector2f.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MyVector2f.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>graphics.MyVector2f</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="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#graphics"><B>graphics</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#math"><B>math</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="graphics"><!-- --></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="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A> in <A HREF="../../graphics/package-summary.html">graphics</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">Fields in <A HREF="../../graphics/package-summary.html">graphics</A> declared as <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></CODE></FONT></TD> <TD><CODE><B>Vertex3d.</B><B><A HREF="../../graphics/Vertex3d.html#mTextureCoords">mTextureCoords</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="../../graphics/package-summary.html">graphics</A> that return <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></CODE></FONT></TD> <TD><CODE><B>Vertex3d.</B><B><A HREF="../../graphics/Vertex3d.html#getTextureCoords()">getTextureCoords</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="../../graphics/package-summary.html">graphics</A> with parameters of type <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </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>Vertex3d.</B><B><A HREF="../../graphics/Vertex3d.html#setTextureCoords(graphics.MyVector2f)">setTextureCoords</A></B>(<A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A>&nbsp;mTextureCoord)</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">Constructors in <A HREF="../../graphics/package-summary.html">graphics</A> with parameters of type <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../graphics/Vertex3d.html#Vertex3d(graphics.MyVector3f, graphics.MyVector2f)">Vertex3d</A></B>(<A HREF="../../graphics/MyVector3f.html" title="class in graphics">MyVector3f</A>&nbsp;mPosition, <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A>&nbsp;mTextureCoords)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="math"><!-- --></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="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A> in <A HREF="../../math/package-summary.html">math</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../math/package-summary.html">math</A> with parameters of type <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;float</CODE></FONT></TD> <TD><CODE><B>MyVectormath.</B><B><A HREF="../../math/MyVectormath.html#getAngle2d(graphics.MyVector2f, graphics.MyVector2f)">getAngle2d</A></B>(<A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A>&nbsp;rot1, <A HREF="../../graphics/MyVector2f.html" title="class in graphics">MyVector2f</A>&nbsp;rot2)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2-dimesionales Skalarprodukt => berechnet das Skalarprodukt der uebergebenen Vektoren im 2d-Raum http://www.spieleprogrammierer.de/index.php?</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="../../graphics/MyVector2f.html" title="class in graphics"><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-files/index-1.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?graphics/\class-useMyVector2f.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="MyVector2f.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> </BODY> </HTML>
sea/2/1999_January_20_SZ.html
csepuser/EthicsPublicHtmlTest
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><!-- InstanceBegin template="/Templates/new_sea.dwt" codeOutsideHTMLIsLocked="false" --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/jScrollPane.css" media="all" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/style_sea.css" media="all" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/superfish.css" media="screen" /> <title>Center for the Study of Ethics in the Professions at IIT</title> <link rel="shortcut icon" href="http://ethics.iit.edu/newlayout/favicon.ico" /> <meta name="keywords" title="keywords" content="" /> <meta name="description" content="" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-8938192-11']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script src="http://code.jquery.com/jquery-1.7.1.js"></script> <script src="http://ethics.iit.edu/sea/js/jScrollPane.js"></script> <script src="http://ethics.iit.edu/sea/js/hoverIntent.js"></script> <script src="http://ethics.iit.edu/sea/js/superfish.js"></script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-3621988-3"); pageTracker._trackPageview(); </script> <script type="text/javascript"> $(function(){ $('#inner').jScrollPane(); }); $(document).ready(function(){ $("ul.sf-menu").superfish(); }); </script> </head> <body> <div id="wrapper"> <div id="banner"></div> <a name="home"></a> <div style="width: 80em; height: 2.5em;"> <ul class="sf-menu sf-js-enabled sf-shadow"> <li ><a href="http://ethics.iit.edu/sea/sea.php/100" style="color:white;" >Home</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/1" style="color:white;" >About</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/31" style="color:white;" class="sf-with-ul" >Guides</a> <ul style="display: none; visibility: hidden; "> <li ><a href="http://ethics.iit.edu/sea/sea.php/2" style="color:white;" class="sf-with-ul" >Index by Date</a> <ul style="display: none; visibility: hidden; left:20em; top: -1px; "> <li ><a href="http://ethics.iit.edu/sea/sea.php/11" style="color:white;" >1991</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/12" style="color:white;" >1992</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/13" style="color:white;" >1993</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/14" style="color:white;" >1994</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/15" style="color:white;" >1995</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/16" style="color:white;" >1996</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/17" style="color:white;" >1997</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/18" style="color:white;" >1998</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/19" style="color:white;" >1999</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/20" style="color:white;" >2000</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/21" style="color:white;" >2001</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/22" style="color:white;" >2002</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/25" style="color:white;" >2005</a></li> </ul> </li> <li ><a href="http://ethics.iit.edu/sea/sea.php/3" style="color:white;" >Requesting Access</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/4" style="color:white;" >Versions of SE Code of Ethics</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/5" style="color:white;" >Bibliography</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/6" style="color:white;" >Interviews of Participants</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/7" style="color:white;" >Acronyms</a></li> </ul> </li> <li ><a href="http://ethics.iit.edu/sea/sea.php/9" style="color:white;" >CodeMaking</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/8" style="color:white;" >Search</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/32" style="color:white;" >Contact</a></li> <li ><a href="http://ethics.iit.edu/" style="color:white; border-right:1px solid white;" >CSEP</a></li> </ul> </div> <div style=" width: 76em; height:auto; padding:2em; min-height:64.6em;"> <div id="viewer"> <div id="content"> <div id="organization"> <strong>Author: </strong><!-- InstanceBeginEditable name="author" --> Karl Reed<!-- InstanceEndEditable --></div> <div id="approved"> <strong>Date:</strong> <!-- InstanceBeginEditable name="date" --> January 10,1999<!-- InstanceEndEditable --> </div> <div id="approved"> <strong>Subject: </strong><!-- InstanceBeginEditable name="subject" --> Email from Karl Reed to multiple recipients: &quot;Thoughts regarding relationships between education project, ethics project and BOK&quot; <!-- InstanceEndEditable --></div> <div id="source"> <strong> Recepient: </strong><!-- InstanceBeginEditable name="recepient" --> Tom Hilburn, Dennis J. Frailey, Don Bagert, Don Bagert, Pierre Bourque, Leonard Tripp<!-- InstanceEndEditable --></div> <div id="source"> <strong> Format: </strong><!-- InstanceBeginEditable name="format" --> Format <!-- InstanceEndEditable --></div> <div id="previous"> <strong> Source: </strong><!-- InstanceBeginEditable name="source" --> Stuart Zweben<!-- InstanceEndEditable --></div> <div id="title"> <h3> <!-- InstanceBeginEditable name="title" --> Thoughts regarding relationships between education project, ethics project and BOK <title>Email from Karl Reed to multiple recipients: "Thoughts regarding relationships between education project, ethics project and BOK" - January 10,1999 (Level 2)</title> Scanned Document<!-- InstanceEndEditable --> </h3></div> <!-- InstanceBeginEditable name="content" --> I have done some work on some of these issues, as part of the effort by the Australian Computer Society's Software Engineering Research Consultative Council (ACS SERCC). This group reports to the ACS Computer Systems and Software Engineering Board, of which I am the Director.. <p>I also gave a long talk to the Asian Pacific Software Engineering Conference on this, and I will complete the presentation before I get to Austin..</p> <p>I guess I am concerned with the issue of the &quot;engineering&quot; nature of our proposed training programs.. I am also concerned about the lack of intersection between the SE research community and the conventional software industry.. the research agenda's are still largely driven by defense/aerospace and large scale telecomms issue.. plus embedded systems.. we see little input from the large commercial,in house developers in what we used to call EDP, nor from the large, package producers..</p> <p>t is important for us to clarify our understanding of what engineering really is,and how it got to where it is..</p> <p></p> <p></p> <p>Plus, (and this is more provocative), I do not believe we really understand how software is actually developed..</p> <p>Having said this, there is now a well-established BOK, and we can see some significant benefits from it. Plus we do have a general understanding of the broad issue of engineering.. (the problem I refer to is that of what precisely is the relationship between SW development and engineering , and how can we move down that path more rapidly )</p> <p> <br> I am looking forward to this exercise, and to meeting you all in Austin..</p> <p>Regards,</p> <p>Karl</p> <p>Address for contact -</p> <p>Assoc. Prof. Karl Reed, MSc, FACS (Hon. Life Member, ACS), FIE(Aust),<br> MACM,<br> MIEEE-CS, ARMIT Director, Computer Systems and Software Engineering Board, ACS Inc.a President, International Workshop on CASE Member! Board of Governors, IEEE-CS Department of Computer Science and Computer Engineering La Trobe University, Bundoora 3083, Melbourne Victoria, Austraila email: kreed@latcsi.lat.oz.au, ph +61(0)39479 1377, fax +61(0)3.94793060</p> <p>On Tue, 19 Jan 1999, Tom Hilburn wrote:</p> <p>..*Dennis:<br> *<br> ..*On the whole I like the ideas set down in your white paper.<br> *<br> ..*Here are some additional comments/suggestions: ..* I believe the most critical element in advancing the state of software ..*engineering professional and education issues is to have a established, ..*recoginized, and centralized coordination effort. It seems that SWECC can provide ..*this function. ..*? The SWECC must have wide representation in order to insure recognition and ..*acceptance by the community of its coordinating efforts and &quot;decisions&quot;. ..* As part of your comments on 'The Approach&quot;, &quot;Division of Repsonisbility&quot;, and ..*&quot;Cooperative Activity&quot;, I would suggest that there should be an overall SWECC ..*plan. It could be rather simple (a couple of pages). The plan would include the ..*following: ..* * objectives of the SWECC work .. * * tasks to be performed ..* * task responsibility (inidvidual group, joint ,etc.)</p> <p> <br> ..* * a schedule for when tasks will be initally completed, reviewed, and finalized<br> *<br> ..* * resources available/needed (groups, inidviduals, money, etc.)<br> *<br> ..*Good luck and let me know how I can help.<br> *<br> ..*Tom Hilburn<br> *</p> <p><br> ..*Thomas B. Hilburn, Professor<br> ..*Department of Computing and Mathematics<br> ..*Embry Riddle Aeronautical University<br> .. *work: 904 226 6889<br> ..*FAX: 904 226 6678<br> .. *home: 904 672 0622<br> ..*email: hilburn@db.erau.edu</p> <p>*<br> ..*Dennis J. Frailey wrote:<br> *<br> ..*&gt; Dennis Frailey writing to selected members of the ..*&gt; SWEBOK project, IAB, SWECC, and various related efforts.</p> <p>..*&gt; This is a white paper outlining my thoughts on an issue ..*&gt; that is of considerable importance to the software engineering ..*&gt; projects being sponsored by SWECC: Body of Knowledge ..*&gt; (SWEBOK), education, ethics and professional practices, ..*&gt; and (to be established) performance norms. I also propose ..*&gt; some possible solutions. I invite comment and ..*&gt; critique from all affected parties. I intend to propose ..*&gt; implementing something along these lines at the SWECC ..*&gt; meeting in Austin on January 28 29, .. * &gt; so timely response is of the essence.</p> <p>..*&gt; The issue:</p> <p>..*&gt; It has become clear in recent communcation that there is somewhat ..*&gt; of a disconnect over defining certain parts of the body of ..*&gt; knowledge for software engineering. Specifically, although the ..*&gt; BOK project has clear plans for identifying and documenting those ..*&gt; knowledge areas that are unique to software engineering, it is not ..*&gt; clear how we will identify what knowledge areas within computer ..*&gt; science and other disciplines are part of what a software engineer ..*&gt; must know. These form the foundation upon which a software ..*&gt; engineer must be educated, just as a solid &quot;pre med&quot; program ...*&gt; is the foundation on which medical doctors are educated.</p> <p> <br> ..*&gt; While those who define the body of knowledge for a medical ..*&gt; doctor do not define chemistry, they certainly identify what ..*&gt; parts of chemistry a medical doctor must know.</p> <p>..*&gt; Upon reflection, it seems to me that this problem is a direct result ..*&gt; of the relative autonomy of the various projects. I would like to ..*&gt; see that change and, since SWECC's role is to coordinate, I am ..*&gt; proposing a way that we could coordinate a closer form of work ..*&gt; among the projects.</p> <p>..*&gt; The goal:</p> <p>..*&gt; It is clear that we must eventually define all that a software engineer ..*&gt; should know in order to properly define curricula, establish ..*&gt; accreditation criteria, and prepare licensing examinations. It is also ..*&gt; clear that all of our projects have both interest and expertise to ..*&gt; contribute to this. Therefore I would like to offer some ideas that might ..*&gt; lead to a strategy for accomplishing what we all hope will be accomplished.</p> <p>..*&gt; The approach:</p> <p>..*&gt; My suggestions involve two elements: an agreement regarding division of ..*&gt; responsibility and an agreement for cooperative activity among the various ..*&gt; projects. Speaking from the SWECC perspective, I propose ..*&gt; that SWECC coordinate and facilitate these cooperative activities ..*&gt; once the projects agree on what they would be.</p> <p>..*&gt; As an example of a cooperative activity, the education project has ..*&gt; recently discussed a possible workshop ..*&gt; that would deal with certain issues about what must be in the ..*&gt; core curriculum of a software engineer. I believe this is an excellent ..*&gt; example of an activity that could be cooperative among the projects, ..*&gt; because it would address key issues that affect all of them.</p> <p>..*&gt; Division of Responsibility</p> <p>..*&gt; I propose that the BOK project accept full responsibility for the following: ..*&gt; identifying the knowledge areas that are unique to software engineers and</p> <p> <br> ..*&gt; identifying, within each knowledge area, identifying and providing reference ..*&gt; material to definitive sources on the topics that are essential to ..*&gt; a software engineer. They have already produced a baseline set of such ..*&gt; knowledge areas and I believe this part of their activity is well underway ..*&gt; identifying other disciplines that contain knowledge areas that are important ..*&gt; for a software engineer. This too has already been done in a baseline ..*&gt; manner.</p> <p>..*&gt; I propose that the BOK project and the Education project accept joint<br> ..*&gt; responsibility (and include tasks in both of their plans) for:<br> ..*&gt; identifying those knowledge areas within other disciplines (computer<br> ..*&gt; science, computer engineering, math, science, etc) that are<br> ..*&gt; necessary for a software engineers. Examples might include<br> ..*&gt; data structures from computer science or computer architecture<br> ..*&gt; from computer engineering or discrete mathematics</p> <p>..*&gt; I propose that the Education project accept full responsibility for<br> ..*&gt; identifying and providing authoritative references for the<br> ..*&gt; topics within each knowledge area from &quot;other&quot; disciplines<br> ..*&gt; that are necessary for software engineers. I believe this<br> ..*&gt; has already been started, and as a SWECC member I would<br> ..*&gt; endorse further work in this area</p> <p>..*&gt; I propose that the (not yet formed) performance norms project ..*&gt; work jointly with the Code of Ethics and Professional Practices ..*&gt; project to identify the tasks that a software engineer would be ..*&gt; expected to perform. Perhaps the other two projects should also ..*&gt; be involved in this. This would be based on the knowledge ..*&gt; areas defined by the other two projects and would probably ..*&gt; not commence for about a year. At that time, the two projects ..*&gt; should further define how this can be subdivided, but it seems to ..*&gt; me that the Code of Ethics and Professional Practices project ..*&gt; would concentrate on defining the professional practices that ..*&gt; would be considered essential for a software engineer and the ..*&gt; performance norms project would focus on the skills and the ..*&gt; performance standards associated with these.</p> <p>..*&gt; Cooperative activity:</p> <p>..*&gt; Each project would have an (at least) annual review of its progress,<br> ..*&gt; to which each other project and SWECC should be invited to send<br> ..*&gt; representatives. This review might occur during a SWECC meeting</p> <p> <br> ..*&gt; or might occur separately, depending on the magnitude of the project ..*&gt; and the amount of work to be reported on. ..*&gt; SWECC can attempt to schedule its meetings to adjoin major project ..*&gt; reviews so as to minimize travel for all concerned. Since SWECC must ..*&gt; report to its sponsoring societies (ACM and IEEE CS) on an annual ..*&gt; basis, we can also coordinate the timing to fit their annual schedules.</p> <p>..*&gt; For all responsibilities that are joint, the affected projects should ..*&gt; plan and budget for appropriate joint activities and should keep ..*&gt; SWECC and the other projects informed of these.</p> <p>..*&gt; I invite comments and suggestions.</p> <p>..*&gt; Regards, Dennis J. Frailey<br> ..*&gt; Vice Chair of SWECC</p> <p></p> <p>..*&gt; Dennis J. Frailey d fraileya@ti.com<br> ..*&gt; Technical Fellow and<br> ..*&gt; Senior SW Technologist 972 344 5607 (voice)<br> ..*&gt; Raytheon Systems Company 972 344 5602 (fax)<br> ..*&gt; POB 655012, MS 49<br> ..*&gt; Dallas, TX 75265<br> *<br> *<br> <br> </p> <!-- InstanceEndEditable --> <div class="returntotop"><a href="#home">return to top</a></div> </div> </div> </div> <div id="footer"> <p>&#169; 2012 Center for the Study of Ethics in the Professions at IIT Hermann Hall, Rm. 205 3241 S Federal Street Chicago, IL 60616 <br /> Phone: 312.567.3017 Fax: 312.567.3016 Email: csep@iit.edu </p> </div> </div> </body> <!-- InstanceEnd --></html>
wp-content/themes/BookYourTravel/css/admin-custom.css
JDjimenezdelgado/old-mmexperience
/*CUSTOM CSS FOR ADMIN PANEL THEME OPTIONS*/ .wrap h2 {padding-bottom:20px;} #optionsframework-wrap h2.nav-tab-wrapper {float:left;width:20%;padding:0;} #optionsframework-wrap .nav-tab {float:left;width:90%;padding:15px 5%;margin:0;} #optionsframework-wrap .nav-tab-active {background:#fff;} #optionsframework-wrap .metabox-holder {float:left;width:80%;padding:0;} #optionsframework-wrap .metabox-holder h3 {font-size:20px;padding:20px 20px 0;border:none;background:none;} #optionsframework-wrap .group .section {border-bottom:1px solid #eee;padding:10px 20px 15px;} .meta_box_items li {float:left;width:100% !important;} #optionsframework .mini .controls input, #optionsframework .mini .controls, #optionsframework .mini .controls select, #optionsframework .section .mini .controls {min-width: 300px !important;width: 300px !important;margin:0 !important;} #optionsframework .section div.explain {width:100% !important;max-width:100% !important;padding:12px 0 0;} #optionsframework .section .controls {padding:0 !important;width:100% !important;} #optionsframework .ui-draggable, #optionsframework .ui-sortable {display:inline-block;width:100%;margin:10px 0 20px;} #optionsframework .ui-state-default, #optionsframework .ui-widget-content .ui-state-default, #optionsframework .ui-widget-header .ui-state-default {background:none;border:none;} #optionsframework .ui-draggable .ui-state-default, #optionsframework .ui-sortable .ui-state-default {float:left;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-bottom:1px dashed #ccc;padding:15px 15px 15px 40px;background:#eee;position:relative;margin:0;} #optionsframework .ui-draggable .ui-state-default:before, #optionsframework .ui-sortable .ui-state-default:before {content:"";background: url(images/sprite.png) -68px -100px no-repeat;width:20px;height:17px;position:absolute;top:20px;left:10px;} #optionsframework .ui-draggable .ui-state-default:nth-child(2n), #optionsframework .ui-sortable .ui-state-default:nth-child(2n) {background:#f8f8f8;} #optionsframework .input-tab-label {float:left;width:60% !important;} #optionsframework .of-checkbox-wrap {float:left;padding:6px 0 0 30px;} #optionsframework .checkbox-hide-tab {margin:0 0 -4px 10px !important;} #optionsframework .checkbox-hide-field {margin:0 0 7px 10px !important;} #optionsframework .ui-sortable-helper {cursor:move;} #optionsframework .ui-icon-close {position:absolute;top:22px;right:10px;cursor:pointer;} #optionsframework .of-repeat-extra-fields .of-repeat-group label {padding:0 0 10px;display:inline-block;} #optionsframework .of-repeat-extra-fields .of-repeat-group div, #optionsframework .of-repeat-review-fields .of-repeat-group div {float:left;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} #optionsframework .of-repeat-extra-fields .of-repeat-group .of-input-wrap {padding:0 20px 10px 0;width:50%;} #optionsframework .of-repeat-extra-fields .of-repeat-group .of-select-wrap {width:25%;padding:0 20px 10px 0;} #optionsframework .of-repeat-extra-fields .of-repeat-group .of-select-wrap:last-of-type {padding-right:0;} #optionsframework .of-repeat-review-fields .of-repeat-group label {padding:8px 0 0;display:inline-block;} #optionsframework .of-repeat-review-fields .of-repeat-group .of-input-wrap {float:left;width:70%;} #optionsframework .of-repeat-review-fields .of-repeat-group .of-input-wrap label {float:left;width:20%;} #optionsframework .of-repeat-review-fields .of-repeat-group .of-input-wrap input {float:left;width:70%;} #optionsframework .of-repeat-review-fields .checkbox-hide-field {margin:0 0 -7px 10px !important;} #optionsframework-wrap .below-h2 {margin:0;float:left;width:60.9%;padding:6px 15px 5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;} #optionsframework-wrap .below-h2 p {font-size:16px;padding-left:15px;}
html/wifi/wifiSta.html
twischer/WLAN-IO
<div id="main"> <div class="header"> <h1>WiFi Station Configuration</h1> </div> <div class="content"> <div class="pure-g"> <div class="pure-u-1 pure-u-md-1-2"><div class="card"> <h1>WiFi State</h1> <div id="wifi-spinner" class="spinner spinner-small"></div> <table id="wifi-table" class="pure-table pure-table-horizontal" hidden><tbody> <tr><td>WiFi mode</td><td id="wifi-mode"></td></tr> <tr><td>WiFi channel</td><td id="wifi-chan"></td></tr> <tr><td>Configured network</td><td id="wifi-ssid"></td></tr> <tr><td>WiFi status</td><td id="wifi-status"></td></tr> <tr><td>WiFi address</td><td id="wifi-ip"></td></tr> <tr><td>WiFi rssi</td><td id="wifi-rssi"></td></tr> <tr><td>WiFi phy</td><td id="wifi-phy"></td></tr> <tr><td>WiFi MAC</td><td id="wifi-mac"></td></tr> <tr><td colspan="2" id="wifi-warn"></td></tr> </tbody> </table> </div> </div> <div class="pure-u-1 pure-u-md-1-2"><div class="card"> <h1>WiFi Association</h1> <p id="reconnect" style="color: #600" hidden></p> <form action="#" id="wifiform" class="pure-form pure-form-stacked"> <legend>To connect to a WiFi network, please select one of the detected networks, enter the password, and hit the connect button...</legend> <label>Network SSID</label> <div id="aps">Scanning... <div class="spinner spinner-small"></div></div> <label for="opt-hiddenssid"> <input type="radio" name="essid" value="_hidden_ssid_" id="opt-hiddenssid"> <input type="text" id="hidden-ssid" value="" style="width:auto; display:inline-block; margin-left: 0.7em"> </label> <label>WiFi password, if applicable:</label> <input id="wifi-passwd" type="password" name="passwd" placeholder="password"> <button id="connect-button" type="submit" class="pure-button button-primary">Connect!</button> </form> </div></div> </div> <div class="pure-g"> <div class="pure-u-1 pure-u-md-1-2"><div class="card"> <h1>Special Settings</h1> <form action="#" id="specform" class="pure-form"> <legend>Special settings, use with care!</legend> <div class="form-horizontal"> <label for="dhcp-ron" style="margin-right:1em"> <input type="radio" name="dhcp" value="on" id="dhcp-ron"/> DHCP</label> <label for="dhcp-roff"> <input type="radio" name="dhcp" value="off" id="dhcp-roff"/> Static IP</label> </div> <div id="dhcp-on" class="pure-form-stacked"></div> <div id="dhcp-off" class="pure-form-stacked"> <label>Static IP address</label> <input id="wifi-staticip" type="text" name="staticip"/> <label>Netmask (for static IP)</label> <input id="wifi-netmask" type="text" name="netmask"/> <label>Gateway (for static IP)</label> <input id="wifi-gateway" type="text" name="gateway"/> </div> <button id="special-button" type="submit" class="pure-button button-primary">Change!</button> </form> </div></div> </div> </div> </div> </div> <script type="text/javascript"> </script> <script src="wifiSta.js"></script> <script type="text/javascript"> onLoad(function() { getWifiInfo(); bnd($("#wifiform"), "submit", changeWifiAp); bnd($("#specform"), "submit", changeSpecial); bnd($("#dhcp-ron"), "click", doDhcp); bnd($("#dhcp-roff"), "click", doStatic); scanTimeout = window.setTimeout(scanAPs, 500); }); </script> </body></html>
sites/all/modules/diversicon/overlay/manual/diversicon-core/latest/javadoc/eu/kidf/diversicon/core/class-use/DivSynsetRelation.html
diversicon-kb/diversicon-website
<!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_79) on Mon Mar 20 13:49:41 CET 2017 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class eu.kidf.diversicon.core.DivSynsetRelation (Diversicon Core 0.1.0-SNAPSHOT API)</title> <meta name="date" content="2017-03-20"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class eu.kidf.diversicon.core.DivSynsetRelation (Diversicon Core 0.1.0-SNAPSHOT API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../eu/kidf/diversicon/core/DivSynsetRelation.html" title="class in eu.kidf.diversicon.core">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?eu/kidf/diversicon/core/class-use/DivSynsetRelation.html" target="_top">Frames</a></li> <li><a href="DivSynsetRelation.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class eu.kidf.diversicon.core.DivSynsetRelation" class="title">Uses of Class<br>eu.kidf.diversicon.core.DivSynsetRelation</h2> </div> <div class="classUseContainer">No usage of eu.kidf.diversicon.core.DivSynsetRelation</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../eu/kidf/diversicon/core/DivSynsetRelation.html" title="class in eu.kidf.diversicon.core">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?eu/kidf/diversicon/core/class-use/DivSynsetRelation.html" target="_top">Frames</a></li> <li><a href="DivSynsetRelation.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2017 <a href="http://kidf.eu">KiD Foundation</a>. All rights reserved.</small></p> </body> </html>
boost/libs/range/doc/reference/adaptors/filtered.html
csitarichie/boost_msm_bare_metal
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Boost.Range Range Adaptors </title> <link rel="stylesheet" href="../style.css" type="text/css"> </head> <body> <table border="0" > <tr> <td ><img src="../../../boost.png" border="0" /></td> <td ><h1 align="center">Boost.Range </h1></td> </tr> </table> <h2> Range Adaptors </h2> <hr /> <a name="filtered"></a> <h4><code>filtered</code></h4> <blockquote> <pre>rng | boost::adaptors::filtered( pred )</pre> <pre>boost::make_filtered_range( rng, pred )</pre> </blockquote> <ul> <li> <b>Precondition:</b> The value-type of the range is convertible to the argument type of <code>pred</code>. </li> <li> <b>Postcondition:</b> For all elements <code>x</code> in the returned range, <code>pred(x)</code> is <code>true</code> </li> <li> <b>Throws:</b> Whatever the copy-constructor of pred might throw. </li> <li> <b>Range Category:</b> ForwardRange </li> <li> <b>Returned Range Category:</b> ForwardRange </li> </ul> <hr /> <h3>Example</h3> <pre> <span class="keyword">#include</span> &lt;boost/range/adaptor/filtered.hpp&gt; <span class="keyword">#include</span> &lt;boost/range/algorithm/copy.hpp&gt; <span class="keyword">#include</span> &lt;boost/assign.hpp&gt; <span class="keyword">#include</span> &lt;algorithm&gt; <span class="keyword">#include</span> &lt;iostream&gt; <span class="keyword">#include</span> &lt;vector&gt; <span class="keyword">struct</span> is_even { <span class="keyword">bool operator</span>()(<span class="keyword">int</span> x) <span class="keyword">const</span> { <span class="keyword">return</span> x % 2 == 0; } }; <span class="keyword">int</span> main(<span class="keyword">int</span> argc, <span class="keyword">const char</span>* argv[]) { <span class="keyword">using namespace</span> boost::assign; <span class="keyword">using namespace</span> boost::adaptors; std::vector&lt;<span class="keyword">int</span>&gt; input; input += 1,2,3,4,5,6,7,8,9; boost::copy( input | filtered(is_even()), std::ostream_iterator&lt;<span class="keyword">int</span>&gt;(std::cout, ",")); <span class="keyword">return</span> 0; } </pre> <p> This would produce the output: <br /> <code>2,4,6,8</code> </p> <hr /> <p> (C) Copyright Neil Groves 2009 (C) Copyright Thorsten Ottosen 2003-2004 </p> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> </body> </html>
_site/git/alihakemistotesti.html
KimmoCommit/JAM_theme_light
<!DOCTYPE html> <html lang="fi"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title> Alihakemistotesti | My Personal File Management </title> <meta name="description" content=""> <!--[if lt IE 9]> <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7/html5shiv.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js"></script> <![endif]--> <link rel="stylesheet" href="/assets/css/style.css"> <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'> </head> <body> <script> function goBack() { window.history.back() } </script> <!--<p class="meta">12 Dec 2012</p>--> <div class="kolumni-2-tablet"> <div class="kansio-puu"> <ul class="kansio-puu-ul"> <div class="kansio-puu-paa-linkit"> <a href="/index.html"> <li><div class="kansio-puu-merkki-main home"> <img src="/assets/img/user13.svg" /> KimmoCommit</div></li></a> <a href="https://github.com/KimmoCommit/tree/gh-pages/_posts" target="_blank"> <li><div class="kansio-puu-merkki-main"> <img src="/assets/img/pencil41.svg" /> Post Management</div></li></a> <a href="/favourites.html"> <li><div class="kansio-puu-merkki-main"> <img src="/assets/img/fav.svg" /> Favourites</div></li></a> <a href="/about.html"> <li><div class="kansio-puu-merkki-main"> <img src="/assets/img/question30.svg" /> About</div></li></a> </div> <a href="/index.html"><li><div class="kansio-puu-merkki-main"><img style="float:left;width:20px;height:auto;" src="/assets/img/home63.svg" /> Home</div></li></a> <a onclick="goBack()"><li><div class="kansio-puu-merkki"><img style="float:left;width:20px;height:auto;" src="/assets/img/back1.svg" /> Back</div></li></a> </ul> </div> </div> <div class="kolumni-10-tablet"> <!-- <div class="polku-rivi"> <div class="polku-osa">Git</div> <div class="polku-osa">Alikategoriatesti</div> </div>--> <div class="teksti-kontti"> <div class="teksti-otsikko"> :: Alihakemistotesti :: </div> <div class="kolumni-12-tablet teksti-sisalto"> <p>Kokeillaan alikategorian toimivuutta! :).</p> </div> </div> </div> </body> <script src="assets/js/jquery-1.11.0.min.js" type="text/javascript"></script> <script src="assets/js/sisluettelo.js" type="text/javascript"></script> <script src="assets/js/kansionavigointi.js" type="text/javascript"></script> </html>
3rdparty/opus/src/opus_docs/installation/ide_setup.html
christianurich/VIBe2UrbanSim
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> <title>Configuring an Interactive Development Environment</title> <link href="../style/book.css" rel="stylesheet" type="text/css"> <meta name="Microsoft Border" content="none, default"> </head> <body> <!-- HEAD BANNER BEGINS HERE :: to be placed immediately below body tag --> <table border="0" cellspacing="0" width="100%"> <tbody> <tr> <td><a href="http://www.urbansim.org/"><img src="images/new-logo-medium.gif" border="0" height="45" width="105"></a></td> </tr> <tr> <td colspan="2" class="breadcrumbbox" bgcolor="#eeeeee" width="100%"><a href="index.html">Installing Opus &amp; UrbanSim</a> &gt; IDE Setup</td> </tr> </tbody> </table> <!-- HEAD BANNER ENDS HERE --> <h1>Configuring an Interactive Development Environment</h1> <h2>Choosing a Development Environment </h2> <p>In general, if you are doing much software development, you will benefit a lot from using an integrated development environment (IDE) that supports for the range of activities involved in, such as such as editing code, running tests, debugging code, connecting to a code repository, etc.&nbsp; There are numerous such IDEs for Python, and no one IDE fits all needs.&nbsp; The software developers in CUSPA typically use Eclipse for talking to subversion, Wing for debugging, and either or both for editing Python code.</p> <ul> <li><a href="wing.html">Configuring Wing</a></li> <li><a href="eclipse.html">Configuring Eclipse</a></li> </ul> <p>If you want to edit the Opus and UrbanSim Reference Manual and Users Guide (as opposed to just reading it), you&rsquo;ll need to use <a href="http://www.latex-project.org/">LaTeX</a> since our documentation is written in LaTeX.&nbsp; Here are instructions for <a href="latex.html">writing and formatting Opus documentation using the LaTeX document preparation system</a>. </body> </html>
toolchain/deprecated/arm_cm0_4.9/share/doc/gcc-arm-none-eabi/html/gdb/Examples.html
jocelynmass/nrf51
<html lang="en"> <head> <title>Examples - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.8"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Remote-Protocol.html#Remote-Protocol" title="Remote Protocol"> <link rel="prev" href="Packet-Acknowledgment.html#Packet-Acknowledgment" title="Packet Acknowledgment"> <link rel="next" href="File_002dI_002fO-Remote-Protocol-Extension.html#File_002dI_002fO-Remote-Protocol-Extension" title="File-I/O Remote Protocol Extension"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988-2014 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.'' --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <p> <a name="Examples"></a> Next:&nbsp;<a rel="next" accesskey="n" href="File_002dI_002fO-Remote-Protocol-Extension.html#File_002dI_002fO-Remote-Protocol-Extension">File-I/O Remote Protocol Extension</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href="Packet-Acknowledgment.html#Packet-Acknowledgment">Packet Acknowledgment</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Remote-Protocol.html#Remote-Protocol">Remote Protocol</a> <hr> </div> <h3 class="section">E.12 Examples</h3> <p>Example sequence of a target being re-started. Notice how the restart does not get any direct output: <pre class="smallexample"> -&gt; <code>R00</code> &lt;- <code>+</code> <em>target restarts</em> -&gt; <code>?</code> &lt;- <code>+</code> &lt;- <code>T001:1234123412341234</code> -&gt; <code>+</code> </pre> <p>Example sequence of a target being stepped by a single instruction: <pre class="smallexample"> -&gt; <code>G1445...</code> &lt;- <code>+</code> -&gt; <code>s</code> &lt;- <code>+</code> <em>time passes</em> &lt;- <code>T001:1234123412341234</code> -&gt; <code>+</code> -&gt; <code>g</code> &lt;- <code>+</code> &lt;- <code>1455...</code> -&gt; <code>+</code> </pre> </body></html>
doc/html/a00130.html
jeppeter/tbb
<!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>tbb::interface6::runtime_loader 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="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <!-- end header part --> <!-- Generated by Doxygen 1.8.4 --> <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="modules.html"><span>Modules</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> </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="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="a00241.html">tbb</a></li><li class="navelem"><b>interface6</b></li><li class="navelem"><a class="el" href="a00130.html">runtime_loader</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-types">Public Types</a> &#124; <a href="#pub-methods">Public Member Functions</a> &#124; <a href="a00404.html">List of all members</a> </div> <div class="headertitle"> <div class="title">tbb::interface6::runtime_loader Class Reference</div> </div> </div><!--header--> <div class="contents"> <p>Load TBB at runtime. <a href="a00130.html#details">More...</a></p> <p><code>#include &lt;runtime_loader.h&gt;</code></p> <div class="dynheader"> Inheritance diagram for tbb::interface6::runtime_loader:</div> <div class="dyncontent"> <div class="center"> <img src="a00130.png" usemap="#tbb::interface6::runtime_loader_map" alt=""/> <map id="tbb::interface6::runtime_loader_map" name="tbb::interface6::runtime_loader_map"> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-types"></a> Public Types</h2></td></tr> <tr class="memitem:ab85c82f9c0ccd91905f2795a79ac1295"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">error_mode</a> { <a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295af9c9137d6acdb0fd37f1a92b5cdaeb36">em_status</a>, <a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295a17ec1019cffa635146eaefb042e28a2c">em_throw</a>, <a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295ac41f8e03c7e8bfc6a420be035d59cc35">em_abort</a> }</td></tr> <tr class="memdesc:ab85c82f9c0ccd91905f2795a79ac1295"><td class="mdescLeft">&#160;</td><td class="mdescRight">Error mode constants. <a href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">More...</a><br/></td></tr> <tr class="separator:ab85c82f9c0ccd91905f2795a79ac1295"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a264674772d9f4240d89aa9d939c1eef7"><td class="memItemLeft" align="right" valign="top">enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">error_code</a> { <br/> &#160;&#160;<a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7afc7eba28f2fc936312f041cf85276434">ec_ok</a>, <a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7a670e4d0a5a3c1bbcdff9e5ee16dc9c01">ec_bad_call</a>, <a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7afd928f63eb3da0980e746d58374b07c3">ec_bad_arg</a>, <a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7a71f874957c0322f499ba764dd0bb8732">ec_bad_lib</a>, <br/> &#160;&#160;<a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7aae7497a49ceae69d06d6ab9fef636064">ec_bad_ver</a>, <a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7a5e694560f3ada80d2cc25881b5ae43dd">ec_no_lib</a> <br/> }</td></tr> <tr class="memdesc:a264674772d9f4240d89aa9d939c1eef7"><td class="mdescLeft">&#160;</td><td class="mdescRight">Error codes. <a href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">More...</a><br/></td></tr> <tr class="separator:a264674772d9f4240d89aa9d939c1eef7"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a2f87eaf99564c705aa140f2eb8848eaa"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a2f87eaf99564c705aa140f2eb8848eaa"></a> &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#a2f87eaf99564c705aa140f2eb8848eaa">runtime_loader</a> (<a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">error_mode</a> mode=<a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295ac41f8e03c7e8bfc6a420be035d59cc35">em_abort</a>)</td></tr> <tr class="memdesc:a2f87eaf99564c705aa140f2eb8848eaa"><td class="mdescLeft">&#160;</td><td class="mdescRight">Initialize object but do not load TBB. <br/></td></tr> <tr class="separator:a2f87eaf99564c705aa140f2eb8848eaa"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3e0932074d2f3ad04605e7e5da88c561"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#a3e0932074d2f3ad04605e7e5da88c561">runtime_loader</a> (char const *path[], int min_ver=TBB_INTERFACE_VERSION, int max_ver=INT_MAX, <a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">error_mode</a> mode=<a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295ac41f8e03c7e8bfc6a420be035d59cc35">em_abort</a>)</td></tr> <tr class="memdesc:a3e0932074d2f3ad04605e7e5da88c561"><td class="mdescLeft">&#160;</td><td class="mdescRight">Initialize object and load TBB. <a href="#a3e0932074d2f3ad04605e7e5da88c561">More...</a><br/></td></tr> <tr class="separator:a3e0932074d2f3ad04605e7e5da88c561"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa3b96f53e165e3d692c3c36292ba0737"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa3b96f53e165e3d692c3c36292ba0737"></a> &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#aa3b96f53e165e3d692c3c36292ba0737">~runtime_loader</a> ()</td></tr> <tr class="memdesc:aa3b96f53e165e3d692c3c36292ba0737"><td class="mdescLeft">&#160;</td><td class="mdescRight">Destroy object. <br/></td></tr> <tr class="separator:aa3b96f53e165e3d692c3c36292ba0737"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae2949e9adcac56a2cb9864437be8e22e"><td class="memItemLeft" align="right" valign="top"><a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">error_code</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#ae2949e9adcac56a2cb9864437be8e22e">load</a> (char const *path[], int min_ver=TBB_INTERFACE_VERSION, int max_ver=INT_MAX)</td></tr> <tr class="memdesc:ae2949e9adcac56a2cb9864437be8e22e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Load TBB. <a href="#ae2949e9adcac56a2cb9864437be8e22e">More...</a><br/></td></tr> <tr class="separator:ae2949e9adcac56a2cb9864437be8e22e"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a85bf9ee021a2076a3ac7cfd70aae7345"><td class="memItemLeft" align="right" valign="top"><a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">error_code</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00130.html#a85bf9ee021a2076a3ac7cfd70aae7345">status</a> ()</td></tr> <tr class="memdesc:a85bf9ee021a2076a3ac7cfd70aae7345"><td class="mdescLeft">&#160;</td><td class="mdescRight">Report status. <a href="#a85bf9ee021a2076a3ac7cfd70aae7345">More...</a><br/></td></tr> <tr class="separator:a85bf9ee021a2076a3ac7cfd70aae7345"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>Load TBB at runtime. </p> <p><b>Usage:</b> </p> <p>In source code:</p> <div class="fragment"><div class="line"><span class="preprocessor">#include &quot;tbb/runtime_loader.h&quot;</span></div> <div class="line"></div> <div class="line"><span class="keywordtype">char</span> <span class="keyword">const</span> * path[] = { <span class="stringliteral">&quot;&lt;install dir&gt;/lib/ia32&quot;</span>, NULL };</div> <div class="line">tbb::runtime_loader loader( path );</div> <div class="line"></div> <div class="line"><span class="comment">// Now use TBB.</span></div> </div><!-- fragment --><p>Link with <code>tbbproxy.lib</code> (or <code>libtbbproxy.a</code>) instead of <code>tbb.lib</code> (<code>libtbb.dylib</code>, <code>libtbb.so</code>).</p> <p>TBB library will be loaded at runtime from <code></code> &lt;install dir&gt;=""&gt;/lib/ia32 directory.</p> <p><b>Attention:</b> </p> <p>All <code><a class="el" href="a00130.html" title="Load TBB at runtime. ">runtime_loader</a></code> objects (in the same module, i.e. exe or dll) share some global state. The most noticeable piece of global state is loaded TBB library. There are some implications: </p> <pre class="fragment">- Only one TBB library can be loaded per module. - If one object has already loaded TBB library, another object will not load TBB. If the loaded TBB library is suitable for the second object, both will use TBB cooperatively, otherwise the second object will report an error. - \c runtime_loader objects will not work (correctly) in parallel due to absence of synchronization.</pre> </div><h2 class="groupheader">Member Enumeration Documentation</h2> <a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">enum <a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">tbb::interface6::runtime_loader::error_code</a></td> </tr> </table> </div><div class="memdoc"> <p>Error codes. </p> <table class="fieldtable"> <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7afc7eba28f2fc936312f041cf85276434"></a>ec_ok</em>&nbsp;</td><td class="fielddoc"> <p>No errors. </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7a670e4d0a5a3c1bbcdff9e5ee16dc9c01"></a>ec_bad_call</em>&nbsp;</td><td class="fielddoc"> <p>Invalid function call (e. g. <a class="el" href="a00130.html#ae2949e9adcac56a2cb9864437be8e22e" title="Load TBB. ">load()</a> called when TBB is already loaded). </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7afd928f63eb3da0980e746d58374b07c3"></a>ec_bad_arg</em>&nbsp;</td><td class="fielddoc"> <p>Invalid argument passed. </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7a71f874957c0322f499ba764dd0bb8732"></a>ec_bad_lib</em>&nbsp;</td><td class="fielddoc"> <p>Invalid library found (e. g. <code>TBB_runtime_version</code> symbol not found). </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7aae7497a49ceae69d06d6ab9fef636064"></a>ec_bad_ver</em>&nbsp;</td><td class="fielddoc"> <p>TBB found but version is not suitable. </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="a264674772d9f4240d89aa9d939c1eef7a5e694560f3ada80d2cc25881b5ae43dd"></a>ec_no_lib</em>&nbsp;</td><td class="fielddoc"> <p>No suitable TBB library found. </p> </td></tr> </table> </div> </div> <a class="anchor" id="ab85c82f9c0ccd91905f2795a79ac1295"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">enum <a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">tbb::interface6::runtime_loader::error_mode</a></td> </tr> </table> </div><div class="memdoc"> <p>Error mode constants. </p> <table class="fieldtable"> <tr><th colspan="2">Enumerator</th></tr><tr><td class="fieldname"><em><a class="anchor" id="ab85c82f9c0ccd91905f2795a79ac1295af9c9137d6acdb0fd37f1a92b5cdaeb36"></a>em_status</em>&nbsp;</td><td class="fielddoc"> <p>Save status of operation and continue. </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="ab85c82f9c0ccd91905f2795a79ac1295a17ec1019cffa635146eaefb042e28a2c"></a>em_throw</em>&nbsp;</td><td class="fielddoc"> <p>Throw an exception of tbb::runtime_loader::error_code type. </p> </td></tr> <tr><td class="fieldname"><em><a class="anchor" id="ab85c82f9c0ccd91905f2795a79ac1295ac41f8e03c7e8bfc6a420be035d59cc35"></a>em_abort</em>&nbsp;</td><td class="fielddoc"> <p>Print message to <code>stderr</code> and call <code>abort()</code>. </p> </td></tr> </table> </div> </div> <h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a3e0932074d2f3ad04605e7e5da88c561"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">tbb::interface6::runtime_loader::runtime_loader </td> <td>(</td> <td class="paramtype">char const *&#160;</td> <td class="paramname"><em>path</em>[], </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">int&#160;</td> <td class="paramname"><em>min_ver</em> = <code>TBB_INTERFACE_VERSION</code>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">int&#160;</td> <td class="paramname"><em>max_ver</em> = <code>INT_MAX</code>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295">error_mode</a>&#160;</td> <td class="paramname"><em>mode</em> = <code><a class="el" href="a00130.html#ab85c82f9c0ccd91905f2795a79ac1295ac41f8e03c7e8bfc6a420be035d59cc35">em_abort</a></code>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Initialize object and load TBB. </p> <p>See <a class="el" href="a00130.html#ae2949e9adcac56a2cb9864437be8e22e" title="Load TBB. ">load()</a> for details.</p> <p>If error mode is <code>em_status</code>, call <a class="el" href="a00130.html#a85bf9ee021a2076a3ac7cfd70aae7345" title="Report status. ">status()</a> to check whether TBB was loaded or not. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">path</td><td>List of directories to search TBB in. </td></tr> <tr><td class="paramname">min_ver</td><td>Minimal suitable version of TBB. </td></tr> <tr><td class="paramname">max_ver</td><td>Maximal suitable version of TBB. </td></tr> <tr><td class="paramname">mode</td><td>Error mode for this object. </td></tr> </table> </dd> </dl> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="ae2949e9adcac56a2cb9864437be8e22e"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">error_code</a> tbb::interface6::runtime_loader::load </td> <td>(</td> <td class="paramtype">char const *&#160;</td> <td class="paramname"><em>path</em>[], </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">int&#160;</td> <td class="paramname"><em>min_ver</em> = <code>TBB_INTERFACE_VERSION</code>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">int&#160;</td> <td class="paramname"><em>max_ver</em> = <code>INT_MAX</code>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </div><div class="memdoc"> <p>Load TBB. </p> <p>The method searches the directories specified in <code>path</code>[] array for the TBB library. When the library is found, it is loaded and its version is checked. If the version is not suitable, the library is unloaded, and the search continues.</p> <p><b>Note:</b> </p> <p>For security reasons, avoid using relative directory names. For example, never load TBB from current (<code>"."</code>), parent (<code>".."</code>) or any other relative directory (like <code>"lib"</code> ). Use only absolute directory names (e. g. "/usr/local/lib").</p> <p>For the same security reasons, avoid using system default directories (<code>""</code>) on Windows. (See <a href="http://www.microsoft.com/technet/security/advisory/2269637.mspx">http://www.microsoft.com/technet/security/advisory/2269637.mspx</a> for details.)</p> <p>Neglecting these rules may cause your program to execute 3-rd party malicious code.</p> <p><b>Errors:</b> </p> <ul> <li><code>ec_bad_call</code> - TBB already loaded by this object.</li> <li><code>ec_bad_arg</code> - <code>min_ver</code> and/or <code>max_ver</code> negative or zero, or <code>min_ver</code> &gt; <code>max_ver</code>.</li> <li><code>ec_bad_ver</code> - TBB of unsuitable version already loaded by another object.</li> <li><code>ec_no_lib</code> - No suitable library found. </li> </ul> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">path</td><td>List of directories to search TBB in. </td></tr> <tr><td class="paramname">min_ver</td><td>Minimal suitable version of TBB. </td></tr> <tr><td class="paramname">max_ver</td><td>Maximal suitable version of TBB. </td></tr> </table> </dd> </dl> </div> </div> <a class="anchor" id="a85bf9ee021a2076a3ac7cfd70aae7345"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname"><a class="el" href="a00130.html#a264674772d9f4240d89aa9d939c1eef7">error_code</a> tbb::interface6::runtime_loader::status </td> <td>(</td> <td class="paramname">)</td><td></td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Report status. </p> <p>If error mode is <code>em_status</code>, the function returns status of the last operation. </p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>runtime_loader.h</li> </ul> </div><!-- contents --> <hr> <p></p> Copyright &copy; 2005-2015 Intel Corporation. All Rights Reserved. <p></p> Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries. <p></p> * Other names and brands may be claimed as the property of others.
CodenameOne/javadoc/com/codename1/ui/painter/class-use/PainterChain.html
shannah/cn1
<!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_35) on Wed Jan 09 12:28:56 IST 2013 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class com.codename1.ui.painter.PainterChain (Codename One Client API) </TITLE> <META NAME="date" CONTENT="2013-01-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.codename1.ui.painter.PainterChain (Codename One Client API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter"><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="../../../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/codename1/ui/painter//class-usePainterChain.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PainterChain.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.codename1.ui.painter.PainterChain</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="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter">PainterChain</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#com.codename1.ui.painter"><B>com.codename1.ui.painter</B></A></TD> <TD> <A HREF="../../../../../com/codename1/ui/Painter.html" title="interface in com.codename1.ui"><CODE>Painter</CODE></A> allows us to draw arbitrary elements of graphics from plain/scaled/tiled images to gradients and pretty much any form of graphic drawing we can imagine.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="com.codename1.ui.painter"><!-- --></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="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter">PainterChain</A> in <A HREF="../../../../../com/codename1/ui/painter/package-summary.html">com.codename1.ui.painter</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../com/codename1/ui/painter/package-summary.html">com.codename1.ui.painter</A> that return <A HREF="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter">PainterChain</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter">PainterChain</A></CODE></FONT></TD> <TD><CODE><B>PainterChain.</B><B><A HREF="../../../../../com/codename1/ui/painter/PainterChain.html#addPainter(com.codename1.ui.Painter)">addPainter</A></B>(<A HREF="../../../../../com/codename1/ui/Painter.html" title="interface in com.codename1.ui">Painter</A>&nbsp;p)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new chain based on the existing chain with the new element added at the end</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter">PainterChain</A></CODE></FONT></TD> <TD><CODE><B>PainterChain.</B><B><A HREF="../../../../../com/codename1/ui/painter/PainterChain.html#prependPainter(com.codename1.ui.Painter)">prependPainter</A></B>(<A HREF="../../../../../com/codename1/ui/Painter.html" title="interface in com.codename1.ui">Painter</A>&nbsp;p)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Creates a new chain based on the existing chain with the new element added at the beginning</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="../../../../../com/codename1/ui/painter/PainterChain.html" title="class in com.codename1.ui.painter"><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="../../../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?com/codename1/ui/painter//class-usePainterChain.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PainterChain.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> </BODY> </HTML>
root/styles/subsilver2/template/kb/view_history.html
pertneer/phpBB3-Knowledgebase
<!-- INCLUDE kb/kb_header.html --> <!-- IF S_VIEW_EDIT --> <table class="tablebg" cellspacing="1" width="100%"> <tr> <th colspan="2"><a href="{U_VIEW_ARTICLE}">{ARTICLE_TITLE}</a></th> </tr> <tr> <td class="row1" width="40%"><b>{L_EDIT_AUTHOR}:</b></td> <td class="row2">{EDIT_AUTHOR}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_EDIT_TIME}:</b></td> <td class="row2">{EDIT_TIME}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_REV_CHANGES}:</b></td> <td class="row2"><p><!-- BEGIN changerow -->{changerow.CHANGE}<br /><!-- END changerow --></p></td> </tr> <!-- IF EDIT_REASON != '' and EDIT_REASON_GLOBAL --> <tr> <td class="row1" width="40%"><b>{L_EDIT_REASON}:</b></td> <td class="row2">{EDIT_REASON}</td> </tr> <!-- ENDIF --> <tr> <td class="row1" width="40%"><b>{L_ARTICLE_TITLE}:</b></td> <td class="row2">{EDIT_TITLE}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_ARTICLE_CAT}:</b></td> <td class="row2">{CAT_NAME}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_ARTICLE_TYPE}:</b></td> <td class="row2">{EDIT_TYPE}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_TAGS}:</b></td> <td class="row2">{EDIT_TAGS}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_ARTICLE_STATUS}:</b></td> <td class="row2">{EDIT_STATUS}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_ARTICLE_DESC}:</b></td> <td class="row2">{ARTICLE_DESC}</td> </tr> <tr> <td class="row1" width="40%"><b>{L_CONTENT}:</b></td> <td class="row2">{ARTICLE_MESSAGE}</td> </tr> <tr> <td class="cat" colspan="2">&nbsp;</td> </tr> </table> <!-- ELSEIF S_VIEW_DIFF --> <style type="text/css"> /* <![CDATA[ */ #main { font-size: 1em; line-height: 0.7em; margin: 0; padding: 0; width: 100%; } div#codepanel { overflow: auto; width: 100%; height: 550px; display: inline-block; } /** * Unified Diff */ .file { line-height: .7em; } .diff { margin: 0; } .added { background-color: #dfd; } .removed { background-color: #fdd; } .info { color: #888; } .context { background-color: #eee; } /** * Inline Diff */ .ins { background-color: #dfd; text-decoration: underline; } .del { background-color: #fdd; text-decoration: line-through; } /** * Column Diff */ table.hrdiff { margin: 0 0 8px 5px; width: 100%; overflow: hidden; border-bottom: 1px solid #999; table-layout: fixed; } table.hrdiff th { text-align: left; width: 50%; color: #333; font-family: Verdana,Helvetica,sans-serif; font-size: 11px; border-bottom: 1px solid #999; background: transparent; } table.hrdiff thead th { font-weight: bold; font-size: 110%; padding: 2px; } table.hrdiff tr:first-child th { border-top: none; } table.hrdiff tbody th { padding: 2em 1px 1px 1px; font-size: 80%; border-top: 1px solid #999; } table.hrdiff tbody td.old { border-left: 1px solid #999; border-right: 1px solid #999; } table.hrdiff tbody td.new { border-right: 1px solid #999; } table.hrdiff td pre { overflow: auto; display: block; width: 100%; overflow: auto; display: block; } table.hrdiff .unmodified { background: #fff; } table.hrdiff .added { background: #9f9; } table.hrdiff .added_empty { background: #cfc; } table.hrdiff .modified { background: #fd9; } table.hrdiff .removed { background: #f99; } table.hrdiff .removed_empty { background: #fcc; } table.hrdiff caption { caption-side: top; text-align: left; margin: 0 0 8px 5px; font-size: 90%; font-weight: bold; padding: 5px; } table.hrdiff caption span { height: 10px; width: 10px; line-height: 10px; letter-spacing: 10px; border: 1px solid #000; margin-left: 0.5em; vertical-align: baseline; } /* ]]> */ </style> <table class="tablebg" cellspacing="1" width="100%"> <tr> <th>{L_VIEWING_EDIT_DIFF}</th> </tr> <tr> <td class="row1"> <div id="diff_content"> <div id="codepanel"> <div id="main"><a name="content"></a> {DIFF_CONTENT} <table style="width: 100%;"> <tr> <td style="width: 50%; text-align: center;"> {L_KB_DIFF_FROM} </td> <td style="width: 50%; text-align: center;"> {L_KB_DIFF_TO} </td> </tr> </table> </div> </div> </div> </td> </tr> </table> <!-- ELSE --> <form action="{U_DIFF_ACTION}" method="get" name="diff_form"> <table class="tablebg" cellspacing="1" width="100%"> <tr> <th width="30%">{L_EDITS}</th> <th width="10%">{L_DIFF_FROM}</th> <th width="10%">{L_DIFF_TO}</th> <th width="30%">{L_EDIT_TIME}</th> <th>{L_STATUS}</th> </tr> <!-- BEGIN editrow --> <tr> <td class="row1"><!-- IF editrow.U_EDIT != '' --><a href="{editrow.U_EDIT}">{editrow.ARTICLE_TITLE}</a><!-- ELSE -->{editrow.ARTICLE_TITLE}<!-- ENDIF --> {editrow.EDIT_BY} <!-- IF editrow.S_NEWEST --><span class="gensmall">&nbsp;<b>({L_NEWEST})</b></span><!-- ELSEIF editrow.S_ORG --><span class="gensmall">&nbsp;<b>({L_ORIGINAL})</b></span><!-- ENDIF --><br /> <!-- IF editrow.U_VIEW_REV != '' -->[ <a href="{editrow.U_EDIT}">{L_VIEW_REV_INFO}</a> ]<!-- ENDIF --></td> <td class="row1" align="center"><!-- IF editrow.S_CAN_DIFF_F --><input type="radio" id="df-{editrow.NUM}" onclick="" name="df" value="{editrow.EDIT_ID}" /><!-- ELSE -->{L_N_A}<!-- ENDIF --></td> <td class="row1" align="center"><!-- IF editrow.S_CAN_DIFF_T --><input type="radio" id="dt-{editrow.NUM}" onclick="" name="dt" value="{editrow.EDIT_ID}" /><!-- ELSE -->{L_N_A}<!-- ENDIF --></td> <td class="row2" align="center">{editrow.EDIT_TIME}</td> <td class="row2" align="center">{editrow.EDIT_STATUS}</td> </tr> <!-- END editrow --> <tr> <td class="cat" colspan="5" align="center"><input name="submit" value="{L_VIEW_DIFF}" class="btnmain" type="submit" /><input name="i" value="history" type="hidden" /><input name="a" value="{ARTICLE_ID}" type="hidden" /></td> </tr> </table> </form> <!-- ENDIF --> <!-- INCLUDE kb/kb_footer.html -->
stanford-postagger/tarea3/lib/javaml-0.1.7/doc/net/sf/javaml/clustering/class-use/DensityBasedSpatialClustering.html
jaimeguzman/data_mining
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_05) on Mon Jul 09 21:14:46 EDT 2012 --> <title>Uses of Class net.sf.javaml.clustering.DensityBasedSpatialClustering (Java Machine Learning Library 0.1.7)</title> <meta name="date" content="2012-07-09"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class net.sf.javaml.clustering.DensityBasedSpatialClustering (Java Machine Learning Library 0.1.7)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../net/sf/javaml/clustering/DensityBasedSpatialClustering.html" title="class in net.sf.javaml.clustering">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/sf/javaml/clustering/class-use/DensityBasedSpatialClustering.html" target="_top">Frames</a></li> <li><a href="DensityBasedSpatialClustering.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class net.sf.javaml.clustering.DensityBasedSpatialClustering" class="title">Uses of Class<br>net.sf.javaml.clustering.DensityBasedSpatialClustering</h2> </div> <div class="classUseContainer">No usage of net.sf.javaml.clustering.DensityBasedSpatialClustering</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../net/sf/javaml/clustering/DensityBasedSpatialClustering.html" title="class in net.sf.javaml.clustering">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?net/sf/javaml/clustering/class-use/DensityBasedSpatialClustering.html" target="_top">Frames</a></li> <li><a href="DensityBasedSpatialClustering.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &#169; 2006-2012 - <a target=_blank href=http://www.abeel.be/>Thomas Abeel</a> - All Rights Reserved.</i> <a href=http://sourceforge.net><img src=http://sflogo.sourceforge.net/sflogo.php?group_id=179204&amp;type=1 width=88 height=31 border=0 alt=SourceForge.netLogo /></a> </small></p> </body> </html>
Schrodinger/Schrodinger_2015-2_docs/maestro/help_MaterialsScience_advanced/scripts/volume_cluster.html
platinhom/ManualHom
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <link rel="stylesheet" href="../support/help.css" charset="ISO-8859-1" type="text/css" /> <title>Clustering Based on Volume Overlap Panel</title> </head> <body> <table bgcolor="#dcdcdc" border="0" cellspacing="0" width="100%"> <tr><td> <p><img src="../images/common/schrodinger_logo.png" align="left" alt="" border="0" hspace="5" vspace="5" /></p> </td></tr> <tr><td> <h1 class="title">Clustering Based on Volume Overlap Panel</h1> </td></tr> </table> <ul> <li><a href="#summary">Summary</a></li> <li><a href="#opening">Opening the <span class="GUI">Clustering Based on Volume Overlap</span> Panel</a></li> <li><a href="#using">Using the <span class="GUI">Clustering Based on Volume Overlap</span> Panel</a></li> <li><a href="#features"><span class="GUI">Clustering Based on Volume Overlap</span> Panel Features</a></li> <li><a href="#links">Related Topics</a></li> </ul> <a name="summary"></a> <h2>Summary</h2> <p>In this panel, you can cluster structures based on their volume overlap, as calculated by the Phase utility <code>phase_volCalc</code>. </p> <a name="opening"></a> <h2>Opening the Clustering Based on Volume Overlap Panel</h2> <p>To open the <span class="GUI">Clustering Based on Volume Overlap</span> panel, you can:</p> <ul> <li><p>Choose <span class="GUI">Tools &rarr; Scripts &rarr; Cheminformatics &rarr; Clustering of Ligands</span> in the main window. </p></li> </ul> <a name="using"></a> <h2>Using the Clustering Based on Volume Overlap Panel</h2> <p>This panel generates a matrix of volume scores for all input molecules. The volume score is the overlap volume of two molecules divided by the total volume occupied by the molecules. The use of the volume score rather than the volume overlap normalizes the volume similarity, so that the diagonal elements of the volume score matrix are 1, and the off-diagonal elements represent the fractional overlap. </p> <p>Once the matrix is generated, it is used to cluster the molecules using a hierarchical agglomerative clustering method. The output is a set of files for a chosen number of clusters or a specified merging cutoff distance, named <i>jobname</i><code>_</code><i>n</i><code>.mae</code>, where <i>n</i> is the cluster index. </p> <p>Volume overlaps are calculated by summing up the occupations of squares on a cubic grid. A cube is occupied if the center of the cube lies inside an atomic sphere. To be included in the volume overlap, each cube must be occupied by atoms from both molecules. The calculated volume is an integer multiple of the cube volume; as such it is not highly accurate (about 0.5% error) but is sufficient for the evaluation of volume overlaps. </p> <p>The volume score is the fraction of the total volume that is common to both molecules. The total volume is calculated by adding up the number of cubes that are occupied by either of the molecules. The volue score can be expressed by (A AND B)/(A OR B), where A and B represent the volume occupied by the two molecules. It is in fact the Tanimoto similarity for the volume. </p> <a name="features"></a> <h2>Clustering Based on Volume Overlap Panel Features</h2> <ul> <li><a href="#feature1">Structure input controls</a></li> <li><a href="#feature2"><span class="GUI">Overlapping volumes</span> section</a></li> <li><a href="#feature3"><span class="GUI">Clustering</span> section</a></li> </ul> <a name="feature1"></a> <h3>Structure input controls</h3> <p>These controls allow you to select the source of the structures. </p> <ul> <li><a href="#feature1.1"><span class="GUI">Use structures from</span> option menu</a></li> <li><a href="#feature1.2"><span class="GUI">Input file</span> text box and <span class="GUI">Browse</span> button</a></li> </ul> <dl> <a name="#feature1.1"></a> <dt><span class="GUI">Use structures from</span> option menu</dt> <dd><p>Choose the source of the structures to cluster from this option menu. The available choices are the Workspace (included entries), the selected entries in the Project Table, and a file. If you choose <span class="GUI">File</span>, the <span class="GUI">Input file</span> option menu and <span class="GUI">Browse</span> button are activated, so you can specify the file. </p></dd> <a name="feature1.2"></a> <dt><span class="GUI">Input file</span> text box and <span class="GUI">Browse</span> button</dt> <dd><p>Specify the input structure file in the text box, by typing in its path, or click <span class="GUI">Browse</span> to navigate to and select the file. </p></dd> </dl> <a name="feature2"></a> <h3>Overlapping volumes section</h3> <p>In this section, you specify the atoms for which you want to calculate the volume overlap (which need not be all atoms), and make settings for how the overlap is calculated. </p> <ul> <li><a href="#feature2.1"><span class="GUI">Use ASL</span> controls</a></li> <li><a href="#feature2.2"><span class="GUI">Include hydrogens</span> option</a></li> <li><a href="#feature2.3"><span class="GUI">Only consider MacroModel atom types</span> option</a></li> <li><a href="#feature2.4"><span class="GUI">Compute volume score</span> option</a></li> <li><a href="#feature2.5"><span class="GUI">Fixed radius</span> option and text box</a></li> <li><a href="#feature2.6"><span class="GUI">Grid spacing</span> text box</a></li> </ul> <dl> <a name="#feature2.1"></a> <dt><span class="GUI">Use ASL</span> controls</dt> <dd><p>Specify the atoms to use when calculating the volume, by providing an ASL expression. You can type it in the text box, or click <span class="GUI">Select</span> to construct an ASL expression for the Workspace structure in the <span class="GUI">Atom Selection</span> dialog box. If you want to start over, click <span class="GUI">Clear</span> to clear the text box. </p></dd> <a name="feature2.2"></a> <dt><span class="GUI">Include hydrogens</span> option</dt> <dd><p>Select this option to include hydrogens in the volume overlap. By default, hydrogens are not included. This option overrides any hydrogen specifications in the ASL expression. </p></dd> <a name="feature2.3"></a> <dt><span class="GUI">Only consider MacroModel atom types</span> option</dt> <dd><p>Select this option to require that atoms have the same MacroModel atom types when calculating the overlap. For a grid cube to be included in the overlap, at least one atom from each molecule with the same MacroModel atom type must occupy the cube. </p></dd> <a name="feature2.4"></a> <dt><span class="GUI">Compute volume score</span> option</dt> <dd><p>Calculate the volume score for the overlap, which is the overlap divided by the total volume. </p></dd> <a name="feature2.5"></a> <dt><span class="GUI">Fixed radius</span> option and text box</dt> <dd><p>Select this option if you want to set the radii of all atoms to a fixed value, and specify the value in the text box. If this option is not selected, the van der Waals radii are used to define the radii of the atomic spheres. </p></dd> <a name="feature2.6"></a> <dt><span class="GUI">Grid spacing</span> text box</dt> <dd><p>Specify the grid spacing (the dimension of the cubes) for the calculation of the volume. The volumes are calculated by summing up the occupied cubes. A cube is occupied if its center is inside an atomic sphere. For the overlap volume, a cube must be occupied by an atom from both molecules; for the total volume, a cube must be occupied by an atom from either molecule. </p></dd> </dl> <a name="feature3"></a> <h3>Clustering section</h3> <p>In this section you can make settings to control the clustering. </p> <ul> <li><a href="#feature3.1"><span class="GUI">Linkage method</span> option menu</a></li> <li><a href="#feature3.2"><span class="GUI">Use N as</span> text box and options</a></li> <li><a href="#feature3.3"><span class="GUI">Incorporate results</span> option</a></li> </ul> <dl> <a name="#feature3.1"></a> <dt><span class="GUI">Linkage method</span> option menu</dt> <dd><p>Choose a linkage method for clustering from the following:</p> <ul> <li>Complete&mdash;The distance between clusters is the largest distance between any pair of objects (one object from each cluster). This option produces compact, spherical clusters.</li> <li>Average&mdash;The distance between clusters is the average distance between all pairs of objects in the two clusters.</li> <li>Single&mdash;The distance between clusters is the smallest distance between any pair of objects (one object from each cluster). This option produces diffuse, elongated clusters.</li> </ul> </dd> <a name="feature3.2"></a> <dt><span class="GUI">Use N as</span> text box and options</dt> <dd><p>Choose the method for determining how many clusters are reported. If you choose <span class="GUI">Number of clusters</span>, the number of clusters for which the output is written out is given by the value in the text box. If you choose <span class="GUI">Merging distance cutoff</span>, the value in the text box is the number of clusters that is formed at or below the merging distance specified in the text box. </p></dd> <a name="feature3.3"></a> <dt><span class="GUI">Incorporate results</span> option</dt> <dd><p>Select this option to incorporate the results as a set of entry groups in the Project Table. The entry groups are named <i>jobname</i><code>_</code><i>n</i>, where <i>n</i> is the cluster index. </p></dd> </dl> <a name="links"></a> <h2>Related Topics</h2> <ul> <li><a href="canvas_cluster.html">Canvas Similarity and Clustering Panel</a></li> <li><a href="spectral_cluster.html">Spectral Clustering Panel</a></li> </ul> <hr /> <table width="100%"> <tr><td><p class="small"><a href="../support/legal_notice.html" target="LegalNoticeWindow">Legal Notice</a></p></td> <td> <table align="right"> <tr><td><p class="small"> File: scripts/volume_cluster.html<br /> Last updated: 12 Nov 2014 </p></td></tr> </table> </td></tr> </table> </body> </html>
046/xwphelp2/objects/string_2wpfolder.html
rousseaux/netlabs.xworkplace
<HTML> <HEAD> <TITLE> &xwp;: WPFolder Str„ngar </TITLE> </HEAD> <!-- V0.9.1: this page is all new with V0.9.1. Its contents have been extracted from the old "xices_30wpsstrings.html" page. --> <!-- V0.9.16: moved this to xwphelp dir from inf.001; changed top HTML tag --> <BODY> <CODE>WPFolder</CODE> „r en WPS klass f”r alla mappar <!-- V0.9.16: added this bracket with link --> (se <A HREF="glossary/gls_wpsclasses.html">WPS klasser</A> f”r detaljer). Som till„gg f”r de inst„llningsstr„ngar som k„nns igen av <CODE><A HREF="objects/string_1wpobject.html">WPObject</A></CODE> klassen, k„nner <CODE>WPFolder</CODE> igen f”ljande str„ngar: <DL> <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <DT><CODE><B>ACCELERATORS</B>={YES|NO|DEFAULT}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om den skall reagera p† mappsnabbkommandon. Inst„llningen korresponderar till den p† <!-- V0.9.16: replaced "XFolder" with "View" --> sidan "Visa" i en mapps notbok med egenskaper. YES eller NO kommer att s„tta den h„r inst„llningen f”r mappen oberoende om vad som specificerades i de globala inst„llningarna, medan DEFAULT kommer att s„tta den h„r inst„llningen till det globala v„rdet. <!-- V0.9.20: rewrote ALWAYSSORT --> <P><DT><CODE><B>ALWAYSSORT</B>={YES|NO|DEFAULT}</CODE> <DD>St„ller in f”r en individuell mapp om den alltid skall beh†lla sin sorteringsordning. ™ppning och addering av ett objekt till mappen kanske kommer att ta l„ngre tid om sorteringsordningen beh†lls. Notera att <CODE>DEFAULT</CODE> optionen endast „r tillg„nglig med &xwp;, vilken kommer att †terst„lla inst„llningen till den du specificerade p† sidan "Sortera" i "Workplace Shell" objektet. <P><DT><CODE><B>BACKGROUND</B>=<I>namn</I>,<I>mode</I>,<I>factor</I>,<I>bgtype</I>,<I>bgcol</I></CODE> <DD>Detta st„ller in mappens bakgrund, d„r: <P><CODE><I>namn</I></CODE> = Bildfilens namn. Namnet m†ste vara en fullt kvalificerad <!-- V0.9.20: link added --> <A HREF="glossary/gls_path.html">s”kv„g</A> f”r bildfilen. "?:\" „r till†tet f”r att indikera bootenheten. <P><CODE><I>mode</I></CODE> = Bild form. Formen kan vara en av f”ljande: <BR><CODE>N</CODE> = Normal bild <BR><CODE>T</CODE> = T„ckande bild <BR><CODE>S</CODE> = Skalad bild <P><CODE><I>factor</I></CODE> = Skalningsfaktor. <P><CODE><I>bgtype</I></CODE> = Bakgrundstyp. Detta kan vara en av f”ljande: <BR><CODE>I</CODE> = Bild <BR><CODE>C</CODE> = F„rg enbart <P><CODE><I>bgcol</I></CODE> = Bakgrundsf„rg. Den h„r f„rgen kan vara en 3 siffrors representerande RGB v„rden, separerade av mellanslag (<CODE>r g b</CODE>, f”r r”da, gr”na och bl†a v„rden). <P>Exempel: <CODE>BACKGROUND=C:\OS2\BITMAP\OS2LOGO.BMP,S,3,I </CODE>eller <CODE>BACKGROUND=(none),,,C,0 128 128</CODE> <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <P><DT><CODE><B>DEFAULTSORT</B>=<I>crit</I></CODE> (endast &xwp;) <DD>Detta kommer att st„lla in standard sorteringskriterier f”r en individuell mapp till n†got annorlunda mot globala sorteringskriterier. <CODE><I>crit</I></CODE> kan vara ett av f”ljande: <BR><CODE> -1 </CODE>sortera genom typ <BR><CODE> -2 </CODE>sortera genom namn <BR><CODE> -3 </CODE>sortera genom objektklass <BR><CODE> -4 </CODE>sortera genom filnamns„ndelse <BR><CODE> 255 </CODE>†terst„ll till globala standard sorteringskriterier <P>Notera att beroende p† mappens sorteringsklass, kan v„rden mellan 0 och 100 ocks† ha st”d. Dessa v„rden korresponderar till index hos objektdetaljkolumner i Detaljvisning och „r klass-specifika. Experimentera med setupstr„ngv„rdena som rapporteras i mappens notbok med egenskaper. <P><DT><CODE><B>DEFAULTVIEW</B>=DEFAULT</CODE> <DD>St„ller in standard ”ppen visning till vad som specificerades i <!-- V0.9.20: replaced system with workplace shell, dammit --> "Workplace Shell" objektet. Detta „r standardv„rdet. <P>Notera att <CODE>DEFAULTVIEW</CODE> verkligen „r en <A HREF="objects/string_1wpobject.html">WPObject setupstr„ng</A>, men meningen med visningsinst„llningen „r endast meningsfull f”r WPObject subklasser, s†dana som WPFolder. <P><DT><CODE><B>DEFAULTVIEW</B>={SETTINGS|ICON|TREE|DETAILS}</CODE> <DD>St„ller in standard ”ppen visning hos den specificerade mappvisningen. <P>Notera att <CODE>DEFAULTVIEW</CODE> verkligen „r en <A HREF="objects/string_1wpobject.html">WPObject setupstr„ng</A>, men meningen med visningsinst„llningen „r endast meningsfull f”r WPObject subklasser, s†dana som WPFolder. <P><DT><CODE><B>DETAILSCLASS</B>=<I>klassnamn</I></CODE> <DD>Detta st„ller in objektklassen f”r vilken detaljerna visas i detaljvisning. Standard objektklass „r WPFileSystem. Du b”r inte „ndra n†got h„r. <P><DT><CODE><B>DETAILSFONT</B>=<I>size</I>.<I>facenamn</I></CODE> <DD>Žndra font som anv„nds f”r en detaljvisning. Till exempel: <CODE>9.WarpSans Bold</CODE>. Standardv„rde „r <CODE>8.Helv</CODE> (p† Warp 3) <P><DT><CODE><B>DETAILSSHADOWCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r ett skuggobjekt i Detaljvisning. <CODE><I>color</I></CODE> kan vara standardf„rgens namn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>DETAILSTEXTCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r normala objekt i Detaljvisning. <CODE><I>color</I></CODE> kan vara standardf„rgens namn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>DETAILSVIEW</B>=<I>stil</I></CODE> <DD>Detta st„ller in detaljvisning till en specificerad stil. M”jliga v„rden „r: <BR><CODE>MINI</CODE> liten ikon; detta „r standard. <BR><CODE>NORMAL</CODE> normal-storlek ikon. <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only", added ifdef --> <IFNDEF __NOFOLDERCONTENTS__> <P><DT><CODE><B>FAVORITEFOLDER</B>={YES|NO}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om dess inneh†ll kan visas fr†n alla &popmenu;er p† ditt system. Den h„r inst„llningen korresponderar till en av <!-- V0.9.16: replaced "XFolder" with "View" --> "Visa" sidorna i mappens notbok med egenskaper. Standard „r NO. Det finns inget globalt v„rde f”r den h„r inst„llningen. </IFNDEF> <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <P><DT><CODE><B>FULLPATH</B>={YES|NO|DEFAULT}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om dess fulla s”kv„g skall visas i dess f”nsterrubrik. Den h„r inst„llningen korresponderar till en av "Visa" sidorna i mappens notbok med egenskaper. YES eller NO kommer att st„lla in den h„r inst„llningen f”r en mapp oberoende vad som specificerades i de globala inst„llningarna, medan DEFAULT kommer att st„lla in den h„r inst„llningen till det globala v„rdet. <P><DT><CODE><B>ICONFONT</B>=<I>size</I>.<I>facenamn</I></CODE> <DD>Setupstr„ng anv„nd f”r att „ndra den font som anv„nds f”r en ikonvisning. Till exempel: <CODE>10.Helv</CODE> <P><DT><CODE><B>ICONNFILE</B>=<I>index</I>,<I>filnamn</I></CODE> <DD>Detta st„ller in ett filnamn f”r animerings (”ppen mapp) ikonen. <CODE><I>index</I></CODE> v„rdet m†ste vara satt till 1. Den specificerade filen (".ICO") inneh†ller mappens ”ppna mappikon. <P><DT><CODE><B>ICONNRESOURCE</B>=<I>index</I>,<I>id</I>,<I>dllfil</I></CODE> <DD>St„ller in animerings (”ppen mapp) ikonen enligt data som finns i en resursfil. <CODE><I>index</I></CODE> v„rdet m†ste vara satt till 1. <CODE><I>id</I></CODE> „r identiteten hos en ikonresurs i en <!-- V0.9.20: added link --> <A HREF="glossary/gls_dll.html">DLL</A> <CODE><I>dllfil</I></CODE>. Den specificerade resursen „r mappens ”ppna mappikon. <P><DT><CODE><B>ICONSHADOWCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r skuggikoner i Ikonvisning. <CODE><I>color</I></CODE> kan vara ett standardf„rgnamn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>ICONTEXTBACKGROUNDCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Bakgrundsf„rg f”r normal text i Ikon, Tr„d och Detaljvisning. <CODE><I>color</I></CODE> kan vara ett standardf„rgnamn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>ICONTEXTCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r normala ikoner i Ikonvisning. <CODE><I>color</I></CODE> kan vara ett standardf„rgnamn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>ICONTEXTVISIBLE</B>={YES|NO}</CODE> <DD>Namnen p† objekten i inneh†llet hos en mapp visas eller visas inte i Ikonvisning. <P><DT><CODE><B>ICONVIEW</B>=<I>stil1</I>[,<I>stil2</I>...]</CODE> <DD>Detta st„ller in ikonvisning till den specificerade stilen. M”jliga v„rden „r: <CODE>FLOWED NOGRID INVISIBLE NONFLOWED MINI NORMAL</CODE> <BR>Standardv„rde „r <CODE>NOGRID,NORMAL</CODE> <BR>Dessa inst„llningar korresponderar till sidan "Ikonvisning" i en mapps notbok med egenskaper. <P><DT><CODE><B>ICONVIEWPOS</B>=<I>x</I>,<I>y</I>,<I>cx</I>,<I>cy</I></CODE> <DD>Detta st„ller in den initiala ikonvisningspositionen och storlek hos mappen p† sk„rmen. Dessa v„rden „r i procent (0-100) av sk„rmens storlek. <P><DT><CODE><B>MENUBAR</B>={YES|NO}</CODE> (endast &warp4; och h”gre) <DD>Menyf„ltet hos en mapp visas eller visas inte. <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only", added ifdef --> <IFNDEF __NOQUICKOPEN__> <P><DT><CODE><B>QUICKOPEN</B>={YES|NO|IMMEDIATE}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om den kommer att bli f”rbefolkad vid Skrivbordets start. Den h„r inst„llningen korresponderar till en av "Visa" sidorna i mappens notbok med egenskaper. YES eller NO kommer att st„lla in den h„r inst„llningen f”r mappen. Standard „r NO. Det finns inget globalt v„rde f”r den h„r inst„llningen. <P>Som ett speciellt kommando, kommer <CODE><B>QUICKOPEN</B>=IMMEDIATE</CODE> att befolka mappen omedelbart. Det kan anv„ndas i ett <!-- V0.9.20: added link --> <A HREF="glossary/gls_cmd_rexx.html">REXX</A> script f”r att framtvinga en befolkning av mappen utan att beh”va ”ppna den. Som ett resultat, blir <CODE><B>QUICKOPEN</B>=IMMEDIATE</CODE> inte n†gon inst„llning, utan snarare ett kommando att utf”ras f”r mappen. </IFNDEF> <P><DT><CODE><B>REMOVEFONTS</B>={YES|NO}</CODE> <DD>Det h„r kan ta bort alla instansfonter fr†n en mapp, m.a.o. de enda som g„ller f”r endast den h„r mappen (specificerad av respektive objekts inst„llningsstr„ng eller i mappens notbok med egenskaper). Standard „r <CODE>NO</CODE>. <BR>Detta „r egentligen inte n†gon "inst„llning", utan snarare ett kommando som skall utf”ras f”r mappen. <P><DT><CODE><B>SHOWALLINTREEVIEW</B>={YES|NO}</CODE> (endast &warp4; och h”gre) <DD>Visa alla objekt i en ”ppen Tr„dvisning eller endast mappar. <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only", added ifndef --> <IFNDEF __NOSNAPTOGRID__> <P><DT><CODE><B>SNAPTOGRID</B>={YES|NO|DEFAULT|EXEC}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om alternativet "L†s till rutn„t" skall upptr„da i mappens &popmenu;. Den h„r inst„llningen korresponderar till en av "Visa" sidorna i mappens notbok med egenskaper. YES eller NO kommer att st„lla in den h„r inst„llningen f”r mappen oberoende om vad som specificerades i de globala inst„llningarna, medan DEFAULT kommer att st„lla in den h„r inst„llningen till det globala v„rdet. EXEC kommer att exekvera "L†s till rutn„t" funktionen hos mappen, precis som om du hade valt den fr†n dess &popmenu;. EXEC „r dock inte n†gon inst„llning, utan ett kommando att utf”ras f”r mappen. </IFNDEF> <P><DT><CODE><B>SORTCLASS</B>=<I>klassnamn</I></CODE> <DD>Detta st„ller in klassobjekt att sortera med. Standard klassobjekt „r WPFileSystem. <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <P><DT><CODE><B>SORTFOLDERSFIRST</B>={YES|NO|DEFAULT}</CODE> (endast &xwp;) <DD>St„ller in f”r en individuell mapp om mappen alltid skall sorteras f”rst. Den h„r inst„llningen korresponderar till en av "Sortera" sidorna i mappens notbok med egenskaper. YES eller NO kommer att st„lla in den h„r inst„llningen f”r mappen oberoende om vad som specificerades i de globala inst„llningarna, medan DEFAULT kommer att st„lla in den h„r inst„llningen till det globala v„rdet. <!-- end V0.9.12 --> <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <P><DT><CODE><B>SORTNOW</B>=<I>crit</I></CODE> (endast &xwp;) <DD>Detta kommer att sortera alla f”r n„rvarande ”ppna visningar hos en individuell mapp utan att „ndra en mapps inst„llning (till skillnad fr†n <CODE>DEFAULTSORT</CODE>). Detta „r egentligen inte n†gon "inst„llning", utan snarare ett kommando som skall utf”ras f”r mappen. <CODE><I>crit</I></CODE> har samma betydelse som <CODE>DEFAULTSORT</CODE>. <!-- V0.9.20: moved this item here from string_3xfolder.html, added "&xwp; only" --> <P><DT><CODE><B>STATUSBAR</B>={YES|NO|DEFAULT}</CODE> (endast &xwp;) <DD>St„ller in synlighetsstatus f”r en individuell mapps statusf„lt. Den h„r inst„llningen korresponderar till en av <!-- V0.9.16: replaced "XFolder" with "View" --> "Visa" sidorna i mappen notbok med egenskaper. YES eller NO kommer att st„lla in den h„r inst„llningen f”r mappen oberoende om vad som specificerades i de globala inst„llningarna, medan DEFAULT kommer att st„lla in den h„r inst„llningen till det globala v„rdet. <P><DT><CODE><B>TREEFONT</B>=<I>size</I>.<I>facenamn</I></CODE> <DD>Setupstr„ng anv„nd f”r att „ndra den font som anv„nds i en Tr„dvisning. Till exempel: <CODE>10.Helv</CODE> <P><DT><CODE><B>TREESHADOWCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r skuggikoner i Tr„dvisning. <CODE><I>color</I></CODE> kan vara ett standardf„rgnamn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>TREETEXTCOLOR</B>=<I>color</I></CODE> (endast &warp4; och h”gre) <DD>Textf„rg f”r normala ikoner i Tr„dvisning. <CODE><I>color</I></CODE> kan vara ett standardf„rgnamn eller en <CODE><I>r g b</I></CODE> upps„ttning nummer (f”r r”da, gr”na och bl†a v„rden). <P><DT><CODE><B>TREETEXTVISIBLE</B>={YES|NO}</CODE> (endast &warp4; och h”gre) <DD>Namnen p† objekten som finns i en mapp visas eller visas inte i Tr„dvisning. <P><DT><CODE><B>TREEVIEW</B>=<I>stil1</I>[,<I>stil2</I>...]</CODE> <DD>Detta st„ller in tr„dvisning till specificerade stilar. M”jliga v„rden „r: <CODE>INVISIBLE LINES MINI NOLINES NORMAL</CODE> <BR>Standardv„rde „r <CODE>LINES, NORMAL</CODE> <BR>Dess inst„llningar korresponderar till sidan "Tr„dvisning" i mappens notbok med egenskaper. <P><DT><CODE><B>WORKAREA</B>={YES|NO}</CODE> <DD>Detta st„ller in mappen s† att den blir en arbetsyta. Standard „r <CODE>NO</CODE>. </DL> </BODY> </HTML>
wp-content/themes/mytheme/style.css
ugarcia/wordpress
/* Theme Name: MyTheme Theme URI: mytheme Description: mantra child theme Author: FrontCoder Author URI: frontcoder.com Template: mantra Version: 1 . First wordpress inheritance attempt. . */ /* Parent styles */ @import url(../mantra/style.css); #access .menu li:hover { background-color: #7DB9E8 ; } #access .menu li:hover a{ color: #BF3500; font-size: 15pt; } /* From wp theme configuration auto-generation */ #content { width: 790px; } #primary, #secondary { width: 250px; } #content iframe { background-color: #d2f3f4; } /* Custom header title styles */ .headerTitle { width: 100%; height: 100%; text-align: center; } .headerTitle h1 { color: #794E4E; margin-right: 1em; font-family: Comic Sans MS; font-size: 26pt; font-weight: bolder; margin-top: .5em; text-shadow: 2px 2px 0 #DFDFDF, -2px -2px 0 #696969, 3px 3px 1px #000000; } #header-container #logo img { width: 32px; height: 32px; } #websites_link { position: absolute; left: 140px; top: 10px; padding: 10px; background: linear-gradient(to right, #1e5799 0%, #7db9e8 50%, #1e5799 100%); background-size: 200% 100%; animation: bg_gradient_move_h 5s infinite linear; -webkit-animation: bg_gradient_move_h 5s infinite linear; box-shadow: 3px 3px 3px #000000; border-radius: 10px; z-index: 1001; } #websites_link:hover { animation: bg_gradient_move_h 1s infinite linear; -webkit-animation: bg_gradient_move_h 0.5s infinite linear; } #websites_link a { display: block; color: #BF3500; font-family: Comic Sans MS; font-size: 20pt; text-shadow: 2px 2px 0 #dfdfdf, -2px -2px 0 #696969, 3px 3px 1px #000000; } @keyframes bg_gradient_move_h { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } } @-webkit-keyframes bg_gradient_move_h { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } } @media screen and (max-width: 480px) { .desktop-only { display: none; } } /* Login with ajax links list styles */ .lwa-info { text-transform: none; } /* Frontier Post Plugin style fixes */ #content .frontier_post_form td { padding: 0; } #content .frontier_post_form #wp-user_post_desc-editor-container, #content .frontier_post_form table, #content .frontier_post_form tr, #content .frontier_post_form td, #content .frontier_post_form td, td.frontier_border { border: 0 !important; border-image: none; } #content .frontier_post_form table td { background-color: #d2f3f4; } #content #user_post_desc_tbl td iframe { background-color: #fefefe; } #content #user_post_desc_toolbargroup td { background-color: #ECECEC; } #content #user_post_title { vertical-align: baseline !important; } /* Next gen Gallery style fixes */ .ngg-widget-slideshow, #content .ngg-widget-slideshow img { margin-left: auto; margin-right: auto; display: block; } .widget_slideshow .widget-title { display: none; } /* Game list styles */ #content .gameLink { display: inline-block; text-align: center; margin: 3em; } #content .gameLink img { width: 8em; height: 8em; } /* Youtube videos styles */ #content .relatedYouTubeVideos >li { background-image: none; display: inline; padding-left: 0; } #content .relatedYouTubeVideos >li object { margin: 1em; } /* Laatest news video styles */ #content .latestNewsVideo { text-align: center; } #content .newsEntry { border: 1px ridge #66aa66; background-color: #cdeefb; border-radius: 10px; margin: 1em; width: 45%; float: left; } #content .newsEntry h2 { border: 1px ridge #66aa66; background-color: #97cef5; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 0 1em; margin: 0; } #content .newsEntry p, #content .newsEntry a { padding: 0 1em; margin-bottom: 0; } #content > ul.yoyo > ul.relatedYouTubeVideos { text-align: center; }
themes/custom/mta_new/styles/css/generated/mobile-blocks.css
raghavdev/project6
@media all and (max-width: 45em) { } @media all and (min-width: 45.0625em) and (max-width: 60em) { } @media all and (min-width: 60.0625em) { }
templates/view_note.tpl.html
eventum/eventum
{extends "base.tpl.html"} {block "title"}#{$issue_id} - {$extra_title}{/block} {block "content"} {if $note == ''} <br /> <table width="100%" align="center"> <tr> <td align="center"> &nbsp;<span>{t}The specified note does not exist.{/t} <br /> {t}It could have been converted to an email.{/t} <br /><br /> &nbsp;<a href="javascript:self.close();">{t}Close{/t}</a></span> </td> </tr> </table> {else} <script type="text/javascript"> <!-- function reply(id, issue_id) { window.location.href = 'post_note.php?cat=reply&id=' + id + '&issue_id=' + issue_id; } function replyAsEmail(id, issue_id) { window.location.href = 'send.php?cat=reply_to_note&note_id=' + id + '&issue_id=' + issue_id; } function openRawHeaders() { var features = 'width=740,height=580,top=60,left=60,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no'; var headersWin = window.open('view_headers.php?cat=note&id={$smarty.get.id|intval}', '_headers', features); headersWin.focus(); } function viewNote(id) { window.location.href = 'view_note.php?id=' + id; } //--> </script> <form method="post" action="popup.php"> <table align="center" class="bordered internal"> <tr class="title"> <th colspan="2"> {t}View Note Details{/t} {if $issue_id} {t escape=no 1=$issue_id 2="{$core.rel_url}view.php?id={$issue_id}" }(Associated with Issue <a href="%2">#%1</a>){/t} {/if} </th> </tr> {if $next != "" || $previous != ""} <tr class="buttons"> <td colspan="2"> {if $previous != ""} <input type="button" value="&lt;&lt; {t}Previous Note{/t}" onClick="viewNote({$previous});"> {/if} <div class="right"> {if $next != ""} <input type="button" value="{t}Next Note{/t} &gt;&gt;" onClick="viewNote({$next});"> {/if} </div> </td> </tr> {/if} <tr> <th width="120"> {t}Posted Date{/t}: </th> <td> {$note.not_created_date|timeago} </td> </tr> <tr> <th width="120"> {t}From{/t}: </th> <td> {$note.not_from|escape:"html"} </td> </tr> {if $recipients|@count > 0} <tr> <th width="120"> {t}Recipients{/t}: </th> <td> {strip} {section name="i" loop=$recipients} {if not $smarty.section.i.first}, {/if} {$recipients[i]|escape:"html"} {/section} {/strip} </td> </tr> {/if} <tr> <th width="120"> {t}Title{/t}: </th> <td> {$note.not_title|default:"<Empty Title>"|escape:"html"} </td> </tr> {if $note.attachments|default:'' != ''} <tr> <th width="120"> {t}Attachments{/t}: </th> <td> {section name="i" loop=$note.attachments} <i class="fa fa-paperclip" aria-hidden="true"></i> <a title="{t}download file{/t}" href="get_attachment.php?cat=blocked_email&note_id={$note.not_id}&filename={$note.attachments[i].filename}{if $note.attachments[i].cid}&cid={$note.attachments[i].cid|escape:"html"}{/if}">{$note.attachments[i].filename}</a><br /> {/section} </td> </tr> {/if} <tr> <td colspan="2"> {t}Message{/t}: <span class="small_default_white">(<a class="white_link" href="javascript:void(null);" onClick="Eventum.displayFixedWidth($('#email_message'))">{t}display in fixed width font{/t}</a>)</span> <div class="right"> {if $note.has_blocked_message} <a class="white_link" href="javascript:void(null);" onClick="openRawHeaders();">{t}Blocked Message Raw Headers{/t}</a> {/if} </div> </td> </tr> <tr> <td colspan="2" id="email_message"> {$note.not_note|textFormat:$issue_id} </td> </tr> <tr class="buttons"> <td colspan="2"> <input type="button" value="{t}Reply{/t}" onClick="reply({$smarty.get.id|intval}, {$issue_id});">&nbsp;&nbsp; <input type="button" value="{t}Reply as Email{/t}" onClick="replyAsEmail({$smarty.get.id|intval}, {$issue_id});">&nbsp;&nbsp; <input type="button" value="{t}Close{/t}" onClick="window.close();"> </td> </tr> {if $next != "" || $previous != ""} <tr class="buttons"> <td colspan="2"> {if $previous != ""} <input type="button" value="&lt;&lt; {t}Previous Note{/t}" onClick="viewNote({$previous});"> {/if} <div class="right"> {if $next != ""} <input type="button" value="{t}Next Note{/t} &gt;&gt;" onClick="viewNote({$next});"> {/if} </div> </td> </tr> {/if} </table> </form> {/if} {/block}
output/build/libglib2-2.30.3/docs/reference/gio/html/GDBusObject.html
twobob/buildroot-kindle
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>GDBusObject</title> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="index.html" title="GIO Reference Manual"> <link rel="up" href="gdbus-convenience.html" title="Highlevel D-Bus Support"> <link rel="prev" href="GDBusProxy.html" title="GDBusProxy"> <link rel="next" href="GDBusObjectSkeleton.html" title="GDBusObjectSkeleton"> <meta name="generator" content="GTK-Doc V1.18 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"> <tr valign="middle"> <td><a accesskey="p" href="GDBusProxy.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td> <td><a accesskey="u" href="gdbus-convenience.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td> <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td> <th width="100%" align="center">GIO Reference Manual</th> <td><a accesskey="n" href="GDBusObjectSkeleton.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td> </tr> <tr><td colspan="5" class="shortcuts"> <a href="#GDBusObject.synopsis" class="shortcut">Top</a>  |  <a href="#GDBusObject.description" class="shortcut">Description</a>  |  <a href="#GDBusObject.object-hierarchy" class="shortcut">Object Hierarchy</a>  |  <a href="#GDBusObject.prerequisites" class="shortcut">Prerequisites</a>  |  <a href="#GDBusObject.implementations" class="shortcut">Known Implementations</a>  |  <a href="#GDBusObject.signals" class="shortcut">Signals</a> </td></tr> </table> <div class="refentry"> <a name="GDBusObject"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> <h2><span class="refentrytitle"><a name="GDBusObject.top_of_page"></a>GDBusObject</span></h2> <p>GDBusObject — Base type for D-Bus objects</p> </td> <td valign="top" align="right"></td> </tr></table></div> <div class="refsynopsisdiv"> <a name="GDBusObject.synopsis"></a><h2>Synopsis</h2> <pre class="synopsis"> #include &lt;gio/gio.h&gt; <a class="link" href="GDBusObject.html#GDBusObject-struct" title="GDBusObject">GDBusObject</a>; struct <a class="link" href="GDBusObject.html#GDBusObjectIface" title="struct GDBusObjectIface">GDBusObjectIface</a>; const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GDBusObject.html#g-dbus-object-get-object-path" title="g_dbus_object_get_object_path ()">g_dbus_object_get_object_path</a> (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>); <a href="./../glib/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * <a class="link" href="GDBusObject.html#g-dbus-object-get-interfaces" title="g_dbus_object_get_interfaces ()">g_dbus_object_get_interfaces</a> (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>); <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="returnvalue">GDBusInterface</span></a> * <a class="link" href="GDBusObject.html#g-dbus-object-get-interface" title="g_dbus_object_get_interface ()">g_dbus_object_get_interface</a> (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *interface_name</code></em>); </pre> </div> <div class="refsect1"> <a name="GDBusObject.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> GInterface +----GDBusObject </pre> </div> <div class="refsect1"> <a name="GDBusObject.prerequisites"></a><h2>Prerequisites</h2> <p> GDBusObject requires <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p> </div> <div class="refsect1"> <a name="GDBusObject.implementations"></a><h2>Known Implementations</h2> <p> GDBusObject is implemented by <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy">GDBusObjectProxy</a> and <a class="link" href="GDBusObjectSkeleton.html" title="GDBusObjectSkeleton">GDBusObjectSkeleton</a>.</p> </div> <div class="refsect1"> <a name="GDBusObject.signals"></a><h2>Signals</h2> <pre class="synopsis"> "<a class="link" href="GDBusObject.html#GDBusObject-interface-added" title='The "interface-added" signal'>interface-added</a>" : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a> "<a class="link" href="GDBusObject.html#GDBusObject-interface-removed" title='The "interface-removed" signal'>interface-removed</a>" : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a> </pre> </div> <div class="refsect1"> <a name="GDBusObject.description"></a><h2>Description</h2> <p> The <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> type is the base type for D-Bus objects on both the service side (see <a class="link" href="GDBusObjectSkeleton.html" title="GDBusObjectSkeleton"><span class="type">GDBusObjectSkeleton</span></a>) and the client side (see <a class="link" href="GDBusObjectProxy.html" title="GDBusObjectProxy"><span class="type">GDBusObjectProxy</span></a>). It is essentially just a container of interfaces. </p> </div> <div class="refsect1"> <a name="GDBusObject.details"></a><h2>Details</h2> <div class="refsect2"> <a name="GDBusObject-struct"></a><h3>GDBusObject</h3> <pre class="programlisting">typedef struct _GDBusObject GDBusObject;</pre> <p> </p> </div> <hr> <div class="refsect2"> <a name="GDBusObjectIface"></a><h3>struct GDBusObjectIface</h3> <pre class="programlisting">struct GDBusObjectIface { GTypeInterface parent_iface; /* Virtual Functions */ const gchar *(*get_object_path) (GDBusObject *object); GList *(*get_interfaces) (GDBusObject *object); GDBusInterface *(*get_interface) (GDBusObject *object, const gchar *interface_name); /* Signals */ void (*interface_added) (GDBusObject *object, GDBusInterface *interface_); void (*interface_removed) (GDBusObject *object, GDBusInterface *interface_); }; </pre> <p> Base object type for D-Bus objects. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><a href="./../gobject/gobject/gobject-Type-Information.html#GTypeInterface"><span class="type">GTypeInterface</span></a> <em class="structfield"><code><a name="GDBusObjectIface.parent-iface"></a>parent_iface</code></em>;</span></p></td> <td>The parent interface.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectIface.get-object-path"></a>get_object_path</code></em> ()</span></p></td> <td>Returns the object path. See <a class="link" href="GDBusObject.html#g-dbus-object-get-object-path" title="g_dbus_object_get_object_path ()"><code class="function">g_dbus_object_get_object_path()</code></a>.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectIface.get-interfaces"></a>get_interfaces</code></em> ()</span></p></td> <td>Returns all interfaces. See <a class="link" href="GDBusObject.html#g-dbus-object-get-interfaces" title="g_dbus_object_get_interfaces ()"><code class="function">g_dbus_object_get_interfaces()</code></a>.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectIface.get-interface"></a>get_interface</code></em> ()</span></p></td> <td>Returns an interface by name. See <a class="link" href="GDBusObject.html#g-dbus-object-get-interface" title="g_dbus_object_get_interface ()"><code class="function">g_dbus_object_get_interface()</code></a>.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectIface.interface-added"></a>interface_added</code></em> ()</span></p></td> <td>Signal handler for the <a class="link" href="GDBusObject.html#GDBusObject-interface-added" title='The "interface-added" signal'><span class="type">"interface-added"</span></a> signal.</td> </tr> <tr> <td><p><span class="term"><em class="structfield"><code><a name="GDBusObjectIface.interface-removed"></a>interface_removed</code></em> ()</span></p></td> <td>Signal handler for the <a class="link" href="GDBusObject.html#GDBusObject-interface-removed" title='The "interface-removed" signal'><span class="type">"interface-removed"</span></a> signal.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-get-object-path"></a><h3>g_dbus_object_get_object_path ()</h3> <pre class="programlisting">const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * g_dbus_object_get_object_path (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>);</pre> <p> Gets the object path for <em class="parameter"><code>object</code></em>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>A string owned by <em class="parameter"><code>object</code></em>. Do not free.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-get-interfaces"></a><h3>g_dbus_object_get_interfaces ()</h3> <pre class="programlisting"><a href="./../glib/glib/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * g_dbus_object_get_interfaces (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>);</pre> <p> Gets the D-Bus interfaces associated with <em class="parameter"><code>object</code></em>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a>.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td>(element-type GDBusInterface) (transfer full) : A list of <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> instances. The returned list must be freed by <a href="./../glib/glib/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a> after each element has been freed with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="g-dbus-object-get-interface"></a><h3>g_dbus_object_get_interface ()</h3> <pre class="programlisting"><a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="returnvalue">GDBusInterface</span></a> * g_dbus_object_get_interface (<em class="parameter"><code><a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object</code></em>, <em class="parameter"><code>const <a href="./../glib/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *interface_name</code></em>);</pre> <p> Gets the D-Bus interface with name <em class="parameter"><code>interface_name</code></em> associated with <em class="parameter"><code>object</code></em>, if any. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td> <td>A <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a>.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface_name</code></em> :</span></p></td> <td>A D-Bus interface name.</td> </tr> <tr> <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td> <td> <a href="./../glib/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if not found, otherwise a <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> that must be freed with <a href="./../gobject/gobject/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span> </td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> </div> <div class="refsect1"> <a name="GDBusObject.signal-details"></a><h2>Signal Details</h2> <div class="refsect2"> <a name="GDBusObject-interface-added"></a><h3>The <code class="literal">"interface-added"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object, <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> *interface, <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre> <p> Emitted when <em class="parameter"><code>interface</code></em> is added to <em class="parameter"><code>object</code></em>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> emitting the signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface</code></em> :</span></p></td> <td>The <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> that was added.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>user data set when the signal handler was connected.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> <hr> <div class="refsect2"> <a name="GDBusObject-interface-removed"></a><h3>The <code class="literal">"interface-removed"</code> signal</h3> <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> *object, <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> *interface, <a href="./../glib/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="./../gobject/gobject/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre> <p> Emitted when <em class="parameter"><code>interface</code></em> is removed from <em class="parameter"><code>object</code></em>. </p> <div class="variablelist"><table border="0"> <col align="left" valign="top"> <tbody> <tr> <td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td> <td>The <a class="link" href="GDBusObject.html" title="GDBusObject"><span class="type">GDBusObject</span></a> emitting the signal.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>interface</code></em> :</span></p></td> <td>The <a class="link" href="GDBusInterface.html" title="GDBusInterface"><span class="type">GDBusInterface</span></a> that was removed.</td> </tr> <tr> <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td> <td>user data set when the signal handler was connected.</td> </tr> </tbody> </table></div> <p class="since">Since 2.30</p> </div> </div> </div> <div class="footer"> <hr> Generated by GTK-Doc V1.18</div> </body> </html>
src/js/widgets/preferences/templates/orcid-name-row-template.html
aholachek/bumblebee
<div class="orcid-name-row"> <input class="form-control input-list__input" type="text" placeholder="Last, First Middle"> <button class="btn btn-danger btn-inverse remove-name" title="remove this name"><i class="fa fa-minus-circle"></i></button> </div>
sea/2/1994_December_12_1_VW.html
csepuser/EthicsPublicHtmlTest
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><!-- InstanceBegin template="/Templates/new_sea.dwt" codeOutsideHTMLIsLocked="false" --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/jScrollPane.css" media="all" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/style_sea.css" media="all" /> <link rel="stylesheet" type="text/css" href="http://ethics.iit.edu/sea/styles/superfish.css" media="screen" /> <title>Center for the Study of Ethics in the Professions at IIT</title> <link rel="shortcut icon" href="http://ethics.iit.edu/newlayout/favicon.ico" /> <meta name="keywords" title="keywords" content="" /> <meta name="description" content="" /> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-8938192-11']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> <script src="http://code.jquery.com/jquery-1.7.1.js"></script> <script src="http://ethics.iit.edu/sea/js/jScrollPane.js"></script> <script src="http://ethics.iit.edu/sea/js/hoverIntent.js"></script> <script src="http://ethics.iit.edu/sea/js/superfish.js"></script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-3621988-3"); pageTracker._trackPageview(); </script> <script type="text/javascript"> $(function(){ $('#inner').jScrollPane(); }); $(document).ready(function(){ $("ul.sf-menu").superfish(); }); </script> </head> <body> <div id="wrapper"> <div id="banner"></div> <a name="home"></a> <div style="width: 80em; height: 2.5em;"> <ul class="sf-menu sf-js-enabled sf-shadow"> <li ><a href="http://ethics.iit.edu/sea/sea.php/100" style="color:white;" >Home</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/1" style="color:white;" >About</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/31" style="color:white;" class="sf-with-ul" >Guides</a> <ul style="display: none; visibility: hidden; "> <li ><a href="http://ethics.iit.edu/sea/sea.php/2" style="color:white;" class="sf-with-ul" >Index by Date</a> <ul style="display: none; visibility: hidden; left:20em; top: -1px; "> <li ><a href="http://ethics.iit.edu/sea/sea.php/11" style="color:white;" >1991</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/12" style="color:white;" >1992</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/13" style="color:white;" >1993</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/14" style="color:white;" >1994</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/15" style="color:white;" >1995</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/16" style="color:white;" >1996</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/17" style="color:white;" >1997</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/18" style="color:white;" >1998</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/19" style="color:white;" >1999</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/20" style="color:white;" >2000</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/21" style="color:white;" >2001</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/22" style="color:white;" >2002</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/25" style="color:white;" >2005</a></li> </ul> </li> <li ><a href="http://ethics.iit.edu/sea/sea.php/3" style="color:white;" >Requesting Access</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/4" style="color:white;" >Versions of SE Code of Ethics</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/5" style="color:white;" >Bibliography</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/6" style="color:white;" >Interviews of Participants</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/7" style="color:white;" >Acronyms</a></li> </ul> </li> <li ><a href="http://ethics.iit.edu/sea/sea.php/9" style="color:white;" >CodeMaking</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/8" style="color:white;" >Search</a></li> <li ><a href="http://ethics.iit.edu/sea/sea.php/32" style="color:white;" >Contact</a></li> <li ><a href="http://ethics.iit.edu/" style="color:white; border-right:1px solid white;" >CSEP</a></li> </ul> </div> <div style=" width: 76em; height:auto; padding:2em; min-height:64.6em;"> <div id="viewer"> <div id="content"> <div id="organization"> <strong>Author: </strong><!-- InstanceBeginEditable name="author" --> Vivian Weil<!-- InstanceEndEditable --></div> <div id="approved"> <strong>Date:</strong> <!-- InstanceBeginEditable name="date" --> December 12, 1994<!-- InstanceEndEditable --> </div> <div id="approved"> <strong>Subject: </strong><!-- InstanceBeginEditable name="subject" -->Preliminary to writing proposal of 1995 to study online drafting (by Vivian Weil)<!-- InstanceEndEditable --></div> <div id="source"> <strong> Recepient: </strong><!-- InstanceBeginEditable name="recepient" --> Unknown<!-- InstanceEndEditable --></div> <div id="source"> <strong> Format: </strong><!-- InstanceBeginEditable name="format" --> Format <!-- InstanceEndEditable --></div> <div id="previous"> <strong> Source: </strong><!-- InstanceBeginEditable name="source" --> Vivian Weil<!-- InstanceEndEditable --></div> <div id="title"> <h3> <!-- InstanceBeginEditable name="title" -->Initial Project Proposal <title> Preliminary to writing proposal of 1995 to study online drafting (by Vivian Weil) - December 12, 1994 (Level 2)</title> Photocopy<!-- InstanceEndEditable --> </h3></div> <!-- InstanceBeginEditable name="content" --><a href="1994_December_12_1_VW.pdf"> </a> <p><a href="1994_December_12_1_VW.pdf">PDF of Document</a></p> <p>December 12, 1994 <p>This project would 1) draw bear the history and experience of the IEEE and other major engineering societies to assist the IEEE and the ACM in fostering an orientation toward individual responsibility and professionalism among software specialists It would be directed to software specialists, whether they have been trained in engineering, computer science, another college major, or in companies. 2) study the various technical procedures and standards which have been and are being proposed and tested to determine whether some have been or can be adopted or recommended by professional societies as options for improving quality, reliability, and safety 3) study the codes of ethics of IEEE, ACM, and other engineering societies to see whether they are adequate or how they might be supplemented to meet the needs of software specialists 4) study the legal environment in is which producers of software operate to see what legal resources presently exist to support the acres of 1), 2), and 3) above and what new measures might he considered .The project will seek ways to overcome any tension: between the approaches of engineering end computer science to training and between the role of technical methods and ethical standards promoting appropriate standards of care.</p> <p>Vivian Well</p> <div class="returntotop"><a href="#">return to top</a></div><!-- InstanceEndEditable --> <div class="returntotop"><a href="#home">return to top</a></div> </div> </div> </div> <div id="footer"> <p>&#169; 2012 Center for the Study of Ethics in the Professions at IIT Hermann Hall, Rm. 205 3241 S Federal Street Chicago, IL 60616 <br /> Phone: 312.567.3017 Fax: 312.567.3016 Email: csep@iit.edu </p> </div> </div> </body> <!-- InstanceEnd --></html>
Source/WebInspectorUI/UserInterface/Views/NetworkSidebarPanel.css
qtproject/qtwebkit
/* * Copyright (C) 2015 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. */ .sidebar > .panel.navigation.network > :matches(.content, .empty-content-placeholder) { top: 52px; } .sidebar > .panel.navigation.network > .navigation-bar { position: absolute; top: 0; left: 0; right: 0; } .sidebar > .panel.navigation.network > .title-bar { position: absolute; top: 29px; left: 0; right: 0; height: 23px; border-bottom: 1px solid var(--border-color); background-color: var(--panel-background-color); color: hsl(0, 0%, 22%); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: bold; padding: 4px 9px; white-space: nowrap; overflow: hidden; } .sidebar > .panel.navigation.network.network-grid-content-view-showing > .content { /* This hides the scrollbar. The view shows a scrollbar, we don't need two. */ padding-right: 16px; right: -16px; } .sidebar > .panel.navigation.network .item:not(:hover, .selected) .status .status-button, .sidebar > .panel.navigation.network .item:hover:not(.selected) .status .close.status-button { display: none; } .sidebar > .panel.navigation.network:not(.network-grid-content-view-showing) .status .go-to-arrow.status-button { display: none; } .sidebar > .panel.navigation.network.network-grid-content-view-showing .status .close.status-button { display: none; } .sidebar > .panel.navigation.network.network-grid-content-view-showing .tree-outline.network-grid .item .subtitle { display: none; } .sidebar > .panel.navigation.network > .content > .tree-outline { min-height: 100%; background-image: none; } .sidebar > .panel.navigation.network.network-grid-content-view-showing > .content > .tree-outline { background-image: linear-gradient(to bottom, transparent, transparent 50%, hsla(0, 0%, 0%, 0.03) 50%, hsla(0, 0%, 0%, 0.03)); background-size: 100% 40px; }
sql/Tools & Optional/Websites/I_CSwowd/pvpmini/shared/wow-com/images/basics/talents/blacklayout/thin-gold-top-left.html
borgotech/Infinity_MaNGOS
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>404 Not Found</title> </head><body> <h1>Not Found</h1> <p>The requested URL /shared/wow-com/images/basics/talents/blacklayout/thin-gold-top-left.gif was not found on this server.</p> </body></html>
html/classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread-members.html
tefino/blackadder-cinc
<!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"/> <title>Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.6.3 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</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> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>eu::pursuit::vopsi::Node::ReceiverThread Member List</h1>This is the complete list of members for <a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a>, including all inherited members.<table> <tr bgcolor="#f0f0f0"><td><b>finish</b>() (defined in <a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a>)</td><td><a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a></td><td><code> [inline]</code></td></tr> <tr bgcolor="#f0f0f0"><td><b>ReceiverThread</b>(PPChannelReceiver channelRecv, BlockingQueue&lt; VoicePacket &gt; dataQueue) (defined in <a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a>)</td><td><a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a></td><td><code> [inline]</code></td></tr> <tr bgcolor="#f0f0f0"><td><b>run</b>() (defined in <a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a>)</td><td><a class="el" href="classeu_1_1pursuit_1_1vopsi_1_1Node_1_1ReceiverThread.html">eu::pursuit::vopsi::Node::ReceiverThread</a></td><td><code> [inline]</code></td></tr> </table></div> <hr class="footer"/><address style="text-align: right;"><small>Generated on Sat Jul 28 13:38:06 2012 by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.3 </small></address> </body> </html>
public/modules/search/searchResults.template.html
MichalTuleja/oculus-frontend
<div class="container"> <div class="row"> <div class="col-xs-12"> <h3>Search results</h3> <form ng-submit="onEnterKey()"> <div class="form-group"> <input type="input" class="form-control" placeholder="Search expression" ng-model="searchExpr"/> </div> </form> </div> </div> <div class="row"> <div class="col-lg-10"> <div class="list-group"> <a ng-repeat="patient in results track by $index" href="/#/patient/{{ patient.id }}/summary" class="list-group-item"> <strong>{{ patient.personalData.firstName }} {{ patient.personalData.lastName }}</strong> <small>({{ patient.personalData.dateOfBirth }})<br/> <small>{{ patient.personalData.passportNumber }}</small><br/> <span style="color: grey">{{ patient.personalData.phoneNumber }}</span></small> </a> </div> </div> </div> </div>
media/com_acymailing/css/component_default_shadow_red.css
mounaimlatif/game5
/** * @package AcyMailing for Joomla! * @version 4.1.0 * @author acyba.com * @copyright (C) 2009-2013 ACYBA S.A.R.L. All rights reserved. * @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html */ @import url("component_default_shadow_black.css"); #acyarchivelisting .button, #acymodifyform .button, #unsubbutton_div .button { color:#fff !important; background-color:#730028 !important; background-image: linear-gradient(bottom, #770000 21%, #bc1f00 58%) !important; background-image: -o-linear-gradient(bottom, #770000 21%, #bc1f00 58%) !important; background-image: -moz-linear-gradient(bottom, #770000 21%, #bc1f00 58%) !important; background-image: -webkit-linear-gradient(bottom, #770000 21%, #bc1f00 58%) !important; background-image: -ms-linear-gradient(bottom, #770000 21%, #bc1f00 58%) !important; background: -ms-linear-gradient(top, ellipse cover, #770000 0%,#bc1f00 100%); background: radial-gradient(top, ellipse cover, #770000 0%,#bc1f00 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#BC1F00', endColorstr='#770000',GradientType=0 ) !important; } #acyarchivelisting .button:hover, #acymodifyform .button:hover, #unsubbutton_div .button:hover{ color:#fff !important; background-color:#bc1f00 !important; background-image: linear-gradient(bottom, #b00303 21%, #ee0000 58%) !important; background-image: -o-linear-gradient(bottom, #b00303 21%, #ee0000 58%) !important; background-image: -moz-linear-gradient(bottom, #b00303 21%, #ee0000 58%) !important; background-image: -webkit-linear-gradient(bottom, #b00303 21%, #ee0000 58%) !important; background-image: -ms-linear-gradient(bottom, #b00303 21%, #ee0000 58%) !important; background: -ms-linear-gradient(top, ellipse cover, #b00303 0%,#ee0000 100%); background: radial-gradient(top, ellipse cover, #b00303 0%,#ee0000 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee0000', endColorstr='#b00303',GradientType=0 ) !important; } #acyarchivelisting .contentheading{ color:#770000; border-bottom:1px solid #770000; } #acyarchivelisting .contentpane .contentdescription{ color:#bc1f00; } #acyarchivelisting .sectiontableheader a:hover{ color:#bc1f00; } #acyarchivelisting .contentpane tbody .sectiontableentry1 a:hover{ color:#bc1f00; } #acyarchivelisting .contentpane tbody .sectiontableentry2 a:hover{ color:#bc1f00; } #acyarchiveview .contentheading{ color:#bc1f00;} #acylistslisting .componentheading{ color:#770000; border-bottom:1px solid #770000; } #acylistslisting .list_name a{ color:#bc1f00; } #acylistslisting .list_name a:hover, #acylistslisting .list_name a:focus { color:#bc1f00; } #acymodifyform legend{ color:#770000; border-bottom:1px solid #770000; } #acyusersubscription .list_name{ color: #bc1f00; } #unsubpage .unsubintro{ color:#bc1f00; border-bottom: 1px solid #bc1f00; } #unsubpage .unsubsurveytext{ border-bottom: 1px solid #bc1f00; color: #bc1f00; }
toolchain/linaro_gnueabihf/share/doc/gcc-linaro-arm-linux-gnueabihf/html/gdb/Process-list.html
fards/ainol_elfii_common
<html lang="en"> <head> <title>Process list - Debugging with GDB</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Debugging with GDB"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="Operating-System-Information.html#Operating-System-Information" title="Operating System Information"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with the Invariant Sections being ``Free Software'' and ``Free Software Needs Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. (a) The FSF's Back-Cover Text is: ``You are free to copy and modify this GNU Manual. Buying copies from GNU Press supports the FSF in developing GNU and promoting software freedom.''--> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="Process-list"></a> <p> Up:&nbsp;<a rel="up" accesskey="u" href="Operating-System-Information.html#Operating-System-Information">Operating System Information</a> <hr> </div> <h3 class="appendixsec">H.1 Process list</h3> <p><a name="index-operating-system-information_002c-process-list-2706"></a> When requesting the process list, the <var>annex</var> field in the &lsquo;<samp><span class="samp">qXfer</span></samp>&rsquo; request should be &lsquo;<samp><span class="samp">processes</span></samp>&rsquo;. The returned data is an XML document. The formal syntax of this document is defined in <samp><span class="file">gdb/features/osdata.dtd</span></samp>. <p>An example document is: <pre class="smallexample"> &lt;?xml version="1.0"?&gt; &lt;!DOCTYPE target SYSTEM "osdata.dtd"&gt; &lt;osdata type="processes"&gt; &lt;item&gt; &lt;column name="pid"&gt;1&lt;/column&gt; &lt;column name="user"&gt;root&lt;/column&gt; &lt;column name="command"&gt;/sbin/init&lt;/column&gt; &lt;column name="cores"&gt;1,2,3&lt;/column&gt; &lt;/item&gt; &lt;/osdata&gt; </pre> <p>Each item should include a column whose name is &lsquo;<samp><span class="samp">pid</span></samp>&rsquo;. The value of that column should identify the process on the target. The &lsquo;<samp><span class="samp">user</span></samp>&rsquo; and &lsquo;<samp><span class="samp">command</span></samp>&rsquo; columns are optional, and will be displayed by <span class="sc">gdb</span>. The &lsquo;<samp><span class="samp">cores</span></samp>&rsquo; column, if present, should contain a comma-separated list of cores that this process is running on. Target may provide additional columns, which <span class="sc">gdb</span> currently ignores. </body></html>
src/plugins/oer/overlay/css/popover.css
oerpub/Aloha-Editor
.aloha.popover button { border: 1px; padding: 4px 12px; } .aloha.popover label { font-weight: bold; padding-left: 20px; } .aloha.popover .popover-content { padding: 9px 14px; }
wp-content/plugins/cookie-opt-in/css/admin.css
Xaar/wplearn
#cookie th { text-align: left; } #cookie .h { background-color: #888; color: #FFF; font-size: 15px; border: 1px solid #888888; -webkit-border-radius: 11px 11px 0 0; -moz-border-radius: 11px 11px 0 0; -ms-border-radius: 11px 11px 0 0; -o-border-radius: 11px 11px 0 0; border-radius: 11px 11px 0 0; } #cookie th,td { vertical-align: top; padding: 10px; } #cookie td textarea { width: 100%; height: 150px; } #cookie td input[type=text], #cookie td select { width: 100%; } #cookie .left { border-left: 1px solid #888888; } #cookie .right { border-right: 1px solid #888888; } #cookie .closer td { border-bottom: 1px solid #888888; } #cookie tr.closer .left { -webkit-border-radius: 0 0 0 11px; -moz-border-radius: 0 0 0 11px; -ms-border-radius: 0 0 0 11px; -o-border-radius: 0 0 0 11px; border-radius: 0 0 0 11px; } #cookie tr.closer .right { -webkit-border-radius: 0 0 11px 0; -moz-border-radius: 0 0 11px 0; -ms-border-radius: 0 0 11px 0; -o-border-radius: 0 0 11px 0; border-radius: 0 0 11px 0; } #cookie .lefth { -webkit-border-radius: 11px 0 0 0; -moz-border-radius: 11px 0 0 0; -ms-border-radius: 11px 0 0 0; -o-border-radius: 11px 0 0 0; border-radius: 11px 0 0 0; } #cookie .righth { -webkit-border-radius: 0 11px 0 0; -moz-border-radius: 0 11px 0 0; -ms-border-radius: 0 11px 0 0; -o-border-radius: 0 11px 0 0; border-radius: 0 11px 0 0; } #cookie .middleh { -webkit-border-radius: 0 0 0 0; -moz-border-radius: 0 0 0 0; -ms-border-radius: 0 0 0 0; -o-border-radius: 0 0 0 0; border-radius: 0 0 0 0; } #col1, #col2, #col3, #col4 { width: 25%; } #coia-donations { display: block; width: 300px; height: auto; float: right; border: 1px solid #373737; padding: 0 15px 15px; margin: 0 10px 10px; border-top: 0; -webkit-border-radius: 0 0 11px 11px; -moz-border-radius: 0 0 11px 11px; -ms-border-radius: 0 0 11px 11px; -o-border-radius: 0 0 11px 11px; border-radius: 0 0 11px 11px; } #coia-donations.on-bottom { float: none; width: auto; padding: 0 15px 15px; margin: 20px 0 0; border: 1px solid #373737; -webkit-border-radius: 11px; -moz-border-radius: 11px; -ms-border-radius: 11px; -o-border-radius: 11px; border-radius: 11px; }
src/main/webapp/BenchmarkTest02269.html
marylinh/Benchmark
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <script src="js/jquery.min.js"></script> <script type="text/javascript" src="js/js.cookie.js"></script> <title>BenchmarkTest02269</title> </head> <body> <form action="/benchmark/BenchmarkTest02269" method="POST" id="FormBenchmarkTest02269"> <div><label>Please enter your details:</label></div> <div><label>Is your information secure?:</label> <input type="text" id="secure" name="secure"></input></div> <div><label>Provide your product ID:</label> <input type="text" id="productID" name="productID"></input></div> <div><label>Do you even foo?</label> <input type="text" id="foo" name="foo" value="foo"></input></div> <div><label>Parameter: vector <BR> Value:</label> <input type="text" id="vector" name="vector" value="someSecret"></input></div> <div> <input type="submit" value="Post it" /></div> </form> </body> </html>
connectors/loopback/loopback.css
mmmaly/OpenSourceBikeShare
#message { font: 14px Arial; padding: 0 10px; margin-top: 20px; border: 35px #000 solid; border-radius: 5px; padding: 10px; width: 50%; } .commentArea { font: 14px Arial; padding: 0 10px; margin-top: 20px; border: 35px #000 solid; border-radius: 5px; border-bottom: 2px #000 solid; padding: 10px; width: 50%; } .bubbledLeft,.bubbledRight { margin-top: 20px; padding: 5px 9px; max-width: 90%; clear: both; position: relative; } .bubbledLeft{ float: left; margin-right: auto; -webkit-border-radius: 8px 8px 8px 0px; -moz-border-radius: 8px 8px 8px 0px; -o-border-radius: 8px 8px 8px 0px; -ms-border-radius: 8px 8px 8px 0px; border-radius: 8px 8px 8px 0px; background-color: #65B045; color: #ffffff; } .bubbledLeft:before { border-bottom: 10px solid #65B045; border-left: 9px solid rgba(0, 0, 0, 0); position: absolute; bottom: 0; left: -8px; content: ""; } .bubbledRight{ float: right; margin-left: auto; text-align: right; -webkit-border-radius: 8px 8px 0px 8px; -moz-border-radius: 8px 8px 0px 8px; -o-border-radius: 8px 8px 0px 8px; -ms-border-radius: 8px 8px 0px 8px; border-radius: 8px 8px 0px 8px; background-color: #07D; color: white; } .bubbledRight:before { border-bottom: 9px solid #07D; border-right: 9px solid rgba(0, 0, 0, 0); position: absolute; bottom: 0; right: -8px; content: ""; }
projects/webui/dataplotter/src/main/resources/html/list.html
isc-konstanz/OpenMUC
<div id="dashboard-grid" class="row" ng-controller="TabsController"> <div ng-if="confFile" ng-repeat="plotter in confFile" class="item col-lg-3 text-center"> <a ng-click="setTabIndex(plotter.name)" ui-sref="dataplotter.{{plotter.type}}({name: plotter.name})" class="btn btn-grid btn-block"> <span class="item-icon" aria-hidden="true"> <img src="dataplotter/images/icon.png" /> </span> {{plotter.name}} </a> </div> <div ng-if="!confFile" class="item col-lg-3 text-center"> <a ui-sref="dataplotter.data" class="btn btn-grid btn-block"> <span class="item-icon" aria-hidden="true"> <img src="dataplotter/images/icon.png" /> </span> {{'DATA_PLOTTER' | translate}} </a> <div class="item col-lg-3 text-center"></div> <a ui-sref="dataplotter.live" class="btn btn-grid btn-block"> <span class="item-icon" aria-hidden="true"> <img src="dataplotter/images/icon.png" /> </span> {{'LIVE_PLOTTER' | translate}} </a> </div> </div> </div>
php/5.5/function.printer-abort.html
P3PO/the-phpjs-local-docs-collection
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Deletes the printer's spool file</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="ref.printer.html">Printer Functions</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.printer-close.html">printer_close</a></div> <div class="up"><a href="ref.printer.html">Printer Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="function.printer-abort" class="refentry"> <div class="refnamediv"> <h1 class="refname">printer_abort</h1> <p class="verinfo">(PECL printer SVN)</p><p class="refpurpose"><span class="refname">printer_abort</span> &mdash; <span class="dc-title">Deletes the printer&#039;s spool file</span></p> </div> <div class="refsect1 description" id="refsect1-function.printer-abort-description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="type"><span class="type void">void</span></span> <span class="methodname"><strong>printer_abort</strong></span> ( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$printer_handle</code></span> )</div> <p class="para rdfs-comment"> This function deletes the printers spool file. </p> </div> <div class="refsect1 parameters" id="refsect1-function.printer-abort-parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <code class="parameter">printer_handle</code></dt> <dd> <p class="para"> <code class="parameter">printer_handle</code> must be a valid handle to a printer. </p> </dd> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-function.printer-abort-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> No value is returned. </p> </div> <div class="refsect1 examples" id="refsect1-function.printer-abort-examples"> <h3 class="title">Examples</h3> <p class="para"> <div class="example" id="example-5465"> <p><strong>Example #1 <span class="function"><strong>printer_abort()</strong></span> example</strong></p> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"> <span style="color: #0000BB">&lt;?php<br />$handle&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">printer_open</span><span style="color: #007700">();<br /></span><span style="color: #0000BB">printer_abort</span><span style="color: #007700">(</span><span style="color: #0000BB">$handle</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">printer_close</span><span style="color: #007700">(</span><span style="color: #0000BB">$handle</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span> </span> </code></div> </div> </div> </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="ref.printer.html">Printer Functions</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.printer-close.html">printer_close</a></div> <div class="up"><a href="ref.printer.html">Printer Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
templates/print_planlist.html
SecondLiners/GO2
{% extends 'go2printbase.html' %} {% block content %} {% import 'plan_icon.html' as plan_icon %} <div class="row"> <h3 style="margin-top:0px">Member Plans For Gig: {{the_gig.title}}</h3> </div> <div class="row"> {{ the_gig.date }} {{ the_gig.calltime }} </div> <br> <div class="panel panel-default"> <div class="panel-heading"> <strong>Members Planning To Be There</strong> </div> <div class="panel-body"> <table class="table"> {% for the_section in the_section_keys %} {% set section_title = False %} {% for member_plan in the_plans %} {% set the_plan = member_plan['the_plan_key'].get() %} {% if member_plan['the_section'] == the_section and (printall or (the_plan.value and the_plan.value < 3)) %} {% set the_member = the_plan.member.get() %} <tr> <td width="20%"> {% if section_title == False %} {% if the_section %} {{the_section.get().name}} {% else %} No Section {% endif %} {% set section_title = True %} {% endif %} </td> <td width="50%"> {{ the_member.name }} {% if the_plan.value == 0 %} (?) {% elif the_plan.value == 1 %} ({% trans %}Definitely{% endtrans %}) {% elif the_plan.value == 2 %} ({% trans %}Probably{% endtrans %}) {% elif the_plan.value == 3 %} ({% trans %}Don't Know{% endtrans %}) {% elif the_plan.value == 4 %} ({% trans %}Probably Not{% endtrans %}) {% elif the_plan.value == 5 %} ({% trans %}Can't Do It{% endtrans %}) {% elif the_plan.value == 6 %} ({% trans %}Not Interested{% endtrans %}) {% endif %} </td> <td width="30%"> {% if the_member.phone %} {{ the_member.phone }} {% endif %} </td> </tr> {% endif %} {% endfor %} {% endfor %} </table> </div> </div> {% endblock content %} {% block footer %} {% endblock footer %} {% block localscripts %} <script>window.jQuery || document.write('<script src="/jquery/jquery-1.10.2.js"><\/script>')</script> <script> $(document).ready(function() { window.print() setTimeout(function(){window.close();}, 1); }); </script>{% endblock localscripts %}
doc/web/doxygen/0986/api+framework+samples/html/classrebecca_1_1framework_1_1impl_1_1_category-members.html
hallowname/librebecca
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>RebeccaAIML: Member List</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.4.5 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li id="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> </ul></div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul></div> <h1>Category Member List</h1>This is the complete list of members for <a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a>, including all inherited members.<p><table> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#1c59b0a2437f0eec09b7f9bbff60e3c6">addCharacters</a>(const StringPimpl &amp;characters)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#893946503b6d272f31a91766b5d4a9ab">addInstanceOf</a>(const char *const instance)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td><code> [protected]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#33e98bf936bd2195316198c2fed9d548">Category</a>(GraphBuilderFramework &amp;builder)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#5c1b99c7b97ce1e4ed458c7e92cac200">getPatternString</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#37cfab8f21a195a5ba591d953b64892b">getTemplate</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#00424a1951c8cf993822812d3d3a1867">getTemplateString</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#5ae3ed9fc836617cc840d5777b151fcf">getThatString</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#c2135b84ec87011bd84f3a416e1d4fea">handleInnerTag</a>(const shared_ptr&lt; Tag &gt; &amp;tag)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_a_i_m_l.html#aefbe6f60dbc4e5d2298181e343d331b">InnerAIML</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_a_i_m_l.html">InnerAIML</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_topic.html#19b8aa4532f0ff1d13c8f903d6540f75">InnerTopic</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_topic.html">InnerTopic</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#18b2e188cfb95febd5b9c4de73eca749">instanceOf</a>(const char *const instance)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#4582015ce16268e893f214d080dea714">m_pimpl</a></td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [private]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#c3aa295c875f77722638dcdf918a02b6">setAttribute</a>(const StringPimpl &amp;name, const StringPimpl &amp;value)</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#e2bc084f070afff2f24c1878b98f9490">Tag</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html#9089495ff1c3ecc1c54b0c07d82e02a0">~Category</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_category.html">Category</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_a_i_m_l.html#8f3ab05f4c1303a80902d49c24f2d187">~InnerAIML</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_a_i_m_l.html">InnerAIML</a></td><td><code> [virtual]</code></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_topic.html#c097d7a42443fc9632bdb5c302d3c11a">~InnerTopic</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_inner_topic.html">InnerTopic</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html#7a8dce5a2d1b485ff74e4bcc124f8921">~Tag</a>()</td><td><a class="el" href="classrebecca_1_1framework_1_1impl_1_1_tag.html">Tag</a></td><td><code> [virtual]</code></td></tr> </table><hr size="1"><address style="align: right;"><small>Generated on Wed Jul 26 21:39:07 2006 for RebeccaAIML by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.5 </small></address> </body> </html>
javadoc/smartwatch/context/common/helper/package-summary.html
chenkel/kontextSmartWatch
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (1.8.0_77) on Fri Apr 22 00:07:37 CEST 2016 --> <title>project.context.localization.common.helper</title> <meta name="date" content="2016-04-22"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="project.context.localization.common.helper"; } } catch(err) { } //--></script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../smartwatch/context/common/db/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../smartwatch/context/common/superclasses/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?smartwatch/context/common/helper/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.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> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;project.context.localization.common.helper</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="typeSummary" 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="../../../../smartwatch/context/common/helper/CalculationHelper.html" title="class in project.context.localization.common.helper">CalculationHelper</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../smartwatch/context/common/helper/WlanMeasurement.html" title="class in project.context.localization.common.helper">WlanMeasurement</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> <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 class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../smartwatch/context/common/db/package-summary.html">Prev&nbsp;Package</a></li> <li><a href="../../../../smartwatch/context/common/superclasses/package-summary.html">Next&nbsp;Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?smartwatch/context/common/helper/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.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> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
symfony2/docs-en/v2.0.17/cookbook/assetic/apply_to_option.html
P3PO/the-phpjs-local-docs-collection
<!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/html; charset=utf-8" /> <title>How to Apply an Assetic Filter to a Specific File Extension &mdash; Symfony2Docs v.2.0.17 2.0.17 documentation</title> <link rel="stylesheet" href="../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '2.0.17', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="Symfony2Docs v.2.0.17 2.0.17 documentation" href="../../index.html" /> <link rel="up" title="Assetic" href="index.html" /> <link rel="next" title="Doctrine" href="../doctrine/index.html" /> <link rel="prev" title="How to Use Assetic For Image Optimization with Twig Functions" href="jpeg_optimize.html" /> </head> <body> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../doctrine/index.html" title="Doctrine" accesskey="N">next</a> |</li> <li class="right" > <a href="jpeg_optimize.html" title="How to Use Assetic For Image Optimization with Twig Functions" accesskey="P">previous</a> |</li> <li><a href="../../index.html">Symfony2Docs v.2.0.17 2.0.17 documentation</a> &raquo;</li> <li><a href="../index.html" >The Cookbook</a> &raquo;</li> <li><a href="index.html" accesskey="U">Assetic</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="how-to-apply-an-assetic-filter-to-a-specific-file-extension"> <span id="index-0"></span><h1>How to Apply an Assetic Filter to a Specific File Extension<a class="headerlink" href="#how-to-apply-an-assetic-filter-to-a-specific-file-extension" title="Permalink to this headline">¶</a></h1> <p>Assetic filters can be applied to individual files, groups of files or even, as you&#8217;ll see here, files that have a specific extension. To show you how to handle each option, let&#8217;s suppose that you want to use Assetic&#8217;s CoffeeScript filter, which compiles CoffeeScript files into Javascript.</p> <p>The main configuration is just the paths to coffee and node. These default respectively to <tt class="docutils literal"><span class="pre">/usr/bin/coffee</span></tt> and <tt class="docutils literal"><span class="pre">/usr/bin/node</span></tt>:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><div class="highlight"><pre><span class="c1"># app/config/config.yml</span> <span class="l-Scalar-Plain">assetic</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">filters</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">coffee</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">bin</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">/usr/bin/coffee</span> <span class="l-Scalar-Plain">node</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">/usr/bin/node</span> </pre></div> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- app/config/config.xml --&gt;</span> <span class="nt">&lt;assetic:config&gt;</span> <span class="nt">&lt;assetic:filter</span> <span class="na">name=</span><span class="s">&quot;coffee&quot;</span> <span class="na">bin=</span><span class="s">&quot;/usr/bin/coffee&quot;</span> <span class="na">node=</span><span class="s">&quot;/usr/bin/node&quot;</span> <span class="nt">/&gt;</span> <span class="nt">&lt;/assetic:config&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="c1">// app/config/config.php</span> <span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;assetic&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;filters&#39;</span> <span class="o">=&gt;</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;coffee&#39;</span> <span class="o">=&gt;</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;bin&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;/usr/bin/coffee&#39;</span><span class="p">,</span> <span class="s1">&#39;node&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;/usr/bin/node&#39;</span><span class="p">,</span> <span class="p">),</span> <span class="p">),</span> <span class="p">));</span> </pre></div> </div> </li> </ul> </div> <div class="section" id="filter-a-single-file"> <h2>Filter a Single File<a class="headerlink" href="#filter-a-single-file" title="Permalink to this headline">¶</a></h2> <p>You can now serve up a single CoffeeScript file as JavaScript from within your templates:</p> <div class="configuration-block"> <ul class="simple"> <li><em>Twig</em><div class="highlight-html+jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">javascripts</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span> <span class="nv">filter</span><span class="o">=</span><span class="s1">&#39;coffee&#39;</span> <span class="cp">%}</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">{{</span> <span class="nv">asset_url</span> <span class="cp">}}</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">{%</span> <span class="k">endjavascripts</span> <span class="cp">%}</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-html+php"><div class="highlight"><pre><span class="cp">&lt;?php</span> <span class="k">foreach</span> <span class="p">(</span><span class="nv">$view</span><span class="p">[</span><span class="s1">&#39;assetic&#39;</span><span class="p">]</span><span class="o">-&gt;</span><span class="na">javascripts</span><span class="p">(</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span><span class="p">),</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;coffee&#39;</span><span class="p">))</span> <span class="k">as</span> <span class="nv">$url</span><span class="p">)</span><span class="o">:</span> <span class="cp">?&gt;</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">&lt;?php</span> <span class="k">echo</span> <span class="nv">$view</span><span class="o">-&gt;</span><span class="na">escape</span><span class="p">(</span><span class="nv">$url</span><span class="p">)</span> <span class="cp">?&gt;</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">&lt;?php</span> <span class="k">endforeach</span><span class="p">;</span> <span class="cp">?&gt;</span> </pre></div> </div> </li> </ul> </div> <p>This is all that&#8217;s needed to compile this CoffeeScript file and server it as the compiled JavaScript.</p> </div> <div class="section" id="filter-multiple-files"> <h2>Filter Multiple Files<a class="headerlink" href="#filter-multiple-files" title="Permalink to this headline">¶</a></h2> <p>You can also combine multiple CoffeeScript files into a single output file:</p> <div class="configuration-block"> <ul class="simple"> <li><em>Twig</em><div class="highlight-html+jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">javascripts</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/another.coffee&#39;</span> <span class="nv">filter</span><span class="o">=</span><span class="s1">&#39;coffee&#39;</span> <span class="cp">%}</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">{{</span> <span class="nv">asset_url</span> <span class="cp">}}</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">{%</span> <span class="k">endjavascripts</span> <span class="cp">%}</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-html+php"><div class="highlight"><pre><span class="cp">&lt;?php</span> <span class="k">foreach</span> <span class="p">(</span><span class="nv">$view</span><span class="p">[</span><span class="s1">&#39;assetic&#39;</span><span class="p">]</span><span class="o">-&gt;</span><span class="na">javascripts</span><span class="p">(</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span><span class="p">,</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/another.coffee&#39;</span><span class="p">),</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;coffee&#39;</span><span class="p">))</span> <span class="k">as</span> <span class="nv">$url</span><span class="p">)</span><span class="o">:</span> <span class="cp">?&gt;</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">&lt;?php</span> <span class="k">echo</span> <span class="nv">$view</span><span class="o">-&gt;</span><span class="na">escape</span><span class="p">(</span><span class="nv">$url</span><span class="p">)</span> <span class="cp">?&gt;</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">&lt;?php</span> <span class="k">endforeach</span><span class="p">;</span> <span class="cp">?&gt;</span> </pre></div> </div> </li> </ul> </div> <p>Both the files will now be served up as a single file compiled into regular JavaScript.</p> </div> <div class="section" id="filtering-based-on-a-file-extension"> <span id="cookbook-assetic-apply-to"></span><h2>Filtering based on a File Extension<a class="headerlink" href="#filtering-based-on-a-file-extension" title="Permalink to this headline">¶</a></h2> <p>One of the great advantages of using Assetic is reducing the number of asset files to lower HTTP requests. In order to make full use of this, it would be good to combine <em>all</em> your JavaScript and CoffeeScript files together since they will ultimately all be served as JavaScript. Unfortunately just adding the JavaScript files to the files to be combined as above will not work as the regular JavaScript files will not survive the CoffeeScript compilation.</p> <p>This problem can be avoided by using the <tt class="docutils literal"><span class="pre">apply_to</span></tt> option in the config, which allows you to specify that a filter should always be applied to particular file extensions. In this case you can specify that the Coffee filter is applied to all <tt class="docutils literal"><span class="pre">.coffee</span></tt> files:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><pre># app/config/config.yml assetic: filters: coffee: bin: /usr/bin/coffee node: /usr/bin/node apply_to: "\.coffee$"</pre> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- app/config/config.xml --&gt;</span> <span class="nt">&lt;assetic:config&gt;</span> <span class="nt">&lt;assetic:filter</span> <span class="na">name=</span><span class="s">&quot;coffee&quot;</span> <span class="na">bin=</span><span class="s">&quot;/usr/bin/coffee&quot;</span> <span class="na">node=</span><span class="s">&quot;/usr/bin/node&quot;</span> <span class="na">apply_to=</span><span class="s">&quot;\.coffee$&quot;</span> <span class="nt">/&gt;</span> <span class="nt">&lt;/assetic:config&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="c1">// app/config/config.php</span> <span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;assetic&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;filters&#39;</span> <span class="o">=&gt;</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;coffee&#39;</span> <span class="o">=&gt;</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;bin&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;/usr/bin/coffee&#39;</span><span class="p">,</span> <span class="s1">&#39;node&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;/usr/bin/node&#39;</span><span class="p">,</span> <span class="s1">&#39;apply_to&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;\.coffee$&#39;</span><span class="p">,</span> <span class="p">),</span> <span class="p">),</span> <span class="p">));</span> </pre></div> </div> </li> </ul> </div> <p>With this, you no longer need to specify the <tt class="docutils literal"><span class="pre">coffee</span></tt> filter in the template. You can also list regular JavaScript files, all of which will be combined and rendered as a single JavaScript file (with only the <tt class="docutils literal"><span class="pre">.coffee</span></tt> files being run through the CoffeeScript filter):</p> <div class="configuration-block"> <ul class="simple"> <li><em>Twig</em><div class="highlight-html+jinja"><div class="highlight"><pre><span class="cp">{%</span> <span class="k">javascripts</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/another.coffee&#39;</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/regular.js&#39;</span> <span class="cp">%}</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">{{</span> <span class="nv">asset_url</span> <span class="cp">}}</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">{%</span> <span class="k">endjavascripts</span> <span class="cp">%}</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-html+php"><div class="highlight"><pre><span class="cp">&lt;?php</span> <span class="k">foreach</span> <span class="p">(</span><span class="nv">$view</span><span class="p">[</span><span class="s1">&#39;assetic&#39;</span><span class="p">]</span><span class="o">-&gt;</span><span class="na">javascripts</span><span class="p">(</span> <span class="k">array</span><span class="p">(</span><span class="s1">&#39;@AcmeFooBundle/Resources/public/js/example.coffee&#39;</span><span class="p">,</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/another.coffee&#39;</span><span class="p">,</span> <span class="s1">&#39;@AcmeFooBundle/Resources/public/js/regular.js&#39;</span><span class="p">),</span> <span class="k">as</span> <span class="nv">$url</span><span class="p">)</span><span class="o">:</span> <span class="cp">?&gt;</span> <span class="nt">&lt;script </span><span class="na">src=</span><span class="s">&quot;</span><span class="cp">&lt;?php</span> <span class="k">echo</span> <span class="nv">$view</span><span class="o">-&gt;</span><span class="na">escape</span><span class="p">(</span><span class="nv">$url</span><span class="p">)</span> <span class="cp">?&gt;</span><span class="s">&quot;</span> <span class="na">type=</span><span class="s">&quot;text/javascript&quot;</span><span class="nt">&gt;&lt;/script&gt;</span> <span class="cp">&lt;?php</span> <span class="k">endforeach</span><span class="p">;</span> <span class="cp">?&gt;</span> </pre></div> </div> </li> </ul> </div> </div> </div> </div> </div> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"> <h3><a href="../../index.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">How to Apply an Assetic Filter to a Specific File Extension</a><ul> <li><a class="reference internal" href="#filter-a-single-file">Filter a Single File</a></li> <li><a class="reference internal" href="#filter-multiple-files">Filter Multiple Files</a></li> <li><a class="reference internal" href="#filtering-based-on-a-file-extension">Filtering based on a File Extension</a></li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="jpeg_optimize.html" title="previous chapter">How to Use Assetic For Image Optimization with Twig Functions</a></p> <h4>Next topic</h4> <p class="topless"><a href="../doctrine/index.html" title="next chapter">Doctrine</a></p> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../../_sources/cookbook/assetic/apply_to_option.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../doctrine/index.html" title="Doctrine" >next</a> |</li> <li class="right" > <a href="jpeg_optimize.html" title="How to Use Assetic For Image Optimization with Twig Functions" >previous</a> |</li> <li><a href="../../index.html">Symfony2Docs v.2.0.17 2.0.17 documentation</a> &raquo;</li> <li><a href="../index.html" >The Cookbook</a> &raquo;</li> <li><a href="index.html" >Assetic</a> &raquo;</li> </ul> </div> <div class="footer"> &copy; Copyright 2012, Symfony Team. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. </div> </body> </html>
php/Noticias/Deportes/pep_guardiola_todo_puede_pasar.html
SergioMGamarra/Practica-1---IV
<!DOCTYPE html> <html> <head> <title>Guardiola: ''Si algo te agarra por los huevos lo puedes conseguir todo" - WorldNews </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="../noticias.css"/> </head> <body id="body"> <section id="publicidadIzquierda"> <a href="http://www.ideal.es/"> <img src="../../Portada/img/banner-izq.jpg"/> </a> </section> <section id="publicidadDerecha"> <a href="http://www.ideal.es/"> <img src="../../Portada/img/banner-izq.jpg"/> </a> </section> <section id="seccionCentral"> <a href="http://www.epic.net/"> <img id="epic" src="../../Portada/img/imagenEpic.jpg"> </a> <section id="barraMenu"> <section id="Etiquetas"> <ul> <li class="etiqueta"> <small>Locales</small> <a class="itemA" href="../../Secciones/Nacional/nacional.html"> NACIONAL </a> </li> <li class="etiqueta"> <small>Actualidad</small> <a class="itemA" href="../../Secciones/Mundiales/recientes.html"> MUNDIAL </a> </li> <li class="etiqueta"> <small>Noticias</small> <a class="itemA" href="../../Secciones/Deportes/deportes.html"> DEPORTES </a> </li> <li class="etiqueta"> <small>Ayudanos</small> <a class="itemA" href="../../Secciones/Contacto/contacto.html"> CONTACTO </a> </li> </ul> <a href="../../Portada/portada/portada.php"> <img id="banner" src="../../Portada/img/banner.png"/> </a> </section> </section> <section id="NoticiaSeccionIzquierda"> <article class="Secciones"> <p id="Seccion">FUTBOL</p> </article> <article class="Secciones"> <p id="tituloNoticia"> Guardiola: ''Si algo te agarra por los huevos lo puedes conseguir todo" </p> <img src="imagenes/Guardiola.jpg"/> <p id="descripcionImagen">Pep Guardiola en sala de prensa</p> <p class="cuerpoNoticia"> En declaraciones al diario colombiano "El tiempo", Pep Guardiola dejó un mensaje claro ante el partido de esta noche: ''Juegan dos equipos fantásticos, todo puede pasar. Son equipos que han tenido un dominio extraordinario en sus ligas, lo que han conseguido esta temporada es muy merecido. Estoy muy impaciente''. <p class="cuerpoNoticia"> También tuvo palabras sobre el partido de anoche entre Real Madrid y Borussia Dortmund: ''Soy un gran aficionado al futbol. Sigo las tácticas... Ha sido un partido muy emocionante. El resultado fue amplio en el partido de ida y con el Real Madrid; nunca en el Bernabéu uno puede decir que algo se acaba hasta que el árbitro pita el final. Lo digo por experiencia.'' </p> <p class="cuerpoNoticia"> Pep Guardiola asistió a una conferencia ante cerca de 10.000 personas en el auditorio G12 de Bogotá -en el vídeo de LaSexta que acompaña la noticia- y puso como gran ejemplo a sus ex jugadores: "Todos nos hartamos de convivir. Del éxito también nos hartamos. Éstos lo habían ganado todo, pero les sigue gustando ganarlo, se lo pasan bien. Son los más amateurs. ¡Aprended de ellos! ¡Que os agarren por los huevos! Es impresionante. Después de ganar todo lo que volvían a ganar todo". </p> <p class="cuerpoNoticia"> Tras la charla, el ex técnico del Barcelona habló para el diario colombiano "El tiempo" para profundizar sobre su carrera, su pasado, presente y futuro. Guardiola compartió sus inicios en el mundo del fútbol, habló sobre la situación actual que atraviesa el fútbol español, la influencia de Cruyff en el club azulgrana y su pasado como técnico en el mismo. Messi también tuvo su protagonismo con palabras de elogio y destacó la evolución del fútbol colombiano. </p> <p class="cuerpoNoticia"> Sobre los comentarios de que el fútbol alemán le esté tomando terreno al español, Guardiola añadía: “Creo que el fútbol alemán ha sido muy interesante este año. Pero el fútbol español, gracias a dos personas importantísimas como Luis Aragonés y Vicente del Bosque, ha llegado a niveles altísimos. La Liga Premier de Inglaterra siempre está entre las tres primeras, Italia ha bajado un poco, en estos países la economía ha afectado, pero a veces es normal que las tendencias vayan pasando y hay que esperar el paso del tiempo”. </p> </article> </section> <section id="NoticiaSeccionDerecha"> <p class="titulosubmenu">Contrasta la información</p> <article id="contrastaInfo"> <ul> <li> <a href="http://www.larazon.es/detalle_normal/noticias/2098343/economia/toxo-y-mendez-exigen-al-gobierno-que-el-empleo#.UYFuFNdGkR8">La Razón</a> </li> <li> <a href="http://economia.elpais.com/economia/2013/05/01/agencias/1367372123_615349.html"> El País </a> </li> <li> <a href="http://www.elconfidencial.com/economia/2013/05/01/toxo-y-mendez-reclaman-un-pacto-nacional-que-saque-a-espana-de-la-recesion-120040/"> El Confidencial </a> </li> <li> <a href="http://www.abc.es/economia/20130501/abci-ccoo-pacto-crisis-201305011210.html"> ABC </a> </li> <li> <a href="http://www.elmundo.es/elmundo/2013/04/30/economia/1367347898.html"> El Mundo </a> </li> </ul> </article> <br/> <p class="titulosubmenu">Relacionadas</p> <article id="Relacionadas"> <ul> <li> <a href="http://www.larazon.es/detalle_normal/noticias/2098343/economia/toxo-y-mendez-exigen-al-gobierno-que-el-empleo#.UYFuFNdGkR8">Toxo y Méndez exigen al Gobierno que el empleo sea su prioridad </a> </li> <li> <a href="http://economia.elpais.com/economia/2013/05/01/agencias/1367372123_615349.html"> Los sindicatos reclaman un gran pacto ante la emergencia nacional del paro </a> </li> <li> <a href="http://www.elconfidencial.com/economia/2013/05/01/toxo-y-mendez-reclaman-un-pacto-nacional-que-saque-a-espana-de-la-recesion-120040/"> Toxo y Méndez reclaman un pacto nacional que saque a España de la recesión </a> </li> <li> <a href="http://www.20minutos.es/noticia/1802099/0/manifestaciones/ccoo-ugt-sindicatos/1-mayo-dia-trabajo/"> Cientos de miles de españoles toman las calles el 1º de Mayo para protestar por el desempleo </a> </li> </ul> </article> <br/> <a href="http://www.dasani.com/"> <img id="publicidad" src="imagenes/publicidad.jpeg"/> </a> </section> <section id="comentarios"> <p id="PresentacioComentarios">Comentarios</p> <form> <p class="input">Nombre: <input id="nombre" name="Nombre" type="text" placeholder="Nombre" required="true"/></p> <p class="input">Comentario: <input id="inputComentario" name="Nombre" type="text" required="true"/></p> <section id="boton"> <input type = "submit" id = "button1" value = "Enviar"/> <input type = "reset" id = "button2" value = "Borrar todo" /> </section> </form> <article id="comentarios"> <p class="Autorcomentario"> Invitado324 <article class="fechaComentario"> 30/3/13 12:34 </article></p> <p class="comentario">Gran artículo </p> </article> </section> </section> <footer> <section id="footerIzquierda"> <p class="tituloNoticiaFooter">Contacto</p> <p class="presentacionFooter"> Epic Agent S.L</p> <address class="presentacionFooter"> C/Cañaveral nº5 Granada </address> <p class="presentacionFooter">(958) 402030</p> </section> <section id="footerDerecha"> <a href="../../Formulario/formulario.html"> <img id="suscripcion" src="../../Portada/img/suscripiciones.png"/> </a> </section> </footer> </body> </html>
foreign/boost/libs/math/doc/complex/html/complex_number_tr1_algorithms/inverse_complex/atanh.html
cppisfun/GameEngine
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>atanh</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.74.0"> <link rel="home" href="../../index.html" title="Complex Number TR1 Algorithms"> <link rel="up" href="../inverse_complex.html" title="Complex Number Inverse Trigonometric Functions"> <link rel="prev" href="acosh.html" title="acosh"> <link rel="next" href="history.html" title="History"> </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="acosh.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../inverse_complex.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="history.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section" lang="en"> <div class="titlepage"><div><div><h3 class="title"> <a name="complex_number_tr1_algorithms.inverse_complex.atanh"></a><a class="link" href="atanh.html" title="atanh">atanh</a> </h3></div></div></div> <a name="complex_number_tr1_algorithms.inverse_complex.atanh.header_"></a><h5> <a name="id997756"></a> <a class="link" href="atanh.html#complex_number_tr1_algorithms.inverse_complex.atanh.header_">Header:</a> </h5> <pre class="programlisting"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">math</span><span class="special">/</span><span class="identifier">complex</span><span class="special">/</span><span class="identifier">atanh</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span> </pre> <a name="complex_number_tr1_algorithms.inverse_complex.atanh.synopsis_"></a><h5> <a name="id997824"></a> <a class="link" href="atanh.html#complex_number_tr1_algorithms.inverse_complex.atanh.synopsis_">Synopsis:</a> </h5> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">T</span><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">complex</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;</span> <span class="identifier">atanh</span><span class="special">(</span><span class="keyword">const</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">complex</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;&amp;</span> <span class="identifier">z</span><span class="special">);</span> </pre> <p> <span class="bold"><strong>Effects: </strong></span> returns the inverse hyperbolic tangent of the complex number z. </p> <p> <span class="bold"><strong>Formula: </strong></span> <span class="inlinemediaobject"><img src="../../../../images/atanh.png" alt="atanh"></span> </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2005 John Maddock<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="acosh.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../inverse_complex.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="history.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
php/5.5/reflectionfunctionabstract.getclosurescopeclass.html
P3PO/the-phpjs-local-docs-collection
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Returns the scope associated to the closure</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="reflectionfunctionabstract.clone.html">ReflectionFunctionAbstract::__clone</a></div> <div class="next" style="text-align: right; float: right;"><a href="reflectionfunctionabstract.getclosurethis.html">ReflectionFunctionAbstract::getClosureThis</a></div> <div class="up"><a href="class.reflectionfunctionabstract.html">ReflectionFunctionAbstract</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="reflectionfunctionabstract.getclosurescopeclass" class="refentry"> <div class="refnamediv"> <h1 class="refname">ReflectionFunctionAbstract::getClosureScopeClass</h1> <p class="verinfo">(PHP &gt;= 5.4.0)</p><p class="refpurpose"><span class="refname">ReflectionFunctionAbstract::getClosureScopeClass</span> &mdash; <span class="dc-title">Returns the scope associated to the closure</span></p> </div> <div class="refsect1 description" id="refsect1-reflectionfunctionabstract.getclosurescopeclass-description"> <h3 class="title">Description</h3> <div class="methodsynopsis dc-description"> <span class="modifier">public</span> <span class="type"><a href="class.reflectionclass.html" class="type ReflectionClass">ReflectionClass</a></span> <span class="methodname"><strong>ReflectionFunctionAbstract::getClosureScopeClass</strong></span> ( <span class="methodparam">void</span> )</div> <p class="para rdfs-comment"> </p> <div class="warning"><strong class="warning">Warning</strong><p class="simpara">This function is currently not documented; only its argument list is available. </p></div> </div> <div class="refsect1 parameters" id="refsect1-reflectionfunctionabstract.getclosurescopeclass-parameters"> <h3 class="title">Parameters</h3> <p class="para">This function has no parameters.</p> </div> <div class="refsect1 returnvalues" id="refsect1-reflectionfunctionabstract.getclosurescopeclass-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> Returns the class on success or <strong><code>NULL</code></strong> on failure. </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="reflectionfunctionabstract.clone.html">ReflectionFunctionAbstract::__clone</a></div> <div class="next" style="text-align: right; float: right;"><a href="reflectionfunctionabstract.getclosurethis.html">ReflectionFunctionAbstract::getClosureThis</a></div> <div class="up"><a href="class.reflectionfunctionabstract.html">ReflectionFunctionAbstract</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
metronic_v4.7.1/theme_rtl/admin_2_rounded/charts_amcharts.html
FernandoUnix/AcessoRestrito
<!DOCTYPE html> <!-- Template Name: Metronic - Responsive Admin Dashboard Template build with Twitter Bootstrap 3.3.7 Version: 4.7.1 Author: KeenThemes Website: http://www.keenthemes.com/ Contact: support@keenthemes.com Follow: www.twitter.com/keenthemes Dribbble: www.dribbble.com/keenthemes Like: www.facebook.com/keenthemes Purchase: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes Renew Support: http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes License: You must have a valid license purchased only from themeforest(the above link) in order to legally use the theme for your project. --> <!--[if IE 8]> <html lang="en" class="ie8 no-js"> <![endif]--> <!--[if IE 9]> <html lang="en" class="ie9 no-js"> <![endif]--> <!--[if !IE]><!--> <html lang="en" dir="rtl"> <!--<![endif]--> <!-- BEGIN HEAD --> <head> <meta charset="utf-8" /> <title>Metronic Admin RTL Theme #2 | amChart</title> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1" name="viewport" /> <meta content="Preview page of Metronic Admin RTL Theme #2 for charting library & maps. Where all data goes visual with amChart plugin" name="description" /> <meta content="" name="author" /> <!-- BEGIN GLOBAL MANDATORY STYLES --> <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=all" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/simple-line-icons/simple-line-icons.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap/css/bootstrap-rtl.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/global/plugins/bootstrap-switch/css/bootstrap-switch-rtl.min.css" rel="stylesheet" type="text/css" /> <!-- END GLOBAL MANDATORY STYLES --> <!-- BEGIN PAGE LEVEL PLUGINS --> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL STYLES --> <link href="../assets/global/css/components-rounded-rtl.min.css" rel="stylesheet" id="style_components" type="text/css" /> <link href="../assets/global/css/plugins-rtl.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME GLOBAL STYLES --> <!-- BEGIN THEME LAYOUT STYLES --> <link href="../assets/layouts/layout2/css/layout-rtl.min.css" rel="stylesheet" type="text/css" /> <link href="../assets/layouts/layout2/css/themes/blue-rtl.min.css" rel="stylesheet" type="text/css" id="style_color" /> <link href="../assets/layouts/layout2/css/custom-rtl.min.css" rel="stylesheet" type="text/css" /> <!-- END THEME LAYOUT STYLES --> <link rel="shortcut icon" href="favicon.ico" /> </head> <!-- END HEAD --> <body class="page-header-fixed page-sidebar-closed-hide-logo page-container-bg-solid"> <!-- BEGIN HEADER --> <div class="page-header navbar navbar-fixed-top"> <!-- BEGIN HEADER INNER --> <div class="page-header-inner "> <!-- BEGIN LOGO --> <div class="page-logo"> <a href="index.html"> <img src="../assets/layouts/layout2/img/logo-default.png" alt="logo" class="logo-default" /> </a> <div class="menu-toggler sidebar-toggler"> <!-- DOC: Remove the above "hide" to enable the sidebar toggler button on header --> </div> </div> <!-- END LOGO --> <!-- BEGIN RESPONSIVE MENU TOGGLER --> <a href="javascript:;" class="menu-toggler responsive-toggler" data-toggle="collapse" data-target=".navbar-collapse"> </a> <!-- END RESPONSIVE MENU TOGGLER --> <!-- BEGIN PAGE ACTIONS --> <!-- DOC: Remove "hide" class to enable the page header actions --> <div class="page-actions"> <div class="btn-group"> <button type="button" class="btn btn-circle btn-outline red dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-plus"></i>&nbsp; <span class="hidden-sm hidden-xs">New&nbsp;</span>&nbsp; <i class="fa fa-angle-down"></i> </button> <ul class="dropdown-menu" role="menu"> <li> <a href="javascript:;"> <i class="icon-docs"></i> New Post </a> </li> <li> <a href="javascript:;"> <i class="icon-tag"></i> New Comment </a> </li> <li> <a href="javascript:;"> <i class="icon-share"></i> Share </a> </li> <li class="divider"> </li> <li> <a href="javascript:;"> <i class="icon-flag"></i> Comments <span class="badge badge-success">4</span> </a> </li> <li> <a href="javascript:;"> <i class="icon-users"></i> Feedbacks <span class="badge badge-danger">2</span> </a> </li> </ul> </div> </div> <!-- END PAGE ACTIONS --> <!-- BEGIN PAGE TOP --> <div class="page-top"> <!-- BEGIN HEADER SEARCH BOX --> <!-- DOC: Apply "search-form-expanded" right after the "search-form" class to have half expanded search box --> <form class="search-form search-form-expanded" action="page_general_search_3.html" method="GET"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search..." name="query"> <span class="input-group-btn"> <a href="javascript:;" class="btn submit"> <i class="icon-magnifier"></i> </a> </span> </div> </form> <!-- END HEADER SEARCH BOX --> <!-- BEGIN TOP NAVIGATION MENU --> <div class="top-menu"> <ul class="nav navbar-nav pull-right"> <!-- BEGIN NOTIFICATION DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class below "dropdown-extended" to change the dropdown styte --> <!-- DOC: Apply "dropdown-hoverable" class after below "dropdown" and remove data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to enable hover dropdown mode --> <!-- DOC: Remove "dropdown-hoverable" and add data-toggle="dropdown" data-hover="dropdown" data-close-others="true" attributes to the below A element with dropdown-toggle class --> <li class="dropdown dropdown-extended dropdown-notification" id="header_notification_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-bell"></i> <span class="badge badge-default"> 7 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3> <span class="bold">12 pending</span> notifications</h3> <a href="page_user_profile_1.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 250px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="time">just now</span> <span class="details"> <span class="label label-sm label-icon label-success"> <i class="fa fa-plus"></i> </span> New user registered. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 mins</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Server #12 overloaded. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">10 mins</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Server #2 not responding. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">14 hrs</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> Application error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">2 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Database overloaded 68%. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">3 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> A user IP blocked. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">4 days</span> <span class="details"> <span class="label label-sm label-icon label-warning"> <i class="fa fa-bell-o"></i> </span> Storage Server #4 not responding dfdfdfd. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">5 days</span> <span class="details"> <span class="label label-sm label-icon label-info"> <i class="fa fa-bullhorn"></i> </span> System Error. </span> </a> </li> <li> <a href="javascript:;"> <span class="time">9 days</span> <span class="details"> <span class="label label-sm label-icon label-danger"> <i class="fa fa-bolt"></i> </span> Storage server failed. </span> </a> </li> </ul> </li> </ul> </li> <!-- END NOTIFICATION DROPDOWN --> <!-- BEGIN INBOX DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-inbox" id="header_inbox_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-envelope-open"></i> <span class="badge badge-default"> 4 </span> </a> <ul class="dropdown-menu"> <li class="external"> <h3>You have <span class="bold">7 New</span> Messages</h3> <a href="app_inbox.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">Just Now </span> </span> <span class="message"> Vivamus sed auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">16 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar1.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Bob Nilson </span> <span class="time">2 hrs </span> </span> <span class="message"> Vivamus sed nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar2.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Lisa Wong </span> <span class="time">40 mins </span> </span> <span class="message"> Vivamus sed auctor 40% nibh congue nibh... </span> </a> </li> <li> <a href="#"> <span class="photo"> <img src="../assets/layouts/layout3/img/avatar3.jpg" class="img-circle" alt=""> </span> <span class="subject"> <span class="from"> Richard Doe </span> <span class="time">46 mins </span> </span> <span class="message"> Vivamus sed congue nibh auctor nibh congue nibh. auctor nibh auctor nibh... </span> </a> </li> </ul> </li> </ul> </li> <!-- END INBOX DROPDOWN --> <!-- BEGIN TODO DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended dropdown-tasks" id="header_task_bar"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <i class="icon-calendar"></i> <span class="badge badge-default"> 3 </span> </a> <ul class="dropdown-menu extended tasks"> <li class="external"> <h3>You have <span class="bold">12 pending</span> tasks</h3> <a href="app_todo.html">view all</a> </li> <li> <ul class="dropdown-menu-list scroller" style="height: 275px;" data-handle-color="#637283"> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New release v1.2 </span> <span class="percent">30%</span> </span> <span class="progress"> <span style="width: 40%;" class="progress-bar progress-bar-success" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">40% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Application deployment</span> <span class="percent">65%</span> </span> <span class="progress"> <span style="width: 65%;" class="progress-bar progress-bar-danger" aria-valuenow="65" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">65% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile app release</span> <span class="percent">98%</span> </span> <span class="progress"> <span style="width: 98%;" class="progress-bar progress-bar-success" aria-valuenow="98" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">98% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Database migration</span> <span class="percent">10%</span> </span> <span class="progress"> <span style="width: 10%;" class="progress-bar progress-bar-warning" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">10% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Web server upgrade</span> <span class="percent">58%</span> </span> <span class="progress"> <span style="width: 58%;" class="progress-bar progress-bar-info" aria-valuenow="58" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">58% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">Mobile development</span> <span class="percent">85%</span> </span> <span class="progress"> <span style="width: 85%;" class="progress-bar progress-bar-success" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">85% Complete</span> </span> </span> </a> </li> <li> <a href="javascript:;"> <span class="task"> <span class="desc">New UI release</span> <span class="percent">38%</span> </span> <span class="progress progress-striped"> <span style="width: 38%;" class="progress-bar progress-bar-important" aria-valuenow="18" aria-valuemin="0" aria-valuemax="100"> <span class="sr-only">38% Complete</span> </span> </span> </a> </li> </ul> </li> </ul> </li> <!-- END TODO DROPDOWN --> <!-- BEGIN USER LOGIN DROPDOWN --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-user"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true"> <img alt="" class="img-circle" src="../assets/layouts/layout2/img/avatar3_small.jpg" /> <span class="username username-hide-on-mobile"> Nick </span> <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu dropdown-menu-default"> <li> <a href="page_user_profile_1.html"> <i class="icon-user"></i> My Profile </a> </li> <li> <a href="app_calendar.html"> <i class="icon-calendar"></i> My Calendar </a> </li> <li> <a href="app_inbox.html"> <i class="icon-envelope-open"></i> My Inbox <span class="badge badge-danger"> 3 </span> </a> </li> <li> <a href="app_todo_2.html"> <i class="icon-rocket"></i> My Tasks <span class="badge badge-success"> 7 </span> </a> </li> <li class="divider"> </li> <li> <a href="page_user_lock_1.html"> <i class="icon-lock"></i> Lock Screen </a> </li> <li> <a href="page_user_login_1.html"> <i class="icon-key"></i> Log Out </a> </li> </ul> </li> <!-- END USER LOGIN DROPDOWN --> <!-- BEGIN QUICK SIDEBAR TOGGLER --> <!-- DOC: Apply "dropdown-dark" class after below "dropdown-extended" to change the dropdown styte --> <li class="dropdown dropdown-extended quick-sidebar-toggler"> <span class="sr-only">Toggle Quick Sidebar</span> <i class="icon-logout"></i> </li> <!-- END QUICK SIDEBAR TOGGLER --> </ul> </div> <!-- END TOP NAVIGATION MENU --> </div> <!-- END PAGE TOP --> </div> <!-- END HEADER INNER --> </div> <!-- END HEADER --> <!-- BEGIN HEADER & CONTENT DIVIDER --> <div class="clearfix"> </div> <!-- END HEADER & CONTENT DIVIDER --> <!-- BEGIN CONTAINER --> <div class="page-container"> <!-- BEGIN SIDEBAR --> <div class="page-sidebar-wrapper"> <!-- END SIDEBAR --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Change data-auto-speed="200" to adjust the sub menu slide up/down speed --> <div class="page-sidebar navbar-collapse collapse"> <!-- BEGIN SIDEBAR MENU --> <!-- DOC: Apply "page-sidebar-menu-light" class right after "page-sidebar-menu" to enable light sidebar menu style(without borders) --> <!-- DOC: Apply "page-sidebar-menu-hover-submenu" class right after "page-sidebar-menu" to enable hoverable(hover vs accordion) sub menu mode --> <!-- DOC: Apply "page-sidebar-menu-closed" class right after "page-sidebar-menu" to collapse("page-sidebar-closed" class must be applied to the body element) the sidebar sub menu mode --> <!-- DOC: Set data-auto-scroll="false" to disable the sidebar from auto scrolling/focusing --> <!-- DOC: Set data-keep-expand="true" to keep the submenues expanded --> <!-- DOC: Set data-auto-speed="200" to adjust the sub menu slide up/down speed --> <ul class="page-sidebar-menu page-header-fixed page-sidebar-menu-hover-submenu " data-keep-expanded="false" data-auto-scroll="true" data-slide-speed="200"> <li class="nav-item start "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-home"></i> <span class="title">Dashboard</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item start "> <a href="index.html" class="nav-link "> <i class="icon-bar-chart"></i> <span class="title">Dashboard 1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_2.html" class="nav-link "> <i class="icon-bulb"></i> <span class="title">Dashboard 2</span> <span class="badge badge-success">1</span> </a> </li> <li class="nav-item start "> <a href="dashboard_3.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Dashboard 3</span> <span class="badge badge-danger">5</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-diamond"></i> <span class="title">UI Features</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_colors.html" class="nav-link "> <span class="title">Color Library</span> </a> </li> <li class="nav-item "> <a href="ui_metronic_grid.html" class="nav-link "> <span class="title">Metronic Grid System</span> </a> </li> <li class="nav-item "> <a href="ui_general.html" class="nav-link "> <span class="title">General Components</span> </a> </li> <li class="nav-item "> <a href="ui_buttons.html" class="nav-link "> <span class="title">Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_buttons_spinner.html" class="nav-link "> <span class="title">Spinner Buttons</span> </a> </li> <li class="nav-item "> <a href="ui_confirmations.html" class="nav-link "> <span class="title">Popover Confirmations</span> </a> </li> <li class="nav-item "> <a href="ui_sweetalert.html" class="nav-link "> <span class="title">Bootstrap Sweet Alerts</span> </a> </li> <li class="nav-item "> <a href="ui_icons.html" class="nav-link "> <span class="title">Font Icons</span> </a> </li> <li class="nav-item "> <a href="ui_socicons.html" class="nav-link "> <span class="title">Social Icons</span> </a> </li> <li class="nav-item "> <a href="ui_typography.html" class="nav-link "> <span class="title">Typography</span> </a> </li> <li class="nav-item "> <a href="ui_tabs_accordions_navs.html" class="nav-link "> <span class="title">Tabs, Accordions & Navs</span> </a> </li> <li class="nav-item "> <a href="ui_timeline.html" class="nav-link "> <span class="title">Timeline 1</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_2.html" class="nav-link "> <span class="title">Timeline 2</span> </a> </li> <li class="nav-item "> <a href="ui_timeline_horizontal.html" class="nav-link "> <span class="title">Horizontal Timeline</span> </a> </li> <li class="nav-item "> <a href="ui_tree.html" class="nav-link "> <span class="title">Tree View</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Page Progress Bar</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ui_page_progress_style_1.html" class="nav-link "> Flash </a> </li> <li class="nav-item "> <a href="ui_page_progress_style_2.html" class="nav-link "> Big Counter </a> </li> </ul> </li> <li class="nav-item "> <a href="ui_blockui.html" class="nav-link "> <span class="title">Block UI</span> </a> </li> <li class="nav-item "> <a href="ui_bootstrap_growl.html" class="nav-link "> <span class="title">Bootstrap Growl Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_notific8.html" class="nav-link "> <span class="title">Notific8 Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_toastr.html" class="nav-link "> <span class="title">Toastr Notifications</span> </a> </li> <li class="nav-item "> <a href="ui_bootbox.html" class="nav-link "> <span class="title">Bootbox Dialogs</span> </a> </li> <li class="nav-item "> <a href="ui_alerts_api.html" class="nav-link "> <span class="title">Metronic Alerts API</span> </a> </li> <li class="nav-item "> <a href="ui_session_timeout.html" class="nav-link "> <span class="title">Session Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_idle_timeout.html" class="nav-link "> <span class="title">User Idle Timeout</span> </a> </li> <li class="nav-item "> <a href="ui_modals.html" class="nav-link "> <span class="title">Modals</span> </a> </li> <li class="nav-item "> <a href="ui_extended_modals.html" class="nav-link "> <span class="title">Extended Modals</span> </a> </li> <li class="nav-item "> <a href="ui_tiles.html" class="nav-link "> <span class="title">Tiles</span> </a> </li> <li class="nav-item "> <a href="ui_datepaginator.html" class="nav-link "> <span class="title">Date Paginator</span> </a> </li> <li class="nav-item "> <a href="ui_nestable.html" class="nav-link "> <span class="title">Nestable List</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-puzzle"></i> <span class="title">Components</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="components_date_time_pickers.html" class="nav-link "> <span class="title">Date & Time Pickers</span> </a> </li> <li class="nav-item "> <a href="components_color_pickers.html" class="nav-link "> <span class="title">Color Pickers</span> <span class="badge badge-danger">2</span> </a> </li> <li class="nav-item "> <a href="components_select2.html" class="nav-link "> <span class="title">Select2 Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_multiselect_dropdown.html" class="nav-link "> <span class="title">Bootstrap Multiselect Dropdowns</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select.html" class="nav-link "> <span class="title">Bootstrap Select</span> </a> </li> <li class="nav-item "> <a href="components_multi_select.html" class="nav-link "> <span class="title">Bootstrap Multiple Select</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_select_splitter.html" class="nav-link "> <span class="title">Select Splitter</span> </a> </li> <li class="nav-item "> <a href="components_clipboard.html" class="nav-link "> <span class="title">Clipboard</span> </a> </li> <li class="nav-item "> <a href="components_typeahead.html" class="nav-link "> <span class="title">Typeahead Autocomplete</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_tagsinput.html" class="nav-link "> <span class="title">Bootstrap Tagsinput</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_switch.html" class="nav-link "> <span class="title">Bootstrap Switch</span> <span class="badge badge-success">6</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_maxlength.html" class="nav-link "> <span class="title">Bootstrap Maxlength</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_fileinput.html" class="nav-link "> <span class="title">Bootstrap File Input</span> </a> </li> <li class="nav-item "> <a href="components_bootstrap_touchspin.html" class="nav-link "> <span class="title">Bootstrap Touchspin</span> </a> </li> <li class="nav-item "> <a href="components_form_tools.html" class="nav-link "> <span class="title">Form Widgets & Tools</span> </a> </li> <li class="nav-item "> <a href="components_context_menu.html" class="nav-link "> <span class="title">Context Menu</span> </a> </li> <li class="nav-item "> <a href="components_editors.html" class="nav-link "> <span class="title">Markdown & WYSIWYG Editors</span> </a> </li> <li class="nav-item "> <a href="components_code_editors.html" class="nav-link "> <span class="title">Code Editors</span> </a> </li> <li class="nav-item "> <a href="components_ion_sliders.html" class="nav-link "> <span class="title">Ion Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_noui_sliders.html" class="nav-link "> <span class="title">NoUI Range Sliders</span> </a> </li> <li class="nav-item "> <a href="components_knob_dials.html" class="nav-link "> <span class="title">Knob Circle Dials</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">Form Stuff</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="form_controls.html" class="nav-link "> <span class="title">Bootstrap Form <br>Controls</span> </a> </li> <li class="nav-item "> <a href="form_controls_md.html" class="nav-link "> <span class="title">Material Design <br>Form Controls</span> </a> </li> <li class="nav-item "> <a href="form_validation.html" class="nav-link "> <span class="title">Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_validation_states_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation States</span> </a> </li> <li class="nav-item "> <a href="form_validation_md.html" class="nav-link "> <span class="title">Material Design <br>Form Validation</span> </a> </li> <li class="nav-item "> <a href="form_layouts.html" class="nav-link "> <span class="title">Form Layouts</span> </a> </li> <li class="nav-item "> <a href="form_repeater.html" class="nav-link "> <span class="title">Form Repeater</span> </a> </li> <li class="nav-item "> <a href="form_input_mask.html" class="nav-link "> <span class="title">Form Input Mask</span> </a> </li> <li class="nav-item "> <a href="form_editable.html" class="nav-link "> <span class="title">Form X-editable</span> </a> </li> <li class="nav-item "> <a href="form_wizard.html" class="nav-link "> <span class="title">Form Wizard</span> </a> </li> <li class="nav-item "> <a href="form_icheck.html" class="nav-link "> <span class="title">iCheck Controls</span> </a> </li> <li class="nav-item "> <a href="form_image_crop.html" class="nav-link "> <span class="title">Image Cropping</span> </a> </li> <li class="nav-item "> <a href="form_fileupload.html" class="nav-link "> <span class="title">Multiple File Upload</span> </a> </li> <li class="nav-item "> <a href="form_dropzone.html" class="nav-link "> <span class="title">Dropzone File Upload</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bulb"></i> <span class="title">Elements</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="elements_steps.html" class="nav-link "> <span class="title">Steps</span> </a> </li> <li class="nav-item "> <a href="elements_lists.html" class="nav-link "> <span class="title">Lists</span> </a> </li> <li class="nav-item "> <a href="elements_ribbons.html" class="nav-link "> <span class="title">Ribbons</span> </a> </li> <li class="nav-item "> <a href="elements_overlay.html" class="nav-link "> <span class="title">Overlays</span> </a> </li> <li class="nav-item "> <a href="elements_cards.html" class="nav-link "> <span class="title">User Cards</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-briefcase"></i> <span class="title">Tables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_static_basic.html" class="nav-link "> <span class="title">Basic Tables</span> </a> </li> <li class="nav-item "> <a href="table_static_responsive.html" class="nav-link "> <span class="title">Responsive Tables</span> </a> </li> <li class="nav-item "> <a href="table_bootstrap.html" class="nav-link "> <span class="title">Bootstrap Tables</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">Datatables</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="table_datatables_managed.html" class="nav-link "> Managed Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_buttons.html" class="nav-link "> Buttons Extension </a> </li> <li class="nav-item "> <a href="table_datatables_colreorder.html" class="nav-link "> Colreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_rowreorder.html" class="nav-link "> Rowreorder Extension </a> </li> <li class="nav-item "> <a href="table_datatables_scroller.html" class="nav-link "> Scroller Extension </a> </li> <li class="nav-item "> <a href="table_datatables_fixedheader.html" class="nav-link "> FixedHeader Extension </a> </li> <li class="nav-item "> <a href="table_datatables_responsive.html" class="nav-link "> Responsive Extension </a> </li> <li class="nav-item "> <a href="table_datatables_editable.html" class="nav-link "> Editable Datatables </a> </li> <li class="nav-item "> <a href="table_datatables_ajax.html" class="nav-link "> Ajax Datatables </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="?p=" class="nav-link nav-toggle"> <i class="icon-wallet"></i> <span class="title">Portlets</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="portlet_boxed.html" class="nav-link "> <span class="title">Boxed Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_light.html" class="nav-link "> <span class="title">Light Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_solid.html" class="nav-link "> <span class="title">Solid Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_ajax.html" class="nav-link "> <span class="title">Ajax Portlets</span> </a> </li> <li class="nav-item "> <a href="portlet_draggable.html" class="nav-link "> <span class="title">Draggable Portlets</span> </a> </li> </ul> </li> <li class="nav-item active open"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-bar-chart"></i> <span class="title">Charts</span> <span class="selected"></span> <span class="arrow open"></span> </a> <ul class="sub-menu"> <li class="nav-item active open"> <a href="charts_amcharts.html" class="nav-link "> <span class="title">amChart</span> <span class="selected"></span> </a> </li> <li class="nav-item "> <a href="charts_flotcharts.html" class="nav-link "> <span class="title">Flot Charts</span> </a> </li> <li class="nav-item "> <a href="charts_flowchart.html" class="nav-link "> <span class="title">Flow Charts</span> </a> </li> <li class="nav-item "> <a href="charts_google.html" class="nav-link "> <span class="title">Google Charts</span> </a> </li> <li class="nav-item "> <a href="charts_echarts.html" class="nav-link "> <span class="title">eCharts</span> </a> </li> <li class="nav-item "> <a href="charts_morris.html" class="nav-link "> <span class="title">Morris Charts</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <span class="title">HighCharts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="charts_highcharts.html" class="nav-link "> HighCharts </a> </li> <li class="nav-item "> <a href="charts_highstock.html" class="nav-link "> HighStock </a> </li> <li class="nav-item "> <a href="charts_highmaps.html" class="nav-link "> HighMaps </a> </li> </ul> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-pointer"></i> <span class="title">Maps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="maps_google.html" class="nav-link "> <span class="title">Google Maps</span> </a> </li> <li class="nav-item "> <a href="maps_vector.html" class="nav-link "> <span class="title">Vector Maps</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-layers"></i> <span class="title">Page Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_blank_page.html" class="nav-link "> <span class="title">Blank Page</span> </a> </li> <li class="nav-item "> <a href="layout_ajax_page.html" class="nav-link "> <span class="title">Ajax Content Layout</span> </a> </li> <li class="nav-item "> <a href="layout_language_bar.html" class="nav-link "> <span class="title">Header Language Bar</span> </a> </li> <li class="nav-item "> <a href="layout_footer_fixed.html" class="nav-link "> <span class="title">Fixed Footer</span> </a> </li> <li class="nav-item "> <a href="layout_boxed_page.html" class="nav-link "> <span class="title">Boxed Page</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-feed"></i> <span class="title">Sidebar Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_sidebar_menu_accordion.html" class="nav-link "> <span class="title">Sidebar Accordion Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_menu_compact.html" class="nav-link "> <span class="title">Sidebar Compact Menu</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_reversed.html" class="nav-link "> <span class="title">Reversed Sidebar Page</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_fixed.html" class="nav-link "> <span class="title">Fixed Sidebar Layout</span> </a> </li> <li class="nav-item "> <a href="layout_sidebar_closed.html" class="nav-link "> <span class="title">Closed Sidebar Layout</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class=" icon-wrench"></i> <span class="title">Custom Layouts</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="layout_disabled_menu.html" class="nav-link "> <span class="title">Disabled Menu Links</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_portlet.html" class="nav-link "> <span class="title">Full Height Portlet</span> </a> </li> <li class="nav-item "> <a href="layout_full_height_content.html" class="nav-link "> <span class="title">Full Height Content</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-basket"></i> <span class="title">eCommerce</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="ecommerce_index.html" class="nav-link "> <i class="icon-home"></i> <span class="title">Dashboard</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders.html" class="nav-link "> <i class="icon-basket"></i> <span class="title">Orders</span> </a> </li> <li class="nav-item "> <a href="ecommerce_orders_view.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Order View</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Products</span> </a> </li> <li class="nav-item "> <a href="ecommerce_products_edit.html" class="nav-link "> <i class="icon-graph"></i> <span class="title">Product Edit</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-docs"></i> <span class="title">Apps</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="app_todo.html" class="nav-link "> <i class="icon-clock"></i> <span class="title">Todo 1</span> </a> </li> <li class="nav-item "> <a href="app_todo_2.html" class="nav-link "> <i class="icon-check"></i> <span class="title">Todo 2</span> </a> </li> <li class="nav-item "> <a href="app_inbox.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Inbox</span> </a> </li> <li class="nav-item "> <a href="app_calendar.html" class="nav-link "> <i class="icon-calendar"></i> <span class="title">Calendar</span> </a> </li> <li class="nav-item "> <a href="app_ticket.html" class="nav-link "> <i class="icon-notebook"></i> <span class="title">Support</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-user"></i> <span class="title">User</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_profile_1.html" class="nav-link "> <i class="icon-user"></i> <span class="title">Profile 1</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_account.html" class="nav-link "> <i class="icon-user-female"></i> <span class="title">Profile 1 Account</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_1_help.html" class="nav-link "> <i class="icon-user-following"></i> <span class="title">Profile 1 Help</span> </a> </li> <li class="nav-item "> <a href="page_user_profile_2.html" class="nav-link "> <i class="icon-users"></i> <span class="title">Profile 2</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Login</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_user_login_1.html" class="nav-link " target="_blank"> Login Page 1 </a> </li> <li class="nav-item "> <a href="page_user_login_2.html" class="nav-link " target="_blank"> Login Page 2 </a> </li> <li class="nav-item "> <a href="page_user_login_3.html" class="nav-link " target="_blank"> Login Page 3 </a> </li> <li class="nav-item "> <a href="page_user_login_4.html" class="nav-link " target="_blank"> Login Page 4 </a> </li> <li class="nav-item "> <a href="page_user_login_5.html" class="nav-link " target="_blank"> Login Page 5 </a> </li> <li class="nav-item "> <a href="page_user_login_6.html" class="nav-link " target="_blank"> Login Page 6 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_user_lock_1.html" class="nav-link " target="_blank"> <i class="icon-lock"></i> <span class="title">Lock Screen 1</span> </a> </li> <li class="nav-item "> <a href="page_user_lock_2.html" class="nav-link " target="_blank"> <i class="icon-lock-open"></i> <span class="title">Lock Screen 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-social-dribbble"></i> <span class="title">General</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_about.html" class="nav-link "> <i class="icon-info"></i> <span class="title">About</span> </a> </li> <li class="nav-item "> <a href="page_general_contact.html" class="nav-link "> <i class="icon-call-end"></i> <span class="title">Contact</span> </a> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-notebook"></i> <span class="title">Portfolio</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_portfolio_1.html" class="nav-link "> Portfolio 1 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_2.html" class="nav-link "> Portfolio 2 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_3.html" class="nav-link "> Portfolio 3 </a> </li> <li class="nav-item "> <a href="page_general_portfolio_4.html" class="nav-link "> Portfolio 4 </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-magnifier"></i> <span class="title">Search</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_general_search.html" class="nav-link "> Search 1 </a> </li> <li class="nav-item "> <a href="page_general_search_2.html" class="nav-link "> Search 2 </a> </li> <li class="nav-item "> <a href="page_general_search_3.html" class="nav-link "> Search 3 </a> </li> <li class="nav-item "> <a href="page_general_search_4.html" class="nav-link "> Search 4 </a> </li> <li class="nav-item "> <a href="page_general_search_5.html" class="nav-link "> Search 5 </a> </li> </ul> </li> <li class="nav-item "> <a href="page_general_pricing.html" class="nav-link "> <i class="icon-tag"></i> <span class="title">Pricing</span> </a> </li> <li class="nav-item "> <a href="page_general_faq.html" class="nav-link "> <i class="icon-wrench"></i> <span class="title">FAQ</span> </a> </li> <li class="nav-item "> <a href="page_general_blog.html" class="nav-link "> <i class="icon-pencil"></i> <span class="title">Blog</span> </a> </li> <li class="nav-item "> <a href="page_general_blog_post.html" class="nav-link "> <i class="icon-note"></i> <span class="title">Blog Post</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice</span> </a> </li> <li class="nav-item "> <a href="page_general_invoice_2.html" class="nav-link "> <i class="icon-envelope"></i> <span class="title">Invoice 2</span> </a> </li> </ul> </li> <li class="nav-item "> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> <span class="title">System</span> <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item "> <a href="page_cookie_consent_1.html" class="nav-link "> <span class="title">Cookie Consent 1</span> </a> </li> <li class="nav-item "> <a href="page_cookie_consent_2.html" class="nav-link "> <span class="title">Cookie Consent 2</span> </a> </li> <li class="nav-item "> <a href="page_system_coming_soon.html" class="nav-link " target="_blank"> <span class="title">Coming Soon</span> </a> </li> <li class="nav-item "> <a href="page_system_404_1.html" class="nav-link "> <span class="title">404 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_404_2.html" class="nav-link " target="_blank"> <span class="title">404 Page 2</span> </a> </li> <li class="nav-item "> <a href="page_system_404_3.html" class="nav-link " target="_blank"> <span class="title">404 Page 3</span> </a> </li> <li class="nav-item "> <a href="page_system_500_1.html" class="nav-link "> <span class="title">500 Page 1</span> </a> </li> <li class="nav-item "> <a href="page_system_500_2.html" class="nav-link " target="_blank"> <span class="title">500 Page 2</span> </a> </li> </ul> </li> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-folder"></i> <span class="title">Multi Level Menu</span> <span class="arrow "></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="javascript:;" class="nav-link nav-toggle"> <i class="icon-settings"></i> Item 1 <span class="arrow"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="?p=dashboard-2" target="_blank" class="nav-link"> <i class="icon-user"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-power"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-paper-plane"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-star"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-camera"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-link"></i> Sample Link 2</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pointer"></i> Sample Link 3</a> </li> </ul> </li> <li class="nav-item"> <a href="?p=dashboard-2" target="_blank" class="nav-link"> <i class="icon-globe"></i> Arrow Toggle <span class="arrow nav-toggle"></span> </a> <ul class="sub-menu"> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-tag"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-pencil"></i> Sample Link 1</a> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-graph"></i> Sample Link 1</a> </li> </ul> </li> <li class="nav-item"> <a href="#" class="nav-link"> <i class="icon-bar-chart"></i> Item 3 </a> </li> </ul> </li> </ul> <!-- END SIDEBAR MENU --> </div> <!-- END SIDEBAR --> </div> <!-- END SIDEBAR --> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <!-- BEGIN CONTENT BODY --> <div class="page-content"> <!-- BEGIN PAGE HEADER--> <!-- BEGIN THEME PANEL --> <div class="theme-panel"> <div class="toggler tooltips" data-container="body" data-placement="left" data-html="true" data-original-title="Click to open advance theme customizer panel"> <i class="icon-settings"></i> </div> <div class="toggler-close"> <i class="icon-close"></i> </div> <div class="theme-options"> <div class="theme-option theme-colors clearfix"> <span> THEME COLOR </span> <ul> <li class="color-default current tooltips" data-style="default" data-container="body" data-original-title="Default"> </li> <li class="color-grey tooltips" data-style="grey" data-container="body" data-original-title="Grey"> </li> <li class="color-blue tooltips" data-style="blue" data-container="body" data-original-title="Blue"> </li> <li class="color-dark tooltips" data-style="dark" data-container="body" data-original-title="Dark"> </li> <li class="color-light tooltips" data-style="light" data-container="body" data-original-title="Light"> </li> </ul> </div> <div class="theme-option"> <span> Theme Style </span> <select class="layout-style-option form-control input-small"> <option value="square" selected="selected">Square corners</option> <option value="rounded">Rounded corners</option> </select> </div> <div class="theme-option"> <span> Layout </span> <select class="layout-option form-control input-small"> <option value="fluid" selected="selected">Fluid</option> <option value="boxed">Boxed</option> </select> </div> <div class="theme-option"> <span> Header </span> <select class="page-header-option form-control input-small"> <option value="fixed" selected="selected">Fixed</option> <option value="default">Default</option> </select> </div> <div class="theme-option"> <span> Top Dropdown</span> <select class="page-header-top-dropdown-style-option form-control input-small"> <option value="light" selected="selected">Light</option> <option value="dark">Dark</option> </select> </div> <div class="theme-option"> <span> Sidebar Mode</span> <select class="sidebar-option form-control input-small"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> <div class="theme-option"> <span> Sidebar Style</span> <select class="sidebar-style-option form-control input-small"> <option value="default" selected="selected">Default</option> <option value="compact">Compact</option> </select> </div> <div class="theme-option"> <span> Sidebar Menu </span> <select class="sidebar-menu-option form-control input-small"> <option value="accordion" selected="selected">Accordion</option> <option value="hover">Hover</option> </select> </div> <div class="theme-option"> <span> Sidebar Position </span> <select class="sidebar-pos-option form-control input-small"> <option value="left" selected="selected">Left</option> <option value="right">Right</option> </select> </div> <div class="theme-option"> <span> Footer </span> <select class="page-footer-option form-control input-small"> <option value="fixed">Fixed</option> <option value="default" selected="selected">Default</option> </select> </div> </div> </div> <!-- END THEME PANEL --> <h1 class="page-title"> amChart <small>charting library & maps. Where all data goes visual with amChart plugin</small> </h1> <div class="page-bar"> <ul class="page-breadcrumb"> <li> <i class="icon-home"></i> <a href="index.html">Home</a> <i class="fa fa-angle-right"></i> </li> <li> <span>Charts</span> </li> </ul> <div class="page-toolbar"> <div class="btn-group pull-right"> <button type="button" class="btn btn-fit-height grey-salt dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-delay="1000" data-close-others="true"> Actions <i class="fa fa-angle-down"></i> </button> <ul class="dropdown-menu pull-right" role="menu"> <li> <a href="#"> <i class="icon-bell"></i> Action</a> </li> <li> <a href="#"> <i class="icon-shield"></i> Another action</a> </li> <li> <a href="#"> <i class="icon-user"></i> Something else here</a> </li> <li class="divider"> </li> <li> <a href="#"> <i class="icon-bag"></i> Separated link</a> </li> </ul> </div> </div> </div> <!-- END PAGE HEADER--> <div class="m-heading-1 border-green m-bordered"> <p> You can download and use all amCharts products for free. The only limitation of the free version is that a small link to this web site will be displayed in the top left corner of your charts. If you would like to use charts without this link, or you appreciate the software and would like to support its creators, <a href="http://www.amcharts.com/online-store/" target="_blank"> please purchase a commercial license</a> </p> <p> <span class="label label-success">Exclusively for Metronic users:</span> <br> After purchasing Metronic you will get a promo code for <span class="label label-danger">15% DISCOUNT</span> for commercial license of amChart. To find the promo code please check the readme.txt file in the Metronic's purchased package. </p> <p> For more info please chech the plugin's official <a class="btn red btn-outline" href="http://www.amcharts.com/demos/" target="_blank">demos & documentation</a> </p> </div> <div class="row"> <div class="col-md-12"> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light bordered"> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Bar Charts</span> <span class="caption-helper">column and line mix</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_1" class="chart" style="height: 500px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Line & Area</span> <span class="caption-helper">duration on value axis</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_2" class="chart" style="height: 400px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Line & Area</span> <span class="caption-helper">with changing color</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_3" class="chart" style="height: 400px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Bar & Line</span> <span class="caption-helper">bar and line chart mix</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_4" class="chart" style="height: 400px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> 3D Chart</span> <span class="caption-helper">3d cylinder chart</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_5" class="chart" style="height: 400px;"> </div> <div class="well margin-top-20"> <div class="row"> <div class="col-sm-3"> <label class="text-left">Top Radius:</label> <input class="chart_5_chart_input" data-property="topRadius" type="range" min="0" max="1.5" value="1" step="0.01" /> </div> <div class="col-sm-3"> <label class="text-left">Angle:</label> <input class="chart_5_chart_input" data-property="angle" type="range" min="0" max="89" value="30" step="1" /> </div> <div class="col-sm-3"> <label class="text-left">Depth:</label> <input class="chart_5_chart_input" data-property="depth3D" type="range" min="1" max="120" value="40" step="1" /> </div> </div> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-6"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Simple Pie Chart</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_6" class="chart" style="height: 525px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> <div class="col-md-6"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> 3D Pie Chart</span> <span class="caption-helper">bar and line chart mix</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_7" class="chart" style="height: 400px;"> </div> <div class="well margin-top-20"> <div class="row"> <div class="col-sm-3"> <label class="text-left">Top Radius:</label> <input class="chart_7_chart_input" data-property="topRadius" type="range" min="0" max="1.5" value="1" step="0.01" /> </div> <div class="col-sm-3"> <label class="text-left">Angle:</label> <input class="chart_7_chart_input" data-property="angle" type="range" min="0" max="89" value="30" step="1" /> </div> <div class="col-sm-3"> <label class="text-left">Depth:</label> <input class="chart_7_chart_input" data-property="depth3D" type="range" min="1" max="120" value="40" step="1" /> </div> </div> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-6"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Polar Chart</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_8" class="chart" style="height: 400px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> <div class="col-md-6"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Radar Chart</span> <span class="caption-helper">bar and line chart mix</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_9" class="chart" style="height: 400px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Map with Bubbles</span> <span class="caption-helper">world population</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_10" class="chart" style="height: 600px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Flight Routes Map</span> <span class="caption-helper">interactive flight routes map</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_11" class="chart" style="height: 500px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> <!-- BEGIN ROW --> <div class="row"> <div class="col-md-12"> <!-- BEGIN CHART PORTLET--> <div class="portlet light "> <div class="portlet-title"> <div class="caption"> <i class="icon-bar-chart font-green-haze"></i> <span class="caption-subject bold uppercase font-green-haze"> Stock Charts</span> <span class="caption-helper">with stock events</span> </div> <div class="tools"> <a href="javascript:;" class="collapse"> </a> <a href="#portlet-config" data-toggle="modal" class="config"> </a> <a href="javascript:;" class="reload"> </a> <a href="javascript:;" class="fullscreen"> </a> <a href="javascript:;" class="remove"> </a> </div> </div> <div class="portlet-body"> <div id="chart_12" class="chart" style="height: 500px;"> </div> </div> </div> <!-- END CHART PORTLET--> </div> </div> <!-- END ROW --> </div> </div> </div> <!-- END CONTENT BODY --> </div> <!-- END CONTENT --> <!-- BEGIN QUICK SIDEBAR --> <a href="javascript:;" class="page-quick-sidebar-toggler"> <i class="icon-login"></i> </a> <div class="page-quick-sidebar-wrapper" data-close-on-body-click="false"> <div class="page-quick-sidebar"> <ul class="nav nav-tabs"> <li class="active"> <a href="javascript:;" data-target="#quick_sidebar_tab_1" data-toggle="tab"> Users <span class="badge badge-danger">2</span> </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_2" data-toggle="tab"> Alerts <span class="badge badge-success">7</span> </a> </li> <li class="dropdown"> <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown"> More <i class="fa fa-angle-down"></i> </a> <ul class="dropdown-menu pull-right"> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-bell"></i> Alerts </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-info"></i> Notifications </a> </li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-speech"></i> Activities </a> </li> <li class="divider"></li> <li> <a href="javascript:;" data-target="#quick_sidebar_tab_3" data-toggle="tab"> <i class="icon-settings"></i> Settings </a> </li> </ul> </li> </ul> <div class="tab-content"> <div class="tab-pane active page-quick-sidebar-chat" id="quick_sidebar_tab_1"> <div class="page-quick-sidebar-chat-users" data-rail-color="#ddd" data-wrapper-class="page-quick-sidebar-list"> <h3 class="list-heading">Staff</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-success">8</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar3.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Bob Nilson</h4> <div class="media-heading-sub"> Project Manager </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar1.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Nick Larson</h4> <div class="media-heading-sub"> Art Director </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">3</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar4.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Hubert</h4> <div class="media-heading-sub"> CTO </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar2.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ella Wong</h4> <div class="media-heading-sub"> CEO </div> </div> </li> </ul> <h3 class="list-heading">Customers</h3> <ul class="media-list list-items"> <li class="media"> <div class="media-status"> <span class="badge badge-warning">2</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar6.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lara Kunis</h4> <div class="media-heading-sub"> CEO, Loop Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="label label-sm label-success">new</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar7.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Ernie Kyllonen</h4> <div class="media-heading-sub"> Project Manager, <br> SmartBizz PTL </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar8.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Lisa Stone</h4> <div class="media-heading-sub"> CTO, Keort Inc </div> <div class="media-heading-small"> Last seen 13:10 PM </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-success">7</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar9.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Deon Portalatin</h4> <div class="media-heading-sub"> CFO, H&D LTD </div> </div> </li> <li class="media"> <img class="media-object" src="../assets/layouts/layout/img/avatar10.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Irina Savikova</h4> <div class="media-heading-sub"> CEO, Tizda Motors Inc </div> </div> </li> <li class="media"> <div class="media-status"> <span class="badge badge-danger">4</span> </div> <img class="media-object" src="../assets/layouts/layout/img/avatar11.jpg" alt="..."> <div class="media-body"> <h4 class="media-heading">Maria Gomez</h4> <div class="media-heading-sub"> Manager, Infomatic Inc </div> <div class="media-heading-small"> Last seen 03:10 AM </div> </div> </li> </ul> </div> <div class="page-quick-sidebar-item"> <div class="page-quick-sidebar-chat-user"> <div class="page-quick-sidebar-nav"> <a href="javascript:;" class="page-quick-sidebar-back-to-list"> <i class="icon-arrow-left"></i>Back</a> </div> <div class="page-quick-sidebar-chat-user-messages"> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> When could you send me the report ? </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:15</span> <span class="body"> Its almost done. I will be sending it shortly </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:15</span> <span class="body"> Alright. Thanks! :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:16</span> <span class="body"> You are most welcome. Sorry for the delay. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> No probs. Just take your time :) </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Alright. I just emailed it to you. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Great! Thanks. Will check it right away. </span> </div> </div> <div class="post in"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar2.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Ella Wong</a> <span class="datetime">20:40</span> <span class="body"> Please let me know if you have any comment. </span> </div> </div> <div class="post out"> <img class="avatar" alt="" src="../assets/layouts/layout/img/avatar3.jpg" /> <div class="message"> <span class="arrow"></span> <a href="javascript:;" class="name">Bob Nilson</a> <span class="datetime">20:17</span> <span class="body"> Sure. I will check and buzz you if anything needs to be corrected. </span> </div> </div> </div> <div class="page-quick-sidebar-chat-user-form"> <div class="input-group"> <input type="text" class="form-control" placeholder="Type a message here..."> <div class="input-group-btn"> <button type="button" class="btn green"> <i class="icon-paper-clip"></i> </button> </div> </div> </div> </div> </div> </div> <div class="tab-pane page-quick-sidebar-alerts" id="quick_sidebar_tab_2"> <div class="page-quick-sidebar-alerts-list"> <h3 class="list-heading">General</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-warning"> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> <h3 class="list-heading">System</h3> <ul class="feeds list-items"> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-check"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 4 pending tasks. <span class="label label-sm label-warning "> Take action <i class="fa fa-share"></i> </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> Just now </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-danger"> <i class="fa fa-bar-chart-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Finance Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-default"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-shopping-cart"></i> </div> </div> <div class="cont-col2"> <div class="desc"> New order received with <span class="label label-sm label-success"> Reference Number: DR23923 </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 30 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-success"> <i class="fa fa-user"></i> </div> </div> <div class="cont-col2"> <div class="desc"> You have 5 pending membership that requires a quick review. </div> </div> </div> </div> <div class="col2"> <div class="date"> 24 mins </div> </div> </li> <li> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-warning"> <i class="fa fa-bell-o"></i> </div> </div> <div class="cont-col2"> <div class="desc"> Web server hardware needs to be upgraded. <span class="label label-sm label-default "> Overdue </span> </div> </div> </div> </div> <div class="col2"> <div class="date"> 2 hours </div> </div> </li> <li> <a href="javascript:;"> <div class="col1"> <div class="cont"> <div class="cont-col1"> <div class="label label-sm label-info"> <i class="fa fa-briefcase"></i> </div> </div> <div class="cont-col2"> <div class="desc"> IPO Report for year 2013 has been released. </div> </div> </div> </div> <div class="col2"> <div class="date"> 20 mins </div> </div> </a> </li> </ul> </div> </div> <div class="tab-pane page-quick-sidebar-settings" id="quick_sidebar_tab_3"> <div class="page-quick-sidebar-settings-list"> <h3 class="list-heading">General Settings</h3> <ul class="list-items borderless"> <li> Enable Notifications <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Allow Tracking <input type="checkbox" class="make-switch" data-size="small" data-on-color="info" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Log Errors <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Auto Sumbit Issues <input type="checkbox" class="make-switch" data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Enable SMS Alerts <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="success" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <h3 class="list-heading">System Settings</h3> <ul class="list-items borderless"> <li> Security Level <select class="form-control input-inline input-sm input-small"> <option value="1">Normal</option> <option value="2" selected>Medium</option> <option value="e">High</option> </select> </li> <li> Failed Email Attempts <input class="form-control input-inline input-sm input-small" value="5" /> </li> <li> Secondary SMTP Port <input class="form-control input-inline input-sm input-small" value="3560" /> </li> <li> Notify On System Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="danger" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> <li> Notify On SMTP Error <input type="checkbox" class="make-switch" checked data-size="small" data-on-color="warning" data-on-text="ON" data-off-color="default" data-off-text="OFF"> </li> </ul> <div class="inner-content"> <button class="btn btn-success"> <i class="icon-settings"></i> Save Changes</button> </div> </div> </div> </div> </div> </div> <!-- END QUICK SIDEBAR --> </div> <!-- END CONTAINER --> <!-- BEGIN FOOTER --> <div class="page-footer"> <div class="page-footer-inner"> 2016 &copy; Metronic Theme By <a target="_blank" href="http://keenthemes.com">Keenthemes</a> &nbsp;|&nbsp; <a href="http://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" title="Purchase Metronic just for 27$ and get lifetime updates for free" target="_blank">Purchase Metronic!</a> <div class="scroll-to-top"> <i class="icon-arrow-up"></i> </div> </div> <!-- END FOOTER --> <!-- BEGIN QUICK NAV --> <nav class="quick-nav"> <a class="quick-nav-trigger" href="#0"> <span aria-hidden="true"></span> </a> <ul> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/4021469?ref=keenthemes" target="_blank" class="active"> <span>Purchase Metronic</span> <i class="icon-basket"></i> </a> </li> <li> <a href="https://themeforest.net/item/metronic-responsive-admin-dashboard-template/reviews/4021469?ref=keenthemes" target="_blank"> <span>Customer Reviews</span> <i class="icon-users"></i> </a> </li> <li> <a href="http://keenthemes.com/showcast/" target="_blank"> <span>Showcase</span> <i class="icon-user"></i> </a> </li> <li> <a href="http://keenthemes.com/metronic-theme/changelog/" target="_blank"> <span>Changelog</span> <i class="icon-graph"></i> </a> </li> </ul> <span aria-hidden="true" class="quick-nav-bg"></span> </nav> <div class="quick-nav-overlay"></div> <!-- END QUICK NAV --> <!--[if lt IE 9]> <script src="../assets/global/plugins/respond.min.js"></script> <script src="../assets/global/plugins/excanvas.min.js"></script> <script src="../assets/global/plugins/ie8.fix.min.js"></script> <![endif]--> <!-- BEGIN CORE PLUGINS --> <script src="../assets/global/plugins/jquery.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap/js/bootstrap.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/js.cookie.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery-slimscroll/jquery.slimscroll.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/jquery.blockui.min.js" type="text/javascript"></script> <script src="../assets/global/plugins/bootstrap-switch/js/bootstrap-switch.min.js" type="text/javascript"></script> <!-- END CORE PLUGINS --> <!-- BEGIN PAGE LEVEL PLUGINS --> <script src="../assets/global/plugins/amcharts/amcharts/amcharts.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/serial.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/pie.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/radar.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/themes/light.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/themes/patterns.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amcharts/themes/chalk.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/ammap/ammap.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/ammap/maps/js/worldLow.js" type="text/javascript"></script> <script src="../assets/global/plugins/amcharts/amstockcharts/amstock.js" type="text/javascript"></script> <!-- END PAGE LEVEL PLUGINS --> <!-- BEGIN THEME GLOBAL SCRIPTS --> <script src="../assets/global/scripts/app.min.js" type="text/javascript"></script> <!-- END THEME GLOBAL SCRIPTS --> <!-- BEGIN PAGE LEVEL SCRIPTS --> <script src="../assets/pages/scripts/charts-amcharts.min.js" type="text/javascript"></script> <!-- END PAGE LEVEL SCRIPTS --> <!-- BEGIN THEME LAYOUT SCRIPTS --> <script src="../assets/layouts/layout2/scripts/layout.min.js" type="text/javascript"></script> <script src="../assets/layouts/layout2/scripts/demo.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-sidebar.min.js" type="text/javascript"></script> <script src="../assets/layouts/global/scripts/quick-nav.min.js" type="text/javascript"></script> <!-- END THEME LAYOUT SCRIPTS --> </body> </html>
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/agnipuran-1-111-sandhi_ext.txt.out.dict_3543_jnu.html
sanskritiitd/sanskrit
url: http://sanskrit.jnu.ac.in/sandhi/viccheda.jsp?itext=चाप्यस्य<html> <title>Sanskrit Sandhi Splitter at J.N.U. New Delhi</title> <META CONTENT='text/hetml CHARSET=UTF-8' HTTP-EQUIV='Content-Type'/> <META NAME="Author" CONTENT="Dr. Girish Nath Jha"> <META NAME="Keywords" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP"> <META NAME="Description" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP"> <head> <head> <style> <!-- div.Section1 {page:Section1;} --> </style> <head> <meta http-equiv=Content-Type content="text/html; charset=utf-8"> <script language="JavaScript" src=../js/menuitems.js></script> <script language="JavaScript" src="../js/mm_menu.js"></script> <meta name=Author content="Dr. Girish Nath Jha, JNU, New Delhi"> </head> <body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'> <div class=Section1> <div align=center> <table border=1 cellspacing=0 cellpadding=0 width=802 style='width:601.5pt; border-collapse:collapse;border:none;mso-border-alt:outset navy .75pt'> <tr> <td width=800 style='width:600.0pt;border:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'> <script language="JavaScript1.2">mmLoadMenus();</script> <img width=800 height=130 id="_x0000_i1028" src="../images/header1.jpg" border=0> </td> </tr> <tr> <td width=818 style='width:613.5pt;border:inset navy .75pt;border-top:none; mso-border-top-alt:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'> <p align="center"><a href="../"><span style='text-decoration:none;text-underline: none'><img border=1 width=49 height=26 id="_x0000_i1037" src="../images/backtohome.jpg"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171051_0,6,29,null,'image2')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image2 src="../images/lang_tool.jpg" name=image2 width="192" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171909_0,6,29,null,'image3')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image3 src="../images/lexical.jpg" name=image3 width="137" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171609_0,6,29,null,'image1')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image1 src="../images/elearning.jpg" name=image1 width="77" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171809_0,6,29,null,'image4')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image4 src="../images/corpora.jpg" name=image4 width="105" height="26"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171709_0,6,29,null,'image5')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image5 src="../images/rstudents.jpg" name=image5 width="125" height="26"></span></a><span style='text-underline: none'> </span> <a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171409_0,6,29,null,'image6')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image6 src="../images/feedback.jpg" name=image6 width="80" height="25"></span></a><span style='text-underline: none'> </span> <!--- <a href="../user/feedback.jsp"><img border="1" src="../images/feedback.jpg" width="80" height="25"></a> ---> </td> </tr> <tr> <td width="800"> <p align="center"><font color="#FF9933"><span style='font-size:18.0pt; '><b>Sanskrit Sandhi Recognizer and Analyzer</b></span></font></p> The Sanskrit sandhi splitter (VOWEL SANDHI) was developed as part of M.Phil. research by <a href="mailto:sachin.jnu@gmail.com">Sachin Kumar</a> (M.Phil. 2005-2007), and <a href=mailto:diwakarmishra@gmail.com>Diwakar Mishra</a> (M.Phil. 2007-2009) under the supervision of <a href=http://www.jnu.ac.in/faculty/gnjha>Dr. Girish Nath Jha</a>. The coding for this application has been done by Dr. Girish Nath Jha and Diwakar Mishra. <!---Please send feedback to to <a href="mailto:girishj@mail.jnu.ac.in">Dr. Girish Nath Jha</A>--->The Devanagari input mechanism has been developed in Javascript by Satyendra Kumar Chaube, Dr. Girish Nath Jha and Dharm Singh Rathore. </center> <table border=0 width=100%> <tr> <td valign=top width=48%> <table> <tr> <td> <FORM METHOD=get ACTION=viccheda.jsp#results name="iform" accept-Charset="UTF-8"> <font size=2><b>Enter Sanskrit text for sandhi processing (संधि-विच्छेद हेतु पाठ्य दें) using adjacent keyboard OR Use our inbuilt <a href=../js/itrans.html target=_blank>iTRANS</a>-Devanagari unicode converter for fast typing<br> <a href=sandhitest.txt>examples</a> <TEXTAREA name=itext COLS=40 ROWS=9 onkeypress=checkKeycode(event) onkeyup=iu()> चाप्यस्य</TEXTAREA> </td> </tr> <tr> <td> <font color=red size=2>Run in debug mode</font> <input type=checkbox name="debug" value="ON"> <br> <input type=submit value="Click to sandhi-split (संधि-विच्छेद करें)"></span><br> </td> </tr> </table> </td> <td valign=top width=52%> <table> <tr> <td> <head> <SCRIPT language=JavaScript src="../js/devkb.js"></SCRIPT> <head> <TEXTAREA name=itrans rows=5 cols=10 style="display:none"></TEXTAREA> <INPUT name=lastChar type=hidden> <table border=2 style="background-color:#fff;"> <tbody> <tr > <td> <input type=button name="btn" style="width: 24px" value="&#x0905;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0906;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0907;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0908;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0909;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0910;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0913;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0914;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0905;&#x0902;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0905;&#x0903;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0911;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x094D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0940;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0941;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0942;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0947;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0948;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x094B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x094C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0902;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0903;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0945;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0949;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x0915;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0916;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0917;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0918;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0919;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 100px" value="Backspace" onClick="BackSpace()"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="+" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0920;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0921;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0922;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0923;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0924;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0925;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0926;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0927;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0928;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="/" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x092F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0932;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0935;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0964;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="*" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0936;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0937;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0938;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x090B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0943;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0944;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0939;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0965;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x0924;&#x094D;&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091C;&#x094D;&#x091E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0915;&#x094D;&#x0937;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0936;&#x094D;&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 200px" value="Space Bar" onClick="Space()"> <input type=button name="btn" style="width: 24px" value="&#x0901;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093C;" onClick="keyboard(this.value)"> </td> </tr> </tbody> </table> </td> </tr> </table> </td> </tr> <tr> </table> </form> <a name=results> <font size=4><b><u>Results</u></b></font> <br> चापे स (अयादिसन्धि एचोऽयवायावः)<br> चापे अस (अयादिसन्धि एचोऽयवायावः)<br> चापी अस (यण् सन्धि इको यणचि)<br> चापि अस (यण् सन्धि इको यणचि)<br> चाप स (लोपः शाकल्यस्य)<br> <br> <font color=red> <br> <hr> <br> </body> </html>
XP Expurgement/XP_vol_update/templates/XP_vol_update/Gains_XP.html
anthropo-lab/XP
{% extends "global/Page.html" %} {% load staticfiles otree_tags %} {% block title %} Gains de l'expérience en euros {% endblock %} {% block content %} <p>Voici vos gains pour la première partie de l'expérience:</p> <br> <table class='table table-bordered text-center' style="width:500px; margin-top:20px;"> <tr> <th colspan = 1 class="text-center">Gains partie 1</th> <td>{{ gains_1 }}</td> </tr> <tr> <th class="text-center">Taux de conversion</th> <td>{{ tx_conver_1 }}</td> </tr> <tr> <th class="text-center">Gains en €</th> <td>{{ gains_euros_1 }}</td> </tr> </table> <br> <br> <p>Voici vos gains pour la deuxième partie de l'expérience:</p> <br> <table class='table table-bordered text-center' style="width:500px; margin-top:20px;"> <tr> <th colspan = 1 class="text-center">Gains partie 2</th> <td>{{ payoff_player }}</td> </tr> <tr> <th class="text-center">Taux de conversion</th> <td>{{ tx_conver_2 }}</td> </tr> <tr> <th class="text-center">Gains en €</th> <td>{{ gains_euros_2 }}</td> </tr> </table> <br> <br> Au total vous gagnez <b>{{ total_euros }}€</b> {% endblock %}
javadoc/org/ingatan/component/image/optionpanes/class-use/StampOptionPane.CategoryComboActionListener.html
edesiocs/ingatan
<!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 Wed Feb 09 11:31:29 EST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.ingatan.component.image.optionpanes.StampOptionPane.CategoryComboActionListener </TITLE> <META NAME="date" CONTENT="2011-02-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.ingatan.component.image.optionpanes.StampOptionPane.CategoryComboActionListener"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/ingatan/component/image/optionpanes/StampOptionPane.CategoryComboActionListener.html" title="class in org.ingatan.component.image.optionpanes"><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="../../../../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/ingatan/component/image/optionpanes//class-useStampOptionPane.CategoryComboActionListener.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StampOptionPane.CategoryComboActionListener.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.ingatan.component.image.optionpanes.StampOptionPane.CategoryComboActionListener</B></H2> </CENTER> No usage of org.ingatan.component.image.optionpanes.StampOptionPane.CategoryComboActionListener <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/ingatan/component/image/optionpanes/StampOptionPane.CategoryComboActionListener.html" title="class in org.ingatan.component.image.optionpanes"><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="../../../../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/ingatan/component/image/optionpanes//class-useStampOptionPane.CategoryComboActionListener.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="StampOptionPane.CategoryComboActionListener.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> </BODY> </HTML>
crypto/adder/test/package.html
mpk2/STAR-Vote
<html> <head> <title>crypto.adder.test</title> </head> <body> <p>Adder unit test package.</p> </body> </html>
theme/roshnilite/css/jquery.bxslider.css
RicardoBorgesGO/moodle-theme
/** * BxSlider v4.1.2 - Fully loaded, responsive content slider * http://bxslider.com * * Written by: Steven Wanderski, 2014 * http://stevenwanderski.com * (while drinking Belgian ales and listening to jazz) * * CEO and founder of bxCreative, LTD * http://bxcreative.com */ /** RESET AND LAYOUT ===================================*/ .bx-wrapper { position: relative; margin: 0 auto 60px; padding: 0; *zoom: 1; } .bx-wrapper img { max-width: 100%; display: block; } /** THEME ===================================*/ .bx-wrapper .bx-viewport { } .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto { position: absolute; bottom: -30px; width: 100%; } /* LOADER */ .bx-wrapper .bx-loading { min-height: 50px; background: url("img/bxslider-img/bx_loader.gif") center center no-repeat #fff; height: 100%; width: 100%; position: absolute; top: 0; left: 0; z-index: 2000; } /* PAGER */ .bx-wrapper .bx-pager { text-align: center; font-size: .85em; font-family: Arial; font-weight: bold; color: #666; padding-top: 20px; } .bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item { display: inline-block; *zoom: 1; *display: inline; } .bx-wrapper .bx-pager.bx-default-pager a { background: #666; text-indent: -9999px; display: block; width: 10px; height: 10px; margin: 0 5px; outline: 0; -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; } .bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active { background: #000; } /* DIRECTION CONTROLS (NEXT / PREV) */ .bx-wrapper .bx-prev { left: 20px; background: url("img/bxslider-img/i-arr-l-2.png") no-repeat center; } .bx-wrapper .bx-next { right: 20px; background: url("img/bxslider-img/i-arr-r-2.png") no-repeat center; } .bx-wrapper .bx-prev:hover { opacity: 0.7; } .bx-wrapper .bx-next:hover { opacity: 0.7; } .bx-wrapper .bx-controls-direction a { position: absolute; top: 47%; margin-top: -16px; outline: 0; width: 32px; height: 32px; text-indent: -9999px; z-index: 9999; } .bx-wrapper .bx-controls-direction a.disabled { display: none; } /* AUTO CONTROLS (START / STOP) */ .bx-wrapper .bx-controls-auto { text-align: center; } .bx-wrapper .bx-controls-auto .bx-start { display: block; text-indent: -9999px; width: 10px; height: 11px; outline: 0; background: url("img/bxslider-img/controls.png") -86px -11px no-repeat; margin: 0 3px; } .bx-wrapper .bx-controls-auto .bx-start:hover, .bx-wrapper .bx-controls-auto .bx-start.active { background-position: -86px 0; } .bx-wrapper .bx-controls-auto .bx-stop { display: block; text-indent: -9999px; width: 9px; height: 11px; outline: 0; background: url("img/bxslider-img/controls.png") -86px -44px no-repeat; margin: 0 3px; } .bx-wrapper .bx-controls-auto .bx-stop:hover, .bx-wrapper .bx-controls-auto .bx-stop.active { background-position: -86px -33px; } /* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */ .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager { text-align: left; width: 80%; } .bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto { right: 0; width: 35px; } /* IMAGE CAPTIONS */ .bx-wrapper .bx-caption { position: absolute; bottom: 0; left: 0; background: #666\9; background: rgba(80, 80, 80, 0.75); width: 100%; } .bx-wrapper .bx-caption span { color: #fff; font-family: Arial; display: block; font-size: .85em; padding: 10px; }
symfony2/docs-en/v2.1.0/cookbook/bundles/extension.html
P3PO/the-phpjs-local-docs-collection
<!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/html; charset=utf-8" /> <title>How to expose a Semantic Configuration for a Bundle &mdash; Symfony2Docs v2.1.0 2.1.0 documentation</title> <link rel="stylesheet" href="../../_static/default.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '2.1.0', COLLAPSE_INDEX: false, FILE_SUFFIX: '.html', HAS_SOURCE: true }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <link rel="top" title="Symfony2Docs v2.1.0 2.1.0 documentation" href="../../index.html" /> <link rel="up" title="Bundles" href="index.html" /> <link rel="next" title="Email" href="../email/index.html" /> <link rel="prev" title="How to Override any Part of a Bundle" href="override.html" /> </head> <body> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" accesskey="I">index</a></li> <li class="right" > <a href="../email/index.html" title="Email" accesskey="N">next</a> |</li> <li class="right" > <a href="override.html" title="How to Override any Part of a Bundle" accesskey="P">previous</a> |</li> <li><a href="../../index.html">Symfony2Docs v2.1.0 2.1.0 documentation</a> &raquo;</li> <li><a href="../index.html" >The Cookbook</a> &raquo;</li> <li><a href="index.html" accesskey="U">Bundles</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body"> <div class="section" id="how-to-expose-a-semantic-configuration-for-a-bundle"> <span id="index-0"></span><h1>How to expose a Semantic Configuration for a Bundle<a class="headerlink" href="#how-to-expose-a-semantic-configuration-for-a-bundle" title="Permalink to this headline">¶</a></h1> <p>If you open your application configuration file (usually <tt class="docutils literal"><span class="pre">app/config/config.yml</span></tt>), you&#8217;ll see a number of different configuration &#8220;namespaces&#8221;, such as <tt class="docutils literal"><span class="pre">framework</span></tt>, <tt class="docutils literal"><span class="pre">twig</span></tt>, and <tt class="docutils literal"><span class="pre">doctrine</span></tt>. Each of these configures a specific bundle, allowing you to configure things at a high level and then let the bundle make all the low-level, complex changes that result.</p> <p>For example, the following tells the <tt class="docutils literal"><span class="pre">FrameworkBundle</span></tt> to enable the form integration, which involves the defining of quite a few services as well as integration of other related components:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><div class="highlight"><pre><span class="l-Scalar-Plain">framework</span><span class="p-Indicator">:</span> <span class="c1"># ...</span> <span class="l-Scalar-Plain">form</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">true</span> </pre></div> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="nt">&lt;framework:config&gt;</span> <span class="nt">&lt;framework:form</span> <span class="nt">/&gt;</span> <span class="nt">&lt;/framework:config&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;framework&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span> <span class="c1">// ...</span> <span class="s1">&#39;form&#39;</span> <span class="o">=&gt;</span> <span class="k">true</span><span class="p">,</span> <span class="c1">// ...</span> <span class="p">));</span> </pre></div> </div> </li> </ul> </div> <p>When you create a bundle, you have two choices on how to handle configuration:</p> <ol class="arabic"> <li><p class="first"><strong>Normal Service Configuration</strong> (<em>easy</em>):</p> <blockquote> <div><p>You can specify your services in a configuration file (e.g. <tt class="docutils literal"><span class="pre">services.yml</span></tt>) that lives in your bundle and then import it from your main application configuration. This is really easy, quick and totally effective. If you make use of <a class="reference internal" href="../../book/service_container.html#book-service-container-parameters"><em>parameters</em></a>, then you still have the flexibility to customize your bundle from your application configuration. See &#8220;<a class="reference internal" href="../../book/service_container.html#service-container-imports-directive"><em>Importing Configuration with imports</em></a>&#8221; for more details.</p> </div></blockquote> </li> <li><p class="first"><strong>Exposing Semantic Configuration</strong> (<em>advanced</em>):</p> <blockquote> <div><p>This is the way configuration is done with the core bundles (as described above). The basic idea is that, instead of having the user override individual parameters, you let the user configure just a few, specifically created options. As the bundle developer, you then parse through that configuration and load services inside an &#8220;Extension&#8221; class. With this method, you won&#8217;t need to import any configuration resources from your main application configuration: the Extension class can handle all of this.</p> </div></blockquote> </li> </ol> <p>The second option - which you&#8217;ll learn about in this article - is much more flexible, but also requires more time to setup. If you&#8217;re wondering which method you should use, it&#8217;s probably a good idea to start with method #1, and then change to #2 later if you need to.</p> <p>The second method has several specific advantages:</p> <ul class="simple"> <li>Much more powerful than simply defining parameters: a specific option value might trigger the creation of many service definitions;</li> <li>Ability to have configuration hierarchy</li> <li>Smart merging when several configuration files (e.g. <tt class="docutils literal"><span class="pre">config_dev.yml</span></tt> and <tt class="docutils literal"><span class="pre">config.yml</span></tt>) override each other&#8217;s configuration;</li> <li>Configuration validation (if you use a <a class="reference internal" href="#cookbook-bundles-extension-config-class"><em>Configuration Class</em></a>);</li> <li>IDE auto-completion when you create an XSD and developers use XML.</li> </ul> <div class="sidebar"> <p class="first sidebar-title">Overriding bundle parameters</p> <p class="last">If a Bundle provides an Extension class, then you should generally <em>not</em> override any service container parameters from that bundle. The idea is that if an Extension class is present, every setting that should be configurable should be present in the configuration made available by that class. In other words the extension class defines all the publicly supported configuration settings for which backward compatibility will be maintained.</p> </div> <div class="section" id="creating-an-extension-class"> <span id="index-1"></span><h2>Creating an Extension Class<a class="headerlink" href="#creating-an-extension-class" title="Permalink to this headline">¶</a></h2> <p>If you do choose to expose a semantic configuration for your bundle, you&#8217;ll first need to create a new &#8220;Extension&#8221; class, which will handle the process. This class should live in the <tt class="docutils literal"><span class="pre">DependencyInjection</span></tt> directory of your bundle and its name should be constructed by replacing the <tt class="docutils literal"><span class="pre">Bundle</span></tt> suffix of the Bundle class name with <tt class="docutils literal"><span class="pre">Extension</span></tt>. For example, the Extension class of <tt class="docutils literal"><span class="pre">AcmeHelloBundle</span></tt> would be called <tt class="docutils literal"><span class="pre">AcmeHelloExtension</span></tt>:</p> <div class="highlight-python"><pre>// Acme/HelloBundle/DependencyInjection/AcmeHelloExtension.php namespace Acme\HelloBundle\DependencyInjection; use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\DependencyInjection\ContainerBuilder; class AcmeHelloExtension extends Extension { public function load(array $configs, ContainerBuilder $container) { // ... where all of the heavy logic is done } public function getXsdValidationBasePath() { return __DIR__.'/../Resources/config/'; } public function getNamespace() { return 'http://www.example.com/symfony/schema/'; } }</pre> </div> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">The <tt class="docutils literal"><span class="pre">getXsdValidationBasePath</span></tt> and <tt class="docutils literal"><span class="pre">getNamespace</span></tt> methods are only required if the bundle provides optional XSD&#8217;s for the configuration.</p> </div> <p>The presence of the previous class means that you can now define an <tt class="docutils literal"><span class="pre">acme_hello</span></tt> configuration namespace in any configuration file. The namespace <tt class="docutils literal"><span class="pre">acme_hello</span></tt> is constructed from the extension&#8217;s class name by removing the word <tt class="docutils literal"><span class="pre">Extension</span></tt> and then lowercasing and underscoring the rest of the name. In other words, <tt class="docutils literal"><span class="pre">AcmeHelloExtension</span></tt> becomes <tt class="docutils literal"><span class="pre">acme_hello</span></tt>.</p> <p>You can begin specifying configuration under this namespace immediately:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><div class="highlight"><pre><span class="c1"># app/config/config.yml</span> <span class="l-Scalar-Plain">acme_hello</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">~</span> </pre></div> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- app/config/config.xml --&gt;</span> <span class="cp">&lt;?xml version=&quot;1.0&quot; ?&gt;</span> <span class="nt">&lt;container</span> <span class="na">xmlns=</span><span class="s">&quot;http://symfony.com/schema/dic/services&quot;</span> <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> <span class="na">xmlns:acme_hello=</span><span class="s">&quot;http://www.example.com/symfony/schema/&quot;</span> <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://www.example.com/symfony/schema/ http://www.example.com/symfony/schema/hello-1.0.xsd&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;acme_hello:config</span> <span class="nt">/&gt;</span> <span class="c">&lt;!-- ... --&gt;</span> <span class="nt">&lt;/container&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="c1">// app/config/config.php</span> <span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;acme_hello&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">());</span> </pre></div> </div> </li> </ul> </div> <div class="admonition tip"> <p class="first admonition-title">Tip</p> <p class="last">If you follow the naming conventions laid out above, then the <tt class="docutils literal"><span class="pre">load()</span></tt> method of your extension code is always called as long as your bundle is registered in the Kernel. In other words, even if the user does not provide any configuration (i.e. the <tt class="docutils literal"><span class="pre">acme_hello</span></tt> entry doesn&#8217;t even appear), the <tt class="docutils literal"><span class="pre">load()</span></tt> method will be called and passed an empty <tt class="docutils literal"><span class="pre">$configs</span></tt> array. You can still provide some sensible defaults for your bundle if you want.</p> </div> </div> <div class="section" id="parsing-the-configs-array"> <h2>Parsing the <tt class="docutils literal"><span class="pre">$configs</span></tt> Array<a class="headerlink" href="#parsing-the-configs-array" title="Permalink to this headline">¶</a></h2> <p>Whenever a user includes the <tt class="docutils literal"><span class="pre">acme_hello</span></tt> namespace in a configuration file, the configuration under it is added to an array of configurations and passed to the <tt class="docutils literal"><span class="pre">load()</span></tt> method of your extension (Symfony2 automatically converts XML and YAML to an array).</p> <p>Take the following configuration:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><div class="highlight"><pre><span class="c1"># app/config/config.yml</span> <span class="l-Scalar-Plain">acme_hello</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">foo</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">fooValue</span> <span class="l-Scalar-Plain">bar</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">barValue</span> </pre></div> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- app/config/config.xml --&gt;</span> <span class="cp">&lt;?xml version=&quot;1.0&quot; ?&gt;</span> <span class="nt">&lt;container</span> <span class="na">xmlns=</span><span class="s">&quot;http://symfony.com/schema/dic/services&quot;</span> <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> <span class="na">xmlns:acme_hello=</span><span class="s">&quot;http://www.example.com/symfony/schema/&quot;</span> <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://www.example.com/symfony/schema/ http://www.example.com/symfony/schema/hello-1.0.xsd&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;acme_hello:config</span> <span class="na">foo=</span><span class="s">&quot;fooValue&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;acme_hello:bar&gt;</span>barValue<span class="nt">&lt;/acme_hello:bar&gt;</span> <span class="nt">&lt;/acme_hello:config&gt;</span> <span class="nt">&lt;/container&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="c1">// app/config/config.php</span> <span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;acme_hello&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;foo&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;fooValue&#39;</span><span class="p">,</span> <span class="s1">&#39;bar&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;barValue&#39;</span><span class="p">,</span> <span class="p">));</span> </pre></div> </div> </li> </ul> </div> <p>The array passed to your <tt class="docutils literal"><span class="pre">load()</span></tt> method will look like this:</p> <div class="highlight-python"><pre>array( array( 'foo' =&gt; 'fooValue', 'bar' =&gt; 'barValue', ) )</pre> </div> <p>Notice that this is an <em>array of arrays</em>, not just a single flat array of the configuration values. This is intentional. For example, if <tt class="docutils literal"><span class="pre">acme_hello</span></tt> appears in another configuration file - say <tt class="docutils literal"><span class="pre">config_dev.yml</span></tt> - with different values beneath it, then the incoming array might look like this:</p> <div class="highlight-python"><pre>array( array( 'foo' =&gt; 'fooValue', 'bar' =&gt; 'barValue', ), array( 'foo' =&gt; 'fooDevValue', 'baz' =&gt; 'newConfigEntry', ), )</pre> </div> <p>The order of the two arrays depends on which one is set first.</p> <p>It&#8217;s your job, then, to decide how these configurations should be merged together. You might, for example, have later values override previous values or somehow merge them together.</p> <p>Later, in the <a class="reference internal" href="#cookbook-bundles-extension-config-class"><em>Configuration Class</em></a> section, you&#8217;ll learn of a truly robust way to handle this. But for now, you might just merge them manually:</p> <div class="highlight-python"><pre>public function load(array $configs, ContainerBuilder $container) { $config = array(); foreach ($configs as $subConfig) { $config = array_merge($config, $subConfig); } // ... now use the flat $config array }</pre> </div> <div class="admonition caution"> <p class="first admonition-title">Caution</p> <p class="last">Make sure the above merging technique makes sense for your bundle. This is just an example, and you should be careful to not use it blindly.</p> </div> </div> <div class="section" id="using-the-load-method"> <h2>Using the <tt class="docutils literal"><span class="pre">load()</span></tt> Method<a class="headerlink" href="#using-the-load-method" title="Permalink to this headline">¶</a></h2> <p>Within <tt class="docutils literal"><span class="pre">load()</span></tt>, the <tt class="docutils literal"><span class="pre">$container</span></tt> variable refers to a container that only knows about this namespace configuration (i.e. it doesn&#8217;t contain service information loaded from other bundles). The goal of the <tt class="docutils literal"><span class="pre">load()</span></tt> method is to manipulate the container, adding and configuring any methods or services needed by your bundle.</p> <div class="section" id="loading-external-configuration-resources"> <h3>Loading External Configuration Resources<a class="headerlink" href="#loading-external-configuration-resources" title="Permalink to this headline">¶</a></h3> <p>One common thing to do is to load an external configuration file that may contain the bulk of the services needed by your bundle. For example, suppose you have a <tt class="docutils literal"><span class="pre">services.xml</span></tt> file that holds much of your bundle&#8217;s service configuration:</p> <div class="highlight-python"><pre>use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; use Symfony\Component\Config\FileLocator; public function load(array $configs, ContainerBuilder $container) { // ... prepare your $config variable $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); $loader-&gt;load('services.xml'); }</pre> </div> <p>You might even do this conditionally, based on one of the configuration values. For example, suppose you only want to load a set of services if an <tt class="docutils literal"><span class="pre">enabled</span></tt> option is passed and set to true:</p> <div class="highlight-python"><pre>public function load(array $configs, ContainerBuilder $container) { // ... prepare your $config variable $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); if (isset($config['enabled']) &amp;&amp; $config['enabled']) { $loader-&gt;load('services.xml'); } }</pre> </div> </div> <div class="section" id="configuring-services-and-setting-parameters"> <h3>Configuring Services and Setting Parameters<a class="headerlink" href="#configuring-services-and-setting-parameters" title="Permalink to this headline">¶</a></h3> <p>Once you&#8217;ve loaded some service configuration, you may need to modify the configuration based on some of the input values. For example, suppose you have a service whose first argument is some string &#8220;type&#8221; that it will use internally. You&#8217;d like this to be easily configured by the bundle user, so in your service configuration file (e.g. <tt class="docutils literal"><span class="pre">services.xml</span></tt>), you define this service and use a blank parameter - <tt class="docutils literal"><span class="pre">acme_hello.my_service_type</span></tt> - as its first argument:</p> <div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- src/Acme/HelloBundle/Resources/config/services.xml --&gt;</span> <span class="nt">&lt;container</span> <span class="na">xmlns=</span><span class="s">&quot;http://symfony.com/schema/dic/services&quot;</span> <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;parameters&gt;</span> <span class="nt">&lt;parameter</span> <span class="na">key=</span><span class="s">&quot;acme_hello.my_service_type&quot;</span> <span class="nt">/&gt;</span> <span class="nt">&lt;/parameters&gt;</span> <span class="nt">&lt;services&gt;</span> <span class="nt">&lt;service</span> <span class="na">id=</span><span class="s">&quot;acme_hello.my_service&quot;</span> <span class="na">class=</span><span class="s">&quot;Acme\HelloBundle\MyService&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;argument&gt;</span>%acme_hello.my_service_type%<span class="nt">&lt;/argument&gt;</span> <span class="nt">&lt;/service&gt;</span> <span class="nt">&lt;/services&gt;</span> <span class="nt">&lt;/container&gt;</span> </pre></div> </div> <p>But why would you define an empty parameter and then pass it to your service? The answer is that you&#8217;ll set this parameter in your extension class, based on the incoming configuration values. Suppose, for example, that you want to allow the user to define this <em>type</em> option under a key called <tt class="docutils literal"><span class="pre">my_type</span></tt>. Add the following to the <tt class="docutils literal"><span class="pre">load()</span></tt> method to do this:</p> <div class="highlight-python"><pre>public function load(array $configs, ContainerBuilder $container) { // ... prepare your $config variable $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); $loader-&gt;load('services.xml'); if (!isset($config['my_type'])) { throw new \InvalidArgumentException('The "my_type" option must be set'); } $container-&gt;setParameter('acme_hello.my_service_type', $config['my_type']); }</pre> </div> <p>Now, the user can effectively configure the service by specifying the <tt class="docutils literal"><span class="pre">my_type</span></tt> configuration value:</p> <div class="configuration-block"> <ul class="simple"> <li><em>YAML</em><div class="highlight-yaml"><div class="highlight"><pre><span class="c1"># app/config/config.yml</span> <span class="l-Scalar-Plain">acme_hello</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">my_type</span><span class="p-Indicator">:</span> <span class="l-Scalar-Plain">foo</span> <span class="c1"># ...</span> </pre></div> </div> </li> <li><em>XML</em><div class="highlight-xml"><div class="highlight"><pre><span class="c">&lt;!-- app/config/config.xml --&gt;</span> <span class="cp">&lt;?xml version=&quot;1.0&quot; ?&gt;</span> <span class="nt">&lt;container</span> <span class="na">xmlns=</span><span class="s">&quot;http://symfony.com/schema/dic/services&quot;</span> <span class="na">xmlns:xsi=</span><span class="s">&quot;http://www.w3.org/2001/XMLSchema-instance&quot;</span> <span class="na">xmlns:acme_hello=</span><span class="s">&quot;http://www.example.com/symfony/schema/&quot;</span> <span class="na">xsi:schemaLocation=</span><span class="s">&quot;http://www.example.com/symfony/schema/ http://www.example.com/symfony/schema/hello-1.0.xsd&quot;</span><span class="nt">&gt;</span> <span class="nt">&lt;acme_hello:config</span> <span class="na">my_type=</span><span class="s">&quot;foo&quot;</span><span class="nt">&gt;</span> <span class="c">&lt;!-- ... --&gt;</span> <span class="nt">&lt;/acme_hello:config&gt;</span> <span class="nt">&lt;/container&gt;</span> </pre></div> </div> </li> <li><em>PHP</em><div class="highlight-php"><div class="highlight"><pre><span class="c1">// app/config/config.php</span> <span class="nv">$container</span><span class="o">-&gt;</span><span class="na">loadFromExtension</span><span class="p">(</span><span class="s1">&#39;acme_hello&#39;</span><span class="p">,</span> <span class="k">array</span><span class="p">(</span> <span class="s1">&#39;my_type&#39;</span> <span class="o">=&gt;</span> <span class="s1">&#39;foo&#39;</span><span class="p">,</span> <span class="c1">// ...</span> <span class="p">));</span> </pre></div> </div> </li> </ul> </div> </div> <div class="section" id="global-parameters"> <h3>Global Parameters<a class="headerlink" href="#global-parameters" title="Permalink to this headline">¶</a></h3> <p>When you&#8217;re configuring the container, be aware that you have the following global parameters available to use:</p> <ul class="simple"> <li><tt class="docutils literal"><span class="pre">kernel.name</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.environment</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.debug</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.root_dir</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.cache_dir</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.logs_dir</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.bundle_dirs</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.bundles</span></tt></li> <li><tt class="docutils literal"><span class="pre">kernel.charset</span></tt></li> </ul> <div class="admonition caution"> <p class="first admonition-title">Caution</p> <p class="last">All parameter and service names starting with a <tt class="docutils literal"><span class="pre">_</span></tt> are reserved for the framework, and new ones must not be defined by bundles.</p> </div> </div> </div> <div class="section" id="validation-and-merging-with-a-configuration-class"> <span id="cookbook-bundles-extension-config-class"></span><h2>Validation and Merging with a Configuration Class<a class="headerlink" href="#validation-and-merging-with-a-configuration-class" title="Permalink to this headline">¶</a></h2> <p>So far, you&#8217;ve done the merging of your configuration arrays by hand and are checking for the presence of config values manually using the <tt class="docutils literal"><span class="pre">isset()</span></tt> PHP function. An optional <em>Configuration</em> system is also available which can help with merging, validation, default values, and format normalization.</p> <div class="admonition note"> <p class="first admonition-title">Note</p> <p class="last">Format normalization refers to the fact that certain formats - largely XML - result in slightly different configuration arrays and that these arrays need to be &#8220;normalized&#8221; to match everything else.</p> </div> <p>To take advantage of this system, you&#8217;ll create a <tt class="docutils literal"><span class="pre">Configuration</span></tt> class and build a tree that defines your configuration in that class:</p> <div class="highlight-python"><pre>// src/Acme/HelloBundle/DependencyInjection/Configuration.php namespace Acme\HelloBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class Configuration implements ConfigurationInterface { public function getConfigTreeBuilder() { $treeBuilder = new TreeBuilder(); $rootNode = $treeBuilder-&gt;root('acme_hello'); $rootNode -&gt;children() -&gt;scalarNode('my_type')-&gt;defaultValue('bar')-&gt;end() -&gt;end(); return $treeBuilder; }</pre> </div> <p>This is a <em>very</em> simple example, but you can now use this class in your <tt class="docutils literal"><span class="pre">load()</span></tt> method to merge your configuration and force validation. If any options other than <tt class="docutils literal"><span class="pre">my_type</span></tt> are passed, the user will be notified with an exception that an unsupported option was passed:</p> <div class="highlight-python"><pre>public function load(array $configs, ContainerBuilder $container) { $configuration = new Configuration(); $config = $this-&gt;processConfiguration($configuration, $configs); // ... }</pre> </div> <p>The <tt class="docutils literal"><span class="pre">processConfiguration()</span></tt> method uses the configuration tree you&#8217;ve defined in the <tt class="docutils literal"><span class="pre">Configuration</span></tt> class to validate, normalize and merge all of the configuration arrays together.</p> <p>The <tt class="docutils literal"><span class="pre">Configuration</span></tt> class can be much more complicated than shown here, supporting array nodes, &#8220;prototype&#8221; nodes, advanced validation, XML-specific normalization and advanced merging. The best way to see this in action is to checkout out some of the core Configuration classes, such as the one from the <a class="reference external" href="https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php">FrameworkBundle Configuration</a> or the <a class="reference external" href="https://github.com/symfony/symfony/blob/master/src/Symfony/Bundle/TwigBundle/DependencyInjection/Configuration.php">TwigBundle Configuration</a>.</p> <div class="section" id="default-configuration-dump"> <h3>Default Configuration Dump<a class="headerlink" href="#default-configuration-dump" title="Permalink to this headline">¶</a></h3> <p class="versionadded"> <span class="versionmodified">New in version 2.1: </span>The <tt class="docutils literal"><span class="pre">config:dump-reference</span></tt> command was added in Symfony 2.1</p> <p>The <tt class="docutils literal"><span class="pre">config:dump-reference</span></tt> command allows a bundle&#8217;s default configuration to be output to the console in yaml.</p> <p>As long as your bundle&#8217;s configuration is located in the standard location (<tt class="docutils literal"><span class="pre">YourBundle\DependencyInjection\Configuration</span></tt>) and does not have a <tt class="docutils literal"><span class="pre">__constructor()</span></tt> it will work automatically. If you have a something different your <tt class="docutils literal"><span class="pre">Extension</span></tt> class will have to override the <tt class="docutils literal"><span class="pre">Extension::getConfiguration()</span></tt> method. Have it return an instance of your <tt class="docutils literal"><span class="pre">Configuration</span></tt>.</p> <p>Comments and examples can be added to your configuration nodes using the <tt class="docutils literal"><span class="pre">-&gt;info()</span></tt> and <tt class="docutils literal"><span class="pre">-&gt;example()</span></tt> methods:</p> <div class="highlight-python"><pre>// src/Acme/HelloBundle/DependencyExtension/Configuration.php namespace Acme\HelloBundle\DependencyInjection; use Symfony\Component\Config\Definition\Builder\TreeBuilder; use Symfony\Component\Config\Definition\ConfigurationInterface; class Configuration implements ConfigurationInterface { public function getConfigTreeBuilder() { $treeBuilder = new TreeBuilder(); $rootNode = $treeBuilder-&gt;root('acme_hello'); $rootNode -&gt;children() -&gt;scalarNode('my_type') -&gt;defaultValue('bar') -&gt;info('what my_type configures') -&gt;example('example setting') -&gt;end() -&gt;end() ; return $treeBuilder; }</pre> </div> <p>This text appears as yaml comments in the output of the <tt class="docutils literal"><span class="pre">config:dump-reference</span></tt> command.</p> </div> </div> <div class="section" id="extension-conventions"> <span id="index-2"></span><h2>Extension Conventions<a class="headerlink" href="#extension-conventions" title="Permalink to this headline">¶</a></h2> <p>When creating an extension, follow these simple conventions:</p> <ul class="simple"> <li>The extension must be stored in the <tt class="docutils literal"><span class="pre">DependencyInjection</span></tt> sub-namespace;</li> <li>The extension must be named after the bundle name and suffixed with <tt class="docutils literal"><span class="pre">Extension</span></tt> (<tt class="docutils literal"><span class="pre">AcmeHelloExtension</span></tt> for <tt class="docutils literal"><span class="pre">AcmeHelloBundle</span></tt>);</li> <li>The extension should provide an XSD schema.</li> </ul> <p>If you follow these simple conventions, your extensions will be registered automatically by Symfony2. If not, override the Bundle <tt class="docutils literal"><a class="reference external" href="http://api.symfony.com/master/Symfony/Component/HttpKernel/Bundle/Bundle.html#method_build" title="Symfony\Component\HttpKernel\Bundle\Bundle::build()"><span class="pre">build()</span></a></tt> method in your bundle:</p> <div class="highlight-python"><pre>// ... use Acme\HelloBundle\DependencyInjection\UnconventionalExtensionClass; class AcmeHelloBundle extends Bundle { public function build(ContainerBuilder $container) { parent::build($container); // register extensions that do not follow the conventions manually $container-&gt;registerExtension(new UnconventionalExtensionClass()); } }</pre> </div> <p>In this case, the extension class must also implement a <tt class="docutils literal"><span class="pre">getAlias()</span></tt> method and return a unique alias named after the bundle (e.g. <tt class="docutils literal"><span class="pre">acme_hello</span></tt>). This is required because the class name doesn&#8217;t follow the standards by ending in <tt class="docutils literal"><span class="pre">Extension</span></tt>.</p> <p>Additionally, the <tt class="docutils literal"><span class="pre">load()</span></tt> method of your extension will <em>only</em> be called if the user specifies the <tt class="docutils literal"><span class="pre">acme_hello</span></tt> alias in at least one configuration file. Once again, this is because the Extension class doesn&#8217;t follow the standards set out above, so nothing happens automatically.</p> </div> </div> </div> </div> </div> <div class="sphinxsidebar"> <div class="sphinxsidebarwrapper"> <h3><a href="../../index.html">Table Of Contents</a></h3> <ul> <li><a class="reference internal" href="#">How to expose a Semantic Configuration for a Bundle</a><ul> <li><a class="reference internal" href="#creating-an-extension-class">Creating an Extension Class</a></li> <li><a class="reference internal" href="#parsing-the-configs-array">Parsing the <tt class="docutils literal"><span class="pre">$configs</span></tt> Array</a></li> <li><a class="reference internal" href="#using-the-load-method">Using the <tt class="docutils literal"><span class="pre">load()</span></tt> Method</a><ul> <li><a class="reference internal" href="#loading-external-configuration-resources">Loading External Configuration Resources</a></li> <li><a class="reference internal" href="#configuring-services-and-setting-parameters">Configuring Services and Setting Parameters</a></li> <li><a class="reference internal" href="#global-parameters">Global Parameters</a></li> </ul> </li> <li><a class="reference internal" href="#validation-and-merging-with-a-configuration-class">Validation and Merging with a Configuration Class</a><ul> <li><a class="reference internal" href="#default-configuration-dump">Default Configuration Dump</a></li> </ul> </li> <li><a class="reference internal" href="#extension-conventions">Extension Conventions</a></li> </ul> </li> </ul> <h4>Previous topic</h4> <p class="topless"><a href="override.html" title="previous chapter">How to Override any Part of a Bundle</a></p> <h4>Next topic</h4> <p class="topless"><a href="../email/index.html" title="next chapter">Email</a></p> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../../_sources/cookbook/bundles/extension.txt" rel="nofollow">Show Source</a></li> </ul> <div id="searchbox" style="display: none"> <h3>Quick search</h3> <form class="search" action="../../search.html" method="get"> <input type="text" name="q" /> <input type="submit" value="Go" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> <p class="searchtip" style="font-size: 90%"> Enter search terms or a module, class or function name. </p> </div> <script type="text/javascript">$('#searchbox').show(0);</script> </div> </div> <div class="clearer"></div> </div> <div class="related"> <h3>Navigation</h3> <ul> <li class="right" style="margin-right: 10px"> <a href="../../genindex.html" title="General Index" >index</a></li> <li class="right" > <a href="../email/index.html" title="Email" >next</a> |</li> <li class="right" > <a href="override.html" title="How to Override any Part of a Bundle" >previous</a> |</li> <li><a href="../../index.html">Symfony2Docs v2.1.0 2.1.0 documentation</a> &raquo;</li> <li><a href="../index.html" >The Cookbook</a> &raquo;</li> <li><a href="index.html" >Bundles</a> &raquo;</li> </ul> </div> <div class="footer"> &copy; Copyright 2012, Symfony Team. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.1.3. </div> </body> </html>
WEB_TEST01/doc/JavaScript_jQuery_Enter/31장. jQuery 플러그인 제작/31-05.html
grtlinux/TAIN_WEB_TEST
<!DOCTYPE html> <html> <head> <script src="http://code.jquery.com/jquery-1.10.2.js"></script> <script> // 플러그인을 만듭니다. jQuery.fn.myPluginMethod = function (options) { $(this).css('color', 'white'); $(this).css('background', 'black'); }; $(document).ready(function () { // 플러그인을 사용합니다. $('h1').myPluginMethod(); }); </script> </head> <body> <h1>Header A</h1> <h1>Header B</h1> </body> </html>
lib/bootstrap-select/bootstrap-select.css
asascience-open/comt-ui
/*! * bootstrap-select v1.3.7 * http://silviomoreto.github.io/bootstrap-select/ * * Copyright 2013 bootstrap-select * Licensed under the MIT license */ .bootstrap-select.btn-group, .bootstrap-select.btn-group[class*="span"] { float: none; display: inline-block; /*margin-bottom: 10px;*/ margin-left: 0; } .form-search .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group { margin-bottom: 0; } .bootstrap-select.form-control { margin-bottom: 0; padding: 0; border: none; } .bootstrap-select.btn-group.pull-right, .bootstrap-select.btn-group[class*="span"].pull-right, .row-fluid .bootstrap-select.btn-group[class*="span"].pull-right { float: right; } .input-append .bootstrap-select.btn-group { margin-left: -1px; } .input-prepend .bootstrap-select.btn-group { margin-right: -1px; } .bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]) { /*width: 220px;*/ } /*.bootstrap-select { width: 220px\9; width: 220px\0; }*/ .bootstrap-select.form-control:not([class*="span"]) { width: 100%; } /*.bootstrap-select > .btn { width: 100%; }*/ .error .bootstrap-select .btn { border: 1px solid #b94a48; } .dropdown-menu { z-index: 2000; } .bootstrap-select.show-menu-arrow.open > .btn { z-index: 2051; } .bootstrap-select .btn:focus { outline: thin dotted #333333 !important; outline: 5px auto -webkit-focus-ring-color !important; outline-offset: -2px; } .bootstrap-select.btn-group .btn .filter-option { overflow: hidden; /*position: absolute;*/ left: 12px; right: 25px; text-align: left; } .bootstrap-select.btn-group .btn .caret { position: absolute; top: 50%; right: 12px; margin-top: -2px; vertical-align: middle; } .bootstrap-select.btn-group > .disabled, .bootstrap-select.btn-group .dropdown-menu li.disabled > a { cursor: not-allowed; } .bootstrap-select.btn-group > .disabled:focus { outline: none !important; } .bootstrap-select.btn-group[class*="span"] .btn { width: 100%; } .bootstrap-select.btn-group .dropdown-menu { min-width: 100%; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } .bootstrap-select.btn-group .dropdown-menu.inner { position: static; border: 0; padding: 0; margin: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .bootstrap-select.btn-group .dropdown-menu dt { display: block; padding: 3px 20px; cursor: default; } .bootstrap-select.btn-group .div-contain { overflow: hidden; } .bootstrap-select.btn-group .dropdown-menu li { position: relative; } .bootstrap-select.btn-group .dropdown-menu li > a.opt { position: relative; padding-left: 35px; } .bootstrap-select.btn-group .dropdown-menu li > a { cursor: pointer; } .bootstrap-select.btn-group .dropdown-menu li > dt small { font-weight: normal; } .bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark { display: inline-block; position: absolute; right: 15px; margin-top: 2.5px; } .bootstrap-select.btn-group .dropdown-menu li a i.check-mark { display: none; } .bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text { margin-right: 34px; } .bootstrap-select.btn-group .dropdown-menu li small { padding-left: 0.5em; } .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small, .bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) > a small { color: #64b1d8; color: rgba(255,255,255,0.4); } .bootstrap-select.btn-group .dropdown-menu li > dt small { font-weight: normal; } .bootstrap-select.show-menu-arrow .dropdown-toggle:before { content: ''; display: inline-block; border-left: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid #CCC; border-bottom-color: rgba(0, 0, 0, 0.2); position: absolute; bottom: -4px; left: 9px; display: none; } .bootstrap-select.show-menu-arrow .dropdown-toggle:after { content: ''; display: inline-block; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid white; position: absolute; bottom: -4px; left: 10px; display: none; } .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before { bottom: auto; top: -3px; border-top: 7px solid #ccc; border-bottom: 0; border-top-color: rgba(0, 0, 0, 0.2); } .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after { bottom: auto; top: -3px; border-top: 6px solid #ffffff; border-bottom: 0; } .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before { right: 12px; left: auto; } .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after { right: 13px; left: auto; } .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after { display: block; } .bootstrap-select.btn-group .no-results { padding: 3px; background: #f5f5f5; margin: 0 5px; } .mobile-device { position: absolute; top: 0; left: 0; display: block !important; width: 100%; height: 100% !important; opacity: 0; } .bootstrap-select.fit-width { width: auto !important; } .bootstrap-select.btn-group.fit-width .btn .filter-option { position: static; } .bootstrap-select.btn-group.fit-width .btn .caret { position: static; top: auto; margin-top: -1px; } .control-group.error .bootstrap-select .dropdown-toggle{ border-color: #b94a48; } .bootstrap-select-searchbox { padding: 4px 8px; } .bootstrap-select-searchbox input { margin-bottom: 0; }
doc/web/doxygen/0986/api+framework+samples/html/functions_0x6c.html
hallowname/librebecca
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>RebeccaAIML: Class Members</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.4.5 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li id="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> </ul></div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li id="current"><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul></div> <div class="tabs"> <ul> <li id="current"><a href="functions.html"><span>All</span></a></li> <li><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_type.html"><span>Typedefs</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="functions.html#index_a"><span>a</span></a></li> <li><a href="functions_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_0x67.html#index_g"><span>g</span></a></li> <li><a href="functions_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_0x69.html#index_i"><span>i</span></a></li> <li id="current"><a href="functions_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_0x75.html#index_u"><span>u</span></a></li> <li><a href="functions_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_0x78.html#index_x"><span>x</span></a></li> <li><a href="functions_0x7e.html#index_~"><span>~</span></a></li> </ul> </div> <p> Here is a list of all documented class members with links to the class documentation for each member: <p> <h3><a class="anchor" name="index_l">- l -</a></h3><ul> <li>Learn() : <a class="el" href="classrebecca_1_1framework_1_1impl_1_1_learn.html#e91f9b013020a382fd0a79a8314ef3fe">Learn</a><li>learnTagFileNotFound() : <a class="el" href="classrebecca_1_1impl_1_1_call_backs.html#aba00642e5988237f7f8f7fdc9eac42e">CallBacks</a><li>Li() : <a class="el" href="classrebecca_1_1framework_1_1impl_1_1_li.html#74c301a41201ae86f61dbc68fa1510a0">Li</a><li>loading() : <a class="el" href="classqtgui_1_1_a_i_m_l_engine_thread.html#236159e92bb05a1661477ce35af58ada">AIMLEngineThread</a>, <a class="el" href="classqtgui_1_1_a_i_m_l_engine.html#236159e92bb05a1661477ce35af58ada">AIMLEngine</a><li>LowerCase() : <a class="el" href="classrebecca_1_1framework_1_1impl_1_1_lower_case.html#c32635fb6287d20ffe6cc9f84e96b309">LowerCase</a></ul> <hr size="1"><address style="align: right;"><small>Generated on Wed Jul 26 21:39:06 2006 for RebeccaAIML by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.5 </small></address> </body> </html>
GWTUMLDrawer/doc/com/objetdirect/gwt/umlapi/client/editors/class-use/RelationFieldEditor.html
RaphaelBrugier/gwtuml
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class com.objetdirect.gwt.umlapi.client.editors.RelationFieldEditor </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../redstylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.objetdirect.gwt.umlapi.client.editors.RelationFieldEditor"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../com/objetdirect/gwt/umlapi/client/editors/RelationFieldEditor.html" title="class in com.objetdirect.gwt.umlapi.client.editors"><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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/objetdirect/gwt/umlapi/client/editors//class-useRelationFieldEditor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RelationFieldEditor.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>com.objetdirect.gwt.umlapi.client.editors.RelationFieldEditor</B></H2> </CENTER> No usage of com.objetdirect.gwt.umlapi.client.editors.RelationFieldEditor <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../com/objetdirect/gwt/umlapi/client/editors/RelationFieldEditor.html" title="class in com.objetdirect.gwt.umlapi.client.editors"><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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?com/objetdirect/gwt/umlapi/client/editors//class-useRelationFieldEditor.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="RelationFieldEditor.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> </BODY> </HTML>
public/plugins/dhtmlxSuite_v50_std/samples/dhtmlxRibbon/05_button_two_state/04_show_hide.html
vijaysebastian/bill
<!DOCTYPE html> <html> <head> <title>Show / Hide</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <link rel="stylesheet" type="text/css" href="../../../codebase/fonts/font_roboto/roboto.css"/> <link rel="stylesheet" type="text/css" href="../../../codebase/dhtmlx.css"/> <script src="../../../codebase/dhtmlx.js"></script> <script> var myRibbon; function doOnLoad() { myRibbon = new dhtmlXRibbon({ parent: "ribbonObj", icons_path: "../common/", json: "../common/buttons_tow_state.json" }); }; function doOnUnload() { if (myRibbon) { myRibbon.unload(); myRibbon = null; } }; function hide(id) { myRibbon.hide(id); }; function show(id) { myRibbon.show(id); }; </script> </head> <body onload="doOnLoad();" onunload="doOnUnload();"> <div id="ribbonObj"></div> <div>Open <button onclick="hide('open')">hide</button> <button onclick="show('open')">show</button></div> <div>Quick print <button onclick="hide('print')">hide</button> <button onclick="show('print')">show</button></div> <div>Copy <button onclick="hide('copy')">hide</button> <button onclick="show('copy')">show</button></div> </body> </html>
doxygen/html/caching_8py.html
wmde/render-algbackend
<!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"/> <title>Task List Generator Backend: /home/johannesk/code/tests/tlgbe/caching.py File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Task List Generator Backend </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.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><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> </ul> </div> </div> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> initNavTree('caching_8py.html',''); </script> <div id="doc-content"> <div class="header"> <div class="summary"> <a href="#nested-classes">Classes</a> &#124; <a href="#namespaces">Namespaces</a> &#124; <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">/home/johannesk/code/tests/tlgbe/caching.py File Reference</div> </div> </div><!--header--> <div class="contents"> <p><a href="caching_8py_source.html">Go to the source code of this file.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="nested-classes"></a> Classes</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_stats.html">caching.Stats</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_file_based_cache.html">caching.FileBasedCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_dict_cache.html">caching.DictCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_list_cache.html">caching.ListCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_page_title_disk_cache.html">caching.PageTitleDiskCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_page_title_mem_cache.html">caching.PageTitleMemCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_page_i_d_mem_disk_cache.html">caching.PageIDMemDiskCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_page_i_d_mem_cache.html">caching.PageIDMemCache</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">class &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classcaching_1_1_page_i_d_fake_cache.html">caching.PageIDFakeCache</a></td></tr> <tr><td colspan="2"><h2><a name="namespaces"></a> Namespaces</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">namespace &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecaching.html">caching</a></td></tr> <tr><td colspan="2"><h2><a name="func-members"></a> Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">def&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacecaching.html#a8ca0730ada6ba47c0d40e94f6aa670c4">caching.MakeTimestamp</a></td></tr> </table> </div><!-- contents --> </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>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></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="caching_8py.html">caching.py</a> </li> <li class="footer">Generated on Thu Aug 23 2012 17:24:08 for Task List Generator Backend by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.6.1 </li> </ul> </div> </body> </html>
javadoc/org/jdom/class-use/IllegalDataException.html
edesiocs/ingatan
<!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 Wed Feb 09 11:31:29 EST 2011 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.jdom.IllegalDataException </TITLE> <META NAME="date" CONTENT="2011-02-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.jdom.IllegalDataException"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../org/jdom/IllegalDataException.html" title="class in org.jdom"><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="../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/jdom//class-useIllegalDataException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="IllegalDataException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.jdom.IllegalDataException</B></H2> </CENTER> No usage of org.jdom.IllegalDataException <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../org/jdom/IllegalDataException.html" title="class in org.jdom"><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="../../../overview-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-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/jdom//class-useIllegalDataException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="IllegalDataException.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> </BODY> </HTML>
umlet-gwt/src/main/webapp/index.html
schuellerf/umlet
<html> <head> <title> UMLetino - Free Online UML Tool for Fast UML Diagrams </title> <!-- Place this tag in your head or just before your close body tag. --> <script src="https://apis.google.com/js/platform.js" async defer></script> </head> <body> <table border="0" align="center" width="728"> <tr> <th colspan="2"> <script type="text/javascript"><!-- google_ad_client = "pub-7477443223564915"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text_image"; google_ad_channel = ""; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </th> </tr> <tr> <th colspan="2"> <br/> <br/> <br/> </th> </tr> <tr> <td> <font face="Verdana, Arial, Helvetica, sans-serif"> <p> <b>UMLetino</b> is a free online UML tool for fast UML diagrams. It runs in your browser, and does not require any installs.</br> It is based on <a href="http://www.umlet.com">UMLet</a> (which is available as stand-alone tool or Eclipse plugin), and shares its fast, text-based way of drawing UML sketches.</br> Main features: install-free web app; save diagrams in browser storage; support for many UML diagram types; simple, markup-based UML element modifications; png export.</br> </br> <i>New in current version 14.2: improved relations, bugfixes</i></br> </br> <a href="umletino.html" target="_blank">Start UMLetino NOW!</a> (JavaScript and Cookies required) </p> </font> </td> <td> <p align="center"> <a href="http://www.umletino.com"><img src="UMLetino_logo_small.png" border="0"></a> </p> </td> </tr> <tr> <th colspan="2" align="left"> <p> <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.umletino.com&amp;layout=button_count&amp;action=like&amp;show_faces=false&amp;share=false&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; height:21px;" allowTransparency="true"></iframe> </p> <p> <a href="https://twitter.com/twumlet" class="twitter-follow-button" data-show-count="false">Follow @twumlet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.umletino.com" data-via="twumlet">Tweet</a> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script> </p> <p> <!-- Place this tag where you want the +1 button to render. --> <div class="g-plusone" data-size="medium" data-href="http://www.umletino.com"></div> </p> </th> </tr> <tr> <th colspan="2"> <br/> <br/> <br/> </th> </tr> <tr> <th colspan="2"> <script type="text/javascript"><!-- google_ad_client = "pub-7477443223564915"; google_ad_width = 728; google_ad_height = 90; google_ad_format = "728x90_as"; google_ad_type = "text_image"; google_ad_channel = ""; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </th> </tr> </table> </body> </html>
client/views/layout/testLayout.html
englishkiwi/dc-test-1
<template name="testLayout"> <app-drawer-layout class="layout fit" responsiveWidth="905px"> <app-drawer> <app-header-layout mode="seamed" class="white"> </app-header-layout> </app-drawer> <div> {{> yield}} </div> </app-drawer-layout> </template>
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/ESO-84_ext.txt.out.dict_5513_jnu.html
sanskritiitd/sanskrit
url: http://sanskrit.jnu.ac.in/sandhi/viccheda.jsp?itext=ग्रीवाऽद्यावधि<html> <title>Sanskrit Sandhi Splitter at J.N.U. New Delhi</title> <META CONTENT='text/hetml CHARSET=UTF-8' HTTP-EQUIV='Content-Type'/> <META NAME="Author" CONTENT="Dr. Girish Nath Jha"> <META NAME="Keywords" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP"> <META NAME="Description" CONTENT="Dr. Girish Nath Jha, Sachin, Diwakar Mishra, Sanskrit Computational Linguistics, Sanskrit informatics, Sanskrit computing, Sanskrit language processing, Sanskrit and computer, computer processing of sanskrit, subanta, tinanta, POS tagger, tagset, Indian languages, linguistics, amarakosha, amarakosa, Indian tradition, Indian heritage, Machine translation, AI, MT divergence, Sandhi, kridanta, taddhita, e-learning, corpus, etext, e-text, Sanskrit blog, Panini, Bhartrhari, Bhartrihari, Patanjali, karaka, mahabharata, ashtadhyayi, astadhyayi, indexer, indexing, lexical resources, Sanskrit, thesaurus, samasa, gender analysis in Sanskrit, Hindi, saHiT, language technology, NLP"> <head> <head> <style> <!-- div.Section1 {page:Section1;} --> </style> <head> <meta http-equiv=Content-Type content="text/html; charset=utf-8"> <script language="JavaScript" src=../js/menuitems.js></script> <script language="JavaScript" src="../js/mm_menu.js"></script> <meta name=Author content="Dr. Girish Nath Jha, JNU, New Delhi"> </head> <body lang=EN-US link=blue vlink=blue style='tab-interval:.5in'> <div class=Section1> <div align=center> <table border=1 cellspacing=0 cellpadding=0 width=802 style='width:601.5pt; border-collapse:collapse;border:none;mso-border-alt:outset navy .75pt'> <tr> <td width=800 style='width:600.0pt;border:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'> <script language="JavaScript1.2">mmLoadMenus();</script> <img width=800 height=130 id="_x0000_i1028" src="../images/header1.jpg" border=0> </td> </tr> <tr> <td width=818 style='width:613.5pt;border:inset navy .75pt;border-top:none; mso-border-top-alt:inset navy .75pt;padding:.75pt .75pt .75pt .75pt'> <p align="center"><a href="../"><span style='text-decoration:none;text-underline: none'><img border=1 width=49 height=26 id="_x0000_i1037" src="../images/backtohome.jpg"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171051_0,6,29,null,'image2')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image2 src="../images/lang_tool.jpg" name=image2 width="192" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171909_0,6,29,null,'image3')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image3 src="../images/lexical.jpg" name=image3 width="137" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171609_0,6,29,null,'image1')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image1 src="../images/elearning.jpg" name=image1 width="77" height="25"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171809_0,6,29,null,'image4')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image4 src="../images/corpora.jpg" name=image4 width="105" height="26"></span></a><span style='text-underline: none'> </span><a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171709_0,6,29,null,'image5')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image5 src="../images/rstudents.jpg" name=image5 width="125" height="26"></span></a><span style='text-underline: none'> </span> <a href="javascript:;" onmouseover="MM_showMenu(window.mm_menu_0821171409_0,6,29,null,'image6')" onmouseout="MM_startTimeout();"><span style='text-decoration:none;text-underline: none'><img border=1 id=image6 src="../images/feedback.jpg" name=image6 width="80" height="25"></span></a><span style='text-underline: none'> </span> <!--- <a href="../user/feedback.jsp"><img border="1" src="../images/feedback.jpg" width="80" height="25"></a> ---> </td> </tr> <tr> <td width="800"> <p align="center"><font color="#FF9933"><span style='font-size:18.0pt; '><b>Sanskrit Sandhi Recognizer and Analyzer</b></span></font></p> The Sanskrit sandhi splitter (VOWEL SANDHI) was developed as part of M.Phil. research by <a href="mailto:sachin.jnu@gmail.com">Sachin Kumar</a> (M.Phil. 2005-2007), and <a href=mailto:diwakarmishra@gmail.com>Diwakar Mishra</a> (M.Phil. 2007-2009) under the supervision of <a href=http://www.jnu.ac.in/faculty/gnjha>Dr. Girish Nath Jha</a>. The coding for this application has been done by Dr. Girish Nath Jha and Diwakar Mishra. <!---Please send feedback to to <a href="mailto:girishj@mail.jnu.ac.in">Dr. Girish Nath Jha</A>--->The Devanagari input mechanism has been developed in Javascript by Satyendra Kumar Chaube, Dr. Girish Nath Jha and Dharm Singh Rathore. </center> <table border=0 width=100%> <tr> <td valign=top width=48%> <table> <tr> <td> <FORM METHOD=get ACTION=viccheda.jsp#results name="iform" accept-Charset="UTF-8"> <font size=2><b>Enter Sanskrit text for sandhi processing (संधि-विच्छेद हेतु पाठ्य दें) using adjacent keyboard OR Use our inbuilt <a href=../js/itrans.html target=_blank>iTRANS</a>-Devanagari unicode converter for fast typing<br> <a href=sandhitest.txt>examples</a> <TEXTAREA name=itext COLS=40 ROWS=9 onkeypress=checkKeycode(event) onkeyup=iu()> ग्रीवाऽद्यावधि</TEXTAREA> </td> </tr> <tr> <td> <font color=red size=2>Run in debug mode</font> <input type=checkbox name="debug" value="ON"> <br> <input type=submit value="Click to sandhi-split (संधि-विच्छेद करें)"></span><br> </td> </tr> </table> </td> <td valign=top width=52%> <table> <tr> <td> <head> <SCRIPT language=JavaScript src="../js/devkb.js"></SCRIPT> <head> <TEXTAREA name=itrans rows=5 cols=10 style="display:none"></TEXTAREA> <INPUT name=lastChar type=hidden> <table border=2 style="background-color:#fff;"> <tbody> <tr > <td> <input type=button name="btn" style="width: 24px" value="&#x0905;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0906;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0907;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0908;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0909;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0910;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0913;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0914;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0905;&#x0902;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0905;&#x0903;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0911;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x094D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0940;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0941;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0942;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0947;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0948;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x094B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x094C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0902;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0903;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0945;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0949;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x0915;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0916;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0917;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0918;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0919;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 100px" value="Backspace" onClick="BackSpace()"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="+" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0920;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0921;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0922;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0923;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0924;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0925;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0926;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0927;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0928;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="/" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092A;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092D;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x092E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x092F;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0932;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0935;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0964;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="*" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0936;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0937;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0938;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x090B;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x090C;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0943;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0944;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0939;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value=""> <input type=button name="btn" style="width: 24px" value="&#x0965;" onClick="keyboard(this.value)"> </td> </tr> <tr> <td> <input type=button name="btn" style="width: 24px" value="&#x0924;&#x094D;&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x091C;&#x094D;&#x091E;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0915;&#x094D;&#x0937;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x0936;&#x094D;&#x0930;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 200px" value="Space Bar" onClick="Space()"> <input type=button name="btn" style="width: 24px" value="&#x0901;" onClick="keyboard(this.value)"> <input type=button name="btn" style="width: 24px" value="&#x093C;" onClick="keyboard(this.value)"> </td> </tr> </tbody> </table> </td> </tr> </table> </td> </tr> <tr> </table> </form> <a name=results> <font size=4><b><u>Results</u></b></font> <br> ग्रीवा अद्यावधि (पूर्वरूपसन्धि, एङःपदान्तादति)<br> <br> <font color=red> <br> <hr> <br> </body> </html>
web/security/src/it/resources/jediCouncil.html
kavi87/seed
<!-- Copyright (c) 2013-2015, The SeedStack authors <http://seedstack.org> This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Council</title> </head> <body> <div> You know how to wield a light saber ! </div> </body> </html>
tests/wpt/web-platform-tests/css/css-color-adjust/parsing/color-scheme-invalid.html
ecoal95/servo
<!DOCTYPE html> <title>CSS Color Adjust: parsing color-scheme with invalid values</title> <link rel="help" href="https://drafts.csswg.org/css-color-adjust/#color-scheme-prop"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/css/support/parsing-testcommon.js"></script> <script> test_invalid_value("color-scheme", "none"); test_invalid_value("color-scheme", "only"); test_invalid_value("color-scheme", "only only"); test_invalid_value("color-scheme", "only auto"); test_invalid_value("color-scheme", "only light dark"); test_invalid_value("color-scheme", "only light light"); test_invalid_value("color-scheme", "only light purple"); test_invalid_value("color-scheme", "auto dark"); test_invalid_value("color-scheme", "auto purple"); test_invalid_value("color-scheme", "light auto"); test_invalid_value("color-scheme", "light none"); test_invalid_value("color-scheme", "light, dark"); test_invalid_value("color-scheme", "light inherit"); test_invalid_value("color-scheme", "light initial"); test_invalid_value("color-scheme", "light unset"); test_invalid_value("color-scheme", "light revert"); test_invalid_value("color-scheme", "light default"); </script>
poi-3.13/docs/apidocs/org/apache/poi/hssf/model/class-use/PictureShape.html
claywebb/java-bulletin
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.hssf.model.PictureShape (POI API Documentation) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.hssf.model.PictureShape (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hssf/model/PictureShape.html" title="class in org.apache.poi.hssf.model"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hssf/model/\class-usePictureShape.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PictureShape.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.poi.hssf.model.PictureShape</B></H2> </CENTER> No usage of org.apache.poi.hssf.model.PictureShape <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/poi/hssf/model/PictureShape.html" title="class in org.apache.poi.hssf.model"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/poi/hssf/model/\class-usePictureShape.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PictureShape.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2015 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
poi-3.13/docs/apidocs/org/apache/poi/sl/draw/binding/class-use/CTPresetTextShape.html
claywebb/java-bulletin
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> Uses of Class org.apache.poi.sl.draw.binding.CTPresetTextShape (POI API Documentation) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.poi.sl.draw.binding.CTPresetTextShape (POI API Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/poi/sl/draw/binding/\class-useCTPresetTextShape.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CTPresetTextShape.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.poi.sl.draw.binding.CTPresetTextShape</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding">CTPresetTextShape</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.poi.sl.draw.binding"><B>org.apache.poi.sl.draw.binding</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.poi.sl.draw.binding"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding">CTPresetTextShape</A> in <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/package-summary.html">org.apache.poi.sl.draw.binding</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/package-summary.html">org.apache.poi.sl.draw.binding</A> that return <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding">CTPresetTextShape</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding">CTPresetTextShape</A></CODE></FONT></TD> <TD><CODE><B>ObjectFactory.</B><B><A HREF="../../../../../../../org/apache/poi/sl/draw/binding/ObjectFactory.html#createCTPresetTextShape()">createCTPresetTextShape</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create an instance of <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding"><CODE>CTPresetTextShape</CODE></A></TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/poi/sl/draw/binding/CTPresetTextShape.html" title="class in org.apache.poi.sl.draw.binding"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/poi/sl/draw/binding/\class-useCTPresetTextShape.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CTPresetTextShape.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright 2015 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
doc/libc/unix/notbsd/linux/GENL_MAX_ID.v.html
surrsurus/edgequest
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=constant.GENL_MAX_ID.html"> </head> <body> <p>Redirecting to <a href="constant.GENL_MAX_ID.html">constant.GENL_MAX_ID.html</a>...</p> <script>location.replace("constant.GENL_MAX_ID.html" + location.search + location.hash);</script> </body> </html>
tests/wpt/web-platform-tests/FileAPI/file/send-file-formdata.html
KiChjang/servo
<!DOCTYPE html> <meta charset="utf-8" /> <title>FormData: Upload ASCII-named file in UTF-8 form</title> <link rel="help" href="https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data" /> <link rel="help" href="https://html.spec.whatwg.org/multipage/dnd.html#datatransferitemlist" /> <link rel="help" href="https://w3c.github.io/FileAPI/#file-constructor" /> <link rel="author" title="Benjamin C. Wiley Sittler" href="mailto:bsittler@chromium.org" /> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="../support/send-file-formdata-helper.js"></script> <script> "use strict"; formDataPostFileUploadTest({ fileNameSource: "ASCII", fileBaseName: "file-for-upload-in-form.txt", }); </script>
oneflow/core/templates/snippets/toolbars/filter/reset.html
1flow/1flow
{% if not in_group %} <div class="btn-group"> {% endif %} <a href="?" title="{% trans "Reset filters to default" %}" data-toggle="tooltip" class="btn btn-default btn-sm popover-top" style="{{ margin_fix|yesno:'margin-left: -1px,' }}"> {% core_icon "remove" False %} </a> {% if not in_group %} </div> {% endif %}
software/solr-4.1.0/docs/solr-test-framework/org/apache/solr/package-frame.html
MomixSolutions/MyGovCenter
<!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_37) on Wed Jan 16 17:22:03 EST 2013 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> org.apache.solr (Solr 4.1.0 API) </TITLE> <META NAME="date" CONTENT="2013-01-16"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../org/apache/solr/package-summary.html" target="classFrame">org.apache.solr</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="BaseDistributedSearchTestCase.html" title="class in org.apache.solr" target="classFrame">BaseDistributedSearchTestCase</A> <BR> <A HREF="BaseDistributedSearchTestCase.RandDate.html" title="class in org.apache.solr" target="classFrame">BaseDistributedSearchTestCase.RandDate</A> <BR> <A HREF="BaseDistributedSearchTestCase.RandVal.html" title="class in org.apache.solr" target="classFrame">BaseDistributedSearchTestCase.RandVal</A> <BR> <A HREF="JSONTestUtil.html" title="class in org.apache.solr" target="classFrame">JSONTestUtil</A> <BR> <A HREF="SolrIgnoredThreadsFilter.html" title="class in org.apache.solr" target="classFrame">SolrIgnoredThreadsFilter</A> <BR> <A HREF="SolrJettyTestBase.html" title="class in org.apache.solr" target="classFrame">SolrJettyTestBase</A> <BR> <A HREF="SolrTestCaseJ4.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4</A> <BR> <A HREF="SolrTestCaseJ4.Doc.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.Doc</A> <BR> <A HREF="SolrTestCaseJ4.Fld.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.Fld</A> <BR> <A HREF="SolrTestCaseJ4.FVal.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.FVal</A> <BR> <A HREF="SolrTestCaseJ4.IRange.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.IRange</A> <BR> <A HREF="SolrTestCaseJ4.IVals.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.IVals</A> <BR> <A HREF="SolrTestCaseJ4.SVal.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.SVal</A> <BR> <A HREF="SolrTestCaseJ4.Vals.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.Vals</A> <BR> <A HREF="SolrTestCaseJ4.XmlDoc.html" title="class in org.apache.solr" target="classFrame">SolrTestCaseJ4.XmlDoc</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
software/solr-4.1.0/docs/solr-solrj/org/apache/solr/client/solrj/impl/class-use/LBHttpSolrServer.html
MomixSolutions/MyGovCenter
<!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_37) on Wed Jan 16 17:21:58 EST 2013 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> Uses of Class org.apache.solr.client.solrj.impl.LBHttpSolrServer (Solr 4.1.0 API) </TITLE> <META NAME="date" CONTENT="2013-01-16"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.client.solrj.impl.LBHttpSolrServer (Solr 4.1.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl"><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="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/solr/client/solrj/impl//class-useLBHttpSolrServer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="LBHttpSolrServer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.solr.client.solrj.impl.LBHttpSolrServer</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.apache.solr.client.solrj.impl"><B>org.apache.solr.client.solrj.impl</B></A></TD> <TD>Concrete implementations of client API classes.&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.apache.solr.client.solrj.impl"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A> in <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/package-summary.html">org.apache.solr.client.solrj.impl</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/package-summary.html">org.apache.solr.client.solrj.impl</A> that return <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A></CODE></FONT></TD> <TD><CODE><B>CloudSolrServer.</B><B><A HREF="../../../../../../../org/apache/solr/client/solrj/impl/CloudSolrServer.html#getLbServer()">getLbServer</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">Constructors in <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/package-summary.html">org.apache.solr.client.solrj.impl</A> with parameters of type <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../../org/apache/solr/client/solrj/impl/CloudSolrServer.html#CloudSolrServer(java.lang.String, org.apache.solr.client.solrj.impl.LBHttpSolrServer)">CloudSolrServer</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;zkHost, <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A>&nbsp;lbServer)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../../org/apache/solr/client/solrj/impl/CloudSolrServer.html#CloudSolrServer(java.lang.String, org.apache.solr.client.solrj.impl.LBHttpSolrServer, boolean)">CloudSolrServer</A></B>(<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A>&nbsp;zkHost, <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl">LBHttpSolrServer</A>&nbsp;lbServer, boolean&nbsp;updatesToLeaders)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/solr/client/solrj/impl/LBHttpSolrServer.html" title="class in org.apache.solr.client.solrj.impl"><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="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/apache/solr/client/solrj/impl//class-useLBHttpSolrServer.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="LBHttpSolrServer.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2000-2013 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </BODY> </HTML>
software/solr-4.1.0/docs/solr-test-framework/constant-values.html
MomixSolutions/MyGovCenter
<!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_37) on Wed Jan 16 17:22:03 EST 2013 --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <TITLE> Constant Field Values (Solr 4.1.0 API) </TITLE> <META NAME="date" CONTENT="2013-01-16"> <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="Constant Field Values (Solr 4.1.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="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?constant-values.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="constant-values.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> <H1> Constant Field Values</H1> </CENTER> <HR SIZE="4" NOSHADE> <B>Contents</B><UL> <LI><A HREF="#org.apache">org.apache.*</A> </UL> <A NAME="org.apache"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left"><FONT SIZE="+2"> org.apache.*</FONT></TH> </TR> </TABLE> <P> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="3">org.apache.solr.<A HREF="org/apache/solr/JSONTestUtil.html" title="class in org.apache.solr">JSONTestUtil</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.solr.JSONTestUtil.DEFAULT_DELTA"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public&nbsp;static&nbsp;final&nbsp;double</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/solr/JSONTestUtil.html#DEFAULT_DELTA">DEFAULT_DELTA</A></CODE></TD> <TD ALIGN="right"><CODE>1.0E-5</CODE></TD> </TR> </FONT></TD> </TR> </TABLE> <P> <P> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="3">org.apache.solr.cloud.<A HREF="org/apache/solr/cloud/AbstractDistribZkTestBase.html" title="class in org.apache.solr.cloud">AbstractDistribZkTestBase</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.solr.cloud.AbstractDistribZkTestBase.DEFAULT_COLLECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>protected&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/solr/cloud/AbstractDistribZkTestBase.html#DEFAULT_COLLECTION">DEFAULT_COLLECTION</A></CODE></TD> <TD ALIGN="right"><CODE>"collection1"</CODE></TD> </TR> </FONT></TD> </TR> </TABLE> <P> <P> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="3">org.apache.solr.cloud.<A HREF="org/apache/solr/cloud/AbstractFullDistribZkTestBase.html" title="class in org.apache.solr.cloud">AbstractFullDistribZkTestBase</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.solr.cloud.AbstractFullDistribZkTestBase.SHARD1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/solr/cloud/AbstractFullDistribZkTestBase.html#SHARD1">SHARD1</A></CODE></TD> <TD ALIGN="right"><CODE>"shard1"</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.solr.cloud.AbstractFullDistribZkTestBase.SHARD2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public&nbsp;static&nbsp;final&nbsp;<A HREF="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/solr/cloud/AbstractFullDistribZkTestBase.html#SHARD2">SHARD2</A></CODE></TD> <TD ALIGN="right"><CODE>"shard2"</CODE></TD> </TR> </FONT></TD> </TR> </TABLE> <P> <P> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="3">org.apache.solr.cloud.<A HREF="org/apache/solr/cloud/ZkTestServer.html" title="class in org.apache.solr.cloud">ZkTestServer</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.solr.cloud.ZkTestServer.TICK_TIME"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public&nbsp;static&nbsp;final&nbsp;int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/solr/cloud/ZkTestServer.html#TICK_TIME">TICK_TIME</A></CODE></TD> <TD ALIGN="right"><CODE>1000</CODE></TD> </TR> </FONT></TD> </TR> </TABLE> <P> <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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="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?constant-values.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="constant-values.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2000-2013 Apache Software Foundation. All Rights Reserved.</i> <script src='/prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </BODY> </HTML>
src/main/resources/public/css/components/dropdown-menu.css
SICTIAM/ozwillo-portal
.oz-dropdown-menu { background-color: var(--primary-color); } .oz-dropdown-menu > .header { display: flex; flex-direction: row; padding: 5px 8px; align-items: center; color: var(--primary-color); background-color: var(--tertiary-color); border-left: 2px solid var(--secondary-color); } .oz-dropdown-menu.action-header > .header { border: none; } .oz-dropdown-menu > .header .content { width: 100%; } .oz-dropdown-menu > .header .arrow-icon { font-size: 2em; cursor: pointer; padding: 0.2em 0.5em; border-radius: 50%; } /* */ .oz-dropdown-menu > .header .arrow-icon.fa-caret-down { padding: 0.2em 0.4em; } .oz-dropdown-menu > .header .arrow-icon:hover { background-color: var(--secondary-color); } .oz-dropdown-menu > .header .dropdown-icons { cursor: pointer; border-radius: 50px; font-size: 1.5em; padding: 0.3em 0.5em; } .oz-dropdown-menu > .header .dropdown-icons > :last-child { padding-left: 0.2em; } .oz-dropdown-menu > .header .dropdown-icons:hover { background-color: var(--primary-color); color: #fff; } .oz-dropdown-menu > .content, .oz-dropdown-menu > .footer { border-left: 2px solid var(--secondary-color); background-color: #fff; padding: 5px 10px; } .oz-dropdown-menu > .content.empty { padding: 0px; } /* shadow */ .oz-dropdown-menu { box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3), -1px -1px 2px rgba(0, 0, 0, 0.2); } /* Service dropdown */ .dropdown-header .form .dropdown-name { height: 100%; width: auto; align-items: center; } /* Organization dropdown */ .dropdown-content .apps { align-items: center; width: 100%; } .dropdown-content .apps > .list { flex-wrap: wrap; } .dropdown-content .apps > .empty-message { font-size: 1.1em; } .dropdown-content .apps .app { margin: 10px; width: 100px; } .dropdown-content .apps .app .launcher .name { font-size: 0.9em; } .dropdown-content .invitation { margin: auto 0; } .dropdown-content .invitation .organization-invitation-form .label { width: auto; } .dropdown-content .btn.btn-submit { padding: 3px 6px; font-size: 0.9em; } @media (max-width: 425px) { .dropdown-content .invitation .organization-invitation-form .label, .dropdown-content .invitation { width: 100%; } .dropdown-header { padding: 0 !important; } }
ckanext/cdrc/templates/topic/confirm_delete_member.html
spacelis/ckan-ckanext-cdrc
{% extends "page.html" %} {% set group_controller='ckanext.cdrc.controllers.topic:TopicController' %} {% block subtitle %}{{ _("Confirm Delete") }}{% endblock %} {% block maintag %}<div class="row" role="main">{% endblock %} {% block main_content %} <section class="module span6 offset3"> <div class="module-content"> {% block form %} <p>{{ _('Are you sure you want to delete member - {name}?').format(name=c.user_dict.name) }}</p> <p class="form-actions"> <form action="{% url_for controller=group_controller, action='member_delete', id=c.group_id %}" method="post"> <input type="hidden" name="user" value="{{ c.user_id }}" /> <button class="btn" type="submit" name="cancel" >{{ _('Cancel') }}</button> <button class="btn btn-primary" type="submit" name="delete" >{{ _('Confirm Delete') }}</button> </form> </p> {% endblock %} </div> </section> {% endblock %}
navigator/templates/script_base.html
tschmorleiz/amcat
{% extends "base.html" %} {% block content %} <form action="" enctype="multipart/form-data" method="POST"> <legend>Please enter options for {{ script_name }} below.</legend> <table> {{ form.as_table }} </table> <div class="form-actions"> <input class="btn btn-primary" type="submit" value="Save"></input> <a href="{{ cancel_url }}" class="btn">Cancel</a> </div> </form> {% if script_doc %} <div class="alert alert-info" style="white-space:pre-wrap">{{ script_doc }}</div> {% endif %} {% endblock %}
src/net/pleso/odbui/public/js/dojo-release-1.0.2/dojo/tests/behavior.html
235/gwt-odb-ui
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Testing dojo.behavior</title> <style type="text/css"> @import "../resources/dojo.css"; </style> <script type="text/javascript" src="../dojo.js" djConfig="isDebug: false"></script> <script type="text/javascript"> dojo.require("doh.runner"); dojo.require("dojo.behavior"); var applyCount = 0; var behaviorObj = { ".bar": function(elem){ dojo.style(elem, "opacity", 0.5); applyCount++; }, ".foo > span": function(elem){ elem.style.fontStyle = "italic"; applyCount++; } } var topicCount = 0; dojo.subscribe("/foo", function(){ topicCount++; }); // no behaviors should be executed when onload fires dojo.addOnLoad(function(){ doh.register("t", [ function add(t){ t.f(dojo.behavior._behaviors[".bar"]); t.f(dojo.behavior._behaviors[".foo > span"]); dojo.behavior.add(behaviorObj); // make sure they got plopped in t.t(dojo.behavior._behaviors[".bar"]); t.is(1, dojo.behavior._behaviors[".bar"].length); t.t(dojo.behavior._behaviors[".foo > span"]); t.is(1, dojo.behavior._behaviors[".foo > span"].length); }, function apply(t){ t.is(0, applyCount); dojo.behavior.apply(); t.is(2, applyCount); // reapply and make sure we only match once dojo.behavior.apply(); t.is(2, applyCount); }, function reapply(t){ t.is(2, applyCount); // add the rules again dojo.behavior.add(behaviorObj); dojo.behavior.apply(); t.is(4, applyCount); // dojo.behavior.apply(); // t.is(4, applyCount); // dojo.query(".bar").styles("opacity", 1.0); }, function topics(t){ t.is(0, topicCount); dojo.behavior.add({ ".foo": "/foo" }); dojo.behavior.apply(); t.is(2, topicCount); dojo.behavior.add({ ".foo": { "onfocus": "/foo" } }); dojo.behavior.apply(); t.is(2, topicCount); dojo.byId("blah").focus(); t.is(3, topicCount); dojo.byId("blah").blur(); dojo.byId("blah").focus(); t.is(4, topicCount); } ] ); doh.run(); }); </script> </head> <body> <div class="foo" id="fooOne"> <span>.foo &gt; span</span> <div class="bar"> <span>.foo &gt; .bar &gt; span</span> </div> </div> <input type="text" id="blah" class="foo blah" name="thinger" value="thinger"> </body> </html>
lms/templates/certificates/_accomplishment-rendering.html
shubhdev/openedx
<%! from django.utils.translation import ugettext as _ %> <%namespace name='static' file='../static_content.html'/> <% accomplishment_course_title = accomplishment_copy_course_name if certificate_data and certificate_data.get('course_title', ''): accomplishment_course_title = certificate_data.get('course_title', '') course_mode_class = course_mode if course_mode else '' %> <article class="accomplishment accomplishment-main"> <div class="wrapper-accomplishment-rendering"> <div class="accomplishment-rendering"> <span class="deco-corner deco-corner-tl"></span> <span class="deco-corner deco-corner-tr"></span> <span class="deco-corner deco-corner-bl"></span> <span class="deco-corner deco-corner-br"></span> <div class="accomplishment-type"> <span class="accomplishment-type-symbol"> <img class="src" src="/static/certificates/images/ico-${course_mode_class}.png" alt=""> </span> <span class="accomplishment-type-label hd-4">${document_title}</span> </div> <div class="wrapper-statement-and-signatories"> <div class="accomplishment-statement"> <p class="accomplishment-statement-lead"> <strong class="accomplishment-recipient hd-1 emphasized">${accomplishment_copy_name}</strong> <span class="accomplishment-summary copy copy-lead">${accomplishment_copy_description_full}</span> <span class="accomplishment-course hd-1 emphasized"> <span class="accomplishment-course-org">${accomplishment_copy_course_org} </span> <span class="accomplishment-course-number">101x</span>: <span class="accomplishment-course-name">${accomplishment_course_title}</span> </span> </p> <p class="accomplishment-statement-detail copy copy-lead">${accomplishment_copy_course_description}</p> </div> % if mode != 'base': <div class="accomplishment-signatories"> <h3 class="accomplishment-signatories-title hd-6 sr-only">${_("Noted by")}</h3> <div class="wrapper-signatories"> <div class="list-signatories"> % if certificate_data: % for signatory in certificate_data.get('signatories', []): <div class="signatory"> <img class="signatory-signature" src="${static.url(signatory['signature_image_path'])}" alt="${signatory['name']}"> <h4 class="signatory-name hd-5">${signatory['name']}</h4> <p class="signatory-credentials copy copy-micro"> <span class="role">${signatory['title']}</span> <span class="organization">${signatory['organization']}</span> </p> </div> % endfor % endif </div> </div> </div> % endif </div> <div class="accomplishment-orgs"> <h3 class="accomplishment-orgs-title hd-6 sr-only">${_("Supported by the following organizations")}</h3> <ul class="wrapper-orgs list-orgs"> <li class="wrapper-organization"> <div class="organization organization-edX"> <img class="organization-logo" src="${static.url('/static/certificates/images/logo-edx.png')}" alt="${platform_name}"> </div> </li> % if certificate_data and certificate_data.get('org_logo_path', ''): <li class="wrapper-organization"> <div class="organization"> <img class="organization-logo" src="${static.url(certificate_data['org_logo_path'])}" alt="${platform_name}"> </div> </li> % endif </ul> </div> </div> </div> <div class="wrapper-accomplishment-metadata"> <div class="accomplishment-metadata"> <h2 class="accomplishment-metadata-title hd-6">${accomplishment_copy_more_about}</h2> <div class="wrapper-metadata"> <dl class="metadata accomplishment-recipient"> <dt class="label sr-only">Awarded to:</dt> <dd class="value copy copy-meta"> <span class="recipient-img"> <img class="src" src="/static/certificates/images/demo-user-profile.png" alt=""> </span> <div class="recipient-details"> <h3 class="recipient-name">${accomplishment_copy_name}</h3> <p class="recipient-username">${accomplishment_copy_username} @ ${platform_name}</p> </div> </dd> </dl> <dl class="metadata accomplishment-id"> <dt class="label copy copy-meta">${certificate_id_number_title}:</dt> <dd class="value copy copy-base">${certificate_id_number}</dd> </dl> <dl class="metadata accomplishment-date"> <dt class="label copy copy-meta">${certificate_date_issued_title}</dt> <dd class="value copy copy-base">${certificate_date_issued}</dd> </dl> </div> </div> </div> </article>
Implementation/WebTier/WebContent/Desktops/ProcessPuzzle/Styles/Layout.css
ZsZs/ProcessPuzzleFramework
@CHARSET "UTF-8"; /* Layout.css for ProcessPuzzle.DesktopConfigurator Skin: ProcessPuzzle Copyright: Copyright (c) 2010 IT Codex Llc, <http://itkodex.hu/>. License: MIT-style license. Required by: DesktopConfigurator.js */ html, body { background: #fff; } body { margin: 0; /* Required */ } #desktop { position: relative; min-width: 1024px; /* Helps keep header content from wrapping */ height: 100%; min-height: 100%; overflow: hidden; cursor: default; /* Fix for issue in IE7. IE7 wants to use the I-bar text cursor */ } /* Header */ #desktopHeader { height: 130px; overflow: hidden; background: url(../Images/HeaderBackground.jpg) repeat-x; } #desktopTitleBar { height: 100px; overflow: hidden; background: url(../Images/TitleImage.jpg) no-repeat; background-position: right top; background-repeat: no-repeat; } #desktopTitleLogo{ background: url(../Images/ProcessPuzzleLogo.gif) no-repeat; background-position: left top; height: 80px; left: 10px; position: absolute; top: 10px; width: 80px; } #desktopTitleWrapper { margin: 0px; left: 0px; overflow: hidden; position: relative; top: 0px; } #desktopTitleWrapper h1.applicationTitle { margin: 0; padding: 0 5px 0 0; font-size: 20px; line-height: 25px; font-weight: bold; text-align: center; color: darkblue; } #desktopTitleWrapper h2.tagline { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; color: white; font-weight: bold; text-align: right; text-transform: uppercase; padding-right: 55px; padding-left: 0px; padding-bottom: 0px; padding-top: 65px } #desktopTitleBar h2.tagline .taglineEm { color: #fff; font-weight: bold; } #desktopNavigationBar { background: url(../Images/NavigationBarBackground.jpg) repeat-x; height: 30px; width: 100%; margin: 0px; padding: 0px; position: absolute; top: 100px; overflow: hidden; /* Remove this line if you want the menu to be backward compatible with Firefox 2 */ z-index: 0; } #desktopNavigationBar div.navigationBarText { color: yellow; font-size: 15px; padding-top: 0px; text-align: center; } #pageWrapper { position: relative; overflow: hidden; /* This can be set to hidden or auto */ border-top: 1px solid #909090; border-bottom: 1px solid #909090; } /* Footer */ #desktopFooterWrapper { position: absolute; left: 0px; bottom: 0px; width: 100%; height: 31px; overflow: hidden; background: url(../Images/FooterBar.jpg) repeat-x; } #desktopFooter { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; height: 31px; padding: 0px 8px 0 8px; } #desktopFooter div.footerText { padding-top: 4px; text-align: center; } #desktopFooter div.footerText a { color: white; } #desktopFooter div.footerText a:hover { color: yellow; } /* Panel Layout ---------------------------------------------------------------- */ /* Columns */ .column { position: relative; float: left; overflow: hidden; /* Required by IE6 */ } #leftColumn { overflow: hidden; background: url(../Images/VerticalMenuBackground.jpg) repeat-y; } #rightColumn { overflow: hidden; background-color: rgb(245,250,245); } /* Panels */ .panel { position: relative; overflow: auto; border-bottom: 1px solid #b9b9b9; } .panelWrapper.collapsed .panel-header { border-bottom: 0; overflow : hidden; } .panelAlt { background: #f2f2f2; } .bottomPanel { border-bottom: 0; } .pad { padding: 8px; } #mainPanel { background: #fff; } .panel-header { position: relative; background: #f1f1f1 url(../Images/PanelHeaderBackground.jpg) repeat-x; height: 30px; overflow: hidden; border-bottom: 1px solid #d3d3d3; } .panel-headerContent { padding-top: 2px; } .panel-headerContent.tabs { background: url(../Images/Tabs.gif) repeat-x; background-position: left -68px; } .panel-header h2 { display: inline-block; font-size: 12px; margin: 0; padding: 3px 8px 0 8px; height: 22px; overflow: hidden; color: #333; } .panel-collapse { background: url(../Images/CollapseExpand.gif) left top no-repeat; } .panel-expand { background: url(../Images/CollapseExpand.gif) left -16px no-repeat; } .icon16 { margin: 4px 0 0 2px; cursor: pointer; } /* Column and Panel Handles */ .horizontalHandle { height: 4px; line-height: 1px; font-size: 1px; overflow: hidden; background: #eee url(../Images/PanelDividerBackground-Horizontal.jpg) repeat-x; } .horizontalHandle.detached .handleIcon { background: transparent; } .horizontalHandle .handleIcon { margin: 0 auto; height: 4px; line-height: 1px; font-size: 1px; overflow: hidden; background: url("../Images/PanelDividerIcon-Horizontal.jpg") center center no-repeat; } .columnHandle { min-height: 10px; float: left; width: 4px; overflow: hidden; background: rgb(220,252,230) url(../Images/PanelDividerIcon-Vertical.jpg) center center no-repeat; border-top: 0; border-bottom: 0; border-style: solid; border-color: rgb(120,242,192); border-width: 1px } /* Toolboxes */ .toolbox { float: right; margin-top: 3px; padding: 0 5px; height: 24px; overflow: hidden; text-align: right; } .panel-header-toolbox { } div.toolbox.divider { /* Have to specify div here for IE6's sake */ background: url(../Images/ToolboxDivider.jpg) repeat-y; padding-left: 8px; } .toolbox img.disabled { cursor: default; } .iconWrapper { display: inline-block; height: 22px; min-width: 22px; overflow: hidden; border: 1px solid transparent; } * html .iconWrapper { padding: 1px; border: 0; } .iconWrapper img { cursor: pointer; margin: 0; padding: 3px; } .iconWrapper:hover { border: 1px solid #a0a0a0; -moz-border-radius: 3px; } #spinnerWrapper { width: 16px; height: 16px; background: url(../Images/SpinnerPlaceholder.gif) no-repeat; margin: 4px 5px 0 5px; } #spinner { display: none; background: url(../Images/Spinner.gif) no-repeat; width: 16px; height: 16px; }
doc/html/qml-integration.html
nonrational/qt-everywhere-opensource-src-4.8.6
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- integrating.qdoc --> <title>Qt 4.8: Integrating QML Code with Existing Qt UI Code</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="style/superfish.css" /> <link rel="stylesheet" type="text/css" href="style/narrow.css" /> <!--[if IE]> <meta name="MSSmartTagsPreventParsing" content="true"> <meta http-equiv="imagetoolbar" content="no"> <![endif]--> <!--[if lt IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie6.css"> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" type="text/css" href="style/style_ie7.css"> <![endif]--> <!--[if IE 8]> <link rel="stylesheet" type="text/css" href="style/style_ie8.css"> <![endif]--> <script src="scripts/superfish.js" type="text/javascript"></script> <script src="scripts/narrow.js" type="text/javascript"></script> </head> <body class="" onload="CheckEmptyAndLoadList();"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="narrowsearch"></div> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.digia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://qt-project.org/">DEV</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://qt-project.org/doc/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.digia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.8</a></span></li> <li class="shortCut-topleft-active"><a href="http://qt-project.org/doc/">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="supported-platforms.html">Supported Platforms</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search" id="sidebarsearch"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> <div id="resultdialog"> <a href="#" id="resultclose">Close</a> <p id="resultlinks" class="all"><a href="#" id="showallresults">All</a> | <a href="#" id="showapiresults">API</a> | <a href="#" id="showarticleresults">Articles</a> | <a href="#" id="showexampleresults">Examples</a></p> <p id="searchcount" class="all"><span id="resultcount"></span><span id="apicount"></span><span id="articlecount"></span><span id="examplecount"></span>&nbsp;results:</p> <ul id="resultlist" class="all"> </ul> </div> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UIs &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="supported-platforms.html">Supported Platforms</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li>Integrating QML Code with Existing Qt UI Code</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content mainContent"> <link rel="prev" href="qtbinding.html" /> <link rel="next" href="qdeclarativedynamicobjects.html" /> <p class="naviNextPrevious headerNavi"> <a class="prevPage" href="qtbinding.html">Using QML Bindings in C++ Applications</a> <a class="nextPage" href="qdeclarativedynamicobjects.html">Dynamic Object Management</a> </p><p/> <div class="toc"> <h3><a name="toc">Contents</a></h3> <ul> <li class="level1"><a href="#integrating-with-a-qwidget-based-ui">Integrating with a <a href="qwidget.html">QWidget</a>-based UI</a></li> <li class="level1"><a href="#integrating-with-a-qgraphicsview-based-ui">Integrating with a QGraphicsView-based UI</a></li> <li class="level2"><a href="#adding-qml-widgets-to-a-qgraphicsscene">Adding QML widgets to a QGraphicsScene</a></li> <li class="level2"><a href="#loading-qgraphicswidget-objects-in-qml">Loading QGraphicsWidget objects in QML</a></li> </ul> </div> <h1 class="title">Integrating QML Code with Existing Qt UI Code</h1> <span class="subtitle"></span> <!-- $$$qml-integration.html-description --> <div class="descr"> <a name="details"></a> <p>There are a number of ways to integrate QML into <a href="qwidget.html">QWidget</a>-based UI applications, depending on the characteristics of your existing UI code.</p> <a name="integrating-with-a-qwidget-based-ui"></a> <h2>Integrating with a <a href="qwidget.html">QWidget</a>-based UI</h2> <p>If you have an existing <a href="qwidget.html">QWidget</a>-based UI, QML widgets can be integrated into it using <a href="qdeclarativeview.html">QDeclarativeView</a>. <a href="qdeclarativeview.html">QDeclarativeView</a> is a subclass of <a href="qwidget.html">QWidget</a> so you can add it to your user interface like any other <a href="qwidget.html">QWidget</a>. Use <a href="qdeclarativeview.html#source-prop">QDeclarativeView::setSource</a>() to load a QML file into the view, then add the view to your UI:</p> <pre class="cpp"> <span class="type"><a href="qdeclarativeview.html">QDeclarativeView</a></span> <span class="operator">*</span>qmlView <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qdeclarativeview.html">QDeclarativeView</a></span>; qmlView<span class="operator">-</span><span class="operator">&gt;</span>setSource(<span class="type"><a href="qurl.html">QUrl</a></span><span class="operator">::</span>fromLocalFile(<span class="string">&quot;myqml.qml&quot;</span>)); <span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>widget <span class="operator">=</span> myExistingWidget(); <span class="type"><a href="qvboxlayout.html">QVBoxLayout</a></span> <span class="operator">*</span>layout <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qvboxlayout.html">QVBoxLayout</a></span>(widget); layout<span class="operator">-</span><span class="operator">&gt;</span>addWidget(qmlView);</pre> <p>The one drawback to this approach is that <a href="qdeclarativeview.html">QDeclarativeView</a> is slower to initialize and uses more memory than a <a href="qwidget.html">QWidget</a>, and creating large numbers of <a href="qdeclarativeview.html">QDeclarativeView</a> objects may lead to performance degradation. If this is the case, it may be better to rewrite your widgets in QML, and load the widgets from a main QML widget instead of using <a href="qdeclarativeview.html">QDeclarativeView</a>.</p> <p>Keep in mind that QWidgets were designed for a different type of user interface than QML, so it is not always a good idea to port a <a href="qwidget.html">QWidget</a>-based application to QML. QWidgets are a better choice if your UI is comprised of a small number of complex and static elements, and QML is a better choice if your UI is comprised of a large number of simple and dynamic elements.</p> <a name="integrating-with-a-qgraphicsview-based-ui"></a> <h2>Integrating with a QGraphicsView-based UI</h2> <a name="adding-qml-widgets-to-a-qgraphicsscene"></a> <h3>Adding QML widgets to a QGraphicsScene</h3> <p>If you have an existing UI based on the <a href="graphicsview.html">Graphics View Framework</a>, you can integrate QML widgets directly into your <a href="qgraphicsscene.html">QGraphicsScene</a>. Use <a href="qdeclarativecomponent.html">QDeclarativeComponent</a> to create a <a href="qgraphicsobject.html">QGraphicsObject</a> from a QML file, and place the graphics object into your scene using <a href="qgraphicsscene.html#addItem">QGraphicsScene::addItem</a>(), or reparent it to an item already in the <a href="qgraphicsscene.html">QGraphicsScene</a>.</p> <p>For example:</p> <pre class="cpp"> <span class="type"><a href="qgraphicsscene.html">QGraphicsScene</a></span><span class="operator">*</span> scene <span class="operator">=</span> myExistingGraphicsScene(); <span class="type"><a href="qdeclarativeengine.html">QDeclarativeEngine</a></span> <span class="operator">*</span>engine <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qdeclarativeengine.html">QDeclarativeEngine</a></span>; <span class="type"><a href="qdeclarativecomponent.html">QDeclarativeComponent</a></span> component(engine<span class="operator">,</span> <span class="type"><a href="qurl.html">QUrl</a></span><span class="operator">::</span>fromLocalFile(<span class="string">&quot;myqml.qml&quot;</span>)); <span class="type"><a href="qgraphicsobject.html">QGraphicsObject</a></span> <span class="operator">*</span>object <span class="operator">=</span> qobject_cast<span class="operator">&lt;</span><span class="type"><a href="qgraphicsobject.html">QGraphicsObject</a></span> <span class="operator">*</span><span class="operator">&gt;</span>(component<span class="operator">.</span>create()); scene<span class="operator">-</span><span class="operator">&gt;</span>addItem(object);</pre> <p>The following <a href="qgraphicsview.html">QGraphicsView</a> options are recommended for optimal performance of QML UIs:</p> <ul> <li>QGraphicsView::setOptimizationFlags(<a href="qgraphicsview.html#OptimizationFlag-enum">QGraphicsView::DontSavePainterState</a>)</li> <li>QGraphicsView::setViewportUpdateMode(<a href="qgraphicsview.html#ViewportUpdateMode-enum">QGraphicsView::BoundingRectViewportUpdate</a>)</li> <li>QGraphicsScene::setItemIndexMethod(<a href="qgraphicsscene.html#ItemIndexMethod-enum">QGraphicsScene::NoIndex</a>)</li> </ul> <a name="loading-qgraphicswidget-objects-in-qml"></a> <h3>Loading QGraphicsWidget objects in QML</h3> <p>An alternative approach is to expose your existing <a href="qgraphicswidget.html">QGraphicsWidget</a> objects to QML and construct your scene in QML instead. See the <a href="declarative-cppextensions-qgraphicslayouts.html">graphics layouts example</a> which shows how to expose Qt's graphics layout classes to QML in order to use <a href="qgraphicswidget.html">QGraphicsWidget</a> with classes like <a href="qgraphicslinearlayout.html">QGraphicsLinearLayout</a> and <a href="qgraphicsgridlayout.html">QGraphicsGridLayout</a>.</p> <p>To expose your existing <a href="qgraphicswidget.html">QGraphicsWidget</a> classes to QML, use <a href="qdeclarativeengine.html#qmlRegisterType">qmlRegisterType</a>(). See <a href="qml-extending.html">Extending QML Functionalities using C++</a> for further information on how to use C++ types in QML.</p> </div> <!-- @@@qml-integration.html --> <p class="naviNextPrevious footerNavi"> <a class="prevPage" href="qtbinding.html">Using QML Bindings in C++ Applications</a> <a class="nextPage" href="qdeclarativedynamicobjects.html">Dynamic Object Management</a> </p> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2014 Digia Plc and/or its subsidiaries. Documentation contributions included herein are the copyrights of their respective owners.</p> <br /> <p> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> <p> Documentation sources may be obtained from <a href="http://www.qt-project.org"> www.qt-project.org</a>.</p> <br /> <p> Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://en.gitorious.org/privacy_policy/">Privacy Policy</a></p> </div> <script src="scripts/functions.js" type="text/javascript"></script> </body> </html>
trunk/com.woltlab.community.pb/files/style/yaml/navigation/nav_vlist.css
dtdesign/PackageBuilder
@charset "UTF-8"; /** * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework * * (en) Vertical list navigation "vlist" * (de) Vertikale Navigationsliste "vlist" * * @copyright Copyright 2005-2010, Dirk Jesse * @license CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/), * YAML-C (http://www.yaml.de/en/license/license-conditions.html) * @link http://www.yaml.de * @package yaml * @version 3.2.1 * @revision $Revision:392 $ * @lastmodified $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $ */ @media all { /* title */ h6.vlist { font-family:Arial, Helvetica, sans-serif; font-weight:bold; font-size:100%; width:90%; padding:3px 0px 3px 10%; /* LTR */ margin:0; color:#444; background-color:#fff; border-top:2px #ddd solid; border-bottom:4px #888 solid; } .vlist { width:100%; overflow:hidden; margin:0 0 1.5em 0; list-style-type:none; border-bottom:2px #ddd solid; } .vlist ul { list-style-type:none; margin:0; padding:0; } .vlist li { float:left; /* LTR */ width:100%; margin:0; padding:0; } .vlist a, .vlist strong, .vlist span { display:block; padding:3px 0px 3px 10%; text-decoration:none; border-bottom:1px #ddd solid; } .vlist a, .vlist a:visited { color:#444; } .vlist li span { display:block; font-weight:bold; border-bottom:1px #ddd solid; } /* active list element */ .vlist li.active { color:#fff; background-color:#800; font-weight:bold; } /* Level 1 */ .vlist li a, .vlist li strong, .vlist li span { width:90%; padding-left:10%; } /* LTR */ .vlist li a:focus, .vlist li a:hover, .vlist li a:active { background-color:#a88; color:#fff; outline: 0 none; } /* Level 2 */ .vlist li ul li a, .vlist li ul li strong, .vlist li ul li span { width:80%; padding-left:20%; } /* LTR */ .vlist li ul li a, .vlist li ul li a:visited { background-color:#f8f8f8; color:#333; } .vlist li ul li a:focus, .vlist li ul li a:hover, .vlist li ul li a:active { background-color:#a88; color:#fff; } /* Level 3 */ .vlist li ul li ul li a, .vlist li ul li ul li strong, .vlist li ul li ul li span { width:70%; padding-left:30%; } /* LTR */ .vlist li ul li ul li a, .vlist li ul li ul li a:visited{ background-color:#f0f0f0; color:#222; } .vlist li ul li ul li a:focus, .vlist li ul li ul li a:hover, .vlist li ul li ul li a:active { background-color:#a88; color:#fff; } /* Level 4 */ .vlist li ul li ul li ul li a, .vlist li ul li ul li ul li strong, .vlist li ul li ul li ul li span { width:60%; padding-left:40%; } /* LTR */ .vlist li ul li ul li ul li a, .vlist li ul li ul li ul li a:visited { background-color:#e8e8e8; color:#111; } .vlist li ul li ul li ul li a:focus, .vlist li ul li ul li ul li a:hover, .vlist li ul li ul li ul li a:active { background-color:#a88; color:#fff; } }
wiki/docs/2.0/html/classCqrs_1_1EventStore_1_1Bus_1_1InvalidLastEventProcessedException_aa14bdf5c6f8c0227dd3919b1fed91417.html
cdmdotnet/CQRS
<!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>CQRS.NET: Cqrs.EventStore.Bus.InvalidLastEventProcessedException.InvalidLastEventProcessedException</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.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="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.0</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</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> </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('classCqrs_1_1EventStore_1_1Bus_1_1InvalidLastEventProcessedException_aa14bdf5c6f8c0227dd3919b1fed91417.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)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <a id="aa14bdf5c6f8c0227dd3919b1fed91417"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa14bdf5c6f8c0227dd3919b1fed91417">&#9670;&nbsp;</a></span>InvalidLastEventProcessedException() <span class="overload">[4/4]</span></h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">Cqrs.EventStore.Bus.InvalidLastEventProcessedException.InvalidLastEventProcessedException </td> <td>(</td> <td class="paramtype">SerializationInfo&#160;</td> <td class="paramname"><em>info</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">StreamingContext&#160;</td> <td class="paramname"><em>context</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">protected</span></span> </td> </tr> </table> </div><div class="memdoc"> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1EventStore.html">EventStore</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1EventStore_1_1Bus.html">Bus</a></li><li class="navelem"><a class="el" href="classCqrs_1_1EventStore_1_1Bus_1_1InvalidLastEventProcessedException.html">InvalidLastEventProcessedException</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
wiki/docs/2.4/html/interfaceCqrs_1_1Configuration_1_1IConfigurationManager_a39de4f0a619d943c44b63b2a9b98e983.html
cdmdotnet/CQRS
<!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>CQRS.NET: Cqrs.Configuration.IConfigurationManager.GetConnectionStringBySettingKey</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.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="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.4</span> </div> <div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</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> </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('interfaceCqrs_1_1Configuration_1_1IConfigurationManager_a39de4f0a619d943c44b63b2a9b98e983.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)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> <a id="a39de4f0a619d943c44b63b2a9b98e983"></a> <h2 class="memtitle"><span class="permalink"><a href="#a39de4f0a619d943c44b63b2a9b98e983">&#9670;&nbsp;</a></span>GetConnectionStringBySettingKey()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">string Cqrs.Configuration.IConfigurationManager.GetConnectionStringBySettingKey </td> <td>(</td> <td class="paramtype">string&#160;</td> <td class="paramname"><em>key</em></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> <p>Read the configuration string where the name (or key) of the connection string is stored in a setting, first obtained with a call to <a class="el" href="interfaceCqrs_1_1Configuration_1_1IConfigurationManager_a9f7b7d4d8c26a0589f01c8a7f69901ef.html#a9f7b7d4d8c26a0589f01c8a7f69901ef" title="Read the setting named key . ">GetSetting(string)</a> </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">key</td><td>The key (or name) of the setting that has the name (or key) of the connection string to read.</td></tr> </table> </dd> </dl> <p>Implemented in <a class="el" href="classCqrs_1_1Configuration_1_1ConfigurationManager_accd6e8fbb5566f00d356c7fa6c6fdb98.html#accd6e8fbb5566f00d356c7fa6c6fdb98">Cqrs.Configuration.ConfigurationManager</a>.</p> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Configuration.html">Configuration</a></li><li class="navelem"><a class="el" href="interfaceCqrs_1_1Configuration_1_1IConfigurationManager.html">IConfigurationManager</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
wiki/docs/2.3/coverage-report/Azure/Cqrs.Azure.BlobStorage/BlobStorageStore.cs.gcov.html
Chinchilla-Software-Com/CQRS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>LCOV - doc-coverage.info - Azure/Cqrs.Azure.BlobStorage/BlobStorageStore.cs</title> <link rel="stylesheet" type="text/css" href="../../gcov.css"> </head> <body> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="title">Documentation Coverage Report</td></tr> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> <tr> <td width="100%"> <table cellpadding=1 border=0 width="100%"> <tr> <td width="10%" class="headerItem">Current view:</td> <td width="35%" class="headerValue"><a href="../../index.html">top level</a> - <a href="index.html">Azure/Cqrs.Azure.BlobStorage</a> - BlobStorageStore.cs</td> <td width="5%"></td> <td width="15%"></td> <td width="10%" class="headerCovTableHead">Hit</td> <td width="10%" class="headerCovTableHead">Total</td> <td width="15%" class="headerCovTableHead">Coverage</td> </tr> <tr> <td class="headerItem">Version:</td> <td class="headerValue">2.2</td> <td></td> <td class="headerItem">Artefacts:</td> <td class="headerCovTableEntry">13</td> <td class="headerCovTableEntry">13</td> <td class="headerCovTableEntryHi">100.0 %</td> </tr> <tr> <td class="headerItem">Date:</td> <td class="headerValue">2018-02-20</td> <td></td> </tr> <tr><td><img src="../../glass.png" width=3 height=3 alt=""></td></tr> </table> </td> </tr> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> </table> <table cellpadding=0 cellspacing=0 border=0> <tr> <td><br></td> </tr> <tr> <td> <pre class="sourceHeading"> Line data Source code</pre> <pre class="source"> <span class="lineNum"> 1 </span> : #region Copyright <span class="lineNum"> 2 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 3 </span> : // // &lt;copyright company=&quot;Chinchilla Software Limited&quot;&gt; <span class="lineNum"> 4 </span> : // // Copyright Chinchilla Software Limited. All rights reserved. <span class="lineNum"> 5 </span> : // // &lt;/copyright&gt; <span class="lineNum"> 6 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 7 </span> : #endregion <span class="lineNum"> 8 </span> : <span class="lineNum"> 9 </span> : using System; <span class="lineNum"> 10 </span> : using System.Collections.Generic; <span class="lineNum"> 11 </span> : using System.IO; <span class="lineNum"> 12 </span> : using System.Linq; <span class="lineNum"> 13 </span> : using System.Linq.Expressions; <span class="lineNum"> 14 </span> : using System.Threading.Tasks; <span class="lineNum"> 15 </span> : using cdmdotnet.Logging; <span class="lineNum"> 16 </span> : using Cqrs.Entities; <span class="lineNum"> 17 </span> : using Microsoft.WindowsAzure.Storage; <span class="lineNum"> 18 </span> : using Microsoft.WindowsAzure.Storage.Blob; <span class="lineNum"> 19 </span> : <span class="lineNum"> 20 </span> : namespace Cqrs.Azure.BlobStorage <span class="lineNum"> 21 </span> : { <span class="lineNum"> 22 </span> : /// &lt;summary&gt; <span class="lineNum"> 23 </span> : /// A &lt;see cref=&quot;IEnumerable{TData}&quot;/&gt; that uses Azure Blobl Storage for storage. <span class="lineNum"> 24 </span> : /// &lt;/summary&gt; <span class="lineNum"> 25 </span> : public class BlobStorageStore&lt;TData&gt; <span class="lineNum"> 26 </span> : : StorageStore&lt;TData, CloudBlobContainer&gt; <span class="lineNum"> 27 </span><span class="lineCov"> 1 : {</span> <span class="lineNum"> 28 </span> : internal Func&lt;TData, string&gt; GenerateFileName { get; set; } <span class="lineNum"> 29 </span> : <span class="lineNum"> 30 </span> : /// &lt;summary&gt; <span class="lineNum"> 31 </span> : /// Initializes a new instance of the &lt;see cref=&quot;BlobStorageStore{TData}&quot;/&gt; class using the specified container. <span class="lineNum"> 32 </span> : /// &lt;/summary&gt; <span class="lineNum"> 33 </span><span class="lineCov"> 1 : public BlobStorageStore(ILogger logger)</span> <span class="lineNum"> 34 </span> : : base(logger) <span class="lineNum"> 35 </span> : { <span class="lineNum"> 36 </span> : } <span class="lineNum"> 37 </span> : <span class="lineNum"> 38 </span> : #region Implementation of IEnumerable <span class="lineNum"> 39 </span> : <span class="lineNum"> 40 </span> : /// &lt;summary&gt; <span class="lineNum"> 41 </span> : /// Returns an enumerator that iterates through the collection. <span class="lineNum"> 42 </span> : /// &lt;/summary&gt; <span class="lineNum"> 43 </span> : /// &lt;returns&gt; <span class="lineNum"> 44 </span> : /// A &lt;see cref=&quot;T:System.Collections.Generic.IEnumerator`1&quot;/&gt; that can be used to iterate through the collection. <span class="lineNum"> 45 </span> : /// &lt;/returns&gt; <span class="lineNum"> 46 </span><span class="lineCov"> 1 : public override IEnumerator&lt;TData&gt; GetEnumerator()</span> <span class="lineNum"> 47 </span> : { <span class="lineNum"> 48 </span> : return OpenStreamsForReading() <span class="lineNum"> 49 </span> : .Select(Deserialise) <span class="lineNum"> 50 </span> : .GetEnumerator(); <span class="lineNum"> 51 </span> : } <span class="lineNum"> 52 </span> : <span class="lineNum"> 53 </span> : #endregion <span class="lineNum"> 54 </span> : <span class="lineNum"> 55 </span> : #region Implementation of IQueryable <span class="lineNum"> 56 </span> : <span class="lineNum"> 57 </span> : /// &lt;summary&gt; <span class="lineNum"> 58 </span> : /// Gets the expression tree that is associated with the instance of &lt;see cref=&quot;T:System.Linq.IQueryable&quot;/&gt;. <span class="lineNum"> 59 </span> : /// &lt;/summary&gt; <span class="lineNum"> 60 </span> : /// &lt;returns&gt; <span class="lineNum"> 61 </span> : /// The &lt;see cref=&quot;T:System.Linq.Expressions.Expression&quot;/&gt; that is associated with this instance of &lt;see cref=&quot;T:System.Linq.IQueryable&quot;/&gt;. <span class="lineNum"> 62 </span> : /// &lt;/returns&gt; <span class="lineNum"> 63 </span> : public override Expression Expression <span class="lineNum"> 64 </span> : { <span class="lineNum"> 65 </span> : get <span class="lineNum"> 66 </span> : { <span class="lineNum"> 67 </span> : return OpenStreamsForReading() <span class="lineNum"> 68 </span> : .Select(Deserialise) <span class="lineNum"> 69 </span> : .AsQueryable() <span class="lineNum"> 70 </span> : .Expression; <span class="lineNum"> 71 </span> : } <span class="lineNum"> 72 </span> : } <span class="lineNum"> 73 </span> : <span class="lineNum"> 74 </span> : /// &lt;summary&gt; <span class="lineNum"> 75 </span> : /// Gets the type of the element(s) that are returned when the expression tree associated with this instance of &lt;see cref=&quot;T:System.Linq.IQueryable&quot;/&gt; is executed. <span class="lineNum"> 76 </span> : /// &lt;/summary&gt; <span class="lineNum"> 77 </span> : /// &lt;returns&gt; <span class="lineNum"> 78 </span> : /// A &lt;see cref=&quot;T:System.Type&quot;/&gt; that represents the type of the element(s) that are returned when the expression tree associated with this object is executed. <span class="lineNum"> 79 </span> : /// &lt;/returns&gt; <span class="lineNum"> 80 </span> : public override Type ElementType <span class="lineNum"> 81 </span> : { <span class="lineNum"> 82 </span> : get <span class="lineNum"> 83 </span> : { <span class="lineNum"> 84 </span> : return OpenStreamsForReading() <span class="lineNum"> 85 </span> : .Select(Deserialise) <span class="lineNum"> 86 </span> : .AsQueryable() <span class="lineNum"> 87 </span> : .ElementType; <span class="lineNum"> 88 </span> : } <span class="lineNum"> 89 </span> : } <span class="lineNum"> 90 </span> : <span class="lineNum"> 91 </span> : /// &lt;summary&gt; <span class="lineNum"> 92 </span> : /// Gets the query provider that is associated with this data source. <span class="lineNum"> 93 </span> : /// &lt;/summary&gt; <span class="lineNum"> 94 </span> : /// &lt;returns&gt; <span class="lineNum"> 95 </span> : /// The &lt;see cref=&quot;T:System.Linq.IQueryProvider&quot;/&gt; that is associated with this data source. <span class="lineNum"> 96 </span> : /// &lt;/returns&gt; <span class="lineNum"> 97 </span> : public override IQueryProvider Provider <span class="lineNum"> 98 </span> : { <span class="lineNum"> 99 </span> : get { return OpenStreamsForReading() <span class="lineNum"> 100 </span> : .Select(Deserialise) <span class="lineNum"> 101 </span> : .AsQueryable() <span class="lineNum"> 102 </span> : .Provider; <span class="lineNum"> 103 </span> : } <span class="lineNum"> 104 </span> : } <span class="lineNum"> 105 </span> : <span class="lineNum"> 106 </span> : #endregion <span class="lineNum"> 107 </span> : <span class="lineNum"> 108 </span> : /// &lt;summary&gt; <span class="lineNum"> 109 </span> : /// Save the provided &lt;paramref name=&quot;data&quot;/&gt; asynchronously. <span class="lineNum"> 110 </span> : /// &lt;/summary&gt; <span class="lineNum"> 111 </span><span class="lineCov"> 1 : protected virtual void AsyncSaveData&lt;TResult&gt;(TData data, Func&lt;TData, CloudBlockBlob, TResult&gt; function, Func&lt;TData, string&gt; customFilenameFunction = null)</span> <span class="lineNum"> 112 </span> : { <span class="lineNum"> 113 </span> : IList&lt;Task&gt; persistTasks = new List&lt;Task&gt;(); <span class="lineNum"> 114 </span> : foreach (Tuple&lt;CloudStorageAccount, CloudBlobContainer&gt; tuple in WritableCollection) <span class="lineNum"> 115 </span> : { <span class="lineNum"> 116 </span> : TData taskData = data; <span class="lineNum"> 117 </span> : CloudBlobContainer container = tuple.Item2; <span class="lineNum"> 118 </span> : Task task = Task.Factory.StartNewSafely <span class="lineNum"> 119 </span> : ( <span class="lineNum"> 120 </span> : () =&gt; <span class="lineNum"> 121 </span> : { <span class="lineNum"> 122 </span> : string fileName = string.Format(&quot;{0}.json&quot;, (customFilenameFunction ?? GenerateFileName)(taskData)); <span class="lineNum"> 123 </span> : CloudBlockBlob cloudBlockBlob = GetBlobReference(container, fileName); <span class="lineNum"> 124 </span> : if (typeof(TResult) == typeof(Uri)) <span class="lineNum"> 125 </span> : { <span class="lineNum"> 126 </span> : Uri uri = AzureStorageRetryPolicy.ExecuteAction(() =&gt; (Uri)(object)function(taskData, cloudBlockBlob)); <span class="lineNum"> 127 </span> : <span class="lineNum"> 128 </span> : Logger.LogDebug(string.Format(&quot;The data entity '{0}' was persisted at uri '{1}'&quot;, fileName, uri)); <span class="lineNum"> 129 </span> : } <span class="lineNum"> 130 </span> : else <span class="lineNum"> 131 </span> : AzureStorageRetryPolicy.ExecuteAction(() =&gt; function(taskData, cloudBlockBlob)); <span class="lineNum"> 132 </span> : } <span class="lineNum"> 133 </span> : ); <span class="lineNum"> 134 </span> : persistTasks.Add(task); <span class="lineNum"> 135 </span> : } <span class="lineNum"> 136 </span> : <span class="lineNum"> 137 </span> : bool anyFailed = Task.Factory.ContinueWhenAll(persistTasks.ToArray(), tasks =&gt; <span class="lineNum"> 138 </span> : { <span class="lineNum"> 139 </span> : return tasks.Any(task =&gt; task.IsFaulted); <span class="lineNum"> 140 </span> : }).Result; <span class="lineNum"> 141 </span> : if (anyFailed) <span class="lineNum"> 142 </span> : throw new AggregateException(&quot;Persisting data to blob storage failed. Check the logs for more details.&quot;); <span class="lineNum"> 143 </span> : } <span class="lineNum"> 144 </span> : <span class="lineNum"> 145 </span> : #region Implementation of IDataStore&lt;TData&gt; <span class="lineNum"> 146 </span> : <span class="lineNum"> 147 </span> : /// &lt;summary&gt; <span class="lineNum"> 148 </span> : /// Add the provided &lt;paramref name=&quot;data&quot;/&gt; to the data store and persist the change. <span class="lineNum"> 149 </span> : /// &lt;/summary&gt; <span class="lineNum"> 150 </span><span class="lineCov"> 1 : public override void Add(TData data)</span> <span class="lineNum"> 151 </span> : { <span class="lineNum"> 152 </span> : AsyncSaveData <span class="lineNum"> 153 </span> : ( <span class="lineNum"> 154 </span> : data, <span class="lineNum"> 155 </span> : (taskData, cloudBlockBlob) =&gt; <span class="lineNum"> 156 </span> : { <span class="lineNum"> 157 </span> : try <span class="lineNum"> 158 </span> : { <span class="lineNum"> 159 </span> : cloudBlockBlob.UploadFromStream(Serialise(taskData)); <span class="lineNum"> 160 </span> : cloudBlockBlob.Properties.ContentType = &quot;application/json&quot;; <span class="lineNum"> 161 </span> : cloudBlockBlob.SetProperties(); <span class="lineNum"> 162 </span> : return cloudBlockBlob.Uri; <span class="lineNum"> 163 </span> : } <span class="lineNum"> 164 </span> : catch (Exception exception) <span class="lineNum"> 165 </span> : { <span class="lineNum"> 166 </span> : Logger.LogError(&quot;There was an issue persisting data to blob storage.&quot;, exception: exception); <span class="lineNum"> 167 </span> : throw; <span class="lineNum"> 168 </span> : } <span class="lineNum"> 169 </span> : } <span class="lineNum"> 170 </span> : ); <span class="lineNum"> 171 </span> : } <span class="lineNum"> 172 </span> : <span class="lineNum"> 173 </span> : /// &lt;summary&gt; <span class="lineNum"> 174 </span> : /// Remove the provided &lt;paramref name=&quot;data&quot;/&gt; (normally by &lt;see cref=&quot;IEntity.Rsn&quot;/&gt;) from the data store and persist the change. <span class="lineNum"> 175 </span> : /// &lt;/summary&gt; <span class="lineNum"> 176 </span><span class="lineCov"> 1 : public override void Destroy(TData data)</span> <span class="lineNum"> 177 </span> : { <span class="lineNum"> 178 </span> : AsyncSaveData <span class="lineNum"> 179 </span> : ( <span class="lineNum"> 180 </span> : data, <span class="lineNum"> 181 </span> : (taskData, cloudBlockBlob) =&gt; <span class="lineNum"> 182 </span> : { <span class="lineNum"> 183 </span> : try <span class="lineNum"> 184 </span> : { <span class="lineNum"> 185 </span> : return cloudBlockBlob.DeleteIfExists(DeleteSnapshotsOption.IncludeSnapshots); <span class="lineNum"> 186 </span> : } <span class="lineNum"> 187 </span> : catch (Exception exception) <span class="lineNum"> 188 </span> : { <span class="lineNum"> 189 </span> : Logger.LogError(&quot;There was an issue deleting data from blob storage.&quot;, exception: exception); <span class="lineNum"> 190 </span> : throw; <span class="lineNum"> 191 </span> : } <span class="lineNum"> 192 </span> : } <span class="lineNum"> 193 </span> : ); <span class="lineNum"> 194 </span> : } <span class="lineNum"> 195 </span> : <span class="lineNum"> 196 </span> : /// &lt;summary&gt; <span class="lineNum"> 197 </span> : /// Remove all contents (normally by use of a truncate operation) from the data store and persist the change. <span class="lineNum"> 198 </span> : /// &lt;/summary&gt; <span class="lineNum"> 199 </span><span class="lineCov"> 1 : public override void RemoveAll()</span> <span class="lineNum"> 200 </span> : { <span class="lineNum"> 201 </span> : foreach (Tuple&lt;CloudStorageAccount, CloudBlobContainer&gt; tuple in WritableCollection) <span class="lineNum"> 202 </span> : tuple.Item2.DeleteIfExists(); <span class="lineNum"> 203 </span> : } <span class="lineNum"> 204 </span> : <span class="lineNum"> 205 </span> : /// &lt;summary&gt; <span class="lineNum"> 206 </span> : /// Update the provided &lt;paramref name=&quot;data&quot;/&gt; in the data store and persist the change. <span class="lineNum"> 207 </span> : /// &lt;/summary&gt; <span class="lineNum"> 208 </span><span class="lineCov"> 1 : public override void Update(TData data)</span> <span class="lineNum"> 209 </span> : { <span class="lineNum"> 210 </span> : Add(data); <span class="lineNum"> 211 </span> : } <span class="lineNum"> 212 </span> : <span class="lineNum"> 213 </span> : #endregion <span class="lineNum"> 214 </span> : <span class="lineNum"> 215 </span> : /// &lt;summary&gt; <span class="lineNum"> 216 </span> : /// Creates a &lt;see cref=&quot;CloudBlobContainer&quot;/&gt; with the specified name &lt;paramref name=&quot;containerName&quot;/&gt; if it doesn't already exist. <span class="lineNum"> 217 </span> : /// &lt;/summary&gt; <span class="lineNum"> 218 </span> : /// &lt;param name=&quot;storageAccount&quot;&gt;The storage account to create the &lt;see cref=&quot;CloudBlobContainer&quot;/&gt; is&lt;/param&gt; <span class="lineNum"> 219 </span> : /// &lt;param name=&quot;containerName&quot;&gt;The name of the &lt;see cref=&quot;CloudBlobContainer&quot;/&gt;.&lt;/param&gt; <span class="lineNum"> 220 </span> : /// &lt;param name=&quot;isPublic&quot;&gt;Whether or not this &lt;see cref=&quot;CloudBlobContainer&quot;/&gt; is publicly accessible.&lt;/param&gt; <span class="lineNum"> 221 </span><span class="lineCov"> 1 : protected override CloudBlobContainer CreateSource(CloudStorageAccount storageAccount, string containerName, bool isPublic = true)</span> <span class="lineNum"> 222 </span> : { <span class="lineNum"> 223 </span> : CloudBlobContainer container = null; <span class="lineNum"> 224 </span> : AzureStorageRetryPolicy.ExecuteAction <span class="lineNum"> 225 </span> : ( <span class="lineNum"> 226 </span> : () =&gt; <span class="lineNum"> 227 </span> : { <span class="lineNum"> 228 </span> : CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient(); <span class="lineNum"> 229 </span> : container = blobClient.GetContainerReference(GetSafeSourceName(containerName)); <span class="lineNum"> 230 </span> : container.CreateIfNotExists(); <span class="lineNum"> 231 </span> : if (isPublic) <span class="lineNum"> 232 </span> : { <span class="lineNum"> 233 </span> : container.SetPermissions(new BlobContainerPermissions <span class="lineNum"> 234 </span> : { <span class="lineNum"> 235 </span> : PublicAccess = BlobContainerPublicAccessType.Blob <span class="lineNum"> 236 </span> : }); <span class="lineNum"> 237 </span> : } <span class="lineNum"> 238 </span> : } <span class="lineNum"> 239 </span> : ); <span class="lineNum"> 240 </span> : <span class="lineNum"> 241 </span> : return container; <span class="lineNum"> 242 </span> : } <span class="lineNum"> 243 </span> : <span class="lineNum"> 244 </span> : /// &lt;summary&gt; <span class="lineNum"> 245 </span> : /// Opens stream for reading from a block blob. <span class="lineNum"> 246 </span> : /// &lt;/summary&gt; <span class="lineNum"> 247 </span><span class="lineCov"> 1 : protected virtual IEnumerable&lt;Stream&gt; OpenStreamsForReading(Func&lt;CloudBlockBlob, bool&gt; predicate = null, string blobPrefix = null, string folderName = null)</span> <span class="lineNum"> 248 </span> : { <span class="lineNum"> 249 </span> : IEnumerable&lt;IListBlobItem&gt; blobs; <span class="lineNum"> 250 </span> : if (!string.IsNullOrWhiteSpace(folderName)) <span class="lineNum"> 251 </span> : { <span class="lineNum"> 252 </span> : CloudBlobDirectory container = ReadableSource.GetDirectoryReference(folderName); <span class="lineNum"> 253 </span> : blobs = container.ListBlobs(true); <span class="lineNum"> 254 </span> : } <span class="lineNum"> 255 </span> : else <span class="lineNum"> 256 </span> : { <span class="lineNum"> 257 </span> : blobs = ReadableSource.ListBlobs(blobPrefix, true); <span class="lineNum"> 258 </span> : } <span class="lineNum"> 259 </span> : IEnumerable&lt;CloudBlockBlob&gt; query = blobs <span class="lineNum"> 260 </span> : .Where(x =&gt; x is CloudBlockBlob) <span class="lineNum"> 261 </span> : .Cast&lt;CloudBlockBlob&gt;(); <span class="lineNum"> 262 </span> : if (predicate != null) <span class="lineNum"> 263 </span> : query = query.Where(predicate); <span class="lineNum"> 264 </span> : return query.Select(x =&gt; x.OpenRead()); <span class="lineNum"> 265 </span> : } <span class="lineNum"> 266 </span> : <span class="lineNum"> 267 </span> : /// &lt;summary&gt; <span class="lineNum"> 268 </span> : /// Gets a reference to a block blob in the container. <span class="lineNum"> 269 </span> : /// &lt;/summary&gt; <span class="lineNum"> 270 </span> : /// &lt;param name=&quot;container&quot;&gt;The container to get the reference from&lt;/param&gt; <span class="lineNum"> 271 </span> : /// &lt;param name=&quot;blobName&quot;&gt;The name of the blob.&lt;/param&gt; <span class="lineNum"> 272 </span> : /// &lt;returns&gt;A reference to a block blob.&lt;/returns&gt; <span class="lineNum"> 273 </span><span class="lineCov"> 1 : protected virtual CloudBlockBlob GetBlobReference(CloudBlobContainer container, string blobName)</span> <span class="lineNum"> 274 </span> : { <span class="lineNum"> 275 </span> : return container.GetBlockBlobReference(blobName); <span class="lineNum"> 276 </span> : } <span class="lineNum"> 277 </span> : <span class="lineNum"> 278 </span> : /// &lt;summary&gt; <span class="lineNum"> 279 </span> : /// Get &lt;typeparamref name=&quot;TData&quot;/&gt; by its name. <span class="lineNum"> 280 </span> : /// &lt;/summary&gt; <span class="lineNum"> 281 </span><span class="lineCov"> 1 : public virtual TData GetByName(string name)</span> <span class="lineNum"> 282 </span> : { <span class="lineNum"> 283 </span> : return OpenStreamsForReading(blobPrefix: name.Replace(&quot;\\&quot;, &quot;/&quot;)) <span class="lineNum"> 284 </span> : .Select(Deserialise) <span class="lineNum"> 285 </span> : .SingleOrDefault(); <span class="lineNum"> 286 </span> : /* <span class="lineNum"> 287 </span> : return OpenStreamsForReading(x =&gt; x.Name == name) <span class="lineNum"> 288 </span> : .Select(Deserialise) <span class="lineNum"> 289 </span> : .SingleOrDefault(); <span class="lineNum"> 290 </span> : */ <span class="lineNum"> 291 </span> : } <span class="lineNum"> 292 </span> : <span class="lineNum"> 293 </span> : /// &lt;summary&gt; <span class="lineNum"> 294 </span> : /// Get all &lt;typeparamref name=&quot;TData&quot;/&gt; items in the folder. <span class="lineNum"> 295 </span> : /// &lt;/summary&gt; <span class="lineNum"> 296 </span><span class="lineCov"> 1 : public virtual IEnumerable&lt;TData&gt; GetByFolder(string folderName)</span> <span class="lineNum"> 297 </span> : { <span class="lineNum"> 298 </span> : string folder = new Uri(string.Format(folderName.StartsWith(&quot;..\\&quot;) ? &quot;http://l/2/{0}&quot; : &quot;http://l/{0}&quot;, folderName)).AbsolutePath.Substring(1); <span class="lineNum"> 299 </span> : return OpenStreamsForReading(folderName: folder) <span class="lineNum"> 300 </span> : .Select(Deserialise); <span class="lineNum"> 301 </span> : /* <span class="lineNum"> 302 </span> : return OpenStreamsForReading(x =&gt; x.Parent.StorageUri.PrimaryUri.AbsolutePath.StartsWith(new Uri(string.Format(folderName.StartsWith(&quot;..\\&quot;) ? &quot;http://l/{0}/2/{1}&quot; : &quot;http://l/{0}/{1}&quot;, GetContainerName(), folderName)).AbsolutePath, StringComparison.InvariantCultureIgnoreCase)) <span class="lineNum"> 303 </span> : .Select(Deserialise); <span class="lineNum"> 304 </span> : */ <span class="lineNum"> 305 </span> : } <span class="lineNum"> 306 </span> : } <span class="lineNum"> 307 </span> : } </pre> </td> </tr> </table> <br> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> <tr><td class="versionInfo">Generated by: <a href="http://ltp.sourceforge.net/coverage/lcov.php" target="_parent">LCOV version 1.10</a></td></tr> </table> <br> </body> </html>
wiki/docs/2.0/html/functions_func_v.html
cdmdotnet/CQRS
<!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>CQRS.NET: Class Members - Functions</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ extensions: ["tex2jax.js"], jax: ["input/TeX","output/HTML-CSS"], }); </script><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.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="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">2.0</span> </div> <div id="projectbrief">A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</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> </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('functions_func_v.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)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="contents"> &#160; <h3><a id="index_v"></a>- v -</h3><ul> <li>ValidateSettingsHaveChanged() : <a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1AzureBus_a9fa1f5a74819100c40d8079ac6a6adb9.html#a9fa1f5a74819100c40d8079ac6a6adb9">Cqrs.Azure.ServiceBus.AzureBus&lt; TAuthenticationToken &gt;</a> , <a class="el" href="classCqrs_1_1Azure_1_1ServiceBus_1_1AzureEventHub_afe8d6f93f97ab5658b81903af555632c.html#afe8d6f93f97ab5658b81903af555632c">Cqrs.Azure.ServiceBus.AzureEventHub&lt; TAuthenticationToken &gt;</a> </li> <li>VerifyIndex() : <a class="el" href="classCqrs_1_1MongoDB_1_1Events_1_1MongoDbEventStore_a6a6f0303cd412974d90be87d281e81f5.html#a6a6f0303cd412974d90be87d281e81f5">Cqrs.MongoDB.Events.MongoDbEventStore&lt; TAuthenticationToken &gt;</a> </li> <li>VerifyIndexes() : <a class="el" href="classCqrs_1_1MongoDB_1_1Events_1_1MongoDbEventStore_a60ae02928a3ae8cb99d46f6c340b5138.html#a60ae02928a3ae8cb99d46f6c340b5138">Cqrs.MongoDB.Events.MongoDbEventStore&lt; TAuthenticationToken &gt;</a> </li> <li>VerifyIndexes&lt; TEntity &gt;() : <a class="el" href="classCqrs_1_1Mongo_1_1Factories_1_1MongoDataStoreFactory_af7db637db99701003e3d8f73a83a3485.html#af7db637db99701003e3d8f73a83a3485">Cqrs.Mongo.Factories.MongoDataStoreFactory</a> , <a class="el" href="classCqrs_1_1MongoDB_1_1Factories_1_1MongoDbDataStoreFactory_a1be5e7f0670e120c5105ff96d9ce9f82.html#a1be5e7f0670e120c5105ff96d9ce9f82">Cqrs.MongoDB.Factories.MongoDbDataStoreFactory</a> </li> <li>Visit() : <a class="el" href="interfaceCqrs_1_1Sql_1_1DataStores_1_1IExpressionTreeConverter_a24431bb6665d6d9b617f244049190655.html#a24431bb6665d6d9b617f244049190655">Cqrs.Sql.DataStores.IExpressionTreeConverter</a> , <a class="el" href="classCqrs_1_1Sql_1_1DataStores_1_1SimpleExpressionReplacer_a362c833782ea518d3b10f74898136241.html#a362c833782ea518d3b10f74898136241">Cqrs.Sql.DataStores.SimpleExpressionReplacer</a> </li> <li>VisitLambda&lt; T &gt;() : <a class="el" href="classCqrs_1_1Sql_1_1DataStores_1_1ExpressionTreeConverter_abf97079f29447cd8e0bcfab91891ccb9.html#abf97079f29447cd8e0bcfab91891ccb9">Cqrs.Sql.DataStores.ExpressionTreeConverter&lt; TA, TB &gt;</a> </li> <li>VisitMember() : <a class="el" href="classCqrs_1_1Sql_1_1DataStores_1_1ExpressionTreeConverter_ab6eca1d967e864aee4697f64ea9b23a0.html#ab6eca1d967e864aee4697f64ea9b23a0">Cqrs.Sql.DataStores.ExpressionTreeConverter&lt; TA, TB &gt;</a> </li> <li>VisitParameter() : <a class="el" href="classCqrs_1_1Sql_1_1DataStores_1_1ExpressionTreeConverter_a88eef3bef4d4ad3caab1cd2cc033873b.html#a88eef3bef4d4ad3caab1cd2cc033873b">Cqrs.Sql.DataStores.ExpressionTreeConverter&lt; TA, TB &gt;</a> </li> </ul> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
wiki/docs/4.0/html/classCqrs_1_1Ninject_1_1Azure_1_1BlobStorage_1_1Configuration_1_1TableStoragEventStoreModule_a5e2b0f48414eb9863a8457766a2c585b.html
cdmdotnet/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.16"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>CQRS.NET: Cqrs.Ninject.Azure.BlobStorage.Configuration.TableStoragEventStoreModule.RegisterFactories</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> <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://cdn.mathjax.org/mathjax/latest/MathJax.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="ChinChilla-Software-Red.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">CQRS.NET &#160;<span id="projectnumber">4.0</span> </div> <div id="projectbrief">A lightweight enterprise Function as a Service (FaaS) framework to write function based serverless and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.16 --> <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('classCqrs_1_1Ninject_1_1Azure_1_1BlobStorage_1_1Configuration_1_1TableStoragEventStoreModule_a5e2b0f48414eb9863a8457766a2c585b.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="contents"> <a id="a5e2b0f48414eb9863a8457766a2c585b"></a> <h2 class="memtitle"><span class="permalink"><a href="#a5e2b0f48414eb9863a8457766a2c585b">&#9670;&nbsp;</a></span>RegisterFactories()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual void <a class="el" href="classCqrs_1_1Ninject_1_1Azure_1_1BlobStorage_1_1Configuration_1_1TableStoragEventStoreModule.html">Cqrs.Ninject.Azure.BlobStorage.Configuration.TableStoragEventStoreModule</a>&lt; TAuthenticationToken &gt;.RegisterFactories </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Register the all factories </p> </div> </div> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceCqrs.html">Cqrs</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Ninject.html">Ninject</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Ninject_1_1Azure.html">Azure</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Ninject_1_1Azure_1_1BlobStorage.html">BlobStorage</a></li><li class="navelem"><a class="el" href="namespaceCqrs_1_1Ninject_1_1Azure_1_1BlobStorage_1_1Configuration.html">Configuration</a></li><li class="navelem"><a class="el" href="classCqrs_1_1Ninject_1_1Azure_1_1BlobStorage_1_1Configuration_1_1TableStoragEventStoreModule.html">TableStoragEventStoreModule</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.16 </li> </ul> </div> </body> </html>
wiki/docs/2.4/coverage-report/Cqrs.MongoDB/Factories/MongoDbDataStoreFactory.cs.gcov.html
Chinchilla-Software-Com/CQRS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>LCOV - doc-coverage.info - Cqrs.MongoDB/Factories/MongoDbDataStoreFactory.cs</title> <link rel="stylesheet" type="text/css" href="../../gcov.css"> </head> <body> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="title">Documentation Coverage Report</td></tr> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> <tr> <td width="100%"> <table cellpadding=1 border=0 width="100%"> <tr> <td width="10%" class="headerItem">Current view:</td> <td width="35%" class="headerValue"><a href="../../index.html">top level</a> - <a href="index.html">Cqrs.MongoDB/Factories</a> - MongoDbDataStoreFactory.cs</td> <td width="5%"></td> <td width="15%"></td> <td width="10%" class="headerCovTableHead">Hit</td> <td width="10%" class="headerCovTableHead">Total</td> <td width="15%" class="headerCovTableHead">Coverage</td> </tr> <tr> <td class="headerItem">Version:</td> <td class="headerValue">2.2</td> <td></td> <td class="headerItem">Artefacts:</td> <td class="headerCovTableEntry">4</td> <td class="headerCovTableEntry">4</td> <td class="headerCovTableEntryHi">100.0 %</td> </tr> <tr> <td class="headerItem">Date:</td> <td class="headerValue">2018-08-07 15:04:50</td> <td></td> </tr> <tr><td><img src="../../glass.png" width=3 height=3 alt=""></td></tr> </table> </td> </tr> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> </table> <table cellpadding=0 cellspacing=0 border=0> <tr> <td><br></td> </tr> <tr> <td> <pre class="sourceHeading"> Line data Source code</pre> <pre class="source"> <span class="lineNum"> 1 </span> : #region Copyright <span class="lineNum"> 2 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 3 </span> : // // &lt;copyright company=&quot;Chinchilla Software Limited&quot;&gt; <span class="lineNum"> 4 </span> : // // Copyright Chinchilla Software Limited. All rights reserved. <span class="lineNum"> 5 </span> : // // &lt;/copyright&gt; <span class="lineNum"> 6 </span> : // // ----------------------------------------------------------------------- <span class="lineNum"> 7 </span> : #endregion <span class="lineNum"> 8 </span> : <span class="lineNum"> 9 </span> : using System; <span class="lineNum"> 10 </span> : using System.Collections.Generic; <span class="lineNum"> 11 </span> : using System.Linq; <span class="lineNum"> 12 </span> : using System.Linq.Expressions; <span class="lineNum"> 13 </span> : using System.Reflection; <span class="lineNum"> 14 </span> : using cdmdotnet.Logging; <span class="lineNum"> 15 </span> : using Cqrs.DataStores; <span class="lineNum"> 16 </span> : using Cqrs.MongoDB.DataStores.Indexes; <span class="lineNum"> 17 </span> : using Cqrs.MongoDB.Serialisers; <span class="lineNum"> 18 </span> : using MongoDB.Driver; <span class="lineNum"> 19 </span> : using MongoDB.Bson.Serialization; <span class="lineNum"> 20 </span> : <span class="lineNum"> 21 </span> : namespace Cqrs.MongoDB.Factories <span class="lineNum"> 22 </span> : { <span class="lineNum"> 23 </span> : /// &lt;summary&gt; <span class="lineNum"> 24 </span> : /// A factory for obtaining &lt;see cref=&quot;IDataStore{TData}&quot;/&gt; collections from MongoDB <span class="lineNum"> 25 </span> : /// &lt;/summary&gt; <span class="lineNum"> 26 </span> : public class MongoDbDataStoreFactory <span class="lineNum"> 27 </span><span class="lineCov"> 1 : {</span> <span class="lineNum"> 28 </span> : internal static IDictionary&lt;Type, IList&lt;object&gt;&gt; IndexTypesByEntityType { get; set; } <span class="lineNum"> 29 </span> : <span class="lineNum"> 30 </span> : /// &lt;summary&gt; <span class="lineNum"> 31 </span> : /// Gets or sets the &lt;see cref=&quot;ILogger&quot;/&gt;. <span class="lineNum"> 32 </span> : /// &lt;/summary&gt; <span class="lineNum"> 33 </span> : protected ILogger Logger { get; private set; } <span class="lineNum"> 34 </span> : <span class="lineNum"> 35 </span> : /// &lt;summary&gt; <span class="lineNum"> 36 </span> : /// Gets or sets the &lt;see cref=&quot;IMongoDbDataStoreConnectionStringFactory&quot;/&gt;. <span class="lineNum"> 37 </span> : /// &lt;/summary&gt; <span class="lineNum"> 38 </span> : protected IMongoDbDataStoreConnectionStringFactory MongoDbDataStoreConnectionStringFactory { get; private set; } <span class="lineNum"> 39 </span> : <span class="lineNum"> 40 </span> : /// &lt;summary&gt; <span class="lineNum"> 41 </span> : /// Instantiates a new instance of &lt;see cref=&quot;MongoDbDataStoreFactory&quot;/&gt;. <span class="lineNum"> 42 </span> : /// &lt;/summary&gt; <span class="lineNum"> 43 </span><span class="lineCov"> 1 : public MongoDbDataStoreFactory(ILogger logger, IMongoDbDataStoreConnectionStringFactory mongoDbDataStoreConnectionStringFactory)</span> <span class="lineNum"> 44 </span> : { <span class="lineNum"> 45 </span> : Logger = logger; <span class="lineNum"> 46 </span> : MongoDbDataStoreConnectionStringFactory = mongoDbDataStoreConnectionStringFactory; <span class="lineNum"> 47 </span> : } <span class="lineNum"> 48 </span> : <span class="lineNum"> 49 </span> : static MongoDbDataStoreFactory() <span class="lineNum"> 50 </span> : { <span class="lineNum"> 51 </span> : var typeSerializer = new TypeSerialiser(); <span class="lineNum"> 52 </span> : BsonSerializer.RegisterSerializer(typeof(Type), typeSerializer); <span class="lineNum"> 53 </span> : BsonSerializer.RegisterSerializer(Type.GetType(&quot;System.RuntimeType&quot;), typeSerializer); <span class="lineNum"> 54 </span> : <span class="lineNum"> 55 </span> : IndexTypesByEntityType = new Dictionary&lt;Type, IList&lt;object&gt;&gt;(); <span class="lineNum"> 56 </span> : foreach (Assembly assembly in AppDomain.CurrentDomain.GetAssemblies()) <span class="lineNum"> 57 </span> : { <span class="lineNum"> 58 </span> : var mongoIndexTypes = assembly <span class="lineNum"> 59 </span> : .GetTypes() <span class="lineNum"> 60 </span> : .Where <span class="lineNum"> 61 </span> : ( <span class="lineNum"> 62 </span> : type =&gt; <span class="lineNum"> 63 </span> : ( <span class="lineNum"> 64 </span> : // base is NOT an abstract index <span class="lineNum"> 65 </span> : ( <span class="lineNum"> 66 </span> : type.BaseType != null &amp;&amp; <span class="lineNum"> 67 </span> : type.BaseType.IsGenericType &amp;&amp; <span class="lineNum"> 68 </span> : typeof(MongoDbIndex&lt;&gt;).IsAssignableFrom(type.BaseType.GetGenericTypeDefinition()) <span class="lineNum"> 69 </span> : ) <span class="lineNum"> 70 </span> : || <span class="lineNum"> 71 </span> : // base is an abstract index <span class="lineNum"> 72 </span> : ( <span class="lineNum"> 73 </span> : type.BaseType != null &amp;&amp; <span class="lineNum"> 74 </span> : type.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 75 </span> : type.BaseType.BaseType.IsGenericType &amp;&amp; <span class="lineNum"> 76 </span> : typeof(MongoDbIndex&lt;&gt;).IsAssignableFrom(type.BaseType.BaseType.GetGenericTypeDefinition()) <span class="lineNum"> 77 </span> : ) <span class="lineNum"> 78 </span> : || <span class="lineNum"> 79 </span> : // a deeper inheritance model <span class="lineNum"> 80 </span> : ( <span class="lineNum"> 81 </span> : type.BaseType != null &amp;&amp; <span class="lineNum"> 82 </span> : type.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 83 </span> : type.BaseType.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 84 </span> : type.BaseType.BaseType.BaseType.IsGenericType &amp;&amp; <span class="lineNum"> 85 </span> : typeof(MongoDbIndex&lt;&gt;).IsAssignableFrom(type.BaseType.BaseType.BaseType.GetGenericTypeDefinition()) <span class="lineNum"> 86 </span> : ) <span class="lineNum"> 87 </span> : || <span class="lineNum"> 88 </span> : // an even deeper inheritance model <span class="lineNum"> 89 </span> : ( <span class="lineNum"> 90 </span> : type.BaseType != null &amp;&amp; <span class="lineNum"> 91 </span> : type.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 92 </span> : type.BaseType.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 93 </span> : type.BaseType.BaseType.BaseType.BaseType != null &amp;&amp; <span class="lineNum"> 94 </span> : type.BaseType.BaseType.BaseType.BaseType.IsGenericType &amp;&amp; <span class="lineNum"> 95 </span> : typeof(MongoDbIndex&lt;&gt;).IsAssignableFrom(type.BaseType.BaseType.BaseType.BaseType.GetGenericTypeDefinition()) <span class="lineNum"> 96 </span> : ) <span class="lineNum"> 97 </span> : ) <span class="lineNum"> 98 </span> : &amp;&amp; !type.IsAbstract <span class="lineNum"> 99 </span> : ); <span class="lineNum"> 100 </span> : foreach (Type mongoIndexType in mongoIndexTypes) <span class="lineNum"> 101 </span> : { <span class="lineNum"> 102 </span> : Type genericType = mongoIndexType; <span class="lineNum"> 103 </span> : while (genericType != null &amp;&amp; !genericType.IsGenericType) <span class="lineNum"> 104 </span> : { <span class="lineNum"> 105 </span> : genericType = genericType.BaseType; <span class="lineNum"> 106 </span> : } <span class="lineNum"> 107 </span> : genericType = genericType.GetGenericArguments().Single(); <span class="lineNum"> 108 </span> : <span class="lineNum"> 109 </span> : IList&lt;object&gt; indexTypes; <span class="lineNum"> 110 </span> : if (!IndexTypesByEntityType.TryGetValue(genericType, out indexTypes)) <span class="lineNum"> 111 </span> : IndexTypesByEntityType.Add(genericType, indexTypes = new List&lt;object&gt;()); <span class="lineNum"> 112 </span> : object mongoIndex = Activator.CreateInstance(mongoIndexType, true); <span class="lineNum"> 113 </span> : indexTypes.Add(mongoIndex); <span class="lineNum"> 114 </span> : } <span class="lineNum"> 115 </span> : } <span class="lineNum"> 116 </span> : } <span class="lineNum"> 117 </span> : <span class="lineNum"> 118 </span> : /// &lt;summary&gt; <span class="lineNum"> 119 </span> : /// Get a &lt;see cref=&quot;IMongoCollection{TEntity}&quot;/&gt; <span class="lineNum"> 120 </span> : /// &lt;/summary&gt; <span class="lineNum"> 121 </span><span class="lineCov"> 1 : protected virtual IMongoCollection&lt;TEntity&gt; GetCollection&lt;TEntity&gt;()</span> <span class="lineNum"> 122 </span> : { <span class="lineNum"> 123 </span> : var mongoClient = new MongoClient(MongoDbDataStoreConnectionStringFactory.GetDataStoreConnectionString()); <span class="lineNum"> 124 </span> : IMongoDatabase mongoDatabase = mongoClient.GetDatabase(MongoDbDataStoreConnectionStringFactory.GetDataStoreDatabaseName()); <span class="lineNum"> 125 </span> : <span class="lineNum"> 126 </span> : return mongoDatabase.GetCollection&lt;TEntity&gt;(typeof(TEntity).FullName); <span class="lineNum"> 127 </span> : } <span class="lineNum"> 128 </span> : <span class="lineNum"> 129 </span> : /// &lt;summary&gt; <span class="lineNum"> 130 </span> : /// Verify all required &lt;see cref=&quot;MongoDbIndex{TEntity}&quot;/&gt; are defined and ready to go. <span class="lineNum"> 131 </span> : /// &lt;/summary&gt; <span class="lineNum"> 132 </span><span class="lineCov"> 1 : protected virtual void VerifyIndexes&lt;TEntity&gt;(IMongoCollection&lt;TEntity&gt; collection)</span> <span class="lineNum"> 133 </span> : { <span class="lineNum"> 134 </span> : Type entityType = typeof (TEntity); <span class="lineNum"> 135 </span> : if (IndexTypesByEntityType.ContainsKey(entityType)) <span class="lineNum"> 136 </span> : { <span class="lineNum"> 137 </span> : foreach (object untypedIndexType in IndexTypesByEntityType[entityType]) <span class="lineNum"> 138 </span> : { <span class="lineNum"> 139 </span> : var mongoIndex = (MongoDbIndex&lt;TEntity&gt;)untypedIndexType; <span class="lineNum"> 140 </span> : <span class="lineNum"> 141 </span> : IndexKeysDefinitionBuilder&lt;TEntity&gt; indexKeysBuilder = Builders&lt;TEntity&gt;.IndexKeys; <span class="lineNum"> 142 </span> : IndexKeysDefinition&lt;TEntity&gt; indexKey = null; <span class="lineNum"> 143 </span> : <span class="lineNum"> 144 </span> : IList&lt;Expression&lt;Func&lt;TEntity, object&gt;&gt;&gt; selectors = mongoIndex.Selectors.ToList(); <span class="lineNum"> 145 </span> : for (int i = 0; i &lt; selectors.Count; i++) <span class="lineNum"> 146 </span> : { <span class="lineNum"> 147 </span> : Expression&lt;Func&lt;TEntity, object&gt;&gt; expression = selectors[i]; <span class="lineNum"> 148 </span> : if (mongoIndex.IsAcending) <span class="lineNum"> 149 </span> : { <span class="lineNum"> 150 </span> : if (i == 0) <span class="lineNum"> 151 </span> : indexKey = indexKeysBuilder.Ascending(expression); <span class="lineNum"> 152 </span> : else <span class="lineNum"> 153 </span> : indexKey = indexKey.Ascending(expression); <span class="lineNum"> 154 </span> : } <span class="lineNum"> 155 </span> : else <span class="lineNum"> 156 </span> : { <span class="lineNum"> 157 </span> : if (i == 0) <span class="lineNum"> 158 </span> : indexKey = indexKeysBuilder.Descending(expression); <span class="lineNum"> 159 </span> : else <span class="lineNum"> 160 </span> : indexKey = indexKey.Descending(expression); <span class="lineNum"> 161 </span> : } <span class="lineNum"> 162 </span> : } <span class="lineNum"> 163 </span> : <span class="lineNum"> 164 </span> : collection.Indexes.CreateOne <span class="lineNum"> 165 </span> : ( <span class="lineNum"> 166 </span> : indexKey, <span class="lineNum"> 167 </span> : new CreateIndexOptions <span class="lineNum"> 168 </span> : { <span class="lineNum"> 169 </span> : Unique = mongoIndex.IsUnique, <span class="lineNum"> 170 </span> : Name = mongoIndex.Name <span class="lineNum"> 171 </span> : } <span class="lineNum"> 172 </span> : ); <span class="lineNum"> 173 </span> : } <span class="lineNum"> 174 </span> : } <span class="lineNum"> 175 </span> : } <span class="lineNum"> 176 </span> : } <span class="lineNum"> 177 </span> : } </pre> </td> </tr> </table> <br> <table width="100%" border=0 cellspacing=0 cellpadding=0> <tr><td class="ruler"><img src="../../glass.png" width=3 height=3 alt=""></td></tr> <tr><td class="versionInfo">Generated by: <a href="http://ltp.sourceforge.net/coverage/lcov.php" target="_parent">LCOV version 1.12</a></td></tr> </table> <br> </body> </html>
framework/view/ext_add.html
apulll/phpok
<!-- inc:head_open --> <script type="text/javascript"> function check_save() { var module = $("#module").val(); if(!module) { $.dialog.alert("操作异常!"); return false; } var title = $("#title").val(); if(!title || title == "undefined") { $.dialog.alert("名称不能为空"); return false; } //判断标识符是否被使用 var c = $("#identifier").val(); if(!c) { $.dialog.alert("标识串不能为空!"); return false; } //验证标识串是否符合要求 if(!$.str.identifier(c)) { $.dialog.alert("标识串不符合系统要求,要求仅支持:字母、数字或下划线且首字必须为字母"); return false; } //通过服务端验证数据是否存在 var url = get_url("ajax","exit","filename=field_identifier") + "&identifier="+c; var rs = json_ajax(url); if(rs.status != "ok") { $.dialog.alert(rs.content); return false; } return true; } </script> <form method="post" action="{echo admin_url('ext','create_save')}" onsubmit="return check_save();"> <input type="hidden" id="module" name="module" value="{$module}" /> <div class="table"> <div class="title"> 字段名称: <span class="note">设置一个名称,该名称在表单的头部信息显示</span></span> </div> <div class="content"> <table cellpadding="0" cellspacing="0"> <tr> <td><input type="text" id="title" name="title" class="default" value="{$rs.title}" /></td> <td><div id="title_note"></div></td> </tr> </table> </div> </div> <div class="table"> <div class="title"> 字段备注: <span class="note">仅限后台管理使用,用于查看这个字段主要做什么</span></span> </div> <div class="content"><input type="text" id="note" name="note" class="long" value="{$rs.note}" /></div> </div> <div class="table"> <div class="title"> 字段标识: <span class="note">仅限 <span class="darkblue b">字母、数字及下划线,且必须以字母开头</span></span> </div> <div class="content"> <table cellpadding="0" cellspacing="0"> <tr> <td><input type="text" id="identifier" name="identifier" class="default"{if $id} value="{$rs.identifier}" disabled{/if} /></td> <td><div id="identifier_note"></div></td> </tr> </table> </div> </div> <div class="table"> <div class="title"> 表单类型: <span class="note">请选择字段要使用的表单 <span class="red n">添加完后,将不允许再修改</span></span> </div> <div class="content"> <table> <tr> <td><select id="form_type" name="form_type" onchange="_phpok_form_opt(this.value,'form_type_ext','{$id}')"> <option value="">请选择表单</option> <!-- foreach($form_list AS $key=>$value) --> <option value="{$key}"{if $key == $rs.form_type} selected{/if}>{$value}</option> <!-- /foreach --> </select> </td> </tr> </table> </div> </div> <div id="form_type_ext" style="display:none"></div> <div class="table"> <div class="title"> <span class="edit"> 表单样式(CSS): <span class="note">不能超过250个字符,不熟悉CSS,请查手册:<a href="http://www.phpok.com" target="_blank">phpok.com</a></span> </span> </div> <div class="content"><input type="text" id="form_style" name="form_style" class="long" value="{$rs.form_style}" /></div> </div> <div class="table"> <div class="title"> 表单默认值: <span class="note">设置表单默认值,如果表单中有多个值,请用英文逗号隔开</span> </div> <div class="content"><input type="text" id="content" name="content" class="long" value="{$rs.content}" /></div> </div> <div class="table"> <div class="title"> 接收数据格式化: <span class="note">设置文本常见格式,如HTML,整型,浮点型等</span> </div> <div class="content"> <select name="format" id="format"> <!-- foreach($format_list AS $key=>$value) --> <option value="{$key}"{if $rs.format == $key} selected{/if}>{$value}</option> <!-- /foreach --> </select> </div> </div> <div class="table"> <div class="title"> 排序: <span class="note">值越小越往前靠,最小值为0,最大值为255</span> </div> <div class="content"><input type="text" id="taxis" name="taxis" class="short" value="{$rs.taxis ? $rs.taxis : 255}" /></div> </div> <div class="table"> <div class="content"> <br /> <input type="submit" value="提 交" class="submit" /> <br /> </div> </div> </form> <!-- inc:foot_open -->
phpdoc/elements/_CreateMath.inc.html
dika46/yiiphpdocx
<?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"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs for page CreateMath.inc</title> <link rel="stylesheet" href="../media/stylesheet.css" /> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/> </head> <body> <div class="page-body"> <h2 class="file-name">/CreateMath.inc</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-classes">Classes</a> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Add a math eq</p> <ul class="tags"> <li><span class="field">version:</span> 1.0</li> <li><span class="field">copyright:</span> Copyright (c) 2009-2013 Narcea Producciones Multimedia S.L. (http://www.2mdc.com)</li> <li><span class="field">link:</span> <a href="http://www.phpdocx.com">http://www.phpdocx.com</a></li> <li><span class="field">since:</span> File available since Release 1.0</li> <li><span class="field">license:</span> <a href="http://www.phpdocx.com/wp-content/themes/lightword/pro_license.php">http://www.phpdocx.com/wp-content/themes/lightword/pro_license.php</a></li> </ul> </div> </div> <a name="sec-classes"></a> <div class="info-box"> <div class="info-box-title">Classes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <span class="disabled">Classes</span> | <a href="#sec-includes">Includes</a> </div> <div class="info-box-body"> <table cellpadding="2" cellspacing="0" class="class-table"> <tr> <th class="class-table-header">Class</th> <th class="class-table-header">Description</th> </tr> <tr> <td style="padding-right: 2em; vertical-align: top"> <a href="../elements/CreateMath.html">CreateMath</a> </td> <td> Add a math eq. Using OOMML or MathML </td> </tr> </table> </div> </div> <a name="sec-includes"></a> <div class="info-box"> <div class="info-box-title">Includes</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-classes">Classes</a> | <span class="disabled">Includes</span> </div> <div class="info-box-body"> <a name="_dirname(__FILE__)_/CreateElement_inc"><!-- --></a> <div class="evenrow"> <div> <span class="include-title"> <span class="include-type">include_once</span> (<span class="include-name">dirname(__FILE__).'/CreateElement.inc'</span>) (line <span class="line-number">15</span>) </span> </div> <!-- ========== Info from phpDoc block ========= --> </div> </div> </div> <p class="notes" id="credit"> Documentation generated on Tue, 21 May 2013 17:19:50 +0200 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.4</a> </p> </div></body> </html>
3rdparty/lucene143/docs/api/org/apache/lucene/search/PhraseQuery.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2) on Mon Nov 29 15:13:19 CET 2004 --> <TITLE> PhraseQuery (Lucene 1.4.3 API) </TITLE> <META NAME="keywords" CONTENT="org.apache.lucene.search.PhraseQuery class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="PhraseQuery (Lucene 1.4.3 API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PhraseQuery.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&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/lucene/search/PhrasePrefixQuery.html" title="class in org.apache.lucene.search"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/lucene/search/PrefixQuery.html" title="class in org.apache.lucene.search"><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="PhraseQuery.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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&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;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.lucene.search</FONT> <BR> Class PhraseQuery</H2> <PRE> <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">java.lang.Object</A> <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">org.apache.lucene.search.Query</A> <IMG SRC="../../../../resources/inherit.gif" ALT="extended by"><B>org.apache.lucene.search.PhraseQuery</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Cloneable.html" title="class or interface in java.lang">Cloneable</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/io/Serializable.html" title="class or interface in java.io">Serializable</A></DD> </DL> <HR> <DL> <DT>public class <B>PhraseQuery</B><DT>extends <A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">Query</A></DL> <P> A Query that matches documents containing a particular sequence of terms. This may be combined with other terms with a <A HREF="../../../../org/apache/lucene/search/BooleanQuery.html" title="class in org.apache.lucene.search"><CODE>BooleanQuery</CODE></A>. <P> <P> <DL> <DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.apache.lucene.search.PhraseQuery">Serialized Form</A></DL> <HR> <P> <!-- ======== NESTED CLASS SUMMARY ======== --> <!-- =========== FIELD SUMMARY =========== --> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <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/lucene/search/PhraseQuery.html#PhraseQuery()">PhraseQuery</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Constructs an empty phrase query.</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <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>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#add(org.apache.lucene.index.Term)">add</A></B>(<A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>&nbsp;term)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a term to the end of the query phrase. </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/lucene/search/PhraseQuery.html#add(org.apache.lucene.index.Term, int)">add</A></B>(<A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>&nbsp;term, int&nbsp;position)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a term to the end of the query phrase. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>protected &nbsp;<A HREF="../../../../org/apache/lucene/search/Weight.html" title="interface in org.apache.lucene.search">Weight</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#createWeight(org.apache.lucene.search.Searcher)">createWeight</A></B>(<A HREF="../../../../org/apache/lucene/search/Searcher.html" title="class in org.apache.lucene.search">Searcher</A>&nbsp;searcher)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Expert: Constructs an appropriate Weight implementation for this query. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;boolean</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#equals(java.lang.Object)">equals</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>&nbsp;o)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns true iff <code>o</code> is equal to this.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#getPositions()">getPositions</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the relative positions of terms in this phrase.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#getSlop()">getSlop</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the slop. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#getTerms()">getTerms</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the set of terms in this phrase.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;int</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#hashCode()">hashCode</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a hash code value for this object.</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/lucene/search/PhraseQuery.html#setSlop(int)">setSlop</A></B>(int&nbsp;s)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sets the number of other words permitted between words in query phrase. </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A></CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/apache/lucene/search/PhraseQuery.html#toString(java.lang.String)">toString</A></B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;f)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Prints a user-readable version of this query.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.apache.lucene.search.Query"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class org.apache.lucene.search.<A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">Query</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../org/apache/lucene/search/Query.html#clone()">clone</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#combine(org.apache.lucene.search.Query[])">combine</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#getBoost()">getBoost</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#getSimilarity(org.apache.lucene.search.Searcher)">getSimilarity</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#mergeBooleanQueries(org.apache.lucene.search.Query[])">mergeBooleanQueries</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#rewrite(org.apache.lucene.index.IndexReader)">rewrite</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#setBoost(float)">setBoost</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#toString()">toString</A>, <A HREF="../../../../org/apache/lucene/search/Query.html#weight(org.apache.lucene.search.Searcher)">weight</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TD><B>Methods inherited from class java.lang.<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A></B></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#finalize()" title="class or interface in java.lang">finalize</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#getClass()" title="class or interface in java.lang">getClass</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notify()" title="class or interface in java.lang">notify</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#notifyAll()" title="class or interface in java.lang">notifyAll</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait()" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long)" title="class or interface in java.lang">wait</A>, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html#wait(long, int)" title="class or interface in java.lang">wait</A></CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ FIELD DETAIL =========== --> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TD> </TR> </TABLE> <A NAME="PhraseQuery()"><!-- --></A><H3> PhraseQuery</H3> <PRE> public <B>PhraseQuery</B>()</PRE> <DL> <DD>Constructs an empty phrase query. <P> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TD COLSPAN=1><FONT SIZE="+2"> <B>Method Detail</B></FONT></TD> </TR> </TABLE> <A NAME="setSlop(int)"><!-- --></A><H3> setSlop</H3> <PRE> public void <B>setSlop</B>(int&nbsp;s)</PRE> <DL> <DD>Sets the number of other words permitted between words in query phrase. If zero, then this is an exact phrase search. For larger values this works like a <code>WITHIN</code> or <code>NEAR</code> operator. <p>The slop is in fact an edit-distance, where the units correspond to moves of terms in the query phrase out of position. For example, to switch the order of two words requires two moves (the first move places the words atop one another), so to permit re-orderings of phrases, the slop must be at least two. <p>More exact matches are scored higher than sloppier matches, thus search results are sorted by exactness. <p>The slop is zero by default, requiring exact matches. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getSlop()"><!-- --></A><H3> getSlop</H3> <PRE> public int <B>getSlop</B>()</PRE> <DL> <DD>Returns the slop. See setSlop(). <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="add(org.apache.lucene.index.Term)"><!-- --></A><H3> add</H3> <PRE> public void <B>add</B>(<A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>&nbsp;term)</PRE> <DL> <DD>Adds a term to the end of the query phrase. The relative position of the term is the one immediately after the last term added. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="add(org.apache.lucene.index.Term, int)"><!-- --></A><H3> add</H3> <PRE> public void <B>add</B>(<A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>&nbsp;term, int&nbsp;position)</PRE> <DL> <DD>Adds a term to the end of the query phrase. The relative position of the term within the phrase is specified explicitly. This allows e.g. phrases with more than one term at the same position or phrases with gaps (e.g. in connection with stopwords). <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>term</CODE> - <DD><CODE>position</CODE> - </DL> </DD> </DL> <HR> <A NAME="getTerms()"><!-- --></A><H3> getTerms</H3> <PRE> public <A HREF="../../../../org/apache/lucene/index/Term.html" title="class in org.apache.lucene.index">Term</A>[] <B>getTerms</B>()</PRE> <DL> <DD>Returns the set of terms in this phrase. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getPositions()"><!-- --></A><H3> getPositions</H3> <PRE> public int[] <B>getPositions</B>()</PRE> <DL> <DD>Returns the relative positions of terms in this phrase. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="createWeight(org.apache.lucene.search.Searcher)"><!-- --></A><H3> createWeight</H3> <PRE> protected <A HREF="../../../../org/apache/lucene/search/Weight.html" title="interface in org.apache.lucene.search">Weight</A> <B>createWeight</B>(<A HREF="../../../../org/apache/lucene/search/Searcher.html" title="class in org.apache.lucene.search">Searcher</A>&nbsp;searcher)</PRE> <DL> <DD><B>Description copied from class: <CODE><A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">Query</A></CODE></B></DD> <DD>Expert: Constructs an appropriate Weight implementation for this query. <p>Only implemented by primitive queries, which re-write to themselves. <P> <DD><DL> <DT><B>Overrides:</B><DD><CODE><A HREF="../../../../org/apache/lucene/search/Query.html#createWeight(org.apache.lucene.search.Searcher)">createWeight</A></CODE> in class <CODE><A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">Query</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="toString(java.lang.String)"><!-- --></A><H3> toString</H3> <PRE> public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>toString</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A>&nbsp;f)</PRE> <DL> <DD>Prints a user-readable version of this query. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../org/apache/lucene/search/Query.html#toString(java.lang.String)">toString</A></CODE> in class <CODE><A HREF="../../../../org/apache/lucene/search/Query.html" title="class in org.apache.lucene.search">Query</A></CODE></DL> </DD> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="equals(java.lang.Object)"><!-- --></A><H3> equals</H3> <PRE> public boolean <B>equals</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A>&nbsp;o)</PRE> <DL> <DD>Returns true iff <code>o</code> is equal to this. <P> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="hashCode()"><!-- --></A><H3> hashCode</H3> <PRE> public int <B>hashCode</B>()</PRE> <DL> <DD>Returns a hash code value for this object. <P> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/PhraseQuery.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&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/lucene/search/PhrasePrefixQuery.html" title="class in org.apache.lucene.search"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/apache/lucene/search/PrefixQuery.html" title="class in org.apache.lucene.search"><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="PhraseQuery.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> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&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;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2000-2004 Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
docs/namespace-JRA.Factories.html
BertschiAG/JoomlaRestAPI
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Namespace JRA\Factories | JRA, PHP cAPI interface</title> <link rel="stylesheet" href="resources/bootstrap.min.css?973e37a8502921d56bc02bb55321f45b072b6f71"> <link rel="stylesheet" href="resources/style.css?70c1d062672daa3f906b72e4f5d03d4bc5c4174d"> </head> <body> <nav id="navigation" class="navbar navbar-default navbar-fixed-top"> <div class="container-fluid"> <div class="navbar-header"> <a href="index.html" class="navbar-brand">JRA, PHP cAPI interface</a> </div> <div class="collapse navbar-collapse"> <form id="search" class="navbar-form navbar-left" role="search"> <input type="hidden" name="cx" value=""> <input type="hidden" name="ie" value="UTF-8"> <div class="form-group"> <input type="text" name="q" class="search-query form-control" placeholder="Search"> </div> </form> <ul class="nav navbar-nav"> <li class="active"> <span>Namespace</span> </li> <li> <span>Class</span> </li> <li class="divider-vertical"></li> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> </ul> </div> </div> </nav> <div id="left"> <div id="menu"> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active"> <a href="namespace-JRA.html"> JRA<span></span> </a> <ul> <li> <a href="namespace-JRA.Abstracts.html"> Abstracts </a> </li> <li> <a href="namespace-JRA.Commands.html"> Commands<span></span> </a> <ul> <li> <a href="namespace-JRA.Commands.Invokers.html"> Invokers </a> </li> <li> <a href="namespace-JRA.Commands.Methods.html"> Methods<span></span> </a> <ul> <li> <a href="namespace-JRA.Commands.Methods.Content.html"> Content </a> </li> <li> <a href="namespace-JRA.Commands.Methods.Token.html"> Token </a> </li> <li> <a href="namespace-JRA.Commands.Methods.User.html"> User </a> </li> </ul></li> <li> <a href="namespace-JRA.Commands.Routes.html"> Routes </a> </li> </ul></li> <li> <a href="namespace-JRA.ComposerHandler.html"> ComposerHandler </a> </li> <li> <a href="namespace-JRA.Config.html"> Config<span></span> </a> <ul> <li> <a href="namespace-JRA.Config.Helper.html"> Helper </a> </li> </ul></li> <li> <a href="namespace-JRA.Exceptions.html"> Exceptions </a> </li> <li> <a href="namespace-JRA.Facades.html"> Facades </a> </li> <li class="active"> <a href="namespace-JRA.Factories.html"> Factories </a> </li> <li> <a href="namespace-JRA.Interfaces.html"> Interfaces </a> </li> <li> <a href="namespace-JRA.Objects.html"> Objects<span></span> </a> <ul> <li> <a href="namespace-JRA.Objects.Response.html"> Response<span></span> </a> <ul> <li> <a href="namespace-JRA.Objects.Response.Data.html"> Data </a> </li> </ul></li></ul></li> <li> <a href="namespace-JRA.Responsibilities.html"> Responsibilities<span></span> </a> <ul> <li> <a href="namespace-JRA.Responsibilities.Handlers.html"> Handlers </a> </li> <li> <a href="namespace-JRA.Responsibilities.Responsible.html"> Responsible<span></span> </a> <ul> <li> <a href="namespace-JRA.Responsibilities.Responsible.Login.html"> Login </a> </li> <li> <a href="namespace-JRA.Responsibilities.Responsible.Logout.html"> Logout </a> </li> </ul></li></ul></li></ul></li> </ul> </div> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-JRA.Factories.ChainFactory.html">ChainFactory</a></li> <li><a href="class-JRA.Factories.CommandFactory.html">CommandFactory</a></li> <li><a href="class-JRA.Factories.ConfigFactory.html">ConfigFactory</a></li> <li><a href="class-JRA.Factories.GuzzleFactory.html">GuzzleFactory</a></li> <li><a href="class-JRA.Factories.InternalFactory.html">InternalFactory</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <div id="content" class="namespace"> <h1>Namespace <a href="namespace-JRA.html">JRA</a>\Factories</h1> <div class="panel panel-default"> <div class="panel-heading"><h2>Classes summary</h2></div> <table class="summary table table-bordered table-striped" id="classes"> <tr> <td class="name"><a href="class-JRA.Factories.ChainFactory.html">ChainFactory</a></td> <td></td> </tr> <tr> <td class="name"><a href="class-JRA.Factories.CommandFactory.html">CommandFactory</a></td> <td></td> </tr> <tr> <td class="name"><a href="class-JRA.Factories.ConfigFactory.html">ConfigFactory</a></td> <td></td> </tr> <tr> <td class="name"><a href="class-JRA.Factories.GuzzleFactory.html">GuzzleFactory</a></td> <td></td> </tr> <tr> <td class="name"><a href="class-JRA.Factories.InternalFactory.html">InternalFactory</a></td> <td></td> </tr> </table> </div> </div> </div> <div id="footer"> JRA, PHP cAPI interface API documentation generated by <a href="http://apigen.org">ApiGen</a> </div> </div> <script src="resources/combined.js?d83f34af6e800743e9dc68796d4b307be3d83642"></script> <script src="elementlist.js?4575cc9e88731dfbccd2c55d737f50552beffb05"></script> </body> </html>
3rdparty/lucene143/docs/api/org/apache/lucene/search/spans/class-use/SpanNearQuery.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2) on Mon Nov 29 15:13:18 CET 2004 --> <TITLE> Uses of Class org.apache.lucene.search.spans.SpanNearQuery (Lucene 1.4.3 API) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="Uses of Class org.apache.lucene.search.spans.SpanNearQuery (Lucene 1.4.3 API)"; } </SCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/lucene/search/spans/SpanNearQuery.html" title="class in org.apache.lucene.search.spans"><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" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SpanNearQuery.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.apache.lucene.search.spans.SpanNearQuery</B></H2> </CENTER> No usage of org.apache.lucene.search.spans.SpanNearQuery <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../org/apache/lucene/search/spans/SpanNearQuery.html" title="class in org.apache.lucene.search.spans"><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" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SpanNearQuery.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &copy; 2000-2004 Apache Software Foundation. All Rights Reserved. </BODY> </HTML>
3rdparty/axis121/docs/apiDocs/org/apache/axis/package-frame.html
simeshev/parabuild-ci
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.4.2_05) on Tue Jun 14 22:27:34 EDT 2005 --> <TITLE> org.apache.axis (Axis API) </TITLE> <META NAME="keywords" CONTENT="org.apache.axis package"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../org/apache/axis/package-summary.html" target="classFrame">org.apache.axis</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Interfaces</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="AxisServiceConfig.html" title="interface in org.apache.axis" target="classFrame"><I>AxisServiceConfig</I></A> <BR> <A HREF="Chain.html" title="interface in org.apache.axis" target="classFrame"><I>Chain</I></A> <BR> <A HREF="EngineConfiguration.html" title="interface in org.apache.axis" target="classFrame"><I>EngineConfiguration</I></A> <BR> <A HREF="EngineConfigurationFactory.html" title="interface in org.apache.axis" target="classFrame"><I>EngineConfigurationFactory</I></A> <BR> <A HREF="Handler.html" title="interface in org.apache.axis" target="classFrame"><I>Handler</I></A> <BR> <A HREF="HandlerIterationStrategy.html" title="interface in org.apache.axis" target="classFrame"><I>HandlerIterationStrategy</I></A> <BR> <A HREF="Part.html" title="interface in org.apache.axis" target="classFrame"><I>Part</I></A> <BR> <A HREF="TargetedChain.html" title="interface in org.apache.axis" target="classFrame"><I>TargetedChain</I></A> <BR> <A HREF="WSDDEngineConfiguration.html" title="interface in org.apache.axis" target="classFrame"><I>WSDDEngineConfiguration</I></A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="AxisEngine.html" title="class in org.apache.axis" target="classFrame">AxisEngine</A> <BR> <A HREF="AxisProperties.html" title="class in org.apache.axis" target="classFrame">AxisProperties</A> <BR> <A HREF="AxisServiceConfigImpl.html" title="class in org.apache.axis" target="classFrame">AxisServiceConfigImpl</A> <BR> <A HREF="Constants.html" title="class in org.apache.axis" target="classFrame">Constants</A> <BR> <A HREF="FaultableHandler.html" title="class in org.apache.axis" target="classFrame">FaultableHandler</A> <BR> <A HREF="Message.html" title="class in org.apache.axis" target="classFrame">Message</A> <BR> <A HREF="MessageContext.html" title="class in org.apache.axis" target="classFrame">MessageContext</A> <BR> <A HREF="SimpleChain.html" title="class in org.apache.axis" target="classFrame">SimpleChain</A> <BR> <A HREF="SimpleTargetedChain.html" title="class in org.apache.axis" target="classFrame">SimpleTargetedChain</A> <BR> <A HREF="SOAPPart.html" title="class in org.apache.axis" target="classFrame">SOAPPart</A> <BR> <A HREF="Version.html" title="class in org.apache.axis" target="classFrame">Version</A></FONT></TD> </TR> </TABLE> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Exceptions</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="AxisFault.html" title="class in org.apache.axis" target="classFrame">AxisFault</A> <BR> <A HREF="ConfigurationException.html" title="class in org.apache.axis" target="classFrame">ConfigurationException</A> <BR> <A HREF="InternalException.html" title="class in org.apache.axis" target="classFrame">InternalException</A> <BR> <A HREF="NoEndPointException.html" title="class in org.apache.axis" target="classFrame">NoEndPointException</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>