code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
<!--Copyright (C) 1988-2005 by the Institute of Global Environment and Society (IGES). See file COPYRIGHT for more information.--> <html> <head> <title>GrADS Function: amean</title> </head> <body text="#000000" bgcolor="e0f0ff"> <h2><b>amean()</b></h2> <p> <code>amean (<i>expr, xdim1, xdim2, ydim1, ydim2</i>)</code> <p> This function is the same as <a href="gradfuncaave.html"><code>aave</code></a> in all respects except one: area means <b><i>are not</i></b> weighted by latitude. Means <b><i>are</i></b> weighted by grid interval to account for non-linear grid spacing. <p> <h3>Usage Notes</h3> <p> See the <a href="gradfuncaave.html"><code>aave</code></a> reference page for details. <p> <h3>Examples</h3> </body> </html>
bucricket/projectMASviirs
source/bin/Resources/Documentation/gradfuncamean.html
HTML
bsd-3-clause
736
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>LiteSQL: Upcasting and Virtual Methods</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.5.6 --> <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><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> </ul> </div> </div> <div class="contents"> <h1><a class="anchor" name="usage_upcasting">Upcasting and Virtual Methods </a></h1>In order to support virtual methods a Persistent object must be upcasted to correct type before calling virtual method.<p> upcast will return an auto_ptr which holds a pointer to an object of correct type.<p> upcastCopy is similar to upcast. It does not select an object of correct type from database but just constructs it in memory. Note that constructed object does not have all of its fields. This method is suitable when virtual method to be called does not need any special fields.<p> An example of upcast: <div class="fragment"><pre class="fragment">Playable pl = select&lt;Playable&gt;(db).one(); pl.upcast()-&gt;play(); </pre></div><p> An another example of upcast: <div class="fragment"><pre class="fragment">Playable pl = select&lt;Playable&gt;(db).one(); auto_ptr&lt;Playable&gt; uc = pl.upcast(); cout &lt;&lt; <span class="stringliteral">"Playing "</span> &lt;&lt; uc-&gt;name &lt;&lt; endl; uc-&gt;play(); </pre></div><p> An example of upcastCopy: <div class="fragment"><pre class="fragment">Playable pl = select&lt;Playable&gt;(db).one(); pl.upcastCopy()-&gt;makeLogEntry(log); </pre></div> </div> <hr /> <a href="http://sourceforge.net"><img src="http://sflogo.sourceforge.net/sflogo.php?group_id=113304&amp;type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a>
psychobob666/litesql
docs/html/usage_upcasting.html
HTML
bsd-3-clause
2,190
<!DOCTYPE HTML> <html> <head> <title>LjsKeyboardInfo Class Reference</title> <meta http-equiv="Content-Type" content="application/xhtml+xml;charset=utf-8" /> <meta id="xcode-display" name="xcode-display" content="render"/> <meta name="viewport" content="width=550" /> <link rel="stylesheet" type="text/css" href="../css/styles.css" /> <meta name="generator" content="appledoc 2.0.5 (build 789)" /> </head> <body> <header id="top_header"> <div id="title" role="banner"> <h1 class="hideInXcode">LjsKeyboardInfo Class Reference</h1> </div> <ul id="headerButtons" role="toolbar"> <li id="toc_button"> <button aria-label="Show Table of Contents" role="checkbox" class="open" id="table_of_contents"><span class="disclosure"></span>Table of Contents</button> </li> <li id="jumpto_button" role="navigation"> <select id="jumpTo"> <option value="top">Jump To&#133;</option> <option value="overview">Overview</option> </select> </li> </ul> </header> <nav id="tocContainer" class="isShowingTOC"> <ul id="toc" role="tree"> <li role="treeitem"><span class="nodisclosure"></span><span class="sectionName"><a href="#overview">Overview</a></span></li> </ul> </nav> <article> <div id="contents" class="isShowingTOC" role="main"> <a title="LjsKeyboardInfo Class Reference" name="top"></a> <div class="main-navigation navigation-top"> <ul> <li><a href="../index.html">Index</a></li> <li><a href="../hierarchy.html">Hierarchy</a></li> </ul> </div> <div id="header"> <div class="section-header"> <h1 class="title title-header">LjsKeyboardInfo Class Reference</h1> </div> </div> <div id="container"> <div class="section section-specification"><table cellspacing="0"><tbody> <tr> <td class="specification-title">Inherits from</td> <td class="specification-value">NSObject</td> </tr><tr> <td class="specification-title">Declared in</td> <td class="specification-value">LjsKeyboardInfo.h<br />LjsKeyboardInfo.m</td> </tr> </tbody></table></div> <div class="section section-overview"> <a title="Overview" name="overview"></a> <h2 class="subtitle subtitle-overview">Overview</h2> <p>Documentation</p> </div> </div> <div class="main-navigation navigation-bottom"> <ul> <li><a href="../index.html">Index</a></li> <li><a href="../hierarchy.html">Hierarchy</a></li> </ul> </div> <div id="footer"> <hr /> <div class="footer-copyright"> <p><span class="copyright">&copy; 2012 Little Joy Software. All rights reserved. (Last updated: 2012-06-20)</span><br /> <span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.0.5 (build 789)</a>.</span></p> </div> </div> </div> </article> <script type="text/javascript"> function jumpToChange() { window.location.hash = this.options[this.selectedIndex].value; } function toggleTOC() { var contents = document.getElementById('contents'); var tocContainer = document.getElementById('tocContainer'); if (this.getAttribute('class') == 'open') { this.setAttribute('class', ''); contents.setAttribute('class', ''); tocContainer.setAttribute('class', ''); window.name = "hideTOC"; } else { this.setAttribute('class', 'open'); contents.setAttribute('class', 'isShowingTOC'); tocContainer.setAttribute('class', 'isShowingTOC'); window.name = ""; } return false; } function toggleTOCEntryChildren(e) { e.stopPropagation(); var currentClass = this.getAttribute('class'); if (currentClass == 'children') { this.setAttribute('class', 'children open'); } else if (currentClass == 'children open') { this.setAttribute('class', 'children'); } return false; } function tocEntryClick(e) { e.stopPropagation(); return true; } function init() { var selectElement = document.getElementById('jumpTo'); selectElement.addEventListener('change', jumpToChange, false); var tocButton = document.getElementById('table_of_contents'); tocButton.addEventListener('click', toggleTOC, false); var taskTreeItem = document.getElementById('task_treeitem'); if (taskTreeItem.getElementsByTagName('li').length > 0) { taskTreeItem.setAttribute('class', 'children'); taskTreeItem.firstChild.setAttribute('class', 'disclosure'); } var tocList = document.getElementById('toc'); var tocEntries = tocList.getElementsByTagName('li'); for (var i = 0; i < tocEntries.length; i++) { tocEntries[i].addEventListener('click', toggleTOCEntryChildren, false); } var tocLinks = tocList.getElementsByTagName('a'); for (var i = 0; i < tocLinks.length; i++) { tocLinks[i].addEventListener('click', tocEntryClick, false); } if (window.name == "hideTOC") { toggleTOC.call(tocButton); } } window.onload = init; </script> </body> </html>
jmoody/LJS
Documentation-iOS/LJS-iOS/html/Classes/LjsKeyboardInfo.html
HTML
bsd-3-clause
5,264
$def with (session, usuarios, msg=None) <script type="text/javascript" src="/static/js/picnet.table.filter.min.js"></script> $var username: $session.username.nombre1.lower().capitalize() $session.username.apellido1.lower().capitalize() <h2>Lista de Usuarios</h2> <table id='tabla1'> <thead> <tr><th style="border-left:1px solid white;">Usuario</th><th>Cliente</th><th filter-type="ddl">Tipo</th> <th filter='false'>Creaci&oacute;n</th><th filter='false'>Caduca</th> <th style="border-right:1px solid white" filter-type="ddl">Activo</th><th style="border-right:1px solid white" filter='false'>Acciones</th></tr> </thead> <tbody> $for i in usuarios.list(): <tr><td>$i.usuario</td><td>$i.cliente</td><td>$i.descrip</td> <td>$i.fecha_crea.strftime("%F %H:%M:%S")</td><td>$i.fecha_caduca.strftime("%F %H:%M:%S")</td><td>$i.activo</td> <td style="text-align:center;"><a href="/admin/editusers?id=$i.id&amp;name=$i.usuario" class="edit"></a> <a data-userid='$i.id' data-username="$i.usuario" href="/admin/deleteuser" class="delete"></a></td></tr> </tbody> </table> <div id="dialogdelete" title="Eliminar Usuarios" class="hide"> <h3>Advertencia</h3> <p>Esta acci&oacute;n borrar&aacute; permanentemente el usuario <span style="font-weight:bold;color:#2180CE;"></span> del sistema.</p> <p>¿Est&aacute; seguro que desea realizar esta acci&oacute;n?</p> </div> <p>$msg</p> <script> jQuery(document).ready(function(){ jQuery('#dialogdelete').dialog({ autoOpen: false, width: 500, modal: true, buttons: { "Cancelar": function() { $$(this).dialog("close"); }, "Eliminar": function() { var id=$$(this).data('data-userid'); var name=$$(this).data('data-username'); var url=$$(this).data('data-url'); href = url+'?id='+id window.location.href = href; $$(this).dialog("close"); } } }); jQuery('.delete').click(function(){ var id=$$(this).attr('data-userid'); var name=$$(this).attr('data-username'); var url=$$(this).attr('href'); $$('#dialogdelete').data('data-userid', id); $$('#dialogdelete').data('data-username', name); $$('#dialogdelete').data('data-url', url); $$('#dialogdelete').find('span').text(name); $$('#dialogdelete').dialog('open'); return false; }); jQuery('#tabla1').tableFilter(); jQuery(':input').addClass('input'); jQuery(':input').css('padding', '1px');; }); </script>
jolth/CowFleet
templates/admin/listuser.html
HTML
bsd-3-clause
2,870
<!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"> <TITLE>HOL/Auth/README</TITLE> </HEAD> <BODY> <H1>Auth--The Inductive Approach to Verifying Security Protocols</H1> <P>Cryptographic protocols are of major importance, especially with the growing use of the Internet. This directory demonstrates the ``inductive method'' of protocol verification, which is described in <A HREF="http://www.cl.cam.ac.uk/users/lcp/papers/protocols.html">various papers</A>. The operational semantics of protocol participants is defined inductively. <P>This directory contains proofs concerning <UL> <LI>three versions of the Otway-Rees protocol <LI>the Needham-Schroeder shared-key protocol <LI>the Needham-Schroeder public-key protocol (original and with Lowe's modification) <LI>two versions of Kerberos: the simplified form published in the BAN paper and also the full protocol (Kerberos IV) <LI>three versions of the Yahalom protocol, including a bad one that illustrates the purpose of the Oops rule <LI>a novel recursive authentication protocol <LI>the Internet protocol TLS <LI>The certified e-mail protocol of Abadi et al. </UL> <P>Frederic Blanqui has contributed a theory of guardedness, which is demonstrated by proofs of some roving agent protocols. <ADDRESS> <A HREF="http://www.cl.cam.ac.uk/users/lcp/">Larry Paulson</A>, <A HREF="mailto:lcp@cl.cam.ac.uk">lcp@cl.cam.ac.uk</A> </ADDRESS> </BODY> </HTML>
MerelyAPseudonym/isabelle
src/HOL/Auth/README.html
HTML
bsd-3-clause
1,563
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html lang="en-us" xml:lang="en-us"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <meta name="copyright" content="(C) Copyright 2005" /> <meta name="DC.rights.owner" content="(C) Copyright 2005" /> <meta content="public" name="security" /> <meta content="index,follow" name="Robots" /> <meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' /> <meta content="reference" name="DC.Type" /> <meta name="DC.Title" content="derby.drda.traceDirectory property" /> <meta content="derby.drda.traceDirectory property" name="DC.subject" /> <meta content="derby.drda.traceDirectory property" name="keywords" /> <meta scheme="URI" name="DC.Relation" content="tadminconfigsettingnetwrokserverproperties.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdahost.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdakeepalive.html" /> <meta scheme="URI" name="DC.Relation" content="radminconfigdb2jdrdalogconnections.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdamaxthreads.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdaminthreads.html" /> <meta scheme="URI" name="DC.Relation" content="radminconfigportnumber.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdasecmechanism.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdasslmode.html" /> <meta scheme="URI" name="DC.Relation" content="radminconfigstartnetworkserver.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdaStreamOutBufferSize.html" /> <meta scheme="URI" name="DC.Relation" content="radmindrdatimeslice.html" /> <meta scheme="URI" name="DC.Relation" content="radminconfig.html" /> <meta content="XHTML" name="DC.Format" /> <meta content="radminconfigdb2jdrdatracedirectory" name="DC.Identifier" /> <meta content="en-us" name="DC.Language" /> <link href="commonltr.css" type="text/css" rel="stylesheet" /> <title>derby.drda.traceDirectory property</title> </head> <body id="radminconfigdb2jdrdatracedirectory"><a name="radminconfigdb2jdrdatracedirectory"><!-- --></a> <h1 class="topictitle1">derby.drda.traceDirectory property</h1> <div> <div class="section">Indicates the location of tracing files.</div> <div class="section"><h4 class="sectiontitle">Security Considerations</h4> <div class="p"> The Network Server will attempt to create the trace directory (and any parent directories) if they do not exist. This will require that the Java security policy for <samp class="codeph">derbynet.jar</samp> permits verification of the existence of the named trace directory and all necessary parent directories. For each directory created, the policy must allow <pre> permission java.io.FilePermission "&lt;<em>directory</em>&gt;", "read,write"; </pre> and for the trace directory itself, the policy must allow <pre> permission java.io.FilePermission "&lt;<em>tracedirectory</em>&gt;${/}-", "write"; </pre> </div> <p> See <a href="tadminnetservcustom.html#tadminnetservcustom">Customizing the Network Server's security policy</a> for information about customizing the Network Server's security policy. </p> </div> <div class="section"><h4 class="sectiontitle">Syntax</h4> <pre>derby.drda.traceDirectory=<em>tracefiledirectory</em></pre> </div> <div class="section"><h4 class="sectiontitle">Default</h4> <p>If the derby.system.home property has been set, it is the default. Otherwise, the default is the current directory.</p> </div> <div class="example"><h4 class="sectiontitle">Example</h4> <pre><strong>derby.drda.traceDirectory=c:/<span>Derby</span>/trace</strong></pre> </div> <div class="section"><h4 class="sectiontitle">Static or dynamic</h4> <p>Dynamic. System values can be changed by using commands or the servlet interface after the Network Server has been started.</p> </div> </div> <div> <div class="familylinks"> <div class="parentlink"><strong>Parent topic:</strong> <a href="tadminconfigsettingnetwrokserverproperties.html" title="">Setting Network Server properties</a></div> </div> <div class="relref"><strong>Related reference</strong><br /> <div><a href="radmindrdahost.html" title="">derby.drda.host property</a></div> <div><a href="radmindrdakeepalive.html" title="">derby.drda.keepAlive property</a></div> <div><a href="radminconfigdb2jdrdalogconnections.html" title="">derby.drda.logConnections property</a></div> <div><a href="radmindrdamaxthreads.html" title="">derby.drda.maxThreads property</a></div> <div><a href="radmindrdaminthreads.html" title="">derby.drda.minThreads property</a></div> <div><a href="radminconfigportnumber.html" title="">derby.drda.portNumber property</a></div> <div><a href="radmindrdasecmechanism.html" title="">derby.drda.securityMechanism property</a></div> <div><a href="radmindrdasslmode.html" title="">derby.drda.sslMode property</a></div> <div><a href="radminconfigstartnetworkserver.html" title="">derby.drda.startNetworkServer property</a></div> <div><a href="radmindrdaStreamOutBufferSize.html" title="">derby.drda.streamOutBufferSize property</a></div> <div><a href="radmindrdatimeslice.html" title="">derby.drda.timeSlice property</a></div> <div><a href="radminconfig.html" title="">derby.drda.traceAll property</a></div> </div> </div> </body> </html>
armoredsoftware/protocol
measurer/hotspot-measurer/jdk1.6.0_45/db/docs/html/adminguide/radminconfigdb2jdrdatracedirectory.html
HTML
bsd-3-clause
6,561
<!-- Licensed under a BSD license. See license.html for license --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes"> <title>Three.js - Load .OBJ ?</title> <style> html, body { margin: 0; height: 100%; } #c { width: 100%; height: 100%; display: block; } </style> </head> <body> <canvas id="c"></canvas> </body> <script type="module"> import * as THREE from '../../build/three.module.js'; import {OrbitControls} from '../../examples/jsm/controls/OrbitControls.js'; import {OBJLoader} from '../../examples/jsm/loaders/OBJLoader.js'; function main() { const canvas = document.querySelector('#c'); const renderer = new THREE.WebGLRenderer({canvas}); const fov = 45; const aspect = 2; // the canvas default const near = 0.1; const far = 100; const camera = new THREE.PerspectiveCamera(fov, aspect, near, far); camera.position.set(0, 10, 20); const controls = new OrbitControls(camera, canvas); controls.target.set(0, 5, 0); controls.update(); const scene = new THREE.Scene(); scene.background = new THREE.Color('black'); { const planeSize = 40; const loader = new THREE.TextureLoader(); const texture = loader.load('resources/images/checker.png'); texture.wrapS = THREE.RepeatWrapping; texture.wrapT = THREE.RepeatWrapping; texture.magFilter = THREE.NearestFilter; const repeats = planeSize / 2; texture.repeat.set(repeats, repeats); const planeGeo = new THREE.PlaneGeometry(planeSize, planeSize); const planeMat = new THREE.MeshPhongMaterial({ map: texture, side: THREE.DoubleSide, }); const mesh = new THREE.Mesh(planeGeo, planeMat); mesh.rotation.x = Math.PI * -.5; scene.add(mesh); } { const skyColor = 0xB1E1FF; // light blue const groundColor = 0xB97A20; // brownish orange const intensity = 1; const light = new THREE.HemisphereLight(skyColor, groundColor, intensity); scene.add(light); } { const color = 0xFFFFFF; const intensity = 1; const light = new THREE.DirectionalLight(color, intensity); light.position.set(0, 10, 0); light.target.position.set(-5, 0, 0); scene.add(light); scene.add(light.target); } { const objLoader = new OBJLoader(); objLoader.load('resources/models/windmill/windmill.obj', (root) => { scene.add(root); }); } function resizeRendererToDisplaySize(renderer) { const canvas = renderer.domElement; const width = canvas.clientWidth; const height = canvas.clientHeight; const needResize = canvas.width !== width || canvas.height !== height; if (needResize) { renderer.setSize(width, height, false); } return needResize; } function render() { if (resizeRendererToDisplaySize(renderer)) { const canvas = renderer.domElement; camera.aspect = canvas.clientWidth / canvas.clientHeight; camera.updateProjectionMatrix(); } renderer.render(scene, camera); requestAnimationFrame(render); } requestAnimationFrame(render); } main(); </script> </html>
looeee/three.js
manual/examples/load-obj-no-materials.html
HTML
mit
3,220
<div> Opcionalmente, especifique o endere&#231;o HTTP da instala&#231;&#227;o do Jenkins, tal como <code>http://seuhost.seudominio/jenkins/</code>. Este valor &#233; usado para por links nos e-mails gerados pelo Jenkins. <p> Isto &#233; necess&#225;rio porque o Jenkins n&#227;o pode resolver tal URL de dentre dele mesmo. </div>
v1v/jenkins
core/src/main/resources/jenkins/model/JenkinsLocationConfiguration/help-url_pt_BR.html
HTML
mit
343
<!DOCTYPE HTML> <html class="no-js"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Fellowships, Journalism, and the Open Web | Knight-Mozilla OpenNews</title> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="http://planet.opennews.org/rss" /> <meta name="Description" content="Knight-Mozilla OpenNews is about creating a diverse ecosystem to help journalism thrive on the open web. It's about producing open source code that solves real problems in news. It's about supporting communities of developers and journalists as they make, learn, and invent together. And it's about deploying fellows&mdash;and code&mdash;into news organizations to collaborate in new ways."> <meta name="google-site-verification" content="Oihs9U6lTT_2lL8pr9cerGk5aIZqOjDES4sZ4Lg3sYI" /> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"> <meta name="viewport" content="initial-scale=1.0, width=device-width"> <link rel="icon" href="/favicon.ico" /> <link rel="alternate" type="application/rss+xml" title="Knight-Mozilla OpenNews" href="http://www.opennews.org/feed.xml"> <!-- stylesheet calls --> <link href='//fonts.googleapis.com/css?family=Open+Sans:300,400' rel='stylesheet' type='text/css'> <link rel="stylesheet" media="screen,projection,tv" href="/media/css/normalise.css" /> <link rel="stylesheet" media="screen,projection,tv" href="/media/css/devices.css" /> <link rel="stylesheet" href="/media/css/snap.css" /> <link rel="stylesheet" media="all and (min-width:30em)" href="/media/css/desktop.css" /> <link rel="stylesheet" href="//mozorg.cdn.mozilla.net/media/css/tabzilla-min.css" /> <!-- endstylesheets --> <!-- script calls --> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="//www.google.com/jsapi"></script> <script src="//mozorg.cdn.mozilla.net/tabzilla/tabzilla.js"></script> <!--[if lt IE 9]> <script type="text/javascript" src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> <link rel="stylesheet" media="screen" href="media/css/desktop.css" /> <![endif]--> <!-- end scripts --> </head> <body class=" "> <!-- removing the snap drawer for now <div class="snap-drawers"> <div class="snap-drawer snap-drawer-left"> <div id="navblock"> <ul> <li><a href="/what" class="what">what we do</a></li> <li><a href="/who" class="who">who we are</a></li> <li><a href="/getinvolved" class="involved">get involved</a></li> <li><a href="/blog" class="blog">blog</a></li> </ul> </div> </div> </div> <div id="snap-content-wrapper" class="snap-content overthrow"> --> <script type="text/javascript"> document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/, ''); </script> <div id="moztab"> <a href="https://www.mozilla.org/" id="tabzilla">mozilla</a> </div> <div id="kissanenav"> <div id="navblock"> <ul> <li><a href="/what" class="what">what we do</a></li> <li><a href="/who" class="who">who we are</a></li> <li><a href="/getinvolved" class="involved">get involved</a></li> <li><a href="/blog" class="blog">blog</a></li> </ul> </div> </div> <header> <!-- <div class="toggle-navigation hamburger">menu</div>--> <!--SRCCON LOGO HERE--> <!--<a href="http://www.srccon.org"><img alt="SRCCON wheee!" src = "/media/img/srccon_flag.png" class="srccon"></a>--> <!--END SRCCON LOGO --> <h1> <a href="/"><img alt="Knight-Mozilla Open News" src="/media/img/ONlogotype_wide2.png" width="470" /></a> </h1> </header> <article> <div class="main_col"> <h2>Fellowships, Journalism, and the Open Web</h2> <h3>by Dan Sinker</h3> <div class="article_body"> <p>When we talk about the Knight-Mozilla Fellowships, and the work we do at OpenNews, we often talk about the influence the values of the open web have on journalism. <a href="/what/fellowships/apply/">As we gear up for the final push to find our 2016 fellows (deadline August 21!)</a>, we wanted to dive a little further into what we&rsquo;re talking about. And so, as we often do, we asked folks from the news-dev community to think out loud about how journalism and the web work together.</p> <p><a href="http://bbcnewslabs.co.uk/2015/07/22/why-journalism-matters-the-web/">Our pals at the BBC News Lab get historical when they say</a>:</p> <blockquote>The act of doing journalism has always been tied to the medium it’s delivered on. Whether it’s print, radio, broadcast television, the internet, podcasts on demand, and so on, the media can leverage the special features of whatever platform its message is distributed on to do better storytelling. To deliver the news in ways that can reach further globally or locally, to contextualize and explain complex or amusing topics."</blockquote> <p>That&rsquo;s why the BBC is experimenting with structured journalism, because &ldquo;having a more granular structure underneath our narratives, whether broadcast television, radio or online, affords us greater flexibility to try out new views, whatever the platform, so that we can leverage the features particular to each, even beyond the web.&rdquo;</p> <p>The web empowers experimentation, but it also allows you to &ldquo;meet people where they are,&rdquo; the BBC News Lab team writes, &ldquo;which requires experimenting without being bogged down with the legacy generations of past formats.&rdquo;</p> <p><a href="http://blogs.lanacion.com.ar/projects/data/how-community-and-open-source-code-drive-lndata/">Meeting people where they are has transformed how the La Nacion Data team approaches their data journalism</a>. Through their VozData project, they have worked &ldquo;together with more than 1,100 volunteers from universities and NGOs,&rdquo; to process and transform &ldquo;more than 10,000 PDF&rdquo; documents of Argentinian Senate expenses. By collaborating with the public and using open-source tools, the La Nacion team were able to have a real impact: &ldquo;these datasets produced front page stories and even judicial investigations of public servants.&rdquo;</p> <p>La Nacion sees the potential for open web technologies to &ldquo;surprise journalism with incredible discoveries in large volumes of data, platforms of entity extraction, machine learning, interactive visualizations that cross all platforms and intelligent ways of solving problems.&rdquo;</p> <p>And those are exactly the types of fascinating, important challenges that <a href="http://opennews.org/what/fellowships/community/">Knight-Mozilla Fellows</a> have tackled for the past four years, at La Nacion and beyond. Over the next two weeks, we&rsquo;ll hear from current and former fellows about the types of projects they&rsquo;ve worked on and the ways they have contributed to expanding our understanding of what journalism on the web can be.</p> <p>We see potential to do more of that work too, in you. <a href="/what/fellowships/apply/">If you&rsquo;re interested in experimenting at the intersection of journalism and the open web, you should apply now to become a 2016 Knight-Mozilla Fellow.</a> Fellows spend 10 months following their passion, writing code, and making &ldquo;incredible discoveries&rdquo; about the potential of journalism that is truly of the web.</p> </div> <small>posted <abbr class="" title="2015-07-28 11:30:00 -0700">July 28, 2015</abbr> | posted in <a href="/blog/tags/fellowship">fellowship</a>&nbsp; </small> <h3>comments</h3> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'opennewsblog'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> </div> <div class="sidebox"> <div id="colleft"> <!-- <div id="minifellows"> <h3>Meet the 2016 Fellows </h3> <ul> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-christine.jpg" alt="CHRISTINE ZHANG"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-dan.jpg" alt="DAN IAIR ZAJDBAND"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-lisa.jpg" alt="LISA CHARLOTTE ROST"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-martin.jpg" alt="MARTIN SHELTON"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-nicky.jpg" alt="NICKY CASE"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-pietro.jpg" alt="PIETRO PASSARELLI"></li> <li><img src="/media/img/fellows/2016-fellows/headshots-60/2016fellows-60-sandhya.jpg" alt="SANDHYA KAMBHAMPATI"></li> <li><img src="/media/img/fellows/2015-fellows/logo-60.png" alt="" style="border: 1px solid white"></li> </ul> <p>Our 2016 Knight-Mozilla Fellows will work from seven newsrooms around the world. <a href="/what/fellowships/2016meet">Find out more.</a></p> </div> --> <div id="sidenav"> <h3>Learn More About...</h3> <div id="navlist"> <h3 class="nav"><a href="/what/conferences">Conferences</a></h3> <ul> <li id="srccon"><a href="/what/conferences/srccon">SRCCON</a></li> <li id="mozfest"><a href="/what/conferences/mozfest">MozFest</a></li> </ul> <h3 class="nav"><a href="/what/community">Community Support</a></h3> <ul> <li id="source"><a href="/what/community/source">Source</a> <li id="convenings"><a href="/what/community/convenings">Code Convenings</a> <li id="calls"><a href="/what/community/calls">Community Calls</a> <li id="sponsorships"><a href="/what/community/eventsupport">Event Support</a> <li id="scholarships"><a href="/what/community/scholarships">Travel Scholarships</a> </ul> <h3 class="nav"><a href="/what/fellowships">Fellowships</a></h3> </div> </div> </div> <div id="colright"> <div id="newsbox"> <h3>The latest from the OpenNews team</h3> <p>Read all our news in our <a class="feed_url" href="http://planet.opennews.org/rss">OpenNews feed</a></p> </div> <div id="sourcebox"> <h3>The latest from Source</h3> <p>Read more at <a href="http://source.opennews.org">Source</a> or subscribe to the <a class="feed_url" href="http://source.opennews.org/en-US/rss/">Source feed</a></p> </div> </div> </div> </article> <footer> <div class="partner"> <div id="partnerblock"> <h3>OpenNews is funded by</h3> <a href="http://www.knightfoundation.org/"><img alt="Knight Foundation" src="/media/img/partners/knight.png" height="50" width="300" /></a> </div> </div> </section> <section class="external"> <div class="busta"> <div class="col box opennews"> <h2>Connect with OpenNews</h2> <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> <ul> <li>Get the latest by <a href="http://planet.mozillaopennews.org/rss20.xml">subscribing to our news feed</a></li> <li>Connect on Twitter <a href="http://twitter.com/opennews" class="twitter-follow-button" data-show-count="false">@opennews</a></li> <li>Join our <a href="http://eepurl.com/bMESvX">mailing lists</a></li> <li><a href="mailto:info@opennews.org">Contact us</a></li> <li><a rel="license" href="http://creativecommons.org/licenses/by/3.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by/3.0/88x31.png" /></a></li> </ul> </div> <div class="col box knight"> <h2>About Knight</h2> <p>Knight Foundation supports transformational ideas that promote quality journalism, advance media innovation, engage communities and foster the arts. The foundation believes that democracy thrives when people and communities are informed and engaged. <p>For more, visit <a href="http://www.knightfoundation.org" target="_blank">knightfoundation.org</a> </p> </div> <div class="col box mozilla"> <h2>About Mozilla</h2> <p>Mozilla is a global non-profit dedicated to putting you in control of your online experience and shaping the future of the web for the public good&mdash;by creating great software and fostering communities that build and grow the open web. <p><a href="https://sendto.mozilla.org/page/s/sign-up-for-mozilla">Sign up to hear more</a>, and, if you're willing, please<a href="https://sendto.mozilla.org/page/contribute/join-mozilla"> join Mozilla.</a> </div> </div> </footer> <script type="text/javascript" src="/media/js/overthrow.js"></script> <script type="text/javascript" src="/media/js/snap.js"></script> <script type="text/javascript" src="/media/js/app.js"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery("abbr.timeago").timeago(); }); </script> </body> </html>
ryanpitts/mozilla-opennews
_site/blog/fellowships-open-web/index.html
HTML
mit
13,975
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!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="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Extending Phing - - Phing User Guide</title> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1" /> <link rel="home" href="index.html" title="Phing User Guide" /> <link rel="up" href="index.html" title="Phing User Guide" /> <link rel="prev" href="ch05s08s11.html" title="available" /> <link rel="next" href="ch06s01.html" title="Extension Possibilities" /> <meta name="Section-title" content="Extending Phing" /><script type="text/javascript"> //The id for tree cookie var treeCookieId = "treeview-45301"; var language = "en"; var w = new Object(); //Localization txt_filesfound = 'Results'; txt_enter_at_least_1_char = "You must enter at least one character."; txt_browser_not_supported = "JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site."; txt_please_wait = "Please wait. Search in progress..."; txt_results_for = "Results for: "; </script><link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="stylesheet" type="text/css" href="common/css/positioning.css" /> <link rel="stylesheet" type="text/css" href="common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css" /> <link rel="stylesheet" type="text/css" href="common/jquery/treeview/jquery.treeview.css" /><style type="text/css"> #noscript{ font-weight:bold; background-color: #55AA55; font-weight: bold; height: 25spx; z-index: 3000; top:0px; width:100%; position: relative; border-bottom: solid 5px black; text-align:center; color: white; } input { margin-bottom: 5px; margin-top: 2px; } .folder { display: block; height: 22px; padding-left: 20px; background: transparent url(common/jquery/treeview/images/folder.gif) 0 0px no-repeat; } span.contentsTab { padding-left: 20px; background: url(common/images/toc-icon.png) no-repeat 0 center; } span.searchTab { padding-left: 20px; background: url(common/images/search-icon.png) no-repeat 0 center; } /* Overide jquery treeview's defaults for ul. */ .treeview ul { background-color: transparent; margin-top: 4px; } #webhelp-currentid { background-color: #D8D8D8 !important; } .treeview .hover { color: black; } .filetree li span a { text-decoration: none; font-size: 12px; color: #517291; } /* Override jquery-ui's default css customizations. These are supposed to take precedence over those.*/ .ui-widget-content { border: 0px; background: none; color: none; } .ui-widget-header { color: #e9e8e9; border-left: 1px solid #e5e5e5; border-right: 1px solid #e5e5e5; border-bottom: 1px solid #bbc4c5; border-top: 4px solid #e5e5e5; border: medium none; background: #F4F4F4; /* old browsers */ background: -moz-linear-gradient(top, #F4F4F4 0%, #E6E4E5 100%); /* firefox */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F4F4F4), color-stop(100%,#E6E4E5)); /* webkit */ font-weight: none; } .ui-widget-header a { color: none; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: none; background: none; font-weight: none; color: none; } .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: black; text-decoration: none; } .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: none; background: none; font-weight: none; color: none; } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: none; background: none; font-weight: none; color: none; } .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: black; text-decoration: none; background: #C6C6C6; /* old browsers */ background: -moz-linear-gradient(top, #C6C6C6 0%, #D8D8D8 100%); /* firefox */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#C6C6C6), color-stop(100%,#D8D8D8)); /* webkit */ -webkit-border-radius:15px; -moz-border-radius:10px; border: 1px solid #f1f1f1; } .ui-corner-all { border-radius: 0 0 0 0; } .ui-tabs { padding: .2em;} .ui-tabs .ui-tabs-nav li { top: 0px; margin: -2px 0 1px; text-transform: uppercase; font-size: 10.5px;} .ui-tabs .ui-tabs-nav li a { padding: .25em 2em .25em 1em; margin: .5em; text-shadow: 0 1px 0 rgba(255,255,255,.5); } /** * Basic Layout Theme * * This theme uses the default layout class-names for all classes * Add any 'custom class-names', from options: paneClass, resizerClass, togglerClass */ .ui-layout-pane { /* all 'panes' */ background: #FFF; border: 1px solid #BBB; padding: 05x; overflow: auto; } .ui-layout-resizer { /* all 'resizer-bars' */ background: #DDD; top:100px } .ui-layout-toggler { /* all 'toggler-buttons' */ background: #AAA; } </style> <!--[if IE]> <link rel="stylesheet" type="text/css" href="../common/css/ie.css"/> <![endif]--><script type="text/javascript" src="common/browserDetect.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery-1.7.2.min.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery.ui.all.js"> <!----></script><script type="text/javascript" src="common/jquery/jquery.cookie.js"> <!----></script><script type="text/javascript" src="common/jquery/treeview/jquery.treeview.min.js"> <!----></script><script type="text/javascript" src="common/jquery/layout/jquery.layout.js"> <!----></script><script type="text/javascript" src="search/l10n.js"> <!----></script><script type="text/javascript" src="search/htmlFileInfoList.js"> <!----></script><script type="text/javascript" src="search/nwSearchFnt.js"> <!----></script><script type="text/javascript" src="search/stemmers/en_stemmer.js"> <!--//make this scalable to other languages as well.--></script><script type="text/javascript" src="search/index-1.js"> <!----></script><script type="text/javascript" src="search/index-2.js"> <!----></script><script type="text/javascript" src="search/index-3.js"> <!----></script></head> <body> <noscript> <div id="noscript">JavaScript is disabled on your browser. Please enable JavaScript to enjoy all the features of this site.</div> </noscript> <div id="header"><a href="index.html"><img style="margin-right: 2px; height: 59px; padding-right: 25px; padding-top: 8px" align="right" src="common/images/logo.png" alt="DocBook Documentation" /></a><h1>Phing User Guide<br />Extending Phing </h1> <div id="navheader"> <!----> <table class="navLinks"> <tr> <td><a id="showHideButton" href="#" onclick="myLayout.toggle('west')" class="pointLeft" tabindex="5" title="Hide TOC tree">Sidebar </a></td> <td><a accesskey="p" class="navLinkPrevious" tabindex="5" href="ch05s08s11.html">Prev</a>  | <a accesskey="n" class="navLinkNext" tabindex="5" href="ch06s01.html">Next</a></td> </tr> </table> </div> </div> <div id="content"> <!----> <div class="chapter"> <div xmlns="" class="titlepage"> <div> <div> <h1 xmlns="http://www.w3.org/1999/xhtml" class="title"><a id="ch.extending"></a>Extending Phing </h1> </div> </div> </div> <div class="toc"> <p><strong>Table of Contents</strong></p> <dl class="toc"> <dt><span class="sect1"><a href="ch06s01.html"> Extension Possibilities </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="sect.ext.tasks.html"> Tasks </a></span></dt> <dt><span class="sect2"><a href="sect.ext.types.html"> Types </a></span></dt> <dt><span class="sect2"><a href="sect.ext.mappers.html"> Mappers </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s02.html"> Source Layout </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s02s01.html"> Files And Directories </a></span></dt> <dt><span class="sect2"><a href="ch06s02s02.html"> File Naming Conventions </a></span></dt> <dt><span class="sect2"><a href="ch06s02s03.html"> Coding Standards </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s03.html"> System Initialization </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s03s01.html"> Wrapper Scripts </a></span></dt> <dt><span class="sect2"><a href="ch06s03s02.html"> The Main Application (phing.php) </a></span></dt> <dt><span class="sect2"><a href="ch06s03s03.html"> The Phing Class </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s04.html"> System Services </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s04s01.html"> The Exception system </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s05.html"> Build Lifecycle </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s05s01.html"> How Phing Parses Buildfiles </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s06.html"> Writing Tasks </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s06s01.html"> Creating A Task </a></span></dt> <dt><span class="sect2"><a href="ch06s06s02.html"> Using the Task </a></span></dt> <dt><span class="sect2"><a href="ch06s06s03.html">Source Discussion </a></span></dt> <dt><span class="sect2"><a href="ch06s06s04.html">Task Structure </a></span></dt> <dt><span class="sect2"><a href="ch06s06s05.html">Includes </a></span></dt> <dt><span class="sect2"><a href="ch06s06s06.html"> Class Declaration </a></span></dt> <dt><span class="sect2"><a href="ch06s06s07.html"> Class Properties </a></span></dt> <dt><span class="sect2"><a href="ch06s06s08.html"> The Constructor </a></span></dt> <dt><span class="sect2"><a href="ch06s06s09.html"> Setter Methods </a></span></dt> <dt><span class="sect2"><a href="ch06s06s10.html"> Creator Methods </a></span></dt> <dt><span class="sect2"><a href="ch06s06s11.html"> <code class="literal">init()</code> Method </a></span></dt> <dt><span class="sect2"><a href="ch06s06s12.html"> <code class="literal">main()</code> Method </a></span></dt> <dt><span class="sect2"><a href="ch06s06s13.html"> Arbitrary Methods </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s07.html"> Writing Types </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s07s01.html">Creating a DataType</a></span></dt> <dt><span class="sect2"><a href="ch06s07s02.html"> Using the DataType </a></span></dt> <dt><span class="sect2"><a href="ch06s07s03.html"> Source Discussion </a></span></dt> </dl> </dd> <dt><span class="sect1"><a href="ch06s08.html"> Writing Mappers </a></span></dt> <dd> <dl> <dt><span class="sect2"><a href="ch06s08s01.html"> Creating a Mapper </a></span></dt> <dt><span class="sect2"><a href="ch06s08s02.html"> Using the Mapper </a></span></dt> </dl> </dd> </dl> </div> <p>Phing was designed to be flexible and easily extensible. Phing's existing core and optional tasks do provide a great deal of flexibility in processing files, performing database actions, and even getting user feedback during a build process. In some cases, however, the existing tasks just won't suffice and because of Phing's open, modular architecture adding exactly the functionality you need is often quite trivial. </p> <p>In this chapter we'll look primarily at how to create your own tasks, since that is probably the most useful way to extend Phing. We'll also give some more information about Phing's design and inner workings. </p> </div><script type="text/javascript" src="common/main.js"> <!----></script><script type="text/javascript" src="common/splitterInit.js"> <!----></script><div class="navfooter"> <hr /> <table width="100%" summary="Navigation footer"> <tr> <td width="40%" align="left"><a accesskey="p" href="ch05s08s11.html">Prev</a>  </td> <td width="20%" align="center"> </td> <td width="40%" align="right"> <a accesskey="n" href="ch06s01.html">Next</a></td> </tr> <tr> <td width="40%" align="left" valign="top"> </td> <td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td> <td width="40%" align="right" valign="top"> </td> </tr> </table> </div> </div> <div id="sidebar"> <div id="leftnavigation" style="padding-top:3px;"> <div id="tabs"> <ul> <li><a href="#treeDiv" style="outline:0;" tabindex="1"><span class="contentsTab">Contents</span></a></li> <li><a href="#searchDiv" style="outline:0;" tabindex="1" onclick="doSearch()"><span class="searchTab">Search</span></a></li> </ul> <div id="treeDiv"><img src="common/images/loading.gif" alt="loading table of contents..." id="tocLoading" style="display:block;" /><div id="ulTreeDiv" style="display:none"> <ul id="tree" class="filetree"> <li><span class="file"><a href="pr01.html" tabindex="1">Preface</a></span></li> <li><span class="file"><a href="ch.about.html" tabindex="1">About this book</a></span><ul> <li><span class="file"><a href="ch01s01.html" tabindex="1">Authors</a></span></li> <li><span class="file"><a href="ch01s02.html" tabindex="1">Copyright</a></span></li> <li><span class="file"><a href="ch01s03.html" tabindex="1">License</a></span></li> <li><span class="file"><a href="ch01s04.html" tabindex="1">DocBook</a></span><ul> <li><span class="file"><a href="ch01s04s01.html" tabindex="1">Building the documentation</a></span></li> <li><span class="file"><a href="ch01s04s02.html" tabindex="1">Template for new tasks</a></span></li> <li><span class="file"><a href="ch01s04s03.html" tabindex="1">Customization of the look &amp; feel of the rendered outputs</a></span></li> <li><span class="file"><a href="sec.docbookelements.html" tabindex="1">DocBook v5 elements used in the manual and their meaning</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.introduction.html" tabindex="1">Introduction</a></span><ul> <li><span class="file"><a href="ch02s01.html" tabindex="1">What Phing Is</a></span></li> <li><span class="file"><a href="ch02s02.html" tabindex="1">Phing &amp; Binarycloud: History</a></span></li> <li><span class="file"><a href="ch02s03.html" tabindex="1">How Phing Works</a></span></li> <li><span class="file"><a href="ch02s04.html" tabindex="1">Cool, so how can I help?</a></span><ul> <li><span class="file"><a href="ch02s04s01.html" tabindex="1"> Participating in the development </a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.settingup.html" tabindex="1">Setting-up Phing</a></span><ul> <li><span class="file"><a href="ch03s01.html" tabindex="1"> System Requirements </a></span><ul> <li><span class="file"><a href="ch03s01s01.html" tabindex="1"> Operating Systems </a></span></li> <li><span class="file"><a href="ch03s01s02.html" tabindex="1"> Software Dependencies </a></span></li> </ul> </li> <li><span class="file"><a href="ch03s02.html" tabindex="1"> Obtaining Phing </a></span><ul> <li><span class="file"><a href="ch03s02s01.html" tabindex="1"> Distribution Files </a></span></li> <li><span class="file"><a href="ch03s02s02.html" tabindex="1">Getting the latest source from Phing Git repository</a></span></li> </ul> </li> <li><span class="file"><a href="ch03s03.html" tabindex="1"> PEAR Install </a></span></li> <li><span class="file"><a href="ch03s04.html" tabindex="1"> Non-PEAR Install </a></span><ul> <li><span class="file"><a href="ch03s04s01.html" tabindex="1"> Unix </a></span></li> <li><span class="file"><a href="ch03s04s02.html" tabindex="1"> Windows </a></span></li> <li><span class="file"><a href="ch03s04s03.html" tabindex="1">Advanced</a></span></li> </ul> </li> <li><span class="file"><a href="ch03s05.html" tabindex="1"> Calling Phing </a></span><ul> <li><span class="file"><a href="ch03s05s01.html" tabindex="1"> Command Line </a></span></li> <li><span class="file"><a href="ch03s05s02.html" tabindex="1">Supported command line arguments</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch.gettingstarted.html" tabindex="1">Getting started</a></span><ul> <li><span class="file"><a href="ch04s01.html" tabindex="1"> XML And Phing </a></span></li> <li><span class="file"><a href="ch04s02.html" tabindex="1"> Writing A Simple Buildfile </a></span><ul> <li><span class="file"><a href="ch04s02s01.html" tabindex="1"> Project Element </a></span></li> <li><span class="file"><a href="ch04s02s02.html" tabindex="1"> Target Element </a></span><ul> <li><span class="file"><a href="ch04s02s02s01.html" tabindex="1">Target attributes</a></span></li> </ul> </li> <li><span class="file"><a href="ch04s02s03.html" tabindex="1"> Task Elements </a></span></li> <li><span class="file"><a href="ch04s02s04.html" tabindex="1"> Property Element </a></span><ul> <li><span class="file"><a href="ch04s02s04s01.html" tabindex="1">Built-in Properties</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch04s03.html" tabindex="1"> More Complex Buildfile </a></span><ul> <li><span class="file"><a href="ch04s03s01.html" tabindex="1">Handling source dependencies</a></span></li> </ul> </li> <li><span class="file"><a href="ch04s04.html" tabindex="1"> Relax NG Grammar </a></span></li> </ul> </li> <li><span class="file"><a href="ch.projcomponents.html" tabindex="1">Project components</a></span><ul> <li><span class="file"><a href="ch05s01.html" tabindex="1"> Projects </a></span></li> <li><span class="file"><a href="ch05s02.html" tabindex="1"> Version </a></span></li> <li><span class="file"><a href="ch05s03.html" tabindex="1"> Project Components in General </a></span></li> <li><span class="file"><a href="ch05s04.html" tabindex="1"> Targets </a></span></li> <li><span class="file"><a href="ch05s05.html" tabindex="1"> Tasks </a></span></li> <li><span class="file"><a href="sec.types.html" tabindex="1"> Types </a></span><ul> <li><span class="file"><a href="ch05s06s01.html" tabindex="1"> Basics </a></span></li> <li><span class="file"><a href="ch05s06s02.html" tabindex="1"> Referencing Types </a></span></li> </ul> </li> <li><span class="file"><a href="ch05s07.html" tabindex="1"> Basic Types </a></span><ul> <li><span class="file"><a href="ch05s07s01.html" tabindex="1"> FileSet </a></span></li> <li><span class="file"><a href="ch05s07s02.html" tabindex="1"> FileList </a></span></li> <li><span class="file"><a href="ch05s07s03.html" tabindex="1"> FilterChains and Filters </a></span></li> <li><span class="file"><a href="ch05s07s04.html" tabindex="1"> File Mappers </a></span></li> </ul> </li> <li><span class="file"><a href="ch05s08.html" tabindex="1"> Conditions </a></span><ul> <li><span class="file"><a href="ch05s08s01.html" tabindex="1">not</a></span></li> <li><span class="file"><a href="ch05s08s02.html" tabindex="1">and</a></span></li> <li><span class="file"><a href="ch05s08s03.html" tabindex="1">or</a></span></li> <li><span class="file"><a href="ch05s08s04.html" tabindex="1">os</a></span></li> <li><span class="file"><a href="ch05s08s05.html" tabindex="1">equals</a></span></li> <li><span class="file"><a href="ch05s08s06.html" tabindex="1">isset</a></span></li> <li><span class="file"><a href="ch05s08s07.html" tabindex="1">contains</a></span></li> <li><span class="file"><a href="ch05s08s08.html" tabindex="1">istrue</a></span></li> <li><span class="file"><a href="ch05s08s09.html" tabindex="1">isfalse</a></span></li> <li><span class="file"><a href="ch05s08s10.html" tabindex="1">referenceexists</a></span></li> <li><span class="file"><a href="ch05s08s11.html" tabindex="1">available</a></span></li> </ul> </li> </ul> </li> <li id="webhelp-currentid"><span class="file"><a href="ch.extending.html" tabindex="1">Extending Phing</a></span><ul> <li><span class="file"><a href="ch06s01.html" tabindex="1"> Extension Possibilities </a></span><ul> <li><span class="file"><a href="sect.ext.tasks.html" tabindex="1"> Tasks </a></span></li> <li><span class="file"><a href="sect.ext.types.html" tabindex="1"> Types </a></span></li> <li><span class="file"><a href="sect.ext.mappers.html" tabindex="1"> Mappers </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s02.html" tabindex="1"> Source Layout </a></span><ul> <li><span class="file"><a href="ch06s02s01.html" tabindex="1"> Files And Directories </a></span></li> <li><span class="file"><a href="ch06s02s02.html" tabindex="1"> File Naming Conventions </a></span></li> <li><span class="file"><a href="ch06s02s03.html" tabindex="1"> Coding Standards </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s03.html" tabindex="1"> System Initialization </a></span><ul> <li><span class="file"><a href="ch06s03s01.html" tabindex="1"> Wrapper Scripts </a></span></li> <li><span class="file"><a href="ch06s03s02.html" tabindex="1"> The Main Application (phing.php) </a></span></li> <li><span class="file"><a href="ch06s03s03.html" tabindex="1"> The Phing Class </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s04.html" tabindex="1"> System Services </a></span><ul> <li><span class="file"><a href="ch06s04s01.html" tabindex="1"> The Exception system </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s05.html" tabindex="1"> Build Lifecycle </a></span><ul> <li><span class="file"><a href="ch06s05s01.html" tabindex="1"> How Phing Parses Buildfiles </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s06.html" tabindex="1"> Writing Tasks </a></span><ul> <li><span class="file"><a href="ch06s06s01.html" tabindex="1"> Creating A Task </a></span></li> <li><span class="file"><a href="ch06s06s02.html" tabindex="1"> Using the Task </a></span></li> <li><span class="file"><a href="ch06s06s03.html" tabindex="1">Source Discussion </a></span></li> <li><span class="file"><a href="ch06s06s04.html" tabindex="1">Task Structure </a></span></li> <li><span class="file"><a href="ch06s06s05.html" tabindex="1">Includes </a></span></li> <li><span class="file"><a href="ch06s06s06.html" tabindex="1"> Class Declaration </a></span></li> <li><span class="file"><a href="ch06s06s07.html" tabindex="1"> Class Properties </a></span></li> <li><span class="file"><a href="ch06s06s08.html" tabindex="1"> The Constructor </a></span></li> <li><span class="file"><a href="ch06s06s09.html" tabindex="1"> Setter Methods </a></span></li> <li><span class="file"><a href="ch06s06s10.html" tabindex="1"> Creator Methods </a></span></li> <li><span class="file"><a href="ch06s06s11.html" tabindex="1"> init() Method </a></span></li> <li><span class="file"><a href="ch06s06s12.html" tabindex="1"> main() Method </a></span></li> <li><span class="file"><a href="ch06s06s13.html" tabindex="1"> Arbitrary Methods </a></span></li> </ul> </li> <li><span class="file"><a href="ch06s07.html" tabindex="1"> Writing Types </a></span><ul> <li><span class="file"><a href="ch06s07s01.html" tabindex="1">Creating a DataType</a></span></li> <li><span class="file"><a href="ch06s07s02.html" tabindex="1"> Using the DataType </a></span></li> <li><span class="file"><a href="ch06s07s03.html" tabindex="1"> Source Discussion </a></span><ul> <li><span class="file"><a href="ch06s07s03s01.html" tabindex="1">Getters &amp; Setters</a></span></li> <li><span class="file"><a href="ch06s07s03s02.html" tabindex="1">The getRef() Method</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="ch06s08.html" tabindex="1"> Writing Mappers </a></span><ul> <li><span class="file"><a href="ch06s08s01.html" tabindex="1"> Creating a Mapper </a></span></li> <li><span class="file"><a href="ch06s08s02.html" tabindex="1"> Using the Mapper </a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.factsheet.html" tabindex="1">Fact Sheet</a></span><ul> <li><span class="file"><a href="sec.builtinprops.html" tabindex="1">Built-In Properties</a></span></li> <li><span class="file"><a href="sec.commandlineargs.html" tabindex="1"> Command Line Arguments </a></span></li> <li><span class="file"><a href="apas03.html" tabindex="1"> Distribution File Layout </a></span></li> <li><span class="file"><a href="sec.exitcodes.html" tabindex="1">Program Exit Codes</a></span></li> <li><span class="file"><a href="sec.lgpl.html" tabindex="1">The LGPL License</a></span></li> <li><span class="file"><a href="sec.gfdl.html" tabindex="1">The GFDL License</a></span></li> </ul> </li> <li><span class="file"><a href="app.coretasks.html" tabindex="1">Core tasks</a></span><ul> <li><span class="file"><a href="AdhocTaskdefTask.html" tabindex="1">AdhocTaskdefTask </a></span><ul> <li><span class="file"><a href="apbs01s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="AdhocTypedefTask.html" tabindex="1">AdhocTypedefTask </a></span><ul> <li><span class="file"><a href="apbs02s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="AppendTask.html" tabindex="1">AppendTask </a></span><ul> <li><span class="file"><a href="apbs03s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs03s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ApplyTask.html" tabindex="1">ApplyTask </a></span><ul> <li><span class="file"><a href="apbs04s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs04s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="AvailableTask.html" tabindex="1">AvailableTask </a></span><ul> <li><span class="file"><a href="apbs05s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ChmodTask.html" tabindex="1">ChmodTask </a></span><ul> <li><span class="file"><a href="apbs06s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs06s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ChownTask.html" tabindex="1">ChownTask </a></span><ul> <li><span class="file"><a href="apbs07s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs07s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ConditionTask.html" tabindex="1">ConditionTask </a></span><ul> <li><span class="file"><a href="apbs08s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs08s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CopyTask.html" tabindex="1">CopyTask </a></span><ul> <li><span class="file"><a href="apbs09s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs09s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CvsTask.html" tabindex="1">CvsTask </a></span><ul> <li><span class="file"><a href="apbs10s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="CvsPassTask.html" tabindex="1">CvsPassTask </a></span><ul> <li><span class="file"><a href="apbs11s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="DeleteTask.html" tabindex="1"> DeleteTask </a></span><ul> <li><span class="file"><a href="apbs12s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs12s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="EchoTask.html" tabindex="1">EchoTask </a></span><ul> <li><span class="file"><a href="apbs13s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs13s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ExecTask.html" tabindex="1">ExecTask </a></span><ul> <li><span class="file"><a href="apbs14s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs14s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="FailTask.html" tabindex="1">FailTask </a></span><ul> <li><span class="file"><a href="apbs15s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ForeachTask.html" tabindex="1">ForeachTask </a></span><ul> <li><span class="file"><a href="apbs16s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs16s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="IfTask.html" tabindex="1">IfTask </a></span><ul> <li><span class="file"><a href="apbs17s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ImportTask.html" tabindex="1">ImportTask </a></span><ul> <li><span class="file"><a href="apbs18s01.html" tabindex="1">Target Overriding</a></span></li> <li><span class="file"><a href="apbs18s02.html" tabindex="1">Special Properties</a></span></li> <li><span class="file"><a href="apbs18s03.html" tabindex="1">Resolving Files Against the Imported File</a></span></li> <li><span class="file"><a href="apbs18s04.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="IncludePathTask.html" tabindex="1">IncludePathTask </a></span><ul> <li><span class="file"><a href="apbs19s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="InputTask.html" tabindex="1">InputTask </a></span><ul> <li><span class="file"><a href="apbs20s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="LoadFileTask.html" tabindex="1">LoadFileTask </a></span><ul> <li><span class="file"><a href="apbs21s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs21s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="MkdirTask.html" tabindex="1">MkdirTask </a></span><ul> <li><span class="file"><a href="apbs22s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="MoveTask.html" tabindex="1">MoveTask </a></span><ul> <li><span class="file"><a href="apbs23s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs23s02.html" tabindex="1">Attributes and Nested Elements</a></span></li> </ul> </li> <li><span class="file"><a href="PhingTask.html" tabindex="1">PhingTask </a></span><ul> <li><span class="file"><a href="apbs24s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs24s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apbs24s03.html" tabindex="1">Base directory of the new project</a></span></li> </ul> </li> <li><span class="file"><a href="PhingCallTask.html" tabindex="1">PhingCallTask </a></span><ul> <li><span class="file"><a href="apbs25s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs25s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpEvalTask.html" tabindex="1">PhpEvalTask </a></span><ul> <li><span class="file"><a href="apbs26s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs26s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PropertyTask.html" tabindex="1">PropertyTask </a></span><ul> <li><span class="file"><a href="apbs27s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs27s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="PropertyPromptTask.html" tabindex="1">PropertyPromptTask </a></span><ul> <li><span class="file"><a href="apbs28s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ReflexiveTask.html" tabindex="1">ReflexiveTask </a></span><ul> <li><span class="file"><a href="apbs29s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs29s02.html" tabindex="1">Supported Nested Tags:</a></span></li> </ul> </li> <li><span class="file"><a href="ResolvePathTask.html" tabindex="1">ResolvePathTask </a></span><ul> <li><span class="file"><a href="apbs30s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="TaskdefTask.html" tabindex="1">TaskdefTask </a></span><ul> <li><span class="file"><a href="apbs31s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs31s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TouchTask.html" tabindex="1">TouchTask </a></span><ul> <li><span class="file"><a href="apbs32s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs32s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TryCatchTask.html" tabindex="1">TryCatchTask</a></span><ul> <li><span class="file"><a href="apbs33s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="TstampTask.html" tabindex="1">TstampTask </a></span><ul> <li><span class="file"><a href="apbs34s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs34s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TypedefTask.html" tabindex="1">TypedefTask </a></span><ul> <li><span class="file"><a href="apbs35s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs35s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UpToDateTask.html" tabindex="1">UpToDateTask </a></span><ul> <li><span class="file"><a href="apbs36s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs36s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="WaitForTask.html" tabindex="1">WaitForTask</a></span><ul> <li><span class="file"><a href="apbs37s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs37s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="XsltTask.html" tabindex="1">XsltTask </a></span><ul> <li><span class="file"><a href="apbs38s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apbs38s02.html" tabindex="1">Supported Nested Elements</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.optionaltasks.html" tabindex="1">Optional tasks</a></span><ul> <li><span class="file"><a href="ApiGenTask.html" tabindex="1">ApiGenTask</a></span><ul> <li><span class="file"><a href="apcs01s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageMergerTask.html" tabindex="1">CoverageMergerTask</a></span><ul> <li><span class="file"><a href="apcs02s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs02s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageReportTask.html" tabindex="1">CoverageReportTask</a></span><ul> <li><span class="file"><a href="apcs03s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs03s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageSetupTask.html" tabindex="1">CoverageSetupTask</a></span><ul> <li><span class="file"><a href="apcs04s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs04s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="CoverageThresholdTask.html" tabindex="1">CoverageThresholdTask</a></span><ul> <li><span class="file"><a href="apcs05s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs05s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="DbDeployTask.html" tabindex="1">DbDeployTask</a></span><ul> <li><span class="file"><a href="apcs06s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="DocBloxTask.html" tabindex="1">DocBloxTask</a></span><ul> <li><span class="file"><a href="apcs07s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs07s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ExportPropertiesTask.html" tabindex="1">ExportPropertiesTask</a></span><ul> <li><span class="file"><a href="apcs08s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileHashTask.html" tabindex="1">FileHashTask</a></span><ul> <li><span class="file"><a href="apcs09s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileSizeTask.html" tabindex="1">FileSizeTask</a></span><ul> <li><span class="file"><a href="apcs10s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FileSyncTask.html" tabindex="1">FileSyncTask</a></span><ul> <li><span class="file"><a href="apcs11s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="FtpDeployTask.html" tabindex="1">FtpDeployTask</a></span><ul> <li><span class="file"><a href="apcs12s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs12s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="GitInitTask.html" tabindex="1">GitInitTask</a></span><ul> <li><span class="file"><a href="apcs13s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCloneTask.html" tabindex="1">GitCloneTask</a></span><ul> <li><span class="file"><a href="apcs14s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitGcTask.html" tabindex="1">GitGcTask</a></span><ul> <li><span class="file"><a href="apcs15s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitBranchTask.html" tabindex="1">GitBranchTask</a></span><ul> <li><span class="file"><a href="apcs16s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitFetchTask.html" tabindex="1">GitFetchTask</a></span><ul> <li><span class="file"><a href="apcs17s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCheckoutTask.html" tabindex="1">GitCheckoutTask</a></span><ul> <li><span class="file"><a href="apcs18s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitCommitTask.html" tabindex="1">GitCommitTask</a></span><ul> <li><span class="file"><a href="apcs19s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs19s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="GitMergeTask.html" tabindex="1">GitMergeTask</a></span><ul> <li><span class="file"><a href="apcs20s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitPullTask.html" tabindex="1">GitPullTask</a></span><ul> <li><span class="file"><a href="apcs21s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitPushTask.html" tabindex="1">GitPushTask</a></span><ul> <li><span class="file"><a href="apcs22s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitTagTask.html" tabindex="1">GitTagTask</a></span><ul> <li><span class="file"><a href="apcs23s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GitLogTask.html" tabindex="1">GitLogTask</a></span><ul> <li><span class="file"><a href="apcs24s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="GrowlNotifyTask.html" tabindex="1">GrowlNotifyTask</a></span><ul> <li><span class="file"><a href="apcs25s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="HttpGetTask.html" tabindex="1">HttpGetTask</a></span><ul> <li><span class="file"><a href="apcs26s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs26s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs26s03.html" tabindex="1">Global configuration</a></span></li> </ul> </li> <li><span class="file"><a href="HttpRequestTask.html" tabindex="1">HttpRequestTask</a></span><ul> <li><span class="file"><a href="apcs27s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs27s02.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs27s03.html" tabindex="1">Global configuration</a></span></li> </ul> </li> <li><span class="file"><a href="IoncubeEncoderTask.html" tabindex="1">IoncubeEncoderTask</a></span><ul> <li><span class="file"><a href="apcs28s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs28s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="IoncubeLicenseTask.html" tabindex="1">IoncubeLicenseTask</a></span><ul> <li><span class="file"><a href="apcs29s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs29s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="JslLintTask.html" tabindex="1">JslLintTask</a></span><ul> <li><span class="file"><a href="apcs30s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs30s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="JsMinTask.html" tabindex="1">JsMinTask</a></span><ul> <li><span class="file"><a href="apcs31s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs31s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseTask.html" tabindex="1">LiquibaseTask</a></span><ul> <li><span class="file"><a href="apcs32s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs32s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseChangeLogTask.html" tabindex="1">LiquibaseChangeLogTask</a></span><ul> <li><span class="file"><a href="apcs33s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs33s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseDbDocTask.html" tabindex="1">LiquibaseDbDocTask</a></span><ul> <li><span class="file"><a href="apcs34s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs34s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseDiffTask.html" tabindex="1">LiquibaseDiffTask</a></span><ul> <li><span class="file"><a href="apcs35s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs35s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseRollbackTask.html" tabindex="1">LiquibaseRollbackTask</a></span><ul> <li><span class="file"><a href="apcs36s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs36s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseTagTask.html" tabindex="1">LiquibaseTagTask</a></span><ul> <li><span class="file"><a href="apcs37s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs37s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="LiquibaseUpdateTask.html" tabindex="1">LiquibaseUpdateTask</a></span><ul> <li><span class="file"><a href="apcs38s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs38s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="MailTask.html" tabindex="1">MailTask</a></span><ul> <li><span class="file"><a href="apcs39s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs39s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ParallelTask.html" tabindex="1">ParallelTask</a></span><ul> <li><span class="file"><a href="apcs40s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PatchTask.html" tabindex="1">PatchTask</a></span><ul> <li><span class="file"><a href="apcs41s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PDOSQLExecTask.html" tabindex="1">PDOSQLExecTask</a></span><ul> <li><span class="file"><a href="apcs42s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs42s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PearPackageTask.html" tabindex="1">PearPackageTask</a></span><ul> <li><span class="file"><a href="apcs43s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs43s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PearPackage2Task.html" tabindex="1">PearPackage2Task</a></span><ul> <li><span class="file"><a href="apcs44s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs44s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PharPackageTask.html" tabindex="1">PharPackageTask</a></span><ul> <li><span class="file"><a href="apcs45s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs45s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhkPackageTask.html" tabindex="1">PhkPackageTask</a></span><ul> <li><span class="file"><a href="apcs46s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs46s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpCodeSnifferTask.html" tabindex="1">PhpCodeSnifferTask</a></span><ul> <li><span class="file"><a href="apcs47s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs47s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPCPDTask.html" tabindex="1">PHPCPDTask</a></span><ul> <li><span class="file"><a href="apcs48s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs48s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPLocTask.html" tabindex="1">PHPLocTask</a></span><ul> <li><span class="file"><a href="apcs49s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs49s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPMDTask.html" tabindex="1">PHPMDTask</a></span><ul> <li><span class="file"><a href="apcs50s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs50s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDependTask.html" tabindex="1">PhpDependTask</a></span><ul> <li><span class="file"><a href="apcs51s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs51s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentorTask.html" tabindex="1">PhpDocumentorTask</a></span><ul> <li><span class="file"><a href="apcs52s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs52s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentor2Task.html" tabindex="1">PhpDocumentor2Task</a></span><ul> <li><span class="file"><a href="apcs53s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs53s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PhpDocumentorExternalTask.html" tabindex="1">PhpDocumentorExternalTask</a></span><ul> <li><span class="file"><a href="apcs54s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="PhpLintTask.html" tabindex="1">PhpLintTask</a></span><ul> <li><span class="file"><a href="apcs55s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs55s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPUnitTask.html" tabindex="1">PHPUnitTask</a></span><ul> <li><span class="file"><a href="apcs56s01.html" tabindex="1">Supported Nested Tags</a></span></li> <li><span class="file"><a href="apcs56s02.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs56s03.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="PHPUnitReport.html" tabindex="1">PHPUnitReport</a></span><ul> <li><span class="file"><a href="apcs57s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="rSTTask.html" tabindex="1">rSTTask</a></span><ul> <li><span class="file"><a href="apcs58s01.html" tabindex="1">Features</a></span></li> <li><span class="file"><a href="apcs58s02.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs58s03.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="S3PutTask.html" tabindex="1">S3PutTask</a></span><ul> <li><span class="file"><a href="apcs59s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs59s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="S3GetTask.html" tabindex="1">S3GetTask</a></span><ul> <li><span class="file"><a href="apcs60s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="ScpTask.html" tabindex="1">ScpTask</a></span><ul> <li><span class="file"><a href="apcs61s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs61s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SshTask.html" tabindex="1">SshTask</a></span><ul> <li><span class="file"><a href="apcs62s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs62s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SimpleTestTask.html" tabindex="1">SimpleTestTask</a></span><ul> <li><span class="file"><a href="apcs63s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs63s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCheckoutTask.html" tabindex="1">SvnCheckoutTask</a></span><ul> <li><span class="file"><a href="apcs64s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCommitTask.html" tabindex="1">SvnCommitTask</a></span><ul> <li><span class="file"><a href="apcs65s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnCopyTask.html" tabindex="1">SvnCopyTask</a></span><ul> <li><span class="file"><a href="apcs66s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnExportTask.html" tabindex="1">SvnExportTask</a></span><ul> <li><span class="file"><a href="apcs67s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnInfoTask.html" tabindex="1">SvnInfoTask</a></span><ul> <li><span class="file"><a href="apcs68s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnLastRevisionTask.html" tabindex="1">SvnLastRevisionTask</a></span><ul> <li><span class="file"><a href="apcs69s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnListTask.html" tabindex="1">SvnListTask</a></span><ul> <li><span class="file"><a href="apcs70s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnLogTask.html" tabindex="1">SvnLogTask</a></span><ul> <li><span class="file"><a href="apcs71s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnUpdateTask.html" tabindex="1">SvnUpdateTask</a></span><ul> <li><span class="file"><a href="apcs72s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SvnSwitchTask.html" tabindex="1">SvnSwitchTask</a></span><ul> <li><span class="file"><a href="apcs73s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="SymfonyConsoleTask.html" tabindex="1">SymfonyConsoleTask</a></span><ul> <li><span class="file"><a href="apcs74s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs74s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="SymlinkTask.html" tabindex="1">SymlinkTask</a></span><ul> <li><span class="file"><a href="apcs75s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs75s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="TarTask.html" tabindex="1">TarTask</a></span><ul> <li><span class="file"><a href="apcs76s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs76s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UntarTask.html" tabindex="1">UntarTask</a></span><ul> <li><span class="file"><a href="apcs77s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs77s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="UnzipTask.html" tabindex="1">UnzipTask</a></span><ul> <li><span class="file"><a href="apcs78s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs78s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="VersionTask.html" tabindex="1">VersionTask</a></span><ul> <li><span class="file"><a href="apcs79s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="WikiPublishTask.html" tabindex="1">WikiPublishTask</a></span><ul> <li><span class="file"><a href="apcs80s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="XmlLintTask.html" tabindex="1">XmlLintTask</a></span><ul> <li><span class="file"><a href="apcs81s01.html" tabindex="1">Examples</a></span></li> <li><span class="file"><a href="apcs81s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="XmlPropertyTask.html" tabindex="1">XmlPropertyTask</a></span><ul> <li><span class="file"><a href="apcs82s01.html" tabindex="1">Example</a></span></li> </ul> </li> <li><span class="file"><a href="ZendCodeAnalyzerTask.html" tabindex="1">ZendCodeAnalyzerTask</a></span><ul> <li><span class="file"><a href="apcs83s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs83s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ZendGuardEncodeTask.html" tabindex="1">ZendGuardEncodeTask</a></span><ul> <li><span class="file"><a href="apcs84s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs84s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> <li><span class="file"><a href="ZendGuardLicenseTask.html" tabindex="1">ZendGuardLicenseTask</a></span><ul> <li><span class="file"><a href="apcs85s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="ZipTask.html" tabindex="1">ZipTask</a></span><ul> <li><span class="file"><a href="apcs86s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="apcs86s02.html" tabindex="1">Supported Nested Tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.coretypes.html" tabindex="1">Core Types</a></span><ul> <li><span class="file"><a href="Excludes.html" tabindex="1">Excludes</a></span><ul> <li><span class="file"><a href="apds01s01.html" tabindex="1">Nested tags</a></span></li> <li><span class="file"><a href="apds01s02.html" tabindex="1">Usage Examples</a></span></li> </ul> </li> <li><span class="file"><a href="FileList.html" tabindex="1">FileList</a></span><ul> <li><span class="file"><a href="apds02s01.html" tabindex="1">Usage Examples</a></span></li> </ul> </li> <li><span class="file"><a href="FileSet.html" tabindex="1">FileSet</a></span><ul> <li><span class="file"><a href="apds03s01.html" tabindex="1">Using wildcards</a></span></li> <li><span class="file"><a href="apds03s02.html" tabindex="1">Usage Examples</a></span></li> <li><span class="file"><a href="apds03s03.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="PatternSet.html" tabindex="1">PatternSet </a></span><ul> <li><span class="file"><a href="apds04s01.html" tabindex="1">Usage Example</a></span></li> <li><span class="file"><a href="apds04s02.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="path.html" tabindex="1">Path / Classpath</a></span><ul> <li><span class="file"><a href="apds05s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.corefilters.html" tabindex="1">Core filters</a></span><ul> <li><span class="file"><a href="PhingFilterReader.html" tabindex="1">PhingFilterReader</a></span><ul> <li><span class="file"><a href="apes01s01.html" tabindex="1">Nested tags</a></span></li> <li><span class="file"><a href="apes01s02.html" tabindex="1">Advanced</a></span></li> </ul> </li> <li><span class="file"><a href="ExpandProperties.html" tabindex="1">ExpandProperties</a></span></li> <li><span class="file"><a href="HeadFilter.html" tabindex="1">HeadFilter</a></span></li> <li><span class="file"><a href="IconvFilter.html" tabindex="1">IconvFilter</a></span></li> <li><span class="file"><a href="LineContains.html" tabindex="1">Line Contains </a></span><ul> <li><span class="file"><a href="apes05s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="LineContainsRegexp.html" tabindex="1">LineContainsRegexp</a></span><ul> <li><span class="file"><a href="apes06s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="PrefixLines.html" tabindex="1">PrefixLines</a></span></li> <li><span class="file"><a href="ReplaceTokens.html" tabindex="1">ReplaceTokens</a></span><ul> <li><span class="file"><a href="apes08s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="ReplaceTokensWithFile.html" tabindex="1">ReplaceTokensWithFile</a></span><ul> <li><span class="file"><a href="apes09s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="ReplaceRegexp.html" tabindex="1">ReplaceRegexp</a></span><ul> <li><span class="file"><a href="apes10s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="StripLineBreaks.html" tabindex="1">StripLineBreaks</a></span></li> <li><span class="file"><a href="StripLineComments.html" tabindex="1">StripLineComments</a></span><ul> <li><span class="file"><a href="apes12s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="StripPhpComments.html" tabindex="1">StripPhpComments</a></span></li> <li><span class="file"><a href="StripWhitespace.html" tabindex="1">StripWhitespace</a></span></li> <li><span class="file"><a href="TabToSpaces.html" tabindex="1">TabToSpaces</a></span></li> <li><span class="file"><a href="TailFilter.html" tabindex="1">TailFilter</a></span></li> <li><span class="file"><a href="TidyFilter.html" tabindex="1">TidyFilter</a></span><ul> <li><span class="file"><a href="apes17s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> <li><span class="file"><a href="XincludeFilter.html" tabindex="1">XincludeFilter</a></span></li> <li><span class="file"><a href="XsltFilter.html" tabindex="1">XsltFilter</a></span><ul> <li><span class="file"><a href="apes19s01.html" tabindex="1">Nested tags</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.coremappers.html" tabindex="1">Core mappers</a></span><ul> <li><span class="file"><a href="apfs01.html" tabindex="1">Common Attributes</a></span></li> <li><span class="file"><a href="FlattenMapper.html" tabindex="1">FlattenMapper </a></span><ul> <li><span class="file"><a href="apfs02s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="GlobMapper.html" tabindex="1">GlobMapper </a></span><ul> <li><span class="file"><a href="apfs03s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="IdentityMapper.html" tabindex="1">IdentityMapper </a></span></li> <li><span class="file"><a href="MergeMapper.html" tabindex="1">MergeMapper </a></span><ul> <li><span class="file"><a href="apfs05s01.html" tabindex="1">Examples</a></span></li> </ul> </li> <li><span class="file"><a href="RegexpMapper.html" tabindex="1">RegexpMapper </a></span><ul> <li><span class="file"><a href="apfs06s01.html" tabindex="1">Examples</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.selectors.html" tabindex="1">Core selectors</a></span><ul> <li><span class="file"><a href="Contains.html" tabindex="1">Contains </a></span></li> <li><span class="file"><a href="Date.html" tabindex="1">Date</a></span></li> <li><span class="file"><a href="Depend.html" tabindex="1">Depend</a></span></li> <li><span class="file"><a href="Depth.html" tabindex="1">Depth</a></span></li> <li><span class="file"><a href="Filename.html" tabindex="1">Filename </a></span></li> <li><span class="file"><a href="Present.html" tabindex="1">Present</a></span></li> <li><span class="file"><a href="Containsregexp.html" tabindex="1">Containsregexp</a></span></li> <li><span class="file"><a href="Size.html" tabindex="1">Size</a></span></li> <li><span class="file"><a href="Type.html" tabindex="1">Type </a></span></li> <li><span class="file"><a href="And.html" tabindex="1">And </a></span></li> <li><span class="file"><a href="Majority.html" tabindex="1">Majority</a></span></li> <li><span class="file"><a href="None.html" tabindex="1">None </a></span></li> <li><span class="file"><a href="Not.html" tabindex="1">Not</a></span></li> <li><span class="file"><a href="Or.html" tabindex="1">Or</a></span></li> <li><span class="file"><a href="Selector.html" tabindex="1">Selector </a></span></li> </ul> </li> <li><span class="file"><a href="app.projcomponents.html" tabindex="1">Project Components</a></span><ul> <li><span class="file"><a href="Project.html" tabindex="1">Phing Projects</a></span><ul> <li><span class="file"><a href="aphs01s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="aphs01s02.html" tabindex="1">Attributes</a></span></li> </ul> </li> <li><span class="file"><a href="Target.html" tabindex="1">Targets</a></span><ul> <li><span class="file"><a href="aphs02s01.html" tabindex="1">Example</a></span></li> <li><span class="file"><a href="aphs02s02.html" tabindex="1">Attributes</a></span></li> </ul> </li> </ul> </li> <li><span class="file"><a href="app.fileformats.html" tabindex="1">File Formats</a></span><ul> <li><span class="file"><a href="BuildFileFormat.html" tabindex="1">Build File Format</a></span></li> <li><span class="file"><a href="PropertyFileFormat.html" tabindex="1">Property File Format</a></span></li> </ul> </li> <li><span class="file"><a href="app.bibliography.html" tabindex="1">Bibliography</a></span><ul> <li><span class="file"><a href="app.bibliography.html#InternationalStandards" tabindex="1">International Standards</a></span></li> <li><span class="file"><a href="app.bibliography.html#Licenses" tabindex="1">Licenses</a></span></li> <li><span class="file"><a href="app.bibliography.html#os-projects" tabindex="1">Open Source Projects</a></span></li> <li><span class="file"><a href="app.bibliography.html#Manuals" tabindex="1">Manuals</a></span></li> <li><span class="file"><a href="app.bibliography.html#OtherResources" tabindex="1">Other Resources</a></span></li> </ul> </li> </ul> </div> </div> <div id="searchDiv"> <div id="search"> <form onsubmit="Verifie(searchForm);return false" name="searchForm" class="searchForm"> <div><input id="textToSearch" name="textToSearch" type="search" placeholder="Search" class="searchText" tabindex="1" /> &nbsp; <input onclick="Verifie(searchForm)" type="button" class="searchButton" value="Go" id="doSearch" tabindex="1" /></div> </form> </div> <div id="searchResults"> <center></center> </div> <p class="searchHighlight"><a href="#" onclick="toggleHighlight()">Search Highlighter (On/Off)</a></p> </div> </div> </div> </div> </body> </html>
ghostnc/symfony-project
vendor/phing/phing/docs/docbook5/en/output/webhelp/ch.extending.html
HTML
mit
98,334
<!doctype html> <html> <head> <!-- <script src='https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.js'></script> --> <script src='jquery.js'></script> <script src='okshadow.js'></script> <script> $(function(){ $('#ok').okshadow({ color: 'red', xFactor: 1000, yFactor: 1000, textShadow: true, transparent: true }); }); </script> <style type="text/css"> body { overflow: hidden; } #ok { position: absolute; top: 50%; margin-top: -128px; width: 100%; line-height: 128px; text-align: center; font-size: 256px; } </style> </head> <body> <div id="ok">okfocus</div> </body> </html>
mttwhlly/mttwhlly.github.io
okfocus-okshadow-183cd27/demos/text2.html
HTML
mit
736
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <link href="../style/docs.min.css" rel="stylesheet" /> </head> <body> <h1>AtomApplication</h1> <p> AtomApplication is root Control, whose children will be treated as Atom Controls and everything underneath will be treated as a Atoms.js Application.</p> <iframe class="atom-code-frame" src="../code.html#codeFile=controls/samples/atom-application.html" style="height: 414px;"> </iframe> </body> </html>
neurospeech/atoms.js
docs/controls/atom-application.html
HTML
mit
523
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>EstimoteSDK Reference</title> <link rel="stylesheet" type="text/css" href="css/styles.css" media="all" /> <link rel="stylesheet" type="text/css" media="print" href="css/stylesPrint.css" /> <meta name="generator" content="appledoc 2.2 (build 963)" /> </head> <body> <header id="top_header"> <div id="library" class="hideInXcode"> <h1><a id="libraryTitle" href="index.html">EstimoteSDK </a></h1> <a id="developerHome" href="index.html">Estimote</a> </div> <div id="title" role="banner"> <h1 class="hideInXcode">EstimoteSDK Reference</h1> </div> <ul id="headerButtons" role="toolbar"></ul> </header> <article> <div id="overview_contents" role="main"> <div class="main-navigation navigation-top"> <a href="hierarchy.html">Next</a> </div> <div id="header"> <div class="section-header"> <h1 class="title title-header">EstimoteSDK Reference</h1> </div> </div> <div id="container"> <div class="index-column"> <h2 class="index-title">Class References</h2> <ul> <li><a href="Classes/ESTBeaconConnection.html">ESTBeaconConnection</a></li> <li><a href="Classes/ESTBeaconManager.html">ESTBeaconManager</a></li> <li><a href="Classes/ESTBeaconUpdateConfig.html">ESTBeaconUpdateConfig</a></li> <li><a href="Classes/ESTBeaconUpdateInfo.html">ESTBeaconUpdateInfo</a></li> <li><a href="Classes/ESTBulkUpdater.html">ESTBulkUpdater</a></li> <li><a href="Classes/ESTCloudManager.html">ESTCloudManager</a></li> <li><a href="Classes/ESTDateRule.html">ESTDateRule</a></li> <li><a href="Classes/ESTEddystone.html">ESTEddystone</a></li> <li><a href="Classes/ESTEddystoneFilterUID.html">ESTEddystoneFilterUID</a></li> <li><a href="Classes/ESTEddystoneFilterURL.html">ESTEddystoneFilterURL</a></li> <li><a href="Classes/ESTEddystoneFilterURLDomain.html">ESTEddystoneFilterURLDomain</a></li> <li><a href="Classes/ESTEddystoneManager.html">ESTEddystoneManager</a></li> <li><a href="Classes/ESTEddystoneTelemetry.html">ESTEddystoneTelemetry</a></li> <li><a href="Classes/ESTEddystoneUID.html">ESTEddystoneUID</a></li> <li><a href="Classes/ESTMotionRule.html">ESTMotionRule</a></li> <li><a href="Classes/ESTNearable.html">ESTNearable</a></li> <li><a href="Classes/ESTNearableDefinitions.html">ESTNearableDefinitions</a></li> <li><a href="Classes/ESTNearableManager.html">ESTNearableManager</a></li> <li><a href="Classes/ESTNearableRule.html">ESTNearableRule</a></li> <li><a href="Classes/ESTNotificationTransporter.html">ESTNotificationTransporter</a></li> <li><a href="Classes/ESTOrientationRule.html">ESTOrientationRule</a></li> <li><a href="Classes/ESTProximityRule.html">ESTProximityRule</a></li> <li><a href="Classes/ESTRule.html">ESTRule</a></li> <li><a href="Classes/ESTSecureBeaconManager.html">ESTSecureBeaconManager</a></li> <li><a href="Classes/ESTSimulatedNearableManager.html">ESTSimulatedNearableManager</a></li> <li><a href="Classes/ESTTemperatureRule.html">ESTTemperatureRule</a></li> <li><a href="Classes/ESTTrigger.html">ESTTrigger</a></li> <li><a href="Classes/ESTTriggerManager.html">ESTTriggerManager</a></li> <li><a href="Classes/ESTUtilityManager.html">ESTUtilityManager</a></li> </ul> </div> <div class="index-column"> <h2 class="index-title">Protocol References</h2> <ul> <li><a href="Protocols/ESBeaconUpdateInfoDelegate.html">ESBeaconUpdateInfoDelegate</a></li> <li><a href="Protocols/ESTBeaconConnectionDelegate.html">ESTBeaconConnectionDelegate</a></li> <li><a href="Protocols/ESTBeaconManagerDelegate.html">ESTBeaconManagerDelegate</a></li> <li><a href="Protocols/ESTEddystoneManagerDelegate.html">ESTEddystoneManagerDelegate</a></li> <li><a href="Protocols/ESTNearableManagerDelegate.html">ESTNearableManagerDelegate</a></li> <li><a href="Protocols/ESTTriggerManagerDelegate.html">ESTTriggerManagerDelegate</a></li> <li><a href="Protocols/ESTUtilityManagerDelegate.html">ESTUtilityManagerDelegate</a></li> </ul> <h2 class="index-title">Constant References</h2> <ul> <li><a href="Constants/ESBeaconUpdateInfoStatus.html">ESBeaconUpdateInfoStatus</a></li> <li><a href="Constants/ESBulkUpdaterStatus.html">ESBulkUpdaterStatus</a></li> <li><a href="Constants/ESTBeaconBatteryType.html">ESTBeaconBatteryType</a></li> <li><a href="Constants/ESTBeaconCharInfoType.html">ESTBeaconCharInfoType</a></li> <li><a href="Constants/ESTBeaconConditionalBroadcasting.html">ESTBeaconConditionalBroadcasting</a></li> <li><a href="Constants/ESTBeaconEstimoteSecureUUID.html">ESTBeaconEstimoteSecureUUID</a></li> <li><a href="Constants/ESTBeaconFirmwareState.html">ESTBeaconFirmwareState</a></li> <li><a href="Constants/ESTBeaconMotionDetection.html">ESTBeaconMotionDetection</a></li> <li><a href="Constants/ESTBeaconMotionState.html">ESTBeaconMotionState</a></li> <li><a href="Constants/ESTBeaconMotionUUID.html">ESTBeaconMotionUUID</a></li> <li><a href="Constants/ESTBeaconPower.html">ESTBeaconPower</a></li> <li><a href="Constants/ESTBeaconPowerSavingMode.html">ESTBeaconPowerSavingMode</a></li> <li><a href="Constants/ESTBeaconTemperatureState.html">ESTBeaconTemperatureState</a></li> <li><a href="Constants/ESTBulkUpdaterMode.html">ESTBulkUpdaterMode</a></li> <li><a href="Constants/ESTEddystoneManagerState.html">ESTEddystoneManagerState</a></li> <li><a href="Constants/ESTEddystoneProximity.html">ESTEddystoneProximity</a></li> <li><a href="Constants/ESTNearableFirmwareState.html">ESTNearableFirmwareState</a></li> <li><a href="Constants/ESTNearableOrientation.html">ESTNearableOrientation</a></li> <li><a href="Constants/ESTNearableType.html">ESTNearableType</a></li> <li><a href="Constants/ESTNearableZone.html">ESTNearableZone</a></li> <li><a href="Constants/ESTNotification.html">ESTNotification</a></li> <li><a href="Constants/ESTUtilitManagerState.html">ESTUtilitManagerState</a></li> </ul> </div> </div> <div class="main-navigation navigation-bottom"> <a href="hierarchy.html">Next</a> </div> <div id="footer"> <hr /> <div class="footer-copyright"> <p><span class="copyright">&copy; 2015 Estimote. All rights reserved. (Last updated: 2015-07-15)</span><br /> <span class="generator">Generated by <a href="http://appledoc.gentlebytes.com">appledoc 2.2 (build 963)</a>.</span></p> </div> </div> </div> </article> </body> </html>
sandeepmistry/Estimote-iOS-SDK
Documents/index.html
HTML
mit
8,272
<h3 id="ms-duplex">双工绑定(ms-duplex)</h3> <p>这功能抄自angular,原名ms-model起不得太好,姑且认为利用VM中的某些属性对表单元素进行双向绑定。</p> <p>这个绑定,它除了负责将VM中对应的值放到表单元素的value中,还对元素偷偷绑定一些事件,用于监听用户的输入从而自动刷新VM。具体如下:</p> <dl> <dt>ms-duplex="prop"</dt> <dd> <div><b style="color:green;">当元素为text, password, textarea时</b>,要求prop为一个字符串,当我们改动它的内容时,avalon就会将此元素的value值赋给prop(在默认情况下,是使用input事件进行绑定,即每改动一个字符,都会进行同步,大家也可以指定<b>data-duplex-event="change"</b>,改用change事件进行绑定)</div> <div><b style="color:green;">当元素为radio时</b>,要求prop为一个布尔, 当我们改动它的内容时,avalon就会将此元素的checked值(布尔)赋给prop</div> <div><b style="color:green;">当元素为checkbox时</b>,要求prop为一个数组, 当我们改动它的内容时,avalon就会将此元素的value值push进prop</div> <div><b style="color:green;">当元素为select时</b>,要求prop为一个字符串或数组(视multiple的值), 当我们选中它的某一个项时,avalon就会将此option元素的value值或text值(没有value时)push进prop。 </div> </dd> <dt>ms-duplex-string="prop"(即原来的<b>ms-duplex-text</b>)</dt> <dd>强制将元素的element.value转换为字符串或字符串数组(select-multiple标签,checkbox标签),然后再赋给prop</dd> <dt>ms-duplex-boolean="prop"(即原来的<b>ms-duplex-bool</b>)</dt> <dd>强制将元素的element.value转换为布尔或布尔数组(select-multiple标签,checkbox标签),然后再赋给prop </dd> <dt>ms-duplex-number="prop"</dt> <dd>强制将元素的element.value转换为布尔或布尔数组(select-multiple标签,checkbox标签),然后再赋给prop </dd> <dt>ms-duplex-radio="prop"</dt> <dd>只能用于checkbox,<b style="color:orange">用于模拟radio控件的行为</b>, 要求prop为一个布尔,当我们选中某一个checkbox时,avalon就会将此元素的checked值(布尔)赋给prop <a href="http://rubylouvre.github.io/mvvm/avalon.grid.html">多用于实现GRID中的全选/全不选功能</a> </dd> </dl> <p>如果想让text, textarea, password等控件在变化后获得焦点,可以使用<span style="color:violet">data-duplex-focus="true"</span>或ms-data-duplex-focus="isFocus"辅助指令.</p> <p style="color:red">注意:ms-duplex与ms-checked不能在同时使用于一个元素节点上。</p> <p style="color:red">注意:如果表单元素同时绑定了ms-duplex=xxx与ms-click或ms-change,而事件回调要立即得到这个vm.xxx的值,input[type=radio]是存在问题,它不能立即得到当前值,而是之前的值,需要在回调里面加个setTimeout。</p> <p>ms-duplex-text, ms-duplex-radio与ms-duplex的用法,大家可以通过<a href="https://github.com/RubyLouvre/avalon/blob/master/index_duplex.html">这个页面</a>进行学习。</p> <pre class="brush:javascript;gutter:false;toolbar:false;"> &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;ms-duplex&lt;/title&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;/head&gt; &lt;body&gt; &lt;div ms-controller="box"&gt; &lt;ul&gt; &lt;li&gt;&lt;input type="checkbox" ms-click="checkAll" ms-checked="checkAllbool"/&gt;全选&lt;/li&gt; &lt;li ms-repeat="arr" &gt;&lt;input type="checkbox" ms-value="el" ms-duplex="selected"/&gt;{{el}}&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;script src="avalon.js" &gt;&lt;/script&gt; &lt;script&gt; var model = avalon.define("box", function(vm) { vm.arr = ["1", '2', "3", "4"] vm.selected = ["2", "3"] vm.checkAllbool = vm.arr.length === vm.selected.length vm.checkAll = function() { if (this.checked) { vm.selected = vm.arr } else { vm.selected.clear() } } }) model.selected.$watch("length", function(n) { model.checkAllbool = n === model.arr.size() }) &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </pre> <p>对于非radio, checkbox, select的控件,我们可以通过data-duplex-changed来指定一个回调,传参为元素的value值,this指向元素本身,要求必须有返回值。</p> <pre class="brush:html;gutter:false;toolbar:false;"> &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt; &lt;title&gt;data-duplex-changed&lt;/title&gt; &lt;script src="avalon.js"&gt;&lt;/script&gt; &lt;/head&gt; &lt;body ms-controller="duplex"&gt; &lt;input ms-duplex="username" data-duplex-changed="callback"&gt; &lt;script type="text/javascript"&gt; avalon.define('duplex', function(vm) { vm.username = "司徒正美" vm.callback = function(val){ avalon.log(val) avalon.log(this) return this.value = val.slice(0, 10)//不能超过10个字符串 } }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </pre>
cdll/tjzyo
www/resource/module/avalon.oniui/pages/apis/bindings/ms-duplex.html
HTML
mit
5,676
google-site-verification: google1c5de1980673b01c.html
fjrd84/personal-page
docs/google1c5de1980673b01c.html
HTML
mit
53
{% extends "layout.html" %} {% block page_title %} Apprenticeships {% endblock %} {% block content %} <style> .people-nav a { {% include "includes/nav-on-state-css.html" %} } </style> <main id="content" role="main"> {% include "includes/phase_banner_alpha.html" %} {% include "includes/secondary-nav-provider.html" %} <!--div class="breadcrumbs"> <ol role="breadcrumbs"> <li><a href="/{% include "includes/sprint-link.html" %}/balance">Access my funds</a></li> </ol> </div--> <div class="breadcrumbs back-breadcrumb"> <ol role="breadcrumbs"> {% include "includes/breadcrumbs/register-back.html" %} </ol> </div> <div class="grid-row"> <div class="column-two-thirds"> <h1 class="heading-xlarge" >Choose training</h1> <p>Choose the training that this upload will be recieving</p> <div id="searchTraining"> <form id="checkTrainingForm" action="add-an-apprenticeship/training-list"> <input id="checkTrainingSource" name="source" type="hidden" value="employer" /> <fieldset> <legend class="visuallyhidden">Enter the name of the framework or standard.</legend> <div class="form-group" style="margin-bottom:15px"> <label class="form-label-bold" for="search">Apprenticeship training course <span class="form-hint">Search for the training by course name or code</span> </label> <input class="form-control" id="search-for-training" type="text"> </div> </fieldset> </form> </div> <div style="margin-top:35px"></div> <div class=""> <a href="/{% include "includes/sprint-link.html" %}/contracts/provider-in-progress/upload-choose-file-provider" class="button ">Continue</a> </div> <div style="margin-top:50px"></div> </div> <div class="column-one-third"> </div> </div> </main> {% endblock %}
SkillsFundingAgency/das-alpha-ui
app/views/programmeSix/contracts/provider-in-progress/choose-training-employer.html
HTML
mit
2,121
<!DOCTYPE html> <html> <head> <title>Book One—The Coming of the Martians, Chapter 16: The Exodus from London | The War of the Worlds | H.G. Wells | Lit2Go ETC</title> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/screenless.css" type="text/css" media="screen" title="no title" charset="utf-8"> <link rel="stylesheet" href="http://etc.usf.edu/lit2go/css/printless.css" type="text/css" media="print" title="no title" charset="utf-8"> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/js.min.js"></script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-5574891-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); })(); $(document).ready(function() { $('img').unveil(); $('#contactable').contactable({ url: 'http://etc.usf.edu/lit2go/welcome/feedback/', subject: 'Lit2Go Feedback — Book One—The Coming of the Martians, Chapter 16: The Exodus from London | The War of the Worlds | H.G. Wells — http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/' }); }); </script> </head> <body> <div class="page"> <header> <h1> <a href="http://etc.usf.edu/lit2go/">Lit<span class="blue">2</span>Go</a> </h1> <ul> <li id="search"><form action="http://etc.usf.edu/lit2go/search/"><input type="text" name="q" placeholder="Search" value=""></form></li> </ul> </header> <nav id="shell"> <ul> <li><a href="http://etc.usf.edu/lit2go/authors/" class="">Authors</a></li> <li><a href="http://etc.usf.edu/lit2go/books/" class="selected">Books</a></li> <li><a href="http://etc.usf.edu/lit2go/genres/" class="">Genres</a></li> <li><a href="http://etc.usf.edu/lit2go/collections/" class="">Collections</a></li> <li><a href="http://etc.usf.edu/lit2go/readability/" class="">Readability</a></li> </ul> </nav> <section id="content"> <div id="contactable"><!-- contactable html placeholder --></div> <div id="page_content"> <header> <h2> <a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/">The War of the Worlds</a> </h2> <h3> by <a href="http://etc.usf.edu/lit2go/authors/128/hg-wells/">H.G. Wells</a> </h3> <h4> Book One—The Coming of the Martians, Chapter 16: The Exodus from London </h4> </header> <div id="default"> <details open> <summary> Additional Information </summary> <div id="columns"> <ul> <li> <strong>Year Published:</strong> 1898 </li> <li> <strong>Language:</strong> English </li> <li> <strong>Country of Origin:</strong> England </li> <li> <strong>Source:</strong> Wells, H. G. (1898). <em> The War of the Worlds. </em> London, England: Chapman and Hall. </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Readability:</strong> <ul> <li> Flesch–Kincaid Level: <a href="http://etc.usf.edu/lit2go/readability/flesch_kincaid_grade_level/9/" title="Flesch–Kincaid Grade Level 9.0">9.0</a> </li> </ul> </li> <li> <strong>Word Count:</strong> 4,577 </li> </ul> </div> <div id="columns"> <ul> <li> <strong>Genre:</strong> <a href="http://etc.usf.edu/lit2go/genres/6/science-fiction/">Science Fiction</a> </li> <li> <strong>Keywords:</strong> 19th century literature, aliens, h.g. wells, survival, war </li> <li> <a class="btn" data-toggle="modal" href="#cite_this" >✎ Cite This</a> </li> <li> <!-- AddThis Button BEGIN --> <div class="addthis_toolbox addthis_default_style "> <a addthis:ui_delay="500" href="http://www.addthis.com/bookmark.php?v=250&amp;pub=roywinkelman" class="addthis_button_compact">Share</a> <span class="addthis_separator">|</span> <a class="addthis_button_preferred_1"></a> <a class="addthis_button_preferred_2"></a> <a class="addthis_button_preferred_3"></a> <a class="addthis_button_preferred_4"></a> </div> <script type="text/javascript">$($.getScript("http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"))</script> <!-- <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=roywinkelman"></script> --> <!-- AddThis Button END --> </li> </ul> </div> <h4>Downloads</h4> <ul id="downloads"> <li> <a href="http://etc.usf.edu/lit2go/audio/mp3/the-war-of-the-worlds-016-book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london.2473.mp3">Audio</a> </li> </ul> <hr> </details> <div class="modal hide" id="cite_this"> <script> $($('#myTab a').click(function (e) {e.preventDefault();$('#myTab a[href="#apa"]').tab('show');})); </script> <nav> <ul id="myTab"> <li class="active"> <a href="#apa" data-toggle="tab">APA</a> </li> <li> <a href="#mla" data-toggle="tab">MLA</a> </li> <li> <a href="#chicago" data-toggle="tab">Chicago</a> </li> </ul> </nav> <div class="tab-content"> <div class="content tab-pane hide active" id="apa"> <p class="citation"> Wells, H. (1898). Book One—The Coming of the Martians, Chapter 16: The Exodus from London. <em>The War of the Worlds</em> (Lit2Go Edition). Retrieved February 15, 2016, from <span class="faux_link">http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/</span> </p> </div> <div class="content tab-pane" id="mla"> <p class="citation"> Wells, H.G.. "Book One—The Coming of the Martians, Chapter 16: The Exodus from London." <em>The War of the Worlds</em>. Lit2Go Edition. 1898. Web. <<span class="faux_link">http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/</span>>. February 15, 2016. </p> </div> <div class="content tab-pane" id="chicago"> <p class="citation"> H.G. Wells, "Book One—The Coming of the Martians, Chapter 16: The Exodus from London," <em>The War of the Worlds</em>, Lit2Go Edition, (1898), accessed February 15, 2016, <span class="faux_link">http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/</span>. </p> </div> </div> </div> <span class="top"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2472/book-onethe-coming-of-the-martians-chapter-15-what-had-happened-in-surrey/" title="Book One—The Coming of the Martians, Chapter 15: What Had Happened in Surrey" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2474/book-onethe-coming-of-the-martians-chapter-17-the-thunder-child/" title="Book One—The Coming of the Martians, Chapter 17: The “Thunder Child”" class="next">Next</a></li> </ul> </nav> </span> <div id="shrink_wrap"> <div id="i_apologize_for_the_soup"> <audio controls style="width:99%;"> <source src="http://etc.usf.edu/lit2go/audio/mp3/the-war-of-the-worlds-016-book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london.2473.mp3" type="audio/mpeg" /> <source src="http://etc.usf.edu/lit2go/audio/ogg/the-war-of-the-worlds-016-book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london.2473.ogg" type="audio/ogg" /> The embedded audio player requires a modern internet browser. You should visit <a href="http://browsehappy.com/">Browse Happy</a> and update your internet browser today! </audio> <p> So you understand the roaring wave of fear that swept through the greatest city in the world just as Monday was dawning&mdash;the stream of flight rising swiftly to a torrent, lashing in a foaming tumult round the railway stations, banked up into a horrible struggle about the shipping in the Thames, and hurrying by every available channel northward and eastward. By ten o&#39;clock the police organisation, and by midday even the railway organisations, were losing coherency, losing shape and efficiency, guttering, softening, running at last in that swift liquefaction of the social body.</p> <p> All the railway lines north of the Thames and the South&ndash;Eastern people at Cannon Street had been warned by midnight on Sunday, and trains were being filled. People were fighting savagely for standing&ndash;room in the carriages even at two o&#39;clock. By three, people were being trampled and crushed even in Bishopsgate Street, a couple of hundred yards or more from Liverpool Street station; revolvers were fired, people stabbed, and the policemen who had been sent to direct the traffic, exhausted and infuriated, were breaking the heads of the people they were called out to protect.</p> <p> And as the day advanced and the engine drivers and stokers refused to return to London, the pressure of the flight drove the people in an ever&ndash;thickening multitude away from the stations and along the northward&ndash;running roads. By midday a Martian had been seen at Barnes, and a cloud of slowly sinking black vapour drove along the Thames and across the flats of Lambeth, cutting off all escape over the bridges in its sluggish advance. Another bank drove over Ealing, and surrounded a little island of survivors on Castle Hill, alive, but unable to escape.</p> <p> After a fruitless struggle to get aboard a North&ndash;Western train at Chalk Farm&mdash;the engines of the trains that had loaded in the goods yard there ploughed through shrieking people, and a dozen stalwart men fought to keep the crowd from crushing the driver against his furnace&mdash;my brother emerged upon the Chalk Farm road, dodged across through a hurrying swarm of vehicles, and had the luck to be foremost in the sack of a cycle shop. The front tire of the machine he got was punctured in dragging it through the window, but he got up and off, notwithstanding, with no further injury than a cut wrist. The steep foot of Haverstock Hill was impassable owing to several overturned horses, and my brother struck into Belsize Road.</p> <p> So he got out of the fury of the panic, and, skirting the Edgware Road, reached Edgware about seven, fasting and wearied, but well ahead of the crowd. Along the road people were standing in the roadway, curious, wondering. He was passed by a number of cyclists, some horsemen, and two motor cars. A mile from Edgware the rim of the wheel broke, and the machine became unridable. He left it by the roadside and trudged through the village. There were shops half opened in the main street of the place, and people crowded on the pavement and in the doorways and windows, staring astonished at this extraordinary procession of fugitives that was beginning. He succeeded in getting some food at an inn.</p> <p> For a time he remained in Edgware not knowing what next to do. The flying people increased in number. Many of them, like my brother, seemed inclined to loiter in the place. There was no fresh news of the invaders from Mars.</p> <p> At that time the road was crowded, but as yet far from congested. Most of the fugitives at that hour were mounted on cycles, but there were soon motor cars, hansom cabs, and carriages hurrying along, and the dust hung in heavy clouds along the road to St. Albans.</p> <p> It was perhaps a vague idea of making his way to Chelmsford, where some friends of his lived, that at last induced my brother to strike into a quiet lane running eastward. Presently he came upon a stile, and, crossing it, followed a footpath northeastward. He passed near several farmhouses and some little places whose names he did not learn. He saw few fugitives until, in a grass lane towards High Barnet, he happened upon two ladies who became his fellow travellers. He came upon them just in time to save them.</p> <p> He heard their screams, and, hurrying round the corner, saw a couple of men struggling to drag them out of the little pony&ndash;chaise in which they had been driving, while a third with difficulty held the frightened pony&#39;s head. One of the ladies, a short woman dressed in white, was simply screaming; the other, a dark, slender figure, slashed at the man who gripped her arm with a whip she held in her disengaged hand.</p> <p> My brother immediately grasped the situation, shouted, and hurried towards the struggle. One of the men desisted and turned towards him, and my brother, realising from his antagonist&#39;s face that a fight was unavoidable, and being an expert boxer, went into him forthwith and sent him down against the wheel of the chaise.</p> <p> It was no time for pugilistic chivalry and my brother laid him quiet with a kick, and gripped the collar of the man who pulled at the slender lady&#39;s arm. He heard the clatter of hoofs, the whip stung across his face, a third antagonist struck him between the eyes, and the man he held wrenched himself free and made off down the lane in the direction from which he had come.</p> <p> Partly stunned, he found himself facing the man who had held the horse&#39;s head, and became aware of the chaise receding from him down the lane, swaying from side to side, and with the women in it looking back. The man before him, a burly rough, tried to close, and he stopped him with a blow in the face. Then, realising that he was deserted, he dodged round and made off down the lane after the chaise, with the sturdy man close behind him, and the fugitive, who had turned now, following remotely.</p> <p> Suddenly he stumbled and fell; his immediate pursuer went headlong, and he rose to his feet to find himself with a couple of antagonists again. He would have had little chance against them had not the slender lady very pluckily pulled up and returned to his help. It seems she had had a revolver all this time, but it had been under the seat when she and her companion were attacked. She fired at six yards&#39; distance, narrowly missing my brother. The less courageous of the robbers made off, and his companion followed him, cursing his cowardice. They both stopped in sight down the lane, where the third man lay insensible.</p> <p> &quot;Take this!&quot; said the slender lady, and she gave my brother her revolver.</p> <p> &quot;Go back to the chaise,&quot; said my brother, wiping the blood from his split lip.</p> <p> She turned without a word&mdash;they were both panting&mdash;and they went back to where the lady in white struggled to hold back the frightened pony.</p> <p> The robbers had evidently had enough of it. When my brother looked again they were retreating.</p> <p> &quot;I&#39;ll sit here,&quot; said my brother, &quot;if I may&quot;; and he got upon the empty front seat. The lady looked over her shoulder.</p> <p> &quot;Give me the reins,&quot; she said, and laid the whip along the pony&#39;s side. In another moment a bend in the road hid the three men from my brother&#39;s eyes.</p> <p> So, quite unexpectedly, my brother found himself, panting, with a cut mouth, a bruised jaw, and bloodstained knuckles, driving along an unknown lane with these two women.</p> <p> He learned they were the wife and the younger sister of a surgeon living at Stanmore, who had come in the small hours from a dangerous case at Pinner, and heard at some railway station on his way of the Martian advance. He had hurried home, roused the women&mdash;their servant had left them two days before&mdash;packed some provisions, put his revolver under the seat&mdash;luckily for my brother&mdash;and told them to drive on to Edgware, with the idea of getting a train there. He stopped behind to tell the neighbours. He would overtake them, he said, at about half past four in the morning, and now it was nearly nine and they had seen nothing of him. They could not stop in Edgware because of the growing traffic through the place, and so they had come into this side lane.</p> <p> That was the story they told my brother in fragments when presently they stopped again, nearer to New Barnet. He promised to stay with them, at least until they could determine what to do, or until the missing man arrived, and professed to be an expert shot with the revolver&mdash;a weapon strange to him&mdash;in order to give them confidence.</p> <p> They made a sort of encampment by the wayside, and the pony became happy in the hedge. He told them of his own escape out of London, and all that he knew of these Martians and their ways. The sun crept higher in the sky, and after a time their talk died out and gave place to an uneasy state of anticipation. Several wayfarers came along the lane, and of these my brother gathered such news as he could. Every broken answer he had deepened his impression of the great disaster that had come on humanity, deepened his persuasion of the immediate necessity for prosecuting this flight. He urged the matter upon them.</p> <p> &quot;We have money,&quot; said the slender woman, and hesitated.</p> <p> Her eyes met my brother&#39;s, and her hesitation ended.</p> <p> &quot;So have I,&quot; said my brother.</p> <p> She explained that they had as much as thirty pounds in gold, besides a five&ndash;pound note, and suggested that with that they might get upon a train at St. Albans or New Barnet. My brother thought that was hopeless, seeing the fury of the Londoners to crowd upon the trains, and broached his own idea of striking across Essex towards Harwich and thence escaping from the country altogether.</p> <p> Mrs. Elphinstone&mdash;that was the name of the woman in white&mdash;would listen to no reasoning, and kept calling upon &quot;George&quot;; but her sister&ndash;in&ndash;law was astonishingly quiet and deliberate, and at last agreed to my brother&#39;s suggestion. So, designing to cross the Great North Road, they went on towards Barnet, my brother leading the pony to save it as much as possible. As the sun crept up the sky the day became excessively hot, and under foot a thick, whitish sand grew burning and blinding, so that they travelled only very slowly. The hedges were grey with dust. And as they advanced towards Barnet a tumultuous murmuring grew stronger.</p> <p> They began to meet more people. For the most part these were staring before them, murmuring indistinct questions, jaded, haggard, unclean. One man in evening dress passed them on foot, his eyes on the ground. They heard his voice, and, looking back at him, saw one hand clutched in his hair and the other beating invisible things. His paroxysm of rage over, he went on his way without once looking back.</p> <p> As my brother&#39;s party went on towards the crossroads to the south of Barnet they saw a woman approaching the road across some fields on their left, carrying a child and with two other children; and then passed a man in dirty black, with a thick stick in one hand and a small portmanteau in the other. Then round the corner of the lane, from between the villas that guarded it at its confluence with the high road, came a little cart drawn by a sweating black pony and driven by a sallow youth in a bowler hat, grey with dust. There were three girls, East End factory girls, and a couple of little children crowded in the cart.</p> <p> &quot;This&#39;ll tike us rahnd Edgware?&quot; asked the driver, wild&ndash;eyed, white&ndash;faced; and when my brother told him it would if he turned to the left, he whipped up at once without the formality of thanks.</p> <p> My brother noticed a pale grey smoke or haze rising among the houses in front of them, and veiling the white facade of a terrace beyond the road that appeared between the backs of the villas. Mrs. Elphinstone suddenly cried out at a number of tongues of smoky red flame leaping up above the houses in front of them against the hot, blue sky. The tumultuous noise resolved itself now into the disorderly mingling of many voices, the gride of many wheels, the creaking of waggons, and the staccato of hoofs. The lane came round sharply not fifty yards from the crossroads.</p> <p> &quot;Good heavens!&quot; cried Mrs. Elphinstone. &quot;What is this you are driving us into?&quot;</p> <p> My brother stopped.</p> <p> For the main road was a boiling stream of people, a torrent of human beings rushing northward, one pressing on another. A great bank of dust, white and luminous in the blaze of the sun, made everything within twenty feet of the ground grey and indistinct and was perpetually renewed by the hurrying feet of a dense crowd of horses and of men and women on foot, and by the wheels of vehicles of every description.</p> <p> &quot;Way!&quot; my brother heard voices crying. &quot;Make way!&quot;</p> <p> It was like riding into the smoke of a fire to approach the meeting point of the lane and road; the crowd roared like a fire, and the dust was hot and pungent. And, indeed, a little way up the road a villa was burning and sending rolling masses of black smoke across the road to add to the confusion.</p> <p> Two men came past them. Then a dirty woman, carrying a heavy bundle and weeping. A lost retriever dog, with hanging tongue, circled dubiously round them, scared and wretched, and fled at my brother&#39;s threat.</p> <p> So much as they could see of the road Londonward between the houses to the right was a tumultuous stream of dirty, hurrying people, pent in between the villas on either side; the black heads, the crowded forms, grew into distinctness as they rushed towards the corner, hurried past, and merged their individuality again in a receding multitude that was swallowed up at last in a cloud of dust.</p> <p> &quot;Go on! Go on!&quot; cried the voices. &quot;Way! Way!&quot;</p> <p> One man&#39;s hands pressed on the back of another. My brother stood at the pony&#39;s head. Irresistibly attracted, he advanced slowly, pace by pace, down the lane.</p> <p> Edgware had been a scene of confusion, Chalk Farm a riotous tumult, but this was a whole population in movement. It is hard to imagine that host. It had no character of its own. The figures poured out past the corner, and receded with their backs to the group in the lane. Along the margin came those who were on foot threatened by the wheels, stumbling in the ditches, blundering into one another.</p> <p> The carts and carriages crowded close upon one another, making little way for those swifter and more impatient vehicles that darted forward every now and then when an opportunity showed itself of doing so, sending the people scattering against the fences and gates of the villas.</p> <p> &quot;Push on!&quot; was the cry. &quot;Push on! They are coming!&quot;</p> <p> In one cart stood a blind man in the uniform of the Salvation Army, gesticulating with his crooked fingers and bawling, &quot;Eternity! Eternity!&quot; His voice was hoarse and very loud so that my brother could hear him long after he was lost to sight in the dust. Some of the people who crowded in the carts whipped stupidly at their horses and quarrelled with other drivers; some sat motionless, staring at nothing with miserable eyes; some gnawed their hands with thirst, or lay prostrate in the bottoms of their conveyances. The horses&#39; bits were covered with foam, their eyes bloodshot.</p> <p> There were cabs, carriages, shop cars, waggons, beyond counting; a mail cart, a road&ndash;cleaner&#39;s cart marked &quot;Vestry of St. Pancras,&quot; a huge timber waggon crowded with roughs. A brewer&#39;s dray rumbled by with its two near wheels splashed with fresh blood.</p> <p> &quot;Clear the way!&quot; cried the voices. &quot;Clear the way!&quot;</p> <p> &quot;Eter&ndash;nity! Eter&ndash;nity!&quot; came echoing down the road.</p> <p> There were sad, haggard women tramping by, well dressed, with children that cried and stumbled, their dainty clothes smothered in dust, their weary faces smeared with tears. With many of these came men, sometimes helpful, sometimes lowering and savage. Fighting side by side with them pushed some weary street outcast in faded black rags, wide&ndash;eyed, loud&ndash;voiced, and foul&ndash;mouthed. There were sturdy workmen thrusting their way along, wretched, unkempt men, clothed like clerks or shopmen, struggling spasmodically; a wounded soldier my brother noticed, men dressed in the clothes of railway porters, one wretched creature in a nightshirt with a coat thrown over it.</p> <p> But varied as its composition was, certain things all that host had in common. There were fear and pain on their faces, and fear behind them. A tumult up the road, a quarrel for a place in a waggon, sent the whole host of them quickening their pace; even a man so scared and broken that his knees bent under him was galvanised for a moment into renewed activity. The heat and dust had already been at work upon this multitude. Their skins were dry, their lips black and cracked. They were all thirsty, weary, and footsore. And amid the various cries one heard disputes, reproaches, groans of weariness and fatigue; the voices of most of them were hoarse and weak. Through it all ran a refrain:</p> <p> &quot;Way! Way! The Martians are coming!&quot;</p> <p> Few stopped and came aside from that flood. The lane opened slantingly into the main road with a narrow opening, and had a delusive appearance of coming from the direction of London. Yet a kind of eddy of people drove into its mouth; weaklings elbowed out of the stream, who for the most part rested but a moment before plunging into it again. A little way down the lane, with two friends bending over him, lay a man with a bare leg, wrapped about with bloody rags. He was a lucky man to have friends.</p> <p> A little old man, with a grey military moustache and a filthy black frock coat, limped out and sat down beside the trap, removed his boot&mdash;his sock was blood&ndash;stained&mdash;shook out a pebble, and hobbled on again; and then a little girl of eight or nine, all alone, threw herself under the hedge close by my brother, weeping.</p> <p> &quot;I can&#39;t go on! I can&#39;t go on!&quot;</p> <p> My brother woke from his torpor of astonishment and lifted her up, speaking gently to her, and carried her to Miss Elphinstone. So soon as my brother touched her she became quite still, as if frightened.</p> <p> &quot;Ellen!&quot; shrieked a woman in the crowd, with tears in her voice&mdash;&quot;Ellen!&quot; And the child suddenly darted away from my brother, crying &quot;Mother!&quot;</p> <p> &quot;They are coming,&quot; said a man on horseback, riding past along the lane.</p> <p> &quot;Out of the way, there!&quot; bawled a coachman, towering high; and my brother saw a closed carriage turning into the lane.</p> <p> The people crushed back on one another to avoid the horse. My brother pushed the pony and chaise back into the hedge, and the man drove by and stopped at the turn of the way. It was a carriage, with a pole for a pair of horses, but only one was in the traces. My brother saw dimly through the dust that two men lifted out something on a white stretcher and put it gently on the grass beneath the privet hedge.</p> <p> One of the men came running to my brother.</p> <p> &quot;Where is there any water?&quot; he said. &quot;He is dying fast, and very thirsty. It is Lord Garrick.&quot;</p> <p> &quot;Lord Garrick!&quot; said my brother; &quot;the Chief Justice?&quot;</p> <p> &quot;The water?&quot; he said.</p> <p> &quot;There may be a tap,&quot; said my brother, &quot;in some of the houses. We have no water. I dare not leave my people.&quot;</p> <p> The man pushed against the crowd towards the gate of the corner house.</p> <p> &quot;Go on!&quot; said the people, thrusting at him. &quot;They are coming! Go on!&quot;</p> <p> Then my brother&#39;s attention was distracted by a bearded, eagle&ndash;faced man lugging a small handbag, which split even as my brother&#39;s eyes rested on it and disgorged a mass of sovereigns that seemed to break up into separate coins as it struck the ground. They rolled hither and thither among the struggling feet of men and horses. The man stopped and looked stupidly at the heap, and the shaft of a cab struck his shoulder and sent him reeling. He gave a shriek and dodged back, and a cartwheel shaved him narrowly.</p> <p> &quot;Way!&quot; cried the men all about him. &quot;Make way!&quot;</p> <p> So soon as the cab had passed, he flung himself, with both hands open, upon the heap of coins, and began thrusting handfuls in his pocket. A horse rose close upon him, and in another moment, half rising, he had been borne down under the horse&#39;s hoofs.</p> <p> &quot;Stop!&quot; screamed my brother, and pushing a woman out of his way, tried to clutch the bit of the horse.</p> <p> Before he could get to it, he heard a scream under the wheels, and saw through the dust the rim passing over the poor wretch&#39;s back. The driver of the cart slashed his whip at my brother, who ran round behind the cart. The multitudinous shouting confused his ears. The man was writhing in the dust among his scattered money, unable to rise, for the wheel had broken his back, and his lower limbs lay limp and dead. My brother stood up and yelled at the next driver, and a man on a black horse came to his assistance.</p> <p> &quot;Get him out of the road,&quot; said he; and, clutching the man&#39;s collar with his free hand, my brother lugged him sideways. But he still clutched after his money, and regarded my brother fiercely, hammering at his arm with a handful of gold. &quot;Go on! Go on!&quot; shouted angry voices behind.</p> <p> &quot;Way! Way!&quot;</p> <p> There was a smash as the pole of a carriage crashed into the cart that the man on horseback stopped. My brother looked up, and the man with the gold twisted his head round and bit the wrist that held his collar. There was a concussion, and the black horse came staggering sideways, and the carthorse pushed beside it. A hoof missed my brother&#39;s foot by a hair&#39;s breadth. He released his grip on the fallen man and jumped back. He saw anger change to terror on the face of the poor wretch on the ground, and in a moment he was hidden and my brother was borne backward and carried past the entrance of the lane, and had to fight hard in the torrent to recover it.</p> <p> He saw Miss Elphinstone covering her eyes, and a little child, with all a child&#39;s want of sympathetic imagination, staring with dilated eyes at a dusty something that lay black and still, ground and crushed under the rolling wheels. &quot;Let us go back!&quot; he shouted, and began turning the pony round. &quot;We cannot cross this&mdash;hell,&quot; he said and they went back a hundred yards the way they had come, until the fighting crowd was hidden. As they passed the bend in the lane my brother saw the face of the dying man in the ditch under the privet, deadly white and drawn, and shining with perspiration. The two women sat silent, crouching in their seat and shivering.</p> <p> Then beyond the bend my brother stopped again. Miss Elphinstone was white and pale, and her sister&ndash;in&ndash;law sat weeping, too wretched even to call upon &quot;George.&quot; My brother was horrified and perplexed. So soon as they had retreated he realised how urgent and unavoidable it was to attempt this crossing. He turned to Miss Elphinstone, suddenly resolute.</p> <p> &quot;We must go that way,&quot; he said, and led the pony round again.</p> <p> For the second time that day this girl proved her quality. To force their way into the torrent of people, my brother plunged into the traffic and held back a cab horse, while she drove the pony across its head. A waggon locked wheels for a moment and ripped a long splinter from the chaise. In another moment they were caught and swept forward by the stream. My brother, with the cabman&#39;s whip marks red across his face and hands, scrambled into the chaise and took the reins from her.</p> <p> &quot;Point the revolver at the man behind,&quot; he said, giving it to her, &quot;if he presses us too hard. No!&mdash;point it at his horse.&quot;</p> <p> Then he began to look out for a chance of edging to the right across the road. But once in the stream he seemed to lose volition, to become a part of that dusty rout. They swept through Chipping Barnet with the torrent; they were nearly a mile beyond the centre of the town before they had fought across to the opposite side of the way. It was din and confusion indescribable; but in and beyond the town the road forks repeatedly, and this to some extent relieved the stress.</p> <p> They struck eastward through Hadley, and there on either side of the road, and at another place farther on they came upon a great multitude of people drinking at the stream, some fighting to come at the water. And farther on, from a lull near East Barnet, they saw two trains running slowly one after the other without signal or order&mdash;trains swarming with people, with men even among the coals behind the engines&mdash;going northward along the Great Northern Railway. My brother supposes they must have filled outside London, for at that time the furious terror of the people had rendered the central termini impossible.</p> <p> Near this place they halted for the rest of the afternoon, for the violence of the day had already utterly exhausted all three of them. They began to suffer the beginnings of hunger; the night was cold, and none of them dared to sleep. And in the evening many people came hurrying along the road nearby their stopping place, fleeing from unknown dangers before them, and going in the direction from which my brother had come.</p> </div> </div> <span class="bottom"> <nav class="passage"> <ul> <li><a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2472/book-onethe-coming-of-the-martians-chapter-15-what-had-happened-in-surrey/" title="Book One—The Coming of the Martians, Chapter 15: What Had Happened in Surrey" class="back">Back</a></li> <li><a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2474/book-onethe-coming-of-the-martians-chapter-17-the-thunder-child/" title="Book One—The Coming of the Martians, Chapter 17: The “Thunder Child”" class="next">Next</a></li> </ul> </nav> </span> </div> </div> </section> <footer screen> <div id="footer-text"> <p> This collection of children's literature is a part of the <a href="http://etc.usf.edu/">Educational Technology Clearinghouse</a> and is funded by various <a href="http://etc.usf.edu/lit2go/welcome/funding/">grants</a>. </p> <p> Copyright &copy; 2006&mdash;2016 by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>, <a href="http://www.coedu.usf.edu/">College of Education</a>, <a href="http://www.usf.edu/">University of South Florida</a>. </p> </div> <ul id="footer-links"> <li><a href="http://etc.usf.edu/lit2go/welcome/license/">License</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/credits/">Credits</a></li> <li><a href="http://etc.usf.edu/lit2go/welcome/faq/">FAQ</a></li> <li><a href="http://etc.usf.edu/lit2go/giving/">Giving</a></li> </ul> </footer> <footer print> <div id="footer-text"> <p>This document was downloaded from <a href="http://etc.usf.edu/lit2go/">Lit2Go</a>, a free online collection of stories and poems in Mp3 (audiobook) format published by the <a href="http://fcit.usf.edu/">Florida Center for Instructional Technology</a>. For more information, including classroom activities, readability data, and original sources, please visit <a href="http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/">http://etc.usf.edu/lit2go/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/</a>.</p> </div> <div id="book-footer"> <p>Lit2Go: <em>The War of the Worlds</em></p> <p>Book One—The Coming of the Martians, Chapter 16: The Exodus from London</p> </div> </footer> <script type="text/javascript" defer src="http://etc.usf.edu/lit2go/js/details.js"></script> </div> </body> </html>
adrianosb/HtmlToText
lit2go.ok/135/the-war-of-the-worlds/2473/book-onethe-coming-of-the-martians-chapter-16-the-exodus-from-london/index.html
HTML
mit
37,992
<!DOCTYPE html><html><head><title>docs/pt/about/</title><link rel="canonical" href="docs/pt/about/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=docs/pt/about/" /></head></html>
davidh83110/davidblog2016
docs/docs/pt/contact/index.html
HTML
mit
238
{% extends "v12/online_licence/reg/2-2_missing_licence_data.html" %} {% block john_licence_no_input %} {% block john_licence_no_label %} {% block john_next_page %} {% block john_postcode %} {% endblock %} {% endblock %} {% endblock %} {% endblock %} <!-- only show this error if incorrectLicenceNo param passed through from route--> <div id='incorrectLicenceNo' class="error-summary" role="alert" aria-labelledby="error-summary-heading-example-2" tabindex="-1"> <h2 class="heading-medium error-summary-heading" id="error-summary-heading-example-2"> Some information doesn’t match our records </h2> <ul class="error-summary-list"> <li data-parsely-id="licence_no"><a href="#licence_no">Check your licence number(s)</a></li> </ul> </div>
christinagyles-ea/water
app/v6/views/v15/add_licence/missing_licence_data.html
HTML
mit
823
<div class="row"> <div class="col-md-offset-4 col-md-4"> <h3>회원가입</h3> <form class="form" ng-submit="userRegist();"> <div class="form-group"> <input type="email" name="email" ng-model="regist.email" placeholder="아이디" class="form-control" required="true"> </div> <div class="form-group"> <input type="name" name="name" ng-model="regist.name" placeholder="닉네임" class="form-control" required="true"> </div> <div class="form-group"> <input type="password" name="password" ng-model="regist.password" placeholder="패스워드" class="form-control" required="true"> </div> <div class="form-group"> <input type="password" name="passwordChk" ng-model="regist.passwordChk" placeholder="패스워드 확인" class="form-control" required="true"> </div> <div class="form-group"> <select name="age" ng-model="regist.age" class="form-control"> <option value="">선택 없음</option> <option value="10">10대 미만</option> <option value="20">20대</option> <option value="30">30대</option> <option value="40">40대</option> <option value="50">50대</option> <option value="60">60대 이상</option> </select> </div> <div class="form-group"> <input type="radio" name="gender" ng-model="regist.gender" ng-value="male"/> 남 &nbsp;&nbsp; <input type="radio" name="gender" ng-model="regist.gender" ng-value="female"/> 여 </div> <button type="submit" class="btn btn-info">회원가입</button> </form> </div> </div>
jumpingnuts/nut-gy-greennuts-client-web
app/views/regist.html
HTML
mit
1,665
<!DOCTYPE html> <html class="light"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="google" value="notranslate" /> <link href="build/images/favicon.png" rel="icon" /> <title>Bible - Windows</title> <!-- Apple specific code --> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="viewport" content="initial-scale=1.0"> <meta name="viewport" content="maximum-scale=1.0"> <meta name="viewport" content="user-scalable=no"> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="build/build.min.css" /> <!-- external libraries --> <script src="build/jquery.min.js"></script> <script src="build/build.min.js"></script> <script src="build/config-custom.js"></script> </head> <body> <div id="startup"> <h1>Browser Bible</h1> <p>Bible study application with Greek and Hebrew.</p> <p>Developed by <a href="http://www.digitalbiblesociety.com/">Digital Bible Society</a> with major contributions from <a href="http://j.hn/">John Dyer</a> and <a href="http://ebible.org/">Michael Johnson</a>. Audio provided by <a href="https://www.faithcomesbyhearing.com/‎">Faith Comes by Hearing</a> and video by <A href="http://www.jesusfilm.org/‎">Jesus Film Project</a>.</p> <p>Source code: <a href="https://github.com/digitalbiblesociety/browserbible-3">Download from Github</a></p> </div> </body> </html>
explorigin/browserbible-3
app/index-build.html
HTML
mit
1,406
--- layout: default title: Typography --- {% include styleguide/typography/index.html %}
quattromani/qoppa
styleguide/typography/index.html
HTML
mit
90
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>AboutUs</title> </head> <body> <h1>AboutUs Page</h1> <p>This is the content of this file.</p> </body> </html>
isjia/nodejs-notes
examples/server-side-development/simple-rect/public/aboutus.html
HTML
mit
188
<!DOCTYPE html> <html> <head> <title>Listy tests</title> <script type="text/JavaScript" src="Solution.js"></script> </head> <body> </body> </html>
owolp/Telerik-Academy
Module-1/JavaScript-Fundamentals/Exam-Preparation/Listy/Solution.html
HTML
mit
149
<!doctype html> <html> <title>npm-cache</title> <meta http-equiv="content-type" value="text/html;utf-8"> <link rel="stylesheet" type="text/css" href="../../static/style.css"> <link rel="canonical" href="https://www.npmjs.org/doc/api/npm-cache.html"> <script async=true src="../../static/toc.js"></script> <body> <div id="wrapper"> <h1><a href="../api/npm-cache.html">npm-cache</a></h1> <p>manage the npm cache programmatically</p> <h2 id="synopsis">SYNOPSIS</h2> <pre><code>npm.commands.cache([args], callback) // helpers npm.commands.cache.clean([args], callback) npm.commands.cache.add([args], callback) npm.commands.cache.read(name, version, forceBypass, callback) </code></pre><h2 id="description">DESCRIPTION</h2> <p>This acts much the same ways as the <a href="../cli/npm-cache.html">npm-cache(1)</a> command line functionality.</p> <p>The callback is called with the package.json data of the thing that is eventually added to or read from the cache.</p> <p>The top level <code>npm.commands.cache(...)</code> functionality is a public interface, and like all commands on the <code>npm.commands</code> object, it will match the command line behavior exactly.</p> <p>However, the cache folder structure and the cache helper functions are considered <strong>internal</strong> API surface, and as such, may change in future releases of npm, potentially without warning or significant version incrementation.</p> <p>Use at your own risk.</p> </div> <table border=0 cellspacing=0 cellpadding=0 id=npmlogo> <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr> <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr> <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr> <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr> <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr> <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr> </table> <p id="footer">npm-cache &mdash; npm@1.4.23</p>
mavenave/liveline
node_modules/npm/html/doc/api/npm-cache.html
HTML
mit
3,622
<!DOCTYPE HTML> <html lang="en"> <head> <title>three.js webgl - roll camera</title> <meta charset="utf-8"> <style type="text/css"> body { color: #000; font-family:Monospace; font-size:13px; text-align:center; font-weight: bold; background-color: #fff; margin: 0px; overflow: hidden; } #info { color:#000; position: absolute; top: 0px; width: 100%; padding: 5px; } a { color: red; } </style> </head> <body> <div id="container"></div> <div id="info"> <a href="http://github.com/mrdoob/three.js" target="_blank">three.js</a> - roll camera example</br> WASD move, RF up/down, QE roll, mouse look around </div> <script type="text/javascript" src="../build/Three.js"></script> <script type="text/javascript" src="js/Stats.js"></script> <script type="text/javascript"> var statsEnabled = true; var container, stats; var camera, scene, renderer; var cross; init(); function init() { // scene and camera scene = new THREE.Scene(); scene.fog = new THREE.FogExp2( 0xffffff, 0.002 ); camera = new THREE.RollCamera( 60, window.innerWidth / window.innerHeight, 1, 1000 ); camera.movementSpeed = 100; camera.lookSpeed = 3; camera.constrainVertical = [ -0.5, 0.5 ]; //camera.autoForward = true; // world var cube = new THREE.CubeGeometry( 20, 60, 20 ); cube.vertices[ 0 ].position.multiplyScalar( 0.01 ); cube.vertices[ 1 ].position.multiplyScalar( 0.01 ); cube.vertices[ 4 ].position.multiplyScalar( 0.01 ); cube.vertices[ 5 ].position.multiplyScalar( 0.01 ); var material = new THREE.MeshLambertMaterial( { color:0xffffff } ); for( var i = 0; i < 500; i++ ) { var mesh = new THREE.Mesh( cube, material ); mesh.position.set(( Math.random() - 0.5 ) * 1000, ( Math.random() - 0.5 ) * 1000, ( Math.random() - 0.5 ) * 1000 ); mesh.updateMatrix(); mesh.matrixAutoUpdate = false; scene.addChild( mesh ); } // create cross /* cross = new THREE.Object3D(); cross.scale.set( 0.5, 0.5, 0.5 ); cross.matrixAutoUpdate = false; var material = new THREE.MeshPhongMaterial( { color:0xff0000 } ); var mesh = new THREE.Mesh( new THREE.Cube( 40, 5, 5 ), material ); mesh.position.x = 20; cross.addChild( mesh ); var material = new THREE.MeshPhongMaterial( { color:0x00ff00 } ); var mesh = new THREE.Mesh( new THREE.Cube( 5, 40, 5 ), material ); mesh.position.y = 20; cross.addChild( mesh ); var material = new THREE.MeshPhongMaterial( { color:0x0000ff } ); var mesh = new THREE.Mesh( new THREE.Cube( 5, 5, 40 ), material ); mesh.position.z = 20; cross.addChild( mesh ); camera.addChild( cross ); */ scene.addChild( camera ); // lights light = new THREE.DirectionalLight( 0xffffff ); light.position.set( 1, 1, 1 ); scene.addChild( light ); light = new THREE.DirectionalLight( 0x002288 ); light.position.set( -1, -1, -1 ); scene.addChild( light ); light = new THREE.AmbientLight( 0x222222 ); scene.addChild( light ); // renderer renderer = new THREE.WebGLRenderer( { antialias: false } ); renderer.setClearColorHex( 0xffffff, 1 ); renderer.setSize( window.innerWidth, window.innerHeight ); container = document.getElementById( 'container' ); container.appendChild( renderer.domElement ); if ( statsEnabled ) { stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; stats.domElement.style.zIndex = 100; container.appendChild( stats.domElement ); } setInterval( loop, 1000 / 60 ); } function loop() { /* cross.matrix.copy( camera.matrix ); cross.matrix.n14 = 0; cross.matrix.n24 = 0; cross.matrix.n34 = -200; cross.matrixWorldNeedsUpdate = true; */ renderer.render( scene, camera ); if ( statsEnabled ) stats.update(); } </script> </body> </html>
pushmatrix/three.js
examples/misc_camera_roll.html
HTML
mit
4,122
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <!-- vim: expandtab ts=4 sw=4 sts=4 tw=78 --> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" version="-//W3C//DTD XHTML 1.1//EN" dir="ltr"> <head> <link rel="icon" href="./favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>phpMyAdmin 3.4.9 - Documentation</title> <link rel="stylesheet" type="text/css" href="docs.css" /> </head> <body id="top"> <div id="header"> <h1> <a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a> 3.4.9 Documentation </h1> </div> <!-- TOP MENU --> <ul class="header"> <li><a href="Documentation.html#top">Top</a></li> <li><a href="Documentation.html#require">Requirements</a></li> <li><a href="Documentation.html#intro">Introduction</a></li> <li><a href="Documentation.html#setup">Installation</a></li> <li><a href="Documentation.html#setup_script">Setup script</a></li> <li><a href="Documentation.html#config">Configuration</a></li> <li><a href="Documentation.html#transformations">Transformations</a></li> <li><a href="Documentation.html#faq"><abbr title="Frequently Asked Questions"> FAQ</abbr></a></li> <li><a href="Documentation.html#developers">Developers</a></li> <li><a href="Documentation.html#copyright">Copyright</a></li> <li><a href="Documentation.html#credits">Credits</a></li> <li><a href="Documentation.html#glossary">Glossary</a></li> </ul> <div id="body"> <ul><li><a href="http://www.phpmyadmin.net/"> phpMyAdmin homepage</a></li> <li><a href="https://sourceforge.net/projects/phpmyadmin/"> SourceForge phpMyAdmin project page</a></li> <li><a href="http://wiki.phpmyadmin.net"> Official phpMyAdmin wiki</a></li> <li>Local documents: <ul><li>Version history: <a href="changelog.php">ChangeLog</a></li> <li>License: <a href="license.php">LICENSE</a></li> </ul> </li> </ul> <!-- REQUIREMENTS --> <h2 id="require">Requirements</h2> <ul><li><b>PHP</b> <ul><li>You need PHP 5.2.0 or newer, with <tt>session</tt> support (<a href="#faq1_31">see <abbr title="Frequently Asked Questions">FAQ</abbr> 1.31</a>) , the Standard PHP Library (SPL) extension and JSON support. </li> <li>To support uploading of ZIP files, you need the PHP <tt>zip</tt> extension.</li> <li>For proper support of multibyte strings (eg. UTF-8, which is currently the default), you should install the mbstring and ctype extensions. </li> <li>You need GD2 support in PHP to display inline thumbnails of JPEGs (&quot;image/jpeg: inline&quot;) with their original aspect ratio</li> <li>When using the &quot;cookie&quot; <a href="#authentication_modes">authentication method</a>, the <a href="http://www.php.net/mcrypt"><tt>mcrypt</tt></a> extension is strongly suggested for most users and is <b>required</b> for 64&#8211;bit machines. Not using mcrypt will cause phpMyAdmin to load pages significantly slower. </li> <li>To support upload progress bars, see <a href="#faq2_9"> <abbr title="Frequently Asked Questions">FAQ</abbr> 2.9</a>.</li> <li>To support BLOB streaming, see PHP and MySQL requirements in <a href="#faq6_25"> <abbr title="Frequently Asked Questions">FAQ</abbr> 6.25</a>.</li> <li>To support XML and Open Document Spreadsheet importing, you need PHP 5.2.17 or newer and the <a href="http://www.php.net/libxml"><tt>libxml</tt></a> extension.</li> </ul> </li> <li><b>MySQL</b> 5.0 or newer (<a href="#faq1_17">details</a>);</li> <li><b>Web browser</b> with cookies enabled.</li> </ul> <!-- INTRODUCTION --> <h2 id="intro">Introduction</h2> <p> phpMyAdmin can manage a whole MySQL server (needs a super-user) as well as a single database. To accomplish the latter you'll need a properly set up MySQL user who can read/write only the desired database. It's up to you to look up the appropriate part in the MySQL manual. </p> <h3>Currently phpMyAdmin can:</h3> <ul><li>browse and drop databases, tables, views, columns and indexes</li> <li>create, copy, drop, rename and alter databases, tables, columns and indexes</li> <li>maintenance server, databases and tables, with proposals on server configuration</li> <li>execute, edit and bookmark any <abbr title="structured query language">SQL</abbr>-statement, even batch-queries</li> <li>load text files into tables</li> <li>create<a href="#footnote_1"><sup>1</sup></a> and read dumps of tables </li> <li>export<a href="#footnote_1"><sup>1</sup></a> data to various formats: <abbr title="Comma Separated Values">CSV</abbr>, <abbr title="Extensible Markup Language">XML</abbr>, <abbr title="Portable Document Format">PDF</abbr>, <abbr title="International Standards Organisation">ISO</abbr>/<abbr title="International Electrotechnical Commission">IEC</abbr> 26300 - OpenDocument Text and Spreadsheet, <abbr title="Microsoft Word 2000">Word</abbr>, and L<sup>A</sup>T<sub><big>E</big></sub>X formats </li> <li>import data and MySQL structures from OpenDocument spreadsheets, as well as <abbr title="Extensible Markup Language">XML</abbr>, <abbr title="Comma Separated Values">CSV</abbr>, and <abbr title="Server Query Language">SQL</abbr> files</li> <li>administer multiple servers</li> <li>manage MySQL users and privileges</li> <li>check referential integrity in MyISAM tables</li> <li>using Query-by-example (QBE), create complex queries automatically connecting required tables</li> <li>create <abbr title="Portable Document Format">PDF</abbr> graphics of your Database layout</li> <li>search globally in a database or a subset of it</li> <li>transform stored data into any format using a set of predefined functions, like displaying BLOB-data as image or download-link </li> <li>track changes on databases, tables and views</li> <li>support InnoDB tables and foreign keys <a href="#faq3_6">(see <abbr title="Frequently Asked Questions">FAQ</abbr> 3.6)</a></li> <li>support mysqli, the improved MySQL extension <a href="#faq1_17"> (see <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17)</a></li> <li>communicate in <a href="http://www.phpmyadmin.net/home_page/translations.php">62 different languages</a> </li> <li>synchronize two databases residing on the same as well as remote servers <a href="#faq9_1">(see <abbr title="Frequently Asked Questions">FAQ</abbr> 9.1)</a> </li> </ul> <h4>A word about users:</h4> <p> Many people have difficulty understanding the concept of user management with regards to phpMyAdmin. When a user logs in to phpMyAdmin, that username and password are passed directly to MySQL. phpMyAdmin does no account management on its own (other than allowing one to manipulate the MySQL user account information); all users must be valid MySQL users.</p> <p class="footnote" id="footnote_1"> <sup>1)</sup> phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) dumps and <abbr title="comma separated values">CSV</abbr> exports if you use PHP with Zlib support (<tt>--with-zlib</tt>) and/or Bzip2 support (<tt>--with-bz2</tt>). Proper support may also need changes in <tt>php.ini</tt>.</p> <!-- INSTALLATION --> <h2 id="setup">Installation</h2> <ol><li><a href="#quick_install">Quick Install</a></li> <li><a href="#setup_script">Setup script usage</a></li> <li><a href="#linked-tables">phpMyAdmin configuration storage</a></li> <li><a href="#upgrading">Upgrading from an older version</a></li> <li><a href="#authentication_modes">Using authentication modes</a></li> </ol> <p class="important"> phpMyAdmin does not apply any special security methods to the MySQL database server. It is still the system administrator's job to grant permissions on the MySQL databases properly. phpMyAdmin's &quot;Privileges&quot; page can be used for this. </p> <p class="important"> Warning for <acronym title="Apple Macintosh">Mac</acronym> users:<br /> if you are on a <acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> version before <abbr title="operating system">OS</abbr> X, StuffIt unstuffs with <acronym title="Apple Macintosh">Mac</acronym> formats.<br /> So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin scripts before uploading them to your server, as PHP seems not to like <acronym title="Apple Macintosh">Mac</acronym>-style end of lines character (&quot;<tt>\r</tt>&quot;).</p> <h3 id="quick_install">Quick Install</h3> <ol><li>Choose an appropriate distribution kit from the phpmyadmin.net Downloads page. Some kits contain only the English messages, others contain all languages in UTF-8 format (this should be fine in most situations), others contain all languages and all character sets. We'll assume you chose a kit whose name looks like <tt>phpMyAdmin-x.x.x-all-languages.tar.gz</tt>. </li> <li>Untar or unzip the distribution (be sure to unzip the subdirectories): <tt>tar -xzvf phpMyAdmin_x.x.x-all-languages.tar.gz</tt> in your webserver's document root. If you don't have direct access to your document root, put the files in a directory on your local machine, and, after step 4, transfer the directory on your web server using, for example, ftp.</li> <li>Ensure that all the scripts have the appropriate owner (if PHP is running in safe mode, having some scripts with an owner different from the owner of other scripts will be a problem). See <a href="#faq4_2"> <abbr title="Frequently Asked Questions">FAQ</abbr> 4.2</a> and <a href="#faq1_26"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.26</a> for suggestions.</li> <li>Now you must configure your installation. There are two methods that can be used. Traditionally, users have hand-edited a copy of <tt>config.inc.php</tt>, but now a wizard-style setup script is provided for those who prefer a graphical installation. Creating a <tt>config.inc.php</tt> is still a quick way to get started and needed for some advanced features. <ul><li>To manually create the file, simply use your text editor to create the file <tt>config.inc.php</tt> (you can copy <tt>config.sample.inc.php</tt> to get minimal configuration file) in the main (top-level) phpMyAdmin directory (the one that contains <tt>index.php</tt>). phpMyAdmin first loads <tt>libraries/config.default.php</tt> and then overrides those values with anything found in <tt>config.inc.php</tt>. If the default value is okay for a particular setting, there is no need to include it in <tt>config.inc.php</tt>. You'll need a few directives to get going, a simple configuration may look like this: <pre> &lt;?php $cfg['blowfish_secret'] = 'ba17c1ec07d65003'; // use here a value of your choice $i=0; $i++; $cfg['Servers'][$i]['auth_type'] = 'cookie'; ?&gt; </pre> Or, if you prefer to not be prompted every time you log in: <pre> &lt;?php $i=0; $i++; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'cbb74bc'; // use here your password $cfg['Servers'][$i]['auth_type'] = 'config'; ?&gt; </pre> For a full explanation of possible configuration values, see the <a href="#config">Configuration Section</a> of this document.</li> <li id="setup_script">Instead of manually editing <tt>config.inc.php</tt>, you can use the <a href="setup/">Setup Script</a>. First you must manually create a folder <tt>config</tt> in the phpMyAdmin directory. This is a security measure. On a Linux/Unix system you can use the following commands: <pre> cd phpMyAdmin mkdir config # create directory for saving chmod o+rw config # give it world writable permissions </pre> And to edit an existing configuration, copy it over first: <pre> cp config.inc.php config/ # copy current configuration for editing chmod o+w config/config.inc.php # give it world writable permissions </pre> On other platforms, simply create the folder and ensure that your web server has read and write access to it. <a href="#faq1_26">FAQ 1.26</a> can help with this.<br /><br /> Next, open <tt><a href="setup/">setup/</a> </tt>in your browser. Note that <strong>changes are not saved to disk until explicitly choose <tt>Save</tt></strong> from the <i>Configuration</i> area of the screen. Normally the script saves the new config.inc.php to the <tt>config/</tt> directory, but if the webserver does not have the proper permissions you may see the error "Cannot load or save configuration." Ensure that the <tt> config/</tt> directory exists and has the proper permissions - or use the <tt>Download</tt> link to save the config file locally and upload (via FTP or some similar means) to the proper location.<br /><br /> Once the file has been saved, it must be moved out of the <tt> config/</tt> directory and the permissions must be reset, again as a security measure: <pre> mv config/config.inc.php . # move file to current directory chmod o-rw config.inc.php # remove world read and write permissions rm -rf config # remove not needed directory </pre> Now the file is ready to be used. You can choose to review or edit the file with your favorite editor, if you prefer to set some advanced options which the setup script does not provide.</li></ul></li> <li>If you are using the <tt>auth_type</tt> &quot;config&quot;, it is suggested that you protect the phpMyAdmin installation directory because using config does not require a user to enter a password to access the phpMyAdmin installation. Use of an alternate authentication method is recommended, for example with HTTP&#8211;AUTH in a <a href="#glossary"><i>.htaccess</i></a> file or switch to using <tt>auth_type</tt> cookie or http. See the <a href="#faqmultiuser"> multi&#8211;user sub&#8211;section</a> of this <abbr title="Frequently Asked Questions">FAQ</abbr> for additional information, especially <a href="#faq4_4"> <abbr title="Frequently Asked Questions">FAQ</abbr> 4.4</a>.</li> <li>Open the <a href="index.php">main phpMyAdmin directory</a> in your browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication mode.</li> <li>You should deny access to the <tt>./libraries</tt> and <tt>./setup/lib</tt> subfolders in your webserver configuration. For Apache you can use supplied .htaccess file in that folder, for other webservers, you should configure this yourself. Such configuration prevents from possible path exposure and cross side scripting vulnerabilities that might happen to be found in that code.</li> <li> It is generally good idea to protect public phpMyAdmin installation against access by robots as they usually can not do anything good there. You can do this using <code>robots.txt</code> file in root of your webserver or limit access by web server configuration. You can find example <code>.htaccess</code> file which can help you achieve this in <code>contrib</code> directory in phpMyAdmin. </li> </ol> <h3 id="linked-tables">phpMyAdmin configuration storage</h3> <p> For a whole set of new features (bookmarks, comments, <abbr title="structured query language">SQL</abbr>-history, tracking mechanism, <abbr title="Portable Document Format">PDF</abbr>-generation, column contents transformation, etc.) you need to create a set of special tables. Those tables can be located in your own database, or in a central database for a multi-user installation (this database would then be accessed by the controluser, so no other user should have rights to it).</p> <p> Please look at your <tt>./scripts/</tt> directory, where you should find a file called <i>create_tables.sql</i>. (If you are using a Windows server, pay special attention to <a href="#faq1_23"> <abbr title="Frequently Asked Questions">FAQ</abbr> 1.23</a>).</p> <p> If you already had this infrastructure and upgraded to MySQL 4.1.2 or newer, please use <i>./scripts/upgrade_tables_mysql_4_1_2+.sql</i> and then create new tables by importing <i>./scripts/create_tables.sql</i>.</p> <p> You can use your phpMyAdmin to create the tables for you. Please be aware that you may need special (administrator) privileges to create the database and tables, and that the script may need some tuning, depending on the database name.</p> <p> After having imported the <i>./scripts/create_tables.sql</i> file, you should specify the table names in your <i>./config.inc.php</i> file. The directives used for that can be found in the <a href="#config">Configuration section</a>. You will also need to have a controluser with the proper rights to those tables (see section <a href="#authentication_modes">Using authentication modes</a> below).</p> <h3 id="upgrading">Upgrading from an older version</h3> <p> Simply copy <i>./config.inc.php</i> from your previous installation into the newly unpacked one. Configuration files from old versions may require some tweaking as some options have been changed or removed; in particular, the definition of <tt>$cfg['AttributeTypes']</tt> has changed so you better remove it from your file and just use the default one. For compatibility with PHP 6, remove a <tt>set_magic_quotes_runtime(0);</tt> statement that you might find near the end of your configuration file.</p> <p> You should <strong>not</strong> copy <tt>libraries/config.default.php</tt> over <tt>config.inc.php</tt> because the default configuration file is version-specific.</p> <p> If you have upgraded your MySQL server from a version previous to 4.1.2 to version 5.x or newer and if you use the phpMyAdmin configuration storage, you should run the SQL script found in <tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>.</p> <h3 id="authentication_modes">Using authentication modes</h3> <ul><li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie authentication modes are recommended in a <b>multi-user environment</b> where you want to give users access to their own database and don't want them to play around with others.<br /> Nevertheless be aware that MS Internet Explorer seems to be really buggy about cookies, at least till version 6.<br /> Even in a <b>single-user environment</b>, you might prefer to use <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie mode so that your user/password pair are not in clear in the configuration file. </li> <li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie authentication modes are more secure: the MySQL login information does not need to be set in the phpMyAdmin configuration file (except possibly for the <a href="#controluser">controluser</a>).<br /> However, keep in mind that the password travels in plain text, unless you are using the HTTPS protocol.<br /> In cookie mode, the password is stored, encrypted with the blowfish algorithm, in a temporary cookie.</li> <li id="pmausr">Note: this section is only applicable if your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br /> For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie' modes, phpMyAdmin needs a controluser that has <b>only</b> the <tt>SELECT</tt> privilege on the <i>`mysql`.`user` (all columns except `Password`)</i>, <i>`mysql`.`db` (all columns)</i>, <i>`mysql`.`host` (all columns)</i> and <i>`mysql`.`tables_priv` (all columns except `Grantor` and `Timestamp`)</i> tables.<br /> You must specify the details for the <a href="#controluser">controluser</a> in the <tt>config.inc.php</tt> file under the <tt><a href="#cfg_Servers_controluser" class="configrule"> $cfg['Servers'][$i]['controluser']</a></tt> and <tt><a href="#cfg_Servers_controlpass" class="configrule"> $cfg['Servers'][$i]['controlpass']</a></tt> settings.<br /> The following example assumes you want to use <tt>pma</tt> as the controluser and <tt>pmapass</tt> as the controlpass, but <b>this is only an example: use something else in your file!</b> Input these statements from the phpMyAdmin SQL Query window or mysql command&#8211;line client.<br /> Of course you have to replace <tt>localhost</tt> with the webserver's host if it's not the same as the MySQL server's one. <pre> GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass'; GRANT SELECT ( Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv, Index_priv, Alter_priv, Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv, Execute_priv, Repl_slave_priv, Repl_client_priv ) ON mysql.user TO 'pma'@'localhost'; GRANT SELECT ON mysql.db TO 'pma'@'localhost'; GRANT SELECT ON mysql.host TO 'pma'@'localhost'; GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv) ON mysql.tables_priv TO 'pma'@'localhost';</pre> If you want to use the many new relation and bookmark features: <pre> GRANT SELECT, INSERT, UPDATE, DELETE ON &lt;pma_db&gt;.* TO 'pma'@'localhost'; </pre> (this of course requires that your <a href="#linked-tables">phpMyAdmin configuration storage</a> be set up). <br /></li> <li>Then each of the <i>true</i> users should be granted a set of privileges on a set of particular databases. Normally you shouldn't give global privileges to an ordinary user, unless you understand the impact of those privileges (for example, you are creating a superuser).<br /> For example, to grant the user <i>real_user</i> with all privileges on the database <i>user_base</i>:<br /> <pre> GRANT ALL PRIVILEGES ON user_base.* TO 'real_user'@localhost IDENTIFIED BY 'real_password'; </pre> What the user may now do is controlled entirely by the MySQL user management system.<br /> With <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication mode, you don't need to fill the user/password fields inside the <a href="#cfg_Servers" class="configrule">$cfg['Servers']</a> array.</li> </ul> <h4>'<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication mode</h4> <ul><li>Uses <abbr title="HyperText Transfer Protocol">HTTP</abbr> Basic authentication method and allows you to log in as any valid MySQL user.</li> <li>Is supported with most PHP configurations. For <abbr title="Internet Information Services">IIS</abbr> (<abbr title="Internet Server Application Programming Interface">ISAPI</abbr>) support using <abbr title="Common Gateway Interface">CGI</abbr> PHP see <a href="#faq1_32"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.32</a>, for using with Apache <abbr title="Common Gateway Interface">CGI</abbr> see <a href="#faq1_35"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.35</a>.</li> <li>See also <a href="#faq4_4"> <abbr title="Frequently Asked Questions">FAQ</abbr> 4.4</a> about not using the <i>.htaccess</i> mechanism along with '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication mode.</li> </ul> <h4>'cookie' authentication mode</h4> <ul><li>You can use this method as a replacement for the <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication (for example, if you're running <abbr title="Internet Information Services">IIS</abbr>).</li> <li>Obviously, the user must enable cookies in the browser, but this is now a requirement for all authentication modes.</li> <li>With this mode, the user can truly log out of phpMyAdmin and log in back with the same username.</li> <li>If you want to log in to arbitrary server see <a href="#AllowArbitraryServer" class="configrule"> $cfg['AllowArbitraryServer']</a> directive.</li> <li>As mentioned in the <a href="#require">requirements</a> section, having the <tt>mcrypt</tt> extension will speed up access considerably, but is not required.</li> </ul> <h4>'signon' authentication mode</h4> <ul><li>This mode is a convenient way of using credentials from another application to authenticate to phpMyAdmin.</li> <li>The other application has to store login information into session data.</li> <li>More details in the <a href="#cfg_Servers_auth_type">auth_type</a> section.</li> </ul> <h4>'config' authentication mode</h4> <ul><li>This mode is the less secure one because it requires you to fill the <a href="#servers_user" class="configrule"> $cfg['Servers'][$i]['user']</a> and <a href="#servers_user" class="configrule"> $cfg['Servers'][$i]['password']</a> fields (and as a result, anyone who can read your config.inc.php can discover your username and password). <br /> But you don't need to setup a &quot;controluser&quot; here: using the <a href="#servers_only_db" class="configrule"> $cfg['Servers'][$i]['only_db']</a> might be enough.</li> <li>In the <a href="#faqmultiuser"> <abbr title="Internet service provider">ISP</abbr> <abbr title="Frequently Asked Questions">FAQ</abbr></a> section, there is an entry explaining how to protect your configuration file.</li> <li>For additional security in this mode, you may wish to consider the Host authentication <a href="#servers_allowdeny_order" class="configrule"> $cfg['Servers'][$i]['AllowDeny']['order']</a> and <a href="#servers_allowdeny_rules" class="configrule"> $cfg['Servers'][$i]['AllowDeny']['rules']</a> configuration directives.</li> <li>Unlike cookie and http, does not require a user to log in when first loading the phpMyAdmin site. This is by design but could allow any user to access your installation. Use of some restriction method is suggested, perhaps a <a href="#glossary">.htaccess</a> file with the HTTP-AUTH directive or disallowing incoming HTTP requests at one&#8217;s router or firewall will suffice (both of which are beyond the scope of this manual but easily searchable with Google).</li> </ul> <h4 id="swekey">Swekey authentication</h4> <p> The Swekey is a low cost authentication USB key that can be used in web applications.<br /><br /> When Swekey authentication is activated, phpMyAdmin requires the users's Swekey to be plugged before entering the login page (currently supported for cookie authentication mode only). Swekey Authentication is disabled by default.<br /><br /> To enable it, add the following line to <tt>config.inc.php</tt>: </p> <pre> $cfg['Servers'][$i]['auth_swekey_config'] = '/etc/swekey.conf'; </pre> <p> You then have to create the <tt>swekey.conf</tt> file that will associate each user with their Swekey Id. It is important to place this file outside of your web server's document root (in the example, it is located in <tt>/etc</tt>). A self documented sample file is provided in the <tt>contrib</tt> directory. Feel free to use it with your own users' information.<br /><br /> If you want to purchase a Swekey please visit <a href="http://phpmyadmin.net/auth_key">http://phpmyadmin.net/auth_key</a> since this link provides funding for phpMyAdmin. </p> <!-- CONFIGURATION --> <h2 id="config">Configuration</h2> <p> <span class="important">Warning for <acronym title="Apple Macintosh">Mac</acronym> users:</span> PHP does not seem to like <acronym title="Apple Macintosh">Mac</acronym> end of lines character (&quot;<tt>\r</tt>&quot;). So ensure you choose the option that allows to use the *nix end of line character (&quot;<tt>\n</tt>&quot;) in your text editor before saving a script you have modified.</p> <p> <span class="important">Configuration note:</span> Almost all configurable data is placed in <tt>config.inc.php</tt>. If this file does not exist, please refer to the <a href="#setup">Quick install</a> section to create one. This file only needs to contain the parameters you want to change from their corresponding default value in <tt>libraries/config.default.php</tt>.</p> <p> The parameters which relate to design (like colors) are placed in <tt>themes/themename/layout.inc.php</tt>. You might also want to create <i>config.footer.inc.php</i> and <i>config.header.inc.php</i> files to add your site specific code to be included on start and end of each page.</p> <dl><dt id="cfg_PmaAbsoluteUri">$cfg['PmaAbsoluteUri'] string</dt> <dd>Sets here the complete <abbr title="Uniform Resource Locator">URL</abbr> (with full path) to your phpMyAdmin installation's directory. E.g. <tt>http://www.your_web.net/path_to_your_phpMyAdmin_directory/</tt>. Note also that the <abbr title="Uniform Resource Locator">URL</abbr> on some web servers are case&#8211;sensitive. Don&#8217;t forget the trailing slash at the end.<br /><br /> Starting with version 2.3.0, it is advisable to try leaving this blank. In most cases phpMyAdmin automatically detects the proper setting. Users of port forwarding will need to set PmaAbsoluteUri (<a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=1340187&amp;group_id=23067&amp;atid=377409">more info</a>). A good test is to browse a table, edit a row and save it. There should be an error message if phpMyAdmin is having trouble auto&#8211;detecting the correct value. If you get an error that this must be set or if the autodetect code fails to detect your path, please post a bug report on our bug tracker so we can improve the code.</dd> <dt id="cfg_PmaNoRelation_DisableWarning">$cfg['PmaNoRelation_DisableWarning'] boolean</dt> <dd>Starting with version 2.3.0 phpMyAdmin offers a lot of features to work with master / foreign &#8211; tables (see <a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>). <br /> If you tried to set this up and it does not work for you, have a look on the &quot;Structure&quot; page of one database where you would like to use it. You will find a link that will analyze why those features have been disabled.<br /> If you do not want to use those features set this variable to <tt>TRUE</tt> to stop this message from appearing.</dd> <dt id="cfg_SuhosinDisableWarning">$cfg['SuhosinDisableWarning'] boolean</dt> <dd>A warning is displayed on the main page if Suhosin is detected. You can set this parameter to <tt>TRUE</tt> to stop this message from appearing.</dd> <dt id="cfg_McryptDisableWarning">$cfg['McryptDisableWarning'] boolean</dt> <dd>Disable the default warning that is displayed if mcrypt is missing for cookie authentication. You can set this parameter to <tt>TRUE</tt> to stop this message from appearing.</dd> <dt id="cfg_TranslationWarningThreshold">$cfg['TranslationWarningThreshold'] integer</dt> <dd>Show warning about incomplete translations on certain threshold.</dd> <dt id="cfg_AllowThirdPartyFraming">$cfg['AllowThirdPartyFraming'] boolean</dt> <dd>Setting this to <tt>true</tt> allows a page located on a different domain to call phpMyAdmin inside a frame, and is a potential security hole allowing cross-frame scripting attacks.</dd> <dt id="cfg_blowfish_secret">$cfg['blowfish_secret'] string</dt> <dd>The &quot;cookie&quot; auth_type uses blowfish algorithm to encrypt the password.<br /> If you are using the &quot;cookie&quot; auth_type, enter here a random passphrase of your choice. It will be used internally by the blowfish algorithm: you won&#8217;t be prompted for this passphrase. There is no maximum length for this secret.<br /><br /> Since version 3.1.0 phpMyAdmin can generate this on the fly, but it makes a bit weaker security as this generated secret is stored in session and furthermore it makes impossible to recall user name from cookie.</dd> <dt id="cfg_Servers">$cfg['Servers'] array</dt> <dd>Since version 1.4.2, phpMyAdmin supports the administration of multiple MySQL servers. Therefore, a <a href="#cfg_Servers" class="configrule">$cfg['Servers']</a>-array has been added which contains the login information for the different servers. The first <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a> contains the hostname of the first server, the second <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a> the hostname of the second server, etc. In <tt>./libraries/config.default.php</tt>, there is only one section for server definition, however you can put as many as you need in <tt>./config.inc.php</tt>, copy that block or needed parts (you don't have to define all settings, just those you need to change).</dd> <dt id="cfg_Servers_host">$cfg['Servers'][$i]['host'] string</dt> <dd>The hostname or <abbr title="Internet Protocol">IP</abbr> address of your $i-th MySQL-server. E.g. localhost.</dd> <dt id="cfg_Servers_port">$cfg['Servers'][$i]['port'] string</dt> <dd>The port-number of your $i-th MySQL-server. Default is 3306 (leave blank). If you use &quot;localhost&quot; as the hostname, MySQL ignores this port number and connects with the socket, so if you want to connect to a port different from the default port, use &quot;127.0.0.1&quot; or the real hostname in <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a>. </dd> <dt id="cfg_Servers_socket">$cfg['Servers'][$i]['socket'] string</dt> <dd>The path to the socket to use. Leave blank for default.<br /> To determine the correct socket, check your MySQL configuration or, using the <tt>mysql</tt> command&#8211;line client, issue the <tt>status</tt> command. Among the resulting information displayed will be the socket used.</dd> <dt id="cfg_Servers_ssl">$cfg['Servers'][$i]['ssl'] boolean</dt> <dd>Whether to enable SSL for connection to MySQL server. </dd> <dt id="cfg_Servers_connect_type">$cfg['Servers'][$i]['connect_type'] string</dt> <dd>What type connection to use with the MySQL server. Your options are <tt>'socket'</tt> and <tt>'tcp'</tt>. It defaults to 'tcp' as that is nearly guaranteed to be available on all MySQL servers, while sockets are not supported on some platforms.<br /><br /> To use the socket mode, your MySQL server must be on the same machine as the Web server.</dd> <dt id="cfg_Servers_extension">$cfg['Servers'][$i]['extension'] string</dt> <dd>What php MySQL extension to use for the connection. Valid options are: <br /><br /> <tt><i>mysql</i></tt> : The classic MySQL extension. This is the recommended and default method at this time.<br /><br /> <tt><i>mysqli</i></tt> : The improved MySQL extension. This extension became available with php 5.0.0 and is the recommended way to connect to a server running MySQL 4.1.x or newer.</dd> <dt id="cfg_Servers_compress">$cfg['Servers'][$i]['compress'] boolean</dt> <dd>Whether to use a compressed protocol for the MySQL server connection or not (experimental).<br /> This feature requires PHP&nbsp;&gt;=&nbsp;4.3.0.</dd> <dt id="controluser"> <span id="cfg_Servers_controluser">$cfg['Servers'][$i]['controluser']</span> string<br /> <span id="cfg_Servers_controlpass">$cfg['Servers'][$i]['controlpass']</span> string </dt> <dd>This special account is used for 2 distinct purposes: to make possible all relational features (see <a href="#pmadb" class="configrule">$cfg['Servers'][$i]['pmadb']</a>) and, for a MySQL server running with <tt>--skip-show-database</tt>, to enable a multi-user installation (<abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication mode).<br /><br /> When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication modes (or 'config' authentication mode since phpMyAdmin 2.2.1), you need to supply the details of a MySQL account that has <tt>SELECT</tt> privilege on the <i>mysql.user (all columns except &quot;Password&quot;)</i>, <i>mysql.db (all columns)</i> and <i>mysql.tables_priv (all columns except &quot;Grantor&quot; and &quot;Timestamp&quot;) </i>tables. This account is used to check what databases the user will see at login.<br /> Please see the <a href="#setup">install section</a> on &quot;Using authentication modes&quot; for more information.<br /><br /> In phpMyAdmin versions before 2.2.5, those were called &quot;stduser/stdpass&quot;.</dd> <dt id="cfg_Servers_auth_type">$cfg['Servers'][$i]['auth_type'] string <tt>['<abbr title="HyperText Transfer Protocol">HTTP</abbr>'|'http'|'cookie'|'config'|'signon']</tt></dt> <dd>Whether config or cookie or <abbr title="HyperText Transfer Protocol">HTTP</abbr> or signon authentication should be used for this server. <ul><li>'config' authentication (<tt>$auth_type&nbsp;=&nbsp;'config'</tt>) is the plain old way: username and password are stored in <i>config.inc.php</i>.</li> <li>'cookie' authentication mode (<tt>$auth_type&nbsp;=&nbsp;'cookie'</tt>) as introduced in 2.2.3 allows you to log in as any valid MySQL user with the help of cookies. Username and password are stored in cookies during the session and password is deleted when it ends. This can also allow you to log in in arbitrary server if <tt><a href="#AllowArbitraryServer" class="configrule">$cfg['AllowArbitraryServer']</a></tt> enabled. </li> <li>'<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication (was called 'advanced' in previous versions and can be written also as 'http') (<tt>$auth_type&nbsp;=&nbsp;'<abbr title="HyperText Transfer Protocol">HTTP</abbr>'</tt>) as introduced in 1.3.0 allows you to log in as any valid MySQL user via HTTP-Auth.</li> <li>'signon' authentication mode (<tt>$auth_type&nbsp;=&nbsp;'signon'</tt>) as introduced in 2.10.0 allows you to log in from prepared PHP session data. This is useful for implementing single signon from another application. Sample way how to seed session is in signon example: <code>scripts/signon.php</code>. There is also alternative example using OpenID - <code>scripts/openid.php</code>. You need to configure <a href="#cfg_Servers_SignonSession" class="configrule">session name</a> and <a href="#cfg_Servers_SignonURL" class="configrule">signon URL</a> to use this authentication method.</li> </ul> Please see the <a href="#setup">install section</a> on &quot;Using authentication modes&quot; for more information. </dd> <dt id="servers_auth_http_realm"> <span id="cfg_Servers_auth_http_realm">$cfg['Servers'][$i]['auth_http_realm']</span> string<br /> </dt> <dd> When using auth_type = '<abbr title="HyperText Transfer Protocol">HTTP</abbr>', this field allows to define a custom <abbr title="HyperText Transfer Protocol">HTTP</abbr> Basic Auth Realm which will be displayed to the user. If not explicitly specified in your configuration, a string combined of "phpMyAdmin " and either <a href="#cfg_Servers_verbose" class="configrule">$cfg['Servers'][$i]['verbose']</a> or <a href="#cfg_Servers_host" class="configrule">$cfg['Servers'][$i]['host']</a> will be used. </dd> <dt id="servers_auth_swekey_config"> <span id="cfg_Servers_auth_swekey_config">$cfg['Servers'][$i]['auth_swekey_config']</span> string<br /> </dt> <dd> The name of the file containing <a href="#swekey">Swekey</a> ids and login names for hardware authentication. Leave empty to deactivate this feature. </dd> <dt id="servers_user"> <span id="cfg_Servers_user">$cfg['Servers'][$i]['user']</span> string<br /> <span id="cfg_Servers_password">$cfg['Servers'][$i]['password']</span> string </dt> <dd> When using auth_type = 'config', this is the user/password-pair which phpMyAdmin will use to connect to the MySQL server. This user/password pair is not needed when <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication is used and should be empty.</dd> <dt id="servers_nopassword"> <span id="cfg_Servers_nopassword">$cfg['Servers'][$i]['nopassword']</span> boolean </dt> <dd> Allow attempt to log in without password when a login with password fails. This can be used together with http authentication, when authentication is done some other way and phpMyAdmin gets user name from auth and uses empty password for connecting to MySQL. Password login is still tried first, but as fallback, no password method is tried.</dd> <dt id="servers_only_db"> <span id="cfg_Servers_only_db">$cfg['Servers'][$i]['only_db']</span> string or array </dt> <dd> If set to a (an array of) database name(s), only this (these) database(s) will be shown to the user. Since phpMyAdmin 2.2.1, this/these database(s) name(s) may contain MySQL wildcards characters (&quot;_&quot; and &quot;%&quot;): if you want to use literal instances of these characters, escape them (I.E. use <tt>'my\_db'</tt> and not <tt>'my_db'</tt>).<br /> This setting is an efficient way to lower the server load since the latter does not need to send MySQL requests to build the available database list. But <span class="important">it does not replace the privileges rules of the MySQL database server</span>. If set, it just means only these databases will be displayed but <span class="important">not that all other databases can't be used.</span> <br /><br /> An example of using more that one database: <tt>$cfg['Servers'][$i]['only_db'] = array('db1', 'db2');</tt> <br /><br /> As of phpMyAdmin 2.5.5 the order inside the array is used for sorting the databases in the left frame, so that you can individually arrange your databases.<br /> If you want to have certain databases at the top, but don't care about the others, you do not need to specify all other databases. Use: <tt>$cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');</tt> instead to tell phpMyAdmin that it should display db3 and db4 on top, and the rest in alphabetic order.</dd> <dt><span id="cfg_Servers_hide_db">$cfg['Servers'][$i]['hide_db']</span> string </dt> <dd>Regular expression for hiding some databases from unprivileged users. This only hides them from listing, but a user is still able to access them (using, for example, the SQL query area). To limit access, use the MySQL privilege system. <br /><br /> For example, to hide all databases starting with the letter &#34;a&#34;, use<br /> <pre>$cfg['Servers'][$i]['hide_db'] = '^a';</pre> and to hide both &#34;db1&#34; and &#34;db2&#34; use <br /> <pre>$cfg['Servers'][$i]['hide_db'] = '^(db1|db2)$';</pre> More information on regular expressions can be found in the <a href="http://php.net/manual/en/reference.pcre.pattern.syntax.php"> PCRE pattern syntax</a> portion of the PHP reference manual. </dd> <dt id="cfg_Servers_verbose">$cfg['Servers'][$i]['verbose'] string</dt> <dd>Only useful when using phpMyAdmin with multiple server entries. If set, this string will be displayed instead of the hostname in the pull-down menu on the main page. This can be useful if you want to show only certain databases on your system, for example. For HTTP auth, all non-US-ASCII characters will be stripped.</dd> <dt id="pmadb"> <span id="cfg_Servers_pmadb">$cfg['Servers'][$i]['pmadb']</span> string </dt> <dd>The name of the database containing the phpMyAdmin configuration storage. <br /><br /> See the <a href="#linked-tables">phpMyAdmin configuration storage</a> section in this document to see the benefits of this feature, and for a quick way of creating this database and the needed tables. <br /><br /> If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in <tt>$cfg['Servers'][$i]['pmadb']</tt>. For a multi-user installation, set this parameter to the name of your central database containing the phpMyAdmin configuration storage.</dd> <dt id="bookmark"> <span id="cfg_Servers_bookmarktable">$cfg['Servers'][$i]['bookmarktable']</span> string </dt> <dd>Since release 2.2.0 phpMyAdmin allows users to bookmark queries. This can be useful for queries you often run.<br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>enter the table name in <tt>$cfg['Servers'][$i]['bookmarktable']</tt></li> </ul> </dd> <dt id="relation"> <span id="cfg_Servers_relation">$cfg['Servers'][$i]['relation']</span> string </dt> <dd>Since release 2.2.4 you can describe, in a special 'relation' table, which column is a key in another table (a foreign key). phpMyAdmin currently uses this to <ul><li>make clickable, when you browse the master table, the data values that point to the foreign table;</li> <li>display in an optional tool-tip the &quot;display column&quot; when browsing the master table, if you move the mouse to a column containing a foreign key (use also the 'table_info' table);<br /> (see <a href="#faqdisplay"><abbr title="Frequently Asked Questions"> FAQ</abbr> 6.7</a>)</li> <li>in edit/insert mode, display a drop-down list of possible foreign keys (key value and &quot;display column&quot; are shown)<br /> (see <a href="#faq6_21"><abbr title="Frequently Asked Questions"> FAQ</abbr> 6.21</a>)</li> <li>display links on the table properties page, to check referential integrity (display missing foreign keys) for each described key; </li> <li>in query-by-example, create automatic joins (see <a href="#faq6_6"> <abbr title="Frequently Asked Questions">FAQ</abbr> 6.6</a>)</li> <li>enable you to get a <abbr title="Portable Document Format">PDF</abbr> schema of your database (also uses the table_coords table).</li> </ul> The keys can be numeric or character.<br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the relation table name in <tt>$cfg['Servers'][$i]['relation']</tt></li> <li>now as normal user open phpMyAdmin and for each one of your tables where you want to use this feature, click &quot;Structure/Relation view/&quot; and choose foreign columns. </li> </ul> Please note that in the current version, <tt>master_db</tt> must be the same as <tt>foreign_db</tt>. Those columns have been put in future development of the cross-db relations. </dd> <dt id="table_info"> <span id="cfg_Servers_table_info">$cfg['Servers'][$i]['table_info']</span> string </dt> <dd> Since release 2.3.0 you can describe, in a special 'table_info' table, which column is to be displayed as a tool-tip when moving the cursor over the corresponding key.<br /> This configuration variable will hold the name of this special table. To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['table_info']</tt> (e.g. 'pma_table_info')</li> <li>then for each table where you want to use this feature, click &quot;Structure/Relation view/Choose column to display&quot; to choose the column.</li> </ul> Usage tip: <a href="#faqdisplay">Display column</a>. </dd> <dt id="table_coords"> <span id="cfg_Servers_table_coords">$cfg['Servers'][$i]['table_coords']</span> string<br /> <span id="cfg_Servers_pdf_pages">$cfg['Servers'][$i]['pdf_pages']</span> string </dt> <dd>Since release 2.3.0 you can have phpMyAdmin create <abbr title="Portable Document Format">PDF</abbr> pages showing the relations between your tables. To do this it needs two tables &quot;pdf_pages&quot; (storing information about the available <abbr title="Portable Document Format">PDF</abbr> pages) and &quot;table_coords&quot; (storing coordinates where each table will be placed on a <abbr title="Portable Document Format">PDF</abbr> schema output).<br /><br /> You must be using the &quot;relation&quot; feature.<br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the correct table names in <tt>$cfg['Servers'][$i]['table_coords']</tt> and <tt>$cfg['Servers'][$i]['pdf_pages']</tt></li> </ul> Usage tips: <a href="#faqpdf"><abbr title="Portable Document Format">PDF</abbr> output</a>. </dd> <dt id="col_com"> <span id="cfg_Servers_column_info">$cfg['Servers'][$i]['column_info']</span> string </dt> <dd><!-- This part requires a content update! --> Since release 2.3.0 you can store comments to describe each column for each table. These will then be shown on the &quot;printview&quot;. <br /><br /> Starting with release 2.5.0, comments are consequently used on the table property pages and table browse view, showing up as tool-tips above the column name (properties page) or embedded within the header of table in browse view. They can also be shown in a table dump. Please see the relevant configuration directives later on.<br /><br /> Also new in release 2.5.0 is a MIME-transformation system which is also based on the following table structure. See <a href="#transformations"> Transformations</a> for further information. To use the MIME-transformation system, your column_info table has to have the three new columns 'mimetype', 'transformation', 'transformation_options'. <br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['column_info']</tt> (e.g. 'pma_column_info')</li> <li>to update your PRE-2.5.0 Column_comments Table use this: <pre> ALTER TABLE `pma_column_comments` ADD `mimetype` VARCHAR( 255 ) NOT NULL, ADD `transformation` VARCHAR( 255 ) NOT NULL, ADD `transformation_options` VARCHAR( 255 ) NOT NULL; </pre> and remember that the Variable in <i>config.inc.php</i> has been renamed from<br /> <tt>$cfg['Servers'][$i]['column_comments']</tt> to <tt>$cfg['Servers'][$i]['column_info']</tt></li> </ul> </dd> <dt id="history"> <span id="cfg_Servers_history">$cfg['Servers'][$i]['history']</span> string </dt> <dd>Since release 2.5.0 you can store your <abbr title="structured query language">SQL</abbr> history, which means all queries you entered manually into the phpMyAdmin interface. If you don't want to use a table-based history, you can use the JavaScript-based history. Using that, all your history items are deleted when closing the window.<br /><br /> Using <a href="#cfg_QueryHistoryMax" class="configrule">$cfg['QueryHistoryMax']</a> you can specify an amount of history items you want to have on hold. On every login, this list gets cut to the maximum amount.<br /><br /> The query history is only available if JavaScript is enabled in your browser.<br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['history']</tt> (e.g. 'pma_history') </li> </ul> </dd> <dt id="tracking"> <span id="cfg_Servers_tracking">$cfg['Servers'][$i]['tracking']</span> string </dt> <dd> Since release 3.3.x a tracking mechanism is available. It helps you to track every <abbr title="structured query language">SQL</abbr> command which is executed by phpMyAdmin. The mechanism supports logging of data manipulation and data definition statements. After enabling it you can create versions of tables. <br/><br/> The creation of a version has two effects: <ul> <li>phpMyAdmin saves a snapshot of the table, including structure and indexes.</li> <li>phpMyAdmin logs all commands which change the structure and/or data of the table and links these commands with the version number.</li> </ul> Of course you can view the tracked changes. On the "Tracking" page a complete report is available for every version. For the report you can use filters, for example you can get a list of statements within a date range. When you want to filter usernames you can enter * for all names or you enter a list of names separated by ','. In addition you can export the (filtered) report to a file or to a temporary database. <br/><br/> To allow the usage of this functionality: <ul> <li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['tracking']</tt> (e.g. 'pma_tracking')</li> </ul> </dd> <dt id="tracking2"> <span id="cfg_Servers_tracking_version_auto_create">$cfg['Servers'][$i]['tracking_version_auto_create']</span> boolean </dt> <dd> Whether the tracking mechanism creates versions for tables and views automatically. Default value is false. <br/><br/> If this is set to true and you create a table or view with <ul> <li>CREATE TABLE ...</li> <li>CREATE VIEW ...</li> </ul> and no version exists for it, the mechanism will create a version for you automatically. </dd> <dt id="tracking3"> <span id="cfg_Servers_tracking_default_statements">$cfg['Servers'][$i]['tracking_default_statements']</span> string </dt> <dd> Defines the list of statements the auto-creation uses for new versions. Default value is <br/> <pre>CREATE TABLE,ALTER TABLE,DROP TABLE,RENAME TABLE, CREATE INDEX,DROP INDEX, INSERT,UPDATE,DELETE,TRUNCATE,REPLACE, CREATE VIEW,ALTER VIEW,DROP VIEW, CREATE DATABASE,ALTER DATABASE,DROP DATABASE</pre> </dd> <dt id="tracking4"> <span id="cfg_Servers_tracking_add_drop_view">$cfg['Servers'][$i]['tracking_add_drop_view']</span> boolean </dt> <dd> Whether a DROP VIEW IF EXISTS statement will be added as first line to the log when creating a view. Default value is true. <br/><br/> </dd> <dt id="tracking5"> <span id="cfg_Servers_tracking_add_drop_table">$cfg['Servers'][$i]['tracking_add_drop_table']</span> boolean </dt> <dd> Whether a DROP TABLE IF EXISTS statement will be added as first line to the log when creating a table. Default value is true. <br/><br/> </dd> <dt id="tracking6"> <span id="cfg_Servers_tracking_add_drop_database">$cfg['Servers'][$i]['tracking_add_drop_database']</span> boolean </dt> <dd> Whether a DROP DATABASE IF EXISTS statement will be added as first line to the log when creating a database. Default value is true. <br/><br/> </dd> <dt id="userconfig"> <span id="cfg_Servers_userconfig">$cfg['Servers'][$i]['userconfig']</span> string </dt> <dd> Since release 3.4.x phpMyAdmin allows users to set most preferences by themselves and store them in the database. <br /><br /> If you don't allow for storing preferences in <a href="#pmadb">pmadb</a>, users can still personalize phpMyAdmin, but settings will be saved in browser's local storage, or, it is is unavailable, until the end of session. <br /><br /> To allow the usage of this functionality: <ul> <li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['userconfig']</tt></li> </ul> </dd> <dt id="designer_coords"> <span id="cfg_Servers_designer_coords">$cfg['Servers'][$i]['designer_coords']</span> string </dt> <dd>Since release 2.10.0 a Designer interface is available; it permits to visually manage the relations. <br /><br /> To allow the usage of this functionality: <ul><li>set up <a href="#pmadb">pmadb</a> and the phpMyAdmin configuration storage</li> <li>put the table name in <tt>$cfg['Servers'][$i]['designer_coords']</tt> (e.g. 'pma_designer_coords') </li> </ul> </dd> <dt><span id="cfg_Servers_verbose_check">$cfg['Servers'][$i]['verbose_check']</span> boolean </dt> <dd>Because release 2.5.0 introduced the new MIME-transformation support, the column_info table got enhanced with three new columns. If the above variable is set to <tt>TRUE</tt> (default) phpMyAdmin will check if you have the latest table structure available. If not, it will emit a warning to the superuser.<br /><br /> You can disable this checking behavior by setting the variable to false, which should offer a performance increase.<br /><br /> Recommended to set to FALSE, when you are sure, your table structure is up to date.</dd> <dt><span id="cfg_Servers_AllowRoot">$cfg['Servers'][$i]['AllowRoot']</span> boolean</dt> <dd>Whether to allow root access. This is just a shortcut for the AllowDeny rules below. </dd> <dt><span id="cfg_Servers_AllowNoPassword">$cfg['Servers'][$i]['AllowNoPassword']</span> boolean</dt> <dd>Whether to allow logins without a password. The default value of <tt>false</tt> for this parameter prevents unintended access to a MySQL server with was left with an empty password for root or on which an anonymous (blank) user is defined. </dd> <dt id="servers_allowdeny_order"> <span id="cfg_Servers_AllowDeny_order">$cfg['Servers'][$i]['AllowDeny']['order']</span> string </dt> <dd>If your rule order is empty, then <abbr title="Internet Protocol">IP</abbr> authorization is disabled.<br /><br /> If your rule order is set to <tt>'deny,allow'</tt> then the system applies all deny rules followed by allow rules. Access is allowed by default. Any client which does not match a Deny command or does match an Allow command will be allowed access to the server. <br /><br /> If your rule order is set to <tt>'allow,deny'</tt> then the system applies all allow rules followed by deny rules. Access is denied by default. Any client which does not match an Allow directive or does match a Deny directive will be denied access to the server.<br /><br /> If your rule order is set to 'explicit', authorization is performed in a similar fashion to rule order 'deny,allow', with the added restriction that your host/username combination <b>must</b> be listed in the <i>allow</i> rules, and not listed in the <i>deny</i> rules. This is the <b>most</b> secure means of using Allow/Deny rules, and was available in Apache by specifying allow and deny rules without setting any order.<br /><br /> Please also see <a href="#cfg_TrustedProxies">$cfg['TrustedProxies']</a> for detecting IP address behind proxies. </dd> <dt id="servers_allowdeny_rules"> <span id="cfg_Servers_AllowDeny_rules">$cfg['Servers'][$i]['AllowDeny']['rules']</span> array of strings </dt> <dd>The general format for the rules is as such: <pre> &lt;'allow' | 'deny'&gt; &lt;username&gt; [from] &lt;ipmask&gt; </pre> If you wish to match all users, it is possible to use a <tt>'%'</tt> as a wildcard in the <i>username</i> field.<br /> There are a few shortcuts you can use in the <i>ipmask</i> field as well (please note that those containing SERVER_ADDRESS might not be available on all webservers): <pre> 'all' -&gt; 0.0.0.0/0 'localhost' -&gt; 127.0.0.1/8 'localnetA' -&gt; SERVER_ADDRESS/8 'localnetB' -&gt; SERVER_ADDRESS/16 'localnetC' -&gt; SERVER_ADDRESS/24 </pre> Having an empty rule list is equivalent to either using <tt>'allow % from all'</tt> if your rule order is set to <tt>'deny,allow'</tt> or <tt>'deny % from all'</tt> if your rule order is set to <tt>'allow,deny'</tt> or <tt>'explicit'</tt>.<br /><br /> For the <abbr title="Internet Protocol">IP</abbr> matching system, the following work:<br /> <tt>xxx.xxx.xxx.xxx</tt> (an exact <abbr title="Internet Protocol">IP</abbr> address)<br /> <tt>xxx.xxx.xxx.[yyy-zzz]</tt> (an <abbr title="Internet Protocol">IP</abbr> address range)<br /> <tt>xxx.xxx.xxx.xxx/nn</tt> (CIDR, Classless Inter-Domain Routing type <abbr title="Internet Protocol">IP</abbr> addresses)<br /> But the following does not work:<br /> <tt>xxx.xxx.xxx.xx[yyy-zzz]</tt> (partial <abbr title="Internet Protocol">IP</abbr> address range)<br /> Also IPv6 addresses are not supported. </dd> <dt><span id="cfg_Servers_DisableIS">$cfg['Servers'][$i]['DisableIS']</span> boolean</dt> <dd>Disable using <tt>INFORMATION_SCHEMA</tt> to retrieve information (use <tt>SHOW</tt> commands instead), because of speed issues when many databases are present. Currently used in some parts of the code, more to come. </dd> <dt><span id="cfg_Servers_ShowDatabasesCommand">$cfg['Servers'][$i]['ShowDatabasesCommand']</span> string</dt> <dd>On a server with a huge number of databases, the default <tt>SHOW DATABASES</tt> command used to fetch the name of available databases will probably be too slow, so it can be replaced by faster commands (see <tt>libraries/config.default.php</tt> for examples). </dd> <dt><span id="cfg_Servers_CountTables">$cfg['Servers'][$i]['CountTables']</span> boolean</dt> <dd>Whether to count the number of tables for each database when preparing the list of databases for the navigation frame. </dd> <dt><span id="cfg_Servers_SignonSession">$cfg['Servers'][$i]['SignonSession']</span> string</dt> <dd>Name of session which will be used for signon authentication method. </dd> <dt><span id="cfg_Servers_SignonURL">$cfg['Servers'][$i]['SignonURL']</span> string</dt> <dd>URL where user will be redirected to log in for signon authentication method. Should be absolute including protocol. </dd> <dt><span id="cfg_Servers_LogoutURL">$cfg['Servers'][$i]['LogoutURL']</span> string</dt> <dd>URL where user will be redirected after logout (doesn't affect config authentication method). Should be absolute including protocol. </dd> <dt id="cfg_ServerDefault">$cfg['ServerDefault'] integer</dt> <dd>If you have more than one server configured, you can set <tt>$cfg['ServerDefault']</tt> to any one of them to autoconnect to that server when phpMyAdmin is started, or set it to 0 to be given a list of servers without logging in.<br /> If you have only one server configured, <tt>$cfg['ServerDefault']</tt> MUST be set to that server.</dd> <dt id="cfg_AjaxEnable">$cfg['AjaxEnable'] boolean</dt> <dd>Defines whether to refresh only parts of certain pages using Ajax techniques. Applies only where a non-Ajax behavior is possible; for example, the Designer feature is Ajax-only so this directive does not apply to it.</dd> <dt id="cfg_VersionCheck">$cfg['VersionCheck'] boolean</dt> <dd>Enables check for latest versions using javascript on main phpMyAdmin page.</dd> <dt id="cfg_MaxDbList">$cfg['MaxDbList'] integer</dt> <dd>The maximum number of database names to be displayed in the navigation frame and the database list.</dd> <dt id="cfg_MaxTableList">$cfg['MaxTableList'] integer</dt> <dd>The maximum number of table names to be displayed in the main panel's list (except on the Export page). This limit is also enforced in the navigation panel when in Light mode.</dd> <dt id="cfg_MaxCharactersInDisplayedSQL">$cfg['MaxCharactersInDisplayedSQL'] integer</dt> <dd>The maximum number of characters when a SQL query is displayed. The default limit of 1000 should be correct to avoid the display of tons of hexadecimal codes that represent BLOBs, but some users have real SQL queries that are longer than 1000 characters. Also, if a query's length exceeds this limit, this query is not saved in the history.</dd> <dt id="cfg_OBGzip">$cfg['OBGzip'] string/boolean</dt> <dd>Defines whether to use GZip output buffering for increased speed in <abbr title="HyperText Transfer Protocol">HTTP</abbr> transfers.<br /> Set to true/false for enabling/disabling. When set to 'auto' (string), phpMyAdmin tries to enable output buffering and will automatically disable it if your browser has some problems with buffering. IE6 with a certain patch is known to cause data corruption when having enabled buffering.</dd> <dt id="cfg_PersistentConnections">$cfg['PersistentConnections'] boolean</dt> <dd>Whether persistent connections should be used or not (mysql_connect or mysql_pconnect).</dd> <dt id="cfg_ForceSSL">$cfg['ForceSSL'] boolean</dt> <dd>Whether to force using https while accessing phpMyAdmin.</dd> <dt id="cfg_ExecTimeLimit">$cfg['ExecTimeLimit'] integer [number of seconds]</dt> <dd>Set the number of seconds a script is allowed to run. If seconds is set to zero, no time limit is imposed.<br /> This setting is used while importing/exporting dump files and in the Synchronize feature but has no effect when PHP is running in safe mode.</dd> <dt id="cfg_SessionSavePath">$cfg['SessionSavePath'] string</dt> <dd>Path for storing session data (<a href="http://php.net/session_save_path">session_save_path PHP parameter</a>).</dd> <dt id="cfg_MemoryLimit">$cfg['MemoryLimit'] string [number of bytes]</dt> <dd>Set the number of bytes a script is allowed to allocate. If set to zero, no limit is imposed.<br /> This setting is used while importing/exporting dump files and at some other places in phpMyAdmin so you definitely don't want to put here a too low value. It has no effect when PHP is running in safe mode.<br /> You can also use any string as in php.ini, eg. '16M'. Ensure you don't omit the suffix (16 means 16 bytes!)</dd> <dt id="cfg_SkipLockedTables">$cfg['SkipLockedTables'] boolean</dt> <dd>Mark used tables and make it possible to show databases with locked tables (since MySQL 3.23.30).</dd> <dt id="cfg_ShowSQL">$cfg['ShowSQL'] boolean</dt> <dd>Defines whether <abbr title="structured query language">SQL</abbr> queries generated by phpMyAdmin should be displayed or not.</dd> <dt id="cfg_AllowUserDropDatabase">$cfg['AllowUserDropDatabase'] boolean</dt> <dd>Defines whether normal users (non-administrator) are allowed to delete their own database or not. If set as FALSE, the link &quot;Drop Database&quot; will not be shown, and even a &quot;DROP DATABASE mydatabase&quot; will be rejected. Quite practical for <abbr title="Internet service provider">ISP</abbr>'s with many customers.<br /> Please note that this limitation of SQL queries is not as strict as when using MySQL privileges. This is due to nature of SQL queries which might be quite complicated. So this choice should be viewed as help to avoid accidental dropping rather than strict privilege limitation.</dd> <dt id="cfg_Confirm">$cfg['Confirm'] boolean</dt> <dd>Whether a warning (&quot;Are your really sure...&quot;) should be displayed when you're about to lose data.</dd> <dt id="cfg_LoginCookieRecall">$cfg['LoginCookieRecall'] boolean</dt> <dd>Define whether the previous login should be recalled or not in cookie authentication mode.<br /><br /> This is automatically disabled if you do not have configured <tt><a href="#cfg_blowfish_secret">$cfg['blowfish_secret']</a></tt>. </dd> <dt id="cfg_LoginCookieValidity">$cfg['LoginCookieValidity'] integer [number of seconds]</dt> <dd>Define how long is login cookie valid. Please note that php configuration option <a href="http://php.net/manual/en/session.configuration.php#ini.session.gc-maxlifetime">session.gc_maxlifetime</a> might limit session validity and if session is lost, login cookie is also invalidated. So it is a good idea to set <code>session.gc_maxlifetime</code> not lower than the value of $cfg['LoginCookieValidity'].</dd> <dt id="cfg_LoginCookieStore">$cfg['LoginCookieStore'] integer [number of seconds]</dt> <dd>Define how long login cookie should be stored in browser. Default 0 means that it will be kept for existing session. This is recommended for not trusted environments.</dd> <dt id="cfg_LoginCookieDeleteAll">$cfg['LoginCookieDeleteAll'] boolean</dt> <dd>If enabled (default), logout deletes cookies for all servers, otherwise only for current one. Setting this to false makes it easy to forget to log out from other server, when you are using more of them.</dd> <dt id="cfg_UseDbSearch">$cfg['UseDbSearch'] boolean</dt> <dd>Define whether the "search string inside database" is enabled or not.</dd> <dt id="cfg_IgnoreMultiSubmitErrors">$cfg['IgnoreMultiSubmitErrors'] boolean</dt> <dd>Define whether phpMyAdmin will continue executing a multi-query statement if one of the queries fails. Default is to abort execution.</dd> <dt id="cfg_VerboseMultiSubmit">$cfg['VerboseMultiSubmit'] boolean</dt> <dd>Define whether phpMyAdmin will output the results of each query of a multi-query statement embedded into the <abbr title="structured query language">SQL</abbr> output as inline comments. Defaults to <tt>TRUE</tt>.</dd> <dt id="AllowArbitraryServer"> <span id="cfg_AllowArbitraryServer">$cfg['AllowArbitraryServer']</span> boolean</dt> <dd>If enabled, allows you to log in to arbitrary servers using cookie auth and permits to specify servers of your choice in the Synchronize dialog. <br /><br /> <b>NOTE:</b> Please use this carefully, as this may allow users access to MySQL servers behind the firewall where your <abbr title="HyperText Transfer Protocol">HTTP</abbr> server is placed. </dd> <dt id ="cfg_Error_Handler_display">$cfg['Error_Handler']['display'] boolean</dt> <dd>Whether to display errors from PHP or not.</dd> <dt id ="cfg_Error_Handler_gather">$cfg['Error_Handler']['gather'] boolean</dt> <dd>Whether to gather errors from PHP or not.</dd> <dt id="cfg_LeftFrameLight">$cfg['LeftFrameLight'] boolean</dt> <dd>Defines whether to use a select-based menu and display only the current tables in the left frame (smaller page). Only in Non-Lightmode you can use the feature to display nested folders using <a href="#cfg_LeftFrameTableSeparator" class="configrule">$cfg['LeftFrameTableSeparator']</a> </dd> <dt id="cfg_LeftFrameDBTree">$cfg['LeftFrameDBTree'] boolean</dt> <dd>Defines whether to display the names of databases (in the selector) using a tree, see also <a href="#cfg_LeftFrameDBSeparator" class="configrule">$cfg['LeftFrameDBSeparator']</a>. </dd> <dt id="cfg_LeftFrameDBSeparator">$cfg['LeftFrameDBSeparator'] string or array</dt> <dd>The string used to separate the parts of the database name when showing them in a tree. Alternatively you can specify more strings in an array and all of them will be used as a separator.</dd> <dt id="cfg_LeftFrameTableSeparator">$cfg['LeftFrameTableSeparator'] string</dt> <dd>Defines a string to be used to nest table spaces. Defaults to '__'. This means if you have tables like 'first__second__third' this will be shown as a three-level hierarchy like: first &gt; second &gt; third. If set to FALSE or empty, the feature is disabled. NOTE: You should not use this separator at the beginning or end of a table name or multiple times after another without any other characters in between.</dd> <dt id="cfg_LeftFrameTableLevel">$cfg['LeftFrameTableLevel'] string</dt> <dd>Defines how many sublevels should be displayed when splitting up tables by the above separator.</dd> <dt id="cfg_ShowTooltip">$cfg['ShowTooltip'] boolean</dt> <dd>Defines whether to display table comment as tool-tip in left frame or not.</dd> <dt id="cfg_ShowTooltipAliasDB">$cfg['ShowTooltipAliasDB'] boolean</dt> <dd>If tool-tips are enabled and a DB comment is set, this will flip the comment and the real name. That means that if you have a table called 'user0001' and add the comment 'MyName' on it, you will see the name 'MyName' used consequently in the left frame and the tool-tip shows the real name of the DB.</dd> <dt id="cfg_ShowTooltipAliasTB">$cfg['ShowTooltipAliasTB'] boolean/string</dt> <dd>Same as <a href="#cfg_ShowTooltipAliasDB" class="configrule">$cfg['ShowTooltipAliasDB']</a>, except this works for table names. When setting this to 'nested', the Alias of the Tablename is only used to split/nest the tables according to the <a href="#cfg_LeftFrameTableSeparator" class="configrule">$cfg['LeftFrameTableSeparator']</a> directive. So only the folder is called like the Alias, the tablename itself stays the real tablename.</dd> <dt id="cfg_LeftDisplayLogo">$cfg['LeftDisplayLogo'] boolean</dt> <dd>Defines whether or not to display the phpMyAdmin logo at the top of the left frame. Defaults to <tt>TRUE</tt>.</dd> <dt id="cfg_LeftLogoLink">$cfg['LeftLogoLink'] string</dt> <dd>Enter URL where logo in the navigation frame will point to. For use especially with self made theme which changes this. The default value for this is <tt>main.php</tt>.</dd> <dt id="cfg_LeftLogoLinkWindow">$cfg['LeftLogoLinkWindow'] string</dt> <dd>Whether to open the linked page in the main window (<tt>main</tt>) or in a new one (<tt>new</tt>). Note: use <tt>new</tt> if you are linking to <tt>phpmyadmin.net</tt>.</dd> <dt id="cfg_LeftDisplayTableFilterMinimum">$cfg['LeftDisplayTableFilterMinimum'] integer</dt> <dd>Defines the minimum number of tables to display a JavaScript filter box above the list of tables in the left frame. Defaults to <tt>30</tt>. To disable the filter completely some high number can he used (e.g. 9999)</dd> <dt id="cfg_LeftDisplayServers">$cfg['LeftDisplayServers'] boolean</dt> <dd>Defines whether or not to display a server choice at the top of the left frame. Defaults to FALSE.</dd> <dt id="cfg_DisplayServersList">$cfg['DisplayServersList'] boolean</dt> <dd>Defines whether to display this server choice as links instead of in a drop-down. Defaults to FALSE (drop-down).</dd> <dt id="cfg_DisplayDatabasesList">$cfg['DisplayDatabasesList'] boolean or text</dt> <dd>Defines whether to display database choice in light navigation frame as links instead of in a drop-down. Defaults to 'auto' - on main page list is shown, when database is selected, only drop down is displayed.</dd> <dt id="cfg_LeftDefaultTabTable">$cfg['LeftDefaultTabTable'] string</dt> <dd>Defines the tab displayed by default when clicking the small icon next to each table name in the navigation panel. Possible values: &quot;tbl_structure.php&quot;, &quot;tbl_sql.php&quot;, &quot;tbl_select.php&quot;, &quot;tbl_change.php&quot; or &quot;sql.php&quot;.</dd> <dt id="cfg_ShowStats">$cfg['ShowStats'] boolean</dt> <dd>Defines whether or not to display space usage and statistics about databases and tables.<br /> Note that statistics requires at least MySQL 3.23.3 and that, at this date, MySQL doesn't return such information for Berkeley DB tables.</dd> <dt><span id="cfg_ShowServerInfo">$cfg['ShowServerInfo'] </span>boolean</dt> <dd>Defines whether to display detailed server information on main page. You can additionally hide more information by using <tt><a href="#cfg_Servers_verbose">$cfg['Servers'][$i]['verbose']</a></tt>. </dd> <dt><span id="cfg_ShowPhpInfo">$cfg['ShowPhpInfo'] </span>boolean<br /> <span id="cfg_ShowChgPassword">$cfg['ShowChgPassword'] </span>boolean<br /> <span id="cfg_ShowCreateDb">$cfg['ShowCreateDb'] </span>boolean </dt> <dd>Defines whether to display the &quot;PHP information&quot; and &quot;Change password &quot; links and form for creating database or not at the starting main (right) frame. This setting does not check MySQL commands entered directly.<br /><br /> Please note that to block the usage of phpinfo() in scripts, you have to put this in your <i>php.ini</i>: <pre>disable_functions = phpinfo()</pre> Also note that enabling the &quot;Change password &quot; link has no effect with &quot;config&quot; authentication mode: because of the hard coded password value in the configuration file, end users can't be allowed to change their passwords.</dd> <dt id="cfg_SuggestDBName">$cfg['SuggestDBName'] boolean</dt> <dd>Defines whether to suggest a database name on the &quot;Create Database&quot; form or to keep the textfield empty.</dd> <dt id="cfg_NavigationBarIconic">$cfg['NavigationBarIconic'] string</dt> <dd>Defines whether navigation bar buttons and the right panel top menu contain text or symbols only. A value of TRUE displays icons, FALSE displays text and 'both' displays both icons and text.</dd> <dt id="cfg_ShowAll">$cfg['ShowAll'] boolean</dt> <dd>Defines whether a user should be displayed a &quot;show all (records)&quot; button in browse mode or not.</dd> <dt id="cfg_MaxRows">$cfg['MaxRows'] integer</dt> <dd>Number of rows displayed when browsing a result set. If the result set contains more rows, &quot;Previous&quot; and &quot;Next&quot; links will be shown.</dd> <dt id="cfg_Order">$cfg['Order'] string [<tt>DESC</tt>|<tt>ASC</tt>|<tt>SMART</tt>]</dt> <dd>Defines whether columns are displayed in ascending (<tt>ASC</tt>) order, in descending (<tt>DESC</tt>) order or in a &quot;smart&quot; (<tt>SMART</tt>) order - I.E. descending order for columns of type TIME, DATE, DATETIME and TIMESTAMP, ascending order else- by default.</dd> <dt id="cfg_DisplayBinaryAsHex">$cfg['DisplayBinaryAsHex'] boolean </dt> <dd>Defines whether the &quot;Show binary contents as HEX&quot; browse option is ticked by default.</dd> <dt id="cfg_ProtectBinary">$cfg['ProtectBinary'] boolean or string</dt> <dd>Defines whether <tt>BLOB</tt> or <tt>BINARY</tt> columns are protected from editing when browsing a table's content. Valid values are: <ul><li><tt>FALSE</tt> to allow editing of all columns;</li> <li><tt>'blob'</tt> to allow editing of all columns except <tt>BLOBS</tt>;</li> <li><tt>'all'</tt> to disallow editing of all <tt>BINARY</tt> or <tt>BLOB</tt> columns.</li> </ul> </dd> <dt id="cfg_ShowFunctionFields">$cfg['ShowFunctionFields'] boolean</dt> <dd>Defines whether or not MySQL functions fields should be initially displayed in edit/insert mode. Since version 2.10, the user can toggle this setting from the interface. </dd> <dt id="cfg_ShowFieldTypesInDataEditView">$cfg['ShowFieldTypesInDataEditView'] boolean</dt> <dd>Defines whether or not type fields should be initially displayed in edit/insert mode. The user can toggle this setting from the interface. </dd> <dt id="cfg_CharEditing">$cfg['CharEditing'] string</dt> <dd>Defines which type of editing controls should be used for CHAR and VARCHAR columns. Possible values are: <ul><li>input - this allows to limit size of text to size of columns in MySQL, but has problems with newlines in columns</li> <li>textarea - no problems with newlines in columns, but also no length limitations</li> </ul> Default is old behavior so input.</dd> <dt id="cfg_InsertRows">$cfg['InsertRows'] integer</dt> <dd>Defines the maximum number of concurrent entries for the Insert page.</dd> <dt id="cfg_ForeignKeyMaxLimit">$cfg['ForeignKeyMaxLimit'] integer</dt> <dd>If there are fewer items than this in the set of foreign keys, then a drop-down box of foreign keys is presented, in the style described by the <a href="#cfg_ForeignKeyDropdownOrder" class="configrule">$cfg['ForeignKeyDropdownOrder']</a> setting.</dd> <dt id="cfg_ForeignKeyDropdownOrder">$cfg['ForeignKeyDropdownOrder'] array</dt> <dd>For the foreign key drop-down fields, there are several methods of display, offering both the key and value data. The contents of the array should be one or both of the following strings: <i>'content-id'</i>, <i>'id-content'</i>.</dd> <dt><span id="cfg_ZipDump">$cfg['ZipDump'] </span>boolean<br /> <span id="cfg_GZipDump">$cfg['GZipDump'] </span>boolean<br /> <span id="cfg_BZipDump">$cfg['BZipDump'] </span>boolean </dt> <dd>Defines whether to allow the use of zip/GZip/BZip2 compression when creating a dump file</dd> <dt><span id="cfg_CompressOnFly">$cfg['CompressOnFly'] </span>boolean<br /> </dt> <dd>Defines whether to allow on the fly compression for GZip/BZip2 compressed exports. This doesn't affect smaller dumps and allows users to create larger dumps that won't otherwise fit in memory due to php memory limit. Produced files contain more GZip/BZip2 headers, but all normal programs handle this correctly.</dd> <dt id="cfg_LightTabs">$cfg['LightTabs'] boolean</dt> <dd>If set to <tt>TRUE</tt>, use less graphically intense tabs on the top of the mainframe.</dd> <dt id="cfg_PropertiesIconic">$cfg['PropertiesIconic'] string</dt> <dd>If set to <tt>TRUE</tt>, will display icons instead of text for db and table properties links (like 'Browse', 'Select', 'Insert', ...).<br /> Can be set to <tt>'both'</tt> if you want icons AND text.<br /> When set to <tt>FALSE</tt>, will only show text.</dd> <dt id="cfg_PropertiesNumColumns">$cfg['PropertiesNumColumns'] integer</dt> <dd>How many columns will be utilized to display the tables on the database property view? Default is 1 column. When setting this to a value larger than 1, the type of the database will be omitted for more display space.</dd> <dt id="cfg_DefaultTabServer">$cfg['DefaultTabServer'] string</dt> <dd>Defines the tab displayed by default on server view. Possible values: &quot;main.php&quot; (recommended for multi-user setups), &quot;server_databases.php&quot;, &quot;server_status.php&quot;, &quot;server_variables.php&quot;, &quot;server_privileges.php&quot; or &quot;server_processlist.php&quot;.</dd> <dt id="cfg_DefaultTabDatabase">$cfg['DefaultTabDatabase'] string</dt> <dd>Defines the tab displayed by default on database view. Possible values: &quot;db_structure.php&quot;, &quot;db_sql.php&quot; or &quot;db_search.php&quot;.</dd> <dt id="cfg_DefaultTabTable">$cfg['DefaultTabTable'] string</dt> <dd>Defines the tab displayed by default on table view. Possible values: &quot;tbl_structure.php&quot;, &quot;tbl_sql.php&quot;, &quot;tbl_select.php&quot;, &quot;tbl_change.php&quot; or &quot;sql.php&quot;.</dd> <dt id="cfg_MySQLManualBase">$cfg['MySQLManualBase'] string</dt> <dd>If set to an <abbr title="Uniform Resource Locator">URL</abbr> which points to the MySQL documentation (type depends on <a href="#cfg_MySQLManualType" class="configrule">$cfg['MySQLManualType']</a>), appropriate help links are generated.<br /> See <a href="http://dev.mysql.com/doc/">MySQL Documentation page</a> for more information about MySQL manuals and their types.</dd> <dt id="cfg_MySQLManualType">$cfg['MySQLManualType'] string</dt> <dd>Type of MySQL documentation: <ul><li>viewable - &quot;viewable online&quot;, current one used on MySQL website</li> <li>searchable - &quot;Searchable, with user comments&quot;</li> <li>chapters - &quot;HTML, one page per chapter&quot;</li> <li>big - &quot;HTML, all on one page&quot;</li> <li>none - do not show documentation links</li> </ul> </dd> <dt id="cfg_DefaultLang">$cfg['DefaultLang'] string</dt> <dd>Defines the default language to use, if not browser-defined or user-defined.<br /> The corresponding language file needs to be in locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo. </dd> <dt id="cfg_DefaultConnectionCollation">$cfg['DefaultConnectionCollation'] string</dt> <dd>Defines the default connection collation to use, if not user-defined.<br /> See the <a href="http://dev.mysql.com/doc/mysql/en/charset-charsets.html">MySQL documentation</a> for list of possible values.</dd> <dt id="cfg_Lang">$cfg['Lang'] string</dt> <dd>Force language to use.<br /> The corresponding language file needs to be in locale/<i>code</i>/LC_MESSAGES/phpmyadmin.mo. </dd> <dt id="cfg_FilterLanguages">$cfg['FilterLanguages'] string</dt> <dd>Limit list of available languages to those matching the given regular expression. For example if you want only Czech and English, you should set filter to <code>'^(cs|en)'</code>.</dd> <dt id="cfg_RecodingEngine">$cfg['RecodingEngine'] string</dt> <dd>You can select here which functions will be used for character set conversion. Possible values are: <ul><li>auto - automatically use available one (first is tested iconv, then recode)</li> <li>iconv - use iconv or libiconv functions</li> <li>recode - use recode_string function</li> <li>none - disable encoding conversion</li> </ul> Default is auto.</dd> <dd> Enabled charset conversion activates a pull-down menu in the Export and Import pages, to choose the character set when exporting a file. The default value in this menu comes from <tt>$cfg['Export']['charset']</tt> and <tt>$cfg['Import']['charset']</tt>. </dd> <dt id="cfg_IconvExtraParams">$cfg['IconvExtraParams'] string</dt> <dd>Specify some parameters for iconv used in charset conversion. See <a href="http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html">iconv documentation</a> for details. By default <code>//TRANSLIT</code> is used, so that invalid characters will be transliterated.</dd> <dt id="cfg_AvailableCharsets">$cfg['AvailableCharsets'] array</dt> <dd>Available character sets for MySQL conversion. You can add your own (any of supported by recode/iconv) or remove these which you don't use. Character sets will be shown in same order as here listed, so if you frequently use some of these move them to the top.</dd> <dt id="cfg_TrustedProxies">$cfg['TrustedProxies'] array</dt> <dd>Lists proxies and HTTP headers which are trusted for <a href="#servers_allowdeny_order">IP Allow/Deny</a>. This list is by default empty, you need to fill in some trusted proxy servers if you want to use rules for IP addresses behind proxy.<br /><br /> The following example specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (<tt>X-Forwarded-For</tt>) header coming from the proxy 1.2.3.4: <pre> $cfg['TrustedProxies'] = array('1.2.3.4' =&gt; 'HTTP_X_FORWARDED_FOR'); </pre> The $cfg['Servers'][$i]['AllowDeny']['rules'] directive uses the client's IP address as usual. </dd> <dt id="cfg_GD2Available">$cfg['GD2Available'] string</dt> <dd>Specifies whether GD &gt;= 2 is available. If yes it can be used for MIME transformations.<br /> Possible values are: <ul><li>auto - automatically detect, this is a bit expensive operation for php &lt; 4.3.0 so it is preferred to change this according to your server real possibilities</li> <li>yes - GD 2 functions can be used</li> <li>no - GD 2 function cannot be used</li> </ul> Default is auto. </dd> <dt id="cfg_CheckConfigurationPermissions">$cfg['CheckConfigurationPermissions'] boolean</dt> <dd> We normally check the permissions on the configuration file to ensure it's not world writable. However, phpMyAdmin could be installed on a NTFS filesystem mounted on a non-Windows server, in which case the permissions seems wrong but in fact cannot be detected. In this case a sysadmin would set this parameter to <tt>FALSE</tt>. Default is <tt>TRUE</tt>. </dd> <dt id="cfg_LinkLengthLimit">$cfg['LinkLengthLimit'] integer</dt> <dd> Limit for length of URL in links. When length would be above this limit, it is replaced by form with button. This is required as some web servers (IIS) have problems with long URLs. Default is <code>1000</code>. </dd> <dt id="cfg_NaviWidth">$cfg['NaviWidth'] integer</dt> <dd>Navi frame width in pixels. See <tt>themes/themename/layout.inc.php</tt>. </dd> <dt><span id="cfg_NaviBackground">$cfg['NaviBackground']</span> string [CSS color for background]<br /> <span id="cfg_MainBackground">$cfg['MainBackground']</span> string [CSS color for background] </dt> <dd>The background styles used for both the frames. See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_NaviPointerBackground">$cfg['NaviPointerBackground'] string [CSS color for background]<br /> <span id="cfg_NaviPointerColor">$cfg['NaviPointerColor']</span> string [CSS color]</dt> <dd>The style used for the pointer in the navi frame. See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_LeftPointerEnable">$cfg['LeftPointerEnable'] boolean</dt> <dd>A value of <tt>TRUE</tt> activates the navi pointer (when LeftFrameLight is <tt>FALSE</tt>).</dd> <dt id="cfg_Border">$cfg['Border'] integer</dt> <dd>The size of a table's border. See <tt>themes/themename/layout.inc.php</tt>. </dd> <dt id="cfg_ThBackground">$cfg['ThBackground'] string [CSS color for background]<br /> <span id="cfg_ThColor">$cfg['ThColor']</span> string [CSS color]</dt> <dd>The style used for table headers. See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_BgcolorOne">$cfg['BgOne'] string [CSS color]</dt> <dd>The color (HTML) #1 for table rows. See <tt>themes/themename/layout.inc.php</tt>. </dd> <dt id="cfg_BgcolorTwo">$cfg['BgTwo'] string [CSS color]</dt> <dd>The color (HTML) #2 for table rows. See <tt>themes/themename/layout.inc.php</tt>. </dd> <dt><span id="cfg_BrowsePointerBackground">$cfg['BrowsePointerBackground'] </span>string [CSS color]<br /> <span id="cfg_BrowsePointerColor">$cfg['BrowsePointerColor'] </span>string [CSS color]<br /> <span id="cfg_BrowseMarkerBackground">$cfg['BrowseMarkerBackground'] </span>string [CSS color]<br /> <span id="cfg_BrowseMarkerColor">$cfg['BrowseMarkerColor'] </span>string [CSS color] </dt> <dd>The colors (HTML) uses for the pointer and the marker in browse mode.<br /> The former feature highlights the row over which your mouse is passing and the latter lets you visually mark/unmark rows by clicking on them. Highlighting / marking a column is done by hovering over / clicking the column's header (outside of the text).<br /> See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_FontFamily">$cfg['FontFamily'] string</dt> <dd>You put here a valid CSS font family value, for example <tt>arial, sans-serif</tt>.<br /> See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_FontFamilyFixed">$cfg['FontFamilyFixed'] string</dt> <dd>You put here a valid CSS font family value, for example <tt>monospace</tt>. This one is used in textarea.<br /> See <tt>themes/themename/layout.inc.php</tt>.</dd> <dt id="cfg_BrowsePointerEnable">$cfg['BrowsePointerEnable'] boolean</dt> <dd>Whether to activate the browse pointer or not.</dd> <dt id="cfg_BrowseMarkerEnable">$cfg['BrowseMarkerEnable'] boolean</dt> <dd>Whether to activate the browse marker or not.</dd> <dt><span id="cfg_TextareaCols">$cfg['TextareaCols'] </span>integer<br /> <span id="cfg_TextareaRows">$cfg['TextareaRows'] </span>integer<br /> <span id="cfg_CharTextareaCols">$cfg['CharTextareaCols'] </span>integer<br /> <span id="cfg_CharTextareaRows">$cfg['CharTextareaRows'] </span>integer </dt> <dd>Number of columns and rows for the textareas.<br /> This value will be emphasized (*2) for <abbr title="structured query language">SQL</abbr> query textareas and (*1.25) for <abbr title="structured query language">SQL</abbr> textareas inside the query window.<br /> The Char* values are used for CHAR and VARCHAR editing (if configured via <a href="#cfg_CharEditing">$cfg['CharEditing']</a>).</dd> <dt><span id="cfg_LongtextDoubleTextarea">$cfg['LongtextDoubleTextarea'] </span>boolean </dt> <dd>Defines whether textarea for LONGTEXT columns should have double size.</dd> <dt><span id="cfg_TextareaAutoSelect">$cfg['TextareaAutoSelect'] </span>boolean </dt> <dd>Defines if the whole textarea of the query box will be selected on click.</dd> <dt id="cfg_LimitChars">$cfg['LimitChars'] integer</dt> <dd>Maximum number of characters shown in any non-numeric field on browse view. Can be turned off by a toggle button on the browse page.</dd> <dt><span id="cfg_ModifyDeleteAtLeft">$cfg['ModifyDeleteAtLeft'] </span>boolean <span id="cfg_ModifyDeleteAtRight">$cfg['ModifyDeleteAtRight'] </span>boolean </dt> <dd>Defines the place where table row links (Edit, Inline edit, Copy, Delete) would be put when tables contents are displayed (you may have them displayed both at the left and at the right). &quot;Left&quot; and &quot;right&quot; are parsed as &quot;top&quot; and &quot;bottom&quot; with vertical display mode.</dd> <dt id="cfg_DefaultDisplay">$cfg['DefaultDisplay'] string</dt> <dd>There are 3 display modes: horizontal, horizontalflipped and vertical. Define which one is displayed by default. The first mode displays each row on a horizontal line, the second rotates the headers by 90 degrees, so you can use descriptive headers even though columns only contain small values and still print them out. The vertical mode sorts each row on a vertical lineup. </dd> <dt id="cfg_HeaderFlipType">$cfg['HeaderFlipType'] string</dt> <dd> The HeaderFlipType can be set to 'auto', 'css' or 'fake'. When using 'css' the rotation of the header for horizontalflipped is done via CSS. The CSS transformation currently works only in Internet Explorer.If set to 'fake' PHP does the transformation for you, but of course this does not look as good as CSS. The 'auto' option enables CSS transformation when browser supports it and use PHP based one otherwise. </dd> <dt id="DefaultPropDisplay"> <span id="cfg_DefaultPropDisplay">$cfg['DefaultPropDisplay']</span> string or integer</dt> <dd>When editing/creating new columns in a table all fields normally get lined up one field a line. (default: 'horizontal'). If you set this to 'vertical' you can have each field lined up vertically beneath each other. You can save up a lot of place on the horizontal direction and no longer have to scroll. If you set this to integer, editing of fewer columns will appear in 'vertical' mode, while editing of more columns still in 'horizontal' mode. This way you can still effectively edit large number of columns, while having full view on few of them.</dd> <dt id="cfg_ShowBrowseComments">$cfg['ShowBrowseComments'] boolean<br /> <span id="cfg_ShowPropertyComments">$cfg['ShowPropertyComments'] </span>boolean </dt> <dd>By setting the corresponding variable to <tt>TRUE</tt> you can enable the display of column comments in Browse or Property display. In browse mode, the comments are shown inside the header. In property mode, comments are displayed using a CSS-formatted dashed-line below the name of the column. The comment is shown as a tool-tip for that column. </dd> <dt id ="cfg_SQLQuery_Edit">$cfg['SQLQuery']['Edit'] boolean</dt> <dd>Whether to display an edit link to change a query in any SQL Query box.</dd> <dt id ="cfg_SQLQuery_Explain">$cfg['SQLQuery']['Explain'] boolean</dt> <dd>Whether to display a link to explain a SELECT query in any SQL Query box.</dd> <dt id ="cfg_SQLQuery_ShowAsPHP">$cfg['SQLQuery']['ShowAsPHP'] boolean</dt> <dd>Whether to display a link to wrap a query in PHP code in any SQL Query box.</dd> <dt id ="cfg_SQLQuery_Validate">$cfg['SQLQuery']['Validate'] boolean</dt> <dd>Whether to display a link to validate a query in any SQL Query box. See also <tt><a href="#cfg_SQLValidator">$cfg_SQLValidator</a></tt>.</dd> <dt id ="cfg_SQLQuery_Refresh">$cfg['SQLQuery']['Refresh'] boolean</dt> <dd>Whether to display a link to refresh a query in any SQL Query box.</dd> <dt id="cfg_UploadDir">$cfg['UploadDir'] string</dt> <dd> The name of the directory where <abbr title="structured query language">SQL</abbr> files have been uploaded by other means than phpMyAdmin (for example, ftp). Those files are available under a drop-down box when you click the database or table name, then the Import tab. <br /><br /> If you want different directory for each user, %u will be replaced with username.<br /><br /> Please note that the file names must have the suffix &quot;.sql&quot; (or &quot;.sql.bz2&quot; or &quot;.sql.gz&quot; if support for compressed formats is enabled).<br /><br /> This feature is useful when your file is too big to be uploaded via <abbr title="HyperText Transfer Protocol">HTTP</abbr>, or when file uploads are disabled in PHP.<br /><br /> Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. <br /><br /> See also <a href="#faq1_16"> <abbr title="Frequently Asked Questions">FAQ</abbr> 1.16</a> for alternatives. </dd> <dt id="cfg_SaveDir">$cfg['SaveDir'] string</dt> <dd> The name of the directory where dumps can be saved.<br /><br /> If you want different directory for each user, %u will be replaced with username.<br /><br /> Please note that the directory must exist and has to be writable for the user running webserver.<br /><br /> Please note that if PHP is running in safe mode, this directory must be owned by the same user as the owner of the phpMyAdmin scripts. </dd> <dt id="cfg_TempDir">$cfg['TempDir'] string</dt> <dd> The name of the directory where temporary files can be stored. <br /><br /> This is needed to work around limitations of <tt>open_basedir</tt> for uploaded files, see <a href="#faq1_11"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.11</a>. <br /><br /> If the directory where phpMyAdmin is installed is subject to an <tt>open_basedir</tt> restriction, you need to create a temporary directory in some directory accessible by the web server. However for security reasons, this directory should be outside the tree published by webserver. If you cannot avoid having this directory published by webserver, place at least an empty <tt>index.html</tt> file there, so that directory listing is not possible. <br /><br /> This directory should have as strict permissions as possible as the only user required to access this directory is the one who runs the webserver. If you have root privileges, simply make this user owner of this directory and make it accessible only by it: <br /><br /> <pre> chown www-data:www-data tmp chmod 700 tmp </pre> If you cannot change owner of the directory, you can achieve a similar setup using <abbr title="Access Control List">ACL</abbr>: <pre> chmod 700 tmp setfacl -m "g:www-data:rwx" tmp setfacl -d -m "g:www-data:rwx" tmp </pre> If neither of above works for you, you can still make the directory <code>chmod 777</code>, but it might impose risk of other users on system reading and writing data in this directory. </dd> <dt id="cfg_Export">$cfg['Export'] array</dt> <dd> In this array are defined default parameters for export, names of items are similar to texts seen on export page, so you can easily identify what they mean. </dd> <dt id="cfg_Export_method">$cfg['Export']['method'] string</dt> <dd> Defines how the export form is displayed when it loads. Valid values are: <ul> <li><tt>quick</tt> to display the minimum number of options to configure</li> <li><tt>custom</tt> to display every available option to configure</li> <li><tt>custom-no-form</tt> same as <tt>custom</tt> but does not display the option of using quick export</li> </ul> </dd> <dt id="cfg_Import">$cfg['Import'] array</dt> <dd> In this array are defined default parameters for import, names of items are similar to texts seen on import page, so you can easily identify what they mean. </dd> <dt id="cfg_RepeatCells">$cfg['RepeatCells'] integer</dt> <dd> Repeat the headers every X cells, or 0 to deactivate. </dd> <dt id="cfg_EditInWindow">$cfg['EditInWindow'] boolean<br /> <span id="cfg_QueryWindowWidth">$cfg['QueryWindowWidth'] </span>integer<br /> <span id="cfg_QueryWindowHeight">$cfg['QueryWindowHeight'] </span>integer<br /> <span id="cfg_QueryHistoryDB">$cfg['QueryHistoryDB'] </span>boolean<br /> <span id="cfg_QueryWindowDefTab">$cfg['QueryWindowDefTab'] </span>string<br /> <span id="cfg_QueryHistoryMax">$cfg['QueryHistoryMax'] </span>integer </dt> <dd> All those variables affect the query window feature. A <tt><abbr title="structured query language">SQL</abbr></tt> link or icon is always displayed on the left panel. If JavaScript is enabled in your browser, a click on this opens a distinct query window, which is a direct interface to enter <abbr title="structured query language">SQL</abbr> queries. Otherwise, the right panel changes to display a query box.<br /><br /> The size of this query window can be customized with <tt>$cfg['QueryWindowWidth']</tt> and <tt>$cfg['QueryWindowHeight']</tt> - both integers for the size in pixels. Note that normally, those parameters will be modified in <tt>layout.inc.php</tt> for the theme you are using.<br /><br /> If <tt>$cfg['EditInWindow']</tt> is set to true, a click on [Edit] from the results page (in the &quot;Showing Rows&quot; section) opens the query window and puts the current query inside it. If set to false, clicking on the link puts the <abbr title="structured query language">SQL</abbr> query in the right panel's query box. <br /><br /> The usage of the JavaScript query window is recommended if you have a JavaScript enabled browser. Basic functions are used to exchange quite a few variables, so most 4th generation browsers should be capable to use that feature. It currently is only tested with Internet Explorer 6 and Mozilla 1.x. <br /><br /> If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt>, all your Queries are logged to a table, which has to be created by you (see <a href="#history" class="configrule">$cfg['Servers'][$i]['history']</a>). If set to FALSE, all your queries will be appended to the form, but only as long as your window is opened they remain saved. <br /><br /> When using the JavaScript based query window, it will always get updated when you click on a new table/db to browse and will focus if you click on "Edit <abbr title="structured query language">SQL</abbr>" after using a query. You can suppress updating the query window by checking the box "Do not overwrite this query from outside the window" below the query textarea. Then you can browse tables/databases in the background without losing the contents of the textarea, so this is especially useful when composing a query with tables you first have to look in. The checkbox will get automatically checked whenever you change the contents of the textarea. Please uncheck the button whenever you definitely want the query window to get updated even though you have made alterations. <br /><br /> If <tt>$cfg['QueryHistoryDB']</tt> is set to <tt>TRUE</tt> you can specify the amount of saved history items using <tt>$cfg['QueryHistoryMax']</tt>. <br /><br /> The query window also has a custom tabbed look to group the features. Using the variable <tt>$cfg['QueryWindowDefTab']</tt> you can specify the default tab to be used when opening the query window. It can be set to either 'sql', 'files', 'history' or 'full'.</dd> <dt id="cfg_BrowseMIME">$cfg['BrowseMIME'] boolean</dt> <dd>Enable <a href="#transformations">MIME-transformations</a>.</dd> <dt id="cfg_MaxExactCount">$cfg['MaxExactCount'] integer</dt> <dd>For InnoDB tables, determines for how large tables phpMyAdmin should get the exact row count using <code>SELECT COUNT</code>. If the approximate row count as returned by <code>SHOW TABLE STATUS</code> is smaller than this value, <code>SELECT COUNT</code> will be used, otherwise the approximate count will be used. </dd> <dt id="cfg_MaxExactCountViews">$cfg['MaxExactCountViews'] integer</dt> <dd>For VIEWs, since obtaining the exact count could have an impact on performance, this value is the maximum to be displayed, using a <code>SELECT COUNT ... LIMIT</code>. The default value of 0 bypasses any row counting. </dd> <dt id="cfg_NaturalOrder">$cfg['NaturalOrder'] boolean</dt> <dd>Sorts database and table names according to natural order (for example, t1, t2, t10). Currently implemented in the left panel (Light mode) and in Database view, for the table list.</dd> <dt id="cfg_InitialSlidersState">$cfg['InitialSlidersState'] string</dt> <dd>If set to <tt>'closed'</tt>, the visual sliders are initially in a closed state. A value of <tt>'open'</tt> does the reverse. To completely disable all visual sliders, use <tt>'disabled'</tt>.</dd> <dt id="cfg_UserprefsDisallow">$cfg['UserprefsDisallow'] array</dt> <dd>Contains names of configuration options (keys in <tt>$cfg</tt> array) that users can't set through user preferences. For possible values, refer to <tt>libraries/config/user_preferences.forms.php</tt>.</dd> <dt id="cfg_UserprefsDeveloperTab">$cfg['UserprefsDeveloperTab'] boolean</dt> <dd>Activates in the user preferences a tab containing options for developers of phpMyAdmin.</dd> <dt id="cfg_TitleTable">$cfg['TitleTable'] string</dt> <dt id="cfg_TitleDatabase">$cfg['TitleDatabase'] string</dt> <dt id="cfg_TitleServer">$cfg['TitleServer'] string</dt> <dt id="cfg_TitleDefault">$cfg['TitleDefault'] string</dt> <dd>Allows you to specify window's title bar. You can use <a href="#faq6_27">format string expansion</a>. </dd> <dt id="cfg_ErrorIconic">$cfg['ErrorIconic'] boolean</dt> <dd>Uses icons for warnings, errors and informations.</dd> <dt id="cfg_MainPageIconic">$cfg['MainPageIconic'] boolean</dt> <dd>Uses icons on main page in lists and menu tabs.</dd> <dt id="cfg_ReplaceHelpImg">$cfg['ReplaceHelpImg'] boolean</dt> <dd>Shows a help button instead of the &quot;Documentation&quot; message. </dd> <dt id="cfg_ThemePath">$cfg['ThemePath'] string</dt> <dd>If theme manager is active, use this as the path of the subdirectory containing all the themes.</dd> <dt id="cfg_ThemeManager">$cfg['ThemeManager'] boolean</dt> <dd>Enables user-selectable themes. See <a href="#faqthemes"> <abbr title="Frequently Asked Questions">FAQ</abbr> 2.7</a>.</dd> <dt id="cfg_ThemeDefault">$cfg['ThemeDefault'] string</dt> <dd>The default theme (a subdirectory under <tt>cfg['ThemePath']</tt>).</dd> <dt id="cfg_ThemePerServer">$cfg['ThemePerServer'] boolean</dt> <dd>Whether to allow different theme for each server.</dd> <dt id="cfg_DefaultQueryTable">$cfg['DefaultQueryTable'] string<br /> <span id="cfg_DefaultQueryDatabase">$cfg['DefaultQueryDatabase']</span> string </dt> <dd>Default queries that will be displayed in query boxes when user didn't specify any. You can use standard <a href="#faq6_27">format string expansion</a>. </dd> <dt id="cfg_SQP_fmtType">$cfg['SQP']['fmtType'] string [<tt>html</tt>|<tt>none</tt>]</dt> <dd> The main use of the new <abbr title="structured query language">SQL</abbr> Parser is to pretty-print <abbr title="structured query language">SQL</abbr> queries. By default we use HTML to format the query, but you can disable this by setting this variable to <tt>'none'</tt>. </dd> <dt id="cfg_SQP_fmtInd">$cfg['SQP']['fmtInd'] float<br /> <span id="cfg_SQP">$cfg['SQP']['fmtIndUnit']</span> string [<tt>em</tt>|<tt>px</tt>|<tt>pt</tt>|<tt>ex</tt>]</dt> <dd>For the pretty-printing of <abbr title="structured query language">SQL</abbr> queries, under some cases the part of a query inside a bracket is indented. By changing <tt>$cfg['SQP']['fmtInd']</tt> you can change the amount of this indent. <br />Related in purpose is <tt>$cfg['SQP']['fmtIndUnit']</tt> which specifies the units of the indent amount that you specified. This is used via stylesheets.</dd> <dt id="cfg_SQP_fmtColor">$cfg['SQP']['fmtColor'] array of string tuples</dt> <dd>This array is used to define the colours for each type of element of the pretty-printed <abbr title="structured query language">SQL</abbr> queries. The tuple format is<br /> <i>class</i> =&gt; [<i>HTML colour code</i> | <i>empty string</i>]<br /> If you specify an empty string for the color of a class, it is ignored in creating the stylesheet. You should not alter the class names, only the colour strings.<br /> <b>Class name key:</b> <ul><li><b>comment</b> Applies to all comment sub-classes</li> <li><b>comment_mysql</b> Comments as <tt>"#...\n"</tt></li> <li><b>comment_ansi</b> Comments as <tt>"-- ...\n"</tt></li> <li><b>comment_c</b> Comments as <tt>"/*...*/"</tt></li> <li><b>digit</b> Applies to all digit sub-classes</li> <li><b>digit_hex</b> Hexadecimal numbers</li> <li><b>digit_integer</b> Integer numbers</li> <li><b>digit_float</b> Floating point numbers</li> <li><b>punct</b> Applies to all punctuation sub-classes</li> <li><b>punct_bracket_open_round</b> Opening brackets<tt>"("</tt></li> <li><b>punct_bracket_close_round</b> Closing brackets <tt>")"</tt></li> <li><b>punct_listsep</b> List item Separator <tt>","</tt></li> <li><b>punct_qualifier</b> Table/Column Qualifier <tt>"."</tt> </li> <li><b>punct_queryend</b> End of query marker <tt>";"</tt></li> <li><b>alpha</b> Applies to all alphabetic classes</li> <li><b>alpha_columnType</b> Identifiers matching a column type</li> <li><b>alpha_columnAttrib</b> Identifiers matching a database/table/column attribute</li> <li><b>alpha_functionName</b> Identifiers matching a MySQL function name</li> <li><b>alpha_reservedWord</b> Identifiers matching any other reserved word</li> <li><b>alpha_variable</b> Identifiers matching a <abbr title="structured query language">SQL</abbr> variable <tt>"@foo"</tt></li> <li><b>alpha_identifier</b> All other identifiers</li> <li><b>quote</b> Applies to all quotation mark classes</li> <li><b>quote_double</b> Double quotes <tt>"</tt></li> <li><b>quote_single</b> Single quotes <tt>'</tt></li> <li><b>quote_backtick</b> Backtick quotes <tt>`</tt></li> </ul> </dd> <dt id="cfg_SQLValidator">$cfg['SQLValidator'] boolean</dt> <dd><dl><dt id="cfg_SQLValidator_use">$cfg['SQLValidator']['use'] boolean</dt> <dd>phpMyAdmin now supports use of the <a href="http://developer.mimer.com/validator/index.htm">Mimer <abbr title="structured query language">SQL</abbr> Validator</a> service, as originally published on <a href="http://developers.slashdot.org/article.pl?sid=02/02/19/1720246">Slashdot</a>. <br /> For help in setting up your system to use the service, see the <a href="#faqsqlvalidator"><abbr title="Frequently Asked Questions">FAQ</abbr> 6.14</a>. </dd> <dt id="cfg_SQLValidator_username">$cfg['SQLValidator']['username'] string<br /> <span id="cfg_SQLValidator_password">$cfg['SQLValidator']['password']</span> string</dt> <dd>The SOAP service allows you to log in with <tt>anonymous</tt> and any password, so we use those by default. Instead, if you have an account with them, you can put your login details here, and it will be used in place of the anonymous login.</dd> </dl> </dd> <dt id="cfg_DBG">$cfg['DBG']</dt> <dd><b>DEVELOPERS ONLY!</b></dd> <dt id="cfg_DBG_sql">$cfg['DBG']['sql'] boolean</dt> <dd><b>DEVELOPERS ONLY!</b><br /> Enable logging queries and execution times to be displayed in the bottom of main page (right frame).</dd> <dt id="cfg_ColumnTypes">$cfg['ColumnTypes'] array</dt> <dd>All possible types of a MySQL column. In most cases you don't need to edit this.</dd> <dt id="cfg_AttributeTypes">$cfg['AttributeTypes'] array</dt> <dd>Possible attributes for columns. In most cases you don't need to edit this.</dd> <dt id="cfg_Functions">$cfg['Functions'] array</dt> <dd>A list of functions MySQL supports. In most cases you don't need to edit this.</dd> <dt id="cfg_RestrictColumnTypes">$cfg['RestrictColumnTypes'] array</dt> <dd>Mapping of column types to meta types used for preferring displayed functions. In most cases you don't need to edit this.</dd> <dt id="cfg_RestrictFunctions">$cfg['RestrictFunctions'] array</dt> <dd>Functions preferred for column meta types as defined in <a href="#cfg_RestrictColumnTypes" class="configrule">$cfg['RestrictColumnTypes']</a>. In most cases you don't need to edit this.</dd> <dt id="cfg_DefaultFunctions">$cfg['DefaultFunctions'] array</dt> <dd>Functions selected by default when inserting/changing row, Functions are defined for meta types from <a href="#cfg_RestrictColumnTypes" class="configrule">$cfg['RestrictColumnTypes']</a> and for <code>first_timestamp</code>, which is used for first timestamp column in table.</dd> <dt id="cfg_NumOperators">$cfg['NumOperators'] array</dt> <dd>Operators available for search operations on numeric and date columns. </dd> <dt id="cfg_TextOperators">$cfg['TextOperators'] array</dt> <dd>Operators available for search operations on character columns. Note that we put <code>LIKE</code> by default instead of <code>LIKE %...%</code>, to avoid unintended performance problems in case of huge tables.</dd> <dt id="cfg_EnumOperators">$cfg['EnumOperators'] array</dt> <dd>Operators available for search operations on ENUM columns.</dd> <dt id="cfg_NullOperators">$cfg['NullOperators'] array</dt> <dd>Additional operators available for search operations when the column can be null.</dd> </dl> <!-- TRANSFORMATIONS --> <h2 id="transformations">Transformations</h2> <ol><li><a href="#transformationsintro">Introduction</a></li> <li><a href="#transformationshowto">Usage</a></li> <li><a href="#transformationsfiles">File structure</a></li> </ol> <h3 id="transformationsintro">1. Introduction</h3> <p> To enable transformations, you have to setup the <tt>column_info</tt> table and the proper directives. Please see the <a href="#config">Configuration section</a> on how to do so.</p> <p> You can apply different transformations to the contents of each column. The transformation will take the content of each column and transform it with certain rules defined in the selected transformation.</p> <p> Say you have a column 'filename' which contains a filename. Normally you would see in phpMyAdmin only this filename. Using transformations you can transform that filename into a HTML link, so you can click inside of the phpMyAdmin structure on the column's link and will see the file displayed in a new browser window. Using transformation options you can also specify strings to append/prepend to a string or the format you want the output stored in.</p> <p> For a general overview of all available transformations and their options, you can consult your <i>&lt;www.your-host.com&gt;/&lt;your-install-dir&gt;/transformation_overview.php</i> installation.</p> <p> For a tutorial on how to effectively use transformations, see our <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on the official phpMyAdmin homepage.</p> <h3 id="transformationshowto">2. Usage</h3> <p> Go to your <i>tbl_structure.php</i> page (i.e. reached through clicking on the 'Structure' link for a table). There click on &quot;Change&quot; (or change icon) and there you will see three new fields at the end of the line. They are called 'MIME-type', 'Browser transformation' and 'Transformation options'.</p> <ul><li>The field 'MIME-type' is a drop-down field. Select the MIME-type that corresponds to the column's contents. Please note that transformations are inactive as long as no MIME-type is selected.</li> <li>The field 'Browser transformation' is a drop-down field. You can choose from a hopefully growing amount of pre-defined transformations. See below for information on how to build your own transformation.<br /> There are global transformations and mimetype-bound transformations. Global transformations can be used for any mimetype. They will take the mimetype, if necessary, into regard. Mimetype-bound transformations usually only operate on a certain mimetype. There are transformations which operate on the main mimetype (like 'image'), which will most likely take the subtype into regard, and those who only operate on a specific subtype (like 'image/jpeg').<br /> You can use transformations on mimetypes for which the function was not defined for. There is no security check for you selected the right transformation, so take care of what the output will be like.</li> <li>The field 'Transformation options' is a free-type textfield. You have to enter transform-function specific options here. Usually the transforms can operate with default options, but it is generally a good idea to look up the overview to see which options are necessary.<br /> Much like the ENUM/SET-Fields, you have to split up several options using the format 'a','b','c',...(NOTE THE MISSING BLANKS). This is because internally the options will be parsed as an array, leaving the first value the first element in the array, and so forth.<br /> If you want to specify a MIME character set you can define it in the transformation_options. You have to put that outside of the pre-defined options of the specific mime-transform, as the last value of the set. Use the format "'; charset=XXX'". If you use a transform, for which you can specify 2 options and you want to append a character set, enter "'first parameter','second parameter','charset=us-ascii'". You can, however use the defaults for the parameters: "'','','charset=us-ascii'".</li> </ul> <h3 id="transformationsfiles">3. File structure</h3> <p> All mimetypes and their transformations are defined through single files in the directory 'libraries/transformations/'.</p> <p> They are stored in files to ease up customization and easy adding of new transformations.</p> <p> Because the user cannot enter own mimetypes, it is kept sure that transformations always work. It makes no sense to apply a transformation to a mimetype the transform-function doesn't know to handle.</p> <p> One can, however, use empty mime-types and global transformations which should work for many mimetypes. You can also use transforms on a different mimetype than what they where built for, but pay attention to option usage as well as what the transformation does to your column.</p> <p> There is a basic file called '<i>global.inc.php</i>'. This function can be included by any other transform function and provides some basic functions.</p> <p> There are 5 possible file names:</p> <ol><li>A mimetype+subtype transform:<br /><br /> <tt>[mimetype]_[subtype]__[transform].inc.php</tt><br /><br /> Please not that mimetype and subtype are separated via '_', which shall not be contained in their names. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention.<br /><br /> The transform function will the be called '<tt>PMA_transform_[mimetype]_[subtype]__[transform]()</tt>'.<br /><br /> <b>Example:</b><br /><br /> <tt>text_html__formatted.inc.php</tt><br /> <tt>PMA_transform_text_html__formatted()</tt></li> <li>A mimetype (w/o subtype) transform:<br /><br /> <tt>[mimetype]__[transform].inc.php</tt><br /><br /> Please note that there are no single '_' characters. The transform function/filename may contain only characters which cause no problems in the file system as well as the PHP function naming convention.<br /><br /> The transform function will the be called '<tt>PMA_transform_[mimetype]__[transform]()</tt>'.<br /><br /> <b>Example:</b><br /><br /> <tt>text__formatted.inc.php</tt><br /> <tt>PMA_transform_text__formatted()</tt></li> <li>A mimetype+subtype without specific transform function<br /><br /> <tt>[mimetype]_[subtype].inc.php</tt><br /><br /> Please note that there are no '__' characters in the filename. Do not use special characters in the filename causing problems with the file system.<br /><br /> No transformation function is defined in the file itself.<br /><br /> <b>Example:</b><br /><br /> <tt>text_plain.inc.php</tt><br /> (No function)</li> <li>A mimetype (w/o subtype) without specific transform function<br /><br /> <tt>[mimetype].inc.php</tt><br /><br /> Please note that there are no '_' characters in the filename. Do not use special characters in the filename causing problems with the file system. <br /><br /> No transformation function is defined in the file itself.<br /><br /> <b>Example:</b><br /><br /> <tt>text.inc.php</tt><br /> (No function)</li> <li>A global transform function with no specific mimetype<br /><br /> <tt>global__[transform].inc.php</tt><br /><br /> The transform function will the be called '<tt>PMA_transform_global__[transform]()</tt>'.<br /><br /> <b>Example:</b><br /><br /> <tt>global__formatted</tt><br /> <tt>PMA_transform_global__formatted()</tt></li> </ol> <p> So generally use '_' to split up mimetype and subtype, and '__' to provide a transform function.</p> <p> All filenames containing no '__' in themselves are not shown as valid transform functions in the dropdown.</p> <p> Please see the libraries/transformations/TEMPLATE file for adding your own transform function. See the libraries/transformations/TEMPLATE_MIMETYPE for adding a mimetype without a transform function.</p> <p> To create a new transform function please see <tt>libraries/transformations/template_generator.sh</tt>. To create a new, empty mimetype please see <tt>libraries/transformations/template_generator_mimetype.sh</tt>.</p> <p> A transform function always gets passed three variables:</p> <ol><li><b>$buffer</b> - Contains the text inside of the column. This is the text, you want to transform.</li> <li><b>$options</b> - Contains any user-passed options to a transform function as an array.</li> <li><b>$meta</b> - Contains an object with information about your column. The data is drawn from the output of the <a href="http://www.php.net/mysql_fetch_field">mysql_fetch_field()</a> function. This means, all object properties described on the <a href="http://www.php.net/mysql_fetch_field">manual page</a> are available in this variable and can be used to transform a column accordingly to unsigned/zerofill/not_null/... properties.<br /> The $meta-&gt;mimetype variable contains the original MIME-type of the column (i.e. 'text/plain', 'image/jpeg' etc.)</li> </ol> <p> Additionally you should also provide additional function to provide information about the transformation to the user. This function should have same name as transformation function just with appended <code>_info</code> suffix. This function accepts no parameters and returns array with information about the transformation. Currently following keys can be used: </p> <dl> <dt><code>info</code></dt> <dd>Long description of the transformation.</dd> </dl> <!-- FAQ --> <h2 id="faq">FAQ - Frequently Asked Questions</h2> <ol><li><a href="#faqserver">Server</a></li> <li><a href="#faqconfig">Configuration</a></li> <li><a href="#faqlimitations">Known limitations</a></li> <li><a href="#faqmultiuser">ISPs, multi-user installations</a></li> <li><a href="#faqbrowsers">Browsers or client <abbr title="operating system">OS</abbr></a></li> <li><a href="#faqusing">Using phpMyAdmin</a></li> <li><a href="#faqproject">phpMyAdmin project</a></li> <li><a href="#faqsecurity">Security</a></li> <li><a href="#faqsynchronization">Synchronization</a></li> </ol> <p> Please have a look at our <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on the official phpMyAdmin homepage for in-depth coverage of phpMyAdmin's features and or interface.</p> <h3 id="faqserver">Server</h3> <h4 id="faq1_1"> <a href="#faq1_1">1.1 My server is crashing each time a specific action is required or phpMyAdmin sends a blank page or a page full of cryptic characters to my browser, what can I do?</a></h4> <p> Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip']</a> directive to <tt>FALSE</tt> in your <i>config.inc.php</i> file and the <tt>zlib.output_compression</tt> directive to <tt>Off</tt> in your php configuration file.<br /></p> <h4 id="faq1_2"> <a href="#faq1_2">1.2 My Apache server crashes when using phpMyAdmin.</a></h4> <p> You should first try the latest versions of Apache (and possibly MySQL).<br /> See also the <a href="#faq1_1"><abbr title="Frequently Asked Questions">FAQ</abbr> 1.1</a> entry about PHP bugs with output buffering.<br /> If your server keeps crashing, please ask for help in the various Apache support groups.</p> <h4 id="faq1_3"> <a href="#faq1_3">1.3 (withdrawn).</a></h4> <h4 id="faq1_4"> <a href="#faq1_4">1.4 Using phpMyAdmin on <abbr title="Internet Information Services">IIS</abbr>, I'm displayed the error message: &quot;The specified <abbr title="Common Gateway Interface">CGI</abbr> application misbehaved by not returning a complete set of <abbr title="HyperText Transfer Protocol">HTTP</abbr> headers ...&quot;.</a> </h4> <p> You just forgot to read the <i>install.txt</i> file from the php distribution. Have a look at the last message in this <a href="http://bugs.php.net/bug.php?id=12061">bug report</a> from the official PHP bug database.</p> <h4 id="faq1_5"> <a href="#faq1_5">1.5 Using phpMyAdmin on <abbr title="Internet Information Services">IIS</abbr>, I'm facing crashes and/or many error messages with the <abbr title="HyperText Transfer Protocol">HTTP</abbr>.</a></h4> <p> This is a known problem with the PHP <abbr title="Internet Server Application Programming Interface">ISAPI</abbr> filter: it's not so stable. Please use instead the cookie authentication mode. </p> <h4 id="faq1_6"> <a href="#faq1_6">1.6 I can't use phpMyAdmin on PWS: nothing is displayed!</a></h4> <p> This seems to be a PWS bug. Filippo Simoncini found a workaround (at this time there is no better fix): remove or comment the <tt>DOCTYPE</tt> declarations (2 lines) from the scripts <i>libraries/header.inc.php</i>, <i>libraries/header_printview.inc.php</i>, <i>index.php</i>, <i>navigation.php</i> and <i>libraries/common.lib.php</i>.</p> <h4 id="faq1_7"> <a href="#faq1_7">1.7 How can I GZip or Bzip a dump or a <abbr title="comma separated values">CSV</abbr> export? It does not seem to work.</a></h4> <p> These features are based on the <tt>gzencode()</tt> and <tt>bzcompress()</tt> PHP functions to be more independent of the platform (Unix/Windows, Safe Mode or not, and so on). So, you must have Zlib/Bzip2 support (<tt>--with-zlib</tt> and <tt>--with-bz2</tt>).<br /></p> <h4 id="faq1_8"> <a href="#faq1_8">1.8 I cannot insert a text file in a table, and I get an error about safe mode being in effect.</a></h4> <p> Your uploaded file is saved by PHP in the &quot;upload dir&quot;, as defined in <i>php.ini</i> by the variable <tt>upload_tmp_dir</tt> (usually the system default is <i>/tmp</i>).<br /> We recommend the following setup for Apache servers running in safe mode, to enable uploads of files while being reasonably secure:</p> <ul><li>create a separate directory for uploads: <tt>mkdir /tmp/php</tt></li> <li>give ownership to the Apache server's user.group: <tt>chown apache.apache /tmp/php</tt></li> <li>give proper permission: <tt>chmod 600 /tmp/php</tt></li> <li>put <tt>upload_tmp_dir = /tmp/php</tt> in <i>php.ini</i></li> <li>restart Apache</li> </ul> <h4 id="faq1_9"> <a href="#faq1_9">1.9 (withdrawn).</a></h4> <h4 id="faq1_10"> <a href="#faq1_10">1.10 I'm having troubles when uploading files with phpMyAdmin running on a secure server. My browser is Internet Explorer and I'm using the Apache server.</a></h4> <p> As suggested by &quot;Rob M&quot; in the phpWizard forum, add this line to your <i>httpd.conf</i>:</p> <pre>SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown</pre> <p> It seems to clear up many problems between Internet Explorer and SSL.</p> <h4 id="faq1_11"> <a href="#faq1_11">1.11 I get an 'open_basedir restriction' while uploading a file from the query box.</a></h4> <p> Since version 2.2.4, phpMyAdmin supports servers with open_basedir restrictions. However you need to create temporary directory and configure it as <a href="#cfg_TempDir" class="configrule">$cfg['TempDir']</a>. The uploaded files will be moved there, and after execution of your <abbr title="structured query language">SQL</abbr> commands, removed.</p> <h4 id="faq1_12"> <a href="#faq1_12">1.12 I have lost my MySQL root password, what can I do?</a></h4> <p> The MySQL manual explains how to <a href="http://dev.mysql.com/doc/mysql/en/resetting-permissions.html"> reset the permissions</a>.</p> <h4 id="faq1_13"> <a href="#faq1_13">1.13 (withdrawn).</a></h4> <h4 id="faq1_14"> <a href="#faq1_14">1.14 (withdrawn).</a></h4> <h4 id="faq1_15"> <a href="#faq1_15">1.15 I have problems with <i>mysql.user</i> column names.</a> </h4> <p> In previous MySQL versions, the <tt>User</tt> and <tt>Password</tt>columns were named <tt>user</tt> and <tt>password</tt>. Please modify your column names to align with current standards.</p> <h4 id="faq1_16"> <a href="#faq1_16">1.16 I cannot upload big dump files (memory, <abbr title="HyperText Transfer Protocol">HTTP</abbr> or timeout problems).</a> </h4> <p> Starting with version 2.7.0, the import engine has been re&#8211;written and these problems should not occur. If possible, upgrade your phpMyAdmin to the latest version to take advantage of the new import features.</p> <p> The first things to check (or ask your host provider to check) are the values of <tt>upload_max_filesize</tt>, <tt>memory_limit</tt> and <tt>post_max_size</tt> in the <i>php.ini</i> configuration file. All of these three settings limit the maximum size of data that can be submitted and handled by PHP. One user also said that post_max_size and memory_limit need to be larger than upload_max_filesize.<br /> <br /> There exist several workarounds if your upload is too big or your hosting provider is unwilling to change the settings:</p> <ul><li>Look at the <a href="#cfg_UploadDir" class="configrule">$cfg['UploadDir']</a> feature. This allows one to upload a file to the server via scp, ftp, or your favorite file transfer method. PhpMyAdmin is then able to import the files from the temporary directory. More information is available in the <a href="#config">Configuration section</a> of this document.</li> <li>Using a utility (such as <a href="http://www.ozerov.de/bigdump.php"> BigDump</a>) to split the files before uploading. We cannot support this or any third party applications, but are aware of users having success with it.</li> <li>If you have shell (command line) access, use MySQL to import the files directly. You can do this by issuing the &quot;source&quot; command from within MySQL: <tt>source <i>filename.sql</i></tt>.</li> </ul> <h4 id="faq1_17"> <a id="faqmysqlversions" href="#faq1_17">1.17 Which MySQL versions does phpMyAdmin support?</a></h4> <p> Since phpMyAdmin 3.0.x, only MySQL 5.0.1 and newer are supported. For older MySQL versions, you need to use the latest 2.x branch. phpMyAdmin can connect to your MySQL server using PHP's classic <a href="http://php.net/mysql">MySQL extension</a> as well as the <a href="http://php.net/mysqli">improved MySQL extension (MySQLi)</a> that is available in php 5.0. The latter one should be used unless you have a good reason not to do so.<br /> When compiling PHP, we strongly recommend that you manually link the MySQL extension of your choice to a MySQL client library of at least the same minor version since the one that is bundled with some PHP distributions is rather old and might cause problems <a href="#faq1_17a"> (see <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17a)</a>.<br /><br /> MariaDB is also supported (versions 5.1 and 5.2 were tested). </p> <h5 id="faq1_17a"> <a href="#faq1_17a">1.17a I cannot connect to the MySQL server. It always returns the error message, &quot;Client does not support authentication protocol requested by server; consider upgrading MySQL client&quot;</a></h5> <p> You tried to access MySQL with an old MySQL client library. The version of your MySQL client library can be checked in your phpinfo() output. In general, it should have at least the same minor version as your server - as mentioned in <a href="#faq1_17"> <abbr title="Frequently Asked Questions">FAQ</abbr> 1.17</a>.<br /><br /> This problem is generally caused by using MySQL version 4.1 or newer. MySQL changed the authentication hash and your PHP is trying to use the old method. The proper solution is to use the <a href="http://www.php.net/mysqli">mysqli extension</a> with the proper client library to match your MySQL installation. Your chosen extension is specified in <a href="#cfg_Servers_extension" class="configrule">$cfg['Servers'][$i]['extension']</a>. More information (and several workarounds) are located in the <a href="http://dev.mysql.com/doc/mysql/en/old-client.html">MySQL Documentation</a>. </p> <h4 id="faq1_18"> <a href="#faq1_18">1.18 (withdrawn).</a></h4> <h4 id="faq1_19"> <a href="#faq1_19">1.19 I can't run the &quot;display relations&quot; feature because the script seems not to know the font face I'm using!</a></h4> <p> The &quot;FPDF&quot; library we're using for this feature requires some special files to use font faces.<br /> Please refers to the <a href="http://www.fpdf.org/">FPDF manual</a> to build these files.</p> <h4 id="faqmysql"> <a href="#faqmysql">1.20 I receive the error &quot;cannot load MySQL extension, please check PHP Configuration&quot;.</a></h4> <p> To connect to a MySQL server, PHP needs a set of MySQL functions called &quot;MySQL extension&quot;. This extension may be part of the PHP distribution (compiled-in), otherwise it needs to be loaded dynamically. Its name is probably <i>mysql.so</i> or <i>php_mysql.dll</i>. phpMyAdmin tried to load the extension but failed.<br /><br /> Usually, the problem is solved by installing a software package called &quot;PHP-MySQL&quot; or something similar.</p> <h4 id="faq1_21"> <a href="#faq1_21">1.21 I am running the <abbr title="Common Gateway Interface">CGI</abbr> version of PHP under Unix, and I cannot log in using cookie auth.</a></h4> <p> In <i>php.ini</i>, set <tt>mysql.max_links</tt> higher than 1.</p> <h4 id="faq1_22"> <a href="#faq1_22">1.22 I don't see the &quot;Location of text file&quot; field, so I cannot upload.</a></h4> <p> This is most likely because in <i>php.ini</i>, your <tt>file_uploads</tt> parameter is not set to &quot;on&quot;.</p> <h4 id="faq1_23"> <a href="#faq1_23">1.23 I'm running MySQL on a Win32 machine. Each time I create a new table the table and column names are changed to lowercase!</a></h4> <p> This happens because the MySQL directive <tt>lower_case_table_names</tt> defaults to 1 (<tt>ON</tt>) in the Win32 version of MySQL. You can change this behavior by simply changing the directive to 0 (<tt>OFF</tt>):<br /> Just edit your <tt>my.ini</tt> file that should be located in your Windows directory and add the following line to the group [mysqld]:</p> <pre>set-variable = lower_case_table_names=0</pre> <p> Next, save the file and restart the MySQL service. You can always check the value of this directive using the query</p> <pre>SHOW VARIABLES LIKE 'lower_case_table_names';</pre> <h4 id="faq1_24"> <a href="#faq1_24">1.24 (withdrawn).</a></h4> <h4 id="faq1_25"> <a href="#faq1_25">1.25 I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get problems, such as undefined variables when I run a <abbr title="structured query language">SQL</abbr> query.</a></h4> <p> A tip from Jose Fandos: put a comment on the following two lines in httpd.conf, like this:</p> <pre> # mod_gzip_item_include file \.php$ # mod_gzip_item_include mime "application/x-httpd-php.*" </pre> <p> as this version of mod_gzip on Apache (Windows) has problems handling PHP scripts. Of course you have to restart Apache.</p> <h4 id="faq1_26"> <a href="#faq1_26">1.26 I just installed phpMyAdmin in my document root of <abbr title="Internet Information Services">IIS</abbr> but I get the error &quot;No input file specified&quot; when trying to run phpMyAdmin.</a></h4> <p> This is a permission problem. Right-click on the phpmyadmin folder and choose properties. Under the tab Security, click on &quot;Add&quot; and select the user &quot;IUSR_machine&quot; from the list. Now set his permissions and it should work.</p> <h4 id="faq1_27"> <a href="#faq1_27">1.27 I get empty page when I want to view huge page (eg. db_structure.php with plenty of tables).</a></h4> <p> This is a <a href="http://bugs.php.net/21079">PHP bug</a> that occur when GZIP output buffering is enabled. If you turn off it (by <a href="#cfg_OBGzip" class="configrule">$cfg['OBGzip'] = false</a> in <i>config.inc.php</i>), it should work. This bug will be fixed in PHP&nbsp;5.0.0.</p> <h4 id="faq1_28"> <a href="#faq1_28">1.28 My MySQL server sometimes refuses queries and returns the message 'Errorcode: 13'. What does this mean?</a></h4> <p> This can happen due to a MySQL bug when having database / table names with upper case characters although <tt>lower_case_table_names</tt> is set to 1. To fix this, turn off this directive, convert all database and table names to lower case and turn it on again. Alternatively, there's a bug-fix available starting with MySQL&nbsp;3.23.56 / 4.0.11-gamma.</p> <h4 id="faq1_29"> <a href="#faq1_29">1.29 When I create a table or modify a column, I get an error and the columns are duplicated.</a></h4> <p> It is possible to configure Apache in such a way that PHP has problems interpreting .php files.</p> <p> The problems occur when two different (and conflicting) set of directives are used:</p> <pre> SetOutputFilter PHP SetInputFilter PHP </pre> <p> and</p> <pre>AddType application/x-httpd-php .php</pre> <p> In the case we saw, one set of directives was in <tt>/etc/httpd/conf/httpd.conf</tt>, while the other set was in <tt>/etc/httpd/conf/addon-modules/php.conf</tt>.<br /> The recommended way is with <tt>AddType</tt>, so just comment out the first set of lines and restart Apache:</p> <pre> #SetOutputFilter PHP #SetInputFilter PHP </pre> <h4 id="faq1_30"> <a href="#faq1_30">1.30 I get the error &quot;navigation.php: Missing hash&quot;.</a></h4> <p> This problem is known to happen when the server is running Turck MMCache but upgrading MMCache to version 2.3.21 solves the problem.</p> <h4 id="faq1_31"> <a href="#faq1_31">1.31 Does phpMyAdmin support php5?</a></h4> <p>Yes.</p> <p> Since release 3.0 only PHP 5.2 and newer. For older PHP versions 2.9 branch is still maintained. </p> <h4 id="faq1_32"> <a href="#faq1_32">1.32 Can I use <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication with <abbr title="Internet Information Services">IIS</abbr>?</a></h4> <p> Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in <abbr title="Internet Server Application Programming Interface">ISAPI</abbr> mode under <abbr title="Internet Information Services">IIS</abbr> 5.1.</p> <ol><li>In your <tt>php.ini</tt> file, set <tt>cgi.rfc2616_headers = 0</tt></li> <li>In <tt>Web Site Properties -&gt; File/Directory Security -&gt; Anonymous Access</tt> dialog box, check the <tt>Anonymous access</tt> checkbox and uncheck any other checkboxes (i.e. uncheck <tt>Basic authentication</tt>, <tt>Integrated Windows authentication</tt>, and <tt>Digest</tt> if it's enabled.) Click <tt>OK</tt>.</li> <li>In <tt>Custom Errors</tt>, select the range of <tt>401;1</tt> through <tt>401;5</tt> and click the <tt>Set to Default</tt> button.</li> </ol> <h4 id="faq1_33"> <a href="#faq1_33">1.33 Is there a problem with the mysqli extension when running PHP 5.0.4 on 64-bit systems?</a></h4> <p> Yes. This problem affects phpMyAdmin (&quot;Call to undefined function pma_reloadnavigation&quot;), so upgrade your PHP to the next version.</p> <h4 id="faq1_34"> <a href="#faq1_34">1.34 Can I access directly to database or table pages?</a></h4> <p> Yes. Out of the box, you can use <abbr title="Uniform Resource Locator">URL</abbr>s like http://server/phpMyAdmin/index.php?server=X&amp;db=database&amp;table=table&amp;target=script. For <tt>server</tt> you use the server number which refers to the order of the server paragraph in <tt>config.inc.php</tt>. Table and script parts are optional. If you want http://server/phpMyAdmin/database[/table][/script] <abbr title="Uniform Resource Locator">URL</abbr>s, you need to do some configuration. Following lines apply only for <a href="http://httpd.apache.org">Apache</a> web server. First make sure, that you have enabled some features within global configuration. You need <code>Options FollowSymLinks</code> and <code>AllowOverride FileInfo</code> enabled for directory where phpMyAdmin is installed and you need mod_rewrite to be enabled. Then you just need to create following <code>.htaccess</code> file in root folder of phpMyAdmin installation (don't forget to change directory name inside of it):</p> <pre> RewriteEngine On RewriteBase /path_to_phpMyAdmin RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&amp;table=$2&amp;target=$3 [R] RewriteRule ^([a-zA-Z0-9_]+)/([a-z_]+\.php)$ index.php?db=$1&amp;target=$2 [R] RewriteRule ^([a-zA-Z0-9_]+)/([a-zA-Z0-9_]+)$ index.php?db=$1&amp;table=$2 [R] RewriteRule ^([a-zA-Z0-9_]+)$ index.php?db=$1 [R] </pre> <h4 id="faq1_35"> <a href="#faq1_35">1.35 Can I use <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication with Apache <abbr title="Common Gateway Interface">CGI</abbr>?</a></h4> <p> Yes. However you need to pass authentication variable to <abbr title="Common Gateway Interface">CGI</abbr> using following rewrite rule:</p> <pre> RewriteEngine On RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization},L] </pre> <h4 id="faq1_36"> <a href="#faq1_36">1.36 I get an error &quot;500 Internal Server Error&quot;.</a> </h4> <p> There can be many explanations to this and a look at your server's error log file might give a clue. </p> <h4 id="faq1_37"> <a href="#faq1_37">1.37 I run phpMyAdmin on cluster of different machines and password encryption in cookie auth doesn't work.</a></h4> <p> If your cluster consist of different architectures, PHP code used for encryption/decryption won't work correct. This is caused by use of pack/unpack functions in code. Only solution is to use mcrypt extension which works fine in this case.</p> <h4 id="faq1_38"> <a href="#faq1_38">1.38 Can I use phpMyAdmin on a server on which Suhosin is enabled?</a></h4> <p> Yes but the default configuration values of Suhosin are known to cause problems with some operations, for example editing a table with many columns and no primary key or with textual primary key. </p> <p> Suhosin configuration might lead to malfunction in some cases and it can not be fully avoided as phpMyAdmin is kind of application which needs to transfer big amounts of columns in single HTTP request, what is something what Suhosin tries to prevent. Generally all <code>suhosin.request.*</code>, <code>suhosin.post.*</code> and <code>suhosin.get.*</code> directives can have negative effect on phpMyAdmin usability. You can always find in your error logs which limit did cause dropping of variable, so you can diagnose the problem and adjust matching configuration variable. </p> <p> The default values for most Suhosin configuration options will work in most scenarios, however you might want to adjust at least following parameters: </p> <ul> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_vars">suhosin.request.max_vars</a> should be increased (eg. 2048)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_vars">suhosin.post.max_vars</a> should be increased (eg. 2048)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_array_index_length">suhosin.request.max_array_index_length</a> should be increased (eg. 256)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_array_index_length">suhosin.post.max_array_index_length</a> should be increased (eg. 256)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.request.max_totalname_length">suhosin.request.max_totalname_length</a> should be increased (eg. 8192)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_totalname_length">suhosin.post.max_totalname_length</a> should be increased (eg. 8192)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.get.max_value_length">suhosin.get.max_value_length</a> should be increased (eg. 1024)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#suhosin.sql.bailout_on_error">suhosin.sql.bailout_on_error</a> needs to be disabled (the default)</li> <li><a href="http://www.hardened-php.net/suhosin/configuration.html#logging_configuration">suhosin.log.*</a> should not include SQL, otherwise you get big slowdown</li> </ul> <p> You can also disable the warning using the <a href="#cfg_SuhosinDisableWarning"> <tt>SuhosinDisableWarning</tt> directive</a>. </p> <h4 id="faq1_39"> <a href="#faq1_39">1.39 When I try to connect via https, I can log in, but then my connection is redirected back to http. What can cause this behavior?</a></h4> <p> Be sure that you have enabled <tt>SSLOptions</tt> and <tt>StdEnvVars</tt> in your Apache configuration. See <a href="http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions">http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#ssloptions</a>.</p> <h4 id="faq1_40"> <a href="#faq1_40">1.40 When accessing phpMyAdmin via an Apache reverse proxy, cookie login does not work.</a></h4> <p>To be able to use cookie auth Apache must know that it has to rewrite the set-cookie headers.<br /> Example from the Apache 2.2 documentation:</p> <pre> ProxyPass /mirror/foo/ http://backend.example.com/ ProxyPassReverse /mirror/foo/ http://backend.example.com/ ProxyPassReverseCookieDomain backend.example.com public.example.com ProxyPassReverseCookiePath / /mirror/foo/ </pre> <p>Note: if the backend url looks like http://host/~user/phpmyadmin, the tilde (~) must be url encoded as %7E in the ProxyPassReverse* lines. This is not specific to phpmyadmin, it's just the behavior of Apache. </p> <pre> ProxyPass /mirror/foo/ http://backend.example.com/~user/phpmyadmin ProxyPassReverse /mirror/foo/ http://backend.example.com/%7Euser/phpmyadmin ProxyPassReverseCookiePath /%7Euser/phpmyadmin /mirror/foo </pre> <p>See <a href="http://httpd.apache.org/docs/2.2/mod/mod_proxy.html">http://httpd.apache.org/docs/2.2/mod/mod_proxy.html</a> for more details.</p> <h4 id="faq1_41"> <a href="#faq1_41">1.41 When I view a database and ask to see its privileges, I get an error about an unknown column.</a></h4> <p> The MySQL server's privilege tables are not up to date, you need to run the <tt>mysql_upgrade</tt> command on the server.</p> <h3 id="faqconfig">Configuration</h3> <h4 id="faq2_1"> <a href="#faq2_1">2.1 The error message &quot;Warning: Cannot add header information - headers already sent by ...&quot; is displayed, what's the problem?</a></h4> <p> Edit your <i>config.inc.php</i> file and ensure there is nothing (I.E. no blank lines, no spaces, no characters...) neither before the <tt>&lt;?php</tt> tag at the beginning, neither after the <tt>?&gt;</tt> tag at the end. We also got a report from a user under IIS, that used a zipped distribution kit: the file <tt>libraries/Config.class.php</tt> contained an end-of-line character (hex 0A) at the end; removing this character cleared his errors.</p> <h4 id="faq2_2"> <a href="#faq2_2">2.2 phpMyAdmin can't connect to MySQL. What's wrong?</a></h4> <p> Either there is an error with your PHP setup or your username/password is wrong. Try to make a small script which uses mysql_connect and see if it works. If it doesn't, it may be you haven't even compiled MySQL support into PHP.</p> <h4 id="faq2_3"> <a href="#faq2_3">2.3 The error message &quot;Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111) ...&quot; is displayed. What can I do?</a></h4> <p> For RedHat users, Harald Legner suggests this on the mailing list:</p> <p> On my RedHat-Box the socket of MySQL is <i>/var/lib/mysql/mysql.sock</i>. In your <i>php.ini</i> you will find a line</p> <pre>mysql.default_socket = /tmp/mysql.sock</pre> <p> change it to</p> <pre>mysql.default_socket = /var/lib/mysql/mysql.sock</pre> <p> Then restart apache and it will work.</p> <p> Here is a fix suggested by Brad Ummer:</p> <ul><li>First, you need to determine what socket is being used by MySQL.<br /> To do this, telnet to your server and go to the MySQL bin directory. In this directory there should be a file named <i>mysqladmin</i>. Type <tt>./mysqladmin variables</tt>, and this should give you a bunch of info about your MySQL server, including the socket (<i>/tmp/mysql.sock</i>, for example).</li> <li>Then, you need to tell PHP to use this socket.<br /> To do this in phpMyAdmin, you need to complete the socket information in the <i>config.inc.php</i>.<br /> For example: <a href="#cfg_Servers_socket" class="configrule"> $cfg['Servers'][$i]['socket']&nbsp;=&nbsp;'/tmp/mysql.sock';</a> <br /><br /> Please also make sure that the permissions of this file allow to be readable by your webserver (i.e. '0755').</li> </ul> <p> Have also a look at the <a href="http://dev.mysql.com/doc/en/can-not-connect-to-server.html"> corresponding section of the MySQL documentation</a>.</p> <h4 id="faq2_4"> <a href="#faq2_4">2.4 Nothing is displayed by my browser when I try to run phpMyAdmin, what can I do?</a></h4> <p> Try to set the <a href="#cfg_OBGzip" class="configrule">$cfg['OBGZip']</a> directive to <tt>FALSE</tt> in the phpMyAdmin configuration file. It helps sometime.<br /> Also have a look at your PHP version number: if it contains &quot;4.0b...&quot; it means you're running a beta version of PHP. That's not a so good idea, please upgrade to a plain revision.</p> <h4 id="faq2_5"> <a href="#faq2_5">2.5 Each time I want to insert or change a record or drop a database or a table, an error 404 (page not found) is displayed or, with <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication, I'm asked to log in again. What's wrong?</a></h4> <p> Check the value you set for the <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a> directive in the phpMyAdmin configuration file.</p> <h4 id="faq2_6"> <a href="#faq2_6">2.6 I get an &quot;Access denied for user: 'root@localhost' (Using password: YES)&quot;-error when trying to access a MySQL-Server on a host which is port-forwarded for my localhost.</a></h4> <p> When you are using a port on your localhost, which you redirect via port-forwarding to another host, MySQL is not resolving the localhost as expected.<br /> Erik Wasser explains: The solution is: if your host is &quot;localhost&quot; MySQL (the command line tool <code>mysql</code> as well) always tries to use the socket connection for speeding up things. And that doesn't work in this configuration with port forwarding.<br /> If you enter "127.0.0.1" as hostname, everything is right and MySQL uses the <abbr title="Transmission Control Protocol">TCP</abbr> connection.</p> <h4 id="faqthemes"><a href="#faqthemes">2.7 Using and creating themes</a></h4> <p> Themes are configured with <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>, <a href="#cfg_ThemeManager" class="configrule">$cfg['ThemeManager']</a> and <a href="#cfg_ThemeDefault" class="configrule">$cfg['ThemeDefault']</a>.<br /> <br /> Under <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a>, you should not delete the directory &quot;original&quot; or its underlying structure, because this is the system theme used by phpMyAdmin. &quot;original&quot; contains all images and styles, for backwards compatibility and for all themes that would not include images or css-files. <br /><br /> If <a href="#cfg_ThemeManager" class="configrule">$cfg['ThemeManager']</a> is enabled, you can select your favorite theme on the main page. Your selected theme will be stored in a cookie.<br /><br /></p> <p> To create a theme:</p> <ul><li>make a new subdirectory (for example &quot;your_theme_name&quot;) under <a href="#cfg_ThemePath" class="configrule">$cfg['ThemePath']</a> (by default <tt>themes</tt>)</li> <li>copy the files and directories from &quot;original&quot; to &quot;your_theme_name&quot;</li> <li>edit the css-files in &quot;your_theme_name/css&quot;</li> <li>put your new images in &quot;your_theme_name/img&quot;</li> <li>edit <tt>layout.inc.php</tt> in &quot;your_theme_name&quot;</li> <li>edit <tt>info.inc.php</tt> in &quot;your_theme_name&quot; to contain your chosen theme name, that will be visible in user interface</li> <li>make a new screenshot of your theme and save it under &quot;your_theme_name/screen.png&quot;</li> </ul> <p> In theme directory there is file <tt>info.inc.php</tt> which contains theme verbose name, theme generation and theme version. These versions and generations are enumerated from 1 and do not have any direct dependence on phpMyAdmin version. Themes within same generation should be backwards compatible - theme with version 2 should work in phpMyAdmin requiring version 1. Themes with different generation are incompatible.</p> <p> If you do not want to use your own symbols and buttons, remove the directory &quot;img&quot; in &quot;your_theme_name&quot;. phpMyAdmin will use the default icons and buttons (from the system-theme &quot;original&quot;). </p> <h4 id="faqmissingparameters"> <a href="#faqmissingparameters">2.8 I get &quot;Missing parameters&quot; errors, what can I do?</a></h4> <p> Here are a few points to check:</p> <ul><li>In <tt>config.inc.php</tt>, try to leave the <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a> directive empty. See also <a href="#faq4_7"><abbr title="Frequently Asked Questions">FAQ</abbr> 4.7</a>. </li> <li>Maybe you have a broken PHP installation or you need to upgrade your Zend Optimizer. See <a href="http://bugs.php.net/bug.php?id=31134"> http://bugs.php.net/bug.php?id=31134</a>. </li> <li>If you are using Hardened PHP with the ini directive <tt>varfilter.max_request_variables</tt> set to the default (200) or another low value, you could get this error if your table has a high number of columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the hint). </li> <li>In the <tt>php.ini</tt> directive <tt>arg_separator.input</tt>, a value of &quot;;&quot; will cause this error. Replace it with &quot;&amp;;&quot;. </li> <li>If you are using <a href="http://www.hardened-php.net/">Hardened-PHP</a>, you might want to increase <a href="http://www.hardened-php.net/hphp/troubleshooting.html">request limits</a>. </li> <li>The directory specified in the <tt>php.ini</tt> directive <tt>session.save_path</tt> does not exist or is read-only. </li> </ul> <h4 id="faq2_9"> <a href="#faq2_9">2.9 Seeing an upload progress bar</a></h4> <p> To be able to see a progress bar during your uploads, your server must have either the <a href="http://pecl.php.net/package/APC">APC</a> extension or the <a href="http://pecl.php.net/package/uploadprogress">uploadprogress</a> one. Moreover, the JSON extension has to be enabled in your PHP.</p> <p> If using APC, you must set <tt>apc.rfc1867</tt> to <tt>on</tt> in your php.ini.</p> <h3 id="faqlimitations">Known limitations</h3> <h4 id="login_bug"> <a href="#login_bug">3.1 When using <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication, a user who logged out can not log in again in with the same nick.</a></h4> <p> This is related to the authentication mechanism (protocol) used by phpMyAdmin. To bypass this problem: just close all the opened browser windows and then go back to phpMyAdmin. You should be able to log in again.</p> <h4 id="faq3_2"> <a href="#faq3_2">3.2 When dumping a large table in compressed mode, I get a memory limit error or a time limit error.</a></h4> <p> Compressed dumps are built in memory and because of this are limited to php's memory limit. For GZip/BZip2 exports this can be overcome since 2.5.4 using <a href="#cfg_CompressOnFly" class="configrule">$cfg['CompressOnFly']</a> (enabled by default). Zip exports can not be handled this way, so if you need Zip files for larger dump, you have to use another way.</p> <h4 id="faq3_3"> <a href="#faq3_3">3.3 With InnoDB tables, I lose foreign key relationships when I rename a table or a column.</a></h4> <p> This is an InnoDB bug, see <a href="http://bugs.mysql.com/bug.php?id=21704">http://bugs.mysql.com/bug.php?id=21704</a>.</p> <h4 id="faq3_4"> <a href="#faq3_4">3.4 I am unable to import dumps I created with the mysqldump tool bundled with the MySQL server distribution.</a></h4> <p> The problem is that older versions of <code>mysqldump</code> created invalid comments like this:</p> <pre> -- MySQL dump 8.22 -- -- Host: localhost Database: database --------------------------------------------------------- -- Server version 3.23.54 </pre> <p> The invalid part of the code is the horizontal line made of dashes that appears once in every dump created with mysqldump. If you want to run your dump you have to turn it into valid MySQL. This means, you have to add a whitespace after the first two dashes of the line or add a # before it: <br /> <code> -- -------------------------------------------------------<br /> </code> or<br /> <code> #--------------------------------------------------------- </code> </p> <h4 id="faq3_5"> <a href="#faq3_5">3.5 When using nested folders there are some multiple hierarchies displayed in a wrong manner?!</a> (<a href="#cfg_LeftFrameTableSeparator" class="configrule">$cfg['LeftFrameTableSeparator']</a>)</h4> <p> Please note that you should not use the separating string multiple times without any characters between them, or at the beginning/end of your table name. If you have to, think about using another TableSeparator or disabling that feature</p> <h4 id="faq3_6"> <a href="#faq3_6">3.6 What is currently not supported in phpMyAdmin about InnoDB?</a></h4> <p> In Relation view, being able to choose a table in another database, or having more than one index column in the foreign key.<br /><br/> In Query-by-example (Query), automatic generation of the query LEFT JOIN from the foreign table.<br /><br/> </p> <h4 id="faq3_7"> <a href="#faq3_7">3.7 I have table with many (100+) columns and when I try to browse table I get series of errors like &quot;Warning: unable to parse url&quot;. How can this be fixed?</a></h4> <p> Your table neither have a primary key nor an unique one, so we must use a long expression to identify this row. This causes problems to parse_url function. The workaround is to create a primary or unique key. <br /> </p> <h4 id="faq3_8"> <a href="#faq3_8">3.8 I cannot use (clickable) HTML-forms in columns where I put a MIME-Transformation onto!</a></h4> <p> Due to a surrounding form-container (for multi-row delete checkboxes), no nested forms can be put inside the table where phpMyAdmin displays the results. You can, however, use any form inside of a table if keep the parent form-container with the target to tbl_row_delete.php and just put your own input-elements inside. If you use a custom submit input field, the form will submit itself to the displaying page again, where you can validate the $HTTP_POST_VARS in a transformation. For a tutorial on how to effectively use transformations, see our <a href="http://www.phpmyadmin.net/home_page/docs.php">Link section</a> on the official phpMyAdmin-homepage.</p> <h4 id="faq3_9"> <a href="#faq3_9">3.9 I get error messages when using "--sql_mode=ANSI" for the MySQL server</a></h4> <p> When MySQL is running in ANSI-compatibility mode, there are some major differences in how <abbr title="structured query language">SQL</abbr> is structured (see <a href="http://dev.mysql.com/doc/mysql/en/ansi-mode.html"> http://dev.mysql.com/doc/mysql/en/ansi-mode.html</a>). Most important of all, the quote-character (") is interpreted as an identifier quote character and not as a string quote character, which makes many internal phpMyAdmin operations into invalid <abbr title="structured query language">SQL</abbr> statements. There is no workaround to this behaviour. News to this item will be posted in Bug report <a href="https://sourceforge.net/tracker/index.php?func=detail&amp;aid=816858&amp;group_id=23067&amp;atid=377408">#816858</a> </p> <h4 id="faq3_10"> <a href="#faq3_10">3.10 Homonyms and no primary key: When the results of a SELECT display more that one column with the same value (for example <tt>SELECT lastname from employees where firstname like 'A%'</tt> and two &quot;Smith&quot; values are displayed), if I click Edit I cannot be sure that I am editing the intended row.</a></h4> <p> Please make sure that your table has a primary key, so that phpMyAdmin can use it for the Edit and Delete links.</p> <h4 id="faq3_11"> <a href="#faq3_11">3.11 The number of records for InnoDB tables is not correct.</a></h4> <p> phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the case of InnoDB tables. See <a href="#cfg_MaxExactCount" class="configrule">$cfg['MaxExactCount']</a> for a way to modify those results, but this could have a serious impact on performance.</p> <h4 id="faq3_12"> <a href="#faq3_12">3.12 (withdrawn).</a></h4> <h4 id="faq3_13"> <a href="#faq3_13">3.13 I get an error when entering <tt>USE</tt> followed by a db name containing an hyphen. </a></h4> <p> The tests I have made with MySQL 5.1.49 shows that the API does not accept this syntax for the USE command. </p> <h4 id="faq3_14"> <a href="#faq3_14">3.14 I am not able to browse a table when I don't have the right to SELECT one of the columns.</a></h4> <p> This has been a known limitation of phpMyAdmin since the beginning and it's not likely to be solved in the future. </p> <!-- Begin: Excel import limitations --> <h4 id="faq3_15"> <a href="#faq3_15">3.15 (withdrawn).</a></h4> <h4 id="faq3_16"> <a href="#faq3_16">3.16 (withdrawn).</a></h4> <h4 id="faq3_17"> <a href="#faq3_17">3.17 (withdrawn).</a></h4> <!-- End: Excel import limitations --> <!-- Begin: CSV import limitations --> <h4 id="faq3_18"> <a href="#faq3_18">3.18 When I import a CSV file that contains multiple tables, they are lumped together into a single table.</a></h4> <p> There is no reliable way to differetiate tables in CSV format. For the time being, you will have to break apart CSV files containing multiple tables. </p> <!-- End: CSV import limitations --> <!-- Begin: Import type-detection limitations --> <h4 id="faq3_19"> <a href="#faq3_19">3.19 When I import a file and have phpMyAdmin determine the appropriate data structure it only uses int, decimal, and varchar types.</a></h4> <p> Currently, the import type-detection system can only assign these MySQL types to columns. In future, more will likely be added but for the time being you will have to edit the structure to your liking post-import. <br /><br /> Also, you should note the fact that phpMyAdmin will use the size of the largest item in any given column as the column size for the appropriate type. If you know you will be adding larger items to that column then you should manually adjust the column sizes accordingly. This is done for the sake of efficiency. </p> <!-- End: Import type-detection limitations --> <h3 id="faqmultiuser"><abbr title="Internet service provider">ISP</abbr>s, multi-user installations</h3> <h4 id="faq4_1"> <a href="#faq4_1">4.1 I'm an <abbr title="Internet service provider">ISP</abbr>. Can I setup one central copy of phpMyAdmin or do I need to install it for each customer. </a></h4> <p> Since version 2.0.3, you can setup a central copy of phpMyAdmin for all your users. The development of this feature was kindly sponsored by NetCologne GmbH. This requires a properly setup MySQL user management and phpMyAdmin <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication. See the install section on &quot;Using <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication&quot;. </p> <h4 id="faq4_2"> <a href="#faq4_2">4.2 What's the preferred way of making phpMyAdmin secure against evil access. </a></h4> <p> This depends on your system.<br /> If you're running a server which cannot be accessed by other people, it's sufficient to use the directory protection bundled with your webserver (with Apache you can use <i>.htaccess</i> files, for example).<br /> If other people have telnet access to your server, you should use phpMyAdmin's <abbr title="HyperText Transfer Protocol">HTTP</abbr> or cookie authentication features. <br /><br /> Suggestions: </p> <ul> <li> Your <i>config.inc.php</i> file should be <tt>chmod 660</tt>. </li> <li> All your phpMyAdmin files should be chown -R phpmy.apache, where phpmy is a user whose password is only known to you, and apache is the group under which Apache runs. </li> <li> Follow security recommendations for PHP and your webserver. </li> </ul> <h4 id="faq4_3"> <a href="#faq4_3">4.3 I get errors about not being able to include a file in <i>/lang</i> or in <i>/libraries</i>. </a></h4> <p> Check <i>php.ini</i>, or ask your sysadmin to check it. The <tt>include_path</tt> must contain &quot;.&quot; somewhere in it, and <tt>open_basedir</tt>, if used, must contain &quot;.&quot; and &quot;./lang&quot; to allow normal operation of phpMyAdmin. </p> <h4 id="faq4_4"> <a href="#faq4_4">4.4 phpMyAdmin always gives &quot;Access denied&quot; when using <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication. </a></h4> <p> This could happen for several reasons:</p> <ul><li><a href="#cfg_Servers_controluser" class="configrule">$cfg['Servers'][$i]['controluser']</a> and/or <a href="#cfg_Servers_controlpass" class="configrule">$cfg['Servers'][$i]['controlpass']</a> are wrong.</li> <li>The username/password you specify in the login dialog are invalid.</li> <li>You have already setup a security mechanism for the phpMyAdmin-directory, eg. a .htaccess file. This would interfere with phpMyAdmin's authentication, so remove it.</li> </ul> <h4 id="faq4_5"> <a href="#faq4_5">4.5 Is it possible to let users create their own databases?</a></h4> <p> Starting with 2.2.5, in the user management page, you can enter a wildcard database name for a user (for example &quot;joe%&quot;), and put the privileges you want. For example, adding <tt>SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER</tt> would let a user create/manage his/her database(s).</p> <h4 id="faq4_6"> <a href="#faq4_6">4.6 How can I use the Host-based authentication additions?</a></h4> <p> If you have existing rules from an old .htaccess file, you can take them and add a username between the <tt>'deny'</tt>/<tt>'allow'</tt> and <tt>'from'</tt> strings. Using the username wildcard of <tt>'%'</tt> would be a major benefit here if your installation is suited to using it. Then you can just add those updated lines into the <a href="#cfg_Servers_AllowDeny_rules" class="configrule"> $cfg['Servers'][$i]['AllowDeny']['rules']</a> array.</p> <p> If you want a pre-made sample, you can try this fragment. It stops the 'root' user from logging in from any networks other than the private network <abbr title="Internet Protocol">IP</abbr> blocks.</p> <pre> //block root from logging in except from the private networks $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow'; $cfg['Servers'][$i]['AllowDeny']['rules'] = array( 'deny root from all', 'allow root from localhost', 'allow root from 10.0.0.0/8', 'allow root from 192.168.0.0/16', 'allow root from 172.16.0.0/12', ); </pre> <h4 id="faq4_7"> <a href="#faq4_7">4.7 Authentication window is displayed more than once, why?</a></h4> <p> This happens if you are using a <abbr title="Uniform Resource Locator">URL</abbr> to start phpMyAdmin which is different than the one set in your <a href="#cfg_PmaAbsoluteUri" class="configrule">$cfg['PmaAbsoluteUri']</a>. For example, a missing &quot;www&quot;, or entering with an <abbr title="Internet Protocol">IP</abbr> address while a domain name is defined in the config file.</p> <h4 id="faq4_8"> <a href="#faq4_8">4.8 Which parameters can I use in the URL that starts phpMyAdmin?</a></h4> <p>When starting phpMyAdmin, you can use the <tt>db</tt>, <tt>pma_username</tt>, <tt>pma_password</tt> and <tt>server</tt> parameters. This last one can contain either the numeric host index (from <tt>$i</tt> of the configuration file) or one of the host names present in the configuration file. Using <tt>pma_username</tt> and <tt>pma_password</tt> has been tested along with the usage of 'cookie' <tt>auth_type</tt>.</p> <h3 id="faqbrowsers">Browsers or client <abbr title="operating system">OS</abbr></h3> <h4 id="faq5_1"> <a href="#faq5_1">5.1 I get an out of memory error, and my controls are non-functional, when trying to create a table with more than 14 columns. </a></h4> <p> We could reproduce this problem only under Win98/98SE. Testing under WinNT4 or Win2K, we could easily create more than 60 columns. <br /> A workaround is to create a smaller number of columns, then come back to your table properties and add the other columns. </p> <h4 id="faq5_2"> <a href="#faq5_2">5.2 With Xitami 2.5b4, phpMyAdmin won't process form fields.</a></h4> <p> This is not a phpMyAdmin problem but a Xitami known bug: you'll face it with each script/website that use forms.<br /> Upgrade or downgrade your Xitami server. </p> <h4 id="faq5_3"> <a href="#faq5_3">5.3 I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2).</a></h4> <p> With Konqueror 2.1.1: plain dumps, zip and GZip dumps work ok, except that the proposed file name for the dump is always 'tbl_dump.php'. Bzip2 dumps don't seem to work.<br /> With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the user's temporary directory, so they must be moved before closing Konqueror, or else they disappear. GZip dumps give an error message.<br /> Testing needs to be done for Konqueror 2.2.2.<br /> </p> <h4 id="faq5_4"> <a href="#faq5_4">5.4 I can't use the cookie authentication mode because Internet Explorer never stores the cookies. </a></h4> <p> MS Internet Explorer seems to be really buggy about cookies, at least till version 6. </p> <h4 id="faq5_5"> <a href="#faq5_5">5.5 In Internet Explorer 5.0, I get JavaScript errors when browsing my rows. </a></h4> <p> Upgrade to at least Internet Explorer 5.5 SP2.<br /> </p> <h4 id="faq5_6"> <a href="#faq5_6">5.6 In Internet Explorer 5.0, 5.5 or 6.0, I get an error (like "Page not found") when trying to modify a row in a table with many columns, or with a text column </a></h4> <p> Your table neither have a primary key nor an unique one, so we must use a long <abbr title="Uniform Resource Locator">URL</abbr> to identify this row. There is a limit on the length of the <abbr title="Uniform Resource Locator">URL</abbr> in those browsers, and this not happen in Netscape, for example. The workaround is to create a primary or unique key, or use another browser. <br /> </p> <h4 id="faq5_7"> <a href="#faq5_7">5.7 I refresh (reload) my browser, and come back to the welcome page. </a></h4> <p> Some browsers support right-clicking into the frame you want to refresh, just do this in the right frame.<br /> </p> <h4 id="faq5_8"> <a href="#faq5_8">5.8 With Mozilla 0.9.7 I have problems sending a query modified in the query box. </a></h4> <p> Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future Mozilla versions.<br /> </p> <h4 id="faq5_9"> <a href="#faq5_9">5.9 With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a whitespace in the <abbr title="structured query language">SQL</abbr>-Query edit area: the page scrolls down. </a></h4> <p> This is a Mozilla bug (see bug #26882 at <a href="http://bugzilla.mozilla.org/">BugZilla</a>).<br /> </p> <h4 id="faq5_10"> <a href="#faq5_10">5.10 With Netscape 4.75 I get empty rows between each row of data in a <abbr title="comma separated values">CSV</abbr> exported file. </a></h4> <p> This is a known Netscape 4.75 bug: it adds some line feeds when exporting data in octet-stream mode. Since we can't detect the specific Netscape version, we cannot workaround this bug. </p> <h4 id="faq5_11"> <a href="#faq5_11">5.11 Extended-ASCII characters like German umlauts are displayed wrong.</a></h4> <p> Please ensure that you have set your browser's character set to the one of the language file you have selected on phpMyAdmin's start page. Alternatively, you can try the auto detection mode that is supported by the recent versions of the most browsers.</p> <h4 id="faq5_12"> <a href="#faq5_12">5.12 <acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X: Safari browser changes special characters to &quot;?&quot;.</a></h4> <p> This issue has been reported by a <abbr title="operating system">OS</abbr> X user, who adds that Chimera, Netscape and Mozilla do not have this problem.</p> <h4 id="faq5_13"> <a href="#faq5_13">5.13 With Internet Explorer 5.5 or 6, and <abbr title="HyperText Transfer Protocol">HTTP</abbr> authentication type, I cannot manage two servers: I log in to the first one, then the other one, but if I switch back to the first, I have to log in on each operation.</a></h4> <p> This is a bug in Internet Explorer, other browsers do not behave this way.</p> <h4 id="faq5_14"> <a href="#faq5_14">5.14 Using Opera6, I can manage to get to the authentication, but nothing happens after that, only a blank screen.</a></h4> <p> Please upgrade to Opera7 at least.</p> <h4 id="faq5_15"> <a href="#faq5_15">5.15 I have display problems with Safari.</a></h4> <p> Please upgrade to at least version 1.2.3.</p> <h4 id="faq5_16"> <a href="#faq5_16">5.16 With Internet Explorer, I get &quot;Access is denied&quot; Javascript errors. Or I cannot make phpMyAdmin work under Windows.</a></h4> <p> Please check the following points:</p> <ul><li>Maybe you have defined your <tt>PmaAbsoluteUri</tt> setting in <tt>config.inc.php</tt> to an <abbr title="Internet Protocol">IP</abbr> address and you are starting phpMyAdmin with a <abbr title="Uniform Resource Locator">URL</abbr> containing a domain name, or the reverse situation.</li> <li>Security settings in IE and/or Microsoft Security Center are too high, thus blocking scripts execution.</li> <li>The Windows Firewall is blocking Apache and MySQL. You must allow <abbr title="HyperText Transfer Protocol">HTTP</abbr> ports (80 or 443) and MySQL port (usually 3306) in the &quot;in&quot; and &quot;out&quot; directions.</li> </ul> <h4 id="faq5_17"> <a href="#faq5_17">5.17 With Firefox, I cannot delete rows of data or drop a database.</a></h4> <p> Many users have confirmed that the Tabbrowser Extensions plugin they installed in their Firefox is causing the problem.</p> <h4 id="faq5_18"> <a href="#faq5_18">5.18 With Konqueror 4.2.x an invalid <tt>LIMIT</tt> clause is generated when I browse a table.</a></h4> <p> This happens only when both of these conditions are met: using the <tt>http</tt> authentication mode and <tt>register_globals</tt> being set to <tt>On</tt> on the server. It seems to be a browser-specific problem; meanwhile use the <tt>cookie</tt> authentication mode.</p> <h3 id="faqusing">Using phpMyAdmin</h3> <h4 id="faq6_1"> <a href="#faq6_1">6.1 I can't insert new rows into a table / I can't create a table - MySQL brings up a <abbr title="structured query language">SQL</abbr>-error. </a></h4> <p> Examine the <abbr title="structured query language">SQL</abbr> error with care. Often the problem is caused by specifying a wrong column-type.<br /> Common errors include: </p> <ul> <li>Using <tt>VARCHAR</tt> without a size argument</li> <li>Using <tt>TEXT</tt> or <tt>BLOB</tt> with a size argument</li> </ul> <p> Also, look at the syntax chapter in the MySQL manual to confirm that your syntax is correct. </p> <h4 id="faq6_2"> <a href="#faq6_2">6.2 When I create a table, I set an index for two columns and phpMyAdmin generates only one index with those two columns. </a></h4> <p> This is the way to create a multi-columns index. If you want two indexes, create the first one when creating the table, save, then display the table properties and click the Index link to create the other index. </p> <h4 id="faq6_3"> <a href="#faq6_3">6.3 How can I insert a null value into my table?</a></h4> <p> Since version 2.2.3, you have a checkbox for each column that can be null. Before 2.2.3, you had to enter &quot;null&quot;, without the quotes, as the column's value. Since version 2.5.5, you have to use the checkbox to get a real NULL value, so if you enter &quot;NULL&quot; this means you want a literal NULL in the column, and not a NULL value (this works in PHP4). </p> <h4 id="faq6_4"> <a href="#faq6_4">6.4 How can I backup my database or table?</a></h4> <p> Click on a database or table name in the left frame, the properties will be displayed. Then on the menu, click &quot;Export&quot;, you can dump the structure, the data, or both. This will generate standard <abbr title="structured query language">SQL</abbr> statements that can be used to recreate your database/table. <br /><br /> You will need to choose &quot;Save as file&quot;, so that phpMyAdmin can transmit the resulting dump to your station. Depending on your PHP configuration, you will see options to compress the dump. See also the <a href="#cfg_ExecTimeLimit" class="configrule">$cfg['ExecTimeLimit']</a> configuration variable.<br /><br /> For additional help on this subject, look for the word &quot;dump&quot; in this document.</p> <h4 id="faq6_5"> <a href="#faq6_5">6.5 How can I restore (upload) my database or table using a dump? How can I run a &quot;.sql&quot; file? </a></h4> <p> Click on a database name in the left frame, the properties will be displayed. Select &quot;Import&quot; from the list of tabs in the right&#8211;hand frame (or &quot;<abbr title="structured query language">SQL</abbr>&quot; if your phpMyAdmin version is previous to 2.7.0). In the &quot;Location of the text file&quot; section, type in the path to your dump filename, or use the Browse button. Then click Go. <br /><br /> With version 2.7.0, the import engine has been re&#8211;written, if possible it is suggested that you upgrade to take advantage of the new features. <br /><br /> For additional help on this subject, look for the word &quot;upload&quot; in this document. </p> <h4 id="faq6_6"> <a href="#faq6_6">6.6 How can I use the relation table in Query-by-example?</a></h4> <p> Here is an example with the tables persons, towns and countries, all located in the database mydb. If you don't have a <tt>pma_relation</tt> table, create it as explained in the configuration section. Then create the example tables:</p> <pre> CREATE TABLE REL_countries ( country_code char(1) NOT NULL default '', description varchar(10) NOT NULL default '', PRIMARY KEY (country_code) ) TYPE=MyISAM; INSERT INTO REL_countries VALUES ('C', 'Canada'); CREATE TABLE REL_persons ( id tinyint(4) NOT NULL auto_increment, person_name varchar(32) NOT NULL default '', town_code varchar(5) default '0', country_code char(1) NOT NULL default '', PRIMARY KEY (id) ) TYPE=MyISAM; INSERT INTO REL_persons VALUES (11, 'Marc', 'S', ''); INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C'); CREATE TABLE REL_towns ( town_code varchar(5) NOT NULL default '0', description varchar(30) NOT NULL default '', PRIMARY KEY (town_code) ) TYPE=MyISAM; INSERT INTO REL_towns VALUES ('S', 'Sherbrooke'); INSERT INTO REL_towns VALUES ('M', 'Montr&eacute;al'); </pre> <p> To setup appropriate links and display information:</p> <ul><li>on table &quot;REL_persons&quot; click Structure, then Relation view</li> <li>in Links, for &quot;town_code&quot; choose &quot;REL_towns-&gt;code&quot;</li> <li>in Links, for &quot;country_code&quot; choose &quot;REL_countries-&gt;country_code&quot;</li> <li>on table &quot;REL_towns&quot; click Structure, then Relation view</li> <li>in &quot;Choose column to display&quot;, choose &quot;description&quot;</li> <li>repeat the two previous steps for table &quot;REL_countries&quot;</li> </ul> <p> Then test like this:</p> <ul><li>Click on your db name in the left frame</li> <li>Choose &quot;Query&quot;</li> <li>Use tables: persons, towns, countries</li> <li>Click &quot;Update query&quot;</li> <li>In the columns row, choose persons.person_name and click the &quot;Show&quot; tickbox </li> <li>Do the same for towns.description and countries.descriptions in the other 2 columns</li> <li>Click &quot;Update query&quot; and you will see in the query box that the correct joins have been generated</li> <li>Click &quot;Submit query&quot;</li> </ul> <h4 id="faqdisplay"> <a href="#faqdisplay">6.7 How can I use the &quot;display column&quot; feature?</a></h4> <p> Starting from the previous example, create the pma_table_info as explained in the configuration section, then browse your persons table, and move the mouse over a town code or country code. <br /><br /> See also <a href="#faq6_21"><abbr title="Frequently Asked Questions">FAQ</abbr> 6.21</a> for an additional feature that &quot;display column&quot; enables: drop-down list of possible values. </p> <h4 id="faqpdf"> <a href="#faqpdf">6.8 How can I produce a <abbr title="Portable Document Format">PDF</abbr> schema of my database?</a></h4> <p> First the configuration variables &quot;relation&quot;, &quot;table_coords&quot; and &quot;pdf_pages&quot; have to be filled in. <br /><br /> Then you need to think about your schema layout. Which tables will go on which pages? </p> <ul> <li>Select your database in the left frame.</li> <li>Choose &quot;Operations&quot; in the navigation bar at the top.</li> <li>Choose &quot;Edit <abbr title="Portable Document Format">PDF</abbr> Pages&quot; near the bottom of the page.</li> <li>Enter a name for the first <abbr title="Portable Document Format">PDF</abbr> page and click Go. If you like, you can use the &quot;automatic layout,&quot; which will put all your linked tables onto the new page.</li> <li>Select the name of the new page (making sure the Edit radio button is selected) and click Go.</li> <li>Select a table from the list, enter its coordinates and click Save.<br /> Coordinates are relative; your diagram will be automatically scaled to fit the page. When initially placing tables on the page, just pick any coordinates -- say, 50x50. After clicking Save, you can then use the <a href="#wysiwyg">graphical editor</a> to position the element correctly.</li> <li>When you'd like to look at your <abbr title="Portable Document Format">PDF</abbr>, first be sure to click the Save button beneath the list of tables and coordinates, to save any changes you made there. Then scroll all the way down, select the <abbr title="Portable Document Format">PDF</abbr> options you want, and click Go.</li> <li>Internet Explorer for Windows may suggest an incorrect filename when you try to save a generated <abbr title="Portable Document Format">PDF</abbr>. When saving a generated <abbr title="Portable Document Format">PDF</abbr>, be sure that the filename ends in &quot;.pdf&quot;, for example &quot;schema.pdf&quot;. Browsers on other operating systems, and other browsers on Windows, do not have this problem.</li> </ul> <h4 id="faq6_9"> <a href="#faq6_9">6.9 phpMyAdmin is changing the type of one of my columns!</a></h4> <p> No, it's MySQL that is doing <a href="http://dev.mysql.com/doc/en/silent-column-changes.html">silent column type changing</a>.</p> <h4 id="underscore"> <a href="#underscore">6.10 When creating a privilege, what happens with underscores in the database name?</a></h4> <p> If you do not put a backslash before the underscore, this is a wildcard grant, and the underscore means &quot;any character&quot;. So, if the database name is &quot;john_db&quot;, the user would get rights to john1db, john2db ...<br /><br /> If you put a backslash before the underscore, it means that the database name will have a real underscore.</p> <h4 id="faq6_11"> <a href="#faq6_11">6.11 What is the curious symbol &oslash; in the statistics pages?</a></h4> <p> It means &quot;average&quot;.</p> <h4 id="faqexport"> <a href="#faqexport">6.12 I want to understand some Export options.</a></h4> <p><b>Structure:</b></p> <ul><li>&quot;Add DROP TABLE&quot; will add a line telling MySQL to <a href="http://dev.mysql.com/doc/mysql/en/drop-table.html">drop the table</a>, if it already exists during the import. It does NOT drop the table after your export, it only affects the import file.</li> <li>&quot;If Not Exists&quot; will only create the table if it doesn't exist. Otherwise, you may get an error if the table name exists but has a different structure.</li> <li>&quot;Add AUTO_INCREMENT value&quot; ensures that AUTO_INCREMENT value (if any) will be included in backup.</li> <li>&quot;Enclose table and column names with backquotes&quot; ensures that column and table names formed with special characters are protected.</li> <li>&quot;Add into comments&quot; includes column comments, relations, and MIME types set in the pmadb in the dump as <abbr title="structured query language">SQL</abbr> comments (<i>/* xxx */</i>). </li> </ul> <p><b>Data:</b></p> <ul><li>&quot;Complete inserts&quot; adds the column names on every INSERT command, for better documentation (but resulting file is bigger).</li> <li>&quot;Extended inserts&quot; provides a shorter dump file by using only once the INSERT verb and the table name.</li> <li>&quot;Delayed inserts&quot; are best explained in the <a href="http://dev.mysql.com/doc/mysql/en/insert-delayed.html">MySQL manual</a>. </li> <li>&quot;Ignore inserts&quot; treats errors as a warning instead. Again, more info is provided in the <a href="http://dev.mysql.com/doc/mysql/en/insert.html">MySQL manual</a>, but basically with this selected, invalid values are adjusted and inserted rather than causing the entire statement to fail.</li> </ul> <h4 id="faq6_13"> <a href="#faq6_13">6.13 I would like to create a database with a dot in its name.</a></h4> <p> This is a bad idea, because in MySQL the syntax &quot;database.table&quot; is the normal way to reference a database and table name. Worse, MySQL will usually let you create a database with a dot, but then you cannot work with it, nor delete it.</p> <h4 id="faqsqlvalidator"> <a href="#faqsqlvalidator">6.14 How do I set up the <abbr title="structured query language">SQL</abbr> Validator?</a></h4> <p> To use SQL Validator, you need PHP with <abbr title="Extensible Markup Language">XML</abbr>, <abbr title="Perl Compatible Regular Expressions">PCRE</abbr> and <abbr title="PHP Extension and Application Repository">PEAR</abbr> support. In addition you need a <abbr title="Simple Object Access Protocol">SOAP</abbr> support, either as a PHP extension or as a PEAR SOAP module. </p> <p> To install <abbr title="PHP Extension and Application Repository">PEAR</abbr> <abbr title="Simple Object Access Protocol">SOAP</abbr> module, run <tt>"pear install Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP"</tt> to get the necessary <abbr title="PHP Extension and Application Repository">PEAR</abbr> modules for usage. </p> <p> If you use the Validator, you should be aware that any <abbr title="structured query language">SQL</abbr> statement you submit will be stored anonymously (database/table/column names, strings, numbers replaced with generic values). The Mimer <abbr title="structured query language">SQL</abbr> Validator itself, is &copy; 2001 Upright Database Technology. We utilize it as free SOAP service. </p> <h4 id="faq6_15"> <a href="#faq6_15">6.15 I want to add a BLOB column and put an index on it, but MySQL says &quot;BLOB column '...' used in key specification without a key length&quot;.</a></h4> <p> The right way to do this, is to create the column without any indexes, then display the table structure and use the &quot;Create an index&quot; dialog. On this page, you will be able to choose your BLOB column, and set a size to the index, which is the condition to create an index on a BLOB column.</p> <h4 id="faq6_16"> <a href="#faq6_16">6.16 How can I simply move in page with plenty editing fields?</a></h4> <p> You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most pages with many editing fields (table structure changes, row editing, etc.). You can also have a look at the directive <a href="#DefaultPropDisplay" class="configrule">$cfg['DefaultPropDisplay']</a> ('vertical') and see if this eases up editing for you.</p> <h4 id="faq6_17"> <a href="#faq6_17">6.17 Transformations: I can't enter my own mimetype! WTF is this feature then useful for?</a></h4> <p> Slow down :). Defining mimetypes is of no use, if you can't put transformations on them. Otherwise you could just put a comment on the column. Because entering your own mimetype will cause serious syntax checking issues and validation, this introduces a high-risk false-user-input situation. Instead you have to initialize mimetypes using functions or empty mimetype definitions.<br /> Plus, you have a whole overview of available mimetypes. Who knows all those mimetypes by heart so he/she can enter it at will?</p> <h4 id="faqbookmark"> <a href="#faqbookmark">6.18 Bookmarks: Where can I store bookmarks? Why can't I see any bookmarks below the query box? What is this variable for? </a></h4> <p> Any query you have executed can be stored as a bookmark on the page where the results are displayed. You will find a button labeled 'Bookmark this query' just at the end of the page.<br /> As soon as you have stored a bookmark, it is related to the database you run the query on. You can now access a bookmark dropdown on each page, the query box appears on for that database.<br /><br /> Since phpMyAdmin 2.5.0 you are also able to store variables for the bookmarks. Just use the string <b>/*[VARIABLE]*/</b> anywhere in your query. Everything which is put into the <i>value</i> input box on the query box page will replace the string &quot;/*[VARIABLE]*/&quot; in your stored query. Just be aware of that you HAVE to create a valid query, otherwise your query won't be even able to be stored in the database.<br /> Also remember, that everything else inside the <b>/*[VARIABLE]*/</b> string for your query will remain the way it is, but will be stripped of the /**/ chars. So you can use:<br /><br /> <code>/*, [VARIABLE] AS myname */</code><br /><br /> which will be expanded to<br /><br /> <code>, VARIABLE as myname</code><br /><br /> in your query, where VARIABLE is the string you entered in the input box. If an empty string is provided, no replacements are made.<br /><br /> A more complex example. Say you have stored this query:<br /><br /> <code>SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE]%' */</code> <br /><br /> Say, you now enter &quot;phpMyAdmin&quot; as the variable for the stored query, the full query will be:<br /><br /> <code>SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%'</code> <br /><br /> You can use multiple occurrences of <b>/*[VARIABLE]*/</b> in a single query (that is, multiple occurrences of the <i>same</i> variable).<br /> <b>NOTE THE ABSENCE OF SPACES</b> inside the &quot;/**/&quot; construct. Any spaces inserted there will be later also inserted as spaces in your query and may lead to unexpected results especially when using the variable expansion inside of a &quot;LIKE ''&quot; expression.<br /> Your initial query which is going to be stored as a bookmark has to yield at least one result row so you can store the bookmark. You may have that to work around using well positioned &quot;/**/&quot; comments.</p> <h4 id="faq6_19"> <a href="#faq6_19">6.19 How can I create simple L<sup>A</sup>T<sub><big>E</big></sub>X document to include exported table?</a></h4> <p> You can simply include table in your L<sup>A</sup>T<sub><big>E</big></sub>X documents, minimal sample document should look like following one (assuming you have table exported in file <code>table.tex</code>):</p> <pre> \documentclass{article} % or any class you want \usepackage{longtable} % for displaying table \begin{document} % start of document \include{table} % including exported table \end{document} % end of document </pre> <h4 id="faq6_20"> <a href="#faq6_20">6.20 I see a lot of databases which are not mine, and cannot access them. </a></h4> <p> You have one of these global privileges: CREATE TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also enable users to see all the database names. See this <a href="http://bugs.mysql.com/179">bug report</a>.<br /><br /> So if your users do not need those privileges, you can remove them and their databases list will shorten.</p> <h4 id="faq6_21"> <a href="#faq6_21">6.21 In edit/insert mode, how can I see a list of possible values for a column, based on some foreign table?</a></h4> <p> You have to setup appropriate links between the tables, and also setup the &quot;display column&quot; in the foreign table. See <a href="#faq6_6"><abbr title="Frequently Asked Questions">FAQ</abbr> 6.6</a> for an example. Then, if there are 100 values or less in the foreign table, a drop-down list of values will be available. You will see two lists of values, the first list containing the key and the display column, the second list containing the display column and the key. The reason for this is to be able to type the first letter of either the key or the display column.<br /><br /> For 100 values or more, a distinct window will appear, to browse foreign key values and choose one. To change the default limit of 100, see <tt><a href="#cfg_ForeignKeyMaxLimit" class="configrule">$cfg['ForeignKeyMaxLimit']</a></tt>.</p> <h4 id="faq6_22"> <a href="#faq6_22">6.22 Bookmarks: Can I execute a default bookmark automatically when entering Browse mode for a table?</a></h4> <p> Yes. If a bookmark has the same label as a table name and it's not a public bookmark, it will be executed. </p> <h4 id="faq6_23"> <a href="#faq6_23">6.23 Export: I heard phpMyAdmin can export Microsoft Excel files?</a></h4> <p> You can use <abbr title="comma separated values">CSV</abbr> for Microsoft Excel, which works out of the box.<br /> Since phpMyAdmin 3.4.5 support for direct export to Microsoft Excel version 97 and newer was dropped. </p> <h4 id="faq6_24"> <a href="#faq6_24">6.24 Now that phpMyAdmin supports native MySQL 4.1.x column comments, what happens to my column comments stored in pmadb?</a></h4> <p> Automatic migration of a table's pmadb-style column comments to the native ones is done whenever you enter Structure page for this table.</p> <h4 id="faq6_25"> <a href="#faq6_25">6.25 How does BLOB streaming work in phpMyAdmin?</a></h4> <p> For general information about BLOB streaming on MySQL, visit <a href="http://blobstreaming.org">blobstreaming.org</a>. You need the following components:</p> <ul> <li>PBMS BLOB Streaming Daemon for MySQL (0.5.15 or later)</li> <li>Streaming enabled PBXT Storage engine for MySQL (1.0.11-6 or later)</li> <li>PBMS Client Library for MySQL (0.5.15 or later)</li> <li>PBMS PHP Extension for MySQL (0.1.1 or later)</li> </ul> <p>Here are details about configuration and operation:</p> <ol> <li>In <tt>config.inc.php</tt> your host should be defined with a FQDN (fully qualified domain name) instead of &quot;localhost&quot;.</li> <li>Ensure that your target table is under the <tt>PBXT</tt> storage engine and has a <tt>LONGBLOB</tt> column (which must be nullable if you want to remove the BLOB reference from it).</li> <li>When you insert or update a row in this table, put a checkmark on the &quot;Upload to BLOB repository&quot; optional choice; otherwise, the upload will be done directly in your LONGBLOB column instead of the repository.</li> <li>Finally when you browse your table, you'll see in your column a link to stream your data, for example &quot;View image&quot;. A header containing the correct MIME-type will be sent to your browser; this MIME-type was stored at upload time.</li> </ol> <h4 id="faq6_26"> <a href="#faq6_26">6.26 How can I select a range of rows?</a></h4> <p> Click the first row of the range, hold the shift key and click the last row of the range. This works everywhere you see rows, for example in Browse mode or on the Structure page.</p> <h4 id="faq6_27"> <a href="#faq6_27">6.27 What format strings can I use?</a></h4> <p> In all places where phpMyAdmin accepts format strings, you can use <code>@VARIABLE@</code> expansion and <a href="http://php.net/strftime">strftime</a> format strings. The expanded variables depend on a context (for example, if you haven't chosen a table, you can not get the table name), but the following variables can be used: </p> <dl> <dt><code>@HTTP_HOST@</code></dt> <dd>HTTP host that runs phpMyAdmin</dd> <dt><code>@SERVER@</code></dt> <dd>MySQL server name</dd> <dt><code>@VERBOSE@</code></dt> <dd>Verbose MySQL server name as defined in <a href="#cfg_Servers_verbose">server configuration</a></dd> <dt><code>@VSERVER@</code></dt> <dd>Verbose MySQL server name if set, otherwise normal</dd> <dt><code>@DATABASE@</code></dt> <dd>Currently opened database</dd> <dt><code>@TABLE@</code></dt> <dd>Currently opened table</dd> <dt><code>@FIELDS@</code></dt> <dd>Fields of currently opened table</dd> <dt><code>@PHPMYADMIN@</code></dt> <dd>phpMyAdmin with version</dd> </dl> <h4 id="wysiwyg"> <a href="#wysiwyg">6.28 How can I easily edit relational schema for export?</a></h4> <p> By clicking on the button 'toggle scratchboard' on the page where you edit x/y coordinates of those elements you can activate a scratchboard where all your elements are placed. By clicking on an element, you can move them around in the pre-defined area and the x/y coordinates will get updated dynamically. Likewise, when entering a new position directly into the input field, the new position in the scratchboard changes after your cursor leaves the input field. </p> <p> You have to click on the 'OK'-button below the tables to save the new positions. If you want to place a new element, first add it to the table of elements and then you can drag the new element around. </p> <p> By changing the paper size and the orientation you can change the size of the scratchboard as well. You can do so by just changing the dropdown field below, and the scratchboard will resize automatically, without interfering with the current placement of the elements. </p> <p> If ever an element gets out of range you can either enlarge the paper size or click on the 'reset' button to place all elements below each other. </p> <h4 id="faq6_29"> <a href="#faq6_29">6.29 Why can't I get a chart from my query result table?</a></h4> <p> Not every table can be put to the chart. Only tables with one, two or three columns can be visualised as a chart. Moreover the table must be in a special format for chart script to understand it. Currently supported formats can be found in the <a href="http://wiki.phpmyadmin.net/pma/Charts#Data_formats_for_query_results_chart">wiki</a>.</p> <h3 id="faqproject">phpMyAdmin project</h3> <h4 id="faq7_1"> <a href="#faq7_1">7.1 I have found a bug. How do I inform developers?</a></h4> <p> Our Bug Tracker is located at <a href="http://sf.net/projects/phpmyadmin/">http://sf.net/projects/phpmyadmin/</a> under the Bugs section.<br /><br /> But please first discuss your bug with other users:<br /> <a href="https://sourceforge.net/projects/phpmyadmin/forums"> https://sourceforge.net/projects/phpmyadmin/forums</a>. </p> <h4 id="faq7_2"> <a href="#faq7_2">7.2 I want to translate the messages to a new language or upgrade an existing language, where do I start?</a></h4> <p> Always use latest Git version of the po file to translate. You can optionally translate online at our <a href="http://l10n.cihar.com/">translation server</a> where you can also get the latest po files and merge them with your translations. For creating a new translation simply use <code>po/phpmyadmin.pot</code> and generate <code>po/LANG_CODE.po</code> for your language (you can use <code>msginit -i po/phpmyadmin.pot -l LANG_CODE --no-translator -o po/LANG_CODE.po</code> to do this) or ask on the mailing list to add the translation to the web interface. More details are available on <a href="http://wiki.phpmyadmin.net/pma/Gettext_for_translators">our wiki</a>. </p> <p> Please note that we try not to use HTML entities like &amp;eacute; in the translations, since we define the right character set in the file. With HTML entities, the text on JavaScript messages would not display correctly. However there are some entities that need to be there: quotes, non-breakable spaces, ampersands, less than, greater than. </p> <p> You can then put your translations, as a zip file to avoid losing special characters, on the sourceforge.net <a href="https://sourceforge.net/tracker/?group_id=23067&amp;atid=387645">translation tracker.</a> </p> <p> It would be a good idea to subscribe to the <a href="https://lists.sourceforge.net/lists/listinfo/phpmyadmin-translators">phpmyadmin-translators</a> mailing list, because this is where we ask for translations of new messages. </p> <p> Documentation is being translated using po4a and gettext (see <a href="http://www.phpmyadmin.net/home_page/docs.php">documentation</a> for existing translations). To start, checkout <a href="http://phpmyadmin.git.sourceforge.net/git/gitweb.cgi?p=phpmyadmin/localized_docs;a=tree;f=po"><code>localized_docs/po</code></a> from Git, or just go to the <a href="https://l10n.cihar.com/projects/pmadoc/">translation server</a> and translate it online. If your language is missing, just contact <a href="mailto:michal@cihar.com">Michal &#268;iha&#345;</a>; he will add it. If you prefer to directly translate the po files, please put updated ones into our <a href="https://sourceforge.net/tracker/?group_id=23067&amp;atid=387645">translation tracker</a>. </p> <h4 id="faq7_3"> <a href="#faq7_3">7.3 I would like to help out with the development of phpMyAdmin. How should I proceed?</a></h4> <p> The following method is preferred for new developers:</p> <ol><li>fetch the current git repository over anonymous git:<br /> <tt>git clone git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin</tt><br /> </li> <li>add your stuff</li> <li>generate patch with your changes: <tt>git diff &gt; xxx.diff</tt><br /> </li> <li>submit your patch via the <a href="https://sourceforge.net/tracker/?group_id=23067&amp;atid=377410">patch tracker of the phpMyAdmin project</a>. </li> </ol> <p>More details on git are available on <a href="http://wiki.phpmyadmin.net/pma/Git">our wiki</a>.</p> <p> Write access to the repository is granted only to experienced developers who have already contributed something useful to phpMyAdmin.<br /> Also, have a look at the <a href="#developers">Developers section</a>.</p> <h3 id="faqsecurity">Security</h3> <h4 id="faq8_1"> <a href="#faq8_1">8.1 Where can I get information about the security alerts issued for phpMyAdmin?</a></h4> <p> Please refer to <a href="http://www.phpmyadmin.net/home_page/security.php">http://www.phpmyadmin.net/home_page/security.php</a> </p> <h4 id="faq8_2"> <a href="#faq8_2">8.2 How can I protect phpMyAdmin against brute force attacks?</a></h4> <p> If you use Apache web server, phpMyAdmin exports information about authentication to the Apache environment and it can be used in Apache logs. Currently there are two variables available: </p> <dl> <dt><code>userID</code></dt> <dd>User name of currently active user (he does not have to be logged in).</dd> <dt><code>userStatus</code></dt> <dd>Status of currently active user, one of <code>ok</code> (user is logged in), <code>mysql-denied</code> (MySQL denied user login), <code>allow-denied</code> (user denied by allow/deny rules), <code>root-denied</code> (root is denied in configuration), <code>empty-denied</code> (empty password is denied).</dd> </dl> <p> <code>LogFormat</code> directive for Apache can look like following: </p> <pre> LogFormat "%h %l %u %t \"%r\" %>s %b \ \"%{Referer}i\" \"%{User-Agent}i\" %{userID}n %{userStatus}n" pma_combined </pre> <p> You can then use any log analyzing tools to detect possible break-in attempts. </p> <h3 id="faqsynchronization">Synchronization</h3> <h4 id="faq9_1"> <a href="#faq9_1">9.1 How can I synchronize two databases/tables in phpMyAdmin?</a></h4> <p> You can now synchronize databases/tables in phpMyAdmin using the Synchronize feature. It allows you to connect to local as well as remote servers. This requires you to enter server host name, username, password, port and the name of the database. Therefore you can now synchronize your databases placed on the same server or some remote server. </p> <p> This feature is helpful for developers who need to replicate their database&#8217;s structure as well as data. Moreover, this feature not only helps replication but also facilitates the user to keep his/her database in sync with another database. Other than the full database, certain tables of the databases can also be synchronized. </p> <p> You need to fill in the host name of the server, the username and password of an user account already there in MySQL. Port is by default populated with 3306 (MySQL default port). Then the name of the database should be mentioned at the end. All the information other than the port needs to be filled explicitly for the source as well as target servers. </p> <p> After successfully passing through the authentication phase, the source and target database table names will be displayed. It will be a tabular representation. </p> <p> On the left, are listed the source database table names. Some of the names have a <code>+</code> plus sign preceding them. This shows that these tables are only present in source database and they need to be added to the target database in order to synchronize the target database. The tables whose names are not preceded by a <code>+</code> sign are already present in the target database. </p> <p> On the right, are listed the target database table names. There are few table names that have <code>(not present)</code> appended after their names. This means that these tables are to be created in target database in order to synchronize target database with source database. Some table names have a <code>-</code> minus sign preceding them. This shows that these tables are only present in target database and they will remain unchanged in the target database. The column in the middle shows the difference between the source and target corresponding tables. </p> <p> The difference is depicted by the red and green buttons with <tt>S</tt> and <tt>D</tt> letters, indicating that either Structure or Data are not up to date. By clicking on them, they will turn grey, what means that they will be synchronized. </p> <!-- DEVELOPERS --> <h2 id="developers">Developers Information</h2> <p> phpMyAdmin is Open Source, so you're invited to contribute to it. Many great features have been written by other people and you too can help to make phpMyAdmin a useful tool.</p> <p> If you're planning to contribute source, please read the following information:</p> <ul><li>All files include <i>libraries/header.inc.php</i> (layout),. <i>libraries/common.lib.php</i> (common functions) and <i>config.inc.php</i>.<br /> Only configuration data should go in <i>config.inc.php</i>. Please keep it free from other code.<br /> Commonly used functions should be added to <i>libraries/common.lib.php</i> and more specific ones may be added within a library stored into the <i>libraries</i> sub-directory.</li> <li>Obviously, you're free to use whatever coding style you want. But please try to keep your code as simple as possible: beginners are using phpMyAdmin as an example application.<br /> As far as possible, we want the scripts to be XHTML1.0 and CSS2 compliant on one hand, they fit the <a href="http://pear.php.net/"> <abbr title="PHP Extension and Application Repository">PEAR</abbr> coding standards</a> on the other hand. Please pay attention to this.</li> <li>Please enable showing PHP errors and warnings by the <code><a href="#cfg_Error_Handler_display">$cfg['Error_Handler']['display']</a></code> configuration directive.</li> <li>Please try to keep up the file-naming conventions. Table-related stuff goes to <i>tbl_*.php</i>, db-related code to <i>db_*.php</i>, server-related tools to <i>server_*.php</i> and so on.</li> <li>Please use gettext wrappers around all messages (<code>__('Some text')</code> or <code>_ngettext()</code> function). To translate them, you need to call <code>scripts/update-po</code> script. To use translated messages, call <code>scripts/generate-mo</code>, which generates binary files read by Gettext.</li> <li>If you want to be really helpful, write an entry for the ChangeLog.</li> <li id="developersdbg"> The DBG extension (<a href="http://dd.cron.ru/dbg/">PHP Debugger DBG</a>) is now supported by phpMyAdmin for developers to better debug and profile their code.<br /> Please see the <a href="#cfg_DBG" class="configrule">$cfg['DBG']*</a> configuration options for more information.<br /> This is in memoriam of the Space Shuttle Columbia (STS-107) which was lost during its re-entry into Earth's atmosphere and in memory of the brave men and women who gave their lives for the people of Earth.</li> </ul> <h2 id="copyright">Copyright</h2> <pre> Copyright (C) 1998-2000 Tobias Ratschiller &lt;tobias_at_ratschiller.com&gt; Copyright (C) 2001-2010 Marc Delisle &lt;marc_at_infomarc.info&gt; Olivier Müller &lt;om_at_omnis.ch&gt; Robin Johnson &lt;robbat2_at_users.sourceforge.net&gt; Alexander M. Turek &lt;me_at_derrabus.de&gt; Michal &#268;iha&#345; &lt;michal_at_cihar.com&gt; Garvin Hicking &lt;me_at_supergarv.de&gt; Michael Keck &lt;mkkeck_at_users.sourceforge.net&gt; Sebastian Mendel &lt;cybot_tm_at_users.sourceforge.net&gt; [check <a href="#credits">credits</a> for more details] </pre> <p> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published by the Free Software Foundation. </p> <p> This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. </p> <p> You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA </p> <!-- CREDITS --> <h2 id="credits">Credits</h2> <h3>Credits, in chronological order</h3> <ul> <li>Tobias Ratschiller &lt;tobias_at_ratschiller.com&gt; <ul> <li>creator of the phpmyadmin project</li> <li>maintainer from 1998 to summer 2000</li> </ul></li> <li>Marc Delisle &lt;marc_at_infomarc.info&gt; <ul> <li>multi-language version in December 1998</li> <li>various fixes and improvements</li> <li><abbr title="structured query language">SQL</abbr> analyser (most of it)</li> <li>current project maintainer</li> </ul></li> <li>Olivier M&uuml;ller &lt;om_at_omnis.ch&gt; <ul> <li>started SourceForge phpMyAdmin project in March 2001</li> <li>sync'ed different existing CVS trees with new features and bugfixes</li> <li>multi-language improvements, dynamic language selection</li> <li>many bugfixes and improvements</li> </ul></li> <li>Lo&iuml;c Chapeaux &lt;lolo_at_phpheaven.net&gt; <ul> <li>rewrote and optimized javascript, DHTML and DOM stuff</li> <li>rewrote the scripts so they fit the <abbr title="PHP Extension and Application Repository">PEAR</abbr> coding standards and generate XHTML1.0 and CSS2 compliant codes</li> <li>improved the language detection system</li> <li>many bugfixes and improvements</li> </ul></li> <li>Robin Johnson &lt;robbat2_at_users.sourceforge.net&gt; <ul> <li>database maintenance controls</li> <li>table type code</li> <li>Host authentication <abbr title="Internet Protocol">IP</abbr> Allow/Deny</li> <li>DB-based configuration (Not completed)</li> <li><abbr title="structured query language">SQL</abbr> parser and pretty-printer</li> <li><abbr title="structured query language">SQL</abbr> validator</li> <li>many bugfixes and improvements</li> </ul></li> <li>Armel Fauveau &lt;armel.fauveau_at_globalis-ms.com&gt; <ul> <li>bookmarks feature</li> <li>multiple dump feature</li> <li>gzip dump feature</li> <li>zip dump feature</li> </ul></li> <li>Geert Lund &lt;glund_at_silversoft.dk&gt; <ul> <li>various fixes</li> <li>moderator of the phpMyAdmin former users forum at phpwizard.net</li> </ul></li> <li>Korakot Chaovavanich &lt;korakot_at_iname.com&gt; <ul> <li>&quot;insert as new row&quot; feature</li> </ul></li> <li>Pete Kelly &lt;webmaster_at_trafficg.com&gt; <ul> <li>rewrote and fix dump code</li> <li>bugfixes</li> </ul></li> <li>Steve Alberty &lt;alberty_at_neptunlabs.de&gt; <ul> <li>rewrote dump code for PHP4</li> <li>mySQL table statistics</li> <li>bugfixes</li> </ul></li> <li>Benjamin Gandon &lt;gandon_at_isia.cma.fr&gt; <ul> <li>main author of the version 2.1.0.1</li> <li>bugfixes</li> </ul></li> <li>Alexander M. Turek &lt;me_at_derrabus.de&gt; <ul> <li>MySQL 4.0 / 4.1 / 5.0 compatibility</li> <li>abstract database interface (PMA_DBI) with MySQLi support</li> <li>privileges administration</li> <li><abbr title="Extensible Markup Language">XML</abbr> exports</li> <li>various features and fixes</li> <li>German language file updates</li> </ul></li> <li>Mike Beck &lt;mike.beck_at_web.de&gt; <ul> <li>automatic joins in QBE</li> <li>links column in printview</li> <li>Relation view</li> </ul></li> <li>Michal &#268;iha&#345; &lt;michal_at_cihar.com&gt; <ul> <li>enhanced index creation/display feature</li> <li>feature to use a different charset for HTML than for MySQL</li> <li>improvements of export feature</li> <li>various features and fixes</li> <li>Czech language file updates</li> </ul></li> <li>Christophe Gesch&eacute; from the &quot;MySQL Form Generator for PHPMyAdmin&quot; (http://sf.net/projects/phpmysqlformgen/) <ul> <li>suggested the patch for multiple table printviews</li> </ul></li> <li>Garvin Hicking &lt;me_at_supergarv.de&gt; <ul> <li>built the patch for vertical display of table rows</li> <li>built the Javascript based Query window + <abbr title="structured query language">SQL</abbr> history</li> <li>Improvement of column/db comments</li> <li>(MIME)-Transformations for columns</li> <li>Use custom alias names for Databases in left frame</li> <li>hierarchical/nested table display</li> <li><abbr title="Portable Document Format">PDF</abbr>-scratchboard for WYSIWYG-distribution of <abbr title="Portable Document Format">PDF</abbr> relations</li> <li>new icon sets</li> <li>vertical display of column properties page</li> <li>some bugfixes, features, support, German language additions</li> </ul></li> <li>Yukihiro Kawada &lt;kawada_at_den.fujifilm.co.jp&gt; <ul> <li>japanese kanji encoding conversion feature</li> </ul></li> <li>Piotr Roszatycki &lt;d3xter_at_users.sourceforge.net&gt; and Dan Wilson <ul> <li>the Cookie authentication mode</li> </ul></li> <li>Axel Sander &lt;n8falke_at_users.sourceforge.net&gt; <ul> <li>table relation-links feature</li> </ul></li> <li>Maxime Delorme &lt;delorme.maxime_at_free.fr&gt; <ul> <li><abbr title="Portable Document Format">PDF</abbr> schema output, thanks also to Olivier Plathey for the &quot;FPDF&quot; library (see <a href="http://www.fpdf.org/">http://www.fpdf.org/</a>) and Steven Wittens for the &quot;UFPDF&quot; library (see <a href="http://www.acko.net/node/56">http://www.acko.net/node/56</a>).</li> </ul></li> <li>Olof Edlund &lt;olof.edlund_at_upright.se&gt; <ul> <li><abbr title="structured query language">SQL</abbr> validator server</li> </ul></li> <li>Ivan R. Lanin &lt;ivanlanin_at_users.sourceforge.net&gt; <ul> <li>phpMyAdmin logo (until June 2004)</li> </ul></li> <li>Mike Cochrane &lt;mike_at_graftonhall.co.nz&gt; <ul> <li>blowfish library from the Horde project</li> </ul></li> <li>Marcel Tschopp &lt;ne0x_at_users.sourceforge.net&gt; <ul> <li>mysqli support</li> <li>many bugfixes and improvements</li> </ul></li> <li>Nicola Asuni (Tecnick.com) <ul> <li>TCPDF library (<a href="http://www.tcpdf.org">http://www.tcpdf.org</a>)</li> </ul></li> <li>Michael Keck &lt;mkkeck_at_users.sourceforge.net&gt; <ul> <li>redesign for 2.6.0</li> <li>phpMyAdmin sailboat logo (June 2004)</li> </ul></li> <li>Mathias Landh&auml;u&szlig;er <ul> <li>Representation at conferences</li> </ul></li> <li>Sebastian Mendel &lt;cybot_tm_at_users.sourceforge.net&gt; <ul> <li>interface improvements</li> <li>various bugfixes</li> </ul></li> <li>Ivan A Kirillov <ul> <li>new relations Designer</li> </ul></li> <li>Raj Kissu Rajandran (Google Summer of Code 2008) <ul> <li>BLOBstreaming support</li> </ul></li> <li>Piotr Przybylski (Google Summer of Code 2008 and 2010) <ul> <li>improved setup script</li> <li>user preferences</li> </ul></li> <li>Derek Schaefer (Google Summer of Code 2009) <ul> <li>Improved the import system</li> </ul></li> <li>Alexander Rutkowski (Google Summer of Code 2009) <ul> <li>Tracking mechanism</li> </ul></li> <li>Zahra Naeem (Google Summer of Code 2009) <ul> <li>Synchronization feature</li> </ul></li> <li>Tom&#225;&#353; Srnka (Google Summer of Code 2009) <ul> <li>Replication support</li> </ul></li> <li>Muhammad Adnan (Google Summer of Code 2010) <ul> <li>Relation schema export to multiple formats</li> </ul></li> <li>Lori Lee (Google Summer of Code 2010) <ul> <li>User interface improvements</li> <li>ENUM/SET editor</li> <li>Simplified interface for export/import</li> </ul></li> <li>Ninad Pundalik (Google Summer of Code 2010) <ul> <li>AJAXifying the interface</li> </ul></li> <li>Martynas Mickevičius (Google Summer of Code 2010) <ul> <li>Charts</li> </ul></li> <li>Barrie Leslie <ul> <li>BLOBstreaming support with PBMS PHP extension</li> </ul></li> <li>Ankit Gupta (Google Summer of Code 2010) <ul> <li>Visual query builder</li> </ul></li> </ul> <p> And also to the following people who have contributed minor changes, enhancements, bugfixes or support for a new language since version 2.1.0: </p> <p> Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita, P&eacute;ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow, Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kl&auml;ger, Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley, Bernard M. Piller, Laurent Haas, &quot;Sakamoto&quot;, Yuval Sarna, www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec, Michael Tacelosky, Rachim Tamsjadi, Kositer Uros, Lu&iacute;s V., Martijn W. van der Lee, Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai, Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, &quot;Manuzhai&quot;. </p> <h3>Original Credits of Version 2.1.0</h3> <p> This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea to create a web-based interface to MySQL using PHP3. Although I have not used any of his source-code, there are some concepts I've borrowed from him. phpMyAdmin was created because Peter told me he wasn't going to further develop his (great) tool. </p> <p> Thanks go to </p> <ul> <li>Amalesh Kempf &lt;ak-lsml_at_living-source.com&gt; who contributed the code for the check when dropping a table or database. He also suggested that you should be able to specify the primary key on tbl_create.php3. To version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as well as a bug-report. Plus many smaller improvements. </li> <li>Jan Legenhausen &lt;jan_at_nrw.net&gt;: He made many of the changes that were introduced in 1.3.0 (including quite significant ones like the authentication). For 1.4.1 he enhanced the table-dump feature. Plus bug-fixes and help. </li> <li>Marc Delisle &lt;DelislMa_at_CollegeSherbrooke.qc.ca&gt; made phpMyAdmin language-independent by outsourcing the strings to a separate file. He also contributed the French translation. </li> <li>Alexandr Bravo &lt;abravo_at_hq.admiral.ru&gt; who contributed tbl_select.php3, a feature to display only some columns from a table. </li> <li>Chris Jackson &lt;chrisj_at_ctel.net&gt; added support for MySQL functions in tbl_change.php3. He also added the &quot;Query by Example&quot; feature in 2.0. </li> <li>Dave Walton &lt;walton_at_nordicdms.com&gt; added support for multiple servers and is a regular contributor for bug-fixes. </li> <li>Gabriel Ash &lt;ga244_at_is8.nyu.edu&gt; contributed the random access features for 2.0.6. </li> </ul> <p> The following people have contributed minor changes, enhancements, bugfixes or support for a new language: </p> <p> Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann, Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov, Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns, G. Wieggers. </p> <p> And thanks to everyone else who sent me email with suggestions, bug-reports and or just some feedback. </p> <h2 id="glossary">Glossary</h2> <p> From Wikipedia, the free encyclopedia</p> <ul> <li><a href="http://www.wikipedia.org/wiki/.htaccess">.htaccess</a> - the default name of Apache's directory-level configuration file.</li> <li><a href="http://www.wikipedia.org/wiki/Blowfish_%28cipher%29">Blowfish</a> - a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier.</li> <li><a href="http://en.wikipedia.org/wiki/Web_browser">Browser (Web Browser)</a> - a software application that enables a user to display and interact with text, images, and other information typically located on a web page at a website on the World Wide Web.</li> <li><a href="http://www.wikipedia.org/wiki/Bzip2">bzip2</a> - a free software/open source data compression algorithm and program developed by Julian Seward.</li> <li><a href="http://www.wikipedia.org/wiki/CGI">CGI (Common Gateway Interface)</a> - an important World Wide Web technology that enables a client web browser to request data from a program executed on the Web server.</li> <li><a href="http://www.wikipedia.org/wiki/Changelog">Changelog</a> - a log or record of changes made to a project.</li> <li><a href="http://www.wikipedia.org/wiki/Client_%28computing%29">Client</a> - a computer system that accesses a (remote) service on another computer by some kind of network.</li> <li><a href="http://www.wikipedia.org/wiki/Column_%28database%29">column</a> - a set of data values of a particular simple type, one for each row of the table.</li> <li><a href="http://www.wikipedia.org/wiki/HTTP_cookie">Cookie</a> - a packet of information sent by a server to a World Wide Web browser and then sent back by the browser each time it accesses that server.</li> <li><a href="http://www.wikipedia.org/wiki/Comma-separated_values">CSV</a> - Comma-separated values</li> <li>DB - look at <a href="#database">Database</a>.</li> <li><a id="database" href="http://www.wikipedia.org/wiki/Database">database</a> - an organized collection of data.</li> <li>Engine - look at <a href="#glossar_storage_engine">Storage Engines</a>.</li> <li><a href="http://www.wikipedia.org/wiki/extension">extension</a> - a PHP module that extends PHP with additional functionality.</li> <li><a href="http://www.wikipedia.org/wiki/FAQ">FAQ (Frequently Asked Questions)</a> - a list of commonly asked question and there answers.</li> <li><a href="http://www.wikipedia.org/wiki/Field_%28computer_science%29">Field</a> - one part of divided data/columns.</li> <li><a href="http://www.wikipedia.org/wiki/Foreign_key">foreign key</a> - a field or group of fields in a database record that point to a key field or group of fields forming a key of another database record in some (usually different) table.</li> <li><a href="http://www.fpdf.org/">FPDF (FreePDF)</a> - the free PDF library</li> <li><a id="gd" href="http://www.wikipedia.org/wiki/GD_Graphics_Library"> GD Graphics Library</a> - a library by Thomas Boutell and others for dynamically manipulating images.</li> <li>GD2 - look at <a href="#gd">GD Graphics Library</a>.</li> <li><a href="http://www.wikipedia.org/wiki/Gzip">gzip</a> - gzip is short for GNU zip, a GNU free software file compression program.</li> <li><a href="http://www.wikipedia.org/wiki/Host">host</a> - any machine connected to a computer network, a node that has a hostname.</li> <li><a href="http://www.wikipedia.org/wiki/Hostname">hostname</a> - the unique name by which a network attached device is known on a network.</li> <li><a href="http://www.wikipedia.org/wiki/HyperText_Transfer_Protocol">HTTP (HyperText Transfer Protocol)</a> - the primary method used to transfer or convey information on the World Wide Web.</li> <li><a href="http://www.wikipedia.org/wiki/Https:_URI_scheme">https</a> - a <abbr title="HyperText Transfer Protocol">HTTP</abbr>-connection with additional security measures.</li> <li><a href="http://www.wikipedia.org/wiki/Internet_Information_Services">IIS (Internet Information Services)</a> - a set of Internet-based services for servers using Microsoft Windows.</li> <li><a id="glossar_index" href="http://www.wikipedia.org/wiki/Index_%28database%29">Index</a> - a feature that allows quick access to the rows in a table.</li> <li><a href="http://www.wikipedia.org/wiki/Internet_Protocol">IP (Internet Protocol)</a> - a data-oriented protocol used by source and destination hosts for communicating data across a packet-switched internetwork.</li> <li><a href="http://www.wikipedia.org/wiki/IP_Address">IP Address</a> - a unique number that devices use in order to identify and communicate with each other on a network utilizing the Internet Protocol standard.</li> <li><a href="http://www.wikipedia.org/wiki/ISAPI">ISAPI (Internet Server Application Programming Interface)</a> - the API of Internet Information Services (IIS).</li> <li><a href="http://www.wikipedia.org/wiki/ISP">ISP (Internet service provider)</a> - a business or organization that offers users access to the Internet and related services.</li> <li><a id="jpeg" href="http://www.wikipedia.org/wiki/JPEG">JPEG</a> - a most commonly used standard method of lossy compression for photographic images.</li> <li>JPG - look at <a href="#jpeg">JPEG</a>.</li> <li>Key - look at <a href="#glossar_index">index</a>.</li> <li><a href="http://www.wikipedia.org/wiki/LaTeX">L<sup>A</sup>T<sub><big>E</big></sub>X</a> - a document preparation system for the T<sub>E</sub>X typesetting program.</li> <li><a href="http://www.wikipedia.org/wiki/Mac">Mac (Apple Macintosh)</a> - line of personal computers is designed, developed, manufactured, and marketed by Apple Computer.</li> <li><a id="glossar_mac_os_x" href="http://www.wikipedia.org/wiki/Mac_OS_X"><acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X</a> - the operating system which is included with all currently shipping Apple Macintosh computers in the consumer and professional markets.</li> <li><a href="http://www.wikipedia.org/wiki/MCrypt">MCrypt</a> - a cryptographic library.</li> <li><a href="http://php.net/mcrypt">mcrypt</a> - the MCrypt PHP extension.</li> <li><a href="http://www.wikipedia.org/wiki/MIME">MIME (Multipurpose Internet Mail Extensions)</a> - an Internet Standard for the format of e-mail.</li> <li><a href="http://www.wikipedia.org/wiki/module">module</a> - some sort of extension for the Apache Webserver.</li> <li><a href="http://www.wikipedia.org/wiki/MySQL">MySQL</a> - a multithreaded, multi-user, SQL (Structured Query Language) Database Management System (DBMS).</li> <li><a href="http://php.net/mysqli">mysqli</a> - the improved MySQL client PHP extension.</li> <li><a href="http://php.net/mysql">mysql</a> - the MySQL client PHP extension.</li> <li><a href="http://www.wikipedia.org/wiki/OpenDocument">OpenDocument</a> - open standard for office documents.</li> <li><a href="http://www.wikipedia.org/wiki/OS_X"><abbr title="operating system">OS</abbr> X</a> - look at <a href="#glossar_mac_os_x"><acronym title="Apple Macintosh">Mac</acronym> <abbr title="operating system">OS</abbr> X</a>.</li> <li><a href="http://www.wikipedia.org/wiki/Portable_Document_Format">PDF (Portable Document Format)</a> - a file format developed by Adobe Systems for representing two dimensional documents in a device independent and resolution independent format.</li> <li><a href="http://pear.php.net/">PEAR</a> - the PHP Extension and Application Repository.</li> <li><a href="http://php.net/pcre">PCRE (Perl Compatible Regular Expressions)</a> - the perl-compatible regular expression functions for PHP</li> <li><a href="http://www.wikipedia.org/wiki/PHP">PHP</a> - short for "PHP: Hypertext Preprocessor", is an open-source, reflective programming language used mainly for developing server-side applications and dynamic web content, and more recently, a broader range of software applications.</li> <li><a href="http://www.wikipedia.org/wiki/Port_%28computing%29">port</a> - a connection through which data is sent and received.</li> <li><a href="http://www.wikipedia.org/wiki/Request_for_Comments">RFC</a> - Request for Comments (RFC) documents are a series of memoranda encompassing new research, innovations, and methodologies applicable to Internet technologies.</li> <li><a href="http://www.ietf.org/rfc/rfc1952.txt">RFC 1952</a> - GZIP file format specification version 4.3</li> <li><a href="http://www.wikipedia.org/wiki/Row_%28database%29">Row (record, tulpel)</a> - represents a single, implicitly structured data item in a table.</li> <li><a href="http://www.wikipedia.org/wiki/Server_%28computing%29">Server</a> - a computer system that provides services to other computing systems over a network.</li> <li><a id="glossar_storage_engine" href="http://dev.mysql.com/doc/en/storage-engines.html">Storage Engines</a> - handlers for different table types</li> <li><a href="http://www.wikipedia.org/wiki/Socket#Computer_sockets">socket</a> - a form of inter-process communication.</li> <li><a href="http://www.wikipedia.org/wiki/Secure_Sockets_Layer">SSL (Secure Sockets Layer)</a> - a cryptographic protocol which provides secure communication on the Internet.</li> <li><a href="http://www.wikipedia.org/wiki/SQL">SQL</a> - Structured Query Language</li> <li><a href="http://www.wikipedia.org/wiki/Table_%28database%29">table</a> - a set of data elements (cells) that is organized, defined and stored as horizontal rows and vertical columns where each item can be uniquely identified by a label or key or by it?s position in relation to other items.</li> <li>Table type</li> <li><a href="http://www.wikipedia.org/wiki/Tar_%28file_format%29">tar</a> - a type of archive file format: the Tape ARchive format.</li> <li><a href="http://www.wikipedia.org/wiki/TCP">TCP (Transmission Control Protocol)</a> - one of the core protocols of the Internet protocol suite.</li> <li><a href="http://www.acko.net/node/56">UFPDF</a> - Unicode/UTF-8 extension for FPDF</li> <li><a href="http://www.wikipedia.org/wiki/URL">URL (Uniform Resource Locator)</a> - a sequence of characters, conforming to a standardized format, that is used for referring to resources, such as documents and images on the Internet, by their location.</li> <li><a href="http://www.wikipedia.org/wiki/Webserver">Webserver</a> - A computer (program) that is responsible for accepting HTTP requests from clients and serving them Web pages.</li> <li><a href="http://www.wikipedia.org/wiki/XML">XML (Extensible Markup Language)</a> - a W3C-recommended general-purpose markup language for creating special-purpose markup languages, capable of describing many different kinds of data.</li> <li><a href="http://www.wikipedia.org/wiki/ZIP_%28file_format%29">ZIP</a> - a popular data compression and archival format.</li> <li><a href="http://www.wikipedia.org/wiki/Zlib">zlib</a> - an open-source, cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li> </ul> </div> <ul id="footer"> <li>Copyright &copy; 2003 - 2010 <a href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel team</a></li> <li><a href="LICENSE">License</a></li> <li><a href="http://www.phpmyadmin.net/home_page/donate.php">Donate</a></li> <li class="last">Valid <a href="http://validator.w3.org/check/referer">HTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></li> </ul> </body> </html>
atarun/web
public/phpMyAdmin/Documentation.html
HTML
mit
249,985
<!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 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Deprecated List (Apache Commons Lang 3.5 API)</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="Deprecated List (Apache Commons Lang 3.5 API)"; } } 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>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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="Deprecated API" class="title">Deprecated API</h1> <h2 title="Contents">Contents</h2> <ul> <li><a href="#field">Deprecated Fields</a></li> <li><a href="#method">Deprecated Methods</a></li> <li><a href="#enum.constant">Deprecated Enum Constants</a></li> </ul> </div> <div class="contentContainer"><a name="field"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <table class="deprecatedSummary" border="0" cellpadding="3" cellspacing="0" summary="Deprecated Fields table, listing deprecated fields, and an explanation"> <caption><span>Deprecated Fields</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/StringEscapeUtils.html#ESCAPE_XML">org.apache.commons.lang3.StringEscapeUtils.ESCAPE_XML</a> <div class="block"><span class="deprecationComment">use <a href="org/apache/commons/lang3/StringEscapeUtils.html#ESCAPE_XML10"><code>StringEscapeUtils.ESCAPE_XML10</code></a> or <a href="org/apache/commons/lang3/StringEscapeUtils.html#ESCAPE_XML11"><code>StringEscapeUtils.ESCAPE_XML11</code></a> instead.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/SystemUtils.html#FILE_SEPARATOR">org.apache.commons.lang3.SystemUtils.FILE_SEPARATOR</a> <div class="block"><span class="deprecationComment">Use <a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true#separator" title="class or interface in java.io"><code>File.separator</code></a>, since it is guaranteed to be a string containing a single character and it does not require a privilege check.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/SystemUtils.html#IS_JAVA_1_9">org.apache.commons.lang3.SystemUtils.IS_JAVA_1_9</a> <div class="block"><span class="deprecationComment">As of release 3.5, replaced by <a href="org/apache/commons/lang3/SystemUtils.html#IS_JAVA_9"><code>SystemUtils.IS_JAVA_9</code></a></span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_DATE_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_DATE_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_DATE_FORMAT will be replaced by ISO_8601_EXTENDED_DATE_FORMAT.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_DATE_TIME_ZONE_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_DATE_TIME_ZONE_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_DATE_TIME_ZONE_FORMAT will be removed.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_DATETIME_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_DATETIME_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_DATETIME_FORMAT will be replaced by ISO_8601_EXTENDED_DATETIME_FORMAT.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_DATETIME_TIME_ZONE_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_DATETIME_TIME_ZONE_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_DATETIME_TIME_ZONE_FORMAT will be replaced by ISO_8601_EXTENDED_DATETIME_TIME_ZONE_FORMAT.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_TIME_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_TIME_FORMAT will be removed.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_TIME_NO_T_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_NO_T_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_TIME_NO_T_FORMAT will be replaced by ISO_8601_EXTENDED_TIME_FORMAT.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_TIME_NO_T_TIME_ZONE_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_NO_T_TIME_ZONE_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_TIME_NO_T_TIME_ZONE_FORMAT will be replaced by ISO_8601_EXTENDED_TIME_TIME_ZONE_FORMAT.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DateFormatUtils.html#ISO_TIME_TIME_ZONE_FORMAT">org.apache.commons.lang3.time.DateFormatUtils.ISO_TIME_TIME_ZONE_FORMAT</a> <div class="block"><span class="deprecationComment">- as of 4.0, ISO_TIME_TIME_ZONE_FORMAT will be removed.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/SystemUtils.html#PATH_SEPARATOR">org.apache.commons.lang3.SystemUtils.PATH_SEPARATOR</a> <div class="block"><span class="deprecationComment">Use <a href="http://docs.oracle.com/javase/7/docs/api/java/io/File.html?is-external=true#pathSeparator" title="class or interface in java.io"><code>File.pathSeparator</code></a>, since it is guaranteed to be a string containing a single character and it does not require a privilege check.</span></div> </td> </tr> </tbody> </table> </li> </ul> <a name="method"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <table class="deprecatedSummary" border="0" cellpadding="3" cellspacing="0" summary="Deprecated Methods table, listing deprecated methods, and an explanation"> <caption><span>Deprecated Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDatePrinter.html#applyRules-java.util.Calendar-java.lang.StringBuffer-">org.apache.commons.lang3.time.FastDatePrinter.applyRules(Calendar, StringBuffer)</a> <div class="block"><span class="deprecationComment">use <a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.util.Calendar-"><code>FastDatePrinter.format(Calendar)</code></a> or <a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.util.Calendar-B-"><code>FastDatePrinter.format(Calendar, Appendable)</code></a></span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDateFormat.html#applyRules-java.util.Calendar-java.lang.StringBuffer-">org.apache.commons.lang3.time.FastDateFormat.applyRules(Calendar, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use <a href="org/apache/commons/lang3/time/FastDateFormat.html#format-java.util.Calendar-B-"><code>FastDateFormat.format(Calendar, Appendable)</code></a></span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/StringUtils.html#chomp-java.lang.String-java.lang.String-">org.apache.commons.lang3.StringUtils.chomp(String, String)</a> <div class="block"><span class="deprecationComment">This feature will be removed in Lang 4.0, use <a href="org/apache/commons/lang3/StringUtils.html#removeEnd-java.lang.String-java.lang.String-"><code>StringUtils.removeEnd(String, String)</code></a> instead</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/ObjectUtils.html#equals-java.lang.Object-java.lang.Object-">org.apache.commons.lang3.ObjectUtils.equals(Object, Object)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.equals(Object, Object)</code> in Java 7 and will be removed from future releases.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/StringEscapeUtils.html#escapeXml-java.lang.String-">org.apache.commons.lang3.StringEscapeUtils.escapeXml(String)</a> <div class="block"><span class="deprecationComment">use <a href="org/apache/commons/lang3/StringEscapeUtils.html#escapeXml10-java.lang.String-"><code>StringEscapeUtils.escapeXml10(java.lang.String)</code></a> or <a href="org/apache/commons/lang3/StringEscapeUtils.html#escapeXml11-java.lang.String-"><code>StringEscapeUtils.escapeXml11(java.lang.String)</code></a> instead.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDateFormat.html#format-java.util.Calendar-java.lang.StringBuffer-">org.apache.commons.lang3.time.FastDateFormat.format(Calendar, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/FastDateFormat.html#format-java.util.Calendar-B-"><code>FastDateFormat.format(Calendar, Appendable)</code></a>.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DatePrinter.html#format-java.util.Calendar-java.lang.StringBuffer-">org.apache.commons.lang3.time.DatePrinter.format(Calendar, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/DatePrinter.html#format-java.util.Calendar-B-"><code>DatePrinter.format(Calendar, Appendable)</code></a>.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDateFormat.html#format-java.util.Date-java.lang.StringBuffer-">org.apache.commons.lang3.time.FastDateFormat.format(Date, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/FastDateFormat.html#format-java.util.Date-B-"><code>FastDateFormat.format(Date, Appendable)</code></a>.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DatePrinter.html#format-java.util.Date-java.lang.StringBuffer-">org.apache.commons.lang3.time.DatePrinter.format(Date, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/DatePrinter.html#format-java.util.Date-B-"><code>DatePrinter.format(Date, Appendable)</code></a>.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDateFormat.html#format-long-java.lang.StringBuffer-">org.apache.commons.lang3.time.FastDateFormat.format(long, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/FastDateFormat.html#format-long-B-"><code>FastDateFormat.format(long, Appendable)</code></a>.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/DatePrinter.html#format-long-java.lang.StringBuffer-">org.apache.commons.lang3.time.DatePrinter.format(long, StringBuffer)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/DatePrinter.html#format-long-B-"><code>DatePrinter.format(long, Appendable)</code></a>.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.lang.Object-java.lang.StringBuffer-java.text.FieldPosition-">org.apache.commons.lang3.time.FastDatePrinter.format(Object, StringBuffer, FieldPosition)</a> <div class="block"><span class="deprecationComment">Use {<a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.util.Date-"><code>FastDatePrinter.format(Date)</code></a>, {<a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.util.Calendar-"><code>FastDatePrinter.format(Calendar)</code></a>, {<a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-long-"><code>FastDatePrinter.format(long)</code></a>, or {<a href="org/apache/commons/lang3/time/FastDatePrinter.html#format-java.lang.Object-"><code>FastDatePrinter.format(Object)</code></a></span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/exception/ExceptionUtils.html#getCause-java.lang.Throwable-">org.apache.commons.lang3.exception.ExceptionUtils.getCause(Throwable)</a> <div class="block"><span class="deprecationComment">This feature will be removed in Lang 4.0, use <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause--" title="class or interface in java.lang"><code>Throwable.getCause()</code></a> instead</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/exception/ExceptionUtils.html#getCause-java.lang.Throwable-java.lang.String:A-">org.apache.commons.lang3.exception.ExceptionUtils.getCause(Throwable, String[])</a> <div class="block"><span class="deprecationComment">This feature will be removed in Lang 4.0, use <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Throwable.html?is-external=true#getCause--" title="class or interface in java.lang"><code>Throwable.getCause()</code></a> instead</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/exception/ExceptionUtils.html#getDefaultCauseMethodNames--">org.apache.commons.lang3.exception.ExceptionUtils.getDefaultCauseMethodNames()</a> <div class="block"><span class="deprecationComment">This feature will be removed in Lang 4.0</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/ObjectUtils.html#hashCode-java.lang.Object-">org.apache.commons.lang3.ObjectUtils.hashCode(Object)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.hashCode(Object)</code> in Java 7 and will be removed in future releases</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/ObjectUtils.html#hashCodeMulti-java.lang.Object...-">org.apache.commons.lang3.ObjectUtils.hashCodeMulti(Object...)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.hash(Object...)</code> in Java 7 and will be removed in future releases.</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/ArrayUtils.html#isEquals-java.lang.Object-java.lang.Object-">org.apache.commons.lang3.ArrayUtils.isEquals(Object, Object)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.deepEquals(Object, Object)</code> and will be removed from future releases.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/math/NumberUtils.html#isNumber-java.lang.String-">org.apache.commons.lang3.math.NumberUtils.isNumber(String)</a> <div class="block"><span class="deprecationComment">This feature will be removed in Lang 4.0, use <a href="org/apache/commons/lang3/math/NumberUtils.html#isCreatable-java.lang.String-"><code>NumberUtils.isCreatable(String)</code></a> instead</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/CharUtils.html#toCharacterObject-char-">org.apache.commons.lang3.CharUtils.toCharacterObject(char)</a> <div class="block"><span class="deprecationComment">Java 5 introduced <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Character.html?is-external=true#valueOf-char-" title="class or interface in java.lang"><code>Character.valueOf(char)</code></a> which caches chars 0 through 127.</span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/StringUtils.html#toString-byte:A-java.lang.String-">org.apache.commons.lang3.StringUtils.toString(byte[], String)</a> <div class="block"><span class="deprecationComment">use <a href="org/apache/commons/lang3/StringUtils.html#toEncodedString-byte:A-java.nio.charset.Charset-"><code>StringUtils.toEncodedString(byte[], Charset)</code></a> instead of String constants in your code</span></div> </td> </tr> <tr class="rowColor"> <td class="colOne"><a href="org/apache/commons/lang3/ObjectUtils.html#toString-java.lang.Object-">org.apache.commons.lang3.ObjectUtils.toString(Object)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.toString(Object)</code> in Java 7 and will be removed in future releases. Note however that said method will return "null" for null references, while this method returns and empty String. To preserve behavior use <code>java.util.Objects.toString(myObject, "")</code></span></div> </td> </tr> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/ObjectUtils.html#toString-java.lang.Object-java.lang.String-">org.apache.commons.lang3.ObjectUtils.toString(Object, String)</a> <div class="block"><span class="deprecationComment">this method has been replaced by <code>java.util.Objects.toString(Object, String)</code> in Java 7 and will be removed in future releases.</span></div> </td> </tr> </tbody> </table> </li> </ul> <a name="enum.constant"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <table class="deprecatedSummary" border="0" cellpadding="3" cellspacing="0" summary="Deprecated Enum Constants table, listing deprecated enum constants, and an explanation"> <caption><span>Deprecated Enum Constants</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Enum Constant and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="org/apache/commons/lang3/JavaVersion.html#JAVA_1_9">org.apache.commons.lang3.JavaVersion.JAVA_1_9</a> <div class="block"><span class="deprecationComment">As of release 3.5, replaced by <a href="org/apache/commons/lang3/JavaVersion.html#JAVA_9"><code>JavaVersion.JAVA_9</code></a></span></div> </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>Package</li> <li>Class</li> <li>Use</li> <li><a href="overview-tree.html">Tree</a></li> <li class="navBarCell1Rev">Deprecated</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?deprecated-list.html" target="_top">Frames</a></li> <li><a href="deprecated-list.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 ======= --> <p class="legalCopy"><small>Copyright &#169; 2001&#x2013;2016 <a href="https://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
VeberAxel/Extract-Component
vendor/commons-lang3-3.5/apidocs/deprecated-list.html
HTML
mit
21,548
<div class="cbp-l-project-title">To-Do Dashboard</div> <div class="cbp-l-project-subtitle">Work management platform for creatives with a lot of cool features. Easier.</div> <div class="cbp-slider"> <ul class="cbp-slider-wrap"> <li class="cbp-slider-item"> <img src="img/works/3big.jpg" alt="" class="cbp-l-project-img"> </li> <li class="cbp-slider-item"> <img src="img/works/3big-1.jpg" alt="" class="cbp-l-project-img"> </li> <li class="cbp-slider-item"> <img src="img/works/3big-2.jpg" alt="" class="cbp-l-project-img"> </li> </ul> </div> <div class="cbp-l-project-container"> <div class="cbp-l-project-desc"> <div class="cbp-l-project-desc-title"><span>Project Description</span></div> <div class="cbp-l-project-desc-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Accusantium, cumque, earum blanditiis incidunt minus commodi consequatur provident quae. Nihil, alias, vel consequatur ab aliquam aspernatur optio harum facilis excepturi mollitia autem voluptas cum ex veniam numquam quia repudiandae in iure. Assumenda, vel provident molestiae perferendis officia commodi asperiores earum sapiente inventore quam deleniti mollitia consequatur expedita quaerat natus praesentium beatae aut ipsa non ex ullam atque suscipit ut dignissimos magnam!</div> </div> <div class="cbp-l-project-details"> <div class="cbp-l-project-details-title"><span>Project Details</span></div> <ul class="cbp-l-project-details-list"> <li><strong>Client</strong> John Doe</li> <li><strong>Date</strong>22 December 2013</li> <li><strong>Categories</strong> Logo, Graphic</li> </ul> <a href="#" target="_blank" class="cbp-l-project-details-visit">visit the site</a> </div> </div> <div class="cbp-l-project-container"> <div class="cbp-l-project-related"> <div class="cbp-l-project-desc-title"><span>Related Projects</span></div> <ul class="cbp-l-project-related-wrap"> <li class="cbp-l-project-related-item"> <a href="ajax/project2.html" class="cbp-singlePage cbp-l-project-related-link"> <img src="img/works/2.jpg" alt="" width="100%"> <div class="cbp-l-project-related-title">World Clock Widget</div> </a> </li> <li class="cbp-l-project-related-item"> <a href="ajax/project4.html" class="cbp-singlePage cbp-l-project-related-link"> <img src="img/works/4.jpg" alt="" width="100%"> <div class="cbp-l-project-related-title">To-Do Dashboard</div> </a> </li> <li class="cbp-l-project-related-item"> <a href="ajax/project5.html" class="cbp-singlePage cbp-l-project-related-link"> <img src="img/works/5.jpg" alt="" width="100%"> <div class="cbp-l-project-related-title">WhereTO App</div> </a> </li> </ul> </div> </div> <br> <br> <br>
dannyluffy/baliphone
assets/csshome/ajax/project3.html
HTML
mit
2,763
{% extends "comunicacion/basecomunicacion.html"%} {% load thumbnail %} {% block extra_js %} <script type='text/javascript'> $(document).ready(function() { // para resaltar menu $('#asociados-menu').addClass('active'); }); </script> <script type="text/javascript" language="javascript" class="init"> $(document).ready(function() { $('#listorg').dataTable( { "language": { "search": "Buscar:" }, "paging": false, "ordering": false, "info": false } ); } ); </script> {%endblock%} {% block contenido %} <div id="k-body"><!-- content wrapper --> <div class="container"><!-- container --> <div class="row"><!-- row --> <div class="k-breadcrumbs col-lg-12 clearfix"><!-- breadcrumbs --> <ol class="breadcrumb"> <li><a href="/">inicio</a></li> <li class="active">Contrapartes</li> </ol> </div><!-- breadcrumbs end --> </div><!-- row end --> <div class="row no-gutter"><!-- row --> <div class="col-lg-8 col-md-8"><!-- doc body wrapper --> <div class="col-padded"><!-- inner custom column --> <div class="col-lg-12 col-md-12"> <div class="btn-group paises "> <button type="button" class="btn txt-black" disabled="disabled">Filtar por:</button> {% for obj in paises %} <button type="button" class="btn btn-default"> <a href="/contrapartes/pais/{{obj.id}}">{{obj.nombre}}</a> </button> {% endfor %} </div> <hr /> </div> <div class="col-lg-12 col-md-12"> <h1 class="page-title">Contrapartes</h1><!-- category title --> <br> </div> <div class="row gutter k-equal-height"><!-- row --> <table id="listorg" class="table-event table table-bordered table-condensed"> <thead> <tr> <th>Siglas</th> <th>País</th> <th>Plataforma</th> <th>Color</th> </tr> </thead> <tbody> {% for contraparte in object_list %} <tr> <td> <a href="{% url 'detalle-contraparte' contraparte.id %}">{{contraparte.siglas}} </a> </td> <td>{{contraparte.pais}}</td> <td>{{contraparte.plataforma}}</td> <td><div class="listcolor" style ="background:{{contraparte.font_color}}"></div></td> </tr> {% endfor %} </tbody> </table> </div><!-- row end --> </div><!-- inner custom column end --> </div><!-- doc body wrapper end --> <div id="k-sidebar" class="col-lg-4 col-md-4"><!-- sidebar wrapper --> <div class="col-padded col-shaded"><!-- inner custom column --> <ul class="list-unstyled clear-margins"><!-- widgets --> <li class="widget-container widget_up_events"><!-- widget --> {% include "comunicacion/widgets.html" %} </li> </ul><!-- widgets end --> </div><!-- inner custom column end --> </div><!-- sidebar wrapper end --> </div><!-- row end --> </div><!-- container end --> </div><!-- content wrapper end --> {% endblock %}
shiminasai/ciat_plataforma
templates/comunicacion/contrapartes/contraparte_list.html
HTML
mit
5,383
--- layout: default --- <article> {{ content }} </article>
gesa/this-jekyll-boilerplate
app/_layouts/post.html
HTML
mit
62
{% load url from future %}{% load users_extras %}{% load js %} {% block extra_css %} <style type="text/css" title="currentStyle"> @import "{{ STATIC_URL }}/css/jquery.dataTables_themeroller.css"; @import "{{ STATIC_URL }}/css/jquery-ui-1.10.3.custom.min.css"; @import "{{ STATIC_URL }}/css/jquery-ui-timepicker-addon.css"; </style> {% endblock %} {% block extra_js %} <script type="text/javascript" src="{{ STATIC_URL }}/js/jquery-1.9.1.min.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}/js/jquery.cookie.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}/js/jquery.dataTables.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}/js/jquery-ui-1.10.3.custom.min.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}/js/jquery-ui-timepicker-addon.js"></script> {% django_js jquery=false i18n=true csrf=false %} <script type="text/javascript" charset="utf-8"> var pgst = 'ini'; var filter = []; var shFilter = []; var fields = {{ filterFields|safe }}; var tableid = "{{ tableid }}"; var datasrc = "{{ datasrc }}"; var colsOrig = {{ columns|safe }}; var fieldIndices = {{ fieldIndices|safe }}; var fltr; var stFlag = 'ini'; var oTable; var prefix = "{{ prefix|safe }}"; var staticurl = "{{ STATIC_URL }}"; </script> <script type="text/javascript" src="{{ STATIC_URL }}/js/bigpandamon-csrf.js"></script> <script type="text/javascript" src="{{ STATIC_URL }}/js/bigpandamon-filter.js"></script> {% endblock %} <!-- Filter --> {% users_table_filter datasrc=datasrc data=data columns=columns|safe tableid=tableid|safe caption=caption filterFields=filterFields|safe fieldIndices=fieldIndices|safe %} <!-- Summary of job list --> {% users_smry_jobs datasrcsmry=datasrcsmry data=data columns=columns|safe tableidsmry=tableidsmry|safe caption=caption filterFields=filterFields|safe fieldIndices=fieldIndices|safe %} <!-- Job list --> {% users_table_jobs datasrc=datasrc data=data columns=columns|safe tableid=tableid|safe caption=caption filterFields=filterFields|safe fieldIndices=fieldIndices|safe %} {% block extra_js_bottombody %} <script type="text/javascript" charset="utf-8"> $.fn.dataTableExt.oApi.fnReloadAjax = function ( oSettings, sNewSource, fnCallback, bStandingRedraw ) { if ( typeof sNewSource != 'undefined' && sNewSource != null ) { oSettings.sAjaxSource = sNewSource; } this.oApi._fnProcessingDisplay( oSettings, true ); var that = this; var iStart = oSettings._iDisplayStart; this.fnDraw(); } // hide filter table, show only filter summary hideFilter("{{ tableid }}", "{{ caption }}" ); $("#btnFilter-{{ tableid }}").hide(); ///showFilter("{{ tableid }}", "{{ caption }}" ); ///$("#btnFilter-{{ tableid }}").show(); $(document).ready(function() { $.ajaxSetup({ beforeSend: function(xhr, settings) { if (!csrfSafeMethod(settings.type) && sameOrigin(settings.url)) { // Send the token to same-origin, relative URLs only. // Send the token only if the method warrants CSRF protection // Using the CSRFToken value acquired earlier xhr.setRequestHeader("X-CSRFToken", csrftoken); } } }); // get filter parameters from URL getFilterURL(); // filter table config buildFilterTable("{{ tableid }}"); // set filter to values from URL setValuesFilterTable(filter); // draw table console.debug("before drawTableUserActivity"); console.debug("before drawTableUserActivity, pgst="+pgst); drawTableUserActivity(pgst); console.debug("after drawTableUserActivity"); // Show/hide filter console.debug("before sh-filter-click function"); $("#sh-filter-{{ tableid }}").click(function(){ var nTr = this.parentNode; var i = $.inArray( nTr, shFilter ); if ( i === -1 ) { showFilter("{{ tableid }}", "{{ caption }}"); shFilter.push( nTr ); } else { hideFilter("{{ tableid }}", "{{ caption }}"); shFilter.splice( i, 1 ); } }); console.debug("after sh-filter-click function"); console.debug("before btnFilter-click function"); // Filter dataTable button $("#btnFilter-{{ tableid }}").click(function(){ pgst='fltr'; drawTable(pgst, fields, "{{ tableid }}", "{{ datasrc }}", fltr); }); console.debug("after btnFilter-click function"); } ); // document.ready var username = gFV("ProdUserName"); if (username.length > 1){ $( "#div-subtitle").text("Recent activity of " + username); } console.debug("username="+username); </script> {% endblock %}
kiae-grid/panda-bigmon-core
core/pandajob/templates/templatetags/users/users_jobs_table_with_filter.html
HTML
apache-2.0
4,558
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0) on Mon Jan 13 19:53:36 EST 2014 --> <title>ConstitutiveState</title> <meta name="date" content="2014-01-13"> <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="ConstitutiveState"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ConstitutiveState.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/spline/segment/BestFitFlexurePenalizer.html" title="class in org.drip.spline.segment"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/spline/segment/ConstitutiveState.html" target="_top">Frames</a></li> <li><a href="ConstitutiveState.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&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>Constr&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.drip.spline.segment</div> <h2 title="Class ConstitutiveState" class="title">Class ConstitutiveState</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment">org.drip.spline.segment.InelasticConstitutiveState</a></li> <li> <ul class="inheritance"> <li>org.drip.spline.segment.ConstitutiveState</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.lang.Comparable&lt;<a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment">InelasticConstitutiveState</a>&gt;</dd> </dl> <hr> <br> <pre>public class <span class="strong">ConstitutiveState</span> extends <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment">InelasticConstitutiveState</a></pre> <div class="block">ConstitutiveState implements the single segment basis calibration and inference functionality. It exports the following functionality: - Build the ConstitutiveState instance from the Basis Function/Shape Controller Set. - Build the ConstitutiveState instance from the Basis Evaluator Set. - Retrieve the Number of Parameters, Basis Evaluator, Array of the Response Basis Coefficients, and Segment Design Inelastic Control. - Calibrate the Segment State from the Calibration Parameter Set. - Sensitivity Calibrator: Calibrate the Segment Quote Jacobian from the Calibration Parameter Set. - Calibrate the coefficients from the prior Predictor/Response Segment, the Constraint, and fitness Weights - Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate. - Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Slope. - Calibrate the coefficients from the Left Edge Response Value Constraint, the Left Edge Response Value Slope, and the Right Edge Response Value Constraint. - Retrieve the Segment Curvature, Length, and the Best Fit DPE. - Calculate the Response Value and its Derivative at the given Predictor Ordinate. - Calculate the Ordered Derivative of the Coefficient to the Quote. - Calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Inputs. - Calculate the Jacobian of the Response to the Edge Inputs at the given Predictor Ordinate. - Calculate the Jacobian of the Response to the Basis Coefficients at the given Predictor Ordinate. - Calibrate the segment and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters. - Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Value Slope and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters. - Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters. - Indicate whether the given segment is monotone. If monotone, may optionally indicate the nature of the extrema contained inside (maxima/minima/infection). - Clip the part of the Segment to the Right of the specified Predictor Ordinate. Retain all other constraints the same. - Clip the part of the Segment to the Left of the specified Predictor Ordinate. Retain all other constraints the same. - Display the string representation for diagnostic purposes.</div> </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="overviewSummary" 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>static int</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#LEFT_NODE_VALUE_PARAMETER_INDEX">LEFT_NODE_VALUE_PARAMETER_INDEX</a></strong></code> <div class="block">LEFT NODE VALUE PARAMETER INDEX</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#RIGHT_NODE_VALUE_PARAMETER_INDEX">RIGHT_NODE_VALUE_PARAMETER_INDEX</a></strong></code> <div class="block">RIGHT NODE VALUE PARAMETER INDEX</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/spline/segment/BasisEvaluator.html" title="interface in org.drip.spline.segment">BasisEvaluator</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#basisEvaluator()">basisEvaluator</a></strong>()</code> <div class="block">Retrieve the Basis Evaluator</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#bestFitDPE(org.drip.spline.params.SegmentBestFitResponse)">bestFitDPE</a></strong>(<a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfr)</code> <div class="block">Retrieve the Segment Best Fit DPE</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calcResponseValueDerivative(double, int)">calcResponseValueDerivative</a></strong>(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</code> <div class="block">Calculate the Ordered Response Value Derivative at the Predictor Ordinate</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrate(org.drip.spline.segment.ConstitutiveState, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">calibrate</a></strong>(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, double&nbsp;dblRightStateValue, double&nbsp;dblRightStateQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrate(org.drip.spline.segment.ConstitutiveState, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">calibrate</a></strong>(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;srvcState, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;srvcQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the coefficients from the prior Predictor/Response Segment, the Constraint, and fitness Weights</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrate(double, double, double, double, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">calibrate</a></strong>(double&nbsp;dblLeftValue, double&nbsp;dblLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, double&nbsp;dblRightValue, double&nbsp;dblRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Slope</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrate(org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, double, double, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">calibrate</a></strong>(<a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateLeft, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateRight, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the coefficients from the Left Edge Response Value Constraint, the Left Edge Response Value Slope, and the Right Edge Response Value Constraint</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrateQuoteJacobian(org.drip.spline.params.SegmentStateCalibration, org.drip.spline.params.SegmentBasisFlexureConstraint[])">calibrateQuoteJacobian</a></strong>(<a href="../../../../org/drip/spline/params/SegmentStateCalibration.html" title="class in org.drip.spline.params">SegmentStateCalibration</a>&nbsp;sscQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBasisFlexureConstraint.html" title="class in org.drip.spline.params">SegmentBasisFlexureConstraint</a>[]&nbsp;aSBFCState)</code> <div class="block">Sensitivity Calibrator: Calibrate the Segment Quote Jacobian from the Calibration Parameter Set</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#calibrateState(org.drip.spline.params.SegmentStateCalibration)">calibrateState</a></strong>(<a href="../../../../org/drip/spline/params/SegmentStateCalibration.html" title="class in org.drip.spline.params">SegmentStateCalibration</a>&nbsp;sscState)</code> <div class="block">Main Calibrator: Calibrate the Segment State from the Calibration Parameter Set</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#clipLeftOfPredictorOrdinate(double)">clipLeftOfPredictorOrdinate</a></strong>(double&nbsp;dblPredictorOrdinate)</code> <div class="block">Clip the part of the Segment to the Right of the specified Predictor Ordinate.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#clipRightOfPredictorOrdinate(double)">clipRightOfPredictorOrdinate</a></strong>(double&nbsp;dblPredictorOrdinate)</code> <div class="block">Clip the part of the Segment to the Left of the specified Predictor Ordinate.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#Create(double, double, org.drip.spline.segment.BasisEvaluator, org.drip.spline.params.SegmentDesignInelasticControl)">Create</a></strong>(double&nbsp;dblLeftPredictorOrdinate, double&nbsp;dblRightPredictorOrdinate, <a href="../../../../org/drip/spline/segment/BasisEvaluator.html" title="interface in org.drip.spline.segment">BasisEvaluator</a>&nbsp;be, <a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a>&nbsp;sdic)</code> <div class="block">Build the ConstitutiveState instance from the Basis Evaluator Set</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#Create(double, double, org.drip.spline.basis.FunctionSet, org.drip.spline.params.ResponseScalingShapeControl, org.drip.spline.params.SegmentDesignInelasticControl)">Create</a></strong>(double&nbsp;dblLeftPredictorOrdinate, double&nbsp;dblRightPredictorOrdinate, <a href="../../../../org/drip/spline/basis/FunctionSet.html" title="class in org.drip.spline.basis">FunctionSet</a>&nbsp;fs, <a href="../../../../org/drip/spline/params/ResponseScalingShapeControl.html" title="class in org.drip.spline.params">ResponseScalingShapeControl</a>&nbsp;rssc, <a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a>&nbsp;sdic)</code> <div class="block">Build the ConstitutiveState instance from the Basis Function/Shape Controller Set</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#curvatureDPE()">curvatureDPE</a></strong>()</code> <div class="block">Retrieve the Segment Curvature DPE</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#derivDCoeffDQuote(double, int)">derivDCoeffDQuote</a></strong>(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</code> <div class="block">Calculate the Ordered Derivative of the Coefficient to the Quote</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#designControl()">designControl</a></strong>()</code> <div class="block">Retrieve the Segment Design Inelastic Control</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#displayString()">displayString</a></strong>()</code> <div class="block">Display the string representation for diagnostic purposes</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDCoeffDEdgeInputs()">jackDCoeffDEdgeInputs</a></strong>()</code> <div class="block">Calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Inputs</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDCoeffDEdgeParams(org.drip.spline.segment.ConstitutiveState, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">jackDCoeffDEdgeParams</a></strong>(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, double&nbsp;dblRightStateValue, double&nbsp;dblRightStateQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDCoeffDEdgeParams(double[], double[], double[], double[], org.drip.spline.params.SegmentBasisFlexureConstraint[], org.drip.spline.params.SegmentBestFitResponse)">jackDCoeffDEdgeParams</a></strong>(double[]&nbsp;adblPredictorOrdinate, double[]&nbsp;adblResponseValue, double[]&nbsp;adblLeftEdgeDeriv, double[]&nbsp;adblRightEdgeDeriv, <a href="../../../../org/drip/spline/params/SegmentBasisFlexureConstraint.html" title="class in org.drip.spline.params">SegmentBasisFlexureConstraint</a>[]&nbsp;aSIBC, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfr)</code> <div class="block">Calibrate the segment and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDCoeffDEdgeParams(double, double, double, double, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)">jackDCoeffDEdgeParams</a></strong>(double&nbsp;dblLeftValue, double&nbsp;dblLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, double&nbsp;dblRightValue, double&nbsp;dblRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</code> <div class="block">Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Value Slope and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDResponseDBasisCoeff(double, int)">jackDResponseDBasisCoeff</a></strong>(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</code> <div class="block">Calculate the Jacobian of the Response to the Basis Coefficients at the given Predictor Ordinate</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#jackDResponseDEdgeInputs(double, int)">jackDResponseDEdgeInputs</a></strong>(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</code> <div class="block">Calculate the Jacobian of the Response to the Edge Inputs at the given Predictor Ordinate</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#lengthDPE()">lengthDPE</a></strong>()</code> <div class="block">Retrieve the Segment Length DPE</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../org/drip/spline/segment/Monotonocity.html" title="class in org.drip.spline.segment">Monotonocity</a></code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#monotoneType()">monotoneType</a></strong>()</code> <div class="block">Indicate whether the given segment is monotone.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#numParameters()">numParameters</a></strong>()</code> <div class="block">Retrieve the Number of Parameters</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>double[]</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#responseBasisCoefficient()">responseBasisCoefficient</a></strong>()</code> <div class="block">Retrieve the Array of Response Basis Coefficients</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>double</code></td> <td class="colLast"><code><strong><a href="../../../../org/drip/spline/segment/ConstitutiveState.html#responseValue(double)">responseValue</a></strong>(double&nbsp;dblPredictorOrdinate)</code> <div class="block">Calculate the Response Value at the given Predictor Ordinate</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_org.drip.spline.segment.InelasticConstitutiveState"> <!-- --> </a> <h3>Methods inherited from class&nbsp;org.drip.spline.segment.<a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment">InelasticConstitutiveState</a></h3> <code><a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#compareTo(org.drip.spline.segment.InelasticConstitutiveState)">compareTo</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#delocalize(double)">delocalize</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#hashCode()">hashCode</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#in(double)">in</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#left()">left</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#localize(double)">localize</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#right()">right</a>, <a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html#width()">width</a></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>equals, getClass, notify, notifyAll, toString, wait, wait, wait</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="LEFT_NODE_VALUE_PARAMETER_INDEX"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>LEFT_NODE_VALUE_PARAMETER_INDEX</h4> <pre>public static final&nbsp;int LEFT_NODE_VALUE_PARAMETER_INDEX</pre> <div class="block">LEFT NODE VALUE PARAMETER INDEX</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.drip.spline.segment.ConstitutiveState.LEFT_NODE_VALUE_PARAMETER_INDEX">Constant Field Values</a></dd></dl> </li> </ul> <a name="RIGHT_NODE_VALUE_PARAMETER_INDEX"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>RIGHT_NODE_VALUE_PARAMETER_INDEX</h4> <pre>public static final&nbsp;int RIGHT_NODE_VALUE_PARAMETER_INDEX</pre> <div class="block">RIGHT NODE VALUE PARAMETER INDEX</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.drip.spline.segment.ConstitutiveState.RIGHT_NODE_VALUE_PARAMETER_INDEX">Constant Field Values</a></dd></dl> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="Create(double, double, org.drip.spline.basis.FunctionSet, org.drip.spline.params.ResponseScalingShapeControl, org.drip.spline.params.SegmentDesignInelasticControl)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Create</h4> <pre>public static final&nbsp;<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;Create(double&nbsp;dblLeftPredictorOrdinate, double&nbsp;dblRightPredictorOrdinate, <a href="../../../../org/drip/spline/basis/FunctionSet.html" title="class in org.drip.spline.basis">FunctionSet</a>&nbsp;fs, <a href="../../../../org/drip/spline/params/ResponseScalingShapeControl.html" title="class in org.drip.spline.params">ResponseScalingShapeControl</a>&nbsp;rssc, <a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a>&nbsp;sdic)</pre> <div class="block">Build the ConstitutiveState instance from the Basis Function/Shape Controller Set</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblLeftPredictorOrdinate</code> - Left Predictor Ordinate</dd><dd><code>dblRightPredictorOrdinate</code> - Right Predictor Ordinate</dd><dd><code>fs</code> - Response Basis Function Set</dd><dd><code>rssc</code> - Shape Controller</dd><dd><code>sdic</code> - Design Inelastic Parameters</dd> <dt><span class="strong">Returns:</span></dt><dd>Instance of ConstitutiveState</dd></dl> </li> </ul> <a name="Create(double, double, org.drip.spline.segment.BasisEvaluator, org.drip.spline.params.SegmentDesignInelasticControl)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>Create</h4> <pre>public static final&nbsp;<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;Create(double&nbsp;dblLeftPredictorOrdinate, double&nbsp;dblRightPredictorOrdinate, <a href="../../../../org/drip/spline/segment/BasisEvaluator.html" title="interface in org.drip.spline.segment">BasisEvaluator</a>&nbsp;be, <a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a>&nbsp;sdic)</pre> <div class="block">Build the ConstitutiveState instance from the Basis Evaluator Set</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblLeftPredictorOrdinate</code> - Left Predictor Ordinate</dd><dd><code>dblRightPredictorOrdinate</code> - Right Predictor Ordinate</dd><dd><code>be</code> - Basis Evaluator</dd><dd><code>sdic</code> - Design Inelastic Parameters</dd> <dt><span class="strong">Returns:</span></dt><dd>Instance of ConstitutiveState</dd></dl> </li> </ul> <a name="numParameters()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>numParameters</h4> <pre>public&nbsp;int&nbsp;numParameters()</pre> <div class="block">Retrieve the Number of Parameters</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Number of Parameters</dd></dl> </li> </ul> <a name="basisEvaluator()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>basisEvaluator</h4> <pre>public&nbsp;<a href="../../../../org/drip/spline/segment/BasisEvaluator.html" title="interface in org.drip.spline.segment">BasisEvaluator</a>&nbsp;basisEvaluator()</pre> <div class="block">Retrieve the Basis Evaluator</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Basis Evaluator</dd></dl> </li> </ul> <a name="responseBasisCoefficient()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>responseBasisCoefficient</h4> <pre>public&nbsp;double[]&nbsp;responseBasisCoefficient()</pre> <div class="block">Retrieve the Array of Response Basis Coefficients</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Array of Response Basis Coefficients</dd></dl> </li> </ul> <a name="designControl()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>designControl</h4> <pre>public&nbsp;<a href="../../../../org/drip/spline/params/SegmentDesignInelasticControl.html" title="class in org.drip.spline.params">SegmentDesignInelasticControl</a>&nbsp;designControl()</pre> <div class="block">Retrieve the Segment Design Inelastic Control</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Segment Design Inelastic Control</dd></dl> </li> </ul> <a name="calibrateState(org.drip.spline.params.SegmentStateCalibration)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrateState</h4> <pre>public&nbsp;boolean&nbsp;calibrateState(<a href="../../../../org/drip/spline/params/SegmentStateCalibration.html" title="class in org.drip.spline.params">SegmentStateCalibration</a>&nbsp;sscState)</pre> <div class="block">Main Calibrator: Calibrate the Segment State from the Calibration Parameter Set</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>sscState</code> - The Segment State Calibration Parameter Set</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => Calibration Successful</dd></dl> </li> </ul> <a name="calibrateQuoteJacobian(org.drip.spline.params.SegmentStateCalibration, org.drip.spline.params.SegmentBasisFlexureConstraint[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrateQuoteJacobian</h4> <pre>public&nbsp;boolean&nbsp;calibrateQuoteJacobian(<a href="../../../../org/drip/spline/params/SegmentStateCalibration.html" title="class in org.drip.spline.params">SegmentStateCalibration</a>&nbsp;sscQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBasisFlexureConstraint.html" title="class in org.drip.spline.params">SegmentBasisFlexureConstraint</a>[]&nbsp;aSBFCState)</pre> <div class="block">Sensitivity Calibrator: Calibrate the Segment Quote Jacobian from the Calibration Parameter Set</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>sscQuoteSensitivity</code> - The Segment Quote Calibration Parameter Sensitivity</dd><dd><code>aSBFCState</code> - Array of Segment State Basis Flexure Constraints</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => Quote Sensitivity Calibration Successful</dd></dl> </li> </ul> <a name="calibrate(org.drip.spline.segment.ConstitutiveState, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrate</h4> <pre>public&nbsp;boolean&nbsp;calibrate(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;srvcState, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;srvcQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the coefficients from the prior Predictor/Response Segment, the Constraint, and fitness Weights</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>csPrev</code> - Prior Predictor/Response Segment</dd><dd><code>srvcState</code> - The Segment State Response Value Constraint</dd><dd><code>srvcQuoteSensitivity</code> - The Segment State Response Value Constraint Quote Sensitivity</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted State Response Values</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted State Response Value Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => If the calibration succeeds</dd></dl> </li> </ul> <a name="calibrate(org.drip.spline.segment.ConstitutiveState, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrate</h4> <pre>public&nbsp;boolean&nbsp;calibrate(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, double&nbsp;dblRightStateValue, double&nbsp;dblRightStateQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>csPrev</code> - Prior Predictor/Response Segment</dd><dd><code>dblRightStateValue</code> - Response Value at the Right Predictor Ordinate</dd><dd><code>dblRightStateQuoteSensitivity</code> - Response Value Quote Sensitivity at the Right Predictor Ordinate</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted Response Values</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted Response Value Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => If the calibration succeeds</dd></dl> </li> </ul> <a name="calibrate(double, double, double, double, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrate</h4> <pre>public&nbsp;boolean&nbsp;calibrate(double&nbsp;dblLeftValue, double&nbsp;dblLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, double&nbsp;dblRightValue, double&nbsp;dblRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Slope</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblLeftValue</code> - Left Edge Response Value</dd><dd><code>dblLeftQuoteSensitivity</code> - Left Edge Response Value Quote Sensitivity</dd><dd><code>dblLeftSlope</code> - Left Edge Response Slope</dd><dd><code>dblLeftSlopeQuoteSensitivity</code> - Left Edge Response Slope Quote Sensitivity</dd><dd><code>dblRightValue</code> - Right Edge Response Value</dd><dd><code>dblRightQuoteSensitivity</code> - Right Edge Response Value Quote Sensitivity</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted Response Values</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted Response Values Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => If the calibration succeeds</dd></dl> </li> </ul> <a name="calibrate(org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, double, double, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentResponseValueConstraint, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calibrate</h4> <pre>public&nbsp;boolean&nbsp;calibrate(<a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateLeft, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateRight, <a href="../../../../org/drip/spline/params/SegmentResponseValueConstraint.html" title="class in org.drip.spline.params">SegmentResponseValueConstraint</a>&nbsp;wrvcStateRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the coefficients from the Left Edge Response Value Constraint, the Left Edge Response Value Slope, and the Right Edge Response Value Constraint</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>wrvcStateLeft</code> - Left Edge Response Value Constraint</dd><dd><code>wrvcStateLeftQuoteSensitivity</code> - Left Edge Response Value Constraint Quote Sensitivity</dd><dd><code>dblLeftSlope</code> - Left Edge Response Value Slope</dd><dd><code>dblLeftSlopeQuoteSensitivity</code> - Left Edge Response Value Slope Quote Sensitivity</dd><dd><code>wrvcStateRight</code> - Right Edge Response Value Constraint</dd><dd><code>wrvcStateRightQuoteSensitivity</code> - Right Edge Response Value Constraint Quote Sensitivity</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted Response</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted Response Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>TRUE => If the calibration succeeds</dd></dl> </li> </ul> <a name="curvatureDPE()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>curvatureDPE</h4> <pre>public&nbsp;double&nbsp;curvatureDPE() throws java.lang.Exception</pre> <div class="block">Retrieve the Segment Curvature DPE</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Segment Curvature DPE</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Thrown if the Segment Curvature DPE cannot be computed</dd></dl> </li> </ul> <a name="lengthDPE()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>lengthDPE</h4> <pre>public&nbsp;double&nbsp;lengthDPE() throws java.lang.Exception</pre> <div class="block">Retrieve the Segment Length DPE</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Segment Length DPE</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Thrown if the Segment Length DPE cannot be computed</dd></dl> </li> </ul> <a name="bestFitDPE(org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>bestFitDPE</h4> <pre>public&nbsp;double&nbsp;bestFitDPE(<a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfr) throws java.lang.Exception</pre> <div class="block">Retrieve the Segment Best Fit DPE</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>sbfr</code> - The Segment's Best Fit Response Inputs</dd> <dt><span class="strong">Returns:</span></dt><dd>The Segment Best Fit DPE</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Thrown if the Segment Best Fit DPE cannot be computed</dd></dl> </li> </ul> <a name="responseValue(double)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>responseValue</h4> <pre>public&nbsp;double&nbsp;responseValue(double&nbsp;dblPredictorOrdinate) throws java.lang.Exception</pre> <div class="block">Calculate the Response Value at the given Predictor Ordinate</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - Predictor Ordinate</dd> <dt><span class="strong">Returns:</span></dt><dd>The Response Value</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.Exception</code> - Thrown if the calculation did not succeed</dd></dl> </li> </ul> <a name="calcResponseValueDerivative(double, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>calcResponseValueDerivative</h4> <pre>public&nbsp;double&nbsp;calcResponseValueDerivative(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder) throws java.lang.Exception</pre> <div class="block">Calculate the Ordered Response Value Derivative at the Predictor Ordinate</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - Predictor Ordinate at which the ordered Response Derivative is to be calculated</dd><dd><code>iOrder</code> - Derivative Order</dd> <dt><span class="strong">Returns:</span></dt><dd>Retrieve the Ordered Response Value Derivative</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>Thrown</code> - if the Ordered Response Value Derivative cannot be calculated</dd> <dd><code>java.lang.Exception</code></dd></dl> </li> </ul> <a name="derivDCoeffDQuote(double, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>derivDCoeffDQuote</h4> <pre>public&nbsp;double&nbsp;derivDCoeffDQuote(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder) throws java.lang.Exception</pre> <div class="block">Calculate the Ordered Derivative of the Coefficient to the Quote</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - Predictor Ordinate at which the ordered Derivative of the Coefficient to the Quote is to be calculated</dd><dd><code>iOrder</code> - Derivative Order</dd> <dt><span class="strong">Returns:</span></dt><dd>Retrieve the Ordered Derivative of the Coefficient to the Quote</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>Thrown</code> - if the Ordered Derivative of the Coefficient to the Quote cannot be calculated</dd> <dd><code>java.lang.Exception</code></dd></dl> </li> </ul> <a name="jackDCoeffDEdgeInputs()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDCoeffDEdgeInputs</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDCoeffDEdgeInputs()</pre> <div class="block">Calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Inputs</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The Jacobian of the Segment's Response Basis Function Coefficients to the Edge Inputs</dd></dl> </li> </ul> <a name="jackDResponseDEdgeInputs(double, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDResponseDEdgeInputs</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDResponseDEdgeInputs(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</pre> <div class="block">Calculate the Jacobian of the Response to the Edge Inputs at the given Predictor Ordinate</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - The Predictor Ordinate</dd><dd><code>iOrder</code> - Order of the Derivative Desired</dd> <dt><span class="strong">Returns:</span></dt><dd>The Jacobian of the Response to the Edge Inputs at the given Predictor Ordinate</dd></dl> </li> </ul> <a name="jackDResponseDBasisCoeff(double, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDResponseDBasisCoeff</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDResponseDBasisCoeff(double&nbsp;dblPredictorOrdinate, int&nbsp;iOrder)</pre> <div class="block">Calculate the Jacobian of the Response to the Basis Coefficients at the given Predictor Ordinate</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - The Predictor Ordinate</dd><dd><code>iOrder</code> - Order of the Derivative Desired</dd> <dt><span class="strong">Returns:</span></dt><dd>The Jacobian of the Response to the Basis Coefficients at the given Predictor Ordinate</dd></dl> </li> </ul> <a name="jackDCoeffDEdgeParams(double[], double[], double[], double[], org.drip.spline.params.SegmentBasisFlexureConstraint[], org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDCoeffDEdgeParams</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDCoeffDEdgeParams(double[]&nbsp;adblPredictorOrdinate, double[]&nbsp;adblResponseValue, double[]&nbsp;adblLeftEdgeDeriv, double[]&nbsp;adblRightEdgeDeriv, <a href="../../../../org/drip/spline/params/SegmentBasisFlexureConstraint.html" title="class in org.drip.spline.params">SegmentBasisFlexureConstraint</a>[]&nbsp;aSIBC, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfr)</pre> <div class="block">Calibrate the segment and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>adblPredictorOrdinate</code> - Array of Predictor Ordinates</dd><dd><code>adblResponseValue</code> - Array of Response Values</dd><dd><code>adblLeftEdgeDeriv</code> - Array of Left Edge Derivatives</dd><dd><code>adblRightEdgeDeriv</code> - Array of Right Edge Derivatives</dd><dd><code>aSIBC</code> - Array of Segment Flexure Constraints, expressed as Basis Coefficients</dd><dd><code>sbfr</code> - Segment Best Fit Response Instance</dd> <dt><span class="strong">Returns:</span></dt><dd>The Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</dd></dl> </li> </ul> <a name="jackDCoeffDEdgeParams(double, double, double, double, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDCoeffDEdgeParams</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDCoeffDEdgeParams(double&nbsp;dblLeftValue, double&nbsp;dblLeftQuoteSensitivity, double&nbsp;dblLeftSlope, double&nbsp;dblLeftSlopeQuoteSensitivity, double&nbsp;dblRightValue, double&nbsp;dblRightQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the Coefficients from the Edge Response Values and the Left Edge Response Value Slope and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblLeftValue</code> - Left Edge Response Value</dd><dd><code>dblLeftQuoteSensitivity</code> - Left Edge Response Value Quote Sensitivity</dd><dd><code>dblLeftSlope</code> - Left Edge Response Slope</dd><dd><code>dblLeftSlopeQuoteSensitivity</code> - Left Edge Response Slope Quote Sensitivity</dd><dd><code>dblRightValue</code> - Right Edge Response Value</dd><dd><code>dblRightQuoteSensitivity</code> - Right Edge Response Value Quote Sensitivity</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted Response Values</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted Response Values Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>The Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</dd></dl> </li> </ul> <a name="jackDCoeffDEdgeParams(org.drip.spline.segment.ConstitutiveState, double, double, org.drip.spline.params.SegmentBestFitResponse, org.drip.spline.params.SegmentBestFitResponse)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>jackDCoeffDEdgeParams</h4> <pre>public&nbsp;<a href="../../../../org/drip/quant/calculus/WengertJacobian.html" title="class in org.drip.quant.calculus">WengertJacobian</a>&nbsp;jackDCoeffDEdgeParams(<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;csPrev, double&nbsp;dblRightStateValue, double&nbsp;dblRightStateQuoteSensitivity, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrState, <a href="../../../../org/drip/spline/params/SegmentBestFitResponse.html" title="class in org.drip.spline.params">SegmentBestFitResponse</a>&nbsp;sbfrQuoteSensitivity)</pre> <div class="block">Calibrate the coefficients from the prior Segment and the Response Value at the Right Predictor Ordinate and calculate the Jacobian of the Segment's Response Basis Function Coefficients to the Edge Parameters</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>csPrev</code> - Previous Predictor/Response Segment</dd><dd><code>dblRightStateValue</code> - Response Value at the Right Predictor Ordinate</dd><dd><code>dblRightStateQuoteSensitivity</code> - Response Value Quote Sensitivity at the Right Predictor Ordinate</dd><dd><code>sbfrState</code> - Segment's Best Fit Weighted Response Values</dd><dd><code>sbfrQuoteSensitivity</code> - Segment's Best Fit Weighted Response Value Quote Sensitivity</dd> <dt><span class="strong">Returns:</span></dt><dd>The Jacobian</dd></dl> </li> </ul> <a name="monotoneType()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>monotoneType</h4> <pre>public&nbsp;<a href="../../../../org/drip/spline/segment/Monotonocity.html" title="class in org.drip.spline.segment">Monotonocity</a>&nbsp;monotoneType()</pre> <div class="block">Indicate whether the given segment is monotone. If monotone, may optionally indicate the nature of the extrema contained inside (maxima/minima/infection).</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The monotone Type</dd></dl> </li> </ul> <a name="clipLeftOfPredictorOrdinate(double)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>clipLeftOfPredictorOrdinate</h4> <pre>public&nbsp;<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;clipLeftOfPredictorOrdinate(double&nbsp;dblPredictorOrdinate)</pre> <div class="block">Clip the part of the Segment to the Right of the specified Predictor Ordinate. Retain all other constraints the same.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - The Predictor Ordinate</dd> <dt><span class="strong">Returns:</span></dt><dd>The Clipped Segment</dd></dl> </li> </ul> <a name="clipRightOfPredictorOrdinate(double)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>clipRightOfPredictorOrdinate</h4> <pre>public&nbsp;<a href="../../../../org/drip/spline/segment/ConstitutiveState.html" title="class in org.drip.spline.segment">ConstitutiveState</a>&nbsp;clipRightOfPredictorOrdinate(double&nbsp;dblPredictorOrdinate)</pre> <div class="block">Clip the part of the Segment to the Left of the specified Predictor Ordinate. Retain all other constraints the same.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>dblPredictorOrdinate</code> - The Predictor Ordinate</dd> <dt><span class="strong">Returns:</span></dt><dd>The Clipped Segment</dd></dl> </li> </ul> <a name="displayString()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>displayString</h4> <pre>public&nbsp;java.lang.String&nbsp;displayString()</pre> <div class="block">Display the string representation for diagnostic purposes</div> <dl><dt><span class="strong">Returns:</span></dt><dd>The string representation</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/ConstitutiveState.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/drip/spline/segment/BestFitFlexurePenalizer.html" title="class in org.drip.spline.segment"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/drip/spline/segment/InelasticConstitutiveState.html" title="class in org.drip.spline.segment"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/drip/spline/segment/ConstitutiveState.html" target="_top">Frames</a></li> <li><a href="ConstitutiveState.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li> <li>Constr&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>Constr&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>
tectronics/splinelibrary
2.3/docs/Javadoc/org/drip/spline/segment/ConstitutiveState.html
HTML
apache-2.0
65,155
<!DOCTYPE html> <html itemscope lang="en-us"> <head><meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta charset="utf-8"> <meta name="HandheldFriendly" content="True"> <meta name="MobileOptimized" content="320"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><meta name="generator" content="Hugo 0.57.2" /> <meta property="og:title" content="Not a Free Lunch – Managing Your Open Source Program" /> <meta name="twitter:title" content="Not a free lunch – Managing your open source program"/> <meta itemprop="name" content="Not a free lunch – Managing your open source program"><meta property="og:description" content="Do you have an open source inventory including CVEs? Do you talk to your developers about their tech debt budget? Do you monitor for new CVEs? If you answered no to any of these, we should talk." /> <meta name="twitter:description" content="Do you have an open source inventory including CVEs? Do you talk to your developers about their tech debt budget? Do you monitor for new CVEs? If you answered no to any of these, we should talk." /> <meta itemprop="description" content="Do you have an open source inventory including CVEs? Do you talk to your developers about their tech debt budget? Do you monitor for new CVEs? If you answered no to any of these, we should talk."><meta name="twitter:site" content="@devopsdays"> <meta property="og:type" content="talk" /> <meta property="og:url" content="/events/2017-madison/program/peter-chestna/" /><meta name="twitter:creator" content="@devopsdaysmsn" /><meta name="twitter:label1" value="Event" /> <meta name="twitter:data1" value="devopsdays Madison 2017" /><meta name="twitter:label2" value="Dates" /> <meta name="twitter:data2" value="October 30 - 31, 2017" /><meta property="og:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta itemprop="image" content="https://www.devopsdays.org/img/sharing.jpg" /> <meta property="fb:app_id" content="1904065206497317" /><meta itemprop="wordCount" content="37"> <title>Not a free lunch – Managing your open source program - devopsdays Madison 2017 </title> <script> window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date; ga('create', 'UA-9713393-1', 'auto'); ga('send', 'pageview'); </script> <script async src='https://www.google-analytics.com/analytics.js'></script> <link href="/css/site.css" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" rel="stylesheet"><link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png"> <link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png"> <link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png"> <link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png"> <link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png"> <link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png"> <link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png"> <link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/manifest.json"> <meta name="msapplication-TileColor" content="#ffffff"> <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> <meta name="theme-color" content="#ffffff"> <link href="/events/index.xml" rel="alternate" type="application/rss+xml" title="DevOpsDays" /> <link href="/events/index.xml" rel="feed" type="application/rss+xml" title="DevOpsDays" /> <script src=/js/devopsdays-min.js></script></head> <body lang=""> <nav class="navbar navbar-expand-md navbar-light"> <a class="navbar-brand" href="/"> <img src="/img/devopsdays-brain.png" height="30" class="d-inline-block align-top" alt="devopsdays Logo"> DevOpsDays </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul class="navbar-nav mr-auto"><li class="nav-item global-navigation"><a class = "nav-link" href="/events">events</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/blog">blog</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/sponsor">sponsor</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/speaking">speaking</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/organizing">organizing</a></li><li class="nav-item global-navigation"><a class = "nav-link" href="/about">about</a></li></ul> </div> </nav> <nav class="navbar event-navigation navbar-expand-md navbar-light"> <a href="/events/2017-madison" class="nav-link">Madison</a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar2"> <span class="navbar-toggler-icon"></span> </button> <div class="navbar-collapse collapse" id="navbar2"> <ul class="navbar-nav"><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/location">location</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/registration">registration</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/program">program</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/speakers">speakers</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/sponsor">sponsor</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/contact">contact</a> </li><li class="nav-item active"> <a class="nav-link" href="/events/2017-madison/conduct">conduct</a> </li></ul> </div> </nav> <div class="container-fluid"> <div class="row"> <div class="col-md-12"><div class = "row"> <div class = "col-md-5 offset-md-1"> <h2 class="talk-page">Not a free lunch – Managing your open source program</h2><div class="row"> <div class="col-md-12 youtube-video"> <div class="embed-responsive embed-responsive-16by9"> <iframe class="embed-responsive-item" src="https://www.youtube.com/embed/kquPE4A4rHs"> </iframe> </div> </div> </div><br /><br /><br /> <span class="talk-page content-text"> <p>Do you have an open source inventory including CVEs? Do you talk to your developers about their tech debt budget? Do you monitor for new CVEs? If you answered no to any of these, we should talk.</p> </span></div> <div class = "col-md-3 offset-md-1"><h2 class="talk-page">Speaker</h2><img src = "/events/2017-madison/speakers/peter-chestna.jpg" class="img-fluid" alt="peter-chestna"/><br /><br /><h4 class="talk-page"><a href = "/events/2017-madison/speakers/peter-chestna"> Peter Chestna </a></h4><a href = "https://twitter.com/PeteChestna"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i>&nbsp;</a><br /> <span class="talk-page content-text"><p>As Director of Developer Engagement at Veracode, Pete provides customers with practical advice on how to successfully roll out developer-centric application security programs. Relying on more than 10 </p><a href = "https://www.devopsdays.org/events/2017-madison/speakers/peter-chestna/">...</a></span> </div> </div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Gold Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.pivotal.io"><img src = "/img/sponsors/pivotal-before-20190307.png" alt = "Pivotal" title = "Pivotal" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.appdynamics.com/"><img src = "/img/sponsors/appdynamics-before-20180316.png" alt = "AppDynamics" title = "AppDynamics" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.elastic.co"><img src = "/img/sponsors/elastic.png" alt = "Elastic" title = "Elastic" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.morpheusdata.com"><img src = "/img/sponsors/morpheus_data.png" alt = "Morpheus Data" title = "Morpheus Data" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.cloudbolt.io"><img src = "/img/sponsors/cloudbolt.png" alt = "CloudBolt" title = "CloudBolt" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.columnit.com/"><img src = "/img/sponsors/columntech.png" alt = "Column Technologies" title = "Column Technologies" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Silver Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.dynatrace.com/"><img src = "/img/sponsors/dynatrace.png" alt = "Dynatrace" title = "Dynatrace" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.ipswitch.com"><img src = "/img/sponsors/ipswitch.png" alt = "ipswitch" title = "ipswitch" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.servicenow.com/"><img src = "/img/sponsors/servicenow-before-20180620.png" alt = "ServiceNow" title = "ServiceNow" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.sumologic.com/"><img src = "/img/sponsors/sumologic-before-20181203.png" alt = "SumoLogic" title = "SumoLogic" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://continuousassurance.org/"><img src = "/img/sponsors/swamp.png" alt = "SWAMP, the Software Assurance Marketplace" title = "SWAMP, the Software Assurance Marketplace" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.newrelic.com/culture"><img src = "/img/sponsors/newrelic.png" alt = "New Relic" title = "New Relic" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.contrastsecurity.com/"><img src = "/img/sponsors/contrast_security.png" alt = "Contrast Security" title = "Contrast Security" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.splunk.com/"><img src = "/img/sponsors/splunk.png" alt = "Splunk" title = "Splunk" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Bronze Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.widen.com"><img src = "/img/sponsors/widen.png" alt = "Widen" title = "Widen" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.nextpoint.com/"><img src = "/img/sponsors/nextpoint.png" alt = "Nextpoint" title = "Nextpoint" class="img-fluid"></a> </div><div class = "col-lg-1 col-md-2 col-4"> <a href = "http://www.target.com/"><img src = "/img/sponsors/target.png" alt = "Target" title = "Target" class="img-fluid"></a> </div></div><div class="row cta-row"> <div class="col-md-12"><h4 class="sponsor-cta">Community Sponsors</h4></div> </div><div class="row sponsor-row"><div class = "col-lg-1 col-md-2 col-4"> <a href = "https://www.arresteddevops.com"><img src = "/img/sponsors/arresteddevops.png" alt = "Arrested DevOps" title = "Arrested DevOps" class="img-fluid"></a> </div></div><br /> </div></div> </div> <nav class="navbar bottom navbar-light footer-nav-row" style="background-color: #bfbfc1;"> <div class = "row"> <div class = "col-md-12 footer-nav-background"> <div class = "row"> <div class = "col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">@DEVOPSDAYS</h3> <div> <a class="twitter-timeline" data-dnt="true" href="https://twitter.com/devopsdays/lists/devopsdays" data-chrome="noheader" height="440"></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> </div> </div> <div class="col-md-6 col-lg-3 footer-nav-col footer-content"> <h3 class="footer-nav">BLOG</h3><a href = "https://www.devopsdays.org/blog/2019/05/10/10-years-of-devopsdays/"><h1 class = "footer-heading">10 years of devopsdays</h1></a><h2 class="footer-heading">by Kris Buytaert - 10 May, 2019</h2><p class="footer-content">It&rsquo;s hard to believe but it is almost 10 years ago since #devopsdays happened for the first time in Gent. Back then there were almost 70 of us talking about topics that were of interest to both Operations and Development, we were exchanging our ideas and experiences `on how we were improving the quality of software delivery. Our ideas got started on the crossroads of Open Source, Agile and early Cloud Adoption.</p><a href = "https://www.devopsdays.org/blog/"><h1 class = "footer-heading">Blogs</h1></a><h2 class="footer-heading">10 May, 2019</h2><p class="footer-content"></p><a href="https://www.devopsdays.org/blog/index.xml">Feed</a> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">CFP OPEN</h3><a href = "/events/2019-campinas" class = "footer-content">Campinas</a><br /><a href = "/events/2019-macapa" class = "footer-content">Macapá</a><br /><a href = "/events/2019-shanghai" class = "footer-content">Shanghai</a><br /><a href = "/events/2019-recife" class = "footer-content">Recife</a><br /><a href = "/events/2020-charlotte" class = "footer-content">Charlotte</a><br /><a href = "/events/2020-prague" class = "footer-content">Prague</a><br /><a href = "/events/2020-tokyo" class = "footer-content">Tokyo</a><br /><a href = "/events/2020-salt-lake-city" class = "footer-content">Salt Lake City</a><br /> <br />Propose a talk at an event near you!<br /> </div> <div class="col-md-6 col-lg-3 footer-nav-col"> <h3 class="footer-nav">About</h3> devopsdays is a worldwide community conference series for anyone interested in IT improvement.<br /><br /> <a href="/about/" class = "footer-content">About devopsdays</a><br /> <a href="/privacy/" class = "footer-content">Privacy Policy</a><br /> <a href="/conduct/" class = "footer-content">Code of Conduct</a> <br /> <br /> <a href="https://www.netlify.com"> <img src="/img/netlify-light.png" alt="Deploys by Netlify"> </a> </div> </div> </div> </div> </nav> <script> $(document).ready(function () { $("#share").jsSocials({ shares: ["email", {share: "twitter", via: 'devopsdaysmsn'}, "facebook", "linkedin"], text: 'devopsdays Madison - 2017', showLabel: false, showCount: false }); }); </script> </body> </html>
gomex/devopsdays-web
static/events/2017-madison/program/peter-chestna/index.html
HTML
apache-2.0
16,752
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Test Programs</title> <link rel="stylesheet" href="../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../boost_staticassert.html" title="Chapter&#160;29.&#160;Boost.StaticAssert"> <link rel="prev" href="how.html" title="How it works"> <link rel="next" href="../string_algo.html" title="Chapter&#160;30.&#160;Boost String Algorithms Library"> </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="how.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost_staticassert.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="../string_algo.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_staticassert.test"></a>Test Programs</h2></div></div></div> <div class="table"> <a name="boost_staticassert.test.t0"></a><p class="title"><b>Table&#160;29.1.&#160;Test programs provided with static_assert</b></p> <div class="table-contents"><table class="table" summary="Test programs provided with static_assert"> <colgroup> <col> <col> <col> </colgroup> <thead><tr> <th> <p> Test Program </p> </th> <th> <p> Expected to Compile </p> </th> <th> <p> Description </p> </th> </tr></thead> <tbody> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test.cpp" target="_top">static_assert_test.cpp</a> </p> </td> <td> <p> Yes </p> </td> <td> <p> Illustrates usage, and should always compile, really just tests compiler compatibility. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_example_1.cpp" target="_top">static_assert_example_1.cpp</a> </p> </td> <td> <p> Platform dependent. </p> </td> <td> <p> Namespace scope test program, may compile depending upon the platform. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_example_2.cpp" target="_top">static_assert_example_2.cpp</a> </p> </td> <td> <p> Yes </p> </td> <td> <p> Function scope test program. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_example_3.cpp" target="_top">static_assert_example_3.cpp</a> </p> </td> <td> <p> Yes </p> </td> <td> <p> Class scope test program. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_1.cpp" target="_top">static_assert_test_fail_1.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at namespace scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_2.cpp" target="_top">static_assert_test_fail_2.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at non-template function scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_3.cpp" target="_top">static_assert_test_fail_3.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at non-template class scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_4.cpp" target="_top">static_assert_test_fail_4.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at non-template class scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_5.cpp" target="_top">static_assert_test_fail_5.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at template class scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_6.cpp" target="_top">static_assert_test_fail_6.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure at template class member function scope. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_7.cpp" target="_top">static_assert_test_fail_7.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure of class scope example. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_8.cpp" target="_top">static_assert_test_fail_8.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure of function scope example. </p> </td> </tr> <tr> <td> <p> <a href="../../../libs/static_assert/static_assert_test_fail_9.cpp" target="_top">static_assert_test_fail_9.cpp</a> </p> </td> <td> <p> No </p> </td> <td> <p> Illustrates failure of function scope example (part 2). </p> </td> </tr> </tbody> </table></div> </div> <br class="table-break"> </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; 2000, 2005 Steve Cleary and 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="how.html"><img src="../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../boost_staticassert.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="../string_algo.html"><img src="../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/doc/html/boost_staticassert/test.html
HTML
apache-2.0
8,781
<html> <head><head> <body> <h1>Bridge</h1> <script src="connect.utils.js"></script> <script src="connect.bridge.js"></script> </body> </html>
tWinE-xx/angular-cross-domain-request
tests/bridge_stub/bridge.html
HTML
apache-2.0
177
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html version="-//W3C//DTD XHTML 1.1//EN" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"/> <meta name=viewport content="width=device-width, initial-scale=0.3333334"> <meta name="google-site-verification" content="_bMOCDpkx9ZAzBwb2kF3PRHbfUUdFj2uO8Jd1AXArz4"/> <title>ImageMagick: MagickCore, C API for ImageMagick: Mime Methods</title> <meta http-equiv="content-language" content="en-US"/> <meta http-equiv="content-type" content="text/html; charset=utf-8"/> <meta http-equiv="reply-to" content="magick-users@imagemagick.org"/> <meta name="application-name" content="ImageMagick"/> <meta name="description" content="A collection of tools and libraries to read, write, and manipulate an image in any of the more popular image formats."/> <meta name="application-url" content="http://www.imagemagick.org"/> <meta name="generator" content="PHP"/> <meta name="keywords" content="magickcore, c, api, for, imagemagick:, mime, methods, convert, edit, compose, image, pixel"/> <meta name="rating" content="GENERAL"/> <meta name="robots" content="INDEX, FOLLOW"/> <meta name="generator" content="ImageMagick Studio LLC"/> <meta name="author" content="ImageMagick Studio LLC"/> <meta name="revisit-after" content="2 DAYS"/> <meta name="resource-type" content="document"/> <meta name="copyright" content="Copyright (c) 1999-2012 ImageMagick Studio LLC"/> <meta name="distribution" content="Global"/> <meta name="magick-serial" content="P131-S030410-R485315270133-P82224-A6668-G1245-1"/> <link rel="icon" href="../../images/wand.png"/> <link rel="shortcut icon" href="../../images/wand.ico" type="images/x-icon"/> <link rel="canonical" href="../../index.html" /> <link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf"/> <!-- Add jQuery library --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script> <!-- Add mousewheel plugin (this is optional) --> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/lib/jquery.mousewheel-3.0.6.pack.js"></script> <!-- Add fancyBox --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/jquery.fancybox.css?v=2.1.5" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script> <!-- Optionally add helpers - button, thumbnail and/or media --> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.css?v=1.0.5" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-media.js?v=1.0.6"></script> <link rel="stylesheet" href="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" type="text/css" media="screen" /> <script type="text/javascript" src="http://www.imagemagick.org/fancybox/source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script> <script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox(); }); </script> <!-- ImageMagick style --> <style type="text/css" media="all"> @import url("../../www/magick.css"); </style> </head> <body id="www-imagemagick-org"> <script type="text/javascript"> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'offline-script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-40133312-1', 'imagemagick.org'); ga('send', 'pageview'); </script> <div class="titlebar"> <div style="margin: 17px auto; float: left;"> <script type="text/javascript"> <!-- google_ad_client = "pub-3129977114552745"; google_ad_slot = "5439289906"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> <a href="../../discourse-server"> <img src="../../images/logo.jpg" alt="ImageMagick Logo" width="123" height="118" style="width: 123px; height: 118px; border: 0px; float: right;" /></a> <a href="../../index.html"> <img src="../../images/sprite.jpg" alt="ImageMagick Sprite" width="114" height="118" style="width: 114px; height: 118px; border: 0px; float: right;" /></a> </div> <div class="westbar"> <div class="menu"> <a title="About ImageMagick" href="../../index.html">About ImageMagick</a> </div> <div class="menu"> <a title="Binary Releases" href="../../www/binary-releases.html">Binary Releases</a> </div> <div class="sub"> <a title="Binary Release: Unix" href="../../www/binary-releases.html#unix">Unix</a> </div> <div class="sub"> <a title="Binary Release: MacOS X" href="../../www/binary-releases.html#macosx">Mac OS X</a> </div> <div class="sub"> <a title="Binary Release: iOS" href="../../www/binary-releases.html#iOS">iOS</a> </div> <div class="sub"> <a title="Binary Release: Windows" href="../../www/binary-releases.html#windows">Windows</a> </div> <div class="sep"></div> <div class="menu"> <a title="Command-line Tools" href="../../www/command-line-tools.html">Command-line Tools</a> </div> <div class="sub"> <a title="Command-line Tools: Processing" href="../../www/command-line-processing.html">Processing</a> </div> <div class="sub"> <a title="Command-line Tools: Options" href="../../www/command-line-options.html">Options</a> </div> <div class="sub"> <a title="Command-line Tools: Usage" href="http://www.imagemagick.org/Usage/">Usage</a> </div> <div class="menu"> <a title="Program Interfaces" href="../../www/api.html">Program Interfaces</a> </div> <div class="sub"> <a title="Program Interface: MagickWand" href="../../www/magick-wand.html">MagickWand</a> </div> <div class="sub"> <a title="Program Interface: MagickCore" href="../../www/magick-core.html">MagickCore</a> </div> <div class="sub"> <a title="Program Interface: PerlMagick" href="../../www/perl-magick.html">PerlMagick</a> </div> <div class="sub"> <a title="Program Interface: Magick++" href="../../www/magick++.html">Magick++</a> </div> <div class="sep"></div> <div class="menu"> <a title="Install from Source" href="../../www/install-source.html">Install from Source</a> </div> <div class="sub"> <a title="Install from Source: Unix" href="../../www/install-source.html#unix">Unix</a> </div> <div class="sub"> <a title="Install from Source: Windows" href="../../www/install-source.html#windows">Windows</a> </div> <div class="menu"> <a title="Resources" href="../../www/resources.html">Resources</a> </div> <div class="menu"> <a title="Architecture" href="../../www/architecture.html">Architecture</a> </div> <div class="menu"> <a title="Download" href="../../www/download.html">Download</a> </div> <div class="sep"></div> <div class="menu"> <a title="Search" href="http://www.imagemagick.org/script/search.php">Search</a> </div> <div class="sep"></div> <div class="menu"> <a title="Site Map" href="../../www/sitemap.html">Site Map</a> </div> <div class="sub"> <a title="Site Map: Links" href="../../www/links.html">Links</a> </div> <div class="sep"></div> <div class="menu"> <a title="Support ImageMagick Development" href="../../www/support.html">Support ImageMagick Development</a> </div> </div> <div class="eastbar"> <script type="text/javascript"> /* <![CDATA[ */ window.___gcfg = { lang: 'en-US' }; (function() { var po = document.createElement('offline-script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var script = document.getElementsByTagName('offline-script')[0]; script.parentNode.insertBefore(po, script); })(); var gplusone = document.getElementById("gplusone"); gplusone.setAttribute("data-size","medium"); gplusone.setAttribute("data-count","true"); /* ]]> */ </script> <script type="text/javascript"> /* <![CDATA[ */ (function() { var po = document.createElement('offline-script'), t = document.getElementsByTagName('offline-script')[0]; po.type = 'text/javascript'; po.async = true; po.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto'; var script = document.getElementsByTagName('offline-script')[0]; script.parentNode.insertBefore(po, script); })(); /* ]]> */ </script> <div> <a class="FlattrButton" style="display:none;" rev="flattr;button:compact;" href="../../index.html"></a></div> <noscript> <a href="http://flattr.com/thing/947300/Convert-Edit-And-Compose-Images" target="_blank"> <img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" width="93" height="20" border="0" /></a> </noscript> <div class="g-plusone" data-size="standard" data-count="true"></div> </div> <div class="main"> <h1>Module mime Methods</h1> <p class="navigation-index">[<a href="mime.html#AcquireMimeCache">AcquireMimeCache</a> &#8226; <a href="mime.html#GetMimeInfoList">GetMimeInfoList</a> &#8226; <a href="mime.html#GetMimeList">GetMimeList</a> &#8226; <a href="mime.html#GetMimeDescription">GetMimeDescription</a> &#8226; <a href="mime.html#GetMimeType">GetMimeType</a> &#8226; <a href="mime.html#ListMimeInfo">ListMimeInfo</a>]</p> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="AcquireMimeCache">AcquireMimeCache</a></h2> <div class="doc-section"> <p>AcquireMimeCache() caches one or more magic configurations which provides a mapping between magic attributes and a magic name.</p> <p>The format of the AcquireMimeCache method is:</p> <pre class="code"> LinkedListInfo *AcquireMimeCache(const char *filename, ExceptionInfo *exception) </pre> <p>A description of each parameter follows:</p> <h5>filename</h5> <p>the font file name.</p> <h5>exception</h5> <p>return any errors or warnings in this structure.</p> </div> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="GetMimeInfoList">GetMimeInfoList</a></h2> <div class="doc-section"> <p>GetMimeInfoList() returns any image aliases that match the specified pattern.</p> <p>The magic of the GetMimeInfoList function is:</p> <pre class="text"> const MimeInfo **GetMimeInfoList(const char *pattern, size_t *number_aliases,ExceptionInfo *exception) </pre> <p>A description of each parameter follows:</p> <h5>pattern</h5> <p>Specifies a pointer to a text string containing a pattern.</p> <h5>number_aliases</h5> <p>This integer returns the number of magics in the list.</p> <h5>exception</h5> <p>return any errors or warnings in this structure.</p> </div> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="GetMimeList">GetMimeList</a></h2> <div class="doc-section"> <p>GetMimeList() returns any image format alias that matches the specified pattern.</p> <p>The format of the GetMimeList function is:</p> <pre class="text"> char **GetMimeList(const char *pattern,size_t *number_aliases, ExceptionInfo *exception) </pre> <p>A description of each parameter follows:</p> <h5>pattern</h5> <p>Specifies a pointer to a text string containing a pattern.</p> <h5>number_aliases</h5> <p>This integer returns the number of image format aliases in the list.</p> <h5>exception</h5> <p>return any errors or warnings in this structure.</p> </div> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="GetMimeDescription">GetMimeDescription</a></h2> <div class="doc-section"> <p>GetMimeDescription() returns the mime type description.</p> <p>The format of the GetMimeDescription method is:</p> <pre class="code"> const char *GetMimeDescription(const MimeInfo *mime_info) </pre> <p>A description of each parameter follows:</p> <h5>mime_info</h5> <p>The magic info.</p> </div> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="GetMimeType">GetMimeType</a></h2> <div class="doc-section"> <p>GetMimeType() returns the mime type.</p> <p>The format of the GetMimeType method is:</p> <pre class="code"> const char *GetMimeType(const MimeInfo *mime_info) </pre> <p>A description of each parameter follows:</p> <h5>mime_info</h5> <p>The magic info.</p> </div> <h2><a href="http://www.imagemagick.org/api/MagickCore/mime_8c.html" id="ListMimeInfo">ListMimeInfo</a></h2> <div class="doc-section"> <p>ListMimeInfo() lists the magic info to a file.</p> <p>The format of the ListMimeInfo method is:</p> <pre class="code"> MagickBooleanType ListMimeInfo(FILE *file,ExceptionInfo *exception) </pre> <p>A description of each parameter follows.</p> <h5>file</h5> <p>An pointer to a FILE.</p> <h5>exception</h5> <p>return any errors or warnings in this structure.</p> </div> </div> <div id="linkbar"> <span id="linkbar-west"> </span> <span id="linkbar-center"> <a href="../../discourse-server">Discourse Server</a> • <a href="http://pgp.mit.edu:11371/pks/lookup?op=get&amp;search=0x89AB63D48277377A">Public Key</a> • <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> • <a href="http://jqmagick.imagemagick.org/">JqMagick</a> </span> <span id="linkbar-east"> </span> </div> <div class="footer"> <span id="footer-west">© 1999-2014 ImageMagick Studio LLC</span> <span id="footer-east"> <a href="../../www/contact.html">Contact the Wizards</a></span> </div> <div style="clear: both; margin: 0; width: 100%; "></div> </body> </html>
trice-imaging/imagemagick
www/api/mime.html
HTML
apache-2.0
14,258
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <title>MetricsHBaseServerWrapperImpl xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../apidocs/org/apache/hadoop/hbase/ipc/MetricsHBaseServerWrapperImpl.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_javadoccomment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_javadoccomment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_javadoccomment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_javadoccomment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_javadoccomment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_javadoccomment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_javadoccomment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_javadoccomment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_javadoccomment"> *</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_javadoccomment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_javadoccomment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_javadoccomment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_javadoccomment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_javadoccomment"> * limitations under the License.</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="19" href="#19">19</a> <a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.ipc; <a class="jxr_linenumber" name="21" href="#21">21</a> <a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/ipc/MetricsHBaseServerWrapperImpl.html">MetricsHBaseServerWrapperImpl</a> <strong class="jxr_keyword">implements</strong> <a href="../../../../../org/apache/hadoop/hbase/ipc/MetricsHBaseServerWrapper.html">MetricsHBaseServerWrapper</a> { <a class="jxr_linenumber" name="23" href="#23">23</a> <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">private</strong> <a href="../../../../../org/apache/hadoop/hbase/ipc/RpcServer.html">RpcServer</a> server; <a class="jxr_linenumber" name="25" href="#25">25</a> <a class="jxr_linenumber" name="26" href="#26">26</a> <a href="../../../../../org/apache/hadoop/hbase/ipc/MetricsHBaseServerWrapperImpl.html">MetricsHBaseServerWrapperImpl</a>(<a href="../../../../../org/apache/hadoop/hbase/ipc/RpcServer.html">RpcServer</a> server) { <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">this</strong>.server = server; <a class="jxr_linenumber" name="28" href="#28">28</a> } <a class="jxr_linenumber" name="29" href="#29">29</a> <a class="jxr_linenumber" name="30" href="#30">30</a> <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">boolean</strong> isServerStarted() { <a class="jxr_linenumber" name="31" href="#31">31</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">this</strong>.server != <strong class="jxr_keyword">null</strong> &amp;&amp; <strong class="jxr_keyword">this</strong>.server.isStarted(); <a class="jxr_linenumber" name="32" href="#32">32</a> } <a class="jxr_linenumber" name="33" href="#33">33</a> <a class="jxr_linenumber" name="34" href="#34">34</a> @Override <a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">long</strong> getTotalQueueSize() { <a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">if</strong> (!isServerStarted()) { <a class="jxr_linenumber" name="37" href="#37">37</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="38" href="#38">38</a> } <a class="jxr_linenumber" name="39" href="#39">39</a> <strong class="jxr_keyword">return</strong> server.callQueueSize.get(); <a class="jxr_linenumber" name="40" href="#40">40</a> } <a class="jxr_linenumber" name="41" href="#41">41</a> <a class="jxr_linenumber" name="42" href="#42">42</a> @Override <a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getGeneralQueueLength() { <a class="jxr_linenumber" name="44" href="#44">44</a> <strong class="jxr_keyword">if</strong> (!isServerStarted() || <strong class="jxr_keyword">this</strong>.server.getScheduler() == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="45" href="#45">45</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="46" href="#46">46</a> } <a class="jxr_linenumber" name="47" href="#47">47</a> <strong class="jxr_keyword">return</strong> server.getScheduler().getGeneralQueueLength(); <a class="jxr_linenumber" name="48" href="#48">48</a> } <a class="jxr_linenumber" name="49" href="#49">49</a> <a class="jxr_linenumber" name="50" href="#50">50</a> @Override <a class="jxr_linenumber" name="51" href="#51">51</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getReplicationQueueLength() { <a class="jxr_linenumber" name="52" href="#52">52</a> <strong class="jxr_keyword">if</strong> (!isServerStarted() || <strong class="jxr_keyword">this</strong>.server.getScheduler() == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="53" href="#53">53</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="54" href="#54">54</a> } <a class="jxr_linenumber" name="55" href="#55">55</a> <strong class="jxr_keyword">return</strong> server.getScheduler().getReplicationQueueLength(); <a class="jxr_linenumber" name="56" href="#56">56</a> } <a class="jxr_linenumber" name="57" href="#57">57</a> <a class="jxr_linenumber" name="58" href="#58">58</a> @Override <a class="jxr_linenumber" name="59" href="#59">59</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getPriorityQueueLength() { <a class="jxr_linenumber" name="60" href="#60">60</a> <strong class="jxr_keyword">if</strong> (!isServerStarted() || <strong class="jxr_keyword">this</strong>.server.getScheduler() == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="61" href="#61">61</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="62" href="#62">62</a> } <a class="jxr_linenumber" name="63" href="#63">63</a> <strong class="jxr_keyword">return</strong> server.getScheduler().getPriorityQueueLength(); <a class="jxr_linenumber" name="64" href="#64">64</a> } <a class="jxr_linenumber" name="65" href="#65">65</a> <a class="jxr_linenumber" name="66" href="#66">66</a> @Override <a class="jxr_linenumber" name="67" href="#67">67</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getNumOpenConnections() { <a class="jxr_linenumber" name="68" href="#68">68</a> <strong class="jxr_keyword">if</strong> (!isServerStarted() || <strong class="jxr_keyword">this</strong>.server.connectionList == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="69" href="#69">69</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="70" href="#70">70</a> } <a class="jxr_linenumber" name="71" href="#71">71</a> <strong class="jxr_keyword">return</strong> server.connectionList.size(); <a class="jxr_linenumber" name="72" href="#72">72</a> } <a class="jxr_linenumber" name="73" href="#73">73</a> <a class="jxr_linenumber" name="74" href="#74">74</a> @Override <a class="jxr_linenumber" name="75" href="#75">75</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">int</strong> getActiveRpcHandlerCount() { <a class="jxr_linenumber" name="76" href="#76">76</a> <strong class="jxr_keyword">if</strong> (!isServerStarted() || <strong class="jxr_keyword">this</strong>.server.getScheduler() == <strong class="jxr_keyword">null</strong>) { <a class="jxr_linenumber" name="77" href="#77">77</a> <strong class="jxr_keyword">return</strong> 0; <a class="jxr_linenumber" name="78" href="#78">78</a> } <a class="jxr_linenumber" name="79" href="#79">79</a> <strong class="jxr_keyword">return</strong> server.getScheduler().getActiveRpcHandlerCount(); <a class="jxr_linenumber" name="80" href="#80">80</a> } <a class="jxr_linenumber" name="81" href="#81">81</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
scalingdata/Impala
thirdparty/hbase-1.1.1.2.3.0.0-2557/docs/xref/org/apache/hadoop/hbase/ipc/MetricsHBaseServerWrapperImpl.html
HTML
apache-2.0
10,519
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:33 EDT 2015 --> <title>Uses of Class org.apache.cassandra.tools.nodetool.SetStreamThroughput (apache-cassandra API)</title> <meta name="date" content="2015-08-28"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.cassandra.tools.nodetool.SetStreamThroughput (apache-cassandra API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/tools/nodetool/SetStreamThroughput.html" title="class in org.apache.cassandra.tools.nodetool">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/tools/nodetool/class-use/SetStreamThroughput.html" target="_top">Frames</a></li> <li><a href="SetStreamThroughput.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"> <h2 title="Uses of Class org.apache.cassandra.tools.nodetool.SetStreamThroughput" class="title">Uses of Class<br>org.apache.cassandra.tools.nodetool.SetStreamThroughput</h2> </div> <div class="classUseContainer">No usage of org.apache.cassandra.tools.nodetool.SetStreamThroughput</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/cassandra/tools/nodetool/SetStreamThroughput.html" title="class in org.apache.cassandra.tools.nodetool">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/cassandra/tools/nodetool/class-use/SetStreamThroughput.html" target="_top">Frames</a></li> <li><a href="SetStreamThroughput.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 ======= --> <p class="legalCopy"><small>Copyright &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
mitch-kyle/message-board
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/tools/nodetool/class-use/SetStreamThroughput.html
HTML
apache-2.0
4,784
<!-- #Copyright 2012 #Ubiquitous Knowledge Processing (UKP) Lab and FG Language Technology #Technische Universität Darmstadt # #Licensed under the Apache License, Version 2.0 (the "License"); #you may not use this file except in compliance with the License. #You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # #Unless required by applicable law or agreed to in writing, software #distributed under the License is distributed on an "AS IS" BASIS, #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #See the License for the specific language governing permissions and #limitations under the License. --> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd"> <wicket:panel> <fieldset class="ui-widget-content ui-corner-all labels-left"> <table> <tr> <td style="vertical-align: top" width="50%"> <form wicket:id="otherLayerDetailForm"> <fieldset class="ui-widget-content ui-corner-all"> <legend>Use other layers as training feature </legend> <table> <tr> <td>Select layer :</td> <td><select class="hfill" wicket:id="features"></select></td> </tr> <tr> <td>Selected layers :</td> <td><select class="hfill" wicket:id="selectedFeatures"></select></td> </tr> </table> </fieldset> </form> </td> <td style="vertical-align: top" width="50%"><span wicket:id="otherLayerTarinDocumentsPanel"></span></td> </tr> </table> </fieldset> </wicket:panel> </html>
52nlp/webanno
webanno-automation/src/main/java/de/tudarmstadt/ukp/clarin/webanno/automation/project/ProjectMiraTemplatePanel$OtherLayerPanel.html
HTML
apache-2.0
1,624
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>generic::raw_protocol::family</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../generic__raw_protocol.html" title="generic::raw_protocol"> <link rel="prev" href="endpoint.html" title="generic::raw_protocol::endpoint"> <link rel="next" href="operator_not__eq_.html" title="generic::raw_protocol::operator!="> </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="endpoint.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../generic__raw_protocol.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator_not__eq_.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.generic__raw_protocol.family"></a><a class="link" href="family.html" title="generic::raw_protocol::family">generic::raw_protocol::family</a> </h4></div></div></div> <p> <a class="indexterm" name="idp59356352"></a> Obtain an identifier for the protocol family. </p> <pre class="programlisting"><span class="keyword">int</span> <span class="identifier">family</span><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2013 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="endpoint.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../generic__raw_protocol.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator_not__eq_.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
ryancoleman/autodock-vina
boost_1_54_0/doc/html/boost_asio/reference/generic__raw_protocol/family.html
HTML
apache-2.0
3,302
{% extends "app/base_site.html" %} {% block title %} Form Advanced {% endblock title %} {% block stylesheets %} {{ block.super }} <!-- FullCalendar --> <link href="/static/vendors/fullcalendar/dist/fullcalendar.min.css" rel="stylesheet"> <link href="/static/vendors/fullcalendar/dist/fullcalendar.print.css" rel="stylesheet" media="print"> {% endblock stylesheets %} {% block content %} <div class="right_col" role="main"> <div class=""> <div class="page-title"> <div class="title_left"> <h3>Calendar <small>Click to add/edit events</small></h3> </div> <div class="title_right"> <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search for..."> <span class="input-group-btn"> <button class="btn btn-default" type="button">Go!</button> </span> </div> </div> </div> </div> <div class="clearfix"></div> <div class="row"> <div class="col-md-12"> <div class="x_panel"> <div class="x_title"> <h2>Calendar Events <small>Sessions</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <div id='calendar'></div> </div> </div> </div> </div> </div> <!-- calendar modal --> <div id="CalenderModalNew" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel">New Calendar Entry</h4> </div> <div class="modal-body"> <div id="testmodal" style="padding: 5px 20px;"> <form id="antoform" class="form-horizontal calender" role="form"> <div class="form-group"> <label class="col-sm-3 control-label">Title</label> <div class="col-sm-9"> <input type="text" class="form-control" id="title" name="title"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">Description</label> <div class="col-sm-9"> <textarea class="form-control" style="height:55px;" id="descr" name="descr"></textarea> </div> </div> </form> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default antoclose" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary antosubmit">Save changes</button> </div> </div> </div> </div> <div id="CalenderModalEdit" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title" id="myModalLabel2">Edit Calendar Entry</h4> </div> <div class="modal-body"> <div id="testmodal2" style="padding: 5px 20px;"> <form id="antoform2" class="form-horizontal calender" role="form"> <div class="form-group"> <label class="col-sm-3 control-label">Title</label> <div class="col-sm-9"> <input type="text" class="form-control" id="title2" name="title2"> </div> </div> <div class="form-group"> <label class="col-sm-3 control-label">Description</label> <div class="col-sm-9"> <textarea class="form-control" style="height:55px;" id="descr2" name="descr"></textarea> </div> </div> </form> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default antoclose2" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary antosubmit2">Save changes</button> </div> </div> </div> </div> <div id="fc_create" data-toggle="modal" data-target="#CalenderModalNew"></div> <div id="fc_edit" data-toggle="modal" data-target="#CalenderModalEdit"></div> <!-- /calendar modal --> </div> {% endblock content %} {% block javascripts %} {{ block.super }} <!-- FullCalendar --> <script src="/static/vendors/moment/min/moment.min.js"></script> <script src="/static/vendors/fullcalendar/dist/fullcalendar.min.js"></script> {% endblock javascripts %}
jonatanSh/challenge-framework
challenge_framework/gentelella/templates/gentelella/calendar.html
HTML
apache-2.0
5,818
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Package org.apache.poi.ss.formula.eval.forked (POI API Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.apache.poi.ss.formula.eval.forked (POI API Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/poi/ss/formula/eval/forked/package-use.html" target="_top">FRAMES</a></li> <li><a href="package-use.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package org.apache.poi.ss.formula.eval.forked" class="title">Uses of Package<br>org.apache.poi.ss.formula.eval.forked</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../org/apache/poi/ss/formula/eval/forked/package-summary.html">org.apache.poi.ss.formula.eval.forked</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.poi.ss.formula.eval.forked">org.apache.poi.ss.formula.eval.forked</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.poi.ss.formula.eval.forked"> <!-- --> </a> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../../../../../org/apache/poi/ss/formula/eval/forked/package-summary.html">org.apache.poi.ss.formula.eval.forked</a> used by <a href="../../../../../../../org/apache/poi/ss/formula/eval/forked/package-summary.html">org.apache.poi.ss.formula.eval.forked</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../../../../../org/apache/poi/ss/formula/eval/forked/class-use/ForkedEvaluator.html#org.apache.poi.ss.formula.eval.forked">ForkedEvaluator</a> <div class="block">An alternative workbook evaluator that saves memory in situations where a single workbook is concurrently and independently evaluated many times.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/poi/ss/formula/eval/forked/package-use.html" target="_top">FRAMES</a></li> <li><a href="package-use.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 2014 The Apache Software Foundation or its licensors, as applicable.</i> </small></p> </body> </html>
RyoSaeba69/Bio-info
mylib/poi-3.11/docs/apidocs/org/apache/poi/ss/formula/eval/forked/package-use.html
HTML
apache-2.0
5,742
<!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>CMAKE_SHARED_MODULE_SUFFIX &mdash; CMake 3.7.1 Documentation</title> <link rel="stylesheet" href="../_static/cmake.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../', VERSION: '3.7.1', 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="shortcut icon" href="../_static/cmake-favicon.ico"/> <link rel="top" title="CMake 3.7.1 Documentation" href="../index.html" /> <link rel="up" title="cmake-variables(7)" href="../manual/cmake-variables.7.html" /> <link rel="next" title="CMAKE_SIZEOF_VOID_P" href="CMAKE_SIZEOF_VOID_P.html" /> <link rel="prev" title="CMAKE_SHARED_MODULE_PREFIX" href="CMAKE_SHARED_MODULE_PREFIX.html" /> </head> <body role="document"> <div class="related" role="navigation" aria-label="related navigation"> <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="CMAKE_SIZEOF_VOID_P.html" title="CMAKE_SIZEOF_VOID_P" accesskey="N">next</a> |</li> <li class="right" > <a href="CMAKE_SHARED_MODULE_PREFIX.html" title="CMAKE_SHARED_MODULE_PREFIX" accesskey="P">previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="https://cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.7.1 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" accesskey="U">cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="document"> <div class="documentwrapper"> <div class="bodywrapper"> <div class="body" role="main"> <div class="section" id="cmake-shared-module-suffix"> <span id="variable:CMAKE_SHARED_MODULE_SUFFIX"></span><h1>CMAKE_SHARED_MODULE_SUFFIX<a class="headerlink" href="#cmake-shared-module-suffix" title="Permalink to this headline">¶</a></h1> <p>The suffix for shared libraries that you link to.</p> <p>The suffix to use for the end of a loadable module filename on this platform</p> <p><code class="docutils literal"><span class="pre">CMAKE_SHARED_MODULE_SUFFIX_&lt;LANG&gt;</span></code> overrides this for language <code class="docutils literal"><span class="pre">&lt;LANG&gt;</span></code>.</p> </div> </div> </div> </div> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <h4>Previous topic</h4> <p class="topless"><a href="CMAKE_SHARED_MODULE_PREFIX.html" title="previous chapter">CMAKE_SHARED_MODULE_PREFIX</a></p> <h4>Next topic</h4> <p class="topless"><a href="CMAKE_SIZEOF_VOID_P.html" title="next chapter">CMAKE_SIZEOF_VOID_P</a></p> <div role="note" aria-label="source link"> <h3>This Page</h3> <ul class="this-page-menu"> <li><a href="../_sources/variable/CMAKE_SHARED_MODULE_SUFFIX.txt" rel="nofollow">Show Source</a></li> </ul> </div> <div id="searchbox" style="display: none" role="search"> <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" role="navigation" aria-label="related navigation"> <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="CMAKE_SIZEOF_VOID_P.html" title="CMAKE_SIZEOF_VOID_P" >next</a> |</li> <li class="right" > <a href="CMAKE_SHARED_MODULE_PREFIX.html" title="CMAKE_SHARED_MODULE_PREFIX" >previous</a> |</li> <li> <img src="../_static/cmake-logo-16.png" alt="" style="vertical-align: middle; margin-top: -2px" /> </li> <li> <a href="https://cmake.org/">CMake</a> &raquo; </li> <li> <a href="../index.html">3.7.1 Documentation</a> &raquo; </li> <li class="nav-item nav-item-1"><a href="../manual/cmake-variables.7.html" >cmake-variables(7)</a> &raquo;</li> </ul> </div> <div class="footer" role="contentinfo"> &copy; Copyright 2000-2016 Kitware, Inc. and Contributors. Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.4a0+. </div> </body> </html>
jomof/cmake-server-java-bindings
prebuilts/cmake-3.7.1-Windows-x86_64/doc/cmake/html/variable/CMAKE_SHARED_MODULE_SUFFIX.html
HTML
apache-2.0
5,691
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <title>Uses of Class org.deidentifier.arx.framework.data.Data (ARX Developer Documentation)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.deidentifier.arx.framework.data.Data (ARX Developer Documentation)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/deidentifier/arx/framework/data/class-use/Data.html" target="_top">Frames</a></li> <li><a href="Data.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.deidentifier.arx.framework.data.Data" class="title">Uses of Class<br>org.deidentifier.arx.framework.data.Data</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.deidentifier.arx">org.deidentifier.arx</a></td> <td class="colLast"> <div class="block">This package provides the public API for the ARX anonymization framework.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.deidentifier.arx.framework.check">org.deidentifier.arx.framework.check</a></td> <td class="colLast"> <div class="block">This package implements the core functionality of the ARX framework, i.e., a highly efficient check for k-anonymity</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.deidentifier.arx.framework.data">org.deidentifier.arx.framework.data</a></td> <td class="colLast"> <div class="block">This package implements data management, i.e., encoding and representing input data, output data and generalization hierarchies</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.deidentifier.arx.metric">org.deidentifier.arx.metric</a></td> <td class="colLast"> <div class="block">This package implements several metrics for information loss.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="#org.deidentifier.arx.metric.v2">org.deidentifier.arx.metric.v2</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.deidentifier.arx"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a> in <a href="../../../../../../org/deidentifier/arx/package-summary.html">org.deidentifier.arx</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../org/deidentifier/arx/package-summary.html">org.deidentifier.arx</a> declared as <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataHandleOutput.</span><code><strong><a href="../../../../../../org/deidentifier/arx/DataHandleOutput.html#dataIS">dataIS</a></strong></code> <div class="block">The data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataHandleOutput.</span><code><strong><a href="../../../../../../org/deidentifier/arx/DataHandleOutput.html#dataQI">dataQI</a></strong></code> <div class="block">The data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataHandleOutput.</span><code><strong><a href="../../../../../../org/deidentifier/arx/DataHandleOutput.html#dataSE">dataSE</a></strong></code> <div class="block">The data.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/deidentifier/arx/package-summary.html">org.deidentifier.arx</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/deidentifier/arx/DataHandleOutput.html#DataHandleOutput(org.deidentifier.arx.ARXResult,%20org.deidentifier.arx.DataRegistry,%20org.deidentifier.arx.framework.data.DataManager,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.ARXLattice.ARXNode,%20org.deidentifier.arx.aggregates.StatisticsEquivalenceClasses,%20org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.ARXConfiguration)">DataHandleOutput</a></strong>(<a href="../../../../../../org/deidentifier/arx/ARXResult.html" title="class in org.deidentifier.arx">ARXResult</a>&nbsp;result, org.deidentifier.arx.DataRegistry&nbsp;registry, <a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html" title="class in org.deidentifier.arx.framework.data">DataManager</a>&nbsp;manager, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;buffer, <a href="../../../../../../org/deidentifier/arx/ARXLattice.ARXNode.html" title="class in org.deidentifier.arx">ARXLattice.ARXNode</a>&nbsp;node, <a href="../../../../../../org/deidentifier/arx/aggregates/StatisticsEquivalenceClasses.html" title="class in org.deidentifier.arx.aggregates">StatisticsEquivalenceClasses</a>&nbsp;statistics, <a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code> <div class="block">Instantiates a new handle.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.deidentifier.arx.framework.check"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a> in <a href="../../../../../../org/deidentifier/arx/framework/check/package-summary.html">org.deidentifier.arx.framework.check</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../org/deidentifier/arx/framework/check/package-summary.html">org.deidentifier.arx.framework.check</a> declared as <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">TransformedData.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/TransformedData.html#buffer">buffer</a></strong></code> <div class="block">TODO</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/deidentifier/arx/framework/check/package-summary.html">org.deidentifier.arx.framework.check</a> that return <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">INodeChecker.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/INodeChecker.html#getBuffer()">getBuffer</a></strong>()</code> <div class="block">Returns the buffer as a Data object.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">NodeChecker.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/NodeChecker.html#getBuffer()">getBuffer</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">INodeChecker.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/INodeChecker.html#getData()">getData</a></strong>()</code> <div class="block">Returns the data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">NodeChecker.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/NodeChecker.html#getData()">getData</a></strong>()</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/deidentifier/arx/framework/check/package-summary.html">org.deidentifier.arx.framework.check</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/deidentifier/arx/framework/check/TransformedData.html#TransformedData(org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.check.groupify.HashGroupify.GroupStatistics)">TransformedData</a></strong>(<a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;data, <a href="../../../../../../org/deidentifier/arx/framework/check/groupify/HashGroupify.GroupStatistics.html" title="class in org.deidentifier.arx.framework.check.groupify">HashGroupify.GroupStatistics</a>&nbsp;statistics)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.deidentifier.arx.framework.data"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a> in <a href="../../../../../../org/deidentifier/arx/framework/data/package-summary.html">org.deidentifier.arx.framework.data</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../org/deidentifier/arx/framework/data/package-summary.html">org.deidentifier.arx.framework.data</a> declared as <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#dataIS">dataIS</a></strong></code> <div class="block">The data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#dataQI">dataQI</a></strong></code> <div class="block">The data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#dataSE">dataSE</a></strong></code> <div class="block">The data.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/deidentifier/arx/framework/data/package-summary.html">org.deidentifier.arx.framework.data</a> that return <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">Data.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html#clone()">clone</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#getDataIS()">getDataIS</a></strong>()</code> <div class="block">Returns the data.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#getDataQI()">getDataQI</a></strong>()</code> <div class="block">Returns the data.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></code></td> <td class="colLast"><span class="strong">DataManager.</span><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#getDataSE()">getDataSE</a></strong>()</code> <div class="block">Returns the data.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/deidentifier/arx/framework/data/package-summary.html">org.deidentifier.arx.framework.data</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/deidentifier/arx/framework/data/DataManager.html#DataManager(org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20java.util.Map,%20java.util.Map,%20int[],%20int[],%20int[],%20java.lang.String[])">DataManager</a></strong>(<a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;dataQI, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;dataSE, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;dataIS, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchiesQI, java.util.Map&lt;java.lang.String,<a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>&gt;&nbsp;hierarchiesSE, java.util.Map&lt;java.lang.String,java.lang.Integer&gt;&nbsp;indexesSE, int[]&nbsp;hierarchyHeights, int[]&nbsp;maxLevels, int[]&nbsp;minLevels, java.lang.String[]&nbsp;header)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.deidentifier.arx.metric"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a> in <a href="../../../../../../org/deidentifier/arx/metric/package-summary.html">org.deidentifier.arx.metric</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/deidentifier/arx/metric/package-summary.html">org.deidentifier.arx.metric</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><span class="strong">Metric.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/Metric.html#initialize(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initialize</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code> <div class="block">Initializes the metric.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricHeight.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricHeight.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricStatic.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricStatic.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricPrecision.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricPrecision.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricDM.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricDM.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricNMPrecision.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricNMPrecision.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricEntropy.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricEntropy.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;ahierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricWeighted.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricWeighted.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricDMStar.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricDMStar.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected abstract void</code></td> <td class="colLast"><span class="strong">Metric.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/Metric.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code> <div class="block">Implement this to initialize the metric.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricAECS.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricAECS.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricNMEntropy.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricNMEntropy.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;ahierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricDefault.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/MetricDefault.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.deidentifier.arx.metric.v2"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a> in <a href="../../../../../../org/deidentifier/arx/metric/v2/package-summary.html">org.deidentifier.arx.metric.v2</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/deidentifier/arx/metric/v2/package-summary.html">org.deidentifier.arx.metric.v2</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDNMLoss.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDNMLoss.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDNMLossPrecomputed.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDNMLossPrecomputed.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">AbstractMetricMultiDimensionalPotentiallyPrecomputed.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensionalPotentiallyPrecomputed.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;ahierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">AbstractMetricMultiDimensional.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/AbstractMetricMultiDimensional.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDNMPrecision.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDNMPrecision.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">AbstractMetricSingleDimensional.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/AbstractMetricSingleDimensional.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDNUEntropyPrecomputed.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDNUEntropyPrecomputed.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDStatic.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDStatic.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDHeight.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDHeight.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>protected void</code></td> <td class="colLast"><span class="strong">MetricMDNUNMEntropyPrecomputed.</span><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/MetricMDNUNMEntropyPrecomputed.html#initializeInternal(org.deidentifier.arx.DataDefinition,%20org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[],%20org.deidentifier.arx.ARXConfiguration)">initializeInternal</a></strong>(<a href="../../../../../../org/deidentifier/arx/DataDefinition.html" title="class in org.deidentifier.arx">DataDefinition</a>&nbsp;definition, <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;input, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies, <a href="../../../../../../org/deidentifier/arx/ARXConfiguration.html" title="class in org.deidentifier.arx">ARXConfiguration</a>&nbsp;config)</code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/deidentifier/arx/metric/v2/package-summary.html">org.deidentifier.arx.metric.v2</a> with parameters of type <a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/deidentifier/arx/metric/v2/Cardinalities.html#Cardinalities(org.deidentifier.arx.framework.data.Data,%20org.deidentifier.arx.RowSet,%20org.deidentifier.arx.framework.data.GeneralizationHierarchy[])">Cardinalities</a></strong>(<a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Data</a>&nbsp;data, <a href="../../../../../../org/deidentifier/arx/RowSet.html" title="class in org.deidentifier.arx">RowSet</a>&nbsp;subset, <a href="../../../../../../org/deidentifier/arx/framework/data/GeneralizationHierarchy.html" title="class in org.deidentifier.arx.framework.data">GeneralizationHierarchy</a>[]&nbsp;hierarchies)</code> <div class="block">Creates a new instance for the given data set.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/deidentifier/arx/framework/data/Data.html" title="class in org.deidentifier.arx.framework.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/deidentifier/arx/framework/data/class-use/Data.html" target="_top">Frames</a></li> <li><a href="Data.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
COWYARD/arx
doc/dev/org/deidentifier/arx/framework/data/class-use/Data.html
HTML
apache-2.0
53,133
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head> <title>Source code</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <div class="sourceContainer"> <pre><span class="sourceLineNo">001</span>/**<a name="line.1"></a> <span class="sourceLineNo">002</span> * Licensed to the Apache Software Foundation (ASF) under one<a name="line.2"></a> <span class="sourceLineNo">003</span> * or more contributor license agreements. See the NOTICE file<a name="line.3"></a> <span class="sourceLineNo">004</span> * distributed with this work for additional information<a name="line.4"></a> <span class="sourceLineNo">005</span> * regarding copyright ownership. The ASF licenses this file<a name="line.5"></a> <span class="sourceLineNo">006</span> * to you under the Apache License, Version 2.0 (the<a name="line.6"></a> <span class="sourceLineNo">007</span> * "License"); you may not use this file except in compliance<a name="line.7"></a> <span class="sourceLineNo">008</span> * with the License. You may obtain a copy of the License at<a name="line.8"></a> <span class="sourceLineNo">009</span> *<a name="line.9"></a> <span class="sourceLineNo">010</span> * http://www.apache.org/licenses/LICENSE-2.0<a name="line.10"></a> <span class="sourceLineNo">011</span> *<a name="line.11"></a> <span class="sourceLineNo">012</span> * Unless required by applicable law or agreed to in writing, software<a name="line.12"></a> <span class="sourceLineNo">013</span> * distributed under the License is distributed on an "AS IS" BASIS,<a name="line.13"></a> <span class="sourceLineNo">014</span> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.<a name="line.14"></a> <span class="sourceLineNo">015</span> * See the License for the specific language governing permissions and<a name="line.15"></a> <span class="sourceLineNo">016</span> * limitations under the License.<a name="line.16"></a> <span class="sourceLineNo">017</span> */<a name="line.17"></a> <span class="sourceLineNo">018</span><a name="line.18"></a> <span class="sourceLineNo">019</span>package org.apache.hadoop.record.meta;<a name="line.19"></a> <span class="sourceLineNo">020</span><a name="line.20"></a> <span class="sourceLineNo">021</span>import java.io.IOException;<a name="line.21"></a> <span class="sourceLineNo">022</span><a name="line.22"></a> <span class="sourceLineNo">023</span>import org.apache.hadoop.classification.InterfaceAudience;<a name="line.23"></a> <span class="sourceLineNo">024</span>import org.apache.hadoop.classification.InterfaceStability;<a name="line.24"></a> <span class="sourceLineNo">025</span>import org.apache.hadoop.record.RecordOutput;<a name="line.25"></a> <span class="sourceLineNo">026</span><a name="line.26"></a> <span class="sourceLineNo">027</span>/** <a name="line.27"></a> <span class="sourceLineNo">028</span> * Represents typeID for basic types.<a name="line.28"></a> <span class="sourceLineNo">029</span> * <a name="line.29"></a> <span class="sourceLineNo">030</span> * @deprecated Replaced by &lt;a href="http://hadoop.apache.org/avro/"&gt;Avro&lt;/a&gt;.<a name="line.30"></a> <span class="sourceLineNo">031</span> */<a name="line.31"></a> <span class="sourceLineNo">032</span>@Deprecated<a name="line.32"></a> <span class="sourceLineNo">033</span>@InterfaceAudience.Public<a name="line.33"></a> <span class="sourceLineNo">034</span>@InterfaceStability.Stable<a name="line.34"></a> <span class="sourceLineNo">035</span>public class TypeID {<a name="line.35"></a> <span class="sourceLineNo">036</span><a name="line.36"></a> <span class="sourceLineNo">037</span> /**<a name="line.37"></a> <span class="sourceLineNo">038</span> * constants representing the IDL types we support<a name="line.38"></a> <span class="sourceLineNo">039</span> */<a name="line.39"></a> <span class="sourceLineNo">040</span> public static final class RIOType {<a name="line.40"></a> <span class="sourceLineNo">041</span> public static final byte BOOL = 1;<a name="line.41"></a> <span class="sourceLineNo">042</span> public static final byte BUFFER = 2;<a name="line.42"></a> <span class="sourceLineNo">043</span> public static final byte BYTE = 3;<a name="line.43"></a> <span class="sourceLineNo">044</span> public static final byte DOUBLE = 4;<a name="line.44"></a> <span class="sourceLineNo">045</span> public static final byte FLOAT = 5;<a name="line.45"></a> <span class="sourceLineNo">046</span> public static final byte INT = 6;<a name="line.46"></a> <span class="sourceLineNo">047</span> public static final byte LONG = 7;<a name="line.47"></a> <span class="sourceLineNo">048</span> public static final byte MAP = 8;<a name="line.48"></a> <span class="sourceLineNo">049</span> public static final byte STRING = 9;<a name="line.49"></a> <span class="sourceLineNo">050</span> public static final byte STRUCT = 10;<a name="line.50"></a> <span class="sourceLineNo">051</span> public static final byte VECTOR = 11;<a name="line.51"></a> <span class="sourceLineNo">052</span> }<a name="line.52"></a> <span class="sourceLineNo">053</span><a name="line.53"></a> <span class="sourceLineNo">054</span> /**<a name="line.54"></a> <span class="sourceLineNo">055</span> * Constant classes for the basic types, so we can share them.<a name="line.55"></a> <span class="sourceLineNo">056</span> */<a name="line.56"></a> <span class="sourceLineNo">057</span> public static final TypeID BoolTypeID = new TypeID(RIOType.BOOL);<a name="line.57"></a> <span class="sourceLineNo">058</span> public static final TypeID BufferTypeID = new TypeID(RIOType.BUFFER);<a name="line.58"></a> <span class="sourceLineNo">059</span> public static final TypeID ByteTypeID = new TypeID(RIOType.BYTE);<a name="line.59"></a> <span class="sourceLineNo">060</span> public static final TypeID DoubleTypeID = new TypeID(RIOType.DOUBLE);<a name="line.60"></a> <span class="sourceLineNo">061</span> public static final TypeID FloatTypeID = new TypeID(RIOType.FLOAT);<a name="line.61"></a> <span class="sourceLineNo">062</span> public static final TypeID IntTypeID = new TypeID(RIOType.INT);<a name="line.62"></a> <span class="sourceLineNo">063</span> public static final TypeID LongTypeID = new TypeID(RIOType.LONG);<a name="line.63"></a> <span class="sourceLineNo">064</span> public static final TypeID StringTypeID = new TypeID(RIOType.STRING);<a name="line.64"></a> <span class="sourceLineNo">065</span> <a name="line.65"></a> <span class="sourceLineNo">066</span> protected byte typeVal;<a name="line.66"></a> <span class="sourceLineNo">067</span><a name="line.67"></a> <span class="sourceLineNo">068</span> /**<a name="line.68"></a> <span class="sourceLineNo">069</span> * Create a TypeID object <a name="line.69"></a> <span class="sourceLineNo">070</span> */<a name="line.70"></a> <span class="sourceLineNo">071</span> TypeID(byte typeVal) {<a name="line.71"></a> <span class="sourceLineNo">072</span> this.typeVal = typeVal;<a name="line.72"></a> <span class="sourceLineNo">073</span> }<a name="line.73"></a> <span class="sourceLineNo">074</span><a name="line.74"></a> <span class="sourceLineNo">075</span> /**<a name="line.75"></a> <span class="sourceLineNo">076</span> * Get the type value. One of the constants in RIOType.<a name="line.76"></a> <span class="sourceLineNo">077</span> */<a name="line.77"></a> <span class="sourceLineNo">078</span> public byte getTypeVal() {<a name="line.78"></a> <span class="sourceLineNo">079</span> return typeVal;<a name="line.79"></a> <span class="sourceLineNo">080</span> }<a name="line.80"></a> <span class="sourceLineNo">081</span><a name="line.81"></a> <span class="sourceLineNo">082</span> /**<a name="line.82"></a> <span class="sourceLineNo">083</span> * Serialize the TypeID object<a name="line.83"></a> <span class="sourceLineNo">084</span> */<a name="line.84"></a> <span class="sourceLineNo">085</span> void write(RecordOutput rout, String tag) throws IOException {<a name="line.85"></a> <span class="sourceLineNo">086</span> rout.writeByte(typeVal, tag);<a name="line.86"></a> <span class="sourceLineNo">087</span> }<a name="line.87"></a> <span class="sourceLineNo">088</span> <a name="line.88"></a> <span class="sourceLineNo">089</span> /**<a name="line.89"></a> <span class="sourceLineNo">090</span> * Two base typeIDs are equal if they refer to the same type<a name="line.90"></a> <span class="sourceLineNo">091</span> */<a name="line.91"></a> <span class="sourceLineNo">092</span> @Override<a name="line.92"></a> <span class="sourceLineNo">093</span> public boolean equals(Object o) {<a name="line.93"></a> <span class="sourceLineNo">094</span> if (this == o) <a name="line.94"></a> <span class="sourceLineNo">095</span> return true;<a name="line.95"></a> <span class="sourceLineNo">096</span><a name="line.96"></a> <span class="sourceLineNo">097</span> if (o == null)<a name="line.97"></a> <span class="sourceLineNo">098</span> return false;<a name="line.98"></a> <span class="sourceLineNo">099</span><a name="line.99"></a> <span class="sourceLineNo">100</span> if (this.getClass() != o.getClass())<a name="line.100"></a> <span class="sourceLineNo">101</span> return false;<a name="line.101"></a> <span class="sourceLineNo">102</span><a name="line.102"></a> <span class="sourceLineNo">103</span> TypeID oTypeID = (TypeID) o;<a name="line.103"></a> <span class="sourceLineNo">104</span> return (this.typeVal == oTypeID.typeVal);<a name="line.104"></a> <span class="sourceLineNo">105</span> }<a name="line.105"></a> <span class="sourceLineNo">106</span> <a name="line.106"></a> <span class="sourceLineNo">107</span> /**<a name="line.107"></a> <span class="sourceLineNo">108</span> * We use a basic hashcode implementation, since this class will likely not<a name="line.108"></a> <span class="sourceLineNo">109</span> * be used as a hashmap key <a name="line.109"></a> <span class="sourceLineNo">110</span> */<a name="line.110"></a> <span class="sourceLineNo">111</span> @Override<a name="line.111"></a> <span class="sourceLineNo">112</span> public int hashCode() {<a name="line.112"></a> <span class="sourceLineNo">113</span> // See 'Effectve Java' by Joshua Bloch<a name="line.113"></a> <span class="sourceLineNo">114</span> return 37*17+(int)typeVal;<a name="line.114"></a> <span class="sourceLineNo">115</span> }<a name="line.115"></a> <span class="sourceLineNo">116</span>}<a name="line.116"></a> <span class="sourceLineNo">117</span><a name="line.117"></a> </pre> </div> </body> </html>
ZhangXFeng/hadoop
share/doc/api/src-html/org/apache/hadoop/record/meta/TypeID.html
HTML
apache-2.0
10,762
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_45) on Fri Aug 28 09:51:23 EDT 2015 --> <title>AbstractCell (apache-cassandra API)</title> <meta name="date" content="2015-08-28"> <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="AbstractCell (apache-cassandra API)"; } } catch(err) { } //--> var methods = {"i0":10,"i1":9,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":9,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10}; var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance 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="class-use/AbstractCell.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Class</li> <li><a href="../../../../org/apache/cassandra/db/AbstractNativeCell.html" title="class in org.apache.cassandra.db"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/db/AbstractCell.html" target="_top">Frames</a></li> <li><a href="AbstractCell.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>Field&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>Field&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">org.apache.cassandra.db</div> <h2 title="Class AbstractCell" class="title">Class AbstractCell</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>org.apache.cassandra.db.AbstractCell</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>, <a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></dd> </dl> <dl> <dt>Direct Known Subclasses:</dt> <dd><a href="../../../../org/apache/cassandra/db/AbstractNativeCell.html" title="class in org.apache.cassandra.db">AbstractNativeCell</a>, <a href="../../../../org/apache/cassandra/db/BufferCell.html" title="class in org.apache.cassandra.db">BufferCell</a></dd> </dl> <hr> <br> <pre>public abstract class <span class="typeNameLabel">AbstractCell</span> extends java.lang.Object implements <a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== NESTED CLASS SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="nested.class.summary"> <!-- --> </a> <h3>Nested Class Summary</h3> <ul class="blockList"> <li class="blockList"><a name="nested.classes.inherited.from.class.org.apache.cassandra.db.OnDiskAtom"> <!-- --> </a> <h3>Nested classes/interfaces inherited from interface&nbsp;org.apache.cassandra.db.<a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></h3> <code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.Serializer.html" title="class in org.apache.cassandra.db">OnDiskAtom.Serializer</a></code></li> </ul> </li> </ul> <!-- =========== FIELD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="field.summary"> <!-- --> </a> <h3>Field Summary</h3> <ul class="blockList"> <li class="blockList"><a name="fields.inherited.from.class.org.apache.cassandra.db.Cell"> <!-- --> </a> <h3>Fields inherited from interface&nbsp;org.apache.cassandra.db.<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></h3> <code><a href="../../../../org/apache/cassandra/db/Cell.html#MAX_NAME_LENGTH">MAX_NAME_LENGTH</a></code></li> </ul> </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="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#AbstractCell--">AbstractCell</a></span>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method.summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance 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>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#cellDataSize--">cellDataSize</a></span>()</code>&nbsp;</td> </tr> <tr id="i1" class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#create-org.apache.cassandra.db.composites.CellName-java.nio.ByteBuffer-long-int-org.apache.cassandra.config.CFMetaData-">create</a></span>(<a href="../../../../org/apache/cassandra/db/composites/CellName.html" title="interface in org.apache.cassandra.db.composites">CellName</a>&nbsp;name, java.nio.ByteBuffer&nbsp;value, long&nbsp;timestamp, int&nbsp;ttl, <a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata)</code>&nbsp;</td> </tr> <tr id="i2" class="altColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#diff-org.apache.cassandra.db.Cell-">diff</a></span>(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</code>&nbsp;</td> </tr> <tr id="i3" class="rowColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#diffCounter-org.apache.cassandra.db.Cell-">diffCounter</a></span>(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</code>&nbsp;</td> </tr> <tr id="i4" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#equals-org.apache.cassandra.db.Cell-">equals</a></span>(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</code>&nbsp;</td> </tr> <tr id="i5" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#equals-java.lang.Object-">equals</a></span>(java.lang.Object&nbsp;o)</code>&nbsp;</td> </tr> <tr id="i6" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#getLocalDeletionTime--">getLocalDeletionTime</a></span>()</code>&nbsp;</td> </tr> <tr id="i7" class="rowColor"> <td class="colFirst"><code>java.lang.String</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#getString-org.apache.cassandra.db.composites.CellNameType-">getString</a></span>(<a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;comparator)</code>&nbsp;</td> </tr> <tr id="i8" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#hashCode--">hashCode</a></span>()</code>&nbsp;</td> </tr> <tr id="i9" class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#isLive--">isLive</a></span>()</code>&nbsp;</td> </tr> <tr id="i10" class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#isLive-long-">isLive</a></span>(long&nbsp;now)</code>&nbsp;</td> </tr> <tr id="i11" class="rowColor"> <td class="colFirst"><code>static java.util.Iterator&lt;<a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a>&gt;</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#onDiskIterator-java.io.DataInput-org.apache.cassandra.db.ColumnSerializer.Flag-int-org.apache.cassandra.io.sstable.format.Version-org.apache.cassandra.db.composites.CellNameType-">onDiskIterator</a></span>(java.io.DataInput&nbsp;in, <a href="../../../../org/apache/cassandra/db/ColumnSerializer.Flag.html" title="enum in org.apache.cassandra.db">ColumnSerializer.Flag</a>&nbsp;flag, int&nbsp;expireBefore, <a href="../../../../org/apache/cassandra/io/sstable/format/Version.html" title="class in org.apache.cassandra.io.sstable.format">Version</a>&nbsp;version, <a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;type)</code>&nbsp;</td> </tr> <tr id="i12" class="altColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#reconcile-org.apache.cassandra.db.Cell-">reconcile</a></span>(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</code>&nbsp;</td> </tr> <tr id="i13" class="rowColor"> <td class="colFirst"><code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#reconcileCounter-org.apache.cassandra.db.Cell-">reconcileCounter</a></span>(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</code> <div class="block">This is temporary until we start creating Cells of the different type (buffer vs.</div> </td> </tr> <tr id="i14" class="altColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#serializationFlags--">serializationFlags</a></span>()</code>&nbsp;</td> </tr> <tr id="i15" class="rowColor"> <td class="colFirst"><code>int</code></td> <td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/apache/cassandra/db/AbstractCell.html#serializedSize-org.apache.cassandra.db.composites.CellNameType-org.apache.cassandra.db.TypeSizes-">serializedSize</a></span>(<a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;type, <a href="../../../../org/apache/cassandra/db/TypeSizes.html" title="class in org.apache.cassandra.db">TypeSizes</a>&nbsp;typeSizes)</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="../../../../org/apache/cassandra/db/AbstractCell.html#updateDigest-java.security.MessageDigest-">updateDigest</a></span>(java.security.MessageDigest&nbsp;digest)</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="../../../../org/apache/cassandra/db/AbstractCell.html#validateFields-org.apache.cassandra.config.CFMetaData-">validateFields</a></span>(<a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata)</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="../../../../org/apache/cassandra/db/AbstractCell.html#validateName-org.apache.cassandra.config.CFMetaData-">validateName</a></span>(<a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata)</code>&nbsp;</td> </tr> </table> <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, finalize, getClass, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.cassandra.db.Cell"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.cassandra.db.<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></h3> <code><a href="../../../../org/apache/cassandra/db/Cell.html#localCopy-org.apache.cassandra.config.CFMetaData-org.apache.cassandra.utils.memory.AbstractAllocator-">localCopy</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#localCopy-org.apache.cassandra.config.CFMetaData-org.apache.cassandra.utils.memory.MemtableAllocator-org.apache.cassandra.utils.concurrent.OpOrder.Group-">localCopy</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#name--">name</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#unsharedHeapSizeExcludingData--">unsharedHeapSizeExcludingData</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#value--">value</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#withUpdatedName-org.apache.cassandra.db.composites.CellName-">withUpdatedName</a>, <a href="../../../../org/apache/cassandra/db/Cell.html#withUpdatedTimestamp-long-">withUpdatedTimestamp</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods.inherited.from.class.org.apache.cassandra.db.OnDiskAtom"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.cassandra.db.<a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></h3> <code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html#timestamp--">timestamp</a></code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor.detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="AbstractCell--"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>AbstractCell</h4> <pre>public&nbsp;AbstractCell()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method.detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="onDiskIterator-java.io.DataInput-org.apache.cassandra.db.ColumnSerializer.Flag-int-org.apache.cassandra.io.sstable.format.Version-org.apache.cassandra.db.composites.CellNameType-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>onDiskIterator</h4> <pre>public static&nbsp;java.util.Iterator&lt;<a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a>&gt;&nbsp;onDiskIterator(java.io.DataInput&nbsp;in, <a href="../../../../org/apache/cassandra/db/ColumnSerializer.Flag.html" title="enum in org.apache.cassandra.db">ColumnSerializer.Flag</a>&nbsp;flag, int&nbsp;expireBefore, <a href="../../../../org/apache/cassandra/io/sstable/format/Version.html" title="class in org.apache.cassandra.io.sstable.format">Version</a>&nbsp;version, <a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;type)</pre> </li> </ul> <a name="isLive--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isLive</h4> <pre>public&nbsp;boolean&nbsp;isLive()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#isLive--">isLive</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="isLive-long-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>isLive</h4> <pre>public&nbsp;boolean&nbsp;isLive(long&nbsp;now)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#isLive-long-">isLive</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="cellDataSize--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>cellDataSize</h4> <pre>public&nbsp;int&nbsp;cellDataSize()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#cellDataSize--">cellDataSize</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="serializedSize-org.apache.cassandra.db.composites.CellNameType-org.apache.cassandra.db.TypeSizes-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>serializedSize</h4> <pre>public&nbsp;int&nbsp;serializedSize(<a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;type, <a href="../../../../org/apache/cassandra/db/TypeSizes.html" title="class in org.apache.cassandra.db">TypeSizes</a>&nbsp;typeSizes)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#serializedSize-org.apache.cassandra.db.composites.CellNameType-org.apache.cassandra.db.TypeSizes-">serializedSize</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="serializationFlags--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>serializationFlags</h4> <pre>public&nbsp;int&nbsp;serializationFlags()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#serializationFlags--">serializationFlags</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="diff-org.apache.cassandra.db.Cell-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>diff</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;diff(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#diff-org.apache.cassandra.db.Cell-">diff</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="updateDigest-java.security.MessageDigest-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>updateDigest</h4> <pre>public&nbsp;void&nbsp;updateDigest(java.security.MessageDigest&nbsp;digest)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html#updateDigest-java.security.MessageDigest-">updateDigest</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></code></dd> </dl> </li> </ul> <a name="getLocalDeletionTime--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getLocalDeletionTime</h4> <pre>public&nbsp;int&nbsp;getLocalDeletionTime()</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html#getLocalDeletionTime--">getLocalDeletionTime</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></code></dd> </dl> </li> </ul> <a name="reconcile-org.apache.cassandra.db.Cell-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>reconcile</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;reconcile(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#reconcile-org.apache.cassandra.db.Cell-">reconcile</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="equals-java.lang.Object-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre>public&nbsp;boolean&nbsp;equals(java.lang.Object&nbsp;o)</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>equals</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="equals-org.apache.cassandra.db.Cell-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>equals</h4> <pre>public&nbsp;boolean&nbsp;equals(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</pre> </li> </ul> <a name="hashCode--"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>hashCode</h4> <pre>public&nbsp;int&nbsp;hashCode()</pre> <dl> <dt><span class="overrideSpecifyLabel">Overrides:</span></dt> <dd><code>hashCode</code>&nbsp;in class&nbsp;<code>java.lang.Object</code></dd> </dl> </li> </ul> <a name="getString-org.apache.cassandra.db.composites.CellNameType-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>getString</h4> <pre>public&nbsp;java.lang.String&nbsp;getString(<a href="../../../../org/apache/cassandra/db/composites/CellNameType.html" title="interface in org.apache.cassandra.db.composites">CellNameType</a>&nbsp;comparator)</pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/Cell.html#getString-org.apache.cassandra.db.composites.CellNameType-">getString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a></code></dd> </dl> </li> </ul> <a name="validateName-org.apache.cassandra.config.CFMetaData-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>validateName</h4> <pre>public&nbsp;void&nbsp;validateName(<a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata) throws <a href="../../../../org/apache/cassandra/serializers/MarshalException.html" title="class in org.apache.cassandra.serializers">MarshalException</a></pre> <dl> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/serializers/MarshalException.html" title="class in org.apache.cassandra.serializers">MarshalException</a></code></dd> </dl> </li> </ul> <a name="validateFields-org.apache.cassandra.config.CFMetaData-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>validateFields</h4> <pre>public&nbsp;void&nbsp;validateFields(<a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata) throws <a href="../../../../org/apache/cassandra/serializers/MarshalException.html" title="class in org.apache.cassandra.serializers">MarshalException</a></pre> <dl> <dt><span class="overrideSpecifyLabel">Specified by:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html#validateFields-org.apache.cassandra.config.CFMetaData-">validateFields</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../org/apache/cassandra/db/OnDiskAtom.html" title="interface in org.apache.cassandra.db">OnDiskAtom</a></code></dd> <dt><span class="throwsLabel">Throws:</span></dt> <dd><code><a href="../../../../org/apache/cassandra/serializers/MarshalException.html" title="class in org.apache.cassandra.serializers">MarshalException</a></code></dd> </dl> </li> </ul> <a name="create-org.apache.cassandra.db.composites.CellName-java.nio.ByteBuffer-long-int-org.apache.cassandra.config.CFMetaData-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>create</h4> <pre>public static&nbsp;<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;create(<a href="../../../../org/apache/cassandra/db/composites/CellName.html" title="interface in org.apache.cassandra.db.composites">CellName</a>&nbsp;name, java.nio.ByteBuffer&nbsp;value, long&nbsp;timestamp, int&nbsp;ttl, <a href="../../../../org/apache/cassandra/config/CFMetaData.html" title="class in org.apache.cassandra.config">CFMetaData</a>&nbsp;metadata)</pre> </li> </ul> <a name="diffCounter-org.apache.cassandra.db.Cell-"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>diffCounter</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;diffCounter(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</pre> </li> </ul> <a name="reconcileCounter-org.apache.cassandra.db.Cell-"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>reconcileCounter</h4> <pre>public&nbsp;<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;reconcileCounter(<a href="../../../../org/apache/cassandra/db/Cell.html" title="interface in org.apache.cassandra.db">Cell</a>&nbsp;cell)</pre> <div class="block">This is temporary until we start creating Cells of the different type (buffer vs. native)</div> </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="class-use/AbstractCell.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev&nbsp;Class</li> <li><a href="../../../../org/apache/cassandra/db/AbstractNativeCell.html" title="class in org.apache.cassandra.db"><span class="typeNameLink">Next&nbsp;Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/db/AbstractCell.html" target="_top">Frames</a></li> <li><a href="AbstractCell.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>Field&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>Field&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 ======= --> <p class="legalCopy"><small>Copyright &copy; 2015 The Apache Software Foundation</small></p> </body> </html>
mitch-kyle/message-board
support/apache-cassandra-2.2.1/javadoc/org/apache/cassandra/db/AbstractCell.html
HTML
apache-2.0
33,545
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>BoostBook element template-arg</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../reference.html" title="Reference"> <link rel="prev" href="throws.html" title="BoostBook element throws"> <link rel="next" href="globalname.html" title="BoostBook element globalname"> </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="throws.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../reference.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="globalname.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boostbook.dtd.template-arg"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle"> BoostBook element <code class="sgmltag-element">template-arg</code></span></h2> <p>template-arg &#8212; A template argument in a specialization</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv">template-arg ::= (ANY) </div> <div class="refsection"> <a name="idp259638040"></a><h2>Attributes</h2> <div class="informaltable"><table class="table"> <colgroup> <col> <col> <col> <col> </colgroup> <thead><tr> <th>Name</th> <th>Type</th> <th>Value</th> <th>Purpose</th> </tr></thead> <tbody> <tr> <td>last-revision</td> <td>#IMPLIED</td> <td>CDATA</td> <td>Set to $Date: 2009-10-10 15:53:46 +0100 (Sat, 10 Oct 2009) $ to keep "last revised" information in sync with CVS changes</td> </tr> <tr> <td>id</td> <td>#IMPLIED</td> <td>CDATA</td> <td>A global identifier for this element</td> </tr> <tr> <td>pack</td> <td>#IMPLIED</td> <td>CDATA</td> <td>Set to '1' if this is a pack exapansion.</td> </tr> <tr> <td>xml:base</td> <td>#IMPLIED</td> <td>CDATA</td> <td>Implementation detail used by XIncludes</td> </tr> </tbody> </table></div> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2005 Douglas Gregor<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="throws.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../reference.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="globalname.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
NixaSoftware/CVis
venv/bin/doc/html/boostbook/dtd/template-arg.html
HTML
apache-2.0
3,972
<!DOCTYPE html> <html> <head> <title>require.js: Empty Dependency Test</title> <script type="text/javascript" src="doh/runner.js"></script> <script type="text/javascript" src="doh/_browserRunner.js"></script> <script type="text/javascript" src="../require.js"></script> <script> var noneOk = false, emptyOk = false; define('none', function (require, exports, module) { noneOk = arguments.length === 3; }); define('empty', [], function () { emptyOk = arguments.length === 0; }); require(['none', 'empty'], function (none, empty) { doh.register( "depEmpty", [ function depEmpty(t){ t.is(true, noneOk, 'none has three args'); t.is(true, emptyOk, 'empty has no args'); } ] ); doh.run(); }); </script> </head> <body> <h1>require.js: Empty Dependency Test</h1> <p>If empty array passed, then do not pass any args to factory function. <a href="https://github.com/requirejs/requirejs/issues/669">More info.</a></p> <p>Check console for messages</p> </body> </html>
alkaest2002/gzts-lab
web/app/assets/frameworks/bower_components/requirejs/tests/depEmpty.html
HTML
bsd-3-clause
1,188
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Maxwell filter raw data &mdash; MNE 0.11.0 documentation</title> <link rel="stylesheet" href="../../_static/basic.css" type="text/css" /> <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" /> <link rel="stylesheet" href="../../_static/gallery.css" type="text/css" /> <link rel="stylesheet" href="../../_static/bootswatch-3.3.4/flatly/bootstrap.min.css" type="text/css" /> <link rel="stylesheet" href="../../_static/bootstrap-sphinx.css" type="text/css" /> <link rel="stylesheet" href="../../_static/style.css" type="text/css" /> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT: '../../', VERSION: '0.11.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> <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../_static/js/jquery-1.11.0.min.js"></script> <script type="text/javascript" src="../../_static/js/jquery-fix.js"></script> <script type="text/javascript" src="../../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script> <script type="text/javascript" src="../../_static/bootstrap-sphinx.js"></script> <link rel="shortcut icon" href="../../_static/favicon.ico"/> <link rel="top" title="MNE 0.11.0 documentation" href="../../index.html" /> <link rel="up" title="Examples Gallery" href="../index.html" /> <link rel="next" title="XDAWN Denoising" href="plot_xdawn_denoising.html" /> <link rel="prev" title="Estimate covariance matrix from Epochs baseline" href="plot_estimate_covariance_matrix_baseline.html" /> <link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-37225609-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> <script type="text/javascript"> !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s); js.id=id;js.src="http://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs"); </script> <script type="text/javascript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js/plusone.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })(); </script> <link rel="canonical" href="https://mne.tools/stable/index.html" /> </head> <body role="document"> <div id="navbar" class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <!-- .btn-navbar is used as the toggle for collapsed navbar content --> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../../index.html"><img src="../../_static/mne_logo_small.png"> </a> <span class="navbar-text navbar-version pull-left"><b>0.11.0</b></span> </div> <div class="collapse navbar-collapse nav-collapse"> <ul class="nav navbar-nav"> <li><a href="../../getting_started.html">Get started</a></li> <li><a href="../../tutorials.html">Tutorials</a></li> <li><a href="../index.html">Gallery</a></li> <li><a href="../../python_reference.html">API</a></li> <li><a href="../../manual/index.html">Manual</a></li> <li><a href="../../faq.html">FAQ</a></li> <li class="dropdown globaltoc-container"> <a role="button" id="dLabelGlobalToc" data-toggle="dropdown" data-target="#" href="../../index.html">Site <b class="caret"></b></a> <ul class="dropdown-menu globaltoc" role="menu" aria-labelledby="dLabelGlobalToc"><ul class="current"> <li class="toctree-l1"><a class="reference internal" href="../../getting_started.html">Getting Started</a></li> <li class="toctree-l1"><a class="reference internal" href="../../whats_new.html">What&#8217;s new</a></li> <li class="toctree-l1"><a class="reference internal" href="../../cite.html">Cite MNE</a></li> <li class="toctree-l1"><a class="reference internal" href="../../references.html">Related publications</a></li> <li class="toctree-l1"><a class="reference internal" href="../../tutorials.html">Tutorials</a></li> <li class="toctree-l1 current"><a class="reference internal" href="../index.html">Examples Gallery</a></li> <li class="toctree-l1"><a class="reference internal" href="../../manual/index.html">Manual</a></li> <li class="toctree-l1"><a class="reference internal" href="../../python_reference.html">API Reference</a></li> <li class="toctree-l1"><a class="reference internal" href="../../faq.html">Frequently Asked Questions</a></li> <li class="toctree-l1"><a class="reference internal" href="../../advanced_setup.html">Advanced installation and setup</a></li> <li class="toctree-l1"><a class="reference internal" href="../../mne_cpp.html">MNE with CPP</a></li> </ul> </ul> </li> <li class="dropdown"> <a role="button" id="dLabelLocalToc" data-toggle="dropdown" data-target="#" href="#">Page <b class="caret"></b></a> <ul class="dropdown-menu localtoc" role="menu" aria-labelledby="dLabelLocalToc"><ul> <li><a class="reference internal" href="#">Maxwell filter raw data</a></li> </ul> </ul> </li> </ul> <form class="navbar-form navbar-right" action="../../search.html" method="get"> <div class="form-group"> <input type="text" name="q" class="form-control" placeholder="Search" /> </div> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> </div> <div class="container"> <div class="row"> <div class="sphinxsidebar" role="navigation" aria-label="main navigation"> <div class="sphinxsidebarwrapper"> <p class="logo"><a href="../../index.html"> <img class="logo" src="../../_static/mne_logo_small.png" alt="Logo"/> </a></p><ul> <li><a class="reference internal" href="#">Maxwell filter raw data</a></li> </ul> <li> <a href="plot_estimate_covariance_matrix_baseline.html" title="Previous Chapter: Estimate covariance matrix from Epochs baseline"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Estimate cova...</span> </a> </li> <li> <a href="plot_xdawn_denoising.html" title="Next Chapter: XDAWN Denoising"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">XDAWN Denoising &raquo;</span> </a> </li> <form action="../../search.html" method="get"> <div class="form-group"> <input type="text" name="q" class="form-control" placeholder="Search" /> </div> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="col-md-12 content"> <div class="section" id="maxwell-filter-raw-data"> <span id="sphx-glr-auto-examples-preprocessing-plot-maxwell-filter-py"></span><h1>Maxwell filter raw data<a class="headerlink" href="#maxwell-filter-raw-data" title="Permalink to this headline">¶</a></h1> <p>This example shows how to process M/EEG data with Maxwell filtering in mne-python.</p> <div class="highlight-python"><div class="highlight"><pre><span></span><span class="c1"># Authors: Eric Larson &lt;larson.eric.d@gmail.com&gt;</span> <span class="c1"># Alexandre Gramfort &lt;alexandre.gramfort@telecom-paristech.fr&gt;</span> <span class="c1"># Mark Wronkiewicz &lt;wronk.mark@gmail.com&gt;</span> <span class="c1">#</span> <span class="c1"># License: BSD (3-clause)</span> <span class="kn">import</span> <span class="nn">mne</span> <span class="kn">from</span> <span class="nn">mne.preprocessing</span> <span class="kn">import</span> <a href="../../generated/mne.preprocessing.maxwell_filter.html#mne.preprocessing.maxwell_filter"><span class="n">maxwell_filter</span></a> <span class="k">print</span><span class="p">(</span><span class="n">__doc__</span><span class="p">)</span> <span class="n">data_path</span> <span class="o">=</span> <span class="n">mne</span><span class="o">.</span><span class="n">datasets</span><span class="o">.</span><span class="n">sample</span><span class="o">.</span><span class="n">data_path</span><span class="p">()</span> </pre></div> </div> <p>Set parameters</p> <div class="highlight-python"><div class="highlight"><pre><span></span><span class="n">raw_fname</span> <span class="o">=</span> <span class="n">data_path</span> <span class="o">+</span> <span class="s1">&#39;/MEG/sample/sample_audvis_raw.fif&#39;</span> <span class="n">ctc_fname</span> <span class="o">=</span> <span class="n">data_path</span> <span class="o">+</span> <span class="s1">&#39;/SSS/ct_sparse_mgh.fif&#39;</span> <span class="n">fine_cal_fname</span> <span class="o">=</span> <span class="n">data_path</span> <span class="o">+</span> <span class="s1">&#39;/SSS/sss_cal_mgh.dat&#39;</span> <span class="c1"># Preprocess with Maxwell filtering</span> <span class="n">raw</span> <span class="o">=</span> <a href="../../generated/mne.io.Raw.html#mne.io.Raw"><span class="n">mne</span><span class="o">.</span><span class="n">io</span><span class="o">.</span><span class="n">Raw</span></a><span class="p">(</span><span class="n">raw_fname</span><span class="p">)</span> <span class="n">raw</span><span class="o">.</span><span class="n">info</span><span class="p">[</span><span class="s1">&#39;bads&#39;</span><span class="p">]</span> <span class="o">=</span> <span class="p">[</span><span class="s1">&#39;MEG 2443&#39;</span><span class="p">,</span> <span class="s1">&#39;EEG 053&#39;</span><span class="p">,</span> <span class="s1">&#39;MEG 1032&#39;</span><span class="p">,</span> <span class="s1">&#39;MEG 2313&#39;</span><span class="p">]</span> <span class="c1"># set bads</span> <span class="c1"># Here we don&#39;t use tSSS (set st_duration) because MGH data is very clean</span> <span class="n">raw_sss</span> <span class="o">=</span> <a href="../../generated/mne.preprocessing.maxwell_filter.html#mne.preprocessing.maxwell_filter"><span class="n">maxwell_filter</span></a><span class="p">(</span><span class="n">raw</span><span class="p">,</span> <span class="n">cross_talk</span><span class="o">=</span><span class="n">ctc_fname</span><span class="p">,</span> <span class="n">calibration</span><span class="o">=</span><span class="n">fine_cal_fname</span><span class="p">)</span> <span class="c1"># Select events to extract epochs from, pick M/EEG channels, and plot evoked</span> <span class="n">tmin</span><span class="p">,</span> <span class="n">tmax</span> <span class="o">=</span> <span class="o">-</span><span class="mf">0.2</span><span class="p">,</span> <span class="mf">0.5</span> <span class="n">event_id</span> <span class="o">=</span> <span class="p">{</span><span class="s1">&#39;Auditory/Left&#39;</span><span class="p">:</span> <span class="mi">1</span><span class="p">}</span> <span class="n">events</span> <span class="o">=</span> <a href="../../generated/mne.find_events.html#mne.find_events"><span class="n">mne</span><span class="o">.</span><span class="n">find_events</span></a><span class="p">(</span><span class="n">raw</span><span class="p">,</span> <span class="s1">&#39;STI 014&#39;</span><span class="p">)</span> <span class="n">picks</span> <span class="o">=</span> <a href="../../generated/mne.pick_types.html#mne.pick_types"><span class="n">mne</span><span class="o">.</span><span class="n">pick_types</span></a><span class="p">(</span><span class="n">raw</span><span class="o">.</span><span class="n">info</span><span class="p">,</span> <span class="n">meg</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span> <span class="n">eeg</span><span class="o">=</span><span class="bp">False</span><span class="p">,</span> <span class="n">stim</span><span class="o">=</span><span class="bp">False</span><span class="p">,</span> <span class="n">eog</span><span class="o">=</span><span class="bp">True</span><span class="p">,</span> <span class="n">include</span><span class="o">=</span><span class="p">[],</span> <span class="n">exclude</span><span class="o">=</span><span class="s1">&#39;bads&#39;</span><span class="p">)</span> <span class="k">for</span> <span class="n">r</span><span class="p">,</span> <span class="n">kind</span> <span class="ow">in</span> <span class="nb">zip</span><span class="p">((</span><span class="n">raw</span><span class="p">,</span> <span class="n">raw_sss</span><span class="p">),</span> <span class="p">(</span><span class="s1">&#39;Raw data&#39;</span><span class="p">,</span> <span class="s1">&#39;Maxwell filtered data&#39;</span><span class="p">)):</span> <span class="n">epochs</span> <span class="o">=</span> <a href="../../generated/mne.Epochs.html#mne.Epochs"><span class="n">mne</span><span class="o">.</span><span class="n">Epochs</span></a><span class="p">(</span><span class="n">r</span><span class="p">,</span> <span class="n">events</span><span class="p">,</span> <span class="n">event_id</span><span class="p">,</span> <span class="n">tmin</span><span class="p">,</span> <span class="n">tmax</span><span class="p">,</span> <span class="n">picks</span><span class="o">=</span><span class="n">picks</span><span class="p">,</span> <span class="n">baseline</span><span class="o">=</span><span class="p">(</span><span class="bp">None</span><span class="p">,</span> <span class="mi">0</span><span class="p">),</span> <span class="n">reject</span><span class="o">=</span><span class="nb">dict</span><span class="p">(</span><span class="n">eog</span><span class="o">=</span><span class="mf">150e-6</span><span class="p">),</span> <span class="n">preload</span><span class="o">=</span><span class="bp">False</span><span class="p">)</span> <span class="n">evoked</span> <span class="o">=</span> <span class="n">epochs</span><span class="o">.</span><span class="n">average</span><span class="p">()</span> <span class="n">evoked</span><span class="o">.</span><span class="n">plot</span><span class="p">(</span><span class="n">window_title</span><span class="o">=</span><span class="n">kind</span><span class="p">)</span> </pre></div> </div> <ul class="sphx-glr-horizontal"> <li><a class="first reference internal image-reference" href="../../_images/sphx_glr_plot_maxwell_filter_001.png"><img alt="../../_images/sphx_glr_plot_maxwell_filter_001.png" src="../../_images/sphx_glr_plot_maxwell_filter_001.png" style="width: 376.0px; height: 282.0px;" /></a> </li> <li><a class="first reference internal image-reference" href="../../_images/sphx_glr_plot_maxwell_filter_002.png"><img alt="../../_images/sphx_glr_plot_maxwell_filter_002.png" src="../../_images/sphx_glr_plot_maxwell_filter_002.png" style="width: 376.0px; height: 282.0px;" /></a> </li> </ul> <p><strong>Total running time of the script:</strong> (0 minutes 9.424 seconds)</p> <div class="sphx-glr-download container"> <strong>Download Python source code:</strong> <a class="reference download internal" href="../../_downloads/plot_maxwell_filter.py" download=""><code class="xref download docutils literal"><span class="pre">plot_maxwell_filter.py</span></code></a></div> <div class="sphx-glr-download container"> <strong>Download IPython notebook:</strong> <a class="reference download internal" href="../../_downloads/plot_maxwell_filter.ipynb" download=""><code class="xref download docutils literal"><span class="pre">plot_maxwell_filter.ipynb</span></code></a></div> </div> </div> </div> </div> <footer class="footer"> <div class="container"> <p class="pull-right"> <a href="#">Back to top</a> <br/> </p> <p> &copy; Copyright 2012-2016, MNE Developers.<br/> </p> </div> </footer> <script src="https://mne.tools/versionwarning.js"></script> </body> </html>
mne-tools/mne-tools.github.io
0.14/auto_examples/preprocessing/plot_maxwell_filter.html
HTML
bsd-3-clause
17,470
<!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>libpqxx: field.hxx Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">libpqxx &#160;<span id="projectnumber">4.0.1</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.1.2 --> <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><a href="annotated.html"><span>Classes</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('a00140_source.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">field.hxx</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="comment">/*-------------------------------------------------------------------------</span></div> <div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="comment"> * FILE</span></div> <div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="comment"> * pqxx/field.hxx</span></div> <div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="comment"> * DESCRIPTION</span></div> <div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160;<span class="comment"> * definitions for the pqxx::field class.</span></div> <div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="comment"> * pqxx::field refers to a field in a query result.</span></div> <div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;<span class="comment"> * DO NOT INCLUDE THIS FILE DIRECTLY; include pqxx/field instead.</span></div> <div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160;<span class="comment"> * Copyright (c) 2001-2011, Jeroen T. Vermeulen &lt;jtv@xs4all.nl&gt;</span></div> <div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00013"></a><span class="lineno"> 13</span>&#160;<span class="comment"> * See COPYING for copyright license. If you did not receive a file called</span></div> <div class="line"><a name="l00014"></a><span class="lineno"> 14</span>&#160;<span class="comment"> * COPYING with this source code, please notify the distributor of this mistake,</span></div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="comment"> * or contact the author.</span></div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;<span class="comment"> *</span></div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="comment"> *-------------------------------------------------------------------------</span></div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="comment"> */</span></div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="preprocessor">#ifndef PQXX_H_FIELD</span></div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define PQXX_H_FIELD</span></div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-public.hxx&quot;</span></div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-internal-pre.hxx&quot;</span></div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;</div> <div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;<span class="preprocessor">#include &quot;pqxx/strconv&quot;</span></div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;</div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;</div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;<span class="comment">/* Methods tested in eg. self-test program test001 are marked with &quot;//[t1]&quot;</span></div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;<span class="comment"> */</span></div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;<span class="keyword">namespace </span>pqxx</div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;{</div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;<span class="keyword">class </span>result;</div> <div class="line"><a name="l00034"></a><span class="lineno"><a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9"> 34</a></span>&#160;<span class="keyword">class </span><a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a>;</div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160;</div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;<span class="keyword">typedef</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a>;</div> <div class="line"><a name="l00037"></a><span class="lineno"><a class="code" href="a00176.html#afb3789542d30cda25ee02ba8d2c41a46"> 37</a></span>&#160;<span class="keyword">typedef</span> <span class="keywordtype">signed</span> <span class="keywordtype">int</span> <a class="code" href="a00176.html#afb3789542d30cda25ee02ba8d2c41a46">tuple_difference_type</a>;</div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;</div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;</div> <div class="line"><a name="l00043"></a><span class="lineno"><a class="code" href="a00040.html"> 43</a></span>&#160;<span class="keyword">class </span>PQXX_LIBEXPORT <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a></div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;{</div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00046"></a><span class="lineno"><a class="code" href="a00040.html#a862c8028550be182c0104b48b3cf8399"> 46</a></span>&#160; <span class="keyword">typedef</span> <span class="keywordtype">size_t</span> <a class="code" href="a00040.html#a862c8028550be182c0104b48b3cf8399">size_type</a>;</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;</div> <div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160; <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a>(<span class="keyword">const</span> <a class="code" href="a00107.html" title="Reference to one row in a result.">tuple</a> &amp;T, <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a> C) <span class="keywordflow">throw</span> (); <span class="comment">//[t1]</span></div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160;</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160;</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160;</div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160; <span class="keywordtype">bool</span> operator==(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;) <span class="keyword">const</span>; <span class="comment">//[t75]</span></div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160;</div> <div class="line"><a name="l00079"></a><span class="lineno"> 79</span>&#160;</div> <div class="line"><a name="l00081"></a><span class="lineno"><a class="code" href="a00040.html#a07d5dacdf1abec9c1117d1bcaa4cfdc9"> 81</a></span>&#160; <span class="keywordtype">bool</span> operator!=(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;rhs) <span class="keyword">const</span> <span class="comment">//[t82]</span></div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; {<span class="keywordflow">return</span> !operator==(rhs);}</div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160;</div> <div class="line"><a name="l00089"></a><span class="lineno"> 89</span>&#160;</div> <div class="line"><a name="l00090"></a><span class="lineno"> 90</span>&#160; <span class="keyword">const</span> <span class="keywordtype">char</span> *name() <span class="keyword">const</span>; <span class="comment">//[t11]</span></div> <div class="line"><a name="l00091"></a><span class="lineno"> 91</span>&#160;</div> <div class="line"><a name="l00093"></a><span class="lineno"> 93</span>&#160; oid type() <span class="keyword">const</span>; <span class="comment">//[t7]</span></div> <div class="line"><a name="l00094"></a><span class="lineno"> 94</span>&#160;</div> <div class="line"><a name="l00096"></a><span class="lineno"> 96</span>&#160; oid table() <span class="keyword">const</span>; <span class="comment">//[t2]</span></div> <div class="line"><a name="l00097"></a><span class="lineno"> 97</span>&#160;</div> <div class="line"><a name="l00098"></a><span class="lineno"><a class="code" href="a00040.html#a812714c00006721cdf895980fa8154fb"> 98</a></span>&#160; <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a> <a class="code" href="a00040.html#a812714c00006721cdf895980fa8154fb">num</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> col(); } <span class="comment">//[t82]</span></div> <div class="line"><a name="l00099"></a><span class="lineno"> 99</span>&#160;</div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160; <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a> table_column() <span class="keyword">const</span>; <span class="comment">//[t93]</span></div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00108"></a><span class="lineno"> 108</span>&#160;</div> <div class="line"><a name="l00109"></a><span class="lineno"> 109</span>&#160;</div> <div class="line"><a name="l00114"></a><span class="lineno"> 114</span>&#160; <span class="keyword">const</span> <span class="keywordtype">char</span> *c_str() <span class="keyword">const</span>; <span class="comment">//[t2]</span></div> <div class="line"><a name="l00115"></a><span class="lineno"> 115</span>&#160;</div> <div class="line"><a name="l00117"></a><span class="lineno"><a class="code" href="a00040.html#a11b508641e461a25fdc6b78fb7a36acf"> 117</a></span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt; <span class="keywordtype">bool</span> to(T &amp;Obj) <span class="keyword">const</span> <span class="comment">//[t3]</span></div> <div class="line"><a name="l00118"></a><span class="lineno"> 118</span>&#160; {</div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span>&#160; <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keyword">const</span> bytes = c_str();</div> <div class="line"><a name="l00120"></a><span class="lineno"> 120</span>&#160; <span class="keywordflow">if</span> (!bytes[0] &amp;&amp; is_null()) <span class="keywordflow">return</span> <span class="keyword">false</span>;</div> <div class="line"><a name="l00121"></a><span class="lineno"> 121</span>&#160; <a class="code" href="a00176.html#a28aff4220c1c53e5c80b8a24fb0e9440" title="Convert a field&#39;s string contents to another type.">from_string</a>(bytes, Obj);</div> <div class="line"><a name="l00122"></a><span class="lineno"> 122</span>&#160; <span class="keywordflow">return</span> <span class="keyword">true</span>;</div> <div class="line"><a name="l00123"></a><span class="lineno"> 123</span>&#160; }</div> <div class="line"><a name="l00124"></a><span class="lineno"> 124</span>&#160;</div> <div class="line"><a name="l00126"></a><span class="lineno"><a class="code" href="a00040.html#ad79f68cfa43c8ce7a13af3525be3da43"> 126</a></span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt; <span class="keywordtype">bool</span> operator&gt;&gt;(T &amp;Obj) <span class="keyword">const</span> <span class="comment">//[t7]</span></div> <div class="line"><a name="l00127"></a><span class="lineno"> 127</span>&#160; { <span class="keywordflow">return</span> to(Obj); }</div> <div class="line"><a name="l00128"></a><span class="lineno"> 128</span>&#160;</div> <div class="line"><a name="l00129"></a><span class="lineno"> 129</span>&#160;<span class="preprocessor">#ifdef PQXX_NO_PARTIAL_CLASS_TEMPLATE_SPECIALISATION</span></div> <div class="line"><a name="l00130"></a><span class="lineno"> 130</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00131"></a><span class="lineno"> 131</span>&#160; <span class="keyword">template</span>&lt;&gt; <span class="keywordtype">bool</span> to&lt;PGSTD::string&gt;(PGSTD::string &amp;Obj) <span class="keyword">const</span>;</div> <div class="line"><a name="l00132"></a><span class="lineno"> 132</span>&#160;</div> <div class="line"><a name="l00134"></a><span class="lineno"> 134</span>&#160;</div> <div class="line"><a name="l00137"></a><span class="lineno"> 137</span>&#160; <span class="keyword">template</span>&lt;&gt; <span class="keywordtype">bool</span> to&lt;const char *&gt;(<span class="keyword">const</span> <span class="keywordtype">char</span> *&amp;Obj) <span class="keyword">const</span>;</div> <div class="line"><a name="l00138"></a><span class="lineno"> 138</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00139"></a><span class="lineno"> 139</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00141"></a><span class="lineno"><a class="code" href="a00040.html#a0a194db2c97f08148c9bbef548b24cf8"> 141</a></span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt; <span class="keywordtype">bool</span> to(T &amp;Obj, <span class="keyword">const</span> T &amp;Default) <span class="keyword">const</span> <span class="comment">//[t12]</span></div> <div class="line"><a name="l00142"></a><span class="lineno"> 142</span>&#160; {</div> <div class="line"><a name="l00143"></a><span class="lineno"> 143</span>&#160; <span class="keyword">const</span> <span class="keywordtype">bool</span> NotNull = to(Obj);</div> <div class="line"><a name="l00144"></a><span class="lineno"> 144</span>&#160; <span class="keywordflow">if</span> (!NotNull) Obj = Default;</div> <div class="line"><a name="l00145"></a><span class="lineno"> 145</span>&#160; <span class="keywordflow">return</span> NotNull;</div> <div class="line"><a name="l00146"></a><span class="lineno"> 146</span>&#160; }</div> <div class="line"><a name="l00147"></a><span class="lineno"> 147</span>&#160;</div> <div class="line"><a name="l00149"></a><span class="lineno"> 149</span>&#160;</div> <div class="line"><a name="l00152"></a><span class="lineno"><a class="code" href="a00040.html#acf630db7dbdd828c56596b658c1f5b0a"> 152</a></span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt; T as(<span class="keyword">const</span> T &amp;Default) <span class="keyword">const</span> <span class="comment">//[t1]</span></div> <div class="line"><a name="l00153"></a><span class="lineno"> 153</span>&#160; {</div> <div class="line"><a name="l00154"></a><span class="lineno"> 154</span>&#160; T Obj;</div> <div class="line"><a name="l00155"></a><span class="lineno"> 155</span>&#160; to(Obj, Default);</div> <div class="line"><a name="l00156"></a><span class="lineno"> 156</span>&#160; <span class="keywordflow">return</span> Obj;</div> <div class="line"><a name="l00157"></a><span class="lineno"> 157</span>&#160; }</div> <div class="line"><a name="l00158"></a><span class="lineno"> 158</span>&#160;</div> <div class="line"><a name="l00160"></a><span class="lineno"><a class="code" href="a00040.html#a2f9b005cdf98de2a1e7754744c75fbb7"> 160</a></span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt; T as() const <span class="comment">//[t45]</span></div> <div class="line"><a name="l00161"></a><span class="lineno"> 161</span>&#160; {</div> <div class="line"><a name="l00162"></a><span class="lineno"> 162</span>&#160; T Obj;</div> <div class="line"><a name="l00163"></a><span class="lineno"> 163</span>&#160; <span class="keyword">const</span> <span class="keywordtype">bool</span> NotNull = to(Obj);</div> <div class="line"><a name="l00164"></a><span class="lineno"> 164</span>&#160; <span class="keywordflow">if</span> (!NotNull) Obj = <a class="code" href="a00088.html" title="Traits class for use in string conversions.">string_traits&lt;T&gt;::null</a>();</div> <div class="line"><a name="l00165"></a><span class="lineno"> 165</span>&#160; <span class="keywordflow">return</span> Obj;</div> <div class="line"><a name="l00166"></a><span class="lineno"> 166</span>&#160; }</div> <div class="line"><a name="l00167"></a><span class="lineno"> 167</span>&#160;</div> <div class="line"><a name="l00168"></a><span class="lineno"> 168</span>&#160; <span class="keywordtype">bool</span> is_null() <span class="keyword">const</span> throw (); <span class="comment">//[t12]</span></div> <div class="line"><a name="l00169"></a><span class="lineno"> 169</span>&#160; size_type size() const throw (); <span class="comment">//[t11]</span></div> <div class="line"><a name="l00171"></a><span class="lineno"> 171</span>&#160;<span class="comment"></span></div> <div class="line"><a name="l00172"></a><span class="lineno"> 172</span>&#160;</div> <div class="line"><a name="l00173"></a><span class="lineno"> 173</span>&#160;protected:</div> <div class="line"><a name="l00174"></a><span class="lineno"><a class="code" href="a00040.html#a3c3c5212055fb098039b104c520b98f7"> 174</a></span>&#160; const <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> *home() const throw () { <span class="keywordflow">return</span> m_home; }</div> <div class="line"><a name="l00175"></a><span class="lineno"><a class="code" href="a00040.html#a61903bbc795990ac21d2aaefd34626f4"> 175</a></span>&#160; <span class="keywordtype">size_t</span> <a class="code" href="a00040.html#a61903bbc795990ac21d2aaefd34626f4">idx</a>() <span class="keyword">const</span> throw () { <span class="keywordflow">return</span> m_row; }</div> <div class="line"><a name="l00176"></a><span class="lineno"><a class="code" href="a00040.html#ac4149686f6311d9fc74529f3646d9cfd"> 176</a></span>&#160; <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a> <a class="code" href="a00040.html#ac4149686f6311d9fc74529f3646d9cfd">col</a>() <span class="keyword">const</span> throw () { <span class="keywordflow">return</span> m_col; }</div> <div class="line"><a name="l00177"></a><span class="lineno"> 177</span>&#160;</div> <div class="line"><a name="l00178"></a><span class="lineno"><a class="code" href="a00040.html#a5b5ee7fe78262f0d60efb6b9a12c8da7"> 178</a></span>&#160; <a class="code" href="a00176.html#ac6f886167ad26ee519591f7a983ac6d9">tuple_size_type</a> <a class="code" href="a00040.html#a5b5ee7fe78262f0d60efb6b9a12c8da7">m_col</a>;</div> <div class="line"><a name="l00179"></a><span class="lineno"> 179</span>&#160;</div> <div class="line"><a name="l00180"></a><span class="lineno"> 180</span>&#160;<span class="keyword">private</span>:</div> <div class="line"><a name="l00181"></a><span class="lineno"> 181</span>&#160; <span class="keyword">const</span> <a class="code" href="a00082.html" title="Result set containing data returned by a query or command.">result</a> *m_home;</div> <div class="line"><a name="l00182"></a><span class="lineno"> 182</span>&#160; <span class="keywordtype">size_t</span> m_row;</div> <div class="line"><a name="l00183"></a><span class="lineno"> 183</span>&#160;};</div> <div class="line"><a name="l00184"></a><span class="lineno"> 184</span>&#160;</div> <div class="line"><a name="l00185"></a><span class="lineno"> 185</span>&#160;</div> <div class="line"><a name="l00187"></a><span class="lineno"> 187</span>&#160;<span class="keyword">template</span>&lt;&gt;</div> <div class="line"><a name="l00188"></a><span class="lineno"><a class="code" href="a00176.html#aabbc8ca8c25198494ed511631932dcb2"> 188</a></span>&#160;<span class="keyword">inline</span> <span class="keywordtype">bool</span> field::to&lt;PGSTD::string&gt;(PGSTD::string &amp;Obj) <span class="keyword">const</span></div> <div class="line"><a name="l00189"></a><span class="lineno"> 189</span>&#160;{</div> <div class="line"><a name="l00190"></a><span class="lineno"> 190</span>&#160; <span class="keyword">const</span> <span class="keywordtype">char</span> *<span class="keyword">const</span> bytes = c_str();</div> <div class="line"><a name="l00191"></a><span class="lineno"> 191</span>&#160; <span class="keywordflow">if</span> (!bytes[0] &amp;&amp; is_null()) <span class="keywordflow">return</span> <span class="keyword">false</span>;</div> <div class="line"><a name="l00192"></a><span class="lineno"> 192</span>&#160; Obj = PGSTD::string(bytes, size());</div> <div class="line"><a name="l00193"></a><span class="lineno"> 193</span>&#160; <span class="keywordflow">return</span> <span class="keyword">true</span>;</div> <div class="line"><a name="l00194"></a><span class="lineno"> 194</span>&#160;}</div> <div class="line"><a name="l00195"></a><span class="lineno"> 195</span>&#160;</div> <div class="line"><a name="l00197"></a><span class="lineno"> 197</span>&#160;</div> <div class="line"><a name="l00202"></a><span class="lineno"> 202</span>&#160;<span class="keyword">template</span>&lt;&gt;</div> <div class="line"><a name="l00203"></a><span class="lineno"><a class="code" href="a00040.html#ab0fec98c5f61d8c572abbd13303419a9"> 203</a></span>&#160;<span class="keyword">inline</span> <span class="keywordtype">bool</span> field::to&lt;const char *&gt;(<span class="keyword">const</span> <span class="keywordtype">char</span> *&amp;Obj) <span class="keyword">const</span></div> <div class="line"><a name="l00204"></a><span class="lineno"> 204</span>&#160;{</div> <div class="line"><a name="l00205"></a><span class="lineno"> 205</span>&#160; <span class="keywordflow">if</span> (is_null()) <span class="keywordflow">return</span> <span class="keyword">false</span>;</div> <div class="line"><a name="l00206"></a><span class="lineno"> 206</span>&#160; Obj = c_str();</div> <div class="line"><a name="l00207"></a><span class="lineno"> 207</span>&#160; <span class="keywordflow">return</span> <span class="keyword">true</span>;</div> <div class="line"><a name="l00208"></a><span class="lineno"> 208</span>&#160;}</div> <div class="line"><a name="l00209"></a><span class="lineno"> 209</span>&#160;</div> <div class="line"><a name="l00210"></a><span class="lineno"> 210</span>&#160;</div> <div class="line"><a name="l00211"></a><span class="lineno"> 211</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">typename</span> CHAR=<span class="keywordtype">char</span>, <span class="keyword">typename</span> TRAITS=PGSTD::<span class="keywordtype">char</span>_traits&lt;CHAR&gt; &gt;</div> <div class="line"><a name="l00212"></a><span class="lineno"><a class="code" href="a00041.html"> 212</a></span>&#160; <span class="keyword">class </span><a class="code" href="a00041.html">field_streambuf</a> :</div> <div class="line"><a name="l00213"></a><span class="lineno"> 213</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_STREAMBUF</span></div> <div class="line"><a name="l00214"></a><span class="lineno"> 214</span>&#160;<span class="preprocessor"></span> <span class="keyword">public</span> PGSTD::basic_streambuf&lt;CHAR, TRAITS&gt;</div> <div class="line"><a name="l00215"></a><span class="lineno"> 215</span>&#160;<span class="preprocessor">#else</span></div> <div class="line"><a name="l00216"></a><span class="lineno"> 216</span>&#160;<span class="preprocessor"></span> <span class="keyword">public</span> PGSTD::streambuf</div> <div class="line"><a name="l00217"></a><span class="lineno"> 217</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00218"></a><span class="lineno"> 218</span>&#160;<span class="preprocessor"></span>{</div> <div class="line"><a name="l00219"></a><span class="lineno"> 219</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00220"></a><span class="lineno"><a class="code" href="a00041.html#ab1b72785be292cde0fa9ac2cf2b3f6a4"> 220</a></span>&#160; <span class="keyword">typedef</span> CHAR <a class="code" href="a00041.html#ab1b72785be292cde0fa9ac2cf2b3f6a4">char_type</a>;</div> <div class="line"><a name="l00221"></a><span class="lineno"><a class="code" href="a00041.html#a434a97e522097934a05be09ddddcf86a"> 221</a></span>&#160; <span class="keyword">typedef</span> TRAITS <a class="code" href="a00041.html#a434a97e522097934a05be09ddddcf86a">traits_type</a>;</div> <div class="line"><a name="l00222"></a><span class="lineno"><a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c"> 222</a></span>&#160; <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::int_type <a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a>;</div> <div class="line"><a name="l00223"></a><span class="lineno"> 223</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_STREAMBUF</span></div> <div class="line"><a name="l00224"></a><span class="lineno"> 224</span>&#160;<span class="preprocessor"></span> <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::pos_type <a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673">pos_type</a>;</div> <div class="line"><a name="l00225"></a><span class="lineno"> 225</span>&#160; <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::off_type <a class="code" href="a00041.html#a594d90685e6d986b1f2200792bd74b03">off_type</a>;</div> <div class="line"><a name="l00226"></a><span class="lineno"> 226</span>&#160;<span class="preprocessor">#else</span></div> <div class="line"><a name="l00227"></a><span class="lineno"><a class="code" href="a00041.html#a594d90685e6d986b1f2200792bd74b03"> 227</a></span>&#160;<span class="preprocessor"></span> <span class="keyword">typedef</span> streamoff <a class="code" href="a00041.html#a594d90685e6d986b1f2200792bd74b03">off_type</a>;</div> <div class="line"><a name="l00228"></a><span class="lineno"><a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673"> 228</a></span>&#160; <span class="keyword">typedef</span> streampos <a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673">pos_type</a>;</div> <div class="line"><a name="l00229"></a><span class="lineno"> 229</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00230"></a><span class="lineno"><a class="code" href="a00041.html#a292655415eeb298c9b09ccb6ed8de959"> 230</a></span>&#160;<span class="preprocessor"></span> <span class="keyword">typedef</span> PGSTD::ios::openmode <a class="code" href="a00041.html#a292655415eeb298c9b09ccb6ed8de959">openmode</a>;</div> <div class="line"><a name="l00231"></a><span class="lineno"><a class="code" href="a00041.html#a4c3e5f527f44cdcd210968493bd0ea0a"> 231</a></span>&#160; <span class="keyword">typedef</span> PGSTD::ios::seekdir <a class="code" href="a00041.html#a4c3e5f527f44cdcd210968493bd0ea0a">seekdir</a>;</div> <div class="line"><a name="l00232"></a><span class="lineno"> 232</span>&#160;</div> <div class="line"><a name="l00233"></a><span class="lineno"><a class="code" href="a00041.html#a4faf4881aca250fd2ce0eb6a520149c4"> 233</a></span>&#160; <span class="keyword">explicit</span> <a class="code" href="a00041.html#a4faf4881aca250fd2ce0eb6a520149c4">field_streambuf</a>(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;F) : <span class="comment">//[t74]</span></div> <div class="line"><a name="l00234"></a><span class="lineno"> 234</span>&#160; m_Field(F)</div> <div class="line"><a name="l00235"></a><span class="lineno"> 235</span>&#160; {</div> <div class="line"><a name="l00236"></a><span class="lineno"> 236</span>&#160; initialize();</div> <div class="line"><a name="l00237"></a><span class="lineno"> 237</span>&#160; }</div> <div class="line"><a name="l00238"></a><span class="lineno"> 238</span>&#160;</div> <div class="line"><a name="l00239"></a><span class="lineno"> 239</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_STREAMBUF</span></div> <div class="line"><a name="l00240"></a><span class="lineno"> 240</span>&#160;<span class="preprocessor"></span><span class="keyword">protected</span>:</div> <div class="line"><a name="l00241"></a><span class="lineno"> 241</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00242"></a><span class="lineno"><a class="code" href="a00041.html#ae94ab8fb0c94bf4b100f85f80ff8a2b4"> 242</a></span>&#160;<span class="preprocessor"></span> <span class="keyword">virtual</span> <span class="keywordtype">int</span> <a class="code" href="a00041.html#ae94ab8fb0c94bf4b100f85f80ff8a2b4">sync</a>() { <span class="keywordflow">return</span> traits_type::eof(); }</div> <div class="line"><a name="l00243"></a><span class="lineno"> 243</span>&#160;</div> <div class="line"><a name="l00244"></a><span class="lineno"> 244</span>&#160;<span class="keyword">protected</span>:</div> <div class="line"><a name="l00245"></a><span class="lineno"><a class="code" href="a00041.html#a11be4abe1a7a982fa05d2ca80630c62c"> 245</a></span>&#160; <span class="keyword">virtual</span> <a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673">pos_type</a> <a class="code" href="a00041.html#a11be4abe1a7a982fa05d2ca80630c62c">seekoff</a>(<a class="code" href="a00041.html#a594d90685e6d986b1f2200792bd74b03">off_type</a>, <a class="code" href="a00041.html#a4c3e5f527f44cdcd210968493bd0ea0a">seekdir</a>, <a class="code" href="a00041.html#a292655415eeb298c9b09ccb6ed8de959">openmode</a>)</div> <div class="line"><a name="l00246"></a><span class="lineno"> 246</span>&#160; { <span class="keywordflow">return</span> traits_type::eof(); }</div> <div class="line"><a name="l00247"></a><span class="lineno"><a class="code" href="a00041.html#a8c7796f89ed8ea72203359ef1aeaa042"> 247</a></span>&#160; <span class="keyword">virtual</span> <a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673">pos_type</a> <a class="code" href="a00041.html#a8c7796f89ed8ea72203359ef1aeaa042">seekpos</a>(<a class="code" href="a00041.html#a40a3219faec0d4870a24060bf66c1673">pos_type</a>, <a class="code" href="a00041.html#a292655415eeb298c9b09ccb6ed8de959">openmode</a>) {<span class="keywordflow">return</span> traits_type::eof();}</div> <div class="line"><a name="l00248"></a><span class="lineno"><a class="code" href="a00041.html#aa10890370d62085bde7c01e4e7ddcd92"> 248</a></span>&#160; <span class="keyword">virtual</span> <a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a> <a class="code" href="a00041.html#aa10890370d62085bde7c01e4e7ddcd92">overflow</a>(<a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a>) { <span class="keywordflow">return</span> traits_type::eof(); }</div> <div class="line"><a name="l00249"></a><span class="lineno"><a class="code" href="a00041.html#ac96fb117de93933fd4dd667cbe88a0b6"> 249</a></span>&#160; <span class="keyword">virtual</span> <a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a> <a class="code" href="a00041.html#ac96fb117de93933fd4dd667cbe88a0b6">underflow</a>() { <span class="keywordflow">return</span> traits_type::eof(); }</div> <div class="line"><a name="l00250"></a><span class="lineno"> 250</span>&#160;</div> <div class="line"><a name="l00251"></a><span class="lineno"> 251</span>&#160;<span class="keyword">private</span>:</div> <div class="line"><a name="l00252"></a><span class="lineno"> 252</span>&#160; <span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;m_Field;</div> <div class="line"><a name="l00253"></a><span class="lineno"> 253</span>&#160;</div> <div class="line"><a name="l00254"></a><span class="lineno"> 254</span>&#160; <a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a> initialize()</div> <div class="line"><a name="l00255"></a><span class="lineno"> 255</span>&#160; {</div> <div class="line"><a name="l00256"></a><span class="lineno"> 256</span>&#160; <a class="code" href="a00041.html#ab1b72785be292cde0fa9ac2cf2b3f6a4">char_type</a> *G =</div> <div class="line"><a name="l00257"></a><span class="lineno"> 257</span>&#160; <span class="keyword">reinterpret_cast&lt;</span><a class="code" href="a00041.html#ab1b72785be292cde0fa9ac2cf2b3f6a4">char_type</a> *<span class="keyword">&gt;</span>(<span class="keyword">const_cast&lt;</span><span class="keywordtype">char</span> *<span class="keyword">&gt;</span>(m_Field.<a class="code" href="a00040.html#a97781b0028cbfd2dca1106943a27afae" title="Read as plain C string.">c_str</a>()));</div> <div class="line"><a name="l00258"></a><span class="lineno"> 258</span>&#160; this-&gt;setg(G, G, G + m_Field.<a class="code" href="a00040.html#ad8d3b3ef9308b577d178086e4b295ca5">size</a>());</div> <div class="line"><a name="l00259"></a><span class="lineno"> 259</span>&#160; <span class="keywordflow">return</span> <a class="code" href="a00041.html#a55e0069841487074956aa376a6e1d72c">int_type</a>(m_Field.<a class="code" href="a00040.html#ad8d3b3ef9308b577d178086e4b295ca5">size</a>());</div> <div class="line"><a name="l00260"></a><span class="lineno"> 260</span>&#160; }</div> <div class="line"><a name="l00261"></a><span class="lineno"> 261</span>&#160;};</div> <div class="line"><a name="l00262"></a><span class="lineno"> 262</span>&#160;</div> <div class="line"><a name="l00263"></a><span class="lineno"> 263</span>&#160;</div> <div class="line"><a name="l00265"></a><span class="lineno"> 265</span>&#160;</div> <div class="line"><a name="l00273"></a><span class="lineno"> 273</span>&#160;<span class="keyword">template</span>&lt;<span class="keyword">typename</span> CHAR=<span class="keywordtype">char</span>, <span class="keyword">typename</span> TRAITS=PGSTD::<span class="keywordtype">char</span>_traits&lt;CHAR&gt; &gt;</div> <div class="line"><a name="l00274"></a><span class="lineno"><a class="code" href="a00007.html"> 274</a></span>&#160; <span class="keyword">class </span><a class="code" href="a00007.html" title="Input stream that gets its data from a result field.">basic_fieldstream</a> :</div> <div class="line"><a name="l00275"></a><span class="lineno"> 275</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_STREAMBUF</span></div> <div class="line"><a name="l00276"></a><span class="lineno"> 276</span>&#160;<span class="preprocessor"></span> <span class="keyword">public</span> PGSTD::basic_istream&lt;CHAR, TRAITS&gt;</div> <div class="line"><a name="l00277"></a><span class="lineno"> 277</span>&#160;<span class="preprocessor">#else</span></div> <div class="line"><a name="l00278"></a><span class="lineno"> 278</span>&#160;<span class="preprocessor"></span> <span class="keyword">public</span> PGSTD::istream</div> <div class="line"><a name="l00279"></a><span class="lineno"> 279</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00280"></a><span class="lineno"> 280</span>&#160;<span class="preprocessor"></span>{</div> <div class="line"><a name="l00281"></a><span class="lineno"> 281</span>&#160;<span class="preprocessor">#ifdef PQXX_HAVE_STREAMBUF</span></div> <div class="line"><a name="l00282"></a><span class="lineno"> 282</span>&#160;<span class="preprocessor"></span> <span class="keyword">typedef</span> PGSTD::basic_istream&lt;CHAR, TRAITS&gt; super;</div> <div class="line"><a name="l00283"></a><span class="lineno"> 283</span>&#160;<span class="preprocessor">#else</span></div> <div class="line"><a name="l00284"></a><span class="lineno"> 284</span>&#160;<span class="preprocessor"></span> <span class="keyword">typedef</span> PGSTD::istream super;</div> <div class="line"><a name="l00285"></a><span class="lineno"> 285</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00286"></a><span class="lineno"> 286</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00287"></a><span class="lineno"> 287</span>&#160;<span class="keyword">public</span>:</div> <div class="line"><a name="l00288"></a><span class="lineno"><a class="code" href="a00007.html#acb9db31f275560a165bb466555f30986"> 288</a></span>&#160; <span class="keyword">typedef</span> CHAR <a class="code" href="a00007.html#acb9db31f275560a165bb466555f30986">char_type</a>;</div> <div class="line"><a name="l00289"></a><span class="lineno"><a class="code" href="a00007.html#a60c8c26735eb6e96fc915968ea13c7bc"> 289</a></span>&#160; <span class="keyword">typedef</span> TRAITS <a class="code" href="a00007.html#a60c8c26735eb6e96fc915968ea13c7bc">traits_type</a>;</div> <div class="line"><a name="l00290"></a><span class="lineno"><a class="code" href="a00007.html#a8f1cd9fcb08f673ef02776beb52ceefd"> 290</a></span>&#160; <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::int_type <a class="code" href="a00007.html#a8f1cd9fcb08f673ef02776beb52ceefd">int_type</a>;</div> <div class="line"><a name="l00291"></a><span class="lineno"><a class="code" href="a00007.html#ab2bc41979cc1d0d8a349a6b82dd5077f"> 291</a></span>&#160; <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::pos_type <a class="code" href="a00007.html#ab2bc41979cc1d0d8a349a6b82dd5077f">pos_type</a>;</div> <div class="line"><a name="l00292"></a><span class="lineno"><a class="code" href="a00007.html#a5f11dbcdcaf2c705935e099debb68cd8"> 292</a></span>&#160; <span class="keyword">typedef</span> <span class="keyword">typename</span> traits_type::off_type <a class="code" href="a00007.html#a5f11dbcdcaf2c705935e099debb68cd8">off_type</a>;</div> <div class="line"><a name="l00293"></a><span class="lineno"> 293</span>&#160;</div> <div class="line"><a name="l00294"></a><span class="lineno"><a class="code" href="a00007.html#a1f1918fb6cf893bb59e8b3e2921c22fd"> 294</a></span>&#160; <a class="code" href="a00007.html#a1f1918fb6cf893bb59e8b3e2921c22fd">basic_fieldstream</a>(<span class="keyword">const</span> <a class="code" href="a00040.html" title="Reference to a field in a result set.">field</a> &amp;F) : super(0), m_Buf(F)</div> <div class="line"><a name="l00295"></a><span class="lineno"> 295</span>&#160; { super::init(&amp;m_Buf); }</div> <div class="line"><a name="l00296"></a><span class="lineno"> 296</span>&#160;</div> <div class="line"><a name="l00297"></a><span class="lineno"> 297</span>&#160;<span class="keyword">private</span>:</div> <div class="line"><a name="l00298"></a><span class="lineno"> 298</span>&#160; <a class="code" href="a00041.html">field_streambuf&lt;CHAR, TRAITS&gt;</a> m_Buf;</div> <div class="line"><a name="l00299"></a><span class="lineno"> 299</span>&#160;};</div> <div class="line"><a name="l00300"></a><span class="lineno"> 300</span>&#160;</div> <div class="line"><a name="l00301"></a><span class="lineno"><a class="code" href="a00176.html#a82a9c2e4bb780869117bbe794ea24616"> 301</a></span>&#160;<span class="keyword">typedef</span> <a class="code" href="a00007.html" title="Input stream that gets its data from a result field.">basic_fieldstream&lt;char&gt;</a> <a class="code" href="a00176.html#a82a9c2e4bb780869117bbe794ea24616">fieldstream</a>;</div> <div class="line"><a name="l00302"></a><span class="lineno"> 302</span>&#160;</div> <div class="line"><a name="l00303"></a><span class="lineno"> 303</span>&#160;} <span class="comment">// namespace pqxx</span></div> <div class="line"><a name="l00304"></a><span class="lineno"> 304</span>&#160;</div> <div class="line"><a name="l00305"></a><span class="lineno"> 305</span>&#160;</div> <div class="line"><a name="l00306"></a><span class="lineno"> 306</span>&#160;<span class="preprocessor">#include &quot;pqxx/compiler-internal-post.hxx&quot;</span></div> <div class="line"><a name="l00307"></a><span class="lineno"> 307</span>&#160;</div> <div class="line"><a name="l00308"></a><span class="lineno"> 308</span>&#160;<span class="preprocessor">#endif</span></div> </div><!-- fragment --></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="dir_d44c64559bbebec7f509842c48db8b23.html">include</a></li><li class="navelem"><a class="el" href="dir_3d7cbfaf9a6edea0a348c9e21a88d076.html">pqxx</a></li><li class="navelem"><b>field.hxx</b></li> <li class="footer">Generated on Sun Jan 20 2013 13:09:09 for libpqxx by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.1.2 </li> </ul> </div> </body> </html>
giupo/libpqxx
doc/html/Reference/a00140_source.html
HTML
bsd-3-clause
44,967
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="script/common.css"> <script src="script/common.js"></script> <script> function setup(){ $('input').datepicker({ format: 'mm-dd-yyyy', calendarWeeks: true }); }; </script> </head> <body data-capture="input, .datepicker"> <div class="span6"> <input type="text" value="01-16-2012"> </div> <div class="span6"> <input type="text" value="12-16-2012"> </div> </body> </html>
kaliss96/calificaciones
vendor/bower/bootstrap-datepicker/docs/_screenshots/option_calendarweeks.html
HTML
bsd-3-clause
650
<style> area { display: inline; } </style> <p>When an anchor tag catch 'href' attribute or release 'href' attribute, distribution should happen.</p> <div id="host1"></div> <div id="host2"></div> <script> if (window.testRunner) testRunner.waitUntilDone(); function createArea(href, textContent) { var area = document.createElement('area'); if (href) area.setAttribute('href', href); area.appendChild(document.createTextNode(textContent)); return area; } var area1 = createArea('http://www.example.com/', 'Anchor 1'); var area2 = createArea('http://www.example.com/', 'Anchor 2'); var area3 = createArea(null, 'Anchor 3'); var area4 = createArea(null, 'Anchor 4'); host1.appendChild(area1); host1.appendChild(area2); host2.appendChild(area3); host2.appendChild(area4); host1.createShadowRoot().innerHTML = '<content select="area:enabled"></content>'; host2.createShadowRoot().innerHTML = '<content select="area:enabled"></content>'; setTimeout(function() { area2.removeAttribute('href'); area4.setAttribute('href', 'http://www.example.com/'); if (testRunner) testRunner.notifyDone(); }, 0); </script>
ondra-novak/blink
LayoutTests/fast/dom/shadow/pseudoclass-update-enabled-area.html
HTML
bsd-3-clause
1,157
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>phpucMergeCodeTest</title> <link rel="stylesheet" type="text/css" href="style.css"> <link rel="stylesheet" type="text/css" href="container.css"> <script type="text/javascript" src="yahoo-dom-event.js"></script> <script type="text/javascript" src="container-min.js"></script> </head> <body class="yui-skin-sam"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr><td class="title">phpucMergeCodeTest</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 class="headerItem" width="20%">Current file:</td> <td class="headerValue" width="80%"><a href="index.html">/home/manu/Projects/workspace.zend-studio/phpUnderControl/trunk/docs/log-merge</a>/<a href="MergeCode.php.html">MergeCode.php</a></td> </tr> <tr> <td class="legendItem" width="20%">Legend:</td> <td class="legendValue" width="80%"> <span class="legendCov">executed</span> <span class="legendNoCov">not executed</span> <span class="legendDeadCode">dead code</span> </td> </tr> </table> </td> </tr> <tr> <td class="ruler"><img src="glass.png" width="3" height="3" alt=""></td> </tr> </table> <br /> <center> <table width="90%" cellpadding="2" cellspacing="1" border="0"> <tr> <td class="tableHead" width="30%">&nbsp;</td> <td class="tableHead" colspan="9">Coverage</td> </tr> <tr> <td class="tableHead">&nbsp;</td> <td class="tableHead" colspan="3">Classes</td> <td class="tableHead" colspan="3">Methods</td> <td class="tableHead" colspan="3">Lines</td> </tr> <tr> <td class="coverItem">Total</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">3 / 3</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="scarlet_red.png" width="34" height="10" alt="34.62 %"><img src="snow.png" width="66" height="10" alt="34.62%"></td> </tr> </table> </td> <td class="coverPerLo">34.62%</td> <td class="coverNumLo">18 / 52</td> </tr> <tr> <td class="tableHead" colspan="10">&nbsp;</td> </tr> <tr> <td class="coverItem"><b><a href="#63">phpucMergeCode</a></b></td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">3 / 3</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="scarlet_red.png" width="34" height="10" alt="34.62 %"><img src="snow.png" width="66" height="10" alt="34.62%"></td> </tr> </table> </td> <td class="coverPerLo">34.62%</td> <td class="coverNumLo">18 / 52</td> </tr> <tr> <td class="coverFile" colspan="4">&nbsp;<a href="#100">public function versionSpecific()</a></td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="75" height="10" alt="75.00 %"><img src="snow.png" width="25" height="10" alt="75.00%"></td> </tr> </table> </td> <td class="coverPerHi">75.00%</td> <td class="coverNumHi">9 / 12</td> </tr> <tr> <td class="coverFile" colspan="4">&nbsp;<a href="#128">public function notVersionSpecific($what, $mode)</a></td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="scarlet_red.png" width="20" height="10" alt="20.51 %"><img src="snow.png" width="80" height="10" alt="20.51%"></td> </tr> </table> </td> <td class="coverPerLo">20.51%</td> <td class="coverNumLo">8 / 39</td> </tr> <tr> <td class="coverFile" colspan="4">&nbsp;<a href="#190">public function calculate($x, $y)</a></td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> <td class="coverBar" align="center" width="100"> <table border="0" cellspacing="0" cellpadding="1"> <tr> <td class="coverBarOutline"><img src="chameleon.png" width="100" height="10" alt="100.00 %"><img src="snow.png" width="0" height="10" alt="100.00%"></td> </tr> </table> </td> <td class="coverPerHi">100.00%</td> <td class="coverNumHi">1 / 1</td> </tr> </table> </center> <br /> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td><br /></td> </tr> <tr> <td> <pre class="source"> <span class="lineNum" id="container1"><a name="1"></a><a href="#1" id="line1"> 1</a> </span> : &lt;?php <span class="lineNum" id="container2"><a name="2"></a><a href="#2" id="line2"> 2</a> </span> : /** <span class="lineNum" id="container3"><a name="3"></a><a href="#3" id="line3"> 3</a> </span> : * This file is part of phpUnderControl. <span class="lineNum" id="container4"><a name="4"></a><a href="#4" id="line4"> 4</a> </span> : * <span class="lineNum" id="container5"><a name="5"></a><a href="#5" id="line5"> 5</a> </span> : * PHP Version 5.2.0 <span class="lineNum" id="container6"><a name="6"></a><a href="#6" id="line6"> 6</a> </span> : * <span class="lineNum" id="container7"><a name="7"></a><a href="#7" id="line7"> 7</a> </span> : * Copyright (c) 2007-2011, Manuel Pichler &lt;mapi@phpundercontrol.org&gt;. <span class="lineNum" id="container8"><a name="8"></a><a href="#8" id="line8"> 8</a> </span> : * All rights reserved. <span class="lineNum" id="container9"><a name="9"></a><a href="#9" id="line9"> 9</a> </span> : * <span class="lineNum" id="container10"><a name="10"></a><a href="#10" id="line10"> 10</a> </span> : * Redistribution and use in source and binary forms, with or without <span class="lineNum" id="container11"><a name="11"></a><a href="#11" id="line11"> 11</a> </span> : * modification, are permitted provided that the following conditions <span class="lineNum" id="container12"><a name="12"></a><a href="#12" id="line12"> 12</a> </span> : * are met: <span class="lineNum" id="container13"><a name="13"></a><a href="#13" id="line13"> 13</a> </span> : * <span class="lineNum" id="container14"><a name="14"></a><a href="#14" id="line14"> 14</a> </span> : * * Redistributions of source code must retain the above copyright <span class="lineNum" id="container15"><a name="15"></a><a href="#15" id="line15"> 15</a> </span> : * notice, this list of conditions and the following disclaimer. <span class="lineNum" id="container16"><a name="16"></a><a href="#16" id="line16"> 16</a> </span> : * <span class="lineNum" id="container17"><a name="17"></a><a href="#17" id="line17"> 17</a> </span> : * * Redistributions in binary form must reproduce the above copyright <span class="lineNum" id="container18"><a name="18"></a><a href="#18" id="line18"> 18</a> </span> : * notice, this list of conditions and the following disclaimer in <span class="lineNum" id="container19"><a name="19"></a><a href="#19" id="line19"> 19</a> </span> : * the documentation and/or other materials provided with the <span class="lineNum" id="container20"><a name="20"></a><a href="#20" id="line20"> 20</a> </span> : * distribution. <span class="lineNum" id="container21"><a name="21"></a><a href="#21" id="line21"> 21</a> </span> : * <span class="lineNum" id="container22"><a name="22"></a><a href="#22" id="line22"> 22</a> </span> : * * Neither the name of Manuel Pichler nor the names of his <span class="lineNum" id="container23"><a name="23"></a><a href="#23" id="line23"> 23</a> </span> : * contributors may be used to endorse or promote products derived <span class="lineNum" id="container24"><a name="24"></a><a href="#24" id="line24"> 24</a> </span> : * from this software without specific prior written permission. <span class="lineNum" id="container25"><a name="25"></a><a href="#25" id="line25"> 25</a> </span> : * <span class="lineNum" id="container26"><a name="26"></a><a href="#26" id="line26"> 26</a> </span> : * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS <span class="lineNum" id="container27"><a name="27"></a><a href="#27" id="line27"> 27</a> </span> : * &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT <span class="lineNum" id="container28"><a name="28"></a><a href="#28" id="line28"> 28</a> </span> : * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS <span class="lineNum" id="container29"><a name="29"></a><a href="#29" id="line29"> 29</a> </span> : * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE <span class="lineNum" id="container30"><a name="30"></a><a href="#30" id="line30"> 30</a> </span> : * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, <span class="lineNum" id="container31"><a name="31"></a><a href="#31" id="line31"> 31</a> </span> : * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, <span class="lineNum" id="container32"><a name="32"></a><a href="#32" id="line32"> 32</a> </span> : * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; <span class="lineNum" id="container33"><a name="33"></a><a href="#33" id="line33"> 33</a> </span> : * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER <span class="lineNum" id="container34"><a name="34"></a><a href="#34" id="line34"> 34</a> </span> : * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT <span class="lineNum" id="container35"><a name="35"></a><a href="#35" id="line35"> 35</a> </span> : * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN <span class="lineNum" id="container36"><a name="36"></a><a href="#36" id="line36"> 36</a> </span> : * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE <span class="lineNum" id="container37"><a name="37"></a><a href="#37" id="line37"> 37</a> </span> : * POSSIBILITY OF SUCH DAMAGE. <span class="lineNum" id="container38"><a name="38"></a><a href="#38" id="line38"> 38</a> </span> : * <span class="lineNum" id="container39"><a name="39"></a><a href="#39" id="line39"> 39</a> </span> : * @category QualityAssurance <span class="lineNum" id="container40"><a name="40"></a><a href="#40" id="line40"> 40</a> </span> : * @package PhpUnderControl <span class="lineNum" id="container41"><a name="41"></a><a href="#41" id="line41"> 41</a> </span> : * @subpackage Documentation <span class="lineNum" id="container42"><a name="42"></a><a href="#42" id="line42"> 42</a> </span> : * @author Manuel Pichler &lt;mapi@phpundercontrol.org&gt; <span class="lineNum" id="container43"><a name="43"></a><a href="#43" id="line43"> 43</a> </span> : * @copyright 2007-2011 Manuel Pichler. All rights reserved. <span class="lineNum" id="container44"><a name="44"></a><a href="#44" id="line44"> 44</a> </span> : * @license http://www.opensource.org/licenses/bsd-license.php BSD License <span class="lineNum" id="container45"><a name="45"></a><a href="#45" id="line45"> 45</a> </span> : * @version SVN: $Id: PhpUnderControl.php 2631 2008-03-18 15:23:55Z mapi $ <span class="lineNum" id="container46"><a name="46"></a><a href="#46" id="line46"> 46</a> </span> : * @link http://www.phpundercontrol.org/ <span class="lineNum" id="container47"><a name="47"></a><a href="#47" id="line47"> 47</a> </span> : */ <span class="lineNum" id="container48"><a name="48"></a><a href="#48" id="line48"> 48</a> </span> : <span class="lineNum" id="container49"><a name="49"></a><a href="#49" id="line49"> 49</a> </span> : require_once dirname( __FILE__ ) . '/MergeCodeHelper.php'; <span class="lineNum" id="container50"><a name="50"></a><a href="#50" id="line50"> 50</a> </span> : <span class="lineNum" id="container51"><a name="51"></a><a href="#51" id="line51"> 51</a> </span> : /** <span class="lineNum" id="container52"><a name="52"></a><a href="#52" id="line52"> 52</a> </span> : * Documentation/Example/Test class for environment specific code. <span class="lineNum" id="container53"><a name="53"></a><a href="#53" id="line53"> 53</a> </span> : * <span class="lineNum" id="container54"><a name="54"></a><a href="#54" id="line54"> 54</a> </span> : * @category QualityAssurance <span class="lineNum" id="container55"><a name="55"></a><a href="#55" id="line55"> 55</a> </span> : * @package PhpUnderControl <span class="lineNum" id="container56"><a name="56"></a><a href="#56" id="line56"> 56</a> </span> : * @subpackage Documentation <span class="lineNum" id="container57"><a name="57"></a><a href="#57" id="line57"> 57</a> </span> : * @author Manuel Pichler &lt;mapi@phpundercontrol.org&gt; <span class="lineNum" id="container58"><a name="58"></a><a href="#58" id="line58"> 58</a> </span> : * @copyright 2007-2011 Manuel Pichler. All rights reserved. <span class="lineNum" id="container59"><a name="59"></a><a href="#59" id="line59"> 59</a> </span> : * @license http://www.opensource.org/licenses/bsd-license.php BSD License <span class="lineNum" id="container60"><a name="60"></a><a href="#60" id="line60"> 60</a> </span> : * @version Release: @package_version@ <span class="lineNum" id="container61"><a name="61"></a><a href="#61" id="line61"> 61</a> </span> : * @link http://www.phpundercontrol.org/ <span class="lineNum" id="container62"><a name="62"></a><a href="#62" id="line62"> 62</a> </span> : */ <span class="lineNum" id="container63"><a name="63"></a><a href="#63" id="line63"> 63</a> </span> : class phpucMergeCode <span class="lineNum" id="container64"><a name="64"></a><a href="#64" id="line64"> 64</a> </span> : { <span class="lineNum" id="container65"><a name="65"></a><a href="#65" id="line65"> 65</a> </span> : /** <span class="lineNum" id="container66"><a name="66"></a><a href="#66" id="line66"> 66</a> </span> : * Return used sapi. <span class="lineNum" id="container67"><a name="67"></a><a href="#67" id="line67"> 67</a> </span> : */ <span class="lineNum" id="container68"><a name="68"></a><a href="#68" id="line68"> 68</a> </span> : const SAPI = 1; <span class="lineNum" id="container69"><a name="69"></a><a href="#69" id="line69"> 69</a> </span> : <span class="lineNum" id="container70"><a name="70"></a><a href="#70" id="line70"> 70</a> </span> : /** <span class="lineNum" id="container71"><a name="71"></a><a href="#71" id="line71"> 71</a> </span> : * Return used php version <span class="lineNum" id="container72"><a name="72"></a><a href="#72" id="line72"> 72</a> </span> : */ <span class="lineNum" id="container73"><a name="73"></a><a href="#73" id="line73"> 73</a> </span> : const VERSION = 2; <span class="lineNum" id="container74"><a name="74"></a><a href="#74" id="line74"> 74</a> </span> : <span class="lineNum" id="container75"><a name="75"></a><a href="#75" id="line75"> 75</a> </span> : /** <span class="lineNum" id="container76"><a name="76"></a><a href="#76" id="line76"> 76</a> </span> : * Return tested class name. <span class="lineNum" id="container77"><a name="77"></a><a href="#77" id="line77"> 77</a> </span> : */ <span class="lineNum" id="container78"><a name="78"></a><a href="#78" id="line78"> 78</a> </span> : const NAME = 3; <span class="lineNum" id="container79"><a name="79"></a><a href="#79" id="line79"> 79</a> </span> : <span class="lineNum" id="container80"><a name="80"></a><a href="#80" id="line80"> 80</a> </span> : /** <span class="lineNum" id="container81"><a name="81"></a><a href="#81" id="line81"> 81</a> </span> : * Return normal token. <span class="lineNum" id="container82"><a name="82"></a><a href="#82" id="line82"> 82</a> </span> : */ <span class="lineNum" id="container83"><a name="83"></a><a href="#83" id="line83"> 83</a> </span> : const NORMAL = 1; <span class="lineNum" id="container84"><a name="84"></a><a href="#84" id="line84"> 84</a> </span> : <span class="lineNum" id="container85"><a name="85"></a><a href="#85" id="line85"> 85</a> </span> : /** <span class="lineNum" id="container86"><a name="86"></a><a href="#86" id="line86"> 86</a> </span> : * Return reverse token. <span class="lineNum" id="container87"><a name="87"></a><a href="#87" id="line87"> 87</a> </span> : */ <span class="lineNum" id="container88"><a name="88"></a><a href="#88" id="line88"> 88</a> </span> : const REVERSE = 2; <span class="lineNum" id="container89"><a name="89"></a><a href="#89" id="line89"> 89</a> </span> : <span class="lineNum" id="container90"><a name="90"></a><a href="#90" id="line90"> 90</a> </span> : /** <span class="lineNum" id="container91"><a name="91"></a><a href="#91" id="line91"> 91</a> </span> : * Return base64 token. <span class="lineNum" id="container92"><a name="92"></a><a href="#92" id="line92"> 92</a> </span> : */ <span class="lineNum" id="container93"><a name="93"></a><a href="#93" id="line93"> 93</a> </span> : const BASE64 = 3; <span class="lineNum" id="container94"><a name="94"></a><a href="#94" id="line94"> 94</a> </span> : <span class="lineNum" id="container95"><a name="95"></a><a href="#95" id="line95"> 95</a> </span> : /** <span class="lineNum" id="container96"><a name="96"></a><a href="#96" id="line96"> 96</a> </span> : * Returns a php version specific token. <span class="lineNum" id="container97"><a name="97"></a><a href="#97" id="line97"> 97</a> </span> : * <span class="lineNum" id="container98"><a name="98"></a><a href="#98" id="line98"> 98</a> </span> : * @return string <span class="lineNum" id="container99"><a name="99"></a><a href="#99" id="line99"> 99</a> </span> : */ <span class="lineNum" id="container100"><a name="100"></a><a href="#100" id="line100"> 100</a> </span> : public function versionSpecific() <span class="lineNum" id="container101"><a name="101"></a><a href="#101" id="line101"> 101</a> </span> : { <span class="lineNum" id="container102"><a name="102"></a><a href="#102" id="line102"> 102</a> </span><span class="lineCov"> 1 : $helper = new phpucMergeCodeHelper(); </span> <span class="lineNum" id="container103"><a name="103"></a><a href="#103" id="line103"> 103</a> </span> : <span class="lineNum" id="container104"><a name="104"></a><a href="#104" id="line104"> 104</a> </span><span class="lineCov"> 1 : $value = null; </span> <span class="lineNum" id="container105"><a name="105"></a><a href="#105" id="line105"> 105</a> </span><span class="lineCov"> 1 : if (version_compare(phpversion(), '5.2.0') === 0) </span> <span class="lineNum" id="container106"><a name="106"></a><a href="#106" id="line106"> 106</a> </span><span class="lineCov"> 1 : { </span> <span class="lineNum" id="container107"><a name="107"></a><a href="#107" id="line107"> 107</a> </span><span class="lineNoCov"> 0 : $value = $helper-&gt;version520(); </span> <span class="lineNum" id="container108"><a name="108"></a><a href="#108" id="line108"> 108</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container109"><a name="109"></a><a href="#109" id="line109"> 109</a> </span><span class="lineCov"> 1 : else if (version_compare(phpversion(), '5.2.5') === 0) </span> <span class="lineNum" id="container110"><a name="110"></a><a href="#110" id="line110"> 110</a> </span><span class="lineCov"> 1 : { </span> <span class="lineNum" id="container111"><a name="111"></a><a href="#111" id="line111"> 111</a> </span><span class="lineCov"> 1 : $value = $helper-&gt;version525(); </span> <span class="lineNum" id="container112"><a name="112"></a><a href="#112" id="line112"> 112</a> </span><span class="lineCov"> 1 : } </span> <span class="lineNum" id="container113"><a name="113"></a><a href="#113" id="line113"> 113</a> </span> : else <span class="lineNum" id="container114"><a name="114"></a><a href="#114" id="line114"> 114</a> </span> : { <span class="lineNum" id="container115"><a name="115"></a><a href="#115" id="line115"> 115</a> </span><span class="lineNoCov"> 0 : $value = $helper-&gt;versionAny(); </span> <span class="lineNum" id="container116"><a name="116"></a><a href="#116" id="line116"> 116</a> </span> : } <span class="lineNum" id="container117"><a name="117"></a><a href="#117" id="line117"> 117</a> </span><span class="lineCov"> 1 : return $value; </span> <span class="lineNum" id="container118"><a name="118"></a><a href="#118" id="line118"> 118</a> </span><span class="lineDeadCode"> : } </span> <span class="lineNum" id="container119"><a name="119"></a><a href="#119" id="line119"> 119</a> </span> : <span class="lineNum" id="container120"><a name="120"></a><a href="#120" id="line120"> 120</a> </span> : /** <span class="lineNum" id="container121"><a name="121"></a><a href="#121" id="line121"> 121</a> </span> : * Returns a not version specific token. <span class="lineNum" id="container122"><a name="122"></a><a href="#122" id="line122"> 122</a> </span> : * <span class="lineNum" id="container123"><a name="123"></a><a href="#123" id="line123"> 123</a> </span> : * @param integer $what What token? <span class="lineNum" id="container124"><a name="124"></a><a href="#124" id="line124"> 124</a> </span> : * @param integer $mode Reverse, normal or base64 token string? <span class="lineNum" id="container125"><a name="125"></a><a href="#125" id="line125"> 125</a> </span> : * <span class="lineNum" id="container126"><a name="126"></a><a href="#126" id="line126"> 126</a> </span> : * @return string <span class="lineNum" id="container127"><a name="127"></a><a href="#127" id="line127"> 127</a> </span> : */ <span class="lineNum" id="container128"><a name="128"></a><a href="#128" id="line128"> 128</a> </span> : public function notVersionSpecific($what, $mode) <span class="lineNum" id="container129"><a name="129"></a><a href="#129" id="line129"> 129</a> </span> : { <span class="lineNum" id="container130"><a name="130"></a><a href="#130" id="line130"> 130</a> </span><span class="lineCov"> 1 : $value = null; </span> <span class="lineNum" id="container131"><a name="131"></a><a href="#131" id="line131"> 131</a> </span> : switch ( $what ) <span class="lineNum" id="container132"><a name="132"></a><a href="#132" id="line132"> 132</a> </span> : { <span class="lineNum" id="container133"><a name="133"></a><a href="#133" id="line133"> 133</a> </span><span class="lineCov"> 1 : case self::SAPI: </span> <span class="lineNum" id="container134"><a name="134"></a><a href="#134" id="line134"> 134</a> </span><span class="lineCov"> 1 : if ( $mode === self::REVERSE ) </span> <span class="lineNum" id="container135"><a name="135"></a><a href="#135" id="line135"> 135</a> </span><span class="lineCov"> 1 : { </span> <span class="lineNum" id="container136"><a name="136"></a><a href="#136" id="line136"> 136</a> </span><span class="lineCov"> 1 : $value = strrev( php_sapi_name() ); </span> <span class="lineNum" id="container137"><a name="137"></a><a href="#137" id="line137"> 137</a> </span><span class="lineCov"> 1 : } </span> <span class="lineNum" id="container138"><a name="138"></a><a href="#138" id="line138"> 138</a> </span><span class="lineNoCov"> 0 : else if ( $mode === self::BASE64 ) </span> <span class="lineNum" id="container139"><a name="139"></a><a href="#139" id="line139"> 139</a> </span><span class="lineNoCov"> 0 : { </span> <span class="lineNum" id="container140"><a name="140"></a><a href="#140" id="line140"> 140</a> </span><span class="lineNoCov"> 0 : $value = base64_encode( php_sapi_name() ); </span> <span class="lineNum" id="container141"><a name="141"></a><a href="#141" id="line141"> 141</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container142"><a name="142"></a><a href="#142" id="line142"> 142</a> </span> : else <span class="lineNum" id="container143"><a name="143"></a><a href="#143" id="line143"> 143</a> </span> : { <span class="lineNum" id="container144"><a name="144"></a><a href="#144" id="line144"> 144</a> </span><span class="lineNoCov"> 0 : $value = php_sapi_name(); </span> <span class="lineNum" id="container145"><a name="145"></a><a href="#145" id="line145"> 145</a> </span> : } <span class="lineNum" id="container146"><a name="146"></a><a href="#146" id="line146"> 146</a> </span><span class="lineCov"> 1 : break; </span> <span class="lineNum" id="container147"><a name="147"></a><a href="#147" id="line147"> 147</a> </span> : <span class="lineNum" id="container148"><a name="148"></a><a href="#148" id="line148"> 148</a> </span><span class="lineNoCov"> 0 : case self::VERSION: </span> <span class="lineNum" id="container149"><a name="149"></a><a href="#149" id="line149"> 149</a> </span><span class="lineNoCov"> 0 : if ($mode === self::REVERSE) </span> <span class="lineNum" id="container150"><a name="150"></a><a href="#150" id="line150"> 150</a> </span><span class="lineNoCov"> 0 : { </span> <span class="lineNum" id="container151"><a name="151"></a><a href="#151" id="line151"> 151</a> </span><span class="lineNoCov"> 0 : $value = strrev( phpversion() ); </span> <span class="lineNum" id="container152"><a name="152"></a><a href="#152" id="line152"> 152</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container153"><a name="153"></a><a href="#153" id="line153"> 153</a> </span><span class="lineNoCov"> 0 : else if ( $mode === self::BASE64 ) </span> <span class="lineNum" id="container154"><a name="154"></a><a href="#154" id="line154"> 154</a> </span><span class="lineNoCov"> 0 : { </span> <span class="lineNum" id="container155"><a name="155"></a><a href="#155" id="line155"> 155</a> </span><span class="lineNoCov"> 0 : $value = base64_encode( phpversion() ); </span> <span class="lineNum" id="container156"><a name="156"></a><a href="#156" id="line156"> 156</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container157"><a name="157"></a><a href="#157" id="line157"> 157</a> </span><span class="lineNoCov"> 0 : else if ( $mode === self::NORMAL ) </span> <span class="lineNum" id="container158"><a name="158"></a><a href="#158" id="line158"> 158</a> </span><span class="lineNoCov"> 0 : { </span> <span class="lineNum" id="container159"><a name="159"></a><a href="#159" id="line159"> 159</a> </span><span class="lineNoCov"> 0 : $value = phpversion(); </span> <span class="lineNum" id="container160"><a name="160"></a><a href="#160" id="line160"> 160</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container161"><a name="161"></a><a href="#161" id="line161"> 161</a> </span><span class="lineNoCov"> 0 : break; </span> <span class="lineNum" id="container162"><a name="162"></a><a href="#162" id="line162"> 162</a> </span> : <span class="lineNum" id="container163"><a name="163"></a><a href="#163" id="line163"> 163</a> </span><span class="lineNoCov"> 0 : case self::NAME: </span> <span class="lineNum" id="container164"><a name="164"></a><a href="#164" id="line164"> 164</a> </span> : switch ($mode) <span class="lineNum" id="container165"><a name="165"></a><a href="#165" id="line165"> 165</a> </span> : { <span class="lineNum" id="container166"><a name="166"></a><a href="#166" id="line166"> 166</a> </span><span class="lineNoCov"> 0 : case self::REVERSE: </span> <span class="lineNum" id="container167"><a name="167"></a><a href="#167" id="line167"> 167</a> </span><span class="lineNoCov"> 0 : $value = strrev( __CLASS__ ); </span> <span class="lineNum" id="container168"><a name="168"></a><a href="#168" id="line168"> 168</a> </span><span class="lineNoCov"> 0 : break; </span> <span class="lineNum" id="container169"><a name="169"></a><a href="#169" id="line169"> 169</a> </span> : <span class="lineNum" id="container170"><a name="170"></a><a href="#170" id="line170"> 170</a> </span><span class="lineNoCov"> 0 : case self::NORMAL: </span> <span class="lineNum" id="container171"><a name="171"></a><a href="#171" id="line171"> 171</a> </span><span class="lineNoCov"> 0 : $value = __CLASS__; </span> <span class="lineNum" id="container172"><a name="172"></a><a href="#172" id="line172"> 172</a> </span><span class="lineNoCov"> 0 : break; </span> <span class="lineNum" id="container173"><a name="173"></a><a href="#173" id="line173"> 173</a> </span> : <span class="lineNum" id="container174"><a name="174"></a><a href="#174" id="line174"> 174</a> </span><span class="lineNoCov"> 0 : default: </span> <span class="lineNum" id="container175"><a name="175"></a><a href="#175" id="line175"> 175</a> </span><span class="lineNoCov"> 0 : $value = base64_encode( __CLASS__ ); </span> <span class="lineNum" id="container176"><a name="176"></a><a href="#176" id="line176"> 176</a> </span><span class="lineNoCov"> 0 : break; </span> <span class="lineNum" id="container177"><a name="177"></a><a href="#177" id="line177"> 177</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container178"><a name="178"></a><a href="#178" id="line178"> 178</a> </span><span class="lineNoCov"> 0 : } </span> <span class="lineNum" id="container179"><a name="179"></a><a href="#179" id="line179"> 179</a> </span><span class="lineCov"> 1 : return $value; </span> <span class="lineNum" id="container180"><a name="180"></a><a href="#180" id="line180"> 180</a> </span><span class="lineDeadCode"> : } </span> <span class="lineNum" id="container181"><a name="181"></a><a href="#181" id="line181"> 181</a> </span> : <span class="lineNum" id="container182"><a name="182"></a><a href="#182" id="line182"> 182</a> </span> : /** <span class="lineNum" id="container183"><a name="183"></a><a href="#183" id="line183"> 183</a> </span> : * Adds two values. <span class="lineNum" id="container184"><a name="184"></a><a href="#184" id="line184"> 184</a> </span> : * <span class="lineNum" id="container185"><a name="185"></a><a href="#185" id="line185"> 185</a> </span> : * @param integer $x Test value one. <span class="lineNum" id="container186"><a name="186"></a><a href="#186" id="line186"> 186</a> </span> : * @param integer $y Test value two. <span class="lineNum" id="container187"><a name="187"></a><a href="#187" id="line187"> 187</a> </span> : * <span class="lineNum" id="container188"><a name="188"></a><a href="#188" id="line188"> 188</a> </span> : * @return integer <span class="lineNum" id="container189"><a name="189"></a><a href="#189" id="line189"> 189</a> </span> : */ <span class="lineNum" id="container190"><a name="190"></a><a href="#190" id="line190"> 190</a> </span> : public function calculate( $x, $y ) <span class="lineNum" id="container191"><a name="191"></a><a href="#191" id="line191"> 191</a> </span> : { <span class="lineNum" id="container192"><a name="192"></a><a href="#192" id="line192"> 192</a> </span><span class="lineCov"> 4 : return ( $x + $y ); </span> <span class="lineNum" id="container193"><a name="193"></a><a href="#193" id="line193"> 193</a> </span><span class="lineDeadCode"> : } </span> </pre> </td> </tr> </table> <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://www.phpunit.de/">PHPUnit 3.2.18</a> and <a href="http://www.xdebug.org/">Xdebug 2.0.2</a> at Mon Apr 7 16:11:58 CEST 2008.</td></tr> </table> <br /> <script language="javascript"> $E = YAHOO.util.Event; YAHOO.namespace("phpunit.container"); YAHOO.phpunit.container.panelsData = { "panel102": { "header": "1 test covers line 102", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel104": { "header": "1 test covers line 104", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel105": { "header": "1 test covers line 105", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel106": { "header": "1 test covers line 106", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel109": { "header": "1 test covers line 109", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel110": { "header": "1 test covers line 110", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel111": { "header": "1 test covers line 111", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel112": { "header": "1 test covers line 112", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel117": { "header": "1 test covers line 117", "body": "<ul><li class=\"testPassed\">testVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel130": { "header": "1 test covers line 130", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel133": { "header": "1 test covers line 133", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel134": { "header": "1 test covers line 134", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel135": { "header": "1 test covers line 135", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel136": { "header": "1 test covers line 136", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel137": { "header": "1 test covers line 137", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel146": { "header": "1 test covers line 146", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel179": { "header": "1 test covers line 179", "body": "<ul><li class=\"testPassed\">testNotVersionSpecific(phpucMergeCodeTest)</li></ul>", "footer": "" }, "panel192": { "header": "4 tests cover line 192", "body": "<ul><li class=\"testPassed\">testCalculate(phpucMergeCodeTest) with data set #0 (1, 2)</li><li class=\"testPassed\">testCalculate(phpucMergeCodeTest) with data set #1 (-2, 5)</li><li class=\"testFailure\">testCalculate(phpucMergeCodeTest) with data set #2 (2, 2)</li><li class=\"testPassed\">testCalculate(phpucMergeCodeTest) with data set #3 (9, -6)</li></ul>", "footer": "" }, "dummy": "" }; YAHOO.phpunit.container.prepare = function (e) { var elemId = $E.getTarget(e).id; var line = elemId.substr(4); var panelId = "panel" + line; var containerId = "container" + line; var panelData = YAHOO.phpunit.container.panelsData[panelId]; var panel = new YAHOO.widget.Panel(panelId, { visible:false, draggable:false, close:true } ); panel.setHeader(panelData["header"]); panel.setBody(panelData["body"]); panel.setFooter(panelData["footer"]); panel.render(containerId); $E.addListener(elemId, "click", panel.show, panel, true); $E.removeListener(elemId, "mouseover"); }; function init() { var ypc = YAHOO.phpunit.container; for (var panelId in ypc.panelsData) { var elemId = "line" + panelId.substr(5); $E.addListener(elemId, "mouseover", ypc.prepare); } } $E.addListener(window, "load", init); </script> </body> </html>
phpundercontrol/phpUnderControl-UNMAINTAINED
docs/log-merge/php525/cov/MergeCode.php.html
HTML
bsd-3-clause
54,460
<!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.2.30/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>
souths/njy2
js/lib/angular-1.2.32/docs/examples/example-ngChange-directive/index-production.html
HTML
mit
895
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>lxml.isoschematron</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="/">lxml API</a></th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="lxml-module.html">Package&nbsp;lxml</a> :: Package&nbsp;isoschematron </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="lxml.isoschematron-module.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== PACKAGE DESCRIPTION ==================== --> <h1 class="epydoc">Package isoschematron</h1><p class="nomargin-top"><span class="codelink"><a href="lxml.isoschematron-pysrc.html">source&nbsp;code</a></span></p> The <tt class="rst-rst-rst-docutils literal rst-rst-docutils literal rst-docutils literal">lxml.isoschematron</tt> package implements ISO Schematron support on top of the pure-xslt 'skeleton' implementation. <!-- ==================== CLASSES ==================== --> <a name="section-Classes"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Classes</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Classes" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="str-class.html" class="summary-name" onclick="show_private();">bytes</a><br /> str(object='') -&gt; string </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="str-class.html" class="summary-name" onclick="show_private();">unicode</a><br /> str(object='') -&gt; string </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="str-class.html" class="summary-name" onclick="show_private();">basestring</a><br /> str(object='') -&gt; string </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron.Schematron-class.html" class="summary-name">Schematron</a><br /> An ISO Schematron validator. </td> </tr> </table> <!-- ==================== FUNCTIONS ==================== --> <a name="section-Functions"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Functions</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Functions" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="lxml.isoschematron-module.html#stylesheet_params" class="summary-sig-name">stylesheet_params</a>(<span class="summary-sig-arg">**kwargs</span>)</span><br /> Convert keyword args to a dictionary of stylesheet parameters. XSL stylesheet parameters must be XPath expressions, i.e.:</td> <td align="right" valign="top"> <span class="codelink"><a href="lxml.isoschematron-pysrc.html#stylesheet_params">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a name="_stylesheet_param_dict"></a><span class="summary-sig-name">_stylesheet_param_dict</span>(<span class="summary-sig-arg">paramsDict</span>, <span class="summary-sig-arg">kwargsDict</span>)</span><br /> Return a copy of paramsDict, updated with kwargsDict entries, wrapped as stylesheet arguments. kwargsDict entries with a value of None are ignored.</td> <td align="right" valign="top"> <span class="codelink"><a href="lxml.isoschematron-pysrc.html#_stylesheet_param_dict">source&nbsp;code</a></span> </td> </tr> </table> </td> </tr> </table> <!-- ==================== VARIABLES ==================== --> <a name="section-Variables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Variables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="XML_SCHEMA_NS"></a><span class="summary-name">XML_SCHEMA_NS</span> = <code title="'http://www.w3.org/2001/XMLSchema'"><code class="variable-quote">'</code><code class="variable-string">http://www.w3.org/2001/XMLSchema</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="RELAXNG_NS"></a><span class="summary-name">RELAXNG_NS</span> = <code title="'http://relaxng.org/ns/structure/1.0'"><code class="variable-quote">'</code><code class="variable-string">http://relaxng.org/ns/structure/1.0</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="SCHEMATRON_NS"></a><span class="summary-name">SCHEMATRON_NS</span> = <code title="'http://purl.oclc.org/dsdl/schematron'"><code class="variable-quote">'</code><code class="variable-string">http://purl.oclc.org/dsdl/schematron</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="SVRL_NS"></a><span class="summary-name">SVRL_NS</span> = <code title="'http://purl.oclc.org/dsdl/svrl'"><code class="variable-quote">'</code><code class="variable-string">http://purl.oclc.org/dsdl/svrl</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_schematron_root"></a><span class="summary-name">_schematron_root</span> = <code title="'{http://purl.oclc.org/dsdl/schematron}schema'"><code class="variable-quote">'</code><code class="variable-string">{http://purl.oclc.org/dsdl/schematron}schema</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_xml_schema_root"></a><span class="summary-name">_xml_schema_root</span> = <code title="'{http://www.w3.org/2001/XMLSchema}schema'"><code class="variable-quote">'</code><code class="variable-string">{http://www.w3.org/2001/XMLSchema}schema</code><code class="variable-quote">'</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#_resources_dir" class="summary-name" onclick="show_private();">_resources_dir</a> = <code title="'/home/stefan/source/Python/lxml/lxml-release/src/lxml/isoschematron/r\ esources'"><code class="variable-quote">'</code><code class="variable-string">/home/stefan/source/Python/lxml/lxml-release</code><code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#extract_xsd" class="summary-name">extract_xsd</a> = <code title="_etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'XSD2Scht\ rn.xsl')))">_etree.XSLT(_etree.parse(os.path.join(_resources<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#extract_rng" class="summary-name">extract_rng</a> = <code title="_etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'RNG2Scht\ rn.xsl')))">_etree.XSLT(_etree.parse(os.path.join(_resources<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#iso_dsdl_include" class="summary-name">iso_dsdl_include</a> = <code title="_etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche\ matron-xslt1', 'iso_dsdl_include.xsl')))">_etree.XSLT(_etree.parse(os.path.join(_reso<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#iso_abstract_expand" class="summary-name">iso_abstract_expand</a> = <code title="_etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche\ matron-xslt1', 'iso_abstract_expand.xsl')))">_etree.XSLT(_etree.parse(os.path.join(_r<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#iso_svrl_for_xslt1" class="summary-name">iso_svrl_for_xslt1</a> = <code title="_etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche\ matron-xslt1', 'iso_svrl_for_xslt1.xsl')))">_etree.XSLT(_etree.parse(os.path.join(_re<code class="variable-ellipsis">...</code></code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="svrl_validation_errors"></a><span class="summary-name">svrl_validation_errors</span> = <code title="//svrl:failed-assert">//svrl:failed-assert</code> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a href="lxml.isoschematron-module.html#schematron_schema_valid" class="summary-name">schematron_schema_valid</a> = <code title="_etree.RelaxNG(_etree.parse(os.path.join(_resources_dir, 'rng', 'iso-s\ chematron.rng')))">_etree.RelaxNG(_etree.parse(os.path.<code class="variable-ellipsis">...</code></code> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="__package__"></a><span class="summary-name">__package__</span> = <code title="'lxml.isoschematron'"><code class="variable-quote">'</code><code class="variable-string">lxml.isoschematron</code><code class="variable-quote">'</code></code> </td> </tr> </table> <!-- ==================== FUNCTION DETAILS ==================== --> <a name="section-FunctionDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Function Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-FunctionDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="stylesheet_params"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">stylesheet_params</span>(<span class="sig-arg">**kwargs</span>)</span> </h3> </td><td align="right" valign="top" ><span class="codelink"><a href="lxml.isoschematron-pysrc.html#stylesheet_params">source&nbsp;code</a></span>&nbsp; </td> </tr></table> <p>Convert keyword args to a dictionary of stylesheet parameters. XSL stylesheet parameters must be XPath expressions, i.e.:</p> <ul class="rst-simple"> <li>string expressions, like &quot;'5'&quot;</li> <li>simple (number) expressions, like &quot;5&quot;</li> <li>valid XPath expressions, like &quot;/a/b/text()&quot;</li> </ul> <p>This function converts native Python keyword arguments to stylesheet parameters following these rules: If an arg is a string wrap it with XSLT.strparam(). If an arg is an XPath object use its path string. If arg is None raise TypeError. Else convert arg to string.</p> <dl class="fields"> </dl> </td></tr></table> </div> <br /> <!-- ==================== VARIABLES DETAILS ==================== --> <a name="section-VariablesDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Variables Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-VariablesDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="_resources_dir"></a> <div class="private"> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">_resources_dir</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> <code class="variable-quote">'</code><code class="variable-string">/home/stefan/source/Python/lxml/lxml-release/src/lxml/isoschematron/r</code><span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> <code class="variable-string">esources</code><code class="variable-quote">'</code> </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="extract_xsd"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">extract_xsd</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'XSD2Scht<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> rn.xsl'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="extract_rng"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">extract_rng</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'RNG2Scht<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> rn.xsl'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="iso_dsdl_include"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">iso_dsdl_include</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> matron-xslt1', 'iso_dsdl_include.xsl'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="iso_abstract_expand"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">iso_abstract_expand</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> matron-xslt1', 'iso_abstract_expand.xsl'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="iso_svrl_for_xslt1"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">iso_svrl_for_xslt1</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.XSLT(_etree.parse(os.path.join(_resources_dir, 'xsl', 'iso-sche<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> matron-xslt1', 'iso_svrl_for_xslt1.xsl'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <a name="schematron_schema_valid"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <h3 class="epydoc">schematron_schema_valid</h3> <dl class="fields"> </dl> <dl class="fields"> <dt>Value:</dt> <dd><table><tr><td><pre class="variable"> _etree.RelaxNG(_etree.parse(os.path.join(_resources_dir, 'rng', 'iso-s<span class="variable-linewrap"><img src="crarr.png" alt="\" /></span> chematron.rng'))) </pre></td></tr></table> </dd> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="/">lxml API</a></th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Sat Apr 25 16:24:35 2015 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
bertucho/epic-movie-quotes-quiz
dialogos/build/lxml/doc/html/api/lxml.isoschematron-module.html
HTML
mit
23,105
<!doctype html> <html ng-app="docsApp" ng-controller="DocsCtrl" lang="en" ng-strict-di> <head> <title ng-bind="'Angular Material - ' + menu.currentSection.name + (menu.currentSection === menu.currentPage ? '' : ' > ' + menu.currentPage.name)"> Angular Material </title> <link rel="icon" type="image/x-icon" href="favicon.ico" /> <meta name="viewport" content="initial-scale=1" /> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic"> <link rel="stylesheet" href="angular-material.min.css"> <link rel="stylesheet" href="docs.css"> </head> <body layout="row" ng-cloak> <md-sidenav class="site-sidenav md-sidenav-left md-whiteframe-z2" md-component-id="left" md-is-locked-open="$mdMedia('gt-sm')"> <header class="nav-header"> <a ng-href="#/" class="docs-logo"> <img src="img/icons/angular-logo.svg"/> <h1 class="docs-logotype md-heading">Angular Material</h1> </a> </header> <ul class="skip-links"> <li class="md-whiteframe-z2"> <md-button ng-click="focusMainContent($event)" href="#">Skip to content</md-button> </li> </ul> <md-content flex role="navigation"> <ul class="docs-menu"> <li ng-repeat="section in menu.sections" class="parent-list-item {{section.className || ''}}" ng-class="{'parentActive' : isSectionSelected(section)}"> <h2 class="menu-heading md-subhead" ng-if="section.type === 'heading'" id="heading_{{ section.name | nospace }}"> {{section.name}} </h2> <menu-link section="section" ng-if="section.type === 'link'"></menu-link> <menu-toggle section="section" ng-if="section.type === 'toggle'"></menu-toggle> <ul ng-if="section.children" class="menu-nested-list"> <li ng-repeat="child in section.children" ng-class="{'childActive' : isSectionSelected(child)}"> <menu-link section="child" ng-if="child.type === 'link'"></menu-link> <menu-toggle section="child" ng-if="child.type === 'toggle'"></menu-toggle> </li> </ul> </li> </ul> </md-content> </md-sidenav> <div layout="column" tabIndex="-1" role="main" flex> <md-toolbar class="md-whiteframe-glow-z1 site-content-toolbar"> <div class="md-toolbar-tools docs-toolbar-tools" ng-click="openMenu()" tabIndex="-1"> <md-button class="md-icon-button" hide-gt-sm aria-label="Toggle Menu"> <md-icon md-svg-src="img/icons/ic_menu_24px.svg"></md-icon> </md-button> <div layout="row" flex class="fill-height"> <h2 class="md-toolbar-item md-breadcrumb md-headline"> <span ng-if="menu.currentPage.name !== menu.currentSection.name"> <span hide-sm hide-md>{{menu.currentSection.name}}</span> <span class="docs-menu-separator-icon" hide-sm hide-md style="transform: translate3d(0, 1px, 0)"> <span class="md-visually-hidden">-</span> <md-icon aria-hidden="true" md-svg-src="img/icons/ic_chevron_right_24px.svg" style="margin-top:-2px"></md-icon> </span> </span> <span class="md-breadcrumb-page">{{menu.currentPage | humanizeDoc}}</span> </h2> <span flex></span> <!-- use up the empty space --> <div class="md-toolbar-item docs-tools" layout="row"> <md-button class="md-icon-button" aria-label="Install with Bower" ng-if="!currentComponent.docs.length" target="_blank" ng-href="https://github.com/angular/bower-material"> <md-tooltip md-autohide>Install with Bower</md-tooltip> <md-icon md-svg-src="img/icons/bower-logo.svg"></md-icon> </md-button> <md-button class="md-icon-button" aria-label="Install with NPM" ng-if="!currentComponent.docs.length" target="_blank" ng-href="https://www.npmjs.com/package/angular-material"> <md-tooltip md-autohide>Install with NPM</md-tooltip> <md-icon md-svg-src="img/icons/npm-logo.svg" style="transform: scale(1.3)"></md-icon> </md-button> <md-button class="md-icon-button" aria-label="View Source on Github" ng-if="!currentComponent.docs.length" target="_blank" ng-href="{{BUILDCONFIG.repository}}/{{menu.version.current.github}}"> <md-tooltip md-autohide>View Source on Github</md-tooltip> <md-icon md-svg-src="img/icons/github.svg" style="color: rgba(255,255,255,0.97);"></md-icon> </md-button> <md-select ng-if="currentComponent.docs.length" ng-class="{ hide: path().indexOf('demo') == -1 }" ng-model="relatedPage" placeholder="API Reference" class="md-body-1"> <md-optgroup label="Directives" ng-if="(currentComponent.docs | filter: { type: 'directive' }).length"> <md-option ng-repeat="doc in currentComponent.docs | filter: { type: 'directive' }" ng-value="doc.url" ng-click="redirectToUrl(doc.url)" aria-label="{{ doc | humanizeDoc }}"> {{doc | humanizeDoc | directiveBrackets}} </md-option> </md-optgroup> <md-optgroup label="Services" ng-if="(currentComponent.docs | filter: { type: 'service' }).length"> <md-option ng-repeat="doc in currentComponent.docs | filter: { type: 'service' }" ng-value="doc.url" ng-click="redirectToUrl(doc.url)" aria-label="{{ doc | humanizeDoc }}"> {{doc | humanizeDoc | directiveBrackets}} </md-option> </md-optgroup> </md-select> <md-button class="md-icon-button" aria-label="View Demo" ng-class="{hide: !currentDoc || !currentDoc.hasDemo}" ng-href="#/demo/{{currentComponent.name}}"> <md-icon md-svg-src="img/icons/ic_play_circle_fill_24px.svg"></md-icon> <md-tooltip>View Demo</md-tooltip> </md-button> <md-button aria-label="View Source on Github" class="md-icon-button" ng-class="{hide: !currentDoc}" ng-href="{{currentDoc.githubUrl}}" hide-sm hide-md> <md-icon md-svg-src="img/icons/github-icon.svg"></md-icon> <md-tooltip>View Source on Github</md-tooltip> </md-button> </div> </div> </div> </md-toolbar> <md-content ng-view md-scroll-y flex layout-padding></md-content> </div> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-animate.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-route.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-aria.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular-messages.min.js"></script> <script src="angular-material.min.js"></script> <script src="docs.js"></script> <script src="docs-demo-scripts.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-8594346-14', 'auto'); ga('send', 'pageview'); </script> </body> </html>
StephenFluin/code.material.angularjs.org
0.9.6/index.html
HTML
mit
8,226
<!DOCTYPE HTML> <html lang="en"> <head> <title>three.js webgl - materials - cube reflection / refraction [Walt]</title> <meta charset="utf-8"> <style type="text/css"> body { background:#000; color:#fff; padding:0; margin:0; overflow:hidden; font-family:georgia; text-align:center; } a { color: #ff0080; text-decoration: none; } a:hover { color: #0080ff; } canvas { pointer-events:none; z-index:10; } #log { position:absolute; top:50px; text-align:left; display:block; z-index:100; pointer-events:none; } #d { text-align:center; margin:1em 0 -7.5em 0; z-index:1000; position:relative; display:block } .button { background:orange; color:#fff; padding:0.2em 0.5em; cursor:pointer } .inactive { background:#999; color:#eee } #oldie { margin-top:11em !important } </style> </head> <body> <div id="d"> <p><a href="http://github.com/mrdoob/three.js">Three.js</a> cube mapping demo <p>Walt Disney head by <a href="http://www.davidoreilly.com/2009/01/walt-disneys-head-on-a-plate" target="_blank">David OReilly</a> <p>Texture by <a href="http://www.humus.name/index.php?page=Textures" target="_blank">Humus</a> </div> <pre id="log"></pre> <script type="text/javascript" src="../build/Three.js"></script> <script type="text/javascript" src="js/Detector.js"></script> <script type="text/javascript" src="js/RequestAnimationFrame.js"></script> <script type="text/javascript" src="js/Stats.js"></script> <script type="text/javascript"> if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container, stats; var camera, scene, renderer; var cameraCube, sceneCube; var mesh, zmesh, lightMesh, geometry; var loader; var directionalLight, pointLight; var mouseX = 0; var mouseY = 0; var windowHalfX = window.innerWidth / 2; var windowHalfY = window.innerHeight / 2; document.addEventListener('mousemove', onDocumentMouseMove, false); init(); animate(); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); camera = new THREE.Camera( 50, window.innerWidth / window.innerHeight, 1, 5000 ); camera.position.z = 2000; cameraCube = new THREE.Camera( 50, window.innerWidth / window.innerHeight, 1, 100 ); scene = new THREE.Scene(); sceneCube = new THREE.Scene(); // LIGHTS var ambient = new THREE.AmbientLight( 0xffffff ); scene.addLight( ambient ); pointLight = new THREE.PointLight( 0xffffff, 2 ); scene.addLight( pointLight ); // light representation sphere = new THREE.SphereGeometry( 100, 16, 8 ); lightMesh = new THREE.Mesh( sphere, new THREE.MeshBasicMaterial( { color:0xffaa00 } ) ); lightMesh.position = pointLight.position; lightMesh.scale.x = lightMesh.scale.y = lightMesh.scale.z = 0.05; scene.addObject(lightMesh); var path = "textures/cube/SwedishRoyalCastle/"; var format = '.jpg'; var urls = [ path + 'px' + format, path + 'nx' + format, path + 'py' + format, path + 'ny' + format, path + 'pz' + format, path + 'nz' + format ]; var reflectionCube = THREE.ImageUtils.loadTextureCube( urls ); var refractionCube = new THREE.Texture( reflectionCube.image, new THREE.CubeRefractionMapping() ); //var cubeMaterial3 = new THREE.MeshPhongMaterial( { color: 0x000000, specular:0xaa0000, envMap: reflectionCube, combine: THREE.MixOperation, reflectivity: 0.25 } ); var cubeMaterial3 = new THREE.MeshLambertMaterial( { color: 0xff6600, envMap: reflectionCube, combine: THREE.MixOperation, reflectivity: 0.3 } ); var cubeMaterial2 = new THREE.MeshLambertMaterial( { color: 0xffee00, envMap: refractionCube, refractionRatio: 0.95 } ); var cubeMaterial1 = new THREE.MeshLambertMaterial( { color: 0xffffff, envMap: reflectionCube } ) // Skybox var shader = THREE.ShaderUtils.lib["cube"]; shader.uniforms["tCube"].texture = reflectionCube; var material = new THREE.MeshShaderMaterial( { fragmentShader: shader.fragmentShader, vertexShader: shader.vertexShader, uniforms: shader.uniforms } ), mesh = new THREE.Mesh( new THREE.CubeGeometry( 10, 10, 10, 1, 1, 1, null, true ), material ); sceneCube.addObject( mesh ); // renderer = new THREE.WebGLRenderer(); renderer.setSize( window.innerWidth, window.innerHeight ); renderer.autoClear = false; container.appendChild( renderer.domElement ); stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; stats.domElement.style.zIndex = 100; container.appendChild( stats.domElement ); loader = new THREE.BinaryLoader( true ); document.body.appendChild( loader.statusDomElement ); loader.load( { model: "obj/walt/WaltHead_bin.js", callback: function( geometry ) { createScene( geometry, cubeMaterial1, cubeMaterial2, cubeMaterial3 ) } } ); } function createScene( geometry, m1, m2, m3 ) { var s = 15; var mesh = new THREE.Mesh( geometry, m1 ); mesh.position.z = - 100; mesh.scale.x = mesh.scale.y = mesh.scale.z = s; scene.addObject( mesh ); var mesh = new THREE.Mesh( geometry, m2 ); mesh.position.x = - 900; mesh.position.z = - 100; mesh.scale.x = mesh.scale.y = mesh.scale.z = s; scene.addObject( mesh ); var mesh = new THREE.Mesh( geometry, m3 ); mesh.position.x = 900; mesh.position.z = - 100; mesh.scale.x = mesh.scale.y = mesh.scale.z = s; scene.addObject( mesh ); loader.statusDomElement.style.display = "none"; } function onDocumentMouseMove(event) { mouseX = ( event.clientX - windowHalfX ) * 4; mouseY = ( event.clientY - windowHalfY ) * 4; } // function animate() { requestAnimationFrame( animate ); render(); stats.update(); } function render() { var timer = - new Date().getTime() * 0.0002; camera.position.x += ( mouseX - camera.position.x ) * .05; camera.position.y += ( - mouseY - camera.position.y ) * .05; cameraCube.target.position.x = - camera.position.x; cameraCube.target.position.y = - camera.position.y; cameraCube.target.position.z = - camera.position.z; lightMesh.position.x = 1500 * Math.cos( timer ); lightMesh.position.z = 1500 * Math.sin( timer ); renderer.clear(); renderer.enableDepthBufferWrite( false ); renderer.render( sceneCube, cameraCube ); renderer.enableDepthBufferWrite( true ); renderer.render( scene, camera ); } function log(text) { var e = document.getElementById("log"); e.innerHTML = text + "<br/>" + e.innerHTML; } </script> </body> </html>
jeromeetienne/learningthreejs.com-backup
source/data/lost-gello-drop/webgl_materials_cubemap.html
HTML
mit
6,728
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>DocStrap Class: Person</title> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css"> <link type="text/css" rel="stylesheet" href="styles/site.cerulean.css"> </head> <body> <div class="container-fluid"> <div class="navbar navbar-fixed-top navbar-inverse"> <div class="navbar-inner"> <a class="brand" href="index.html">DocStrap</a> <ul class="nav"> <li class="dropdown"> <a href="namespaces.list.html" class="dropdown-toggle" data-toggle="dropdown">Namespaces<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="teams.html">teams</a> </li> </ul> </li> <li class="dropdown"> <a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="car.html">docstrap/car</a> </li> <li> <a href="person.html">docstrap/person</a> </li> </ul> </li> <li class="dropdown"> <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="car.Car.html">Car</a> </li> <li> <a href="person.Person.html">Person</a> </li> </ul> </li> <li class="dropdown"> <a href="mixins.list.html" class="dropdown-toggle" data-toggle="dropdown">Mixins<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="insanity.html">insanity</a> </li> </ul> </li> <li class="dropdown"> <a href="events.list.html" class="dropdown-toggle" data-toggle="dropdown">Events<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="person.Person.html#event:sneeze">sneeze</a> </li> </ul> </li> <li class="dropdown"> <a href="tutorials.list.html" class="dropdown-toggle" data-toggle="dropdown">Tutorials<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="tutorial-Teeth.html">Brush Teeth</a> </li> <li> <a href="tutorial-Car_.html">Drive Car</a> </li> </ul> </li> <li class="dropdown"> <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="global.html#brakeBias">brakeBias</a> </li> <li> <a href="global.html#drift">drift</a> </li> <li> <a href="global.html#start">start</a> </li> <li> <a href="global.html#trailBrake">trailBrake</a> </li> </ul> </li> </ul> </div> </div> <div class="row-fluid"> <div class="span8"> <div id="main"> <h1 class="page-title">Class: Person</h1> <section> <header> <h2> <span class="ancestors"><a href="person.html">docstrap/person</a>.</span> Person </h2> </header> <article> <div class="container-overview"> <dt> <h4 class="name" id="Person"><span class="type-signature"></span>new Person<span class="signature">()</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> <p>Integer quis ante ut nulla cursus vehicula id eu dolor. Phasellus ut facilisis felis. Praesent eget metus id massa pretium lobortis a et metus. Aliquam erat volutpat. Nulla ac tortor odio, quis facilisis augue. In hendrerit, lectus mollis elementum vestibulum, velit nisi aliquet orci, vitae luctus risus dui sed nisi. Donec aliquam pretium leo sed ultrices. Duis porttitor pharetra vulputate. Aenean sed neque sit amet arcu auctor placerat eget ac tellus. Proin porttitor fringilla eros quis scelerisque. Aliquam erat volutpat.</p> </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-14">line 14</a> </li></ul></dd> </dl> </dd> </div> <h3 class="subsection-title">Members</h3> <dl> <dt> <h4 class="name" id="eyes"><span class="type-signature"></span>eyes<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Aenean commodo lorem nec sapien suscipit quis hendrerit dui feugiat. Curabitur pretium congue sollicitudin. Nam eleifend ultricies libero vel iaculis. Maecenas vel elit vel lorem lacinia pellentesque. Vestibulum posuere suscipit lacus, sit amet volutpat erat sagittis vitae. Ut eleifend pretium nulla vitae tempor.</p> </div> <h5>Type:</h5> <ul> <li> <span class="param-type">number</span> </li> </ul> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-20">line 20</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="mouth"><span class="type-signature"></span>mouth<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Vestibulum viverra magna nec lectus imperdiet in lacinia ante iaculis. Cras nec urna tellus, eget convallis mauris. Fusce volutpat elementum enim, vel fringilla orci elementum vehicula. Nunc in ultrices sem. Sed augue tortor, pellentesque sed suscipit sed, vehicula eu enim.</p> </div> <h5>Type:</h5> <ul> <li> <span class="param-type">number</span> </li> </ul> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-30">line 30</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="nose"><span class="type-signature"></span>nose<span class="type-signature"> :number</span></h4> </dt> <dd> <div class="description"> <p>Donec tempus vestibulum nunc. Fusce at eleifend nisi. Proin nisl odio, ultrices fermentum eleifend nec, pellentesque in massa. Cras id turpis diam, vitae fringilla turpis. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aliquam tempus urna in lacus semper sodales. Etiam a erat in augue rhoncus porta. Aenean nec odio lorem, a tristique dui.</p> </div> <h5>Type:</h5> <ul> <li> <span class="param-type">number</span> </li> </ul> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-25">line 25</a> </li></ul></dd> </dl> </dd> </dl> <h3 class="subsection-title">Methods</h3> <dl> <dt> <h4 class="name" id="think"><span class="type-signature"></span>think<span class="signature">(well, done)</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> <p>Aliquam interdum lectus ac diam tincidunt vitae fringilla justo faucibus.</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>well</code></td> <td class="type"> <span class="param-type">Boolean</span> </td> <td class="description last"><p>Morbi sit amet tellus at justo tempus tristique.</p></td> </tr> <tr> <td class="name"><code>done</code></td> <td class="type"> <span class="param-type">function</span> </td> <td class="description last"><p>Curabitur id nulla mauris, id hendrerit magna.</p> <h6>Properties</h6> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>err</code></td> <td class="type"> <span class="param-type">object</span> </td> <td class="attributes"> &lt;optional><br> </td> <td class="description last"><p>Sed pulvinar mollis arcu, at tempus dui egestas cursus.</p></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-47">line 47</a> </li></ul></dd> </dl> </dd> <dt> <h4 class="name" id="tickle"><span class="type-signature"></span>tickle<span class="signature">()</span><span class="type-signature"> &rarr; {boolean}</span></h4> </dt> <dd> <div class="description"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi congue viverra placerat. Mauris mi nibh, pulvinar ut placerat sit amet, aliquam a diam. Maecenas vitae suscipit nulla. Sed at justo nec ante lobortis fermentum. Quisque sodales libero suscipit mi malesuada pretium. Cras a lectus vitae risus semper sagittis. Sed ultrices aliquet tempus. Nulla id nisi metus, sit amet elementum tortor. Nunc tempor sem quis augue tempor sed posuere nulla volutpat. Phasellus fringilla pulvinar lorem quis venenatis.</p> </div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-56">line 56</a> </li></ul></dd> </dl> <h5>Fires:</h5> <ul> <li><a href="person.Person.html#event:sneeze">module:docstrap/person.Person#event:sneeze</a></li> </ul> <h5>Returns:</h5> <div class="param-desc"> <p>Sed id erat ut ipsum scelerisque venenatis at nec mauris.</p> </div> <dl> <dt> Type </dt> <dd> <span class="param-type">boolean</span> </dd> </dl> </dd> <dt> <h4 class="name" id="walk"><span class="type-signature"></span>walk<span class="signature">(speed)</span><span class="type-signature"></span></h4> </dt> <dd> <div class="description"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi congue viverra placerat. Mauris mi nibh, pulvinar ut placerat sit amet, aliquam a diam. Maecenas vitae suscipit nulla. Sed at justo nec ante lobortis fermentum. Quisque sodales libero suscipit mi malesuada pretium. Cras a lectus vitae risus semper sagittis. Sed ultrices aliquet tempus. Nulla id nisi metus, sit amet elementum tortor. Nunc tempor sem quis augue tempor sed posuere nulla volutpat. Phasellus fringilla pulvinar lorem quis venenatis.</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>speed</code></td> <td class="type"> <span class="param-type">boolean</span> </td> <td class="description last"><p>Phasellus ut facilisis felis.</p></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-37">line 37</a> </li></ul></dd> </dl> </dd> </dl> <h3 class="subsection-title">Events</h3> <dl> <dt> <h4 class="name" id="event:sneeze">sneeze</h4> </dt> <dd> <div class="description"> <p>Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit.</p> </div> <h5>Type:</h5> <ul> <li> <span class="param-type">object</span> </li> </ul> <dl class="details"> <h5 class="subsection-title">Properties:</h5> <dl> <table class="props table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>tissue</code></td> <td class="type"> <span class="param-type">boolean</span> </td> <td class="description last"><p>Phasellus non justo a neque pharetra sagittis.</p></td> </tr> </tbody> </table> </dl> <dt class="tag-source">Source:</dt> <dd class="tag-source"><ul class="dummy"><li> <a href="person.js.html">person.js</a>, <a href="person.js.html#sunlight-1-line-60">line 60</a> </li></ul></dd> </dl> </dd> </dl> </article> </section> </div> <div class="clearfix"></div> <footer> <span class="copyright"> DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects. </span> <br /> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.2.0-dev</a> on Sun Jun 09 2013 11:49:55 GMT-0400 (EDT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>. </span> </footer> </div> <div class="span3"> <div id="toc"></div> </div> <br clear="both"> </div> </div> <script src="scripts/sunlight.js"></script> <script src="scripts/sunlight.javascript.js"></script> <script src="scripts/sunlight-plugin.doclinks.js"></script> <script src="scripts/sunlight-plugin.linenumbers.js"></script> <script src="scripts/sunlight-plugin.menu.js"></script> <script src="scripts/jquery.min.js"></script> <script src="scripts/jquery.scrollTo.js"></script> <script src="scripts/jquery.localScroll.js"></script> <script src="scripts/bootstrap-dropdown.js"></script> <script src="scripts/toc.js"></script> <script> Sunlight.highlightAll({lineNumbers:true, showMenu: true, enableDoclinks :true}); </script> <script> $( function () { $( "#toc" ).toc( { selectors : "h1,h2,h3,h4", showAndHide : false, scrollTo : 60 } ); $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" ); $( "#main span[id^='toc']" ).addClass( "toc-shim" ); } ); </script> </body> </html>
openilabs/crypto
node_modules/openpgp/node_modules/grunt-jsdoc/node_modules/ink-docstrap/testdocs/person.Person.html
HTML
mit
18,272
{{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }} <nav> <ul class="pager"> {{ if .Paginator.HasPrev }} <li><a href="{{ .Paginator.Prev.URL }}">Previous</a></li> {{ else }} <li class="disabled"><a href="#">Previous</a></li> {{ end }} {{ if .Paginator.HasNext }} <li><a href="{{ .Paginator.Next.URL }}">Next</a></li> {{ else }} <li class="disabled"><a href="#">Next</a></li> {{ end }} </ul> </nav> {{ end }}
trickbooter/blog
themes/hugo-theme-beg/layouts/partials/pagination.html
HTML
mit
458
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - collada - blender</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: Monospace; background-color: #000000; margin: 0px; overflow: hidden; } #info { color: #fff; position: absolute; top: 10px; width: 100%; text-align: center; z-index: 100; display:block; } a { color: red } </style> </head> <body> <div id="info"> <a href="http://github.com/mrdoob/three.js" target="_blank">three.js</a> - monster by <a href="http://www.3drt.com/downloads.htm" target="_blank">3drt</a> </div> <script src="../build/three.min.js"></script> <script src="js/loaders/ColladaLoader.js"></script> <script src="js/Detector.js"></script> <script src="js/Stats.js"></script> <script> if ( ! Detector.webgl ) Detector.addGetWebGLMessage(); var container, stats; var camera, scene, renderer, objects; var particleLight, pointLight; var dae, skin; var clock = new THREE.Clock(); var morphs = []; // Collada model var loader = new THREE.ColladaLoader(); loader.options.convertUpAxis = true; loader.load( 'models/collada/monster/monster.dae', function ( collada ) { dae = collada.scene; skin = collada.skins[ 0 ]; dae.scale.x = dae.scale.y = dae.scale.z = 0.002; dae.position.x = -1; dae.updateMatrix(); init(); animate(); } ); function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); camera = new THREE.PerspectiveCamera( 50, window.innerWidth / window.innerHeight, 1, 2000 ); camera.position.set( 2, 4, 5 ); scene = new THREE.Scene(); scene.fog = new THREE.FogExp2( 0x000000, 0.035 ); // Add Blender exported Collada model var loader = new THREE.GeometryLoader(); loader.addEventListener( 'load', function ( event ) { var geometry = event.content; // adjust color a bit var material = geometry.materials[ 0 ]; material.morphTargets = true; material.color.setHex( 0xffaaaa ); material.ambient.setHex( 0x222222 ); var faceMaterial = new THREE.MeshFaceMaterial(); for ( var i = 0; i < 729; i ++ ) { // random placement in a grid var x = ( ( i % 27 ) - 13.5 ) * 2 + THREE.Math.randFloatSpread( 1 ); var z = ( Math.floor( i / 27 ) - 13.5 ) * 2 + THREE.Math.randFloatSpread( 1 ); // leave space for big monster if ( Math.abs( x ) < 2 && Math.abs( z ) < 2 ) continue; morph = new THREE.MorphAnimMesh( geometry, faceMaterial ); // one second duration morph.duration = 1000; // random animation offset morph.time = 1000 * Math.random(); var s = THREE.Math.randFloat( 0.00075, 0.001 ); morph.scale.set( s, s, s ); morph.position.set( x, 0, z ); morph.rotation.y = THREE.Math.randFloat( -0.25, 0.25 ); morph.matrixAutoUpdate = false; morph.updateMatrix(); scene.add( morph ); morphs.push( morph ); } } ); loader.load( 'models/animated/monster/monster.js' ); // Add the COLLADA scene.add( dae ); // Lights scene.add( new THREE.AmbientLight( 0xcccccc ) ); pointLight = new THREE.PointLight( 0xff4400, 5, 30 ); pointLight.position.set( 5, 0, 0 ); scene.add( pointLight ); // Renderer renderer = new THREE.WebGLRenderer(); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); // Stats stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; container.appendChild( stats.domElement ); stats.domElement.children[ 0 ].children[ 0 ].style.color = "#aaa"; stats.domElement.children[ 0 ].style.background = "transparent"; stats.domElement.children[ 0 ].children[ 1 ].style.display = "none"; // Events window.addEventListener( 'resize', onWindowResize, false ); } // function onWindowResize( event ) { renderer.setSize( window.innerWidth, window.innerHeight ); camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); } // var t = 0; function animate() { requestAnimationFrame( animate ); // animate Collada model if ( t > 30 ) t = 0; if ( skin ) { // guess this can be done smarter... // (Indeed, there are way more frames than needed and interpolation is not used at all // could be something like - one morph per each skinning pose keyframe, or even less, // animation could be resampled, morphing interpolation handles sparse keyframes quite well. // Simple animation cycles like this look ok with 10-15 frames instead of 100 ;) for ( var i = 0; i < skin.morphTargetInfluences.length; i++ ) { skin.morphTargetInfluences[ i ] = 0; } skin.morphTargetInfluences[ Math.floor( t ) ] = 1; t += 0.5; } // animate morphs var delta = clock.getDelta(); if ( morphs.length ) { for ( var i = 0; i < morphs.length; i ++ ) morphs[ i ].updateAnimation( 1000 * delta ); } render(); stats.update(); } function render() { var timer = Date.now() * 0.0005; camera.position.x = Math.cos( timer ) * 10; camera.position.y = 4; camera.position.z = Math.sin( timer ) * 10; camera.lookAt( scene.position ); renderer.render( scene, camera ); } </script> </body> </html>
christopheschwyzer/StopheWebLab
three/source/three/examples/webgl_loader_json_blender.html
HTML
mit
5,664
<!DOCTYPE html> <!-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!-- Copyright 2008 Google Inc. All Rights Reserved. --> <html> <head> <title>Closure Unit Tests - goog.editor.plugins.ListTabHandler</title> <script src="../../base.js"></script> <script src="../../deps.js"></script> <script> goog.require('goog.dom'); goog.require('goog.editor.BrowserFeature'); goog.require('goog.editor.Command'); goog.require('goog.editor.Field'); goog.require('goog.editor.plugins.ListTabHandler'); goog.require('goog.events.BrowserEvent'); goog.require('goog.events.KeyCodes'); goog.require('goog.functions'); goog.require('goog.testing.StrictMock'); goog.require('goog.testing.editor.TestHelper'); goog.require('goog.testing.editor.FieldMock'); goog.require('goog.testing.jsunit'); </script> </head> <body> <div id="field"></div> <script> var field = goog.dom.$('field'); var editableField; var tabHandler; var testHelper; function setUp() { editableField = new goog.testing.editor.FieldMock(); // Modal mode behavior tested as part of AbstractTabHandler tests. editableField.inModalMode = goog.functions.FALSE; tabHandler = new goog.editor.plugins.ListTabHandler(); tabHandler.registerFieldObject(editableField); testHelper = new goog.testing.editor.TestHelper(field); testHelper.setUpEditableElement(); } function tearDown() { editableField = null; testHelper.tearDownEditableElement(); tabHandler.dispose(); } function testListIndentInLi() { field.innerHTML = '<ul><li>Text</li></ul>'; var testText = field.firstChild.firstChild.firstChild; // div ul li Test testHelper.select(testText, 0, testText, 4); var event = new goog.testing.StrictMock(goog.events.BrowserEvent); event.keyCode = goog.events.KeyCodes.TAB; event.shiftKey = false; editableField.execCommand(goog.editor.Command.INDENT); event.preventDefault(); editableField.$replay(); event.$replay(); assertTrue('Event must be handled', tabHandler.handleKeyboardShortcut(event, '', false)); editableField.$verify(); event.$verify(); } function testListIndentContainLi() { field.innerHTML = '<ul><li>Text</li></ul>'; var testText = field.firstChild.firstChild.firstChild; // div ul li Test testHelper.select(field.firstChild, 0, testText, 4); var event = new goog.testing.StrictMock(goog.events.BrowserEvent); event.keyCode = goog.events.KeyCodes.TAB; event.shiftKey = false; editableField.execCommand(goog.editor.Command.INDENT); event.preventDefault(); editableField.$replay(); event.$replay(); assertTrue('Event must be handled', tabHandler.handleKeyboardShortcut(event, '', false)); editableField.$verify(); event.$verify(); } function testListOutdentInLi() { field.innerHTML = '<ul><li>Text</li></ul>'; var testText = field.firstChild.firstChild.firstChild; // div ul li Test testHelper.select(testText, 0, testText, 4); var event = new goog.testing.StrictMock(goog.events.BrowserEvent); event.keyCode = goog.events.KeyCodes.TAB; event.shiftKey = true; editableField.execCommand(goog.editor.Command.OUTDENT); event.preventDefault(); editableField.$replay(); event.$replay(); assertTrue('Event must be handled', tabHandler.handleKeyboardShortcut(event, '', false)); editableField.$verify(); event.$verify(); } function testListOutdentContainLi() { field.innerHTML = '<ul><li>Text</li></ul>'; var testText = field.firstChild.firstChild.firstChild; // div ul li Test testHelper.select(field.firstChild, 0, testText, 4); var event = new goog.testing.StrictMock(goog.events.BrowserEvent); event.keyCode = goog.events.KeyCodes.TAB; event.shiftKey = true; editableField.execCommand(goog.editor.Command.OUTDENT); event.preventDefault(); editableField.$replay(); event.$replay(); assertTrue('Event must be handled', tabHandler.handleKeyboardShortcut(event, '', false)); editableField.$verify(); event.$verify(); } function testNoOp() { field.innerHTML = 'Text'; var testText = field.firstChild; testHelper.select(testText, 0, testText, 4); var event = new goog.testing.StrictMock(goog.events.BrowserEvent); event.keyCode = goog.events.KeyCodes.TAB; event.shiftKey = true; editableField.$replay(); event.$replay(); assertFalse('Event must not be handled', tabHandler.handleKeyboardShortcut(event, '', false)); editableField.$verify(); event.$verify(); } </script> </body> </html>
yesudeep/puppy
tools/google-closure-library/closure/goog/editor/plugins/listtabhandler_test.html
HTML
mit
4,955
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="generator" content="JsDoc Toolkit" /> <title>JsDoc Reference - SearchClient</title> <style type="text/css"> /* default.css */ body { font: 12px "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif; width: 800px; } .header { clear: both; background-color: #ccc; padding: 8px; } h1 { font-size: 150%; font-weight: bold; padding: 0; margin: 1em 0 0 .3em; } hr { border: none 0; border-top: 1px solid #7F8FB1; height: 1px; } pre.code { display: block; padding: 8px; border: 1px dashed #ccc; } #index { margin-top: 24px; float: left; width: 160px; position: absolute; left: 8px; background-color: #F3F3F3; padding: 8px; } #content { margin-left: 190px; width: 600px; } .classList { list-style-type: none; padding: 0; margin: 0 0 0 8px; font-family: arial, sans-serif; font-size: 1em; overflow: auto; } .classList li { padding: 0; margin: 0 0 8px 0; } .summaryTable { width: 100%; } h1.classTitle { font-size:170%; line-height:130%; } h2 { font-size: 110%; } caption, div.sectionTitle { background-color: #7F8FB1; color: #fff; font-size:130%; text-align: left; padding: 2px 6px 2px 6px; border: 1px #7F8FB1 solid; } div.sectionTitle { margin-bottom: 8px; } .summaryTable thead { display: none; } .summaryTable td { vertical-align: top; padding: 4px; border-bottom: 1px #7F8FB1 solid; border-right: 1px #7F8FB1 solid; } /*col#summaryAttributes {}*/ .summaryTable td.attributes { border-left: 1px #7F8FB1 solid; width: 140px; text-align: right; } td.attributes, .fixedFont { line-height: 15px; color: #002EBE; font-family: "Courier New",Courier,monospace; font-size: 13px; } .summaryTable td.nameDescription { text-align: left; font-size: 13px; line-height: 15px; } .summaryTable td.nameDescription, .description { line-height: 15px; padding: 4px; padding-left: 4px; } .summaryTable { margin-bottom: 8px; } ul.inheritsList { list-style: square; margin-left: 20px; padding-left: 0; } .detailList { margin-left: 20px; line-height: 15px; } .detailList dt { margin-left: 20px; } .detailList .heading { font-weight: bold; padding-bottom: 6px; margin-left: 0; } .light, td.attributes, .light a:link, .light a:visited { color: #777; font-style: italic; } .fineprint { text-align: right; font-size: 10px; } </style> </head> <body> <!-- ============================== header ================================= --> <!-- begin static/header.html --> <div id="header"> </div> <!-- end static/header.html --> <!-- ============================== classes index ============================ --> <div id="index"> <!-- begin publish.classesIndex --> <div align="center"><a href="../index.html">Class Index</a> | <a href="../files.html">File Index</a></div> <hr /> <h2>Classes</h2> <ul class="classList"> <li><i><a href="../symbols/_global_.html">_global_</a></i></li> <li><a href="../symbols/RestClient.html">RestClient</a></li> <li><a href="../symbols/SearchClient.html">SearchClient</a></li> <li><a href="../symbols/StreamClient.html">StreamClient</a></li> </ul> <hr /> <!-- end publish.classesIndex --> </div> <div id="content"> <!-- ============================== class title ============================ --> <h1 class="classTitle"> Class SearchClient </h1> <!-- ============================== class summary ========================== --> <p class="description"> <br /><i>Defined in: </i> <a href="../symbols/src/_Users_cvee_Developer_Projects_iStrategyLabs_node-twitter_lib_SearchClient.js.html">SearchClient.js</a>. </p> <!-- ============================== constructor summary ==================== --> <table class="summaryTable" cellspacing="0" summary="A summary of the constructor documented in the class SearchClient."> <caption>Class Summary</caption> <thead> <tr> <th scope="col">Constructor Attributes</th> <th scope="col">Constructor Name and Description</th> </tr> </thead> <tbody> <tr> <td class="attributes">&nbsp;</td> <td class="nameDescription" > <div class="fixedFont"> <b><a href="../symbols/SearchClient.html#constructor">SearchClient</a></b>(consumerKey, consumerSecret, token, tokenSecret) </div> <div class="description">Creates an instance of SearchClient.</div> </td> </tr> </tbody> </table> <!-- ============================== properties summary ===================== --> <!-- ============================== methods summary ======================== --> <table class="summaryTable" cellspacing="0" summary="A summary of the methods documented in the class SearchClient."> <caption>Method Summary</caption> <thead> <tr> <th scope="col">Method Attributes</th> <th scope="col">Method Name and Description</th> </tr> </thead> <tbody> <tr> <td class="attributes">&nbsp;</td> <td class="nameDescription"> <div class="fixedFont"><b><a href="../symbols/SearchClient.html#search">search</a></b>(parameters, callback) </div> <div class="description">Returns tweets that match the specified parameters.</div> </td> </tr> </tbody> </table> <!-- ============================== events summary ======================== --> <!-- ============================== constructor details ==================== --> <div class="details"><a name="constructor"> </a> <div class="sectionTitle"> Class Detail </div> <div class="fixedFont"> <b>SearchClient</b>(consumerKey, consumerSecret, token, tokenSecret) </div> <div class="description"> Creates an instance of SearchClient. </div> <dl class="detailList"> <dt class="heading">Parameters:</dt> <dt> <span class="light fixedFont">{String}</span> <b>consumerKey</b> </dt> <dd>OAuth consumer key.</dd> <dt> <span class="light fixedFont">{String}</span> <b>consumerSecret</b> </dt> <dd>OAuth consumer secret.</dd> <dt> <span class="light fixedFont">{String}</span> <b>token</b> </dt> <dd>OAuth token.</dd> <dt> <span class="light fixedFont">{String}</span> <b>tokenSecret</b> </dt> <dd>OAuth token secret.</dd> </dl> </div> <!-- ============================== field details ========================== --> <!-- ============================== method details ========================= --> <div class="sectionTitle"> Method Detail </div> <a name="search"> </a> <div class="fixedFont"> <b>search</b>(parameters, callback) </div> <div class="description"> Returns tweets that match the specified parameters. For information on acceptable parameters see the official <a href="https://dev.twitter.com/docs/api/1/get/search">Twitter documenation</a>. </div> <dl class="detailList"> <dt class="heading">Parameters:</dt> <dt> <span class="light fixedFont">{Dictionary}</span> <b>parameters</b> </dt> <dd></dd> <dt> <span class="light fixedFont">{Function}</span> <b>callback</b> </dt> <dd>The callback function.</dd> </dl> <!-- ============================== event details ========================= --> <hr /> </div> <!-- ============================== footer ================================= --> <div class="fineprint" style="clear:both"> Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Tue Apr 10 2012 17:01:44 GMT-0400 (EDT) </div> </body> </html>
sinfo/display-o-mator
node_modules/node-twitter/doc/api/symbols/SearchClient.html
HTML
mit
8,438
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js"><span id='Ext-grid-locking-HeaderContainer'>/** </span> * Private class which acts as a HeaderContainer for the Lockable which aggregates all columns * from both sides of the Lockable. It is never rendered, it's just used to interrogate the * column collection. * @private */ Ext.define('Ext.grid.locking.HeaderContainer', { extend: 'Ext.grid.header.Container', requires: [ 'Ext.grid.ColumnManager' ], <span id='Ext-grid-locking-HeaderContainer-method-constructor'> constructor: function(lockable) { </span> var me = this, events, event, eventNames = [], lockedGrid = lockable.lockedGrid, normalGrid = lockable.normalGrid; me.lockable = lockable; me.callParent(); // Create the unified column manager for the lockable grid assembly lockedGrid.visibleColumnManager.rootColumns = normalGrid.visibleColumnManager.rootColumns = lockable.visibleColumnManager = me.visibleColumnManager = new Ext.grid.ColumnManager(true, lockedGrid.headerCt, normalGrid.headerCt); lockedGrid.columnManager.rootColumns = normalGrid.columnManager.rootColumns = lockable.columnManager = me.columnManager = new Ext.grid.ColumnManager(false, lockedGrid.headerCt, normalGrid.headerCt); // Relay events from both sides' headerCts events = lockedGrid.headerCt.events; for (event in events) { if (events.hasOwnProperty(event)) { eventNames.push(event); } } me.relayEvents(lockedGrid.headerCt, eventNames); me.relayEvents(normalGrid.headerCt, eventNames); }, <span id='Ext-grid-locking-HeaderContainer-method-getRefItems'> getRefItems: function() { </span> return this.lockable.lockedGrid.headerCt.getRefItems().concat(this.lockable.normalGrid.headerCt.getRefItems()); }, <span id='Ext-grid-locking-HeaderContainer-method-getGridColumns'> // This is the function which all other column access methods are based upon </span> // Return the full column set for the whole Lockable assembly getGridColumns: function() { return this.lockable.lockedGrid.headerCt.getGridColumns().concat(this.lockable.normalGrid.headerCt.getGridColumns()); }, <span id='Ext-grid-locking-HeaderContainer-method-getColumnsState'> // Lockable uses its headerCt to gather column state </span> getColumnsState: function () { var me = this, locked = me.lockable.lockedGrid.headerCt.getColumnsState(), normal = me.lockable.normalGrid.headerCt.getColumnsState(); return locked.concat(normal); }, <span id='Ext-grid-locking-HeaderContainer-method-applyColumnsState'> // Lockable uses its headerCt to apply column state </span> applyColumnsState: function (columns) { var me = this, lockedGrid = me.lockable.lockedGrid, lockedHeaderCt = lockedGrid.headerCt, normalHeaderCt = me.lockable.normalGrid.headerCt, lockedCols = Ext.Array.toValueMap(lockedHeaderCt.items.items, 'headerId'), normalCols = Ext.Array.toValueMap(normalHeaderCt.items.items, 'headerId'), locked = [], normal = [], lockedWidth = 1, length = columns.length, i, existing, lockedDefault, col; for (i = 0; i &lt; length; i++) { col = columns[i]; lockedDefault = lockedCols[col.id]; existing = lockedDefault || normalCols[col.id]; if (existing) { if (existing.applyColumnState) { existing.applyColumnState(col); } if (existing.locked === undefined) { existing.locked = !!lockedDefault; } if (existing.locked) { locked.push(existing); if (!existing.hidden &amp;&amp; typeof existing.width == 'number') { lockedWidth += existing.width; } } else { normal.push(existing); } } } // state and config must have the same columns (compare counts for now): if (locked.length + normal.length == lockedHeaderCt.items.getCount() + normalHeaderCt.items.getCount()) { lockedHeaderCt.removeAll(false); normalHeaderCt.removeAll(false); lockedHeaderCt.add(locked); normalHeaderCt.add(normal); lockedGrid.setWidth(lockedWidth); } } });</pre> </body> </html>
rch/flask-openshift
wsgi/container/pkgs/sencha/static/ext-4.2.2.1144/docs/source/HeaderContainer.html
HTML
mit
5,430
<!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_17) on Sun Nov 03 15:35:47 CET 2013 --> <title>Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelNode (libgdx API)</title> <meta name="date" content="2013-11-03"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelNode (libgdx 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="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em> libgdx API <style> body, td, th { font-family:Helvetica, Tahoma, Arial, sans-serif; font-size:10pt } pre, code, tt { font-size:9pt; font-family:Lucida Console, Courier New, sans-serif } h1, h2, h3, .FrameTitleFont, .FrameHeadingFont, .TableHeadingColor font { font-size:105%; font-weight:bold } .TableHeadingColor { background:#EEEEFF; } a { text-decoration:none } a:hover { text-decoration:underline } a:link, a:visited { color:blue } table { border:0px } .TableRowColor td:first-child { border-left:1px solid black } .TableRowColor td { border:0px; border-bottom:1px solid black; border-right:1px solid black } hr { border:0px; border-bottom:1px solid #333366; } </style> </em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelNode.html" target="_top">Frames</a></li> <li><a href="ModelNode.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class com.badlogic.gdx.graphics.g3d.model.data.ModelNode" class="title">Uses of Class<br>com.badlogic.gdx.graphics.g3d.model.data.ModelNode</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#com.badlogic.gdx.graphics.g3d.model.data">com.badlogic.gdx.graphics.g3d.model.data</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="com.badlogic.gdx.graphics.g3d.model.data"> <!-- --> </a> <h3>Uses of <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a> in <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/package-summary.html">com.badlogic.gdx.graphics.g3d.model.data</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/package-summary.html">com.badlogic.gdx.graphics.g3d.model.data</a> declared as <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a>[]</code></td> <td class="colLast"><span class="strong">ModelNode.</span><code><strong><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html#children">children</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/package-summary.html">com.badlogic.gdx.graphics.g3d.model.data</a> with type parameters of type <a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a></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> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../../../com/badlogic/gdx/utils/Array.html" title="class in com.badlogic.gdx.utils">Array</a>&lt;<a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">ModelNode</a>&gt;</code></td> <td class="colLast"><span class="strong">ModelData.</span><code><strong><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelData.html#nodes">nodes</a></strong></code>&nbsp;</td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../../com/badlogic/gdx/graphics/g3d/model/data/ModelNode.html" title="class in com.badlogic.gdx.graphics.g3d.model.data">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> <div class="aboutLanguage"><em>libgdx API</em></div> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelNode.html" target="_top">Frames</a></li> <li><a href="ModelNode.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> <div style="font-size:9pt"><i> Copyright &copy; 2010-2013 Mario Zechner (contact@badlogicgames.com), Nathan Sweet (admin@esotericsoftware.com) </i></div> </small></p> </body> </html>
emeryduh/TeamJones_Project
libgdx/docs/api/com/badlogic/gdx/graphics/g3d/model/data/class-use/ModelNode.html
HTML
mit
8,984
<!doctype html> <html lang="en"> <head> <meta charset=" utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <meta name="viewport" content="width = device-width, minimal-ui, initial-scale = 1, user-scalable = no" /> <meta name="apple-mobile-web-app-title" content="Datagrid"> <title>Datagrid - Basic</title> <base href="/"> <style> *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body{ font-family: 'RobotoDraft', 'Roboto', 'Helvetica Neue, Helvetica, Arial', sans-serif; font-style: normal; font-weight: 300; font-size: 1.4rem; line-height: 2rem; letter-spacing: 0.01rem; color: #212121; background-color: #f5f5f5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; } .dt{ width:75%; margin:50px auto; } </style> <link href="../dist/dataTable.css" media="all" rel="stylesheet" /> <link href="../dist/themes/material.css" media="all" rel="stylesheet" /> <link href="http://fontastic.s3.amazonaws.com/Jnf54BZCm7mSjGCxNRbfp3/icons.css" rel="stylesheet"> </head> <body ng-app="app" ng-controller="HomeController"> <dtable options="options" rows="data" class="material"></dtable> <button ng-click="change()">Change data</button> <script src="../jspm_packages/system.js"></script> <script src="../config.js"></script> <script> System.import('dataTable').then(function(dt){ var module = angular.module('app', [ dt.default.name ]); module.controller('HomeController', function($scope, $http){ $scope.options = { rowHeight: 50, headerHeight: 50, footerHeight: false, scrollbarV: false, selectable: false, columns: [{ name: "Name", prop: "name", width: 300, cellRenderer: function() { return '<div>{{$cell}}</div>'; } }, { name: "Image", prop: "imgSrc", cellRenderer: function() { return '<div><img width="30" height="30" ng-src="{{$cell}}"></div>'; } },{ name: "Company", prop: "company", cellDataGetter: function(val) { return new Date().getSeconds() + ' seconds'; } }] }; $http.get('/demos/data/100.json').success(function(data) { var subData = data.splice(0, 5); for(var i=0;i<subData.length;i++){ subData[i].imgSrc= 'http://code-maven.com/img/angularjs.png'; } $scope.data = subData; }); $scope.change = function(){ for(var i=0;i<$scope.data.length;i++){ $scope.data[i].imgSrc = 'http://cdn.javabeat.net/wp-content/uploads/2014/05/angularjs.png'; } } }); }); </script> </body> </html>
kisamins-silver/kisamin-control
node_modules/angular-data-table/demos/updating.html
HTML
mit
3,353
<a href='https://github.com/angular/angular.js/edit/v1.5.x/src/ngRoute/routeParams.js?message=docs($routeParams)%3A%20describe%20your%20change...#L6' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit">&nbsp;</i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.5.0-rc.0/src/ngRoute/routeParams.js#L6' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in">&nbsp;</i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">$routeParams</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - service in module <a href="api/ngRoute">ngRoute</a> </li> </ol> </header> <div class="api-profile-description"> <p>The <code>$routeParams</code> service allows you to retrieve the current set of route parameters.</p> <p>Requires the <a href="api/ngRoute"><code>ngRoute</code></a> module to be installed.</p> <p>The route parameters are a combination of <a href="api/ng/service/$location"><code>$location</code></a>&#39;s <a href="api/ng/service/$location#search"><code>search()</code></a> and <a href="api/ng/service/$location#path"><code>path()</code></a>. The <code>path</code> parameters are extracted when the <a href="api/ngRoute/service/$route"><code>$route</code></a> path is matched.</p> <p>In case of parameter name collision, <code>path</code> params take precedence over <code>search</code> params.</p> <p>The service guarantees that the identity of the <code>$routeParams</code> object will remain unchanged (but its properties will likely change) even when a route change occurs.</p> <p>Note that the <code>$routeParams</code> are only updated <em>after</em> a route change completes successfully. This means that you cannot rely on <code>$routeParams</code> being correct in route resolve functions. Instead you can use <code>$route.current.params</code> to access the new route&#39;s parameters.</p> </div> <div> <h2 id="dependencies">Dependencies</h2> <ul> <li><a href="api/ngRoute/service/$route"><code>$route</code></a></li> </ul> <h2 id="example">Example</h2><pre><code class="lang-js">// Given: // URL: http://server.com/index.html#/Chapter/1/Section/2?search=moby // Route: /Chapter/:chapterId/Section/:sectionId // // Then $routeParams ==&gt; {chapterId:&#39;1&#39;, sectionId:&#39;2&#39;, search:&#39;moby&#39;} </code></pre> </div>
confapp/data_manager
vendor/angular-1.5.0-rc.0/docs/partials/api/ngRoute/service/$routeParams.html
HTML
mit
2,475
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>seq_packet_socket_service::native_non_blocking</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../seq_packet_socket_service.html" title="seq_packet_socket_service"> <link rel="prev" href="native_handle_type.html" title="seq_packet_socket_service::native_handle_type"> <link rel="next" href="native_non_blocking/overload1.html" title="seq_packet_socket_service::native_non_blocking (1 of 2 overloads)"> </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="native_handle_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_non_blocking/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.seq_packet_socket_service.native_non_blocking"></a><a class="link" href="native_non_blocking.html" title="seq_packet_socket_service::native_non_blocking">seq_packet_socket_service::native_non_blocking</a> </h4></div></div></div> <p> <a class="indexterm" name="id1520151"></a> Gets the non-blocking mode of the native socket implementation. </p> <pre class="programlisting"><span class="keyword">bool</span> <a class="link" href="native_non_blocking/overload1.html" title="seq_packet_socket_service::native_non_blocking (1 of 2 overloads)">native_non_blocking</a><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">)</span> <span class="keyword">const</span><span class="special">;</span> <span class="emphasis"><em>&#187; <a class="link" href="native_non_blocking/overload1.html" title="seq_packet_socket_service::native_non_blocking (1 of 2 overloads)">more...</a></em></span> </pre> <p> Sets the non-blocking mode of the native socket implementation. </p> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <a class="link" href="native_non_blocking/overload2.html" title="seq_packet_socket_service::native_non_blocking (2 of 2 overloads)">native_non_blocking</a><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">,</span> <span class="keyword">bool</span> <span class="identifier">mode</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> <span class="emphasis"><em>&#187; <a class="link" href="native_non_blocking/overload2.html" title="seq_packet_socket_service::native_non_blocking (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2012 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="native_handle_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="native_non_blocking/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
djsedulous/namecoind
libs/boost_1_50_0/doc/html/boost_asio/reference/seq_packet_socket_service/native_non_blocking.html
HTML
mit
5,271
<!DOCTYPE HTML> <html> <head> <title>DOM AutoLayout example</title> <meta name="viewport" content="width=device-width, maximum-scale=1, user-scalable=no" /> <meta name="mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black" /> <link rel="stylesheet" type="text/css" href="styles.css" /> <script type="text/javascript" src="../../dist/autolayout.js"></script> </head> <body> <div id="left"> <div id="text">AutoLayout.js DOM Example:</div> <pre id="vfl"></pre> <div id="text2">Same example written in EVFL:</div> <pre id="evfl"></pre> </div> <div id="right"> <div id="child1"><div>child1</div></div> <div id="child2"><div>child2</div></div> <div id="child3"><div>child3</div></div> <div id="child4"><div>child4</div></div> <div id="child5"><div>child5</div></div> </div> <script type="text/javascript" src="./main.js"></script> </body> </html>
SamLebarbare/autolayout.js
examples/DOM/index.html
HTML
mit
1,174
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_raw_socket::enable_connection_aborted</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../basic_raw_socket.html" title="basic_raw_socket"> <link rel="prev" href="do_not_route.html" title="basic_raw_socket::do_not_route"> <link rel="next" href="endpoint_type.html" title="basic_raw_socket::endpoint_type"> </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="do_not_route.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_raw_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="endpoint_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.basic_raw_socket.enable_connection_aborted"></a><a class="link" href="enable_connection_aborted.html" title="basic_raw_socket::enable_connection_aborted">basic_raw_socket::enable_connection_aborted</a> </h4></div></div></div> <p> <span class="emphasis"><em>Inherited from socket_base.</em></span> </p> <p> <a class="indexterm" name="idp128396688"></a> Socket option to report aborted connections on accept. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">implementation_defined</span> <span class="identifier">enable_connection_aborted</span><span class="special">;</span> </pre> <p> Implements a custom socket option that determines whether or not an accept operation is permitted to fail with <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">error</span><span class="special">::</span><span class="identifier">connection_aborted</span></code>. By default the option is false. </p> <h6> <a name="boost_asio.reference.basic_raw_socket.enable_connection_aborted.h0"></a> <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.enable_connection_aborted.examples"></a></span><a class="link" href="enable_connection_aborted.html#boost_asio.reference.basic_raw_socket.enable_connection_aborted.examples">Examples</a> </h6> <p> Setting the option: </p> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">acceptor</span> <span class="identifier">acceptor</span><span class="special">(</span><span class="identifier">io_service</span><span class="special">);</span> <span class="special">...</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">socket_base</span><span class="special">::</span><span class="identifier">enable_connection_aborted</span> <span class="identifier">option</span><span class="special">(</span><span class="keyword">true</span><span class="special">);</span> <span class="identifier">acceptor</span><span class="special">.</span><span class="identifier">set_option</span><span class="special">(</span><span class="identifier">option</span><span class="special">);</span> </pre> <p> Getting the current option value: </p> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">acceptor</span> <span class="identifier">acceptor</span><span class="special">(</span><span class="identifier">io_service</span><span class="special">);</span> <span class="special">...</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">socket_base</span><span class="special">::</span><span class="identifier">enable_connection_aborted</span> <span class="identifier">option</span><span class="special">;</span> <span class="identifier">acceptor</span><span class="special">.</span><span class="identifier">get_option</span><span class="special">(</span><span class="identifier">option</span><span class="special">);</span> <span class="keyword">bool</span> <span class="identifier">is_set</span> <span class="special">=</span> <span class="identifier">option</span><span class="special">.</span><span class="identifier">value</span><span class="special">();</span> </pre> <h6> <a name="boost_asio.reference.basic_raw_socket.enable_connection_aborted.h1"></a> <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.enable_connection_aborted.requirements"></a></span><a class="link" href="enable_connection_aborted.html#boost_asio.reference.basic_raw_socket.enable_connection_aborted.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/basic_raw_socket.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code> </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; 2003-2014 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="do_not_route.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_raw_socket.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="endpoint_type.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
biospi/seamass-windeps
src/boost_1_57_0/doc/html/boost_asio/reference/basic_raw_socket/enable_connection_aborted.html
HTML
apache-2.0
7,518
<html style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-size: 10px;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);"> <body style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif;font-size: 14px;line-height: 1.42857143;color: #333333;background-color: #ffffff;"> <div style="margin: 10px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;"> <p style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0 0 10px;margin-bottom: 20px;font-size: 16px;font-weight: 300;line-height: 1.4;"> Hello,</p><p style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0 0 10px;"><strong style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;font-weight: bold;"> #displayName#</strong> has requested identity verification. </p><p style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0 0 10px;"> For further information, please visit the user's <a href="https://www.synapse.org/#!Profile:#userid#" style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;background-color: transparent;color: #337ab7;text-decoration: none;"> home page</a>.</p> <br style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;"> <p style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0 0 10px;"> Sincerely, </p> <p style="-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;margin: 0 0 10px;"> <img src="https://s3.amazonaws.com/static.synapse.org/images/SynapseLogo2.png" style="display: inline;width: 40px;height: 40px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;border: 0;vertical-align: middle;"> Synapse Administration </p> </div> </body> </html>
xschildw/Synapse-Repository-Services
services/repository-managers/src/main/resources/message/verificationSubmissionTemplate.html
HTML
apache-2.0
2,135
<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"> <style> .KEYW {color: #933;} .COMM {color: #bbb; font-style: italic;} .NUMB {color: #393;} .STRN {color: #393;} .REGX {color: #339;} .line {border-right: 1px dotted #666; color: #666; font-style: normal;} </style></head><body><pre><span class='line'> 1</span> <span class="COMM">// Copyright 2011, Google Inc. All Rights Reserved.</span><span class="WHIT"> <span class='line'> 2</span> </span><span class="COMM">//</span><span class="WHIT"> <span class='line'> 3</span> </span><span class="COMM">// Licensed under the Apache License, Version 2.0 (the "License");</span><span class="WHIT"> <span class='line'> 4</span> </span><span class="COMM">// you may not use this file except in compliance with the License.</span><span class="WHIT"> <span class='line'> 5</span> </span><span class="COMM">// You may obtain a copy of the License at</span><span class="WHIT"> <span class='line'> 6</span> </span><span class="COMM">//</span><span class="WHIT"> <span class='line'> 7</span> </span><span class="COMM">// http://www.apache.org/licenses/LICENSE-2.0</span><span class="WHIT"> <span class='line'> 8</span> </span><span class="COMM">//</span><span class="WHIT"> <span class='line'> 9</span> </span><span class="COMM">// Unless required by applicable law or agreed to in writing, software</span><span class="WHIT"> <span class='line'> 10</span> </span><span class="COMM">// distributed under the License is distributed on an "AS IS" BASIS,</span><span class="WHIT"> <span class='line'> 11</span> </span><span class="COMM">// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</span><span class="WHIT"> <span class='line'> 12</span> </span><span class="COMM">// See the License for the specific language governing permissions and</span><span class="WHIT"> <span class='line'> 13</span> </span><span class="COMM">// limitations under the License.</span><span class="WHIT"> <span class='line'> 14</span> <span class='line'> 15</span> </span><span class="COMM">/** <span class='line'> 16</span> * @author api.anash@gmail.com (Anash P. Oommen) <span class='line'> 17</span> */</span><span class="WHIT"> <span class='line'> 18</span> <span class='line'> 19</span> </span><span class="COMM">/** <span class='line'> 20</span> * @fileoverview Defines AddAdGroupCriteria, a code example that adds a keyword <span class='line'> 21</span> * and a placement to an ad group. <span class='line'> 22</span> */</span><span class="WHIT"> <span class='line'> 23</span> <span class='line'> 24</span> </span><span class="NAME">goog.provide</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.examples.v201101.AddAdGroupCriteria'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 25</span> <span class='line'> 26</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.AdWordsService.v201101'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 27</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.examples.ExampleBase'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 28</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.AdGroupCriterionOperation'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 29</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.AdGroupCriterionService'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 30</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.BiddableAdGroupCriterion'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 31</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.Keyword'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 32</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.KeywordMatchType'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 33</span> </span><span class="NAME">goog.require</span><span class="PUNC">(</span><span class="STRN">'google.ads.adwords.v201101.Operator'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 34</span> <span class='line'> 35</span> </span><span class="COMM">/** <span class='line'> 36</span> * This code example adds a keyword and a placement to an ad group. To get <span class='line'> 37</span> * ad groups, run GetAllAdGroups.js. <span class='line'> 38</span> * <span class='line'> 39</span> * Tags: AdGroupCriterionService.mutate <span class='line'> 40</span> * <span class='line'> 41</span> * @extends google.ads.adwords.examples.ExampleBase <span class='line'> 42</span> * @constructor <span class='line'> 43</span> */</span><span class="WHIT"> <span class='line'> 44</span> <span class='line'> 45</span> </span><span class="NAME">google.ads.adwords.examples.v201101.AddAdGroupCriteria</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="KEYW">function</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'> 46</span> </span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.examples.ExampleBase.call</span><span class="PUNC">(</span><span class="KEYW">this</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 47</span> </span><span class="WHIT"> </span><span class="NAME">this.description</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="STRN">'This code example adds a keyword and a placement to an '</span><span class="WHIT"> </span><span class="PUNC">+</span><span class="WHIT"> <span class='line'> 48</span> </span><span class="WHIT"> </span><span class="STRN">'ad group. To get ad groups, run GetAllAdGroups.js.'</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 49</span> </span><span class="PUNC">}</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 50</span> </span><span class="NAME">goog.inherits</span><span class="PUNC">(</span><span class="NAME">google.ads.adwords.examples.v201101.AddAdGroupCriteria</span><span class="PUNC">,</span><span class="WHIT"> <span class='line'> 51</span> </span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.examples.ExampleBase</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 52</span> <span class='line'> 53</span> </span><span class="COMM">/** <span class='line'> 54</span> * Runs the code example. <span class='line'> 55</span> * <span class='line'> 56</span> * @param {google.ads.adwords.AdWordsUser} user AdWords user running the code <span class='line'> 57</span> * example. <span class='line'> 58</span> * @param {function} callback the callback method to be called once this example <span class='line'> 59</span> * is complete. <span class='line'> 60</span> */</span><span class="WHIT"> <span class='line'> 61</span> </span><span class="NAME">google.ads.adwords.examples.v201101.AddAdGroupCriteria.prototype.run</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> <span class='line'> 62</span> </span><span class="WHIT"> </span><span class="KEYW">function</span><span class="PUNC">(</span><span class="NAME">user</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="NAME">callback</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'> 63</span> </span><span class="WHIT"> </span><span class="COMM">// Get the AdGroupCriterionService.</span><span class="WHIT"> <span class='line'> 64</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">adGroupCriterionService</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">user.getService</span><span class="PUNC">(</span><span class="WHIT"> <span class='line'> 65</span> </span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.AdWordsService.v201101.AdGroupCriterionService</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 66</span> <span class='line'> 67</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">adGroupId</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">this._T</span><span class="PUNC">(</span><span class="STRN">'INSERT_AD_GROUP_ID_HERE'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 68</span> <span class='line'> 69</span> </span><span class="WHIT"> </span><span class="COMM">// Create keyword.</span><span class="WHIT"> <span class='line'> 70</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">keyword</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.Keyword</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 71</span> </span><span class="WHIT"> </span><span class="NAME">keyword.text</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="STRN">'mars cruise'</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 72</span> </span><span class="WHIT"> </span><span class="NAME">keyword.matchType</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.KeywordMatchType.BROAD</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 73</span> <span class='line'> 74</span> </span><span class="WHIT"> </span><span class="COMM">// Create biddable ad group criterion.</span><span class="WHIT"> <span class='line'> 75</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">keywordCriterion</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> <span class='line'> 76</span> </span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.BiddableAdGroupCriterion</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 77</span> </span><span class="WHIT"> </span><span class="NAME">keywordCriterion.adGroupId</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">adGroupId</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 78</span> </span><span class="WHIT"> </span><span class="NAME">keywordCriterion.criterion</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">keyword</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 79</span> <span class='line'> 80</span> </span><span class="WHIT"> </span><span class="COMM">// Create placement.</span><span class="WHIT"> <span class='line'> 81</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">placement</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.Placement</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 82</span> </span><span class="WHIT"> </span><span class="NAME">placement.url</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="STRN">'http://mars.google.com'</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 83</span> <span class='line'> 84</span> </span><span class="WHIT"> </span><span class="COMM">// Create biddable ad group criterion.</span><span class="WHIT"> <span class='line'> 85</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">placementCriterion</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> <span class='line'> 86</span> </span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.BiddableAdGroupCriterion</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 87</span> </span><span class="WHIT"> </span><span class="NAME">placementCriterion.adGroupId</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">adGroupId</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 88</span> </span><span class="WHIT"> </span><span class="NAME">placementCriterion.criterion</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">placement</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 89</span> <span class='line'> 90</span> </span><span class="WHIT"> </span><span class="COMM">// Create operations.</span><span class="WHIT"> <span class='line'> 91</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">keywordOperation</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> <span class='line'> 92</span> </span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.AdGroupCriterionOperation</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 93</span> </span><span class="WHIT"> </span><span class="NAME">keywordOperation.operator</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.Operator.ADD</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 94</span> </span><span class="WHIT"> </span><span class="NAME">keywordOperation.operand</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">keywordCriterion</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 95</span> <span class='line'> 96</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">placementOperation</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> <span class='line'> 97</span> </span><span class="WHIT"> </span><span class="KEYW">new</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.AdGroupCriterionOperation</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 98</span> </span><span class="WHIT"> </span><span class="NAME">placementOperation.operator</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">google.ads.adwords.v201101.Operator.ADD</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'> 99</span> </span><span class="WHIT"> </span><span class="NAME">placementOperation.operand</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">placementCriterion</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>100</span> <span class='line'>101</span> </span><span class="WHIT"> </span><span class="KEYW">try</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>102</span> </span><span class="WHIT"> </span><span class="NAME">adGroupCriterionService.mutate</span><span class="PUNC">(</span><span class="PUNC">[</span><span class="NAME">keywordOperation</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="NAME">placementOperation</span><span class="PUNC">]</span><span class="PUNC">,</span><span class="WHIT"> <span class='line'>103</span> </span><span class="WHIT"> </span><span class="NAME">goog.bind</span><span class="PUNC">(</span><span class="KEYW">function</span><span class="PUNC">(</span><span class="NAME">retval</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>104</span> </span><span class="WHIT"> </span><span class="KEYW">if</span><span class="WHIT"> </span><span class="PUNC">(</span><span class="NAME">retval</span><span class="WHIT"> </span><span class="PUNC">&&</span><span class="WHIT"> </span><span class="NAME">retval.value</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>105</span> </span><span class="WHIT"> </span><span class="KEYW">for</span><span class="WHIT"> </span><span class="PUNC">(</span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">i</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NUMB">0</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="NAME">len</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">retval.value.length</span><span class="PUNC">;</span><span class="WHIT"> </span><span class="NAME">i</span><span class="WHIT"> </span><span class="PUNC">&lt;</span><span class="WHIT"> </span><span class="NAME">len</span><span class="PUNC">;</span><span class="WHIT"> </span><span class="NAME">i</span><span class="PUNC">++</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>106</span> </span><span class="WHIT"> </span><span class="KEYW">var</span><span class="WHIT"> </span><span class="NAME">adGroupCriterion</span><span class="WHIT"> </span><span class="PUNC">=</span><span class="WHIT"> </span><span class="NAME">retval.value</span><span class="PUNC">[</span><span class="NAME">i</span><span class="PUNC">]</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>107</span> </span><span class="WHIT"> </span><span class="NAME">this.writeOutput</span><span class="PUNC">(</span><span class="STRN">'Ad group criterion with ad group id = "%s", '</span><span class="WHIT"> </span><span class="PUNC">+</span><span class="WHIT"> <span class='line'>108</span> </span><span class="WHIT"> </span><span class="STRN">'criterion id = "%s" and type = "%s" was created.'</span><span class="PUNC">,</span><span class="WHIT"> <span class='line'>109</span> </span><span class="WHIT"> </span><span class="NAME">adGroupCriterion.adGroupId</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="NAME">adGroupCriterion.criterion.id</span><span class="PUNC">,</span><span class="WHIT"> <span class='line'>110</span> </span><span class="WHIT"> </span><span class="NAME">adGroupCriterion.criterion.CriterionType</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>111</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="WHIT"> <span class='line'>112</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="WHIT"> </span><span class="KEYW">else</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>113</span> </span><span class="WHIT"> </span><span class="NAME">this.writeOutput</span><span class="PUNC">(</span><span class="STRN">'No ad group criteria were added.\n'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>114</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="WHIT"> <span class='line'>115</span> </span><span class="WHIT"> </span><span class="NAME">callback</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>116</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="KEYW">this</span><span class="PUNC">)</span><span class="PUNC">,</span><span class="WHIT"> <span class='line'>117</span> </span><span class="WHIT"> </span><span class="NAME">goog.bind</span><span class="PUNC">(</span><span class="KEYW">function</span><span class="PUNC">(</span><span class="NAME">soapException</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>118</span> </span><span class="WHIT"> </span><span class="NAME">this.writeOutput</span><span class="PUNC">(</span><span class="STRN">'"Failed to create ad group criteria. Soap Fault '</span><span class="WHIT"> </span><span class="PUNC">+</span><span class="WHIT"> <span class='line'>119</span> </span><span class="WHIT"> </span><span class="STRN">'says "%s"'</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="NAME">soapException.getInnerException</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">.</span><span class="NAME">getFaultString</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>120</span> </span><span class="WHIT"> </span><span class="NAME">callback</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>121</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="PUNC">,</span><span class="WHIT"> </span><span class="KEYW">this</span><span class="PUNC">)</span><span class="WHIT"> <span class='line'>122</span> </span><span class="WHIT"> </span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>123</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="WHIT"> </span><span class="KEYW">catch</span><span class="WHIT"> </span><span class="PUNC">(</span><span class="NAME">ex</span><span class="PUNC">)</span><span class="WHIT"> </span><span class="PUNC">{</span><span class="WHIT"> <span class='line'>124</span> </span><span class="WHIT"> </span><span class="NAME">this.writeOutput</span><span class="PUNC">(</span><span class="STRN">'An exception occurred while running the code example.'</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>125</span> </span><span class="WHIT"> </span><span class="NAME">callback</span><span class="PUNC">(</span><span class="PUNC">)</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>126</span> </span><span class="WHIT"> </span><span class="PUNC">}</span><span class="WHIT"> <span class='line'>127</span> </span><span class="PUNC">}</span><span class="PUNC">;</span><span class="WHIT"> <span class='line'>128</span> </span></pre></body></html>
gileze33/google-api-adwords-js
docs/examples/symbols/src/js_adwordsapi_examples_google_ads_adwords_v201101_AddAdGroupCriteria.js.html
HTML
apache-2.0
24,260
<html><body> <style> body, h1, h2, h3, div, span, p, pre, a { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } body { font-size: 13px; padding: 1em; } h1 { font-size: 26px; margin-bottom: 1em; } h2 { font-size: 24px; margin-bottom: 1em; } h3 { font-size: 20px; margin-bottom: 1em; margin-top: 1em; } pre, code { line-height: 1.5; font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; } pre { margin-top: 0.5em; } h1, h2, h3, p { font-family: Arial, sans serif; } h1, h2, h3 { border-bottom: solid #CCC 1px; } .toc_element { margin-top: 0.5em; } .firstline { margin-left: 2 em; } .method { margin-top: 1em; border: solid 1px #CCC; padding: 1em; background: #EEE; } .details { font-weight: bold; font-size: 14px; } </style> <h1><a href="admin_directory_v1.html">Admin SDK API</a> . <a href="admin_directory_v1.tokens.html">tokens</a></h1> <h2>Instance Methods</h2> <p class="toc_element"> <code><a href="#close">close()</a></code></p> <p class="firstline">Close httplib2 connections.</p> <p class="toc_element"> <code><a href="#delete">delete(userKey, clientId, x__xgafv=None)</a></code></p> <p class="firstline">Deletes all access tokens issued by a user for an application.</p> <p class="toc_element"> <code><a href="#get">get(userKey, clientId, x__xgafv=None)</a></code></p> <p class="firstline">Gets information about an access token issued by a user.</p> <p class="toc_element"> <code><a href="#list">list(userKey, x__xgafv=None)</a></code></p> <p class="firstline">Returns the set of tokens specified user has issued to 3rd party applications.</p> <h3>Method Details</h3> <div class="method"> <code class="details" id="close">close()</code> <pre>Close httplib2 connections.</pre> </div> <div class="method"> <code class="details" id="delete">delete(userKey, clientId, x__xgafv=None)</code> <pre>Deletes all access tokens issued by a user for an application. Args: userKey: string, Identifies the user in the API request. The value can be the user&#x27;s primary email address, alias email address, or unique user ID. (required) clientId: string, The Client ID of the application the token is issued to. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format </pre> </div> <div class="method"> <code class="details" id="get">get(userKey, clientId, x__xgafv=None)</code> <pre>Gets information about an access token issued by a user. Args: userKey: string, Identifies the user in the API request. The value can be the user&#x27;s primary email address, alias email address, or unique user ID. (required) clientId: string, The Client ID of the application the token is issued to. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # JSON template for token resource in Directory API. &quot;anonymous&quot;: True or False, # Whether the application is registered with Google. The value is `true` if the application has an anonymous Client ID. &quot;clientId&quot;: &quot;A String&quot;, # The Client ID of the application the token is issued to. &quot;displayText&quot;: &quot;A String&quot;, # The displayable name of the application the token is issued to. &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource. &quot;kind&quot;: &quot;admin#directory#token&quot;, # The type of the API resource. This is always `admin#directory#token`. &quot;nativeApp&quot;: True or False, # Whether the token is issued to an installed application. The value is `true` if the application is installed to a desktop or mobile device. &quot;scopes&quot;: [ # A list of authorization scopes the application is granted. &quot;A String&quot;, ], &quot;userKey&quot;: &quot;A String&quot;, # The unique ID of the user that issued the token. }</pre> </div> <div class="method"> <code class="details" id="list">list(userKey, x__xgafv=None)</code> <pre>Returns the set of tokens specified user has issued to 3rd party applications. Args: userKey: string, Identifies the user in the API request. The value can be the user&#x27;s primary email address, alias email address, or unique user ID. (required) x__xgafv: string, V1 error format. Allowed values 1 - v1 error format 2 - v2 error format Returns: An object of the form: { # JSON response template for List tokens operation in Directory API. &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource. &quot;items&quot;: [ # A list of Token resources. { # JSON template for token resource in Directory API. &quot;anonymous&quot;: True or False, # Whether the application is registered with Google. The value is `true` if the application has an anonymous Client ID. &quot;clientId&quot;: &quot;A String&quot;, # The Client ID of the application the token is issued to. &quot;displayText&quot;: &quot;A String&quot;, # The displayable name of the application the token is issued to. &quot;etag&quot;: &quot;A String&quot;, # ETag of the resource. &quot;kind&quot;: &quot;admin#directory#token&quot;, # The type of the API resource. This is always `admin#directory#token`. &quot;nativeApp&quot;: True or False, # Whether the token is issued to an installed application. The value is `true` if the application is installed to a desktop or mobile device. &quot;scopes&quot;: [ # A list of authorization scopes the application is granted. &quot;A String&quot;, ], &quot;userKey&quot;: &quot;A String&quot;, # The unique ID of the user that issued the token. }, ], &quot;kind&quot;: &quot;admin#directory#tokenList&quot;, # The type of the API resource. This is always `admin#directory#tokenList`. }</pre> </div> </body></html>
googleapis/google-api-python-client
docs/dyn/admin_directory_v1.tokens.html
HTML
apache-2.0
6,026
<html><body> <style> body, h1, h2, h3, div, span, p, pre, a { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-size: 100%; font-family: inherit; vertical-align: baseline; } body { font-size: 13px; padding: 1em; } h1 { font-size: 26px; margin-bottom: 1em; } h2 { font-size: 24px; margin-bottom: 1em; } h3 { font-size: 20px; margin-bottom: 1em; margin-top: 1em; } pre, code { line-height: 1.5; font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace; } pre { margin-top: 0.5em; } h1, h2, h3, p { font-family: Arial, sans serif; } h1, h2, h3 { border-bottom: solid #CCC 1px; } .toc_element { margin-top: 0.5em; } .firstline { margin-left: 2 em; } .method { margin-top: 1em; border: solid 1px #CCC; padding: 1em; background: #EEE; } .details { font-weight: bold; font-size: 14px; } </style> <h1><a href="run_v1beta1.html">Cloud Run Admin API</a> . <a href="run_v1beta1.namespaces.html">namespaces</a></h1> <h2>Instance Methods</h2> <p class="toc_element"> <code><a href="run_v1beta1.namespaces.customresourcedefinitions.html">customresourcedefinitions()</a></code> </p> <p class="firstline">Returns the customresourcedefinitions Resource.</p> <p class="toc_element"> <code><a href="#close">close()</a></code></p> <p class="firstline">Close httplib2 connections.</p> <h3>Method Details</h3> <div class="method"> <code class="details" id="close">close()</code> <pre>Close httplib2 connections.</pre> </div> </body></html>
googleapis/google-api-python-client
docs/dyn/run_v1beta1.namespaces.html
HTML
apache-2.0
1,577
<p class="lead">Company</p> <div class="row"> <div class="col-sm-8"> <div class="form-group"> <label for="p" class="control-label">Company (Doing Business As)</label> <input id="p" type="text" class="form-control input-sm" ng-model="uco.proponent.company"> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label for="website" class="control-label">Website</label> <input id="website" type="text" class="form-control input-sm" ng-model="uco.proponent.website"> </div> </div> </div> <div class="row"> <div class="col-sm-8"> <div class="form-group"> <label for="companylegal" class="control-label">Company Legal Name</label> <input id="companylegal" type="text" class="form-control input-sm" ng-model="uco.proponent.companyLegal"> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label for="website" class="control-label">Registered In</label> <select class="form-control input-sm" ng-model="uco.proponent.registeredIn" ng-options="key as value for (key, value) in uco.proponent.provs"></select> </div> </div> </div> <div class="row"> <div class="col-sm-8"> <div class="form-group"> <label for="proponent" class="control-label">Parent Company (if applicable)</label> <input id="proponent" type="text" class="form-control input-sm" ng-model="uco.proponent.parentCompany"> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label for="companytype" class="control-label">Type</label> <select id="companytype" ng-model='uco.proponent.type' class="form-control input-sm"> <option value="public">Publically Traded</option> <option value="private">Privately Owned</option> </select> </div> </div> </div> <div class="well well-sm"> <div class="row"> <div class="col-sm-12"> <div class="form-group"> <label for="address1" class="control-label">Address (Line 1)</label> <input id="address1" type="text" class="form-control input-sm" ng-model="uco.proponent.address1"> </div> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="form-group"> <label for="address2" class="control-label">Address (Line 2)</label> <input id="address2" type="text" class="form-control input-sm" ng-model="uco.proponent.address2"> </div> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="form-group"> <label for="city" class="control-label">City</label> <input id="city" type="text" class="form-control input-sm" ng-model="uco.proponent.city"> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label for="province" class="control-label">Province</label> <select class="form-control input-sm" ng-model="uco.proponent.province" ng-options="key as value for (key, value) in uco.provs"></select> </div> </div> <div class="col-sm-4"> <div class="form-group"> <label for="postal" class="control-label">Postal</label> <input id="postal" type="text" class="form-control input-sm" ng-model="uco.proponent.postal"> </div> </div> </div> </div>
logancodes/esm-server
modules/users/client/views/user-partials/user-company.html
HTML
apache-2.0
3,076
<!-- ~ Copyright 2013 Olivier Croisier ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <h2>Item details</h2> <div class="panel"> <div class="panel-heading">{{todo.title}}</div> {{todo.description}} </div> <hr/> <a href="#!/list" class="btn btn-default">Back to list</a>
jiristepan/lkpanenka-rest
war/view/display.html
HTML
apache-2.0
809
<div class="example"> <div class='u-year'> <input class="u-input" type="text"> </div> </div>
iuap-design/neoui
snippets/plugin/year/demo/base/widget.html
HTML
bsd-2-clause
99
<!doctype html> <html> <head> <script src="../resources/js-test.js"></script> <script src="resources/compatibility.js"></script> <script src="resources/audio-testing.js"></script> <script src="resources/audioparam-testing.js"></script> <title>SetTarget Followed by Linear or Exponential Ramp Is Continuous</title> </head> <body> <script> description("Test SetTarget Followed by Linear or Exponential Ramp"); window.jsTestIsAsync = true; var sampleRate = 48000; var renderQuantum = 128; // Test doesn't need to run for very long. var renderDuration = 0.1; // Where the ramp should end var rampEndTime = renderDuration - .05; var renderFrames = renderDuration * sampleRate; var timeConstant = 0.01; var audit = Audit.createTaskRunner(); // All of the tests start a SetTargetAtTime after one rendering quantum. The following tests // handle various cases where a linear or exponential ramp is scheduled at or after // SetTargetAtTime starts. audit.defineTask("linear ramp replace", function (done) { // Schedule a linear ramp to start at the same time as SetTargetAtTime. This effectively // replaces the SetTargetAtTime as if it never existed. runTest("Linear ramp", { automationFunction: function (audioparam, endValue, endTime) { audioparam.linearRampToValueAtTime(endValue, endTime); }, referenceFunction: linearResult, automationTime: renderQuantum / sampleRate, thresholdSetTarget: 0, thresholdRamp: 1.26765e-6 }).then(done); }); audit.defineTask("delayed linear ramp", function (done) { // Schedule a linear ramp to start after the SetTargetAtTime has already started rendering. // This is the main test to verify that the linear ramp is continuous with the // SetTargetAtTime curve. runTest("Delayed linear ramp", { automationFunction: function (audioparam, endValue, endTime) { audioparam.linearRampToValueAtTime(endValue, endTime); }, referenceFunction: linearResult, automationTime: 4 * renderQuantum / sampleRate, thresholdSetTarget: 2.19417e-7, thresholdRamp: 1.07972e-6 }).then(done); }); audit.defineTask("expo ramp replace", function (done) { // Like "linear ramp replace", but with an exponential ramp instead. runTest("Exponential ramp", { automationFunction: function (audioparam, endValue, endTime) { audioparam.exponentialRampToValueAtTime(endValue, endTime); }, referenceFunction: exponentialResult, automationTime: renderQuantum / sampleRate, thresholdSetTarget: 0, thresholdRamp: 1.13249e-5 }).then(done); }); audit.defineTask("delayed expo ramp", function (done) { // Like "delayed linear ramp", but with an exponential ramp instead. runTest("Delayed exponential ramp", { automationFunction: function (audioparam, endValue, endTime) { audioparam.exponentialRampToValueAtTime(endValue, endTime); }, referenceFunction: exponentialResult, automationTime: 4 * renderQuantum / sampleRate, thresholdSetTarget: 2.19417e-7, thresholdRamp: 4.17233e-6 }).then(done); }); audit.defineTask("finish", function (done) { finishJSTest(); done(); }); audit.runTasks(); function computeExpectedResult(automationTime, timeConstant, endValue, endTime, rampFunction) { // The result is a constant value of 1 for one rendering quantum, then a SetTarget event // lasting to |automationTime|, at which point a ramp starts which ends at |endValue| // at |endTime|. Then the rest of curve should be held constant at |endValue|. var initialPart = new Array(renderQuantum); initialPart.fill(1); // Generate 1 extra frame so that we know where to start the linear ramp. The last sample // of the array is where the ramp should start from. var setTargetPart = createExponentialApproachArray(renderQuantum / sampleRate, automationTime + 1 / sampleRate, 1, 0, sampleRate, timeConstant); var setTargetLength = setTargetPart.length; // Generate the ramp starting at |automationTime| with a value from last value of the // SetTarget curve above. var rampPart = rampFunction(automationTime, endTime, setTargetPart[setTargetLength - 1], endValue, sampleRate); // Finally finish out the rest with a constant value of |endValue|, if needed. var finalPart = new Array(Math.floor((renderDuration - endTime) * sampleRate)); finalPart.fill(endValue); // Return the four parts separately for testing. return { initialPart: initialPart, setTargetPart: setTargetPart.slice(0, setTargetLength - 1), rampPart: rampPart, tailPart: finalPart }; } function linearResult(automationTime, timeConstant, endValue, endTime) { return computeExpectedResult(automationTime, timeConstant, endValue, endTime, createLinearRampArray); } function exponentialResult(automationTime, timeConstant, endValue, endTime) { return computeExpectedResult(automationTime, timeConstant, endValue, endTime, createExponentialRampArray); } // Run test to verify that a SetTarget followed by a ramp produces a continuous curve. // |prefix| is a string to use as a prefix for the messages. |options| is a dictionary // describing how the test is run: // // |options.automationFunction| // The function to use to start the automation, which should be a linear or exponential // ramp automation. This function has three arguments: // audioparam - the AudioParam to be automated // endValue - the end value of the ramp // endTime - the end time fo the ramp. // |options.referenceFunction| // The function to generated the expected result. This function has four arguments: // automationTime - the value of |options.automationTime| // timeConstant - time constant used for SetTargetAtTime // rampEndValue - end value for the ramp (same value used for automationFunction) // rampEndTime - end time for the ramp (same value used for automationFunction) // |options.automationTime| // Time at which the |automationFunction| is called to start the automation. // |options.thresholdSetTarget| // Threshold to use for verifying that the initial (if any) SetTargetAtTime portion had // the correct values. // |options.thresholdRamp| // Threshold to use for verifying that the ramp portion had the correct values. function runTest(prefix, options) { var automationFunction = options.automationFunction; var referenceFunction = options.referenceFunction; var automationTime = options.automationTime; var thresholdSetTarget = options.thresholdSetTarget || 0; var thresholdRamp = options.thresholdRamp || 0; // End value for the ramp. Fairly arbitrary, but should be distinctly different from the // target value for SetTargetAtTime and the initial value of gain.gain. var rampEndValue = 2; var context = new OfflineAudioContext(1, renderFrames, sampleRate); // A constant source of amplitude 1. var source = context.createBufferSource(); source.buffer = createConstantBuffer(context, 1, 1); source.loop = true; var gain = context.createGain(); // The SetTarget starts after one rendering quantum. gain.gain.setTargetAtTime(0, renderQuantum / context.sampleRate, timeConstant); // Schedule the ramp at |automationTime|. If this time is past the first rendering quantum, // the SetTarget event will run for a bit before running the ramp. Otherwise, the SetTarget // should be completely replaced by the ramp. context.suspend(automationTime) .then(function () { automationFunction(gain.gain, rampEndValue, rampEndTime); context.resume(); }); source.connect(gain); gain.connect(context.destination); source.start(); return context.startRendering().then(function (resultBuffer) { var success = true; var result = resultBuffer.getChannelData(0); var expected = referenceFunction(automationTime, timeConstant, rampEndValue, rampEndTime); // Verify each part of the curve separately. var startIndex = 0; var length = expected.initialPart.length; // Verify that the initial part of the curve is constant. success = Should(prefix + ": Initial part", result.slice(0, length)) .beCloseToArray(expected.initialPart, 0) && success; // Verify the SetTarget part of the curve, if the SetTarget did actually run. startIndex += length; length = expected.setTargetPart.length; if (length) { success = Should(prefix + ": SetTarget part", result.slice(startIndex, startIndex + length)) .beCloseToArray(expected.setTargetPart, thresholdSetTarget) && success; } else { testPassed("SetTarget part was correctly replaced by the ramp"); } // Verify the ramp part of the curve startIndex += length; length = expected.rampPart.length; success = Should(prefix, result.slice(startIndex, startIndex + length), { verbose: true }).beCloseToArray(expected.rampPart, thresholdRamp) && success; // Verify that the end of the curve after the ramp (if any) is a constant. startIndex += length; success = Should(prefix + ": Tail part", result.slice(startIndex)) .beCloseToArray(expected.tailPart, 0) && success; if (success) testPassed(prefix + " preceded by SetTarget is continuous.\n"); else testFailed(prefix + " preceded by SetTarget was not continuous.\n"); }); } </script> </body> </html>
axinging/chromium-crosswalk
third_party/WebKit/LayoutTests/webaudio/audioparam-setTargetAtTime-continuous.html
HTML
bsd-3-clause
10,541
<html> <head> <script src="../../http/tests/inspector/inspector-test.js"></script> <script src="../../http/tests/inspector/timeline-test.js"></script> <script> function test() { var sessionId = "4.20"; var mainThread = 1; var pid = 100; var testData = [ { "args": { "sessionId": sessionId }, "cat": "disabled-by-default-devtools.timeline", "name": "TracingStartedInPage", "ph": "I", "pid": pid, "tid": mainThread, "ts": 100, }, {"name": "top level event name", "ts": 1000000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"toplevel", "args": {}}, {"name": "TimeStamp", "ts": 1010000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar01"}}}, {"name": "TimeStamp", "ts": 1020000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar02"}}}, {"name": "TimeStamp", "ts": 1120000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar03"}}}, {"name": "TimeStamp", "ts": 1180000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "TimeStamp", "ts": 1210000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar04"}}}, {"name": "TimeStamp", "ts": 1220000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo05"}}}, {"name": "TimeStamp", "ts": 1320000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar06"}}}, {"name": "TimeStamp", "ts": 1380000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "TimeStamp", "ts": 1410000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar07"}}}, {"name": "TimeStamp", "ts": 1420000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo08"}}}, {"name": "TimeStamp", "ts": 1520000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo09"}}}, {"name": "TimeStamp", "ts": 1580000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "top level event name", "ts": 1990000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"toplevel", "args": {}}, {"name": "Program", "ts": 2000000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "TimeStamp", "ts": 2010000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo10"}}}, {"name": "TimeStamp", "ts": 2020000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar11"}}}, {"name": "TimeStamp", "ts": 2120000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar12"}}}, {"name": "TimeStamp", "ts": 2180000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "TimeStamp", "ts": 2210000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo13"}}}, {"name": "TimeStamp", "ts": 2220000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo14"}}}, {"name": "TimeStamp", "ts": 2320000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"bar15"}}}, {"name": "TimeStamp", "ts": 2380000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "TimeStamp", "ts": 2410000, "ph": "B", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo16"}}}, {"name": "TimeStamp", "ts": 2420000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo17"}}}, {"name": "TimeStamp", "ts": 2520000, "ph": "I", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {"data":{"message":"foo18"}}}, {"name": "TimeStamp", "ts": 2580000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}}, {"name": "Program", "ts": 2590000, "ph": "E", "tid": mainThread, "pid": pid, "cat":"disabled-by-default-devtools.timeline", "args": {}} ]; var panel = WebInspector.panels.timeline; var model = InspectorTest.timelinePresentationModel(); InspectorTest.timelineModel().setEventsForTest(testData); function printRecord(record) { var prefix = []; var current = record.presentationParent(); while (current) { current = current.presentationParent(); prefix.push(" "); } var mark = record.expandable() ? (record.collapsed() ? "+" : "-") : " "; InspectorTest.addResult(prefix.join("") + mark + record.record().data().message); } function dumpRecords() { var records = model.filteredRecords(); for (var i = 0; i < records.length; ++i) printRecord(records[i]); InspectorTest.addResult(""); } InspectorTest.addResult("Initial:"); dumpRecords(); InspectorTest.addResult("Filtered by 'bar':"); panel._filters._textFilterUI.setValue("bar"); dumpRecords(); InspectorTest.addResult("Collapsed 'bar04' and 'foo13':"); var records = model.filteredRecords(); var collapseList = {"bar04":true, "foo13": true}; for (var i = 0; i < records.length; ++i) { var record = records[i]; if (collapseList[record.record().data().message]) record.setCollapsed(true); } model.invalidateFilteredRecords(); dumpRecords(); InspectorTest.addResult("Filtered by 'foo':"); panel._filters._textFilterUI.setValue("foo"); dumpRecords(); InspectorTest.completeTest(); } </script> </head> <body onload="runTest()"> <p> Test filtering on timeline panel.</a> </p> </body> </html>
vadimtk/chrome4sdp
third_party/WebKit/LayoutTests/inspector/tracing/timeline-filtering.html
HTML
bsd-3-clause
6,882
<!DOCTYPE html> <html> <title>Slow loading background image in inline stylesheet</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <div id="log"></div> <script> var t = async_test(undefined, {timeout:4000}); //We assume that the page would have loaded before the timeout if it wasn't waiting for the image timeout_fired = false; setTimeout(t.step_func(function() {timeout_fired = true;}), 1000); onload = t.step_func(function() {assert_true(timeout_fired); t.done()}); var style = document.createElement("style"); style.textContent = "#test {background-image:url(\"_files/slice-and-dice.cgi?file=1x1-green.png&parts=d2\"); background-repeat:repeat; background-color:orange;}"; document.head.appendChild(style); </script> <div id="test">Test</div>
frivoal/presto-testo
core/standards/scripts/onload/050.html
HTML
bsd-3-clause
858
<?xml version="1.0" encoding="UTF-8"?> <!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>Tests spread methods for linear and radial gradients</title> </head> <body> <table> <tr> <td align="center">SVG Image</td> <td align="center">Reference Image</td> </tr> <tr> <td align="right"> <object data="../svggen/pservers-grad-14-b.svg" width="480" height="360" type="image/svg+xml"/> </td> <td align="left"> <img alt="raster image of pservers-grad-14-b" src="../png/full-pservers-grad-14-b.png" width="480" height="360"/> </td> </tr> </table> <p> Pass if the rendered picture match the reference image exactly, except for variations in the labeling text (per CSS2 rules). </p> </body> </html>
frivoal/presto-testo
SVG/Testsuites/W3C/basic/full-pservers-grad-14-b.html
HTML
bsd-3-clause
888
<!DOCTYPE html> <title>flexbox | computed style | flex: invalid</title> <style> body { color: red; flex: 0 1 1; } .PASS {color: black;} </style> <h1>FAIL, enable javascript</h1> <script> var body = document.body; var passed = (getComputedStyle(body).getPropertyValue("flex-grow") == "0" && getComputedStyle(body).getPropertyValue("flex-shrink") == "1" && getComputedStyle(body).getPropertyValue("flex-basis") == "auto"); body.textContent = body.className = passed ? "PASS" : "FAIL"; try{top.opener.rr(passed)}catch(e){} </script>
frivoal/presto-testo
css/flexbox/getcomputedstyle/flex-shorthand-invalid.html
HTML
bsd-3-clause
579
<!doctype html> <!-- This file is generated by build.py. --> <title>object tall.jpg; overflow:hidden; -o-object-fit:none; -o-object-position:bottom 50% /* INVALID */</title> <link rel="stylesheet" href="../../support/reftests.css"> <link rel='match' href='hidden_none_bottom_50-ref.html'> <style> #test > * { overflow:hidden; -o-object-fit:none; -o-object-position:bottom 50% /* INVALID */ } </style> <div id="test"> <object data="../../support/tall.jpg"></object> </div>
frivoal/presto-testo
css/image-fit/reftests/object-jpg-tall/hidden_none_bottom_50.html
HTML
bsd-3-clause
474
<!doctype html> <title>Reference for img wide.jpg; overflow:hidden; -o-object-fit:none; -o-object-position:bottom right</title> <link rel="stylesheet" href="../../support/reftests.css"> <style> .helper { overflow:hidden } .helper > * { right:0; bottom:0; } </style> <div id="ref"> <span class="helper"><img src="../../support/wide.jpg"></span> </div>
frivoal/presto-testo
css/image-fit/reftests/keywords-in-other-order/hidden_none_bottom_right-ref.html
HTML
bsd-3-clause
355
<?xml version="1.0" encoding="UTF-8"?> <!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"/> <meta name="keywords" content="W3C SVG 1.1 2nd Edition Test Suite"/> <meta name="description" content="W3C SVG 1.1 2nd Edition Object Test Suite"/> <title> <d:testDescription href='http://www.w3.org/TR/SVG11/text.html#FontPropertiesUsedBySVG' xmlns='http://www.w3.org/1999/xhtml'> <p> This tests the 'font-weight' property when multiple weights are available. A font family with five weights is specified, with a fallback to 'serif'. </p> <p> The specified font family has five weights - 300, 400, 600, 700 and 800. See the CSS3 Font specification for how these are allocated to the nine weight numbers. </p> <p> The absolute keywords 'normal' and bold' are tested by the first two lines on the right hand side of the test, the third line of text tests the to 'bolder' relative keyword and the fourth tests the 'lighter' relative keyword. </p> <p>The fonts are SVG fonts convertted, with the author's explicit permission, from <a href='http://justanotherfoundry.com/Zalamander/index.htm'>Zalamander Caps</a> by Tim Ahrens of <a href='http://justanotherfoundry.com/'>Just Another Foundry</a>. An ASCII subset has been generated for this test. The font names have been obfuscated to deter user agent sniffing for keywords like "Ultrabold". All weights in this generated family are multiples of 100 and greater or equal to 300.</p> </d:testDescription> </title> <style type="text/css"> <!-- .bodytext { font-family:verdana, helvetica, sans-serif; font-size: 12pt; line-height: 125%; text-align: Left; margin-top: 0; margin-bottom: 0 } .pageTitle { line-height: 150%; font-size: 20pt; font-weight : 900; margin-bottom: 20pt } .pageSubTitle { color : blue; line-height: 100%; font-size: 24pt; font-weight : 900 } .openChapter { color : blue; line-height: 125%; font-weight : 900 } .openSection { color : blue; line-height: 125%; font-weight : 900 } .info { color : black; line-height: 110%; font-size: 10pt; font-weight : 100 } p { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 } blockquote { margin-top:0; margin-bottom:0; padding-top:0; padding-bottom:0 } .opscript { margin-left: 3%; margin-right: 3%; } .opscript p { margin-top: 0.7em } .navbar { background: black; color: white; font-weight: bold } a,a:visited { color: blue } --> </style> </head> <body class="bodytext"> <table align="center" border="0" cellspacing="0" cellpadding="10"> <tr> <td align="center" colspan="3"> <table border="0" cellpadding="8"> <tr> </tr> <tr class="navbar"> <td align="center"> SVG Image - The test </td> <td align="center"> PNG Image - The reference </td> </tr> <tr> <td align="right" > <object id="test" data="http://t/core/standards/SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/svg/test/text-fonts-203-t.svg" width="480" height="360" type="image/svg+xml"> </object> </td> <td align="left"> <img id="ref" alt="raster image of text-fonts-203-t.svg" src="http://t/core/standards/SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/svg/ref/text-fonts-203-t.png " width="480" height="360"/> </td> </tr> </table> </td> </tr> </table> <h2 id="testdescription"> Test Description </h2> <div> <p> <d:testDescription href='http://www.w3.org/TR/SVG11/text.html#FontPropertiesUsedBySVG' xmlns='http://www.w3.org/1999/xhtml'> <p> This tests the 'font-weight' property when multiple weights are available. A font family with five weights is specified, with a fallback to 'serif'. </p> <p> The specified font family has five weights - 300, 400, 600, 700 and 800. See the CSS3 Font specification for how these are allocated to the nine weight numbers. </p> <p> The absolute keywords 'normal' and bold' are tested by the first two lines on the right hand side of the test, the third line of text tests the to 'bolder' relative keyword and the fourth tests the 'lighter' relative keyword. </p> <p>The fonts are SVG fonts convertted, with the author's explicit permission, from <a href='http://justanotherfoundry.com/Zalamander/index.htm'>Zalamander Caps</a> by Tim Ahrens of <a href='http://justanotherfoundry.com/'>Just Another Foundry</a>. An ASCII subset has been generated for this test. The font names have been obfuscated to deter user agent sniffing for keywords like "Ultrabold". All weights in this generated family are multiples of 100 and greater or equal to 300.</p> </d:testDescription> </p> </div> <div class="opscript"> <h2 id="operatorscript"> Operator Script </h2> <div> <p><d:operatorScript xmlns='http://www.w3.org/1999/xhtml'> <p> Run the test. No interaction required. </p> </d:operatorScript></p> </div> <h2 id="passcriteria"> Pass Criteria </h2> <div> <p> <d:passCriteria xmlns='http://www.w3.org/1999/xhtml'> <p> The numerical weight values (100 to 900) should show the lighter weights on the lower numbers and the heavier weights on the larger numbers. Heavier is defined to mean 'no lighter'. </p> </d:passCriteria> </p> </div> </div> </div> </body> </html> </body> </html>
frivoal/presto-testo
SVG/Testsuites/W3C-1_1F2/harness/htmlObjectMini/modified/text-fonts-203-t.html
HTML
bsd-3-clause
6,148
<!DOCTYPE html> <!-- #docplaster --> <!-- #docregion --> <html> <head> <title>Hero Form</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- #docregion bootstrap --> <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css"> <!-- #enddocregion bootstrap --> <!-- #docregion styles --> <link rel="stylesheet" href="styles.css"> <link rel="stylesheet" href="forms.css"> <!-- #enddocregion styles --> <!-- IE required polyfill --> <script src="node_modules/core-js/client/shim.min.js"></script> <script src="node_modules/zone.js/dist/zone.js"></script> <script src="node_modules/reflect-metadata/Reflect.js"></script> <script src="node_modules/rxjs/bundles/Rx.umd.js"></script> <script src="node_modules/@angular/core/bundles/core.umd.js"></script> <script src="node_modules/@angular/common/bundles/common.umd.js"></script> <script src="node_modules/@angular/compiler/bundles/compiler.umd.js"></script> <script src="node_modules/@angular/forms/bundles/forms.umd.js"></script> <script src="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js"></script> <script src="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"></script> <!-- #docregion scripts-hero, scripts-hero-form --> <script src='app/hero.js'></script> <!-- #enddocregion scripts-hero --> <script src='app/hero-form.component.js'></script> <!-- #enddocregion scripts-hero-form --> <!-- #docregion scripts, scripts-hero, scripts-hero-form --> <script src='app/app.component.js'></script> <script src='app/main.js'></script> <!-- #enddocregion scripts, scripts-hero, scripts-hero-form --> </head> <body> <my-app>Loading...</my-app> </body> </html>
Adam-Meisen/angular.io
public/docs/_examples/forms/js/index.html
HTML
mit
1,835
@(field: play.api.data.Field, strict: Boolean, validFen: Option[lila.setup.ValidFen])(implicit ctx: Context) <div class="fen_position optional_config" data-validate-url="@{routes.Setup.validateFen()}@{strict.??("?strict=1")}"> @defining(field.value.fold(routes.Editor.index)(routes.Editor.load).url) { href => <div class="fen_form"> <a class="button thin hint--bottom" data-hint="@trans.boardEditor()" href="@href"> <span data-icon="m"></span> </a> @base.input(field, placeholder=trans.pasteTheFenStringHere.str().some) </div> <a class="board_editor" href="@href"> <span class="preview">@validFen.map { vf => @game.miniBoard(vf.fen, vf.color.name) }</span> </a> } </div>
Happy0/lila
app/views/setup/fenInput.scala.html
HTML
mit
718
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <TITLE> org.apache.poi.openxml4j.util Class Hierarchy (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="org.apache.poi.openxml4j.util Class Hierarchy (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"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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/poi/openxml4j/opc/internal/unmarshallers/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/poi/poifs/common/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/poi/openxml4j/util/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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> Hierarchy For Package org.apache.poi.openxml4j.util </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.Object<UL> <LI TYPE="circle">java.io.InputStream (implements java.io.Closeable) <UL> <LI TYPE="circle">java.io.FilterInputStream<UL> <LI TYPE="circle">java.io.PushbackInputStream<UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipSecureFile.ThresholdInputStream.html" title="class in org.apache.poi.openxml4j.util"><B>ZipSecureFile.ThresholdInputStream</B></A></UL> </UL> </UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/Nullable.html" title="class in org.apache.poi.openxml4j.util"><B>Nullable</B></A>&lt;E&gt;<LI TYPE="circle">java.util.zip.ZipEntry (implements java.lang.Cloneable) <UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.FakeZipEntry.html" title="class in org.apache.poi.openxml4j.util"><B>ZipInputStreamZipEntrySource.FakeZipEntry</B></A></UL> <LI TYPE="circle">java.util.zip.ZipFile<UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipSecureFile.html" title="class in org.apache.poi.openxml4j.util"><B>ZipSecureFile</B></A></UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipFileZipEntrySource.html" title="class in org.apache.poi.openxml4j.util"><B>ZipFileZipEntrySource</B></A> (implements org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipEntrySource.html" title="interface in org.apache.poi.openxml4j.util">ZipEntrySource</A>) <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.html" title="class in org.apache.poi.openxml4j.util"><B>ZipInputStreamZipEntrySource</B></A> (implements org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipEntrySource.html" title="interface in org.apache.poi.openxml4j.util">ZipEntrySource</A>) </UL> </UL> <H2> Interface Hierarchy </H2> <UL> <LI TYPE="circle">org.apache.poi.openxml4j.util.<A HREF="../../../../../org/apache/poi/openxml4j/util/ZipEntrySource.html" title="interface in org.apache.poi.openxml4j.util"><B>ZipEntrySource</B></A></UL> <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"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&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/poi/openxml4j/opc/internal/unmarshallers/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/poi/poifs/common/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/poi/openxml4j/util/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.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 2016 The Apache Software Foundation or its licensors, as applicable.</i> </BODY> </HTML>
Sebaxtian/KDD
poi-3.14/docs/apidocs/org/apache/poi/openxml4j/util/package-tree.html
HTML
mit
8,514
<!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_71) on Thu Sep 10 12:29:43 NZST 2015 --> <title>Euclidean</title> <meta name="date" content="2015-09-10"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Euclidean"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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="../../../../weka/core/pmml/jaxbbindings/DocumentTermMatrix.html" title="class in weka.core.pmml.jaxbbindings"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../weka/core/pmml/jaxbbindings/EventValues.html" title="class in weka.core.pmml.jaxbbindings"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?weka/core/pmml/jaxbbindings/Euclidean.html" target="_top">Frames</a></li> <li><a href="Euclidean.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&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>Field&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">weka.core.pmml.jaxbbindings</div> <h2 title="Class Euclidean" class="title">Class Euclidean</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>weka.core.pmml.jaxbbindings.Euclidean</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">Euclidean</span> extends java.lang.Object</pre> <div class="block"><p>Java class for euclidean element declaration. <p>The following schema fragment specifies the expected content contained within this class. <pre> &lt;element name="euclidean"> &lt;complexType> &lt;complexContent> &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> &lt;sequence> &lt;element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/> &lt;/sequence> &lt;/restriction> &lt;/complexContent> &lt;/complexType> &lt;/element> </pre></div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../weka/core/pmml/jaxbbindings/Euclidean.html#Euclidean()">Euclidean</a></strong>()</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="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>java.util.List&lt;<a href="../../../../weka/core/pmml/jaxbbindings/Extension.html" title="class in weka.core.pmml.jaxbbindings">Extension</a>&gt;</code></td> <td class="colLast"><code><strong><a href="../../../../weka/core/pmml/jaxbbindings/Euclidean.html#getExtension()">getExtension</a></strong>()</code> <div class="block">Gets the value of the extension property.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="Euclidean()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>Euclidean</h4> <pre>public&nbsp;Euclidean()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="getExtension()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>getExtension</h4> <pre>public&nbsp;java.util.List&lt;<a href="../../../../weka/core/pmml/jaxbbindings/Extension.html" title="class in weka.core.pmml.jaxbbindings">Extension</a>&gt;&nbsp;getExtension()</pre> <div class="block">Gets the value of the extension property. <p> This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for the extension property. <p> For example, to add a new item, do as follows: <pre> getExtension().add(newItem); </pre> <p> Objects of the following type(s) are allowed in the list <a href="../../../../weka/core/pmml/jaxbbindings/Extension.html" title="class in weka.core.pmml.jaxbbindings"><code>Extension</code></a></div> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="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="../../../../weka/core/pmml/jaxbbindings/DocumentTermMatrix.html" title="class in weka.core.pmml.jaxbbindings"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../weka/core/pmml/jaxbbindings/EventValues.html" title="class in weka.core.pmml.jaxbbindings"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?weka/core/pmml/jaxbbindings/Euclidean.html" target="_top">Frames</a></li> <li><a href="Euclidean.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&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>Field&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>
rosygupta/hack-the-talk
weka-3-7-13/doc/weka/core/pmml/jaxbbindings/Euclidean.html
HTML
mit
9,652
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.commons.math3.transform.DstNormalization (Apache Commons Math 3.5 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.commons.math3.transform.DstNormalization (Apache Commons Math 3.5 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/transform//class-useDstNormalization.html" target="_top">FRAMES</a></li> <li><a href="DstNormalization.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.commons.math3.transform.DstNormalization" class="title">Uses of Class<br>org.apache.commons.math3.transform.DstNormalization</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.commons.math3.transform">org.apache.commons.math3.transform</a></td> <td class="colLast"> <div class="block">Implementations of transform methods, including Fast Fourier transforms.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.commons.math3.transform"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a> in <a href="../../../../../../org/apache/commons/math3/transform/package-summary.html">org.apache.commons.math3.transform</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/commons/math3/transform/package-summary.html">org.apache.commons.math3.transform</a> that return <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a></code></td> <td class="colLast"><span class="strong">DstNormalization.</span><code><strong><a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html#valueOf(java.lang.String)">valueOf</a></strong>(<a href="http://docs.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a>[]</code></td> <td class="colLast"><span class="strong">DstNormalization.</span><code><strong><a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructors in <a href="../../../../../../org/apache/commons/math3/transform/package-summary.html">org.apache.commons.math3.transform</a> with parameters of type <a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/math3/transform/FastSineTransformer.html#FastSineTransformer(org.apache.commons.math3.transform.DstNormalization)">FastSineTransformer</a></strong>(<a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">DstNormalization</a>&nbsp;normalization)</code> <div class="block">Creates a new instance of this class, with various normalization conventions.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/math3/transform/DstNormalization.html" title="enum in org.apache.commons.math3.transform">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/transform//class-useDstNormalization.html" target="_top">FRAMES</a></li> <li><a href="DstNormalization.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; 2003&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
AlexFiliakov/BlackScholesCalculator
src/com/alexfiliakov/blackscholescalc/commons-math3-3.5/docs/apidocs/org/apache/commons/math3/transform/class-use/DstNormalization.html
HTML
mit
9,059
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.apache.commons.math3.analysis.DifferentiableMultivariateFunction (Apache Commons Math 3.5 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.apache.commons.math3.analysis.DifferentiableMultivariateFunction (Apache Commons Math 3.5 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/analysis//class-useDifferentiableMultivariateFunction.html" target="_top">FRAMES</a></li> <li><a href="DifferentiableMultivariateFunction.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 Interface org.apache.commons.math3.analysis.DifferentiableMultivariateFunction" class="title">Uses of Interface<br>org.apache.commons.math3.analysis.DifferentiableMultivariateFunction</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.commons.math3.analysis">org.apache.commons.math3.analysis</a></td> <td class="colLast"> <div class="block"> Parent package for common numerical analysis procedures, including root finding, function interpolation and integration.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="#org.apache.commons.math3.optimization.general">org.apache.commons.math3.optimization.general</a></td> <td class="colLast"> <div class="block">This package provides optimization algorithms that require derivatives.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.commons.math3.analysis"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a> in <a href="../../../../../../org/apache/commons/math3/analysis/package-summary.html">org.apache.commons.math3.analysis</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/commons/math3/analysis/package-summary.html">org.apache.commons.math3.analysis</a> that return <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a></code></td> <td class="colLast"><span class="strong">FunctionUtils.</span><code><strong><a href="../../../../../../org/apache/commons/math3/analysis/FunctionUtils.html#toDifferentiableMultivariateFunction(org.apache.commons.math3.analysis.differentiation.MultivariateDifferentiableFunction)">toDifferentiableMultivariateFunction</a></strong>(<a href="../../../../../../org/apache/commons/math3/analysis/differentiation/MultivariateDifferentiableFunction.html" title="interface in org.apache.commons.math3.analysis.differentiation">MultivariateDifferentiableFunction</a>&nbsp;f)</code> <div class="block"><strong>Deprecated.</strong>&nbsp; <div class="block"><i>this conversion method is temporary in version 3.1, as the <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis"><code>DifferentiableMultivariateFunction</code></a> interface itself is deprecated</i></div> </div> </td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/commons/math3/analysis/package-summary.html">org.apache.commons.math3.analysis</a> with parameters of type <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/commons/math3/analysis/differentiation/MultivariateDifferentiableFunction.html" title="interface in org.apache.commons.math3.analysis.differentiation">MultivariateDifferentiableFunction</a></code></td> <td class="colLast"><span class="strong">FunctionUtils.</span><code><strong><a href="../../../../../../org/apache/commons/math3/analysis/FunctionUtils.html#toMultivariateDifferentiableFunction(org.apache.commons.math3.analysis.DifferentiableMultivariateFunction)">toMultivariateDifferentiableFunction</a></strong>(<a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a>&nbsp;f)</code> <div class="block"><strong>Deprecated.</strong>&nbsp; <div class="block"><i>this conversion method is temporary in version 3.1, as the <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis"><code>DifferentiableMultivariateFunction</code></a> interface itself is deprecated</i></div> </div> </td> </tr> </tbody> </table> </li> <li class="blockList"><a name="org.apache.commons.math3.optimization.general"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a> in <a href="../../../../../../org/apache/commons/math3/optimization/general/package-summary.html">org.apache.commons.math3.optimization.general</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/commons/math3/optimization/general/package-summary.html">org.apache.commons.math3.optimization.general</a> with parameters of type <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>protected <a href="../../../../../../org/apache/commons/math3/optimization/PointValuePair.html" title="class in org.apache.commons.math3.optimization">PointValuePair</a></code></td> <td class="colLast"><span class="strong">AbstractScalarDifferentiableOptimizer.</span><code><strong><a href="../../../../../../org/apache/commons/math3/optimization/general/AbstractScalarDifferentiableOptimizer.html#optimizeInternal(int, org.apache.commons.math3.analysis.DifferentiableMultivariateFunction, org.apache.commons.math3.optimization.GoalType, double[])">optimizeInternal</a></strong>(int&nbsp;maxEval, <a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">DifferentiableMultivariateFunction</a>&nbsp;f, <a href="../../../../../../org/apache/commons/math3/optimization/GoalType.html" title="enum in org.apache.commons.math3.optimization">GoalType</a>&nbsp;goalType, double[]&nbsp;startPoint)</code> <div class="block"><strong>Deprecated.</strong>&nbsp;</div> <div class="block">Optimize an objective function.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/math3/analysis/DifferentiableMultivariateFunction.html" title="interface in org.apache.commons.math3.analysis">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 class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/math3/analysis//class-useDifferentiableMultivariateFunction.html" target="_top">FRAMES</a></li> <li><a href="DifferentiableMultivariateFunction.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; 2003&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
AlexFiliakov/BlackScholesCalculator
src/com/alexfiliakov/blackscholescalc/commons-math3-3.5/docs/apidocs/org/apache/commons/math3/analysis/class-use/DifferentiableMultivariateFunction.html
HTML
mit
12,839
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>signal_set_service::add</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../signal_set_service.html" title="signal_set_service"> <link rel="prev" href="../signal_set_service.html" title="signal_set_service"> <link rel="next" href="async_wait.html" title="signal_set_service::async_wait"> </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="../signal_set_service.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../signal_set_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="async_wait.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.signal_set_service.add"></a><a class="link" href="add.html" title="signal_set_service::add">signal_set_service::add</a> </h4></div></div></div> <p> <a class="indexterm" name="idp174082864"></a> Add a signal to a signal_set. </p> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="identifier">add</span><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">,</span> <span class="keyword">int</span> <span class="identifier">signal_number</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../signal_set_service.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../signal_set_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="async_wait.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/boost_asio/reference/signal_set_service/add.html
HTML
mit
3,890
--- layout: post date: 2006-02-21 time: "10:00:00" authors: ["Greg Wilson"] title: "What Else for Software Carpentry?" category: ["Content"] --- <p>16 lectures are now in place (more or less), which means I have 8 more to do. The syllabus shows what I've covered already; my current plans include:</p> <ul> <li>unit testing</li> <li>XML</li> <li>SQL</li> <li>more SQL</li> <li>small-team development process</li> </ul> <p>What do you think the other three should cover (keeping in mind that this is supposed to be a course on basic software engineering, rather than scientific programming)? Options include:</p> <ol> <li>Basic web programming, with much-revised versions of: <ul> <li>http://www.third-bit.com/swc1/www/client.html</li> <li>http://www.third-bit.com/swc1/www/server.html</li> <li>http://www.third-bit.com/swc1/www/security.html</li> </ul> </li> <li>Integration, including: <ul> <li>wrapping C code so that it can be called from Python</li> <li>using popen() and its ilk to run external programs</li> <li>(probably) something on refactoring to make code more testable (as per Feathers' excellent <a href="http://openlibrary.org/works/OL5742702W/Working_effectively_with_legacy_code">Working Effectively with Legacy Code</a></li> </ul> </li> <li>Three lecture-length examples, building very simple versions of core tools that haven't been covered elsewhere: <ul> <li>data lineage</li> <li>continuous integration</li> <li>data consistency checking</li> </ul> </li> <li>Give in, and do the scientific programming stuff anyway: <ul> <li>floating-point arithmetic</li> <li>Python's Numeric package</li> <li>data visualization</li> </ul> </li> <li>Scrap the single lecture on development process, and put in four full lectures on the subject <ul> <li>XP</li> <li>UML-based processes (probably ICONIX)</li> <li>something else (not entirely sure what)</li> </ul> </li> <li>Something else entirely &mdash; suggestions would be very welcome.</li> </ol> <p>Please <a href="mailto:{{site.contact}}">let me know</a> what you think.</p>
ErinBecker/website
_posts/2006/02/2006-02-21-what-else-for-software-carpentry.html
HTML
mit
2,038
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ip::basic_endpoint::data_type</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../ip__basic_endpoint.html" title="ip::basic_endpoint"> <link rel="prev" href="data/overload2.html" title="ip::basic_endpoint::data (2 of 2 overloads)"> <link rel="next" href="operator_not__eq_.html" title="ip::basic_endpoint::operator!="> </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="data/overload2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__basic_endpoint.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator_not__eq_.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.ip__basic_endpoint.data_type"></a><a class="link" href="data_type.html" title="ip::basic_endpoint::data_type">ip::basic_endpoint::data_type</a> </h4></div></div></div> <p> <a class="indexterm" name="idp157108272"></a> The type of the endpoint structure. This type is dependent on the underlying implementation of the socket layer. </p> <pre class="programlisting"><span class="keyword">typedef</span> <span class="identifier">implementation_defined</span> <span class="identifier">data_type</span><span class="special">;</span> </pre> <h6> <a name="boost_asio.reference.ip__basic_endpoint.data_type.h0"></a> <span class="phrase"><a name="boost_asio.reference.ip__basic_endpoint.data_type.requirements"></a></span><a class="link" href="data_type.html#boost_asio.reference.ip__basic_endpoint.data_type.requirements">Requirements</a> </h6> <p> <span class="emphasis"><em>Header: </em></span><code class="literal">boost/asio/ip/basic_endpoint.hpp</code> </p> <p> <span class="emphasis"><em>Convenience header: </em></span><code class="literal">boost/asio.hpp</code> </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; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="data/overload2.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../ip__basic_endpoint.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="operator_not__eq_.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/boost_asio/reference/ip__basic_endpoint/data_type.html
HTML
mit
3,986
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>deadline_timer_service::cancel</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../deadline_timer_service.html" title="deadline_timer_service"> <link rel="prev" href="async_wait.html" title="deadline_timer_service::async_wait"> <link rel="next" href="cancel_one.html" title="deadline_timer_service::cancel_one"> </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="async_wait.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../deadline_timer_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="cancel_one.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.deadline_timer_service.cancel"></a><a class="link" href="cancel.html" title="deadline_timer_service::cancel">deadline_timer_service::cancel</a> </h4></div></div></div> <p> <a class="indexterm" name="idp149450720"></a> Cancel any asynchronous wait operations associated with the timer. </p> <pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="identifier">cancel</span><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="async_wait.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../deadline_timer_service.html"><img src="../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../boost_asio.html"><img src="../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="cancel_one.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
TyRoXx/cdm
original_sources/boost_1_59_0/doc/html/boost_asio/reference/deadline_timer_service/cancel.html
HTML
mit
3,786
<!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=US-ASCII"> <title>Function BOOST_UNITS_PHYSICAL_CONSTANT</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="../../../../../boost_units/Reference.html#header.boost.units.systems.si.codata.atomic-nuclear_constants_hpp" title="Header &lt;boost/units/systems/si/codata/atomic-nuclear_constants.hpp&gt;"> <link rel="prev" href="_1_3_44_10_4_15_2_1_1_1_1_1.html" title="Function BOOST_UNITS_PHYSICAL_CONSTANT"> <link rel="next" href="_1_3_44_10_4_17_2_1_1_1_1_1.html" title="Function BOOST_UNITS_PHYSICAL_CONSTANT"> </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="_1_3_44_10_4_15_2_1_1_1_1_1.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../../../boost_units/Reference.html#header.boost.units.systems.si.codata.atomic-nuclear_constants_hpp"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="_1_3_44_10_4_17_2_1_1_1_1_1.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="boost.units.si.constants.codata._1_3_44_10_4_16_1_1_1_1_1_1"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Function BOOST_UNITS_PHYSICAL_CONSTANT</span></h2> <p>boost::units::si::constants::codata::BOOST_UNITS_PHYSICAL_CONSTANT &#8212; CODATA recommended values of the fundamental physical constants: NIST SP 961. </p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="../../../../../boost_units/Reference.html#header.boost.units.systems.si.codata.atomic-nuclear_constants_hpp" title="Header &lt;boost/units/systems/si/codata/atomic-nuclear_constants.hpp&gt;">boost/units/systems/si/codata/atomic-nuclear_constants.hpp</a>&gt; </span> <span class="identifier">BOOST_UNITS_PHYSICAL_CONSTANT</span><span class="special">(</span><span class="identifier">alpha</span><span class="special">,</span> <span class="identifier">quantity</span><span class="special">&lt;</span> <span class="identifier">dimensionless</span> <span class="special">&gt;</span><span class="special">,</span> <span class="number">7</span><span class="special">.</span><span class="number">2973525376e</span><span class="special">-</span><span class="number">3</span> <span class="special">*</span> dimensionless<span class="special">,</span> <span class="number">5</span><span class="special">.</span><span class="number">0e</span><span class="special">-</span><span class="number">12</span> <span class="special">*</span> dimensionless<span class="special">)</span><span class="special">;</span></pre></div> <div class="refsect1"> <a name="id-1.3.44.10.4.16.3.4"></a><h2>Description</h2> <p>fine structure constant </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2008 Matthias Christian Schabel<br>Copyright &#169; 2007-2010 Steven Watanabe<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="_1_3_44_10_4_15_2_1_1_1_1_1.html"><img src="../../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../../../../boost_units/Reference.html#header.boost.units.systems.si.codata.atomic-nuclear_constants_hpp"><img src="../../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../../index.html"><img src="../../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="_1_3_44_10_4_17_2_1_1_1_1_1.html"><img src="../../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
nawawi/poedit
deps/boost/doc/html/boost/units/si/constants/codata/_1_3_44_10_4_16_1_1_1_1_1_1.html
HTML
mit
5,378
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>seq_packet_socket_service::move_assign</title> <link rel="stylesheet" href="../../../boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="../../../index.html" title="Asio"> <link rel="up" href="../seq_packet_socket_service.html" title="seq_packet_socket_service"> <link rel="prev" href="local_endpoint.html" title="seq_packet_socket_service::local_endpoint"> <link rel="next" href="move_construct.html" title="seq_packet_socket_service::move_construct"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr><td valign="top"><img alt="asio C++ library" width="250" height="60" src="../../../asio.png"></td></tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="local_endpoint.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="move_construct.html"><img src="../../../next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="asio.reference.seq_packet_socket_service.move_assign"></a><a class="link" href="move_assign.html" title="seq_packet_socket_service::move_assign">seq_packet_socket_service::move_assign</a> </h4></div></div></div> <p> <a class="indexterm" name="idm149656"></a> Move-assign from another sequenced packet socket implementation. </p> <pre class="programlisting"><span class="keyword">void</span> <span class="identifier">move_assign</span><span class="special">(</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">impl</span><span class="special">,</span> <span class="identifier">seq_packet_socket_service</span> <span class="special">&amp;</span> <span class="identifier">other_service</span><span class="special">,</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <span class="identifier">other_impl</span><span class="special">);</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2016 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="local_endpoint.html"><img src="../../../prev.png" alt="Prev"></a><a accesskey="u" href="../seq_packet_socket_service.html"><img src="../../../up.png" alt="Up"></a><a accesskey="h" href="../../../index.html"><img src="../../../home.png" alt="Home"></a><a accesskey="n" href="move_construct.html"><img src="../../../next.png" alt="Next"></a> </div> </body> </html>
peersio/peerconnect
src/libs/asio/doc/asio/reference/seq_packet_socket_service/move_assign.html
HTML
mit
3,248
<!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.5.0_22) on Mon Dec 20 13:46:24 EST 2010 --> <TITLE> ReadableSelector (Apache Ant API) </TITLE> <META NAME="keywords" CONTENT="org.apache.tools.ant.types.selectors.ReadableSelector class"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="ReadableSelector (Apache Ant API)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </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=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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../org/apache/tools/ant/types/selectors/PresentSelector.FilePresence.html" title="class in org.apache.tools.ant.types.selectors"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../org/apache/tools/ant/types/selectors/SelectorContainer.html" title="interface in org.apache.tools.ant.types.selectors"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/tools/ant/types/selectors/ReadableSelector.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ReadableSelector.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.tools.ant.types.selectors</FONT> <BR> Class ReadableSelector</H2> <PRE> java.lang.Object <IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.types.selectors.ReadableSelector</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../../../org/apache/tools/ant/types/resources/selectors/ResourceSelector.html" title="interface in org.apache.tools.ant.types.resources.selectors">ResourceSelector</A>, <A HREF="../../../../../../org/apache/tools/ant/types/selectors/FileSelector.html" title="interface in org.apache.tools.ant.types.selectors">FileSelector</A></DD> </DL> <HR> <DL> <DT><PRE>public class <B>ReadableSelector</B><DT>extends java.lang.Object<DT>implements <A HREF="../../../../../../org/apache/tools/ant/types/selectors/FileSelector.html" title="interface in org.apache.tools.ant.types.selectors">FileSelector</A>, <A HREF="../../../../../../org/apache/tools/ant/types/resources/selectors/ResourceSelector.html" title="interface in org.apache.tools.ant.types.resources.selectors">ResourceSelector</A></DL> </PRE> <P> A selector that selects readable files. <p>Readable is definied in terms of java.io.File#canRead, this means the selector will accept any file that exists and is readable by the application.</p> <P> <P> <DL> <DT><B>Since:</B></DT> <DD>Ant 1.8.0</DD> </DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../../org/apache/tools/ant/types/selectors/ReadableSelector.html#ReadableSelector()">ReadableSelector</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</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"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </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/tools/ant/types/selectors/ReadableSelector.html#isSelected(java.io.File, java.lang.String, java.io.File)">isSelected</A></B>(java.io.File&nbsp;basedir, java.lang.String&nbsp;filename, java.io.File&nbsp;file)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method that each selector will implement to create their selection behaviour.</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/tools/ant/types/selectors/ReadableSelector.html#isSelected(org.apache.tools.ant.types.Resource)">isSelected</A></B>(<A HREF="../../../../../../org/apache/tools/ant/types/Resource.html" title="class in org.apache.tools.ant.types">Resource</A>&nbsp;r)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Return true if this Resource is selected.</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"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="ReadableSelector()"><!-- --></A><H3> ReadableSelector</H3> <PRE> public <B>ReadableSelector</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="isSelected(java.io.File, java.lang.String, java.io.File)"><!-- --></A><H3> isSelected</H3> <PRE> public boolean <B>isSelected</B>(java.io.File&nbsp;basedir, java.lang.String&nbsp;filename, java.io.File&nbsp;file)</PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tools/ant/types/selectors/FileSelector.html#isSelected(java.io.File, java.lang.String, java.io.File)">FileSelector</A></CODE></B></DD> <DD>Method that each selector will implement to create their selection behaviour. If there is a problem with the setup of a selector, it can throw a BuildException to indicate the problem. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tools/ant/types/selectors/FileSelector.html#isSelected(java.io.File, java.lang.String, java.io.File)">isSelected</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tools/ant/types/selectors/FileSelector.html" title="interface in org.apache.tools.ant.types.selectors">FileSelector</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>basedir</CODE> - A java.io.File object for the base directory<DD><CODE>filename</CODE> - The name of the file to check<DD><CODE>file</CODE> - A File object for this filename <DT><B>Returns:</B><DD>whether the file should be selected or not</DL> </DD> </DL> <HR> <A NAME="isSelected(org.apache.tools.ant.types.Resource)"><!-- --></A><H3> isSelected</H3> <PRE> public boolean <B>isSelected</B>(<A HREF="../../../../../../org/apache/tools/ant/types/Resource.html" title="class in org.apache.tools.ant.types">Resource</A>&nbsp;r)</PRE> <DL> <DD><B>Description copied from interface: <CODE><A HREF="../../../../../../org/apache/tools/ant/types/resources/selectors/ResourceSelector.html#isSelected(org.apache.tools.ant.types.Resource)">ResourceSelector</A></CODE></B></DD> <DD>Return true if this Resource is selected. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../../org/apache/tools/ant/types/resources/selectors/ResourceSelector.html#isSelected(org.apache.tools.ant.types.Resource)">isSelected</A></CODE> in interface <CODE><A HREF="../../../../../../org/apache/tools/ant/types/resources/selectors/ResourceSelector.html" title="interface in org.apache.tools.ant.types.resources.selectors">ResourceSelector</A></CODE></DL> </DD> <DD><DL> <DT><B>Parameters:</B><DD><CODE>r</CODE> - the Resource to check. <DT><B>Returns:</B><DD>whether the Resource was selected.</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=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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../org/apache/tools/ant/types/selectors/PresentSelector.FilePresence.html" title="class in org.apache.tools.ant.types.selectors"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../../org/apache/tools/ant/types/selectors/SelectorContainer.html" title="interface in org.apache.tools.ant.types.selectors"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/apache/tools/ant/types/selectors/ReadableSelector.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="ReadableSelector.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> </BODY> </HTML>
splunk/splunk-shuttl
contrib/apache-ant-1.8.2/docs/manual/api/org/apache/tools/ant/types/selectors/ReadableSelector.html
HTML
apache-2.0
14,393
<form ng-controller="azureInstanceTypeCtrl as instanceTypeCtrl" class="container-fluid form-horizontal" name="form" novalidate > <div class="modal-body"> <instance-type-selector command="command"></instance-type-selector> </div> <div class="modal-footer"> <button class="btn btn-default pull-left" ng-click="wizard.previousPage(form.$valid)"> <span class="glyphicon glyphicon-chevron-left"></span> Back </button> <button ng-disabled="taskMonitor.submitting" class="btn btn-default btn-cancel" ng-click="ctrl.cancel()"> Cancel </button> <submit-button ng-if="ctrl.showSubmitButton()" is-disabled="form.$invalid || !ctrl.isValid() || taskMonitor.submitting" label="command.viewState.submitButtonLabel" submitting="taskMonitor.submitting" on-click="ctrl.submit()" is-new="true" ></submit-button> <button class="btn btn-primary" ng-disabled="!command.viewState.instanceProfile || form.$invalid" ng-click="wizard.nextPage(form.$valid)" > Next <span class="glyphicon glyphicon-chevron-right"></span> </button> </div> </form>
spinnaker/deck
packages/azure/src/serverGroup/configure/wizard/instanceType.html
HTML
apache-2.0
1,147
<!DOCTYPE html> <html lang="en"> <head> <title>How do I add assignments to a Lessons page?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.lessonbuildertool" name="description"> <meta content="assignments links" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/morpheus-default/tool.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/morpheus-default/help.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/js/jquery/featherlight/0.4.0/featherlight.min.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <script src="/library/webjars/jquery/1.11.3/jquery.min.js" type="text/javascript" charset="utf-8"></script><script src="/library/js/jquery/featherlight/0.4.0/featherlight.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='featherlight']").featherlight({ type: { image:true }, closeOnClick: 'anywhere' }); }); </script> </head> <body> <div id="wrapper"> <div id="article-content"> <div id="article-header"> <h1 class="article-title">How do I add assignments to a Lessons page?</h1> </div> <div id="article-description"> <p>Instructors may add links to site activities (i.e. Assignments, Forums, Test &amp; Quizzes) on Lessons pages. </p> <p><em>Note: These links will automatically update to maintain links to published activities if you copy your course content to a new site, as long as you do not change the name of the activity. However, you will need to publish your activities in the new site for the links to become active. </em></p> </div> <div id="steps-container"> <div id="step-13754" class="step-container"> <h2 class="step-title">Go to Lessons.</h2> <div class="step-instructions"> <p>Click on the Lessons Page Title (e.g. <strong>Unit 3</strong>) in the Tool Menu to display the page. </p> <p><em>Note: The default or blank Lessons page contains text and images that explain the basic functionality of the Lessons tool.</em></p> </div> </div> <div class="clear"></div> <div id="step-13755" class="step-container"> <h2 class="step-title">Click Add Content, then Link to an assignment.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Click-Add-Content--then-Link-to-an-assignment-sm.png" width="640" height="477" class="step-image" alt="Click Add Content, then Link to an assignment."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Click-Add-Content--then-Link-to-an-assignment.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> <div class="step-instructions"><p>From the<strong> Add Content </strong>drop-down menu, select <strong>Link to an assignment</strong>.</p></div> </div> <div class="clear"></div> <div id="step-13756" class="step-container"> <h2 class="step-title">Select the assignment from the list of existing assignments.</h2> <div class="step-image-container"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Select-the-assignment-from-the-list-of-existing-as.png" width="351" height="280" class="step-image" alt="Select the assignment from the list of existing assignments."> </div> <div class="step-instructions"><p><em>Note: You can also click </em><em><strong>Create a new assignment using Assignments</strong></em><em> and create a new assignment in the Assignments tool. See </em><em><a href="content.hlp?docId=howdoIaddanassignment">How do I add an assignment?</a></em><em> for more information on creating assignments.</em></p></div> </div> <div class="clear"></div> <div id="step-13757" class="step-container"> <h2 class="step-title">Click Use Selected Item.</h2> <div class="step-image-container"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Click-Use-Selected-Item.png" width="351" height="280" class="step-image" alt="Click Use Selected Item."> </div> <div class="step-instructions"><p>This returns the display to the Lessons Page with a link to the assignment. </p></div> </div> <div class="clear"></div> <div id="step-13758" class="step-container"> <h2 class="step-title">View assignment link on page.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/View-assignment-link-on-page-sm.png" width="640" height="172" class="step-image" alt="View assignment link on page."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/View-assignment-link-on-page.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> <div class="step-instructions"><p>The page will now display a link to the assignment. </p></div> </div> <div class="clear"></div> <div id="step-13759" class="step-container"> <h2 class="step-title">Click Edit. (Optional)</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Click-Edit--Optional--sm.png" width="640" height="172" class="step-image" alt="Click Edit. (Optional)"><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Click-Edit--Optional-.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> </div> <div class="clear"></div> <div id="step-13760" class="step-container"> <h2 class="step-title">Add a description for the assignment, then click Update Item.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Add-a-description-for-the-assignment--then-click-U-sm.png" width="640" height="423" class="step-image" alt="Add a description for the assignment, then click Update Item."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/Add-a-description-for-the-assignment--then-click-U.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> </div> <div class="clear"></div> <div id="step-13761" class="step-container"> <h2 class="step-title">View updated item.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/View-updated-item-sm.png" width="640" height="179" class="step-image" alt="View updated item."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-add-assignments-to-a-Lessons-page-/View-updated-item.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> <div class="step-instructions"><p>Updating returns the display to the Lessons page with a link to the assignment and the description.</p></div> </div> <div class="clear"></div> </div> </div> </div> </body> </html>
willkara/sakai
help/help/src/sakai_screensteps_lessonsUserGuide/How-do-I-add-assignments-to-a-Lessons-page-.html
HTML
apache-2.0
7,890